@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

/* font-family: "Ubuntu", serif; */

/* general */
html,
body {
    height: 100%;
}

body {
    color: #fff;
    height: 100%;
    font-family: "Ubuntu", serif;
    font-size: 16px;
    line-height: 1.3;
    min-height: 100%;
    background: #171C23;
    position: relative;
}

.mf9f41dsq-layout {
    min-height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.mf9f41dsq-wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}

/* step chat */

.mf9f41dsq-step-chat .mf9f41dsq-content::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
}

.mf9f41dsq-step-chat .mf9f41dsq-header {
    border-bottom: 1px solid #e7e5e5;
}

/* step reg */

.mf9f41dsq-step-reg::before {
    content: "";
    position: fixed;
    z-index: -1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../images/bg-2-mf9f41dsq.jpg) no-repeat center top/cover;
}

.mf9f41dsq-step-reg .mf9f41dsq-content::before {
    display: none;
}

.mf9f41dsq-step-reg .mf9f41dsq-step {
    padding-top: 142px;
}


/* mf9f41dsq-step-profiles */

.mf9f41dsq-step-profiles .mf9f41dsq-content::before {
    display: none;
}

/* mf9f41dsq-step-profile */

.mf9f41dsq-step-profile .mf9f41dsq-header {
    background: transparent;
    border: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    z-index: 3;
}

.mf9f41dsq-step-profile .mf9f41dsq-step {
    padding: 0;
}


/* btn */

.mf9f41dsq-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 5px;
    outline: none;
    margin: 10px auto 0;
    width: 100%;
    height: 56px;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s linear;
    overflow: hidden;
    z-index: 1;
    position: relative;
    border-radius: 100px;
    background: #D2B571;
    color: #2A2A2A;
    text-transform: capitalize;
    border: 2px solid #D2B571;
}

.mf9f41dsq-btn--hidden {
    opacity: 0.5;
    cursor: none;
    pointer-events: none;
}

.mf9f41dsq-btn--outline {
    color: #D2B571;
    position: relative;
    background: transparent;
}

.mf9f41dsq-btn-wrap {
    display: flex;
    justify-content: space-between;
}

.mf9f41dsq-btn-wrap .mf9f41dsq-btn {
    max-width: 48%;
    margin: 0;
}

/* header */

.mf9f41dsq-header {
    padding: 16px 20px;
    width: 100%;
    margin: 0 auto;
    z-index: 3;
    position: relative;
    background: #171C23;
}

.mf9f41dsq-header .mf9f41dsq-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
}

.mf9f41dsq-header__logo {
    margin: auto;
    max-width: 197px;
}

.mf9f41dsq-btn-back,
.mf9f41dsq-btn-profile {
    width: 25px;
    height: 25px;
    z-index: 1;
    border: none;
    outline: 0;
    padding: 0;
}

.mf9f41dsq-btn-back {
    display: block;
    background: url(../images/icons/arrow-back-mf9f41dsq.svg) no-repeat center/auto;
}

.mf9f41dsq-btn-profile {
    /* display: none; */
    background: url(../images/icons/profile-mf9f41dsq.svg) no-repeat center/contain;
}

.mf9f41dsq-reg-on .mf9f41dsq-btn-profile {
    display: block;
}

/* content */

.mf9f41dsq-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
    height: 100%;
    position: relative;
    z-index: 2;
}

.mf9f41dsq-step {
    position: relative;
    display: flex;
    width: 100%;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 18px;
}

.mf9f41dsq-step--chat {
    max-width: 100%;
    padding: 0;
}

.mf9f41dsq-step--chat .mf9f41dsq-wrap {
    position: relative;
    display: flex;
    width: 100%;
    flex: 1 0 auto;
    flex-direction: column;
    justify-content: flex-start;
}

/* footer */

.mf9f41dsq-footer {
    padding: 19px 10px;
    position: relative;
    z-index: 3;
    background: #171C23;
}

.mf9f41dsq-footer__menu {
    display: flex;
    justify-content: space-around;
}

.mf9f41dsq-footer__item {
    display: inline-block;
    font-size: 15px;
}

/* modal */

.modal-backdrop {
    z-index: 11 !important;
    background: rgba(15, 15, 15, 0.8);
}

.mf9f41dsq-modal .modal-content {
    margin: 160px 15px 30px;
    padding: 30px 20px;
    background-color: #fff;
    color: #2A2A2A;
    border-radius: 20px;
    border: none;
    text-align: center;
    font-size: 18px;
}

.mf9f41dsq-modal p:not(:last-child) {
    padding: 0 0 15px;
}

.mf9f41dsq-form__note {
    font-size: 13px;
    line-height: 16px;
    color: #333333;
}

.mf9f41dsq-modal .mf9f41dsq-modal-title {
    font-weight: 700;
}

.mf9f41dsq-modal-close {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.mf9f41dsq-modal-close::before,
.mf9f41dsq-modal-close::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    background: #c2c2c2;
    top: 50%;
    left: 0;
}

.mf9f41dsq-modal-close::before {
    transform: rotate(45deg);
}

.mf9f41dsq-modal-close::after {
    transform: rotate(-45deg);
}

.mf9f41dsq-modal .mf9f41dsq-btn {
    margin-top: 0;
    color: #2A2A2A;
}

.mf9f41dsq-modal .mf9f41dsq-btn + .mf9f41dsq-btn {
    margin-top: 15px;
}

.hidden {
    display: none !important;
}
.hidden.show {
    display: inherit !important;
    animation: show-to-top 0.3s linear both;
}

/* index */

.mf9f41dsq-main {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 102px);
    max-width: 1320px;
    margin: 0 auto;
}

.mf9f41dsq-layout--general {
    background-image: url(../images/bg-mf9f41dsq.svg);
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-color: #361818;
    background-size: cover;
}

.mf9f41dsq-layout--general .mf9f41dsq-content {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex ;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: calc(100vh - 102px);
    max-width: 1320px;
    margin: 0 auto;
}

.mf9f41dsq-layout--general .mf9f41dsq-logo {
    max-width: 338px;
    margin: 0 auto 14px;
    width: 100%;
}

.mf9f41dsq-steps-container {
    z-index: 20;
    max-width: 1320px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-grow: 1;
    position: relative;
    padding: 40px 15px 130px;
    margin: 0 auto;
}

.mf9f41dsq-layout--general .mf9f41dsq-step * {
    position: relative;
    z-index: 1;
}

.mf9f41dsq-layout--general .mf9f41dsq-btn {
    margin-top: 40px;
    height: 64px;
    font-size: 24px;
    line-height: 30px;
}

.mf9f41dsq-layout--general .mf9f41dsq-step {
    position: relative;
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    padding: 40px 27px;
    border-radius: 20px;
    z-index: 1;
    max-width: 470px;
}

.mf9f41dsq-layout--general .mf9f41dsq-step::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: #fff;
    z-index: 0;
}

.mf9f41dsq-subtitle {
    color: #2a2a2a;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 30px;
}

.mf9f41dsq-layout--delete .mf9f41dsq-subtitle {
    color: #ffffff;
}

.mf9f41dsq-bg {
    opacity: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 66%;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    display: block;
    animation: fade-in 0.5s linear both;
    right: 0;
    z-index: 0;
}

.mf9f41dsq-bg--1 {
    background-image: url(../images/bg-1-mf9f41dsq.png);
    width: 100%;
    background-position: bottom right;
}

.mf9f41dsq-bg--2 {
    background-image: url(../images/bg-2-mf9f41dsq.png);
    width: 100%;
    background-position: bottom right;
}


.mf9f41dsq-bg-mob {
    display: none;
    position: absolute !important;
}

.mf9f41dsq-bg-mob--1 {
    top: -19px;
    left: 12px;
}

.mf9f41dsq-bg-mob--2 {
    top: 142px;
    left: -9px;
}

.mf9f41dsq-bg-mob--3 {
    top: 96px;
    right: -20px;
    z-index: -1;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* Form */

.mf9f41dsq-form__control {
    font-family: "Ubuntu", sans-serif;
    background: #ffffff;
    border: 2px solid #d2b571;
    border-radius: 100px;
    width: 100%;
    height: 55px;
    padding: 5px 20px;
    color: #2A2A2A;
    font-size: 18px;
    line-height: 22px;
    font-weight: 400;
    box-sizing: border-box;
    outline: none;
}

.mf9f41dsq-form__control::placeholder {
    color: #a9a9a9;
}

.mf9f41dsq-form--account .mf9f41dsq-form__control {
    background: #282C32;
    color: #ffffff;
}

.mf9f41dsq-form--contact .mf9f41dsq-form__control {
    background: #282C32;
    color: #ffffff;
}

.mf9f41dsq-form--account .mf9f41dsq-form__control::placeholder {
    color: #a9a9a9;
}

.mf9f41dsq-form--contact .mf9f41dsq-label {
    color: #ffffff;
}

.mf9f41dsq-form--account .mf9f41dsq-label {
    color: #ffffff;
}

textarea.mf9f41dsq-form__control {
    height: 80px;
    border-radius: 20px;
}

.mf9f41dsq-form__control.mf9f41dsq-form__control--chat {
    padding: 5px 40px 5px 20px;
}

.mf9f41dsq-form__send {
    width: 44px;
    height: 44px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: absolute;
    z-index: 5;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
}

.mf9f41dsq-label {
    display: block;
    font-family: "Ubuntu", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    color: #2a2a2a;
    margin: 0 0 5px 20px;
}

.mf9f41dsq-form--row {
    margin-bottom: 20px;
}

label.error {
    color: #cf0000;
    font-size: 14px;
    line-height: 16px;
    display: block;
    margin: 2px 0 0 20px;
}

form .mf9f41dsq-subtitle {
    margin-bottom: 15px;
}

form.mf9f41dsq-form--account .mf9f41dsq-subtitle {
    color: #ffffff;
}

form.mf9f41dsq-form--contact .mf9f41dsq-subtitle {
    color: #ffffff;
}

.mf9f41dsq-form--account .mf9f41dsq-btn {
    margin: 0;
}

.mf9f41dsq-form__wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    margin-top: 40px;
}

.mf9f41dsq-form__wrap .mf9f41dsq-btn {
    margin: 0;
}

.mf9f41dsq-layout--delete .mf9f41dsq-form__wrap {
    max-width: 400px;
    width: 100%;
    margin: 40px auto 0;
}


/* select */

.select2 {
    width: 100% !important;
    max-width: 100%;
    display: block;
}

.select2-container .select2-selection--single {
    height: 55px;
}

.select2-container--default .select2-selection--single {
    border: none;
    background: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    height: 55px;
    font-weight: 400;
    font-size: 18px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 20px;
    color: #2A2A2A;
    padding-left: 20px;
    padding-right: 38px;
    border-radius: 30px;
    border: 2px solid #D2B571;
    background: rgba(255, 255, 255, 0.4);
}

.select2-container .select2-selection--single .select2-selection__rendered {
    white-space: inherit;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 15px;
    right: 12px;
    width: 21px;
}

.select2-container--open .select2-dropdown--below {
    border-radius: 30px;
    padding: 10px 0;
    box-shadow: 0px 4px 10px 0px #00000066;
    overflow-y: auto;
    border: none;
}

.select2-results__option {
    padding: 10px 12px;
    color: #2A2A2A;
}

.select2-container--default .select2-results__option[aria-selected="true"], .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #E7E5E5;
    color: #2A2A2A;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    display: none;
}

/* legal pages */

.mf9f41dsq-layout--info {
    background-image: url(../images/bg-info-mf9f41dsq.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
}

.mf9f41dsq-text-page {
    flex-direction: column;
    align-items: flex-start;
}

.mf9f41dsq-text-page h1 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
}

.mf9f41dsq-text-page p {
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.mf9f41dsq-text-page h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mf9f41dsq-text-page ul {
    list-style-type: disc;
    padding-left: 20px;
}

.mf9f41dsq-text-page li {
    margin-bottom: 12px;
}

.mf9f41dsq-text-page a {
    color: #D2B571;
}



@media (max-width: 990px) {
    .mf9f41dsq-layout--general {
        background-image: url(../images/bg-mob-mf9f41dsq.svg);
    }

    .mf9f41dsq-bg {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background-size: 100% auto;
        background-position: center 30px;
    }

    .mf9f41dsq-bg--1 {
        background-image: url(../images/bg-1-mob-mf9f41dsq.png);
    }

    .mf9f41dsq-bg--2 {
        background-image: url(../images/bg-2-mob-mf9f41dsq.png);
    }

    .mf9f41dsq-steps-container {
        position: relative;
        padding: 45px 19px 37px;
    }

    .mf9f41dsq-layout--general .mf9f41dsq-step {
        margin: auto auto 0;
        width: 80%;
        max-width: initial;
        filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.5));
        padding: 30px 18px;
    }

    .mf9f41dsq-layout--general .mf9f41dsq-btn {
        width: 100%;
    }

    .mf9f41dsq-layout--general .mf9f41dsq-subtitle {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    .mf9f41dsq-bg-mob {
        display: block;
    }

    .mf9f41dsq-form--row {
        margin-bottom: 15px;
    }
}


@media (max-width: 768px) {
    .mf9f41dsq-bg {
        background-size: 100% auto;
        background-position: center 30px;
    }

    .mf9f41dsq-layout--general .mf9f41dsq-btn {
        font-size: 18px;
        height: 56px;
        margin-top: 8px;
    }

    .mf9f41dsq-layout--general form .mf9f41dsq-btn {
        margin-top: 20px;
    }

    .mf9f41dsq-layout--general .mf9f41dsq-logo {
        max-width: 232px;
        margin-bottom: 10px;
    }

    .mf9f41dsq-layout--info {
        background-image: url(../images/bg-info-mob-mf9f41dsq.jpg);
    }
}