/*media query*/
/*colors*/
/*fonts*/
/*button colors*/
/*button*/
.general-button {
    color: #1d1c64;
    border: 2px solid #1d1c64;
    font-size: 1.4em;
    font-family: "AlmoniDLAAA-bold";
    padding: 0.8em 5em;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    border-radius: 90px;
}

#div-loader {
    display: none;
}

#div-msg {
    display: none;
}

.loader-to-header {
    position: absolute;
    width: 100vw;
    height: 90vh;
    top: 12vh;
}

    .loader-to-header .transaction-deny-gif-loader {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        flex-flow: column;
        z-index: 999;
    }

    .loader-to-header .loader-container {
        margin-top: 85px;
    }

    .loader-to-header img {
        max-width: 300px;
        width: 100%;
        margin: 0 auto 0 auto;
        display: block;
    }


@media (min-width: 768px) {
    .general-button {
        text-align: center;
        position: relative;
        font-size: 1.8em;
    }

        .general-button:after {
            content: "";
            display: inline-block;
            opacity: 0;
            width: 0.6rem;
            height: 1rem;
            margin-right: 5rem;
            -webkit-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
            position: absolute;
            left: 14px;
        }

        .general-button:hover:after {
            opacity: 1;
        }

        .general-button span {
            -webkit-transition: all 0.11s ease;
            -moz-transition: all 0.11s ease;
            -o-transition: all 0.11s ease;
            transition: all 0.11s ease;
        }

        .general-button:hover span {
            -webkit-transition: all 0.11s ease;
            -moz-transition: all 0.11s ease;
            -o-transition: all 0.11s ease;
            transition: all 0.11s ease;
            -webkit-transform: translate(1.5rem, 0);
            transform: translate(1.5rem, 0);
            display: inline-block;
        }
}

.flex {
    display: flex;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.br-mobile {
    display: block;
}

@media (min-width: 768px) {
    .br-mobile {
        display: none;
    }
}

a:hover {
    text-decoration: none;
}

.bold {
    font-family: "AlmoniDLAAA-bold";
}

.arrow-link {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    color: #479ba2;
    font-family: "AlmoniDLAAA-bold";
}

    .arrow-link:hover {
        color: #021652;
    }

    .arrow-link:after {
        content: '';
        border: solid;
        border-color: inherit;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 2.2px;
        transform: rotate(135deg);
        -webkit-transform: rotate(135deg);
        width: 0;
        height: 0;
        position: absolute;
        left: -9px;
        top: 10.9px;
    }

.link {
    color: #479ba2;
    font-family: "AlmoniDLAAA-bold";
    font-size: 1.6rem;
}

    .link:hover {
        color: #021652;
    }


button:hover, button:focus {
    outline: none;
}

.brand-button {
    font-size: 1.8rem;
    font-family: "AlmoniDLAAA-bold";
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    border-radius: 90px;
    width: 220px;
    padding-top: 8px;
    padding-bottom: 9px;
    text-align: center;
    display: inline-block;
    white-space: nowrap;
    border: 0;
}

    .brand-button.disable {
        opacity: 0.5;
        cursor: default;
    }

@media (min-width: 768px) {
    .brand-button {
        text-align: center;
        position: relative;
        font-size: 1.8em;
        padding-top: 5px;
        padding-bottom: 6px;
        cursor: pointer;
    }

        .brand-button:after {
            content: '';
            border: solid;
            border-color: inherit;
            border-width: 0 2px 2px 0;
            display: inline-block;
            padding: 3px;
            transform: rotate(135deg);
            -webkit-transform: rotate(135deg);
            width: 0;
            height: 0;
            top: 1.6rem;
            left: 1.8rem;
            -webkit-transition: all 0.5s ease;
            -moz-transition: all 0.5s ease;
            -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
            opacity: 0;
            position: absolute;
        }

        .brand-button:hover:after {
            opacity: 1;
        }

        .brand-button span {
            -webkit-transition: all 0.11s ease;
            -moz-transition: all 0.11s ease;
            -o-transition: all 0.11s ease;
            transition: all 0.11s ease;
        }

        .brand-button:hover span {
            -webkit-transition: all 0.11s ease;
            -moz-transition: all 0.11s ease;
            -o-transition: all 0.11s ease;
            transition: all 0.11s ease;
            -webkit-transform: translate(1.5rem, 0);
            transform: translate(1.5rem, 0);
            display: inline-block;
        }
}

.aqua-button {
    background-color: #67eed5;
    color: #021652;
}

    .aqua-button:hover {
        color: #021652;
    }

.blue-button {
    background-color: #021652;
    color: #fff;
}

    .blue-button:hover {
        color: #fff;
    }

.red-button {
    background-color: #ff5050;
    color: #fff !important;
}

.white-button {
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
}

    .white-button:hover {
        color: #000;
    }

.white-button-no-border {
    background-color: #fff;
    color: #000;
    border: 0 solid #000;
}

    .white-button-no-border:hover {
        color: #000;
    }

.solid-button-blue {
    border: 2px solid #021652;
    padding-top: 3px;
    padding-bottom: 4px;
    color: #021652;
}

    .solid-button-blue:hover {
        color: #021652;
    }

@media (min-width: 768px) {
    .solid-button-blue:after {
        top: 1.4rem;
    }
}

.solid-button-white {
    border: 2px solid #fff;
    padding-top: 3px;
    padding-bottom: 4px;
    color: #fff;
}

    .solid-button-white:hover {
        color: #fff;
    }

@media (min-width: 768px) {
    .solid-button-white:after {
        top: 1.4rem;
    }
}

.solid-button-aqua {
    border: 2px solid #479ba2;
    padding-top: 3px;
    padding-bottom: 4px;
    color: #479ba2;
}

    .solid-button-aqua:hover {
        color: #479ba2;
    }

@media (min-width: 768px) {
    .solid-button-aqua:after {
        top: 1.4rem;
    }
}

.long-text-button {
    width: auto;
    min-width: 220px;
    padding-right: 25px;
    padding-left: 25px;
}

.fixed-mobile-button {
    position: fixed;
    bottom: 0;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 22px 0 rgba(0, 0, 0, 0.1);
    padding: 11px 20px;
    display: flex;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    justify-content: center;
    z-index: 999;
}

@media (min-width: 768px) {
    .fixed-mobile-button {
        padding: 21px 20px;
    }
}

.fixed-mobile-button .brand-button {
    width: 100%;
}

@media (min-width: 768px) {
    .fixed-mobile-button .brand-button {
        max-width: 220px;
    }
}

.two-button {
    display: flex;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    justify-content: center;
}

    .two-button .brand-button {
        width: 160px;
        margin-left: 15px;
    }

        .two-button .brand-button:last-child {
            margin-left: 0;
        }

    .two-button .call-moked {
        padding-top: 0;
        padding-bottom: 0;
    }

        .two-button .call-moked .phone-icon {
            display: block;
            background-image: url("../images/lead-page/phone.svg");
            width: 27px;
            height: 27px;
            background-size: 100%;
            margin: 0 auto;
        }

.pop-up-general {
    margin: 55px 20px 20px 20px;
    overflow: visible !important;
}

@media (min-width: 768px) {
    .pop-up-general .modal-dialog {
        width: 100%;
        max-width: 740px;
    }
}

.pop-up-general .modal-content {
    border-radius: inherit;
    padding: 0 30px 15px 30px;
}

@media (min-width: 768px) {
    .pop-up-general .modal-content {
        padding: 0 30px 30px 30px;
        min-height: 500px;
    }
}

.pop-up-general .modal-header {
    border-bottom: 0;
    border-radius: inherit;
}

    .pop-up-general .modal-header .close {
        position: absolute;
        left: -6px;
        top: -35px;
        opacity: 1;
    }

        .pop-up-general .modal-header .close span {
            color: #fff;
            font-weight: 500;
            font-family: initial;
            font-size: 28px;
        }

.pop-up-general .modal-body {
    display: flex;
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    flex-flow: column;
    align-items: center;
    padding: 0;
}

.full-screen {
    margin: 0;
}

@media (min-width: 768px) {
    .full-screen {
        margin: 120px 0 0 0;
    }
}

.full-screen .modal-header .close {
    left: 7px;
    top: 10px;
}

@media (min-width: 768px) {
    .full-screen .modal-header .close {
        position: absolute;
        left: -6px;
        top: -35px;
        opacity: 1;
    }
}

.full-screen .modal-header .close span {
    color: #000;
    font-size: 3.5rem;
    font-weight: 600;
}

@media (min-width: 768px) {
    .full-screen .modal-header .close span {
        color: #fff;
        font-weight: 500;
        font-family: initial;
        font-size: 28px;
    }
}

.full-screen .modal-dialog {
    margin: -1px;
}

@media (min-width: 768px) {
    .full-screen .modal-dialog {
        margin: 0 auto;
    }
}

.full-screen .modal-content {
    height: 100vh;
}

@media (min-width: 768px) {
    .full-screen .modal-content {
        min-height: 500px;
        height: auto;
    }
}

html {
    font-size: 62.5%;
}

body {
    direction: rtl;
    padding: 0;
    margin: 0;
    font-family: AlmoniDLAAA-normal;
    text-align: right;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: AlmoniDLAAA-normal;
}

input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="tel"] {
    -webkit-appearance: none;
    border-radius: 0;
}
/*
input:-internal-autofill-selected {
    background-color: #fff;
}
*/
*:focus {
    outline: none;
}

li {
    list-style-type: none;
}

#brand {
    visibility: hidden;
}



.lead-page-ie .main-title h1 {
    font-size: 50px;
    font-family: "AlmoniDLAAA-bold";
    text-align: center;
    line-height: 45px;
    color: #000;
    margin: 12px 0 25px 0;
}



@media (min-width:768px) {
    .lead-page-ie .main-title h1 {
        font-size: 60px;
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .lead-page-ie .main-title h1 {
        font-size: 62px;
        line-height: 55px;
        margin-top: 12px;
    }
}

.lead-page-ie .main-title h2 {
    font-size: 40px;
    color: #fff;
}

@media (min-width: 1800px) {
    .lead-page-ie .main-title {
        background-size: 100%;
    }
}


@media (min-width:768px) {
    .lead-page-ie .main-title {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.lead-page-ie .main-title .visa-card {
    display: block;
    width: 100%;
}



@media (min-width:768px) {
    .lead-page-ie .main-title .visa-card {
        display: block;
        width: 452px;
        height: 274px;
        margin-top: 85px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .lead-page-ie .main-title .visa-card {
        width: 329px;
        height: auto;
        margin-top: 20px;
    }
}




@media (min-width:768px) {
    .lead-page-ie .content {
        display: flex;
        justify-content: space-between;
        flex-flow: column;
        align-items: center;
    }
}


.lead-page-ie .content .lead-form {
    padding: 40px 0 55px 0;
    background-color: #000;
    color: #fff;
}


@media (min-width:768px) {
    .lead-page-ie .content .lead-form {
        padding: 45px 0 55px 0;
        width: 100%;
    }
}

@media (max-width:768px) {
    .lead-page-ie .content .lead-form {
        padding: 20px 0 55px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .lead-page-ie .content .lead-form {
        padding: 29px 0 55px 0;
    }
}





.lead-page-ie .content .lead-form h3 {
    font-size: 30px;
    font-family: "AlmoniDLAAA-bold";
    text-align: center;
    color: #68c7f3;
}



@media (min-width:768px) {
    .lead-page-ie .content .lead-form h3 {
        font-size: 36px;
        margin-bottom: 57px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .lead-page-ie .content .lead-form h3 {
        font-size: 34px;
    }
}


.lead-page-ie .content .lead-form .form-wrapper {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    /*    max-width: 900px;*/
    margin: 50px auto 0 auto;
}

@media (max-width:768px) {
    .lead-page-ie .content .lead-form .form-wrapper {
        padding: 0 30px;
        margin: 35px auto 0 auto;
    }
}



@media (min-width:768px) {
    .lead-page-ie .content .lead-form .form-wrapper {
        max-width: 1220px;
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }
}


@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .lead-page-ie .content .lead-form .form-wrapper {
        padding: 0 20px;
    }
}

.lead-page-ie .content .lead-form .form-wrapper .input-wrapper {
    position: relative;
    margin: 0 0 23px 40px;
    width: 100%;
}




@media (min-width:768px) {
    .lead-page-ie .content .lead-form .form-wrapper .input-wrapper {
        position: relative;
        margin: 0 0 23px 40px;
        max-width: 260px;
    }


    .lead-page-ie .content .lead-form .form-wrapper
    div:nth-child(even) {
        margin: 0 0 40px 48px;
    }
}

@media (min-width:768px) {
    .lead-page-ie .content .lead-form .form-wrapper .combo-wrapper {
        margin-top: 5.3px !important;
    }
}

@media (max-width:768px) {
    .lead-page-ie .content .lead-form .form-wrapper .combo-wrapper {
        margin: 0 0 13px 0 !important;
    }
}


@media (min-width:768px) {
    .lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .float-label {
        top: -12px !important;
    }
}


.lead-page-ie .content .lead-form .form-wrapper .input-wrapper {
    position: relative;
    margin: 0 0 23px 40px;
}

@media (max-width:768px) {
    .lead-page-ie .content .lead-form .form-wrapper .input-wrapper {
        margin: 0 0 40px 0;
    }
}


.lead-page-ie .content .lead-form .form-wrapper .input-wrapper input {
    background-color: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #fff;
    width: 100%;
    font-size: 16px;
    color: #fff;
}

    .lead-page-ie .content .lead-form .form-wrapper .input-wrapper input:focus ~ .float-label,
    .lead-page-ie .content .lead-form .form-wrapper .input-wrapper input:not(:focus):valid ~ .float-label {
        top: -17px;
        left: 20px;
        font-size: 12px;
        opacity: 1;
    }

.lead-page-ie .content .lead-form .form-wrapper .input-wrapper .float-label {
    position: absolute;
    pointer-events: none;
    right: 0;
    top: -7px;
    transition: 0.2s ease all;
    font-size: 21px;
    white-space: nowrap;
    color: #fff;
}

.lead-page-ie .content .lead-form .form-wrapper .input-wrapper .err-msg {
    display: block;
    color: #f51111;
    font-size: 1.4rem;
}

.lead-page-ie .content .lead-form .form-wrapper .combo-wrapper.label-size .float-label {
    top: -17px;
    left: 20px;
    font-size: 12px;
    opacity: 1;
}



.lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select-hidden {
    /*display: none;*/
    visibility: hidden;
    padding-right: 10px;
}

.lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select {
    cursor: pointer;
    display: inline-block;
    position: relative;
    font-size: 16px;
    color: #fff;
    width: 100%;
    height: 22px;
    border-bottom: 1px solid #fff;
}



@media (min-width:768px) {
    .lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select {
        width: 260px;
    }
}



.lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select-styled {
    position: absolute;
    top: -10px;
    right: -14px;
    bottom: 0;
    left: 0;
    background-color: transparent;
    padding: 8px 15px;
    /* @include transition(all 0.2s ease-in);*/
    /*          &:hover {
                            background-color: darken($select-background, 2);
                        }

                        &:active, &.active {
                            background-color: darken($select-background, 5);

                            &:after {
                                top: 9px;
                                border-color: transparent transparent $white transparent;
                            }
                        }*/
}


    .lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select-styled:after {
        content: "";
        width: 37px;
        height: 37px;
        background: url("../assets/images/angle-left-white.svg") no-repeat;
        background-size: 100%;
        position: absolute;
        top: -2px;
        left: -54px;
        transform: rotate(-90deg);
    }

@media (max-width:768px) {
    .lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select-styled:after {
        content: "";
        top: -2px;
        left: -7px;
    }
}

.lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.3);
    background-color: #68c7f3;
}

    .lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select-options li {
        margin: 0;
        padding: 0 10px 0 0;
        font-size: 16px;
        color: #000;
        /*border-top: 1px solid darken($select-background, 10);*/
        /*@include transition(all 0.15s ease-in);*/
    }

        .lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select-options li:hover {
            /* color: $select-background;
                                background: $select-color;*/
        }

        .lead-page-ie .content .lead-form .form-wrapper .combo-wrapper .select-options li[rel="hide"] {
            display: none;
        }

.lead-page-ie .content .button-wrapper {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    justify-content: center;
    margin-top: 50px;

}

@media (max-width: 768px) {
    .lead-page-ie .content .button-wrapper {
 
        flex-flow: column;
        align-items: center;
    }
}

.selfService {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
  
}

@media (max-width: 768px) {
    .selfService {
        flex-flow: column;
        align-items: center;
    }
}

/*@media (min-width: 768px) {
    .selfService {
        width: 600px;
    }
}*/




@media (min-width: 768px) {
    .lead-page-ie .content .button-wrapper {
        margin-top: 42px;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .lead-page-ie .content .two-buttons {
        justify-content: flex-start;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .lead-page-ie .content .button-wrapper {
        margin-top: 32px;
    }
}


@media (max-width: 768px) {
    .lead-page-ie .content .check-box-wrapper {
        padding: 0 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1235px) {
    .lead-page-ie .content .check-box-wrapper {
        margin: 35px auto 0 auto;
    }
}




.lead-page-ie .content .button-wrapper .customer-button {
    background-color: #68c7f3;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    border-radius: 32.5px;
    border: 0;
    padding: 10px 0;
    width: 100%;
    max-width: 280px;
    cursor: pointer;
    position: relative;
}
@media (min-width: 768px) {
    .lead-page-ie .content .button-wrapper .send-link {
        flex: 0 0 421px;
        max-width: 421px;
    }
}




    .lead-page-ie .content .button-wrapper .customer-button:after {
        content: "";
        background: url(../assets/images/fox-lead-page/arrow-left.png)no-repeat;
        background-size: cover;
        width: 9px;
        height: 13px;
        position: absolute;
        left: 73px;
        top: 18px;
    }

    @media (min-width: 768px) {
        .lead-page-ie .content .button-wrapper .customer-button:after {
            width: 10px;
            height: 14px;
            position: absolute;
            left: 55px;
            top: 20px;
        }
    }


    @media (min-width: 768px) {
        .lead-page-ie .content .button-wrapper .customer-button {
            font-size: 24px;
            padding: 6px 0 8px 0;
        }
    }




    @media (max-width: 768px) {
        .lead-page-ie .how-its-work {
            padding: 35px 30px 20px 30px;
        }
    }



    @media (min-width: 768px) {
        .lead-page-ie .how-its-work {
            max-width: 1275px;
            margin: 35px auto 0 auto;
            width: 100%;
            padding: 0 30px;
        }
    }

    .lead-page-ie .how-its-work P {
        font-size: 18px;
        line-height: 21px;
        line-height: 21px;
    }

    @media (min-width: 768px) {
        .lead-page-ie .how-its-work P {
            font-size: 21px;
        }
    }


    .lead-page-ie .how-its-work .title {
        font-size: 26px;
        display: block;
        color: #68c7f3;
    }

    @media (max-width: 768px) {
        .lead-page-ie .how-its-work .title {
            margin-bottom: 10px;
        }
    }

    @media (min-width: 768px) {
        .lead-page-ie .how-its-work .title {
            font-size: 21px;
        }
    }

    .confirmation-wrapper {
        width: 100%;
    }

    .promoted-input-checkbox {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    .form-check {
        width: 100%;
        max-width: 900px;
        margin: auto;
    }




    @media (max-width: 768px) {
        .form-check {
            padding-right: 15px;
            margin-bottom:35px;
        }
    }

@media only screen and (min-width:300px) and (max-width:450px) {
    .form-check {
        margin-bottom:55px;
    }
}



    @media (min-width: 768px) {
        .form-check {
            max-width: 830px;
            margin-bottom: 20px;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 1200px) {
        .form-check {
            padding: 0 20px;
        }
    }



    .form-check-input {
        display: none;
    }

    .form-check-label {
        font-size: 16px;
        line-height: 19px;
        width: 100%;
        background-repeat: no-repeat;
        background-position: right;
        padding-right: 25px;
        background-image: url(../assets/images/product-page/lead/white-checkbox.svg);
    }

    .checkbox-active {
        background-image: url(../assets/images/product-page/lead/Active-checkbox.svg);
    }

.form-check .error-wrapper {
    font-size: 14px;
    margin-top:5px;
    color: #f51111;
}

    @media (min-width:768px) {
        .form-check-label {
            max-width: 785px;
            font-size: 21px;
            text-align: right;
            line-height: 20px;
            height: 25px;
            background-size: 18px;
            padding-right: 33px;
            cursor: pointer;
            white-space: nowrap;
        }
    }

    @media only screen and (min-width: 768px) and (max-width: 1200px) {
        .form-check-label {
            background-size: 3%;
        }
    }


    @media (min-width:768px) {
        .check-box-wrapper {
            transform: translate(0, -20px);
            width: 100%;
            max-width: 785px;
            margin: 0 auto;
        }
    }


.lead-page-ie .content .button-wrapper .send-link {
    max-width: 410px;
}

@media (max-width:768px) {
    .lead-page-ie .content .button-wrapper .send-link {
        width: 332px;
    }
}

    .lead-page-ie .content .button-wrapper .send-link:after {
        left: 33px;
    }



/* ----------- iPhone 5 and 5S ----------- */

@media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
    @media (max-width:768px) {
        .lead-page-ie .content .button-wrapper .send-link:after {
            left: 17px;
        }
    }
}

/* ----------- iPhone 6 ----------- */

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
    @media (max-width:768px) {
        .lead-page-ie .content .button-wrapper .send-link:after {
            left: 17px;
        }
    }
}



        .lead-page-ie .content .button-wrapper .or {
            font-size: 24px;
            font-family: "AlmoniDLAAA-bold";
            margin: 0 33px;
        }

        .lead-page-ie .content .button-wrapper .or {
            font-size: 24px;
            font-family: "AlmoniDLAAA-bold";
            margin: 0 33px;
        }

        @media (min-width:768px) {
            .lead-page-ie .content .button-wrapper .or {
                transform: translate(0, 7px);
            }
        }

        @media (max-width:768px) {
            .lead-page-ie .content .button-wrapper .or {
                margin: 7px 33px;
                transform: translate(0, -2px);
            }
        }

