﻿body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
}

.login-wrapper .login-left-content {
    padding: 50px 80px 0;
    flex-basis: 40%;
    position: relative;
    box-shadow: 10px 0 60px 0 rgba(0, 0, 0, 0.15);
    z-index: 9;
}

    .login-wrapper .login-left-content .app-logo {
        margin: 0 0 50px 0;
        cursor: pointer;
        max-width: 260px;
        max-height: 26px;
    }

    .login-wrapper .login-left-content h1 {
        margin: 0 0 5px;
        font-size: 26px;
        font-weight: 600;
        color: #222222;
        font-family: "Montserrat", sans-serif;
    }

    .login-wrapper .login-left-content h2 {
        font-size: 14px;
        line-height: 1.5;
        color: #909090;
        margin: 0;
        font-weight: 400;
        font-family: "Montserrat", sans-serif;
    }

    .login-wrapper .login-left-content .login-form {
        margin-top: 40px;
    }

.form-control-wrap {
    position: relative;
    margin-bottom: 17px;
}

.login-form-control {
    display: block;
    padding: 0px 20px;
    border-radius: 3px;
    height: 39px;
    border: 1.2px solid #ede3e3;
    background-color: #ffffff;
    width: 100%;
    outline: none;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.31;
    color: #141414;
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

    .login-form-control:focus {
        border: 1.2px solid #4483be;
        border-left: 4.2px solid #4585bf;
    }

.form-control-wrap label.login-control-label {
    font-size: 11px;
    color: #aaaaaa;
    font-weight: 400;
    letter-spacing: 0.01em;
    pointer-events: none;
    position: absolute;
    top: 11px;
    z-index: 10;
    left: 21px;
    padding: 0 3px;
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    font-family: "Montserrat", sans-serif;
}

.form-control-wrap .login-form-control.active ~ label,
.form-control-wrap .login-form-control:focus ~ label,
.form-control-wrap .login-form-control:valid ~ label {
    top: -8px;
    background: #fff;
    height: auto;
    color: #4483be;
    font-weight: 500;
}

/*.password-toggle{
    visibility:hidden;
}
.form-control-wrap .login-form-control:valid ~ .password-toggle {
    visibility: visible;
}*/

.shake-effect {
    animation: shake 1s;
}

.login-form-control.login-form-error {
    border: 1.2px solid #ff343c;
    border-left: 3px solid #ff343c;
}

    .login-form-control.login-form-error:focus {
        border: 1.2px solid #ff343c;
        border-left: 3px solid #ff343c;
    }

.form-control-wrap .login-form-control.login-form-error ~ label {
    color: #ff343c;
}

.form-control-wrap .login-form-control.login-form-error ~ .password-toggle {
    color: #ff343c;
}

.form-control-wrap .login-form-control:focus ~ .password-toggle,
.form-control-wrap .login-form-control.active ~ .password-toggle {
    display: inline-block;
}

.login-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
    top: 7px;
}

.remember-me {
    display: flex;
    align-items: center;
}

    .remember-me .inp-cbx {
        display: none;
    }

    .remember-me .cbx {
        margin: auto;
        -webkit-user-select: none;
        user-select: none;
        cursor: pointer;
    }

        .remember-me .cbx span {
            display: inline-block;
            vertical-align: middle;
            transform: translate3d(0, 0, 0);
        }

            .remember-me .cbx span:first-child {
                position: relative;
                width: 13px;
                height: 13px;
                border-radius: 3px;
                transform: scale(1);
                vertical-align: middle;
                border: 1px solid #9098a9;
                transition: all 0.2s ease;
            }

                .remember-me .cbx span:first-child svg {
                    position: absolute;
                    top: 4px;
                    left: 2px;
                    fill: none;
                    stroke: #ffffff;
                    stroke-width: 2;
                    stroke-linecap: round;
                    stroke-linejoin: round;
                    stroke-dasharray: 16px;
                    stroke-dashoffset: 16px;
                    transition: all 0.3s ease;
                    transition-delay: 0.1s;
                    transform: translate3d(0, 0, 0);
                }

                .remember-me .cbx span:first-child:before {
                    content: "";
                    position: absolute;
                    width: 100%;
                    height: 100%;
                    background: #4483be;
                    display: block;
                    transform: scale(0);
                    opacity: 1;
                    border-radius: 50%;
                }

        .remember-me .cbx:hover span:first-child {
            border-color: #4483be;
        }

    .remember-me .inp-cbx:checked + .cbx span:first-child {
        background: #4483be;
        border-color: #4483be;
        animation: wave 0.4s ease;
    }

        .remember-me .inp-cbx:checked + .cbx span:first-child svg {
            stroke-dashoffset: 0;
        }

        .remember-me .inp-cbx:checked + .cbx span:first-child:before {
            transform: scale(3.5);
            opacity: 0;
            transition: all 0.6s ease;
        }

    .remember-me .cbx-label {
        font-size: 11px;
        font-weight: 500;
        color: #000;
        font-family: "Montserrat", sans-serif;
    }

@keyframes wave {
    50% {
        transform: scale(0.9);
    }
}

.login-btn-wrap {
    margin-bottom: 10px;
}

    .login-btn-wrap a {
        text-decoration: none;
        display: inline-block;
    }

.btn-sign-in {
    width: 100%;
    height: auto;
    border: 0;
    background-color: #2497be;
    color: #fff;
    height: 50px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Montserrat";
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
    cursor: pointer;
    outline: none;
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
}

    .btn-sign-in:hover,
    .btn-sign-in:active {
        background-color: #2e5b84;
    }

.btn-back-to-login {
    padding: 16px 28px;
    text-decoration: none;
    border-radius: 26px;
    border: solid 1px #4483be;
    background-color: #ffffff;
    color: #4483be;
    font-size: 13px;
    margin-right: 12px;
    font-family: "Montserrat", sans-serif;
    display: inline-block;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
    cursor: pointer;
    outline: none;
}

    .btn-back-to-login:hover,
    .btn-back-to-login:active {
        background-color: #4483be;
        color: #fff;
    }

    .btn-back-to-login .default {
        display: inline-block;
    }

    .btn-back-to-login .hover {
        display: none;
    }

    .btn-back-to-login:hover .default {
        display: none;
    }

    .btn-back-to-login:hover .hover {
        display: inline-block;
    }

    .btn-back-to-login img {
        vertical-align: text-bottom;
        margin-right: 12px;
    }

.btn-skip-now {
    display: block;
    width: 100%;
    padding: 14px 49px;
    border-radius: 8px;
    border: 1.4px solid #2a85c3;
    background-color: #f5fcff;
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #4483be;
    -webkit-transition: 0.5s all ease-in-out;
    -moz-transition: 0.5s all ease-in-out;
    -o-transition: 0.5s all ease-in-out;
    transition: 0.5s all ease-in-out;
    cursor: pointer;
    outline: none;
    font-family: "Montserrat", sans-serif;
}

    .btn-skip-now:hover,
    .btn-skip-now:active {
        background-color: #2e5b84;
        color: #fff;
    }

.login-footer a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #909090;
    margin-bottom: 5px;
    font-family: "Montserrat", sans-serif;
}

    .login-footer a:hover {
        color: rgba(0, 0, 0, 0.6);
    }

.login-footer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.31;
    letter-spacing: normal;
    color: #222222;
    font-family: "Montserrat", sans-serif;
}

.login-footer ul {
    margin: 25px 0 0;
    padding: 0;
    list-style: none;
}

    .login-footer ul li {
        display: inline-block;
        margin-right: 20px;
    }

        .login-footer ul li img {
            box-shadow: 10px 10px 10px 0 rgba(0, 0, 0, 0.16);
            border-radius: 6px;
        }

.login-wrapper .login-right-content {
    padding: 50px 40px 0;
    flex-basis: 60%;
    background-color: #fbfbfb;
    position: relative;
    z-index: 4;
}

.carousel-wrapper {
    text-align: center;
}

.carousel-heading {
    font-size: 36px;
    font-weight: bold;
    line-height: 1.22;
    color: #172c40;
    max-width: 615px;
    margin: 50px auto 0;
    font-family: "Montserrat", sans-serif;
}

.carousel-sub-heading {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #848f99;
    max-width: 650px;
    margin: 15px auto 0;
    font-family: "Montserrat", sans-serif;
}

.carousel-img {
    margin-top: 80px;
    max-width: 440px;
    height: 360px;
}

.password-toggle {
    border: 0;
    background: transparent;
    position: absolute;
    right: 4px;
    top: 13px;
    cursor: pointer;
}

    .password-toggle img {
        opacity: 0.3;
        width: 12px;
    }


@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.alert-error-msg {
    font-size: 11px;
    font-weight: normal;
}

    .alert-error-msg p {
        margin: 0;
    }

        .alert-error-msg p strong {
            font-weight: 600;
            color: #ff343c;
        }

        .alert-error-msg p a {
            color: #2497be;
            text-decoration: underline;
        }

    .alert-error-msg ul {
        margin: 0;
        padding-left: 5px;
    }

        .alert-error-msg ul li {
            list-style: none;
            padding: 6px 0px;
        }

.mail-send {
    display: flex;
    margin-bottom: 35px;
}

.font-500 {
    font-weight: 500;
}

.password-info {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 13px 0 0;
    padding: 14px 8px 13px 12px;
    border-radius: 4px;
    background-color: rgba(68, 131, 190, 0.1);
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: #4483be;
    box-sizing: border-box;
}

    .password-info img {
        margin-right: 8px;
    }

.carousel-icons {
    text-align: center;
    padding: 10px;
}

    .carousel-icons .dot {
        cursor: pointer;
        height: 10px;
        width: 10px;
        margin: 0 3px;
        background-color: #172c40;
        opacity: 0.2;
        border-radius: 50%;
        display: inline-block;
        transition: opacity 0.6s ease;
    }

        .carousel-icons .active,
        .carousel-icons .dot:hover {
            opacity: 1;
        }

.carousel {
    display: none;
    opacity: 0.3;
}

    .carousel:first-child {
        display: block;
        opacity: 1;
    }

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 2s;
    animation-name: fade;
    animation-duration: 2s;
    transition: all 2s ease;
}

@-webkit-keyframes fade {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

@keyframes fade {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.left-contaner {
    margin: 0 auto;
}

.privacy-policy {
    display: block;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    color: #747474;
    margin-top: 16px;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 40px;
}

    .privacy-policy a {
        font-weight: 500;
        color: #4483be;
        padding-left: 3px;
        -webkit-transition: 0.5s all ease-in-out;
        -moz-transition: 0.5s all ease-in-out;
        -o-transition: 0.5s all ease-in-out;
        transition: 0.5s all ease-in-out;
    }

        .privacy-policy a:hover {
            color: #2e5b84;
        }

p.copy-right {
    font-size: 12px;
    font-weight: 400;
    color: #7f7f7f;
    margin: 20px 0 0;
    font-family: "Montserrat", sans-serif;
}

.login-right-content p.copy-right {
    text-align: center;
    margin-top: 15px;
    display: none;
}

.login-wrapper .mobile-only {
    display: none;
}

.login-left-content {
    display: flex;
    align-items: center;
    padding: 50px 80px 0;
}

.login-right-content {
    padding: 50px 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.forgot-password {
    text-decoration: none;
    font-size: 11px;
    font-weight: 400;
    -webkit-transition: 0.25s all ease-in-out;
    -moz-transition: 0.25s all ease-in-out;
    -o-transition: 0.25s all ease-in-out;
    transition: 0.25s all ease-in-out;
    color: #4483be;
    font-family: "Montserrat", sans-serif;
}

    .forgot-password:hover {
        color: #2e5b84;
    }

.login-form.mt-100 {
    margin-top: 100px !important;
}

.login-btn-wrap.mt-40 {
    margin-top: 40px !important;
}

.login-footer.mt-110 {
    margin-top: 110px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.d-mobile {
    display: none;
}

@media only screen and (max-width: 767px) {
    .login-wrapper {
        flex-direction: column;
        height: 100vh;
    }

        .login-wrapper .login-left-content {
            padding: 80px 20px 40px;
            flex-basis: 100%;
            background: url("../../assets/common/images/broker-area/background.svg");
            object-fit: contain;
            background-size: cover;
        }

        .login-wrapper .login-right-content {
            display: none;
        }

        .login-wrapper .login-left-content .app-logo {
            display: block;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 25px;
            max-width: 240px;
            max-height: 24px;
        }

        .login-wrapper .login-left-content h1 {
            text-align: center;
            font-size: 20px;
        }

        .login-wrapper .login-left-content h2 {
            text-align: center;
            font-size: 14px;
        }

    .remember-me .cbx span:last-child {
        padding-left: 0;
    }

    .remember-me .cbx-label {
        font-size: 12px;
    }

    .form-control-wrap label.login-control-label {
        font-size: 14px;
    }

    .forgot-password {
        font-size: 12px;
    }

    .login-btn-wrap {
        text-align: center;
        margin-bottom: 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .btn-sign-in {
        display: block;
        width: 100%;
        margin-bottom: 12px;
        max-width: 100%;
    }

    .btn-back-to-login {
        display: block;
        width: 100%;
        margin-right: 0;
        box-sizing: border-box;
    }

    .login-footer {
        display: none;
    }

    .alert-error-msg {
        font-size: 14px;
        border-radius: 0;
    }

    .mail-send {
        justify-content: center;
    }

    .login-wrapper.for-mobile.valid-page {
        display: flex;
    }

        .login-wrapper.for-mobile.valid-page .mobile-only {
            display: block;
        }



        .login-wrapper.for-mobile.valid-page .login-footer {
            display: block;
            margin-top: 200px;
        }

            .login-wrapper.for-mobile.valid-page .login-footer ul {
                display: flex;
                justify-content: center;
                margin-bottom: 20px;
            }

                .login-wrapper.for-mobile.valid-page .login-footer ul li {
                    margin-right: 0px;
                    text-align: left;
                }

                    .login-wrapper.for-mobile.valid-page .login-footer ul li:last-child {
                        text-align: right;
                    }

                    .login-wrapper.for-mobile.valid-page .login-footer ul li img {
                        width: 95%;
                    }

    .privacy-policy {
        text-align: center;
        margin: 0;
    }

    .left-contaner {
        max-width: 100%;
    }

    .d-mobile {
        display: block;
    }

    .d-desktop {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login-wrapper {
        flex-direction: column;
    }

        .login-wrapper .login-left-content {
            padding: 80px 20px 40px;
            flex-basis: 100%;
            background: url("../../assets/common/images/broker-area/background.svg");
            object-fit: contain;
            background-size: cover;
            height: 100vh;
            align-items: stretch;
        }

        .login-wrapper .login-right-content {
            display: none;
        }

        .login-wrapper .login-left-content .app-logo {
            display: block;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 70px;
            max-width: 240px;
            max-height: 24px;
        }

        .login-wrapper .login-left-content h1 {
            text-align: center;
            font-size: 20px;
        }

        .login-wrapper .login-left-content h2 {
            text-align: center;
            font-size: 14px;
        }

    .remember-me .cbx span:last-child {
        padding-left: 0;
    }

    .remember-me .cbx-label {
        font-size: 12px;
    }

    .form-control-wrap label.login-control-label {
        font-size: 14px;
    }

    .forgot-password {
        font-size: 12px;
    }

    .login-btn-wrap {
        text-align: center;
        margin-bottom: 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .btn-sign-in {
        display: block;
        width: 100%;
        margin-bottom: 12px;
    }

    .btn-back-to-login {
        display: block;
        width: 100%;
        margin-right: 0;
        box-sizing: border-box;
    }

    .login-footer {
        display: none;
    }

    .alert-error-msg {
        position: absolute;
        width: 100%;
        top: 20px;
        left: 0;
        font-size: 13px;
        border-radius: 0;
    }

    .mail-send {
        justify-content: center;
    }

    .login-wrapper.for-mobile.valid-page {
        display: flex;
    }

        .login-wrapper.for-mobile.valid-page .mobile-only {
            display: block;
        }

        .login-wrapper.for-mobile.valid-page .login-footer {
            display: block;
            margin-top: 200px;
        }

            .login-wrapper.for-mobile.valid-page .login-footer ul {
                display: flex;
                justify-content: center;
                margin-bottom: 20px;
            }

                .login-wrapper.for-mobile.valid-page .login-footer ul li {
                    margin-right: 0px;
                    text-align: left;
                }

                    .login-wrapper.for-mobile.valid-page .login-footer ul li:last-child {
                        text-align: right;
                    }

                    .login-wrapper.for-mobile.valid-page .login-footer ul li img {
                        width: 95%;
                    }

    .privacy-policy {
        text-align: center;
        margin: 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1024px) {
    .login-wrapper .login-left-content {
        padding: 50px 40px;
        flex-basis: 45%;
    }

        .login-wrapper .login-left-content .app-logo {
            margin-bottom: 50px;
        }

    .login-btn-wrap {
        margin-bottom: 50px;
    }

    .login-footer p {
        font-size: 14px;
    }

    .login-footer ul li {
        margin-right: 5px;
    }

    .alert-error-msg {
        font-size: 14px;
    }

    .login-wrapper .login-right-content {
        padding: 50px 40px;
        flex-basis: 55%;
    }

    .carousel-img {
        width: 100%;
    }

    .carousel-heading {
        font-size: 26px;
    }

    .carousel-sub-heading {
        font-size: 13px;
    }

    .login-wrapper .login-left-content .app-logo {
        max-width: 200px;
        max-height: 20px;
    }

    .login-right-content p.copy-right {
        display: block;
    }

    .login-left-content p.copy-right {
        display: none;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1365px) {
    .login-wrapper .login-left-content {
        padding: 30px 20px 0;
    }

    .login-wrapper .login-right-content {
        padding: 30px 20px 0;
    }

    .carousel-heading {
        margin: 30px auto 0;
    }

    .carousel-img {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1439px) {
    .btn-sign-in {
        padding: 16px 25px;
    }
}

@media only screen and (width: 1024px) and (resolution: 163dpi) {
    .login-wrapper .login-right-content {
        height: 100vh;
    }

    .login-wrapper .login-left-content {
        height: 100vh;
    }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input {
    filter: none;
    box-shadow: none !important;
    outline: none !important;
}

.page-loader {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-content: center;
}

    .page-loader .loader-icon {
        z-index: 9;
        display: flex;
        justify-content: center;
        align-content: center;
    }

        .page-loader .loader-icon img {
            width: 100px;
        }

.login-wrapper {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.second-login {
    width: 870px;
    height: 477px;
    background-color: #fff;
    box-shadow: 0px 3px 30px #9396A647;
    display: flex;
}

.left-log-in {
    width: 56%;
    height: auto;
    overflow: hidden;
    display: flex;
    justify-content: left;
    align-items: center;
    background-image: url(/assets/common/images/broker-area/login-bg-left.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.login-form {
    width: 46%;
    height: 100%;
    position: relative;
    padding: 100px 78px 78px 78px;
    box-sizing: border-box;
}

.left-log-in h3 {
    font-size: 38px;
    color: #fff;
    line-height: 0;
    margin: 0 0 42px 0;
}

.left-log-in .title-text-login span {
    color: #fff;
    font-size: 17px;
    position: relative;
    top: -13px;
}

.title-text-login {
    padding-left: 80px;
    box-sizing: border-box;
    height: 72px;
}

.app-logo {
    width: 87px;
    margin-bottom: 11px;
}

@media only screen and (max-width: 1024px) {
    .left-log-in {
        display: none;
    }

    .epc-xs .left-log-in {
        display: flex !important;
    }

    .epc-xs .second-login {
        height: 100vh !important;
    }

    .epc-xs .left-log-in h3 {
        line-height: 40px;
    }

    .second-login {
        width: 100%;
    }

    .right-log-in {
        width: 100%;
    }

    .login-form {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .second-login {
        height: auto;
    }

    .login-form {
        padding: 30px;
    }
}

.showpassword .eye-close {
    display: none;
}

.eye-open {
    display: none;
}

.showpassword .eye-open {
    display: block;
    width: 13px;
}

.ful-screen {
    width: 100% !important;
}

.alter-btn {
    width: 220px !important;
    height: 40px !important;
    background-color: #fff !important;
    color: #2497be !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.required-content ul li::before {
    content: "\2022";
    color: orange;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-size: 20px;
}

.required-content ul li {
    font-size: 12px;
    line-height: 17px;
}

.reset-form {
    padding: 100px 60px 78px 60px !important;
    margin-top: -60px !important;
}

.mtm10 {
    margin-top: -10px !important;
}

.backbtn-pos {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #000;
}

    .backbtn-pos img {
        filter: grayscale(100%);
        position: relative;
        top: 3px;
    }

.wht-logo {
    position: relative;
    top: -30px;
}

.jstcc {
    position: relative;
    top: -55px;
}

.close-pos {
    position: absolute;
    top: 2rem;
    right: 2rem;
    cursor: pointer;
}
