/* Progressive Form Theme - Styled to match stay_informed form */

.progressive-form-wrapper {
    background-color: #f0f0f0;
    padding: 80px 20px;
}

.progressive-form-wrapper .umbraco-forms-page.progressiveform {
    background-color: #fff;
    padding: 30px 45px 45px 45px;
    max-width: 920px;
    margin: 0 auto;
}

.progressive-form-wrapper form {
    max-width: 100%;
}

/* Hide page indicators (dots) - we use progress bar instead */
.progressive-form-wrapper .form-page-indicators {
    display: none;
}

/* Two column layout for form */
.progressive-form-wrapper .progressive-form-row {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
}

.progressive-form-wrapper .umbraco-forms-field > div {
    max-width: 100%;
    width: 100%;
}

.progressive-form-wrapper .progressive-form-navigation {
    display: flex;
    align-items: flex-end;
    padding-bottom: 4px;
    padding-top: 10px;
}

.progressive-form-wrapper .progressive-form-navigation input[type="submit"] {
    width: 100%;
}

/* Heading/Caption styling */
.progressive-form-wrapper h4.umbraco-forms-caption,
.progressive-form-wrapper .umbraco-forms-label {
    font-size: 16px;
    font-family: 'Geometria', Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 10px;
    text-transform: none;
    text-align: left;
}

.progressive-form-wrapper .umbraco-forms-label {
    display: block;
}

/* Progress bar styling */
.progressive-form-wrapper .progress-bar-container {
    margin-top: 20px;
    position: relative;
}

.progressive-form-wrapper .progress-bar-track {
    width: 100%;
    height: 5px;
    background-color: #ddd;
}

.progressive-form-wrapper .progress-bar-fill {
    height: 5px;
    background-color: #5dcf1d;
    transition: width 0.3s ease;
}

.progressive-form-wrapper .progress-counter {
    text-align: right;
    font-size: 14px;
    color: #2f2f2f;
    margin-top: 5px;
}

/* Navigation row styling */
.progressive-form-wrapper .umbraco-forms-navigation.row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 10px;
}

.progressive-form-wrapper input[type="text"],
.progressive-form-wrapper input[type="email"],
.progressive-form-wrapper input[type="tel"],
.progressive-form-wrapper textarea,
.progressive-form-wrapper select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    padding: 15px 20px;
    font-size: 14px;
    border: 1px solid #d3d3d3;
    margin-bottom: 10px;
    width: 100% !important;
    max-width: 100%;
    border-radius: 0px;
    box-sizing: border-box;
}

.progressive-form-wrapper select {
    background-image: url("https://www.azcommerce.com/media/1541908/arrow.svg");
    background-repeat: no-repeat;
    background-size: 16px 25px;
    background-position: 95% 50%;
}

.progressive-form-wrapper input[type="text"]:focus,
.progressive-form-wrapper input[type="email"]:focus,
.progressive-form-wrapper textarea:focus {
    border: 1px solid #878787;
    outline: none;
}

.progressive-form-wrapper input[type="text"].valid,
.progressive-form-wrapper input[type="email"].valid,
.progressive-form-wrapper textarea.valid {
    border: 1px solid #75a641;
}

.progressive-form-wrapper input[type="text"].input-validation-error,
.progressive-form-wrapper textarea.input-validation-error,
.progressive-form-wrapper select.input-validation-error {
    border: 1px solid #e76f44;
}

.progressive-form-wrapper .umbraco-forms-navigation input[type="submit"],
.progressive-form-wrapper input[type="submit"] {
    font-size: 16px;
    font-family: 'Geometria-Medium', Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    background-color: #d23f08;
    width: 100%;
    max-width: 100%;
    color: #fff;
    padding: 19px;
    border: 1px solid #d23f08;
    cursor: pointer;
    transition: all .3s ease-out;
    box-sizing: border-box;
}

.progressive-form-wrapper .umbraco-forms-navigation input[type="submit"]:hover,
.progressive-form-wrapper input[type="submit"]:hover {
    color: #d23f08;
    background-color: #ffffff;
}

/* Checkbox styling */
.progressive-form-wrapper input[type="checkbox"] {
    visibility: hidden;
    width: 0;
}

.progressive-form-wrapper input[type="checkbox"] + label {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

.progressive-form-wrapper input[type="checkbox"] + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    width: 13px;
    height: 13px;
    border-radius: 2px;
    transition: all .3s ease-out;
    background-color: #ccc;
}

.progressive-form-wrapper input[type="checkbox"] + label:after {
    content: "";
    position: absolute;
    transition: all .3s ease-out;
    opacity: 0;
    top: 4px;
    left: 4px;
    width: 5px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

.progressive-form-wrapper input[type="checkbox"]:checked + label:before {
    background-color: #002c54;
}

.progressive-form-wrapper input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

/* Radio button styling */
.progressive-form-wrapper input[type="radio"] {
    visibility: hidden;
    width: 0;
}

.progressive-form-wrapper input[type="radio"] + label {
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

.progressive-form-wrapper input[type="radio"] + label::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 3px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    transition: all .3s ease-out;
    background-color: #ccc;
}

.progressive-form-wrapper input[type="radio"]:checked + label::before {
    background-color: #002c54;
}

.progressive-form-wrapper input[type="radio"]:checked + label::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 4px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: white;
    opacity: 1;
}

/* Fieldset styling */
.progressive-form-wrapper .umbraco-forms-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

.progressive-form-wrapper .umbraco-forms-field-wrapper {
    margin-bottom: 15px;
}

/* Validation message styling */
.progressive-form-wrapper .field-validation-error {
    color: #e76f44;
    font-size: 12px;
    display: block;
    margin-top: 5px;
    position: absolute;
    bottom: -18px;
}

.progressive-form-wrapper .validation-summary-errors {
    color: #e76f44;
    margin-bottom: 15px;
}

.progressive-form-wrapper .validation-summary-errors ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Subtext styling */
.progressive-form-wrapper .subText {
    font-size: 13px;
    font-style: italic;
}

.spacer{
	min-height: 2px;
}

#acicText{
	font-size:10px;
	 text-align: left;
    position: relative;
    top: 8px;
}
#newsletterText{
	font-size:10px;
	text-align: left;
    position: relative;
    top: 18px;
}
#contour_form_c6b0f9fe33264a98a01472f1cd0d50e2.fieldset .contour fieldset {
    padding: 0;
    float: left;
    width: 49%;
    border: none !Important;
}
#contour_form_c6b0f9fe33264a98a01472f1cd0d50e2 .contourField > div input.valid + span:after, .contourField > div textarea.valid + span:after, .contourField > div select.valid + span:after {
    content: '';
    position: absolute;
    top: 0px;
    right: -40px;
    padding: 17px;
    color: #fff;
}
@media (min-width: 992px){
	.stay_informed .contourNavigation {
		width: 50%;
		float: right;
		position: relative;
		z-index: 10;
		margin-top: -96px;
	}
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	/* IE10+ CSS styles go here */
		#header{ margin-top:-3px;}
		#logo{
			width:160px;
			height:76px;
		}

	}
@media only screen 
  and (min-device-width: 320px) 
  and (max-device-width: 990px)  { 
	
	.spacer {
    	min-height: 25px;
	}
	
	  .stay_informed_inset {
		background-color: #fff;
		padding-left: 27px;
		padding-right: 33px;
		padding-top: 17px;
		padding-bottom: 45px;
	}
 }
#contour_form_c6b0f9fe33264a98a01472f1cd0d50e2 .fieldset, .contour fieldset {
    position: relative;
	z-index:3;
	width: 100%;
}
	input[type="checkbox"] + label:after {
		content: "";
		position: absolute;
		-webkit-transition: all .3s ease-out;
		-o-transition: all .3s ease-out;
		transition: all .3s ease-out;
		opacity: 0;
		left: 4px;
		width: 5px;
		height: 8px;
		border-right: 2px solid white;
		border-bottom: 2px solid white;
		-webkit-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 1px;
	}

@media (min-width: 992px){
	.stay_informed .contourNavigation {
		width: 50%;
		float: right;
		margin-top: -92px;
	}
	
	
	
}

		form {
			width: 100%;
			max-width: 920px;
		}
		#contour_form_c6b0f9fe33264a98a01472f1cd0d50e2.shortanswer label{
    		display: inline-block;
		}
		#contour_form_c6b0f9fe33264a98a01472f1cd0d50e2.longanswer label {
    		display: inline-block;
		}
		label {
            margin-bottom: -3px;
        }

        .stay_informed {
            padding-top: 75px;
            padding-bottom: 75px;
        }
        .stay_informed_inset {
			background-color: #fff;
			padding-left: 115px;
			padding-right: 175px;
			padding-top: 17px;
			padding-bottom: 45px;
		}
        #formHeader{
            text-align: center;
        }
        .bg_lightgrey {
            background-color: #f0f0f0;
        }
		.emailError{
			color: #d23f08;
		}
.validation-orange{
	border: 1px solid #d23f08;
}
		
#4eb57195-b68c-46b5-db21-1def41b568d7_0:checked + label:before {
    background-color: #002c54;
}

#4eb57195-b68c-46b5-db21-1def41b568d7_0 + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 63px;
    width: 13px;
    height: 13px;
    border-radius: 2px;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    background-color: #ccc;
}
#4eb57195-b68c-46b5-db21-1def41b568d7_0:checked + label:after {
    opacity: 1;
}

#4eb57195-b68c-46b5-db21-1def41b568d7_0 + label:after {
    content: "";
    position: absolute;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    opacity: 0;
    left: 4px;
    top: 64px;
    width: 5px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#4eb57195-b68c-46b5-db21-1def41b568d7_1:checked + label:before {
    background-color: #002c54;
}

#4eb57195-b68c-46b5-db21-1def41b568d7_1 + label:before{
 	content: "";
    position: absolute;
    left: 0;
    top: 155px;
    width: 13px;
    height: 13px;
    border-radius: 2px;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    background-color: #ccc;
}

#4eb57195-b68c-46b5-db21-1def41b568d7_1:checked + label:after {
    opacity: 1;
}
#4eb57195-b68c-46b5-db21-1def41b568d7_1 + label:after{
content: "";
    position: absolute;
    -webkit-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    opacity: 0;
    left: 4px;
    top: 156px;
    width: 5px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
        #contour_form_c6b0f9fe-3326-4a98-a014-72f1cd0d50e2 form button {
            font-size: 16px;
            font-family: Geometria;
            text-transform: uppercase;
            background-color: #d23f08;
            width: 100%;
            color: #fff;
            padding: 19px;
            border: none;
            outline: none;
            margin-top: 20px;
        }
        #contour_form_c6b0f9fe-3326-4a98-a014-72f1cd0d50e2 form select {
            background-image: url(https://www.azcommerce.com/media/1541908/arrow.svg);
            background-repeat: no-repeat;
            background-size: 16px 25px;
            background-position: 95% 50%;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-color: white;
            padding: 18px 0 18px 20px;
            font-size: 14px;
            border: 1px solid #d3d3d3;
            margin-bottom: 10px;
            width: 100% !important;
            max-width: 400px;
        }
		
       #contour_form_c6b0f9fe-3326-4a98-a014-72f1cd0d50e2 form input[type="text"], textarea {
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-color: white;
            padding: 18px 0 18px 20px;
            font-size: 14px;
            border: 1px solid #d3d3d3;
            margin-bottom: 10px;
            width: 100% !important;
            max-width: 400px;
        }
        .subText{
            font-size: 13px;
            font-style: italic;
        }

        
        .step-one{
            width: 18%;
            background-color: #5dcf1d;
        }

        .step-two{
            width: 36%;
            background-color: #5dcf1d;
        }

        .step-three{
            width: 52%;
            background-color: #5dcf1d;
        }

        .step-four{
            width: 70%;
            background-color: #5dcf1d;
        }

        .step-five{
            width: 88%;
            background-color: #5dcf1d;
        }
        .step-six{
            width: 100%;
            background-color: #5dcf1d;
        }
        #myProgress {
            width: 100%;
            background-color: #ddd;
        }
        #myBar {
            height: 5px;
            background-color: #5dcf1d;
            text-align: center; /* To center it horizontally (if you want) */
            line-height: 5px; /* To center it vertically */
            color: white;
        }

