
.get-a-quote-section { background: #252626; margin-top: 68px; min-height: calc( 100vh - 120px ); }

#sqaMultiForm {
	background-color: #252626;
	color:#fff;
	margin: 0 auto;
	padding: 0px;
	width: 100%;
	min-width: 300px;
}

.sqaMultiForm-wrapper {
	position: relative;
	padding:80px 0;
	clear: both;
}

.sqaMultiForm-wrapper h1 {
	text-align: center;
	margin: 0 0 20px 0;
	color:#fff;
	font-size: 50px;
	font-weight: 700;
}

.sqaMultiForm-wrapper p {
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.sqaMultiForm-wrapper h4 {
	text-align: center;
	margin: 0 0 20px 0;
	color:#339fd2;
}

.sqa-input-wrapper {
	position:relative;
	padding:0px 0 30px 0;
	float: left;
	width: 100%;
}

.sqa-input-wrapper label {
	position:absolute;
	top: 0px;
	color: #05141f;
	padding: 20px 0;
	font-size:28px;
	left: 0;
	transition:all 350ms ease-out; -moz-transition:all 350ms ease-out; -o-transition:all 350ms ease-out; -ms-transition:all 350ms ease-out; -webkit-transition:all 350ms ease-out;
}
.sqa-input-wrapper label.select-label {
	opacity:0;
	pointer-events: none;
}
.sqa-input-wrapper.sqa-filled-input label {
	top: 0px;
	padding: 0px 0;
	font-size:16px;
	opacity:1;
}

.sqa-input-wrapper textarea,
.sqa-input-wrapper select,
.sqa-input-wrapper input,
.sqa-input-wrapper button {
  outline: none;
}

.sqa-input-wrapper input,
.sqa-input-wrapper select,
.sqa-input-wrapper textarea {
	color: #05141f;
	background:transparent;
	margin-top:22px;
	padding: 0 0 16px 0;
	font-size: 28px;
	font-weight:500;
	width: 100%;
	border:none;
	border-bottom: 1px solid #ededed;
	transition:all 350ms ease-out; -moz-transition:all 350ms ease-out; -o-transition:all 350ms ease-out; -ms-transition:all 350ms ease-out; -webkit-transition:all 350ms ease-out;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

/* .sqa-input-wrapper select option,
.sqa-input-wrapper select,
.sqa-input-wrapper select::-ms-value {
	color: #fff;
	background:#252626;
} */

/* Mark input boxes that gets an error on validation: */
input.invalid,
select.invalid,
.sqa-label-incorrect input.sqa-input,
.sqa-label-incorrect select.sqa-input,
.section-white .sqa-input-wrapper.sqa-label-incorrect input.sqa-input,
.section-white .sqa-input-wrapper.sqa-label-incorrect select.sqa-input {
  border-bottom-color: #9E4BB2; color: #9E4BB2;
}

.sqa-multi-form-field-error {
  position:absolute;
  bottom:10px;
  color:#9E4BB2;
  font-size:14px;
}

/* Hide all steps by default: */
.sqa-multi-form-section {
  display: none;
}

.sqaMultiFormBtnContainer {
  margin-top:60px;
}
.sqaMultiFormBtn {
  background-color: #eee;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
  float:right;
}

.sqaMultiFormBtn:hover {
    opacity: 1;
}

.sqaMultiFormBtn#prevBtn {
  background-color: #bbbbbb;
  float:left;
}

/* Make circles that indicate the steps of the form: */
.sqa-multiform-step {
	width: 25%;
	text-align:center;
	display: block;
	float:left;
	border: none;
	padding:30px 10px 26px 10px;
	font-size:22px;
	border-bottom:4px solid #f5f5f5;
	background-color: #f7f7f7;
	color:#808080;
	cursor: pointer;
	transition:all 350ms ease-out; -moz-transition:all 350ms ease-out; -o-transition:all 350ms ease-out; -ms-transition:all 350ms ease-out; -webkit-transition:all 350ms ease-out;
}

.sqa-multiform-step.active {
  border-bottom:4px solid #339fd2;
  background-color: #fff;
  color:#252626;
}

/* Mark the steps that are finished and valid: */
.sqa-multiform-step.finish {
  border-bottom:4px solid #339fd2;
  cursor:pointer;
}


/**********************
// PROGRESSBAR
/*********************/

.sqa-waiting-container{
	height: 100%;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	position: relative;
}

.sqa-progress-container{
	width: 100%;
	height: 30px;
	position: relative;
}

.sqa-progress-bar{
	height: 2px;
	background-color: #339fd2;
	position: absolute;
	width: 1px;
	top: 50%;
	animation: progress-bar 3s infinite;
	-moz-animation: progress-bar 3s infinite;
	-o-animation: progress-bar 3s infinite;
	-webkit-animation: progress-bar 3s infinite;

	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}

@keyframes progress-bar {
	0%   {left:0px; width:1px;}
	25%  {left:0px; width: 100%;}
	45%  {right:0px; width:1px; left:100%;}
	50%  {right:0px; width:1px; left:100%;}
	75%  {width:100%; left:0px;}
	95% {width:1px; left:0px;}
	100% {width:1px; left:0px;}
}

@-webkit-keyframes progress-bar {
	0%   {left:0px; width:1px;}
	25%  {left:0px; width: 100%;}
	45%  {right:0px; width:1px; left:100%;}
	50%  {right:0px; width:1px; left:100%;}
	75%  {width:100%; left:0px;}
	95% {width:1px; left:0px;}
	100% {width:1px; left:0px;}
}

@-moz-keyframes progress-bar {
	0%   {left:0px; width:1px;}
	25%  {left:0px; width: 100%;}
	45%  {right:0px; width:1px; left:100%;}
	50%  {right:0px; width:1px; left:100%;}
	75%  {width:100%; left:0px;}
	95% {width:1px; left:0px;}
	100% {width:1px; left:0px;}
}

@-o-keyframes progress-bar {
	0%   {left:0px; width:1px;}
	25%  {left:0px; width: 100%;}
	45%  {right:0px; width:1px; left:100%;}
	50%  {right:0px; width:1px; left:100%;}
	75%  {width:100%; left:0px;}
	95% {width:1px; left:0px;}
	100% {width:1px; left:0px;}
}


/*/////////////////////////*/
/* PORTAL COLOUR OVERRIDES */
/*/////////////////////////*/
.sqa-input-wrapper { padding: 0px 0 12px 0; margin-top: 14px; }
.sqa-input-wrapper:first-child { margin-top: 0px; }
.section-white .select-label,
.section-white .sqa-input-wrapper label { color: #555; }
.section-white .sqa-input-wrapper input, .section-white .sqa-input-wrapper select, .section-white .sqa-input-wrapper textarea { background: #fff; color: #555; border-bottom: 1px solid #555; }

.sqa-multi-form-field-error { color: #9e4bb2; }
.section-white .sqa-input-wrapper input.invalid,
.section-white .sqa-input-wrapper select.invalid,
.section-white .sqa-input-wrapper textarea.invalid { border-bottom: 1px solid #9e4bb2; }

/*/////////////////////////*/
/* PORTAL SIZE OVERRIDES */
/*/////////////////////////*/
.sqa-filled-input .select-label,
.sqa-input-wrapper.sqa-filled-input label { font-size: 11px; font-weight: 400; }
.sqa-input-wrapper label { padding: 0 0 12px 0; font-weight: 600; font-size: 18px; }
.sqa-input-wrapper input,
.sqa-input-wrapper select,
.sqa-input-wrapper textarea { font-size: 22px; font-weight: 600; margin-top: 12px; padding: 0 0 2px 0; font-family: 'Montserrat', sans-serif; }

.section-white .sqa-input-wrapper input:focus,
.section-white .sqa-input-wrapper select:focus,
.section-white .sqa-input-wrapper textarea:focus { border-bottom-width: 2px; padding-bottom: 1px; }

.sqa-multi-form-field-error { font-size: 12px; font-weight: 500; bottom: -3px; }

/*/////////////////////////*/
/* CUSTOM FILE UPLOADS */
/*/////////////////////////*/
.file-upload-container {
    -webkit-box-shadow: inset 0px -1px 15px 0px rgba(127,127,127,0.24);
    -moz-box-shadow: inset 0px -1px 15px 0px rgba(127,127,127,0.24);
    box-shadow: inset 0px -1px 15px 0px rgba(127,127,127,0.24);
	cursor: pointer;
	padding: 15px;
}

.file-upload-container,
.file-upload-container span {
    font-size: 17px;
    font-weight: 700;
	color: #ced4d6;
}

.file-upload-button {
    float: right;
    border: 3px solid #09adff;
    padding: 12px 15px;
    margin: -15px;
    font-weight: 700;
    font-size: 18px;
    color: #09adff;
}

input.file-upload-input { display: none; }
.file-upload-container:hover .file-upload-button { background:#09adff; color: #fff; }


.file-upload-photo {
    height: 260px;
    width: 260px;
    border: 4px solid #eee;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: none;
}
.licensedisc-photo { margin-bottom: 14px; }

.box__drop_hint { display: none; font-size: 16px; color: #fff; text-align: center; }
.box__error { display: none; }
.box__error span { font-size: 12px; font-weight: 500; color: #9e4bb2; }

.file-upload-box.is-dragover-hint { background: #333; border: 1px solid #333; padding: 15px; }
.file-upload-box.is-dragover-hint .box__drop_hint { display: block; }

.file-upload-box.is-dragover { background: #09adff; border: 1px solid #09adff; padding: 15px; }
.file-upload-box.is-dragover .box__drop_hint { display: block; }

/* .file-upload-box.is-dragover:hover { border: 1px solid #777; } */

.file-upload-box.is-dragover-hint .box__error,
.file-upload-box.is-dragover-hint .file-upload-container,
.file-upload-box.is-dragover-hint .file-upload-photo,
.file-upload-box.is-dragover-hint .file-upload-container span,
.file-upload-box.is-dragover-hint .file-upload-button { display: none !important; }

.file-upload-box.is-dragover .box__error,
.file-upload-box.is-dragover .file-upload-container,
.file-upload-box.is-dragover .file-upload-photo,
.file-upload-box.is-dragover .file-upload-container span,
.file-upload-box.is-dragover .file-upload-button { display: none !important; }

/*/////////////////////////*/
/* QUICK FORMS */
/*/////////////////////////*/

.quick-form-section-start-head {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 0;
	position: relative;
	cursor: pointer;
}

.quick-form-section-start-head::before,
.quick-form-section-start-head::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 6px;
    background: #333;
    width: 9px;
    height: 1px;
    transform: rotate(45deg);
}
.quick-form-section-start-head::after {
    transform: rotate(-45deg);
    right: 0px;
}

.quick-form-section-container-active .quick-form-section-start-head::after {
    transform: rotate(45deg);
}
.quick-form-section-container-active .quick-form-section-start-head::before {
    transform: rotate(-45deg);
}

.quick-form-section-start,
.quick-form-section {
    /* min-height: 230px; */
	height: 230px;
    max-height: 230px;
}

.quick-form-section-start {
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
	display: none;
}

.quick-form-section {
	position: absolute;
    width: 100%;
    left: 100%;
    top: 0;
    background: #fff;
}

.quick-form-section-active {
    left: 0;
}
.quick-form-section-prev {
    left: -100%;
}

.quick-form-section-label {
    font-size: 11px;
    color: #656565;
    margin-bottom: 4px;
}

.quick-form-radio {
    float: left;
    width: 100%;
}

.quick-form-option {
    float: left;
    width: 100%;
    padding-left: 28px;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    margin: 4px 0;
	cursor: pointer;
}
	.quick-form-option::before {
	    content: "";
	    display: block;
	    width: 20px;
	    height: 20px;
	    border: 2px solid #09adff;
	    border-radius: 50%;
	    position: absolute;
	    top: 0;
	    left: 0;
	}
	.quick-form-option::after {
	    content: "";
	    display: block;
		width: 0px;
		height: 0px;

		background: #09adff;
		border-radius: 50%;
		position: absolute;
		top: 10px;
		left: 10px;

	}
	.quick-form-option-active::after {
	    width: 12px;
		height: 12px;
		top: 4px;
		left: 4px;
	}

.quick-form-section textarea {
    -webkit-box-shadow: inset 0px -1px 15px 0px rgba(127,127,127,0.24);
    -moz-box-shadow: inset 0px -1px 15px 0px rgba(127,127,127,0.24);
    box-shadow: inset 0px -1px 15px 0px rgba(127,127,127,0.24);
    padding: 15px;
    border: none;
    width: 100%;
    font-size: 18px;
    font-weight: 500;
}


.form-nav-container,
.quick-form-nav-container {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: -100%;
	z-index: -1;
}
.form-nav-container { left: auto; bottom: auto; z-index: 1; position: relative; margin-top: 20px; float: left; }

.quick-form-section-prev .quick-form-nav-container { left: 100%; z-index: -1; }
.quick-form-section-active .quick-form-nav-container { left: 0; z-index: 1; }

	.cta-btn,
	.form-nav-back,
	.form-nav-next,
	.quick-form-nav-back,
	.quick-form-nav-next {
		border: 3px solid #09adff;
		float: left;
		padding: 8px;
		font-size: 16px;
		font-weight: 700;
		color: #09adff;
		height: 47px;
		position: relative;
		cursor: pointer;
	}

	.cta-btn,
	.form-nav-next,
	.quick-form-nav-next {
		min-width: 220px;
		text-align: center;
	}

	.cta-btn { float: none; clear: both; margin-left: auto; margin-right: auto; width: fit-content; }
	.btn-solid { background: #09adff; color: #fff; text-decoration: none; }
	.btn-solid:hover { background: #0F8DD3; border: 3px solid #0F8DD3; }

	.cta-btn-white { border: 3px solid #fff; color: #fff; }

	.form-nav-back,
	.quick-form-nav-back { width:47px; }

	.form-nav-back::before,
	.form-nav-back::after,
	.quick-form-nav-back::before,
	.quick-form-nav-back::after {
		content: "";
	    display: block;
	    width: 3px;
	    height: 15px;
	    transform: rotate(-45deg);
	    top: 50%;
	    left: 16px;
	    margin-top: -3px;
	    background: #09adff;
	    position: absolute;
	}
	.form-nav-back::after,
	.quick-form-nav-back::after {transform: rotate(45deg); margin-top:-13px; }

	.form-nav-next,
	.quick-form-nav-next {
		border: 3px solid #ced4d6;
		color: #ced4d6;
		cursor:default;
		margin-left: 12px;
		padding-left: 30px;
		padding-right: 30px;
	    cursor: not-allowed;
	}

	.quick-form-nav-next { padding-left: 10px; }

	.quick-form-nav-next::before, .quick-form-nav-next::after {
	    content: "";
	    display: block;
	    width: 3px;
	    height: 15px;
	    transform: rotate(45deg);
	    top: 50%;
	    right: 16px;
	    margin-top: -3px;
	    background: #ced4d6;
	    position: absolute;
	}
	.quick-form-nav-next::after {
	    transform: rotate(-45deg);
	    margin-top: -13px;
	}

	.quick-form-nav-next-active::before,
	.quick-form-nav-next-active::after	{ background: #09adff; }

	.quick-form-nav-next-active:hover::before,
	.quick-form-nav-next-active:hover::after	{ background: #fff; }

	.form-nav-next-active,
	.quick-form-nav-next-active {
		border: 3px solid #09adff;
		color: #09adff;
		cursor: pointer;
	}

	.form-nav-back:hover,
	.form-nav-next-active:hover,
	.quick-form-nav-back:hover,
	.quick-form-nav-next-active:hover { background: #09adff; color: #fff; }

	.form-nav-back:hover::before,
	.form-nav-back:hover::after,
	.quick-form-nav-back:hover::before,
	.quick-form-nav-back:hover::after { background: #fff; }


.acknowledge-btn {
    position: relative;
    padding-top: 5px;
    float: left;
    width: 100%;
    margin-top: 4px;
	color: #09adff;
	font-weight: 500;
	font-size: 12px;
	line-height: 1em;
	cursor: pointer;
}

	.acknowledge-btn span { font-weight: 400; }
	.acknowledge-btn strong span,
	.acknowledge-btn strong { font-weight: 800; }

	.acknowledge-btn-icon {
		position: relative;
	    border: 2px solid #09adff;
	    float: left;
	    padding: 10px;
	    font-size: 18px;
	    font-weight: 700;
	    color: #09adff;
	    height: 20px;
	    width: 20px;
	    position: relative;
	    cursor: pointer;
	    border-radius: 4px; -webkit-border-radius: 4px; -ms-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px;
	    margin-right: 10px;
	    margin-top: -3px;
	}

	.acknowledge-btn-icon::before,
	.acknowledge-btn-icon::after {
		content: "";
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 0px;
		height: 2px;
		transform: rotate(45deg);
		background: #09adff;
	}
	.acknowledge-btn-icon::after {
		transform: rotate(-45deg);
	}
	.acknowledge-btn-active .acknowledge-btn-icon::before { width: 4px; margin-left: -5px; margin-top: 0px; }
	.acknowledge-btn-active .acknowledge-btn-icon::after { width: 10px; margin-left: -3px; margin-top: -1px; }

@media only screen and (min-width:340px) {
	.cta-btn,
	.form-nav-back,
	.form-nav-next,
	.quick-form-nav-back,
	.quick-form-nav-next {
		padding-left: 10px;
    	padding-top: 10px;
		font-size: 18px;
	}
}
