html,div {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
}
input, textarea, img, select, button, fieldset {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-appearance: none;
	-webkit-outline: none;
	-webkit-border: none;
	border: none;
	outline: none;
	padding: 0;
}
input:focus, textarea:focus, img:focus, div:focus, button:focus, select:focus {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-appearance: none;
	-webkit-outline: none;
	outline: none;
}
input:-webkit-autofill, input:-webkit-autofill:focus textarea:-webkit-autofill, input:-webkit-autofill:hover, select:-webkit-autofill, select:-webkit-autofill:focus, select:-webkit-autofill:hover, textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus {
	-webkit-text-fill-color: #000000;
	background-color: #ffffff;
}
::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.3); }
input:-webkit-autofill, input:-webkit-autofill:focus textarea:-webkit-autofill, input:-webkit-autofill:hover, select:-webkit-autofill, select:-webkit-autofill:focus, select:-webkit-autofill:hover, textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus {
	-webkit-text-fill-color: #fff;
	-webkit-transition: background-color 90000s ease-in-out 0s;
	transition: background-color 90000s ease-in-out 0s;
}
a:link, a:hover, a:active {
	text-decoration: none;
}

.textField {
	border: 1px solid #CCC;
	padding: 12px;
	font-size: 16px;
	font-family: "Roombus Sans";
	font-weight: bold;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
}
.textField.half {
	flex: 1 1 50%;
	margin-right: 10px;
}
.textField.half:last-child {
	margin-right: 0;
}
.textFieldFlex {
	display: flex;
}

form input, form select, #stripe-payment {
	background: #00000080;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: white;
	padding: 15px;
	width: 100%;
	margin: 5px 0 15px;
	font-size: 22px;
	font-family: niveau-grotesk, sans-serif;
	box-sizing: border-box;
}
#stripe-payment {
	padding: 17px 10px;
}
form select {
	background-image: url(../images/button_down_arrow.svg);
	background-repeat: no-repeat;
	background-position: right 18px bottom 16px;
}
form label {
	width: 100%;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding-left: 5px;
}