/* Minification failed. Returning unminified contents.
(204,52): run-time error CSS1046: Expect comma, found '8'
(204,58): run-time error CSS1046: Expect comma, found '/'
(206,44): run-time error CSS1046: Expect comma, found '8'
(206,50): run-time error CSS1046: Expect comma, found '/'
 */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    /* The slider */
    .switch .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
    }

        .switch .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        }

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #AFB9C9;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #AFB9C9;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #AFB9C9;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

    .slider.round:before {
        border-radius: 50%;
    }

.hero-block__logos.form__logos {
    position: relative;
    z-index: 1000;
    top: 45px;
    width: 85%;
    margin: 0 auto;
    height: 100px;
}

.form-wrap {
    background: url('/Content/Images/formbg.png') #f7fcfc no-repeat;
    background-position: top;
    display: flex;
    flex-direction: column;
    border-radius: 40px;
    padding-top: 50px;
}

    .form-wrap .progress-indicator {
        margin: 30px auto;
        display: flex;
        align-items: center;
    }

        .form-wrap .progress-indicator .indicator-point {
            display: flex;
            align-items: center;
        }

        .form-wrap .progress-indicator .indicator-number {
            width: 40px;
            height: 40px;
            border-radius: 25px;
            border: 3px solid #AFB9C9;
            align-items: center;
            justify-content: space-around;
            font-weight: bold;
            display: flex;
            font-size: 22px;
            color: #AFB9C9;
            transition: ease 1s;
        }

        .form-wrap .progress-indicator .indicator-point.active .indicator-number {
            background-color: #fff;
            border: 3px solid #000;
            color: #000;
        }

        .form-wrap .progress-indicator .indicator-point.complete .indicator-number {
            background-color: #B9DD54;
            border: 3px solid #000;
            color: #000;
        }

        .form-wrap .progress-indicator .indicator-line {
            width: 35px;
            height: 3px;
            background-color: #AFB9C9;
        }

        .form-wrap .progress-indicator .indicator-point.active .indicator-line, .form-wrap .progress-indicator .indicator-point.complete .indicator-line {
            background-color: #000;
        }

    .form-wrap .form-section {
    }

        .form-wrap .form-section.active {
            display: block;
        }

    .form-wrap h2 {
        text-transform: uppercase;
        font-weight: bold;
        font-size: 24px;
        text-align: center;
        margin-top: 50px;
        color: #726AD3;
    }

    .form-wrap h4 {
        font-weight: normal;
        font-size: 18px;
        margin: 0 0 12px 0;
    }

    .form-wrap .question {
        max-width: 700px;
        margin: 40px auto 0 auto;
    }

#Flex_Options {
    margin: 20px 0 0 0;
}

    #Flex_Options .error-wrap {
    }

        #Flex_Options .error-wrap .error-message, .net-error {
            color: #c1272d;
            font-weight: bold;
        }

#Error_Message_Select, #Error_Message_Min {
    color: #c1272d;
    font-weight: bold;
    text-transform: uppercase;
}

#Flex_Options .error-wrap .diable-flexAmount {
}

.radio-option {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

    .radio-option input[type="radio"] {
        opacity: 0;
        position: fixed;
        width: 0;
    }

    .radio-option label {
        background-color: #fff;
        -webkit-box-shadow: 0px 0px 16px 0px rgb(8 8 102 / 10%);
        -moz-box-shadow: 0px 0px 16px 0px rgba(8,8,102,0.1);
        box-shadow: 0px 0px 16px 0px rgb(8 8 102 / 10%);
        padding: 15px 0;
        font-size: 14px;
        line-height: 22px;
        border: 2px solid #26282C;
        border-radius: 10px;
        width: 31%;
        margin: 10px 0;
        text-align: center;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-around;
    }

        .radio-option label:hover {
            background-color: #EAF7BC;
        }

        .radio-option label.disabled {
            background-color: #FAFCFC;
            border: 2px solid #AFB9C9;
            color: #AFB9C9;
        }

    .radio-option.short label {
        padding: 15px 0;
    }

    .radio-option.quarters label {
        width: 23%;
    }

    .radio-option.eighths label {
        width: 10%;
    }

    .radio-option input[type="radio"]:focus + label {
        background-color: #EAF7BC;
    }

    .radio-option input[type="radio"]:checked + label {
        background-color: #B9DD54;
        font-weight: bold;
    }

    .radio-option input[disabled] {
        background-color: #FAFCFC;
        border: 2px solid #AFB9C9;
        color: #AFB9C9;
    }

    .radio-option input[type="radio"][disabled]:checked + label {
        background-color: #FAFCFC;
    }


    .radio-option.erred {
        background-color: #f1c5c7;
        border-radius: 30px;
    }

.question input[type=text], .question input[type=tel], .question input[type=email], .question select, .question input[type=number], .question input[type=date] {
    padding: 10px 0;
    text-indent: 20px;
    font-size: 18px;
    line-height: 30px;
    border: 2px solid #26282C;
    border-radius: 10px;
    margin: 10px 0 15px 0px;
    width: 100%;
}

.question .erred-wrapper input[type=text], .question .erred-wrapper input[type=tel], .question .erred-wrapper input[type=email], .question .erred-wrapper input[type=number], .question .erred-wrapper input[type=date] {
    border: 2px solid #c1272d;
}

.question.erred {
    background-color: #f1c5c7;
}

.question select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-image: url('images/downarrow.png');
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 15px;
}

    .question select.erred {
        border: 2px solid #c1272d;
    }

.erred-message {
    font-weight: bold;
    color: #c1272d;
}

.message {
    background-color: #e1f0f4;
    padding: 10px;
    font-size: 14px;
    line-height: 20px;
}

.question label.text-label {
    font-size: 18px;
}

.question p.subtext {
    margin-bottom: 0;
}

.check-wrap {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

    .check-wrap p {
        margin: 0 0 0 15px;
        font-size: 18px;
    }

    .check-wrap input[type="checkbox"] {
        transform: scale(2.5);
        -ms-transform: scale(2.5); /* IE */
        -moz-transform: scale(2.5); /* FF */
        -webkit-transform: scale(2.5); /* Safari and Chrome */
        -o-transform: scale(2.5); /* Opera */
        margin: 0 15px;
        min-width: 16px;
        min-height: 16px;
    }

.formnav-buttons {
    display: flex;
    justify-content: center;
}

    .formnav-buttons button {
        padding: 20px 45px;
        border-radius: 33px;
        color: #fff;
        border: 0;
        font-weight: bold;
        font-size: 20px;
        text-transform: uppercase;
        margin: 50px 0 100px 0;
        transition: ease .3s;
        cursor: pointer;
    }


        .formnav-buttons button:disabled {
            background-color: #F7FCFC !important;
            border: 2px solid #AFB9C9 !important;
            color: #AFB9C9;
        }

        .formnav-buttons button.active {
            background-color: #726AD3;
        }

            .formnav-buttons button.active:hover {
                background-color: #8685E0;
            }


        .formnav-buttons button.inactive {
            background-color: #F7FCFC !important;
            border: 2px solid #AFB9C9 !important;
            color: #AFB9C9;
        }

            .formnav-buttons button.inactive:hover {
                background-color: #F7FCFC !important;
                border: 2px solid #AFB9C9 !important;
                color: #AFB9C9;
            }

.email-btn {
    margin: 10px 5px 0 auto;
    background-color: #726AD3;
    color: #fff;
    border: 0;
    font-weight: bold;
    font-size: 15px;
    padding: 12px;
    border-radius: 5px;
}

    .email-btn:hover {
        background-color: #8685E0;
    }



.switch-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

    .switch-wrap p {
        margin: 0;
        width: 70px;
    }

#address-search {
    padding: 20px 45px;
    border-radius: 33px;
    color: #26282C;
    background-color: #b9dd54;
    border: 0;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    margin: 0 auto;
    transition: ease .3s;
}

#Net_Wrap {
    border-radius: 20px;
}

    #Net_Wrap.erred {
        background-color: #f1c5c7;
        max-width: 800px;
        margin: 40px auto 0 auto;
        overflow: hidden;
    }

.question.netChecks {
    margin-top: 0;
}

.netChecks .check-wrap {
    padding: 10px 0;
}

.netChecks .question {
    margin: 10px 0 25px 58px;
}

    .netChecks .question .text-label {
        font-size: 16px;
        font-weight: bold;
    }

.money-input-wrap {
    position: relative;
    display: flex;
    margin: 10px 0 15px 0;
    border: 2px solid #26282C;
    background-color: #fff;
    border-radius: 10px;
}

    .money-input-wrap .money-icon {
        width: 50px;
        border-right: 2px solid #26282C;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

.question .money-input-wrap input[type=text] {
    margin: 0;
    border: 0;
}

.money-input-wrap input[type="text"]:focus-visible {
    border: 0;
    outline-offset: unset;
    outline: none;
}

/*.input-icon {
    position: relative;
}

    .input-icon > i {
        position: absolute;
        display: block;
        transform: translate(0, -53%);
        top: 48%;
        pointer-events: none;
        width: 50px;
        text-align: center;
        font-style: normal;
        font-size: 20px;
        font-weight: bold;
    }

    .input-icon > input , .input-icon .erred-wrapper > input{
        padding-left: 25px !important;
        padding-right: 0 !important;
    }

.input-icon-right > i {
    right: 0;
}

.input-icon-right > input {
    padding-left: 0;
    padding-right: 25px;
    text-align: right;
}*/



#Total_Monthly {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    text-transform: uppercase;
    margin: 20px 0;
    background-color: #fff;
    padding: 15px;
}

#Total_Monthly_Error {
    color: #c1272d;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
}

.hide_element {
    display: none !important;
}

.final-question a {
    color: #726AD3;
    cursor: pointer;
}



.progress-view {
    text-align: center;
}

    .progress-view img {
        width: 400px;
        margin: 0 auto 40px auto;
    }

    .progress-view .container h3 {
        margin-bottom: 40px;
    }

    .progress-view .container .searching .progress {
        margin: 0 auto;
        width: 250px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        padding-bottom: 90px;
    }

    .progress-view .container .progress .percentage h3 {
        color: #60a3c4;
        margin-bottom: 0;
        font-size: 60px;
    }


    .progress-view .container .countdown-wrap {
        width: 400px;
        margin: 0 auto;
    }

        .progress-view .container .countdown-wrap .progress {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .progress-view .container .countdown-wrap .progress h4 {
                margin: 0;
                line-height: 35px;
                text-align: left;
            }

            .progress-view .container .countdown-wrap .progress .countdown {
                width: 60px;
                height: 60px;
                position: relative;
                display: inline-block;
            }

                .progress-view .container .countdown-wrap .progress .countdown .icon {
                    background-color: #e0fcf5;
                    color: #3f9896;
                    font-size: 40px;
                    text-align: center;
                    border-radius: 20px;
                    font-weight: bold;
                    width: 60px;
                    height: 60px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    flex-shrink: 0;
                    position: absolute;
                    top: 0;
                    left: 0;
                    text-align: center;
                    transition: all 1.5s ease;
                    opacity: 0;
                }

.countdown .icon:nth-child(1) {
    animation: letteranim 1s ease;
    animation-delay: 0s;
}

.countdown .icon:nth-child(2) {
    animation: letteranim 1s ease;
    animation-delay: 1.5s;
}

.countdown .icon:nth-child(3) {
    animation: letteranim 1s ease;
    animation-delay: 3s;
}

.countdown .icon:nth-child(4) {
    animation: letteranim 1s ease;
    animation-delay: 4.5s;
}

@keyframes letteranim {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    10% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.lds-spinner {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-spinner div {
        transform-origin: 40px 40px;
        animation: lds-spinner 1.2s linear infinite;
    }

        .lds-spinner div:after {
            content: " ";
            display: block;
            position: absolute;
            top: 6px;
            left: 37px;
            width: 6px;
            height: 16px;
            border-radius: 3px;
            background: #b9dd54;
        }

        /*        .lds-spinner div.red:after {
            background: #f75454;
        }

        .lds-spinner div.green:after {
            background: #3f9896;
        }

        .lds-spinner div.blue:after {
            background: #60a3c4;
        }

        .lds-spinner div.pink:after {
            background: #ffbbc8;
        }*/


        .lds-spinner div:nth-child(1) {
            transform: rotate(0deg);
            animation-delay: -1.1s;
        }

        .lds-spinner div:nth-child(2) {
            transform: rotate(30deg);
            animation-delay: -1s;
        }

        .lds-spinner div:nth-child(3) {
            transform: rotate(60deg);
            animation-delay: -0.9s;
        }

        .lds-spinner div:nth-child(4) {
            transform: rotate(90deg);
            animation-delay: -0.8s;
        }

        .lds-spinner div:nth-child(5) {
            transform: rotate(120deg);
            animation-delay: -0.7s;
        }

        .lds-spinner div:nth-child(6) {
            transform: rotate(150deg);
            animation-delay: -0.6s;
        }

        .lds-spinner div:nth-child(7) {
            transform: rotate(180deg);
            animation-delay: -0.5s;
        }

        .lds-spinner div:nth-child(8) {
            transform: rotate(210deg);
            animation-delay: -0.4s;
        }

        .lds-spinner div:nth-child(9) {
            transform: rotate(240deg);
            animation-delay: -0.3s;
        }

        .lds-spinner div:nth-child(10) {
            transform: rotate(270deg);
            animation-delay: -0.2s;
        }

        .lds-spinner div:nth-child(11) {
            transform: rotate(300deg);
            animation-delay: -0.1s;
        }

        .lds-spinner div:nth-child(12) {
            transform: rotate(330deg);
            animation-delay: 0s;
        }

@keyframes lds-spinner {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}



@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes blink {
    50% {
        opacity: 1;
    }
}


@keyframes fadeIn {
    from {
        transform: translateY(10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(10px);
        opacity: 0;
    }
}

.special-offer-tick-container {
    width: 30px;
    position: relative;
    top: -10px;
}

.special-offer-ticklabel-container {
    width: 85%;
}

.special-offer-logo {
    margin-top: 35px;
    margin-bottom: 30px;
}

.special-offer-styles-0 .special-offer-logo {
    margin-bottom: 30px;
}

    .special-offer-styles-0 .special-offer-logo img {
    }

.special-offer-styles-1 .special-offer-logo {
    margin-bottom: 30px;
}

    .special-offer-styles-1 .special-offer-logo img {
        max-width: 60%;
    }

.special-offer-styles-2 .special-offer-logo {
    margin-bottom: 30px;
}

    .special-offer-styles-2 .special-offer-logo img {
        max-width: 80%;
    }

.special-offer-styles-3 .special-offer-logo {
    margin-bottom: 30px;
}

    .special-offer-styles-3 .special-offer-logo img {
        max-width: 80%;
    }

.special-offer-styles-4 .special-offer-logo {
    margin-bottom: 30px;
}

    .special-offer-styles-4 .special-offer-logo img {
        max-width: 80%;
    }

#special-offer-tile-title {
    font-weight: 400;
}

.submitted .special-offer-button-progress {
    display: inline-block;
}

.special-offer-button-progress {
    display: none;
    margin-left: 15px;
}

    .special-offer-button-progress img {
        height: 30px;
        width: 30px;
    }

.special-offer .messages {
    float: left;
}

.special-offer .help-block.error {
    font-size: 14px;
}

#credit-modal {
    padding: 25px;
    margin: 10px auto;
    border: 2px solid #000;
    border-radius: 10px;
    max-width: 625px;
}

    #credit-modal input[type=text], #credit-modal input[type=tel], #credit-modal input[type=email], #credit-modal select, #credit-modal input[type=number], #credit-modal input[type=date] {
        padding: 10px 0;
        text-indent: 20px;
        font-size: 18px;
        line-height: 30px;
        border: 2px solid #26282C;
        border-radius: 10px;
        margin: 10px 0 15px 0px;
        width: 100%;
    }

.credit-modal-visible {
    position: relative;
    top: -80rem;
    left: 0;
    right: 0;
    bottom: 0;
    width: 75%;
    height: 100%;
    z-index: 999;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 5s ease-in-out;
    transition: all 5s ease-in-out;
    background-color: #fff;
}

#opaque {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    display: none;
    background-color: #000;
    -webkit-filter: alpha(opacity=30);
    -moz-filter: alpha(opacity=30);
    -o-filter: alpha(opacity=30);
    filter: alpha(opacity=30);
    -ms-opacity: .3;
    opacity: .75;
}

.offer {
    width: 100% !important;
    display: block;
}

#RequestSpecialOffer {
    transform: scale(3);
    -ms-transform: scale(3); /* IE */
    -moz-transform: scale(3); /* FF */
    -webkit-transform: scale(3); /* Safari and Chrome */
    -o-transform: scale(3); /* Opera */
}

#special-offer-tile-title {
    cursor: pointer;
}

strong {
    font-weight: 800;
}

/*.far {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: Font Awesome\ 5 Pro;
    font-weight: 400;
}

.fa-check:before {
    content: "\f00c";
}*/

.submit-no-offer {
    font-weight: normal;
    font-size: 14px;
    margin: 15px 0 30px 0;
}

.formnav-buttons button#submitWithSpecialOfferButton {
    margin: 0;
}

@media only screen and (max-width: 800px) {
    .form-wrap .question {
        max-width: 95%;
    }

    .special-offer-tick-container {
        padding-left: 25px;
        position: relative;
        top: -20px;
    }
}

@media only screen and (max-width: 490px) {
    .radio-option label {
        width: 48%;
    }

    .radio-option.quarters label {
        width: 48%;
    }

    .radio-option.eighths label {
        width: 20%;
    }

    .progress-view .container .searching .progress {
        flex-direction: column;
    }

    .lds-spinner {
        margin-top: 30px;
    }

    .netChecks .question {
        margin: 10px 0 25px 0;
    }

    .progress-view .container .countdown-wrap .progress .countdown {
        left: -80px;
    }

    .special-offer-styles-0 .special-offer-logo img {
        width: 300px;
    }

    .special-offer-ticklabel-container {
        width: 80%;
    }

    .special-offer-tick-container {
        padding-left: 25px;
        position: relative;
        top: -40px;
    }
}


@media only screen and (max-width: 420px) {
    .special-offer-styles-0 .special-offer-logo img {
        width: 240px;
    }

    #credit-modal {
        padding: 5px;
    }

    .credit-modal-visible {
        width: 95%;
        padding: 10px;
    }

    .special-offer-ticklabel-container {
        width: 80%;
    }

    .special-offer-logo img {
        width: 340px;
    }

    .special-offer-tick-container {
        padding-left: 25px;
        position: relative;
        top: -50px;
    }
}


@media only screen and (max-width: 340px) {
    .progress-view .container .countdown-wrap .progress .countdown {
        left: -92px;
    }

    .special-offer-styles-0 .special-offer-logo img {
        width: 240px;
    }

    .special-offer-logo img {
        width: 290px;
    }

    .special-offer-ticklabel-container {
        width: 70%;
    }

    .special-offer-tick-container {
        padding-left: 25px;
        position: relative;
        top: -60px;
    }
}

@media only screen and (max-width: 300px) {
    .special-offer-styles-0 .special-offer-logo img {
        width: 200px;
    }

    .special-offer-logo img {
        width: 280px;
    }
}

#title-popup-window {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 1000;
}

.title-popup-block {
    width: 70%;
    max-width: 550px;
    margin: 15% auto 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
    text-align: right;
}

    .title-popup-block button {
        color: #000;
        border: 2px solid #000;
        background-color: #fff;
        border-radius: 3px;
        font-weight: bold;
        width: 28px;
        height: 28px;
    }

    .title-popup-block p {
        text-align: left;
        margin-top: 10px;
        color: #000;
    }

    p.title-subtext{
        text-align:center;
        margin-top:20px;
    }

p.title-subtext button.title-subtext-btn {
    border: 0;
    color: #5CB0E2;
    background-color: transparent;
    font-weight: bold;
}
