﻿@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
* {
    margin: 0;
    padding: 0;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    background: #f3f3f4;
}

::selection {
    color: #fff;
    background: #75cbcd;
}

.login-btn a {
    font-size: 24px;
    letter-spacing: normal;
    text-align: center;
    color: #ffffff !important;
    padding: 9px 26px;
    border-radius: 109px;
    background-color: #75cbcd;
}
.login-btn a:hover {
    background: var(--primary-color);
    transition: background 0.3s;
}

.logo {
    float: left;
    width: 224px;
    height: auto;
}

.container {
    width: 80%;
    background: #f3f3f4;
    text-align: center;
    border-radius: 5px;
    padding: 50px 35px 10px 35px;
    max-width: 960px;
    width: 960px;
}

    .container header {
        font-size: 35px;
        font-weight: 600;
        margin: 0 0 30px 0;
    }

    .container .form-outer {
        width: 100%;
        overflow: hidden;
    }

        .container .form-outer form {
            display: flex;
            width: 700%;
        }

.form-outer form .page {
    width: 14.28%;
    transition: margin-left 0.3s ease-in-out;
}

    .form-outer form .page .title {
        text-align: left;
        font-size: 32px;
        font-weight: bold;
        color: #111111;
    }

    .form-outer form .page .field {
        width: 330px;
        height: 45px;
        margin: 45px 0;
        display: flex;
        position: relative;
    }

form .page .field .label {
    position: absolute;
    top: -30px;
    font-weight: 500;
    font-size:18px;
}

form .page .field input {
    height: 100%;
    width: 100%;
    border: 2px solid #d2d2d2;
    border-radius: 5px;
    padding-left: 15px;
    font-size: 18px;
    border-radius: 0;
    margin-top: 5px;
}

form .page .field select {
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
}

form .page .field button {
    width: 100%;
    height: calc(100% + 5px);
    border: none;
    background: #75cbcd;
    margin-top: -20px;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
    /*text-transform: uppercase;*/
    transition: 0.5s ease;
}

form .page .btns button.prev {
    background: #a3a3ac;
    color: white;
}

form .page .field button:hover {
    background: #000;
}

form .page .btns button {
    margin-top: -20px !important;
}

    form .page .btns button.prev {
        margin-right: 3px;
        font-size: 17px;
    }

    form .page .btns button.next {
        margin-left: 3px;
    }

.container .progress-bar {
    display: flex;
    margin: 40px 0;
    user-select: none;
    left: -30px !important;
    margin-left: -50px;
}

    .container .progress-bar .step {
        text-align: center;
        width: 100%;
        position: relative;
    }

        .container .progress-bar .step p {
            font-weight: 500;
            font-size: 12px;
            color: #d2d2d2;
            margin-left: -80px;
        }

.progress-bar .step .bullet {
    height: 13px;
    width: 100%;
    border: 2px solid #000;
    display: inline-block;
    /*border-radius: 50%;*/
    position: relative;
    transition: 0.2s;
    font-weight: 500;
    font-size: 17px;
    line-height: 25px;
    border: none;
    border-radius: 30px;
    /*background: #d2d2d2;*/
}

    .progress-bar .step .bullet.active {
        /*border-color: #75cbcd;
                background: #75cbcd;*/
    }

    .progress-bar .step .bullet span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        display: none;
        border: none;
    }

    .progress-bar .step .bullet.active span {
        display: none;
    }

    .progress-bar .step .bullet:before,
    .progress-bar .step .bullet:after {
        position: absolute;
        content: '';
        /*bottom: 11px;*/
        right: -51px;
        height: 13px;
        width: 100%;
        background: #d2d2d2;
    }

    .progress-bar .step .bullet.active:after {
        background: #75cbcd;
        transform: scaleX(0);
        transform-origin: left;
        animation: animate 0.3s linear forwards;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
        z-index: 9;
    }





@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}

.progress-bar .step:last-child .bullet:before,
.progress-bar .step:last-child .bullet:after {
    display: none;
}

.progress-bar .step p.active {
    color: #75cbcd;
    transition: 0.2s linear;
}

.progress-bar .step .check {
    position: absolute;
    left: 50%;
    top: 70%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
}

    .progress-bar .step .check.active {
        display: block;
        color: #fff;
    }



.first-step .bullet:before, .first-step .bullet:after {
    background: #75cbcd;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 30px;
}


.progress-bar .step:not(.first-step) .bullet.active {
    background-color: #75cbcd;
}


.progress-bar span.starting-bul {
    background: #75cbcd;
    width: 13px;
    left: 50px;
    border-radius: 23px;
    height: 13px;
    position: absolute;
    z-index: 9999;
    left: 30px;
    display: block !important;
    /* transform: translatex(-10%); */
    left: 55px !important;
}


.inner-form {
    overflow: hidden;
}

.one-row .field {
    display: inline-block;
    float: left;
    margin-right: 20px !important;
}

.sub-title {
    text-align: left;
    margin-bottom: 40px;
    margin-bottom: 40px;
    font-size: 22px;
}

.le-mini-title {
    text-align: left;
    font-weight: bold;
    margin-bottom: 20px;
    font-size:18px;
}

form .page .field button {
    border-radius: 30px;
    max-width: 150px;
    font-weight: bold;
}

.one-row {
    overflow: hidden;
    max-width: 750px;
}

.form-outer .field.le-next {
    display: block !important;
    float: right;
    width: 100% !important;
}

.form-outer form .page .le-next button {
    border-radius: 30px;
    max-width: 150px;
    font-weight: bold;
    float: right;
}

.le-next p {
    text-align: left;
}

.has-space {
    margin-bottom: 30px;
}

.detailed-info img {
    width: 100%;
}

.detailed-info p {
    text-align: left;
    margin-bottom: 40px;
    font-size: 18px;
}

.detailed-info {
    overflow: hidden;
    position:relative;
}

.field.btns {
    width: 100% !important;
    display: inline-block !important;
}

form .page .btns button.prev {
    float: left;
}

form .page .btns button.next {
    float: right;
}

.enlarge-img {
    text-align: right;
    margin-bottom: 30px;
}

    .enlarge-img a {
        color: black;
        text-align: right;
        text-decoration: none;
        font-size: 14px;
    }

.inner-page {
    /*border: 1px solid red;*/
    max-width: 80%;
    margin: 0 auto;
}
.first-screen .inner-page {
    max-width:100%;
}

button.submit {
    background:red;
}
.no-space {
    margin-bottom:0px !important;
}
.last-step .bullet {
    background: #d2d2d2
}

.form-outer form .page .field {
    text-align:right;
}
.step.last-step p {
    text-align: right;
}

.progress-bar .step p {
    text-align: right;
}
.first-step p{
    text-align: left !important;
}
.first-step p {
    text-align: left !important;
    position: relative;
    margin-left: auto !important;
    text-indent: 50px;
}
span.fadetext {
    text-align: left;
    color: #A3A3AC;
    font-size: 12px;
    float: left;
    max-width: 400px;
    clear: both;
}
.form-outer form .page.third-screen .title, .form-outer form .page.second-screen .title, .form-outer form .page.fifth-screen .title, .form-outer form .page.sixth-screen .title, .form-outer form .page.seventh-screen .title {
    font-size: 24px;
    margin-bottom: 20px;
}
.form-outer form .page.fourth-screen .title {
    font-size: 24px;
}
.form-outer form .page.fourth-screen .sub-title {
    margin-bottom: 60px;
}
.form-outer form .page.fourth-screen .field {
    text-align: right;
    margin-top: 80px;
}
.enlarge-img img {
    max-width: 12px;
}
.label.has-digits {
    top: -40px !important;
}
.label.has-digits  span{
    display:block;
}

.fancybox-slide img {
    max-height: 400px;
    max-width:800px;
}


.le-error {
    color:red;
    font-size:12px !important;
    text-align:left !important;
    display:none;
}



.form-outer form .fourth-screen.page .field {
    display: block;
}

@media (max-width:768px) {
    .container {
        width: 90%;
    }

    form .page .field button {
        border-radius: 30px;
        max-width: 150px;
        font-weight: bold;
        font-size: 14px !important;
        padding: 5px !important;
        max-width: 120px;
    }
    .container .progress-bar .step p {
        font-size: 5px;
    }
}