/*******************************************
:--- FORM - ONE-STEP ---:
*******************************************/

.form.one-step {
	display: block;
	font-weight: 400;
	position: relative;
	width: 100%;
}

.form.one-step #one-step-fields {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 30px;
}

.form.one-step #one-step-fields .input-wrap {
	flex-grow: 1;
	width: 45%;
}

.form.one-step .input-wrap label,
.form.one-step .input-wrap textarea,
.form.one-step .input-wrap input {
	display: block;
	width: 100%;
}

.form.one-step .input-wrap label {
	color: #666666;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
	margin-bottom: 5px;
	text-transform: uppercase;
}

.form.one-step .input-wrap textarea,
.form.one-step .input-wrap input {
	border: 1px solid #EEE;
	border-radius: 0;
	font-size: 1.063rem;
	line-height: 1.25;
	padding: 15px;
}

.form.one-step .input-wrap textarea:hover,
.form.one-step .input-wrap textarea:focus,
.form.one-step .input-wrap textarea:active,
.form.one-step .input-wrap input:hover,
.form.one-step .input-wrap input:focus,
.form.one-step .input-wrap input:active {
	border: 1px solid blue;
	border-radius: 0;
	outline: none;
}

.form.one-step .form-controls {
	float: left;
	display: block;
	width: 100%;
}

.form.one-step .form-controls input {
	background: #000;
	border: 1px solid #000;
	border-radius: 50px;
	box-shadow: none;
	color: #FFF;
	display: block;
	float: right;
	font-size: 1.063rem;
	font-weight: 400;
	font-style: normal;
	height: auto;
	margin: 0 0 20px;
	padding: 15px 24px 13px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: all .2s ease-in-out;
	width: 48%;
}

.form.one-step .form-controls input:hover,
.form.one-step .form-controls input:focus,
.form.one-step .form-controls input:active {
	background: #FFF;
	border: 1px solid #EEE;
	color: #000;
}

.form.one-step .privacy,
.form.one-step .international-link,
.form.one-step .tcpa {
	font-weight: 400;
	font-size: 11px;
	float: none;
}

.form.one-step .privacy {
	clear: both;
	margin-bottom: 0.938rem;
}

.form.one-step .international-link {
	display: block;
	margin-bottom: 0.938rem;
}

.form.one-step .tcpa {
	clear: both;
}

.form.one-step .privacy span {
	color: red;
}

.form.one-step #program-error.error,
.form.one-step #first_name-error.error,
.form.one-step #last_name-error.error,
.form.one-step #email-error.error,
.form.one-step #phone-error.error {
	color: red;
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	position: absolute !important;
	padding: 5px 0 0;
}

.form.one-step .input-wrap:after {
	color: red;
	content: '*';
	position: absolute;
	right: 0;
	top: 0;
	font-weight: 400;
}

/* International Phone */

.form.one-step .input-wrap .iti {
	display: block;
}

.form.one-step .input-wrap .iti #phone {
	text-indent: 40px;
}

.form.one-step ul.iti__country-list li {
	margin: 0;
}

.form.one-step ul.iti__country-list li:before {
	display: none;
}

/* Popover */

.form.one-step .popover {
	background: #f00;
	border: 1px solid #f006;
	color: #fff;
	padding: 6px;
	text-align: center;
}

.form.one-step .popover-body {
	color: #fff;
}

.form.one-step .popover .popover-arrow::after,
.form.one-step .popover .popover-arrow::before {
	border-bottom-color: #f00;
	border-top-color: #f00;
}

.form.one-step .select-wrap {
	margin-bottom: 30px;
}

.form.one-step .select-wrap label {
	display: block;
	width: 100%;
	color: #666666;
	font-size: 13px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
	margin-bottom: 5px;
	text-transform: uppercase;
}

/* Select - Dropdown List */

.form.one-step .select-wrap select {
	border: 1px solid #EEE;
	border-radius: 0;
	display: block;
	font-size: 1.063rem;
	line-height: 1.25;
	padding: 15px 50px 15px 15px;
	position: relative;
	width: 100%;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #FFF 50%),
		linear-gradient(135deg, #FFF 50%, transparent 50%),
		linear-gradient(to right, #5F6A72, #5F6A72);
	background-position:
		calc(100% - 25px) calc(1em + 6px),
		calc(100% - 20px) calc(1em + 6px),
		100% 0;
	background-size:
		5px 5px,
		5px 5px,
		3em 3em;
	background-repeat: no-repeat;
}

.form.one-step .select-wrap select:hover,
.form.one-step .select-wrap select:focus,
.form.one-step .select-wrap select:active{
	border: 1px solid blue;
	border-radius: 0;
	outline: none;
}

.form.one-step span.asterisk {
	color: red;
	padding-left: 5px;
}

/*******************************************
:--- FEATURE - SMS OPT-IN ---: 
*******************************************/

#sms-opt-in {
	display: flex; 
	align-items: flex-start;
	margin-bottom: 20px;
}

#sms-opt-in input {
	margin-top: 4px;
}

#sms-opt-in label {
	font-size: 13px;
	font-weight: 400;
	margin: 0 0 0 10px;
	letter-spacing: normal;
	line-height: 1.5;
	text-transform: none;
}

/*******************************************
:--- MEDIA QUERIES ---: 
*******************************************/

@media (max-width: 767px) {
	.form.one-step #one-step-fields .input-wrap,
	.form.one-step .form-controls input {
		width: 100%;
	}
}