.helper-template {
	width: 940px;
	max-width: 100%;
	background-color: #fff;
	padding: 40px;
	border-radius: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 32px;
	min-height: 295px;
	box-sizing: border-box;
	opacity: 0;
	transition: opacity .3s;
}
.helper-template.show {
	opacity: 1;
}
.helper-template.select, .helper-template.upload {
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}
.helper-template .qs {
	max-width: 540px;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;
	margin: 0 0 8px;
	text-align: center;
}
.helper-template.select .qs {
	width: calc(50% - 20px);
	flex-grow: 1;
	text-align: left;
}
.helper-template.upload .qs {
	text-align: left;
}
.helper-template .sub {
	display: block;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 400;
	color: #4E4E59;
	margin: 4px 0 0;
}
.helper-template h2 {
	font-size: 34px;
	line-height: 1.15;
	font-weight: 700;
	margin: 0 0 12px;
}
.helper-template h3 {
	font-size: 22px;
	line-height: 1.15;
	margin: 0 0 8px;
}
.helper-template .choices h4 {
	font-size: 16px;
	line-height: 1.4;
	font-weight: 600;
	margin: 0;
}
.helper-template .qs>p {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 400;
	color: #8C8C9A;
}
.helper-template .qs>svg {
	display: inline-block;
	width: 70px;
	height: 70px;
}
.helper-template .choices-wrp {
	width: 100%;
}
.helper-template .choices-wrp .choices {
	margin-bottom: 0;
}
.helper-template .choices {
	width: calc(50% - 20px);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.helper-template .choices .choice-wrp {
	transition: border-color .2s;
}
.helper-template .choices .choice-wrp.hidden {
	display: none;
}
.helper-template .choices .choice-wrp .inner-wrp {
	padding: 16px;
	border-radius: 12px;
	border: 1px solid rgba(133, 133, 149, 0.20);
	min-width: 208px;
	font-size: 18px;
	line-height: 1.25;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 15px;
	cursor: pointer;
	transition: border-color .1s;
	width: 100%;
	min-height: 100%;
    box-sizing: border-box;
}
.helper-template .choices .subsection .choice-wrp .inner-wrp {
	padding: 10px 6px;
	gap: 8px;
}
.helper-template .choices .choice-wrp.selected .inner-wrp {
	border: 1px solid #007AFF;
}
.helper-template .choices .choice-wrp .radio {
	display: inline-block;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border: 1px solid #e3e3e7;
	border-radius: 50%;
	position: relative;
	flex-shrink: 0;
	transition: background-color .1s;
}
.helper-template .choices .choice-wrp:not(.checkbox) .radio {
	background-color: #e3e3e7;
}
.helper-template .choices .choice-wrp.inactive, .helper-template .choices .choice-wrp.inactive .inner-wrp {
	cursor: default;
}
.helper-template .choices .choice-wrp.inactive {
	opacity: 0.6;
}
.helper-template .choices .choice-wrp.selected .radio {
	background-color: #007AFF;
	border-color: #007AFF;
}
.helper-template .choices .choice-wrp:not(.checkbox) .radio:after {
	content: '';
	width: 20px;
	height: 20px;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #fff;
	transform: scale(1);
	transform-origin: 50% 50%;
	transition: transform .1s;
}
.helper-template .choices .choice-wrp.selected:not(.checkbox) .radio:after, .helper-template .choices .choice-wrp:not(.checkbox):hover .radio:after {
	transform: scale(.5);
}
.helper-template .choices a.choice, .helper-template .choices a.choice:hover {
	color: #000;
	text-decoration: none;
}
.helper-template .choices .choice.extended {
	display: flex;
	flex-grow: 1;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	gap: 50px;
}
.helper-template .choices .choice.extended>span {
	display: flex;
	align-items: center;
	gap: 8px;
}
.helper-template .choices .choice .sub {
	display: block;
	font-size: 16px;
	line-height: 1.4;
	color: #8C8C9A;
	font-weight: 400;
	margin: 4px 0 0;
}
.helper-template .choices .choice .progress-bar {
	display: flex;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}
.helper-template .choices .choice .progress-status {
	font-size: 14px;
	line-height: 1.35;
	color: #8C8C9A;
	font-weight: 400;
}
.helper-template .choices .data {
	font-size: 22px;
	line-height: 1.25;
	font-weight: 700;
	color: #007AFF;
	padding-bottom: 8px;
	border-bottom: 1px solid rgba(133, 133, 149, 0.20);
	margin: 0 0 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.helper-template .choices .data .progress-bar {
	display: block;
	width: 24px;
	height: 24px;
}
.helper-template .choices .data .progress-status {
	font-size: 20px;
	line-height: 1.25;
	color: #000;
}
.helper-template .buttons {
	display: flex;
	width: 100%;
	gap: 8px;
	justify-content: center;
}
.helper-template.select .buttons, .helper-template.upload .buttons {
	justify-content: space-between;
	max-width: 100%;
}
.helper-template .button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	font-size: 18px;
	line-height: 1.5;
	font-weight: 600;
	color: #007AFF;
	border: 1px solid #007AFF;
	border-radius: 12px;
	padding: 16px 20px;
	cursor: pointer;
	transition: background-color .3s, color .3s, border-color .3s, transform .3s;
	box-sizing: border-box;
	text-decoration: none;
	white-space: nowrap;
}
.helper-template .button:hover {
	text-decoration: none;
	transform: translateY(-2px);
}
.helper-template .button:active {

}
.helper-template .button svg {
	display: inline-block;
	width: 24px;
	height: 24px;
}
.helper-template .button.primary {
	color: #fff;
	background-color: #007AFF;
	padding: 16px 40px;
}
.helper-template .button.primary.inactive {
	background-color: #AAAAAA;
	border-color: #AAAAAA;
	cursor: default;
}
.helper-template .button.inactive:hover {
	transform: none;
}
.helper-template .button.prev {
	border-color: #8C8C9A;
	color: #8C8C9A;
	min-width: 152px;
    justify-content: center;
    padding-left: 10px;
}
.helper-template[data-node="83"] .button.prev {
	display: none;
}
.helper-template .button.next-btn {
	min-width: 206px;
    justify-content: center;
    padding-right: 20px;
    margin-left: auto;
}
.helper-template .button.next-btn.help-fix {
	padding-right: 40px;
}
.helper-template .button#sendBtn {
	min-width: 200px;
	padding-right: 20px;
}
.helper-template .blue {
	display: inline-block;
	color: #007AFF;
}
.helper-template>.loader {
	display: block;
	width: 50px;
	height: 50px;
}
.helper-template>a {
	font-size: 22px;
	line-height: 1.25;
	font-weight: 600;
	color: #007AFF;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color .3s;
}
.helper-template>a:hover {
	border-color: #007AFF;
}
.helper-template .textarea-wrp {
	height: 0;
    transition: height .3s ease-out;
    will-change: height;
    padding-top: 12px;
    box-sizing: border-box;
    overflow: hidden;
}
.helper-template .textarea-wrp.show {
	height: 112px;
}
.helper-template textarea {
	display: block;
	width: 100%;
	font-size: 16px;
	line-height: 1.4;
	color: #4E4E59;
	padding: 16px;
	border: 1px solid rgba(133, 133, 149, 0.20);
	border-radius: 8px;
	height: 100px;
	resize: none;
	outline: none;
	box-sizing: border-box;
	transition: border-color .2s;
}
.helper-template textarea::placeholder {
	font-family: "proxima-nova", sans-serif;
}
.helper-template textarea:focus {
	border-color: #007AFF;
}

.helper-template.upload .qs {
	width: calc(50% - 20px);
}
.helper-template #file-input-wrp {
	display: block;
	width: calc(50% - 20px);
	flex-grow: 1;
}
.filepond--root {
	font-family: "proxima-nova", sans-serif;
	font-size: 18px;
}
.filepond--root .filepond--credits {
	display: none !important;
}
.filepond--item-panel {
	background-color: #595e68;
}
.filepond--root .filepond--drop-label {
	min-height: 8em !important;
    align-items: center;
}

.night-mode .helper-template {
	background-color: #2B2B30;
	color: #9999a8;
}
.night-mode .helper-template .qs, .night-mode .helper-template .choices .choice {
	color: #F2F3F7;
}
.night-mode .helper-template .button.primary.inactive {
    background-color: #3E3E46;
    border-color: #3E3E46;
}
.night-mode .helper-template .button.prev {
    border-color: #9999a8;
    color: #9999a8;
}
.night-mode .helper-template textarea {
	background-color: #555562;
	color: #F2F3F7;
}
.night-mode .helper-template textarea::placeholder {
	color: #9999a8;
}

@media(max-width: 767px){
	.helper-page .helper-template {
		border-radius: 0;
		padding: 0;
	}
	.helper-template.select {
		flex-direction: column;
		gap: 36px;
	}
	.helper-template .qs {
		font-size: 24px;
		line-height: 1.2;
	}
	.helper-template.select .qs {
		width: 100%;
	}
	.helper-template .qs .sub {
		font-size: 16px;
		line-height: 1.4;
	}
	.helper-template .choices {
		width: 100%;
    }
    .helper-template .choices .choice-wrp {
    	font-size: 16px;
    	line-height: 1.15;
    }
    .helper-page .helper-template .choices .choice-wrp {
    	padding: 12px 16px;
    }
    .helper-template .choices .data {
    	font-size: 24px;
    	line-height: 1.2;
    }
    .helper-page .helper-template .choices .choice.extended {
    	flex-direction: column;
	    align-items: flex-start;
	    gap: 0;
    }
    .helper-page .helper-template .choices .choice .progress-bar {
    	display: none;
    }
    .helper-page .helper-template .choices .choice .progress-status.complete {
    	color: #007AFF;
    }
    .helper-page .helper-template .buttons {
    	position: fixed;
	    left: 0;
	    bottom: 0;
	    padding: 20px;
	    width: 100%;
	    box-sizing: border-box;
	    gap: 8px;
    }
    .helper-page .helper-template .button {
    	width: 100%;
    }
    .helper-page .helper-template .button.prev, .helper-template .button.next-btn {
    	width: calc(50% - 4px);
    	min-width: calc(50% - 4px);
    }
    .helper-page .helper-template .button.next-btn {
    	flex-grow: 1;
    }
}

.modal-wrapper {
    display: none;
    position:fixed;
    left:0;
    top:0;
    height:100%;
    width:100%;
    z-index: 100000;
    overflow: auto;
}
.modal-inner {
    position: absolute;
    max-width: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0 10px 40px 0 rgba(99,117,132,0.15), 0 2px 9px 0 rgba(62,57,107,0.06);
    -moz-box-shadow: 0 10px 40px 0 rgba(99,117,132,0.15),0 2px 9px 0 rgba(62,57,107,0.06);
    -ms-box-shadow: 0 10px 40px 0 rgba(99,117,132,0.15),0 2px 9px 0 rgba(62,57,107,0.06);
    -o-box-shadow: 0 10px 40px 0 rgba(99,117,132,0.15),0 2px 9px 0 rgba(62,57,107,0.06);
    box-shadow: 0 10px 40px 0 rgba(99,117,132,0.15), 0 2px 9px 0 rgba(62,57,107,0.06);
    z-index: 100002;
/*    overflow: hidden;*/
}
.overlay-modal {position:fixed;left:0;top:0;background:#333;height:100%;width:100%;-ms-filter:"alpha(opacity=50)";filter:alpha(opacity=50);opacity:0;transition: opacity .5s;z-index:100001;max-height:none}
.modal-wrapper.active .overlay-modal {opacity: 0.5}

#helperModal .modal-inner {
	max-width: calc(100% - 30px);
	background-color: transparent;
	opacity: 0;
	transform: translate(-50%, calc(-50% + 100px));
	transition: all .5s;
}
#helperModal.active .modal-inner {
	transform: translate(-50%, -50%);
	opacity: 1;
}
.helper-template .choice-wrp .choice {
	flex-grow: 1;
}
.helper-template .choice-wrp.with-icon .choice {
	display: flex;
	width: 100%;
	align-items: center;
	gap: 4px;
}
.helper-template .label {
	display: inline-block;
	font-size: 12px;
	line-height: 1.35;
	font-weight: 700;
	text-transform: uppercase;
	padding: 1px 4px;
	background-color: #FAD92C;
	border-radius: 8px;
}
.helper-template .choice-wrp .choice .label.label-eldt {
	cursor: pointer;
	position: relative;
}
.helper-template .qs .label {
	padding: 3px 10px;
	margin: 0 0 8px;
}
.helper-template .choice-wrp .choice .label.label-eldt:hover:after {
	content: 'Entry-Level Driver Training and certification required. As an FMCSA-certified provider, we offer ELDT theory certification (the first part of ELDT training) as part of our Premium program';
	position: absolute;
	top: 10px;
	left: calc(100% + 10px);
	font-size: 14px;
	line-height: 1.35;
	font-weight: 400;
	color: #4E4E59;
	background-color: #F2F2F7;
	padding: 8px;
	text-transform: none;
	width: 215px;
	box-sizing: border-box;
	border-radius: 8px;
	z-index: 1;
}
.helper-template .choice-wrp .choice[data-value="hm"] .label.label-eldt:hover:after {
	content: 'ELDT certification required. As an FMCSA-certified provider, we offer it as part of our Premium program.';
}
.helper-template .choice-wrp .choice .icon {
	display: inline-block;
	width: 28px;
	height: 28px;
	margin-left: auto;
}
.helper-template .choice-wrp .choice svg.icon path {
	transition: fill .3s, fill-opacity .3s;
}
.helper-template .choice-wrp.selected .choice svg.icon path {
	fill: #007AFF;
	fill-opacity: 1;
}
.helper-template .choice-wrp.bg-img {
	position: relative;
}
.helper-template .choices .choice-wrp.bg-img .inner-wrp {
	padding-right: 83px;
}
.helper-template .choice-wrp.bg-img:after {
	content: '';
	display: inline-block;
	position: absolute;
	right: 0;
	top: 0;
	width: 83px;
	height: 100%;
	overflow: hidden;
}
.helper-template .choice-wrp.bg-img.transport:after {
	transform: rotateY(180deg);
	background-position: right center;
	background-repeat: no-repeat;
}
.helper-template .choice-wrp.bg-img.truck:after {
	background-image: url('/assistant/img/truck.png');
	background-size: 110px 110px;
}
.helper-template .choice-wrp.bg-img.bus:after {
	background-image: url('/assistant/img/bus.png');
	background-size: 129px 129px;
}
.helper-template .choice-wrp.bg-img.pickup:after {
	background-image: url('/assistant/img/pickup.png');
	background-size: 140px 140px;
}
.helper-template .choice-wrp .choice .icon {
	margin-left: auto;
}
.helper-template .choices .choice-wrp.checkbox .radio {
	width: 25px;
	height: 25px;
	border-radius: 4px;
	position: relative;
	box-sizing: border-box;
}
.helper-template .choices .subsection .choice-wrp.checkbox .radio {
	width: 18px;
    height: 18px;
}
.helper-template .choices .choice-wrp.checkbox.selected .radio:after {
	content: '';
	width: 25px;
	height: 25px;
	position: absolute;
	top: -1px;
	left: -1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30' fill='none'%3E%3Cpath d='M8.75 15.25L14.375 21.25L23.75 11.25' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: -10% 50%;
    background-repeat: no-repeat;
}
.helper-template .choices .subsection .choice-wrp.checkbox.selected .radio:after {
	width: 18px;
    height: 18px;
}
.helper-template .tpr-logos {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	margin-top: 27px;
}
.helper-template .tpr-logo img {
	display: block;
	height: 31px;
	width: auto;
}
.helper-template .tpr-logo.fmcsa {
	display: flex;
	align-items: center;
	gap: 5px;
}
.helper-template .tpr-logo.fmcsa img {
	height: 35px;
}
.helper-template .tpr-logo.fmcsa>div{
	display: inline-block;
	width: 100px;
	font-size: 10px;
	line-height: 1.2;
	font-weight: 700;
}
.helper-template .certificate-img {
	display: block;
	width: 100%;
	height: auto;
}
.helper-template .tpr-ribbon {
	display: none;
}
.helper-template .choices .subsection {
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}
.helper-template .choices .subsection h4 {
	width: 100%;
	min-width: 100%;
}
.helper-template .choices .subsection .choice-wrp {
	min-width: 276px;
}
.helper-template .datepicker-wrp {
	min-height: 236px;
}
.helper-template .link {
	font-size: 16px;
	line-height: 1.4;
	color: #007AFF;
	text-decoration: none;
	transition: transform .3s;
}
.helper-template .link:hover {
	transform: translateY(-2px);
}