*{
    box-sizing: border-box;
    font-family: 'Graphik', sans-serif;
}
body{
    padding: 0;
    margin: 0;
    color: #0C1B33;
}
header,footer{
    display: none!important;
}

.flex-2-steps{
    width: 100%;
    flex-wrap: nowrap;
    display: flex;
    height: 100vh;
    background-image: url('../img/step-2/bg-ab-test.jpg');
    background-size: cover;
}

.flex-2-steps-item{
    width: 100%;
}

.step-2-box{
    background: #fff;
    border-radius: 10px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

html[lang="fr-FR"] .step-2-box,
html[lang="de-DE"] .step-2-box,
html[lang="es-ES"] .step-2-box{
    max-width: 385px;
}

.step-2-box .yellow-stripe{
    margin: 30px 0;
}

.form-wrapper{
    border-top: solid 1px #d4dbdf;
    width: 100%;
    padding: 0 20px;
}

.input-wrapper{
    text-align: left;
}
.input-wrapper textarea{
    width: 100%;
    border: solid 1px #D9D9D9;
    border-radius: 4px;
    padding: 10px;
    font-size: 15px;
    color: #0C1B33;
    overflow: auto;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    resize: none;
}
.input-wrapper-select{
    margin: 10px 0;
}
.input-wrapper-other{
    margin-top: 10px;
    margin-bottom: 5px;
}
textarea::placeholder {
    color: #0C1B33;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
}
.input-checkbox-wrapper{
    padding: 20px 0 20px 2px;
    margin: 0;
}
/**/

.hs-wrapper {
    position: relative;
    margin-top: 50px;
}

.form-wrapper input {
    position: relative;
    z-index: 2;
    border: 0;
    border-bottom: solid 1px #d4dbdf;
    width: 100%;
    height: 42px;
    background: transparent;
    font-size: 15px;
    color: #0C1B33;
    padding: 2px 10px;
    outline: 0!important;
}

.form-wrapper label.move-label {
    position: absolute;
    top: -15px;
    left: 10px;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    color: #767D88;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 19.5px */
    letter-spacing: -0.075px;
}

.form-wrapper input:focus + label.move-label{
    top: -18px;
    font-size: 12px;
}

/* .form-wrapper input.stay_focus + label.move-label{
    top: -18px;
    font-size: 12px;
} */

.form-wrapper input.stay_focus_forever + label.move-label{
    top: -18px;
    font-size: 12px;
}

.fiftyfive{
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 38px;
    z-index: 8;
    border: 0;
    height: 42px;
    background: transparent;
    font-size: 15px;
    color: #0C1B33;
    padding: 2px 10px;
    outline: 0!important;
    width: 45px;
}

.error-container{
    text-align: left;
    padding: 2px 0;
    color: #FF5470;
}

#step2 input[name=phone_number]::placeholder{
    color: #C2C2C2;
}

#step2 input[name=phone_number]{
    padding-left: 44px;
}


/* Select */
.custom-select {
    position: relative;
}

.custom-select select {
    display: none;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 16px;
    right: 10px;
    color: red;
    width: 8px;
    height: 5px;
    background-image: url(../img/step-2/arrow-down.png);
}

.select-selected.select-arrow-active:after {
    transform: rotateX(180deg);
}

.select-items div,.select-selected {
    color: #0C1B33;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 400;
}

.select-items div{
    padding: 5px 16px;
    font-size: 14px;
}

.select-items div:hover{
    border-radius: 6px;
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    margin-top: 10px;
    border-radius: 10px;
    border: solid 1px #0C1B33;
    padding: 10px;
    background: #fff;
    text-align: center;
}

.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background: #F6F6F6;
}

.select-selected{
    text-align: left;
    padding: 10px 11px;
    color: #0C1B33;
    font-weight: 400;
    border-radius: 10px;
    background-color: #F6F6F6;
}

/* checkbox */
.container-checkbox {
    display: block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    color: #767D88;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.07px;
    padding-top: 3px;
}
.container-checkbox a{
    color: #0C1B33;
    font-weight: 500;
}
.container-checkbox input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    display: block!important;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;

    background-color: #fff;
    border: solid 1px #6d7685;
    border-radius: 5px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.container-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.container-checkbox .checkmark:after {
    left: 4px;
    top: 5px;
    width: 11px;
    height: 8px;
    background-image: url("../img/step-2/v.svg");
    background-size: 100%;
}

/* checkbox end */

.person-img{
    max-width: 70px;
    height: auto;
}

.flex-step-2-right-content{
    padding-left: 15%;
    padding-top: 26%;
}

.download-form label::before {
    display: block;
    width: 2.5rem;
    background: #FFFFFF;
    border: 1px solid #E4E4E4;
    border-radius: 2px;
    height: 2.5rem;
    margin-right: 1rem;
    content: '';
}

#submit{
    padding: 0 33px;
    width: 100%;
    background-color: #FF5470;
    color: #fff;
    border-radius: 10px;
    font-size: 18px;
    letter-spacing: -0.18px;
    font-weight: 500;
    border: 0;
    position: relative;
    height: 52px;
    transition: .3s all;
}
#submit:hover{
    background: #FA4361;
}
.loader{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background-color: transparent;
    width: 25px;
    height: 25px;
}

.quote-text{
    padding: 35px 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.6px;
    max-width: 440px;
}

.quote-name{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.16px;
}

.quote-title{
    font-size: 16px;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    letter-spacing: -0.16px;
}

.photo_by{
    bottom: 77px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    text-align: center;
    color: #fff;
    font-size: 12px;
    letter-spacing: -0.12px;
}

.step-2-list{
    padding: 0;
    margin: 0;
    padding-top: 15px;
}

.step-2-list li{
    list-style-type: none;
    background-image: url("../img/step-2/v2.svg");
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 35px;
    margin-top: 15px;
    color: #717A88;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.2px;
}

.flex-step-2-right-content h1{
    color: #0C1B33;
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -2px;
    font-family: 'Graphik', sans-serif;
}



@media only screen and (max-width: 1900px) {
    .form-wrapper input{
        height: 32px;
    }
    .fiftyfive{
        height: 32px;
        line-height: 28px;
    }
    .hs-wrapper {
        margin-top: 30px;
    }

    .input-checkbox-wrapper{
        padding: 20px 0;
    }

    .flex-2-steps{
        overflow: hidden;
    }

    .form-wrapper label.move-label,
    .select-items div, .select-selected{
        font-size: 13px;
    }

    .select-selected{
        padding-top: 7px;
        padding-bottom: 7px;
    }

    .container-checkbox{
        font-size: 12px;
    }

    .select-selected:after{
        top: 12px;
    }

}

@media (max-height: 690px) {
    .select-items{
        top: auto;
        bottom: 100%;
        margin-bottom: 10px;
    }
    .photo_by{
        bottom: 11px;
    }
}


/* Video */


.page-template-step-2-video .flex-2-steps {
    background-image: url('../img/step-2/signup.webp');
}

.page-template-step-2-video button#submit {
    background-color: #3F80E0;
}

.page-template-step-2-video .logo {
    display: block;
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-bottom: 37px;
}

.page-template-step-2-video.site_video_promo_2 .video-promo-wrapper {
    display: none;
}

.page-template-step-2-video .flex-2-steps .step-2-box {
    max-width: 360px;
}

.page-template-step-2-video .yellow-stripe {
    font-size: 16px;
}

.yellow-stripe.yellow-stripe-video img {
    max-width: 29px;
}


.page-template-step-2-video .container-checkbox {
    padding-left: 31px;
    font-size: 15px !important;
}

.yellow-stripe-video{
    display: flex;
    justify-content: center;  
    align-items: center;     
    gap: 5px;
}

@media screen and (max-width: 768px) {
    .page-template-step-2-video .flex-2-steps {
        background: linear-gradient(180deg, #030B19 45%, #3F80E0 100%);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .page-template-step-2-video .step-2-box {
        position: relative;
        left: unset;
        top: unset;
        transform: unset;
    }

    .page-template-step-2-video .form-wrapper label.move-label {
        left: 0;
    }

    .page-template-step-2-video .form-wrapper input {
        padding: 2px 0px;
    }
    
}

@media (min-width: 1024px) {
    .hidden-desktop {
        display: none !important;
    }
}