﻿:root {
    --main-color: #fe6400;
    /* buttons color */
    --btn-color: #f88400;
    --btn-text-color: #fff;
    /* borders */
    --default-bar-color: #e5e5e5;
    --focus-bar-color: #56acf7;
    --valid-border-color: #27c400;
    --error-border-color: #ff2e2e;
    /* labels */
    --label-color: rgba(0, 0, 0, 0.87);
    --checkbox-label-color: #9e9e9e;
    --error-color: #ff2e2e;
    /* background */
    --background-color-input: #eff0f0;
    /* action */
    --hover-btn-color: #ef7d00;
    --action-label-color: #9d9d9d;
    --transition: 0.2s;
    /* fonts */
    --font-family-sans-serif: Roboto, Helvetica, Arial, sans-serif;
    --font-family-ama-form: Inter, var(--font-family-sans-serif);
    --font-family-ama-form-rtl: Vazirmatn-Regular, var(--font-family-ama-form);
    --font-size: 16px;
    --input-font-size: 14px;
    --label-font-size: 14px;
    --error-font-size: 12px;
}
*,
::after,
::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.hidden {
    display: none;
}
.ama-form {
    position: relative;
    max-width: 335px;
    font-family: var(--font-family-ama-form);
    -webkit-transition: height var(--transition) ease;
    -o-transition: height var(--transition) ease;
    transition: height var(--transition) ease;
}
.ama-form__btn {
    width: 100%;
    min-height: 60px;
    padding: 0 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: center;
    font-family: var(--font-family-ama-form);
    font-weight: bold;
    font-size: 20px;
    color: var(--btn-text-color);
    background-color: var(--btn-color);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    -webkit-transition: all var(--transition);
    transition: all var(--transition);
    cursor: pointer;
}
.ama-form__btn:hover {
    color: var(--btn-text-color);
    background-color: var(--hover-btn-color);
}
.ama-form__btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}
.ama-form__checkbox {
    margin-bottom: 27px;
}
.promo_code-title {
    display: inline-block;
    margin: 0;
    font-style: normal;
    font-weight: normal;
    font-size: var(--font-size);
    color: #54a3ff;
    border-bottom: 1px solid currentColor;
    cursor: pointer;
    -webkit-transition: border-bottom var(--transition);
    -o-transition: border-bottom var(--transition);
    transition: border-bottom var(--transition);
}
.promo_code-title:hover {
    border-bottom: 1px dashed #54a3ff;
}
.promo_code-title.hidden {
    display: none;
}
.bonus__message-container {
    margin-bottom: 20px;
}
.bonus__message-real,
.bonus__message-demo {
    display: none;
}
.bonus__show-real .bonus__message-real {
    display: block;
}
.bonus__show-demo .bonus__message-demo {
    display: block;
}
.bonus__message {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 10px 15px;
    margin-bottom: 7px;
    min-height: 62px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    border-radius: 5px;
    background-color: #292929;
}
.bonus__message span {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 35px;
}
.bonus__message span::before {
    content: '';
    position: relative;
    display: inline-block;
    top: -2px;
    margin-right: 15px;
    width: 34px;
    height: 43px;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../image/api-form-bonus-icon.svg);

    -webkit-animation-name: gift_shaking;
    animation-name: gift_shaking;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}
@-webkit-keyframes gift_shaking {
    3%, 9%, 23%, 29%, 43%, 49%, 63%, 69%, 83%, 89% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    6%, 20%, 26%, 40%, 46%, 60%, 66%, 80%, 86%, 100% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg)
    }
}
@keyframes gift_shaking {
    3%, 9%, 23%, 29%, 43%, 49%, 63%, 69%, 83%, 89% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    6%, 20%, 26%, 40%, 46%, 60%, 66%, 80%, 86%, 100% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg)
    }
}
.bonus__message-explanation {
    margin: 0;
    min-height: 42px;
    font-size: 12px;
    line-height: 1.2;
    color: #909090;
}
.input__container-hidden {
    display: none;
}
.input__container {
    position: relative;
    margin-bottom: 20px;
}
.ama-form .promo_code {
    margin-bottom: 20px;
}
.input__container textarea,
.input__container input {
    display: block;
    width: 100%;
    height: 50px;
    margin: 0;
    outline: none;
    background: var(--background-color-input);
    border: 1px solid var(--background-color-input);
    border-radius: 5px;
    font-family: var(--font-family-ama-form);
    font-weight: normal;
    font-size: var(--input-font-size);
    letter-spacing: 0.25px;
    color: var(--label-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-transition: all var(--transition) easy;
    -o-transition: all var(--transition) easy;
    transition: all var(--transition) easy;
}
.input__container textarea {
    min-height: 100px;
    padding: 15px;
    line-height: 1.2;
}
.input__container textarea::placeholder {
    color: #757575;
}
.input__container input:focus {
    border: 1px solid var(--focus-bar-color);
}
.input__container input:not([type='phone']) {
    padding: 0 1.05rem;
}
.input__container input[type='date']::-webkit-calendar-picker-indicator {
    cursor: pointer;
}
.input__container input:-internal-autofill-selected {
    background-color: transparent !important;
}
.input__container.valid input,
.input__container input.valid,
.input__container.valid .select,
.input__container.valid .select2.select2-container .select2-selection__rendered {
    border: 1px solid var(--valid-border-color);
}
.input__container.invalid input,
.input__container.invalid textarea,
.input__container input[form-valid='false']:not(.form__phone),
.input__container.invalid .select,
.input__container.invalid .select2.select2-container .select2-selection__rendered {
    border: 1px solid var(--error-border-color);
}
.input__container-switch .switch__row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.input__container-switch .switch-input[type=checkbox] {
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 0;
    border: none;
    visibility: hidden;
}
.input__container-switch .switch-label {
    position: relative;
    display: block;
    width: 100%;
    max-width: 56px;
    height: 32px;
    margin-bottom: 0;
    background-color: #e9e9ea;
    border-radius: 100px;
    cursor: pointer;
    opacity: 1;
}
.input__container-switch .switch-label:after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.input__container-switch .switch-input:checked + .switch-label {
    background-color: #1f252d;
}
.input__container-switch .switch-input:checked + .switch-label:after {
    left: calc(100% - 2px);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
}
.input__container-switch .switch__row .label-platform {
    position: relative;
    margin-bottom: 0;
}
.input__container label,
.label-platform {
    display: block;
    margin-bottom: 8px;
    padding: 0 17px;
    font-size: var(--label-font-size);
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    color: var(--label-color);
    letter-spacing: 0.25px;
}
.input__container-label_wrap {
    position: relative;
}
.input__wrapper {
    position: relative;
}
.select-common,
.select-platform {
    margin: 0;
    width: 100%;
    height: 50px;
    padding-right: 2.25rem;
    padding: 0.5rem 2rem 5px 1.05rem;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="0,0 32,0 16,24" style="fill: rgb%28166, 173, 176%29"></polygon></svg>');
    background-origin: content-box;
    background-position: right -1.5rem center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    background-color: #f2f3f3;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--default-bar-color);
    border-radius: 4px;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--label-color);
    font-size: var(--font-size);
    font-family: inherit;
    font-weight: normal;
    -webkit-transition: border var(--transition) ease, background-image 0.1s;
    -o-transition: border var(--transition) ease, background-image 0.1s;
    transition: border var(--transition) ease, background-image 0.1s;
}
.select-common:focus,
.select-platform:focus {
    outline: none;
    border: 1px solid var(--focus-bar-color);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="32" height="24" viewBox="0 0 32 24"><polygon points="16,0 16,0 0,24 32,24" style="fill: rgb%28166, 173, 176%29"></polygon></svg>');
}
.iti {
    width: 100%;
}
.ama-form .iti--show-selected-dial-code {
    direction: ltr;
}
.ama-form .iti__selected-dial-code {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-end: 6px;
    margin-inline-end: 6px;
    font-size: 14px;
    font-family: var(--font-family-ama-form);
}
.ama-form .iti__selected-country:hover {
    background-color: rgba(0, 0, 0, 0.05);
}
.ama-form .iti__selected-country-primary:hover {
    background-color: transparent !important;
}
.ama-form .iti__dropdown-content .iti__search-input,
.iti--container .iti__dropdown-content .iti__search-input {
    height: 42px;
    border-radius: 0;
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
    border: 1px solid #e1e1e1;
}
.ama-form .iti__country-list,
.ama-form .country-list {
    padding: 0;
    max-width: 480px;
    max-height: 200px;
    left: 2px;
}
.ama-form .iti__country {
    margin: 0;
}
.country-select.inside input,
.country-select.inside input[type=text] {
    z-index: 1;
}
.ama-form .country-select .country-list li:before {
    display: none;
}
.ama-form .iti__country-list .iti__country:before,
.ama-form .iti__country-list .iti__country:after {
    content: none;
}
.ama-form .iti__selected-country {
    background-color: #e1e1e1;
}
.ama-form .iti--show-selected-dial-code .iti__selected-dial-code {
    font-size: var(--input-font-size);
}
.error-message {
    display: none;
    margin: 0;
    margin: 10px 0 0;
    padding-left: 1.05rem;
    color: var(--error-color);
    font-style: normal;
    font-weight: normal;
    font-size: var(--error-font-size);
    -webkit-animation: fadeIn 0.25s;
    animation: fadeIn 0.25s;
}
.error-message__response {
    display: none;
    margin: 0 0 20px;
    padding: 1rem 0.5rem;
    text-align: center;
    font-style: normal;
    font-weight: normal;
    font-size: calc(var(--error-font-size) + 2px);
    color: #721c24;
    line-height: 120%;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    border: 1px solid transparent;
    border-radius: 5px;
}
.error-message__response a {
    color: inherit;
}
.checkbox__input {
    position: absolute;
    opacity: 0;
}
.checkbox__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    position: relative;

    font-size: 12px;
    line-height: 16px;
    font-weight: normal;
    color: var(--checkbox-label-color);
    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.checkbox__label span {
    padding-left: 20px;
    -webkit-padding-start: 20px;
    padding-inline-start: 20px;
}
.checkbox__label svg {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15px;
    flex: 0 0 15px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: var(--main-color);
    stroke-width: 1.5;
}
.checkbox__label svg path {
    stroke-dasharray: 60;
    stroke-dashoffset: 0;
}
.checkbox__label svg polyline {
    stroke-dasharray: 22;
    stroke-dashoffset: 66;
}
.checkbox__label:hover:before {
    opacity: 1;
}
.checkbox__input:checked + .checkbox__label svg {
    stroke: var(--main-color);
}
.checkbox__input:checked + .checkbox__label svg path {
    stroke-dashoffset: 60;
    -webkit-transition: all var(--transition) linear;
    -o-transition: all var(--transition) linear;
    transition: all var(--transition) linear;
}
.checkbox__input:checked + .checkbox__label svg polyline {
    stroke-dashoffset: 42;
    -webkit-transition: all var(--transition) linear;
    -o-transition: all var(--transition) linear;
    transition: all var(--transition) linear;
    -webkit-transition-delay: 0.15s;
    -o-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

/* success alert */
.success-alert-wrap {
    position: fixed;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 10px;
    top: 0;
    left: 0;
    background-color: rgba(31, 37, 45, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: #000;
    z-index: 99999999;
}
.success-alert--show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.success-alert-wrap .alert__body {
    position: relative;
    width: 100%;
    max-width: 385px;
    padding: 40px 30px;
    font-family: var(--font-family-ama-form);
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 30px rgba(39, 46, 54, 0.07);
    box-shadow: 0px 0px 30px rgba(39, 46, 54, 0.07);
    border-radius: 24px;
}
.success-alert-wrap .alert__content {
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.success-alert-wrap .alert__title {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;
}
.success-alert-wrap .alert__txt {
    margin-top: 15px;
    line-height: 1.4;
}
.success-alert-wrap .alert__credentials {
    margin-top: 20px;
}
.success-alert-wrap .credentials__line {
    margin-bottom: 10px;
    padding: 5px 15px;
    background-color: #f3f5f6;
    border: 1px solid #f3f5f6;
    border-radius: 8px;
    transition: border .25s ease-in-out;
}
.success-alert-wrap .credentials__line:last-child {
    margin-bottom: 0;
}
.success-alert-wrap .credentials__line.copied {
    border: 1px solid #4caf50;
}
.success-alert-wrap .credentials__label {
    margin-bottom: 2px;
    color: #8f9296;
    font-size: 13px;
    text-align: start;
}
.success-alert-wrap .credentials__value {
    position: relative;
    font-size: 16px;
    cursor: pointer;
}
.success-alert-wrap .credentials__value::before {
    content: '';
    position: absolute;
    inset-inline-end: -4px;
    top: -12px;
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../image/copy_icon.svg);
}
.success-alert-wrap .alert__close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 32px;
    height: 32px;
    padding: 0;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    background-image: url(../image/success_alert_close_icon.svg);
}
.success-alert-wrap .pa__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    min-height: 60px;
    margin-top: 30px;
    padding: 10px;
    text-align: center;
    font-family: var(--font-family-ama-form);
    font-weight: bold;
    font-size: 16px;
    color: var(--btn-text-color);
    background-color: var(--btn-color);
    text-decoration: none;
    border: none;
    border-radius: 5px;
    -webkit-transition: all var(--transition);
    -o-transition: all var(--transition);
    transition: all var(--transition);
    cursor: pointer;
}
.success-alert-wrap .pa__button:hover {
    color: var(--btn-text-color);
    background-color: var(--hover-btn-color);
}
.success-alert-wrap .alert__body--rtl {
    direction: rtl;
}
.success-alert-wrap .alert__body--rtl .credentials__value {
    direction: ltr;
    text-align: right;
}
.success-alert-wrap .alert__body--rtl .credentials__value::before {
    direction: rtl;
}

/* custom placeholder */
.custom__placeholder {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    height: 50px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 2rem 0 1.05rem;
    margin: 0;
    border: 0;
    color: var(--label-color);
    font-size: var(--font-size);
    cursor: default;
}

/* spinner */
.ama-form__spinner {
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
}
.ama-form__spinner .path {
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}
@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
       opacity: 1;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
       opacity: 1;
    }
}

/* radio btn, change account type */
.ama-form__radio-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    vertical-align: middle;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 10px;
}
.ama-form__radio[type='radio'] {
    position: absolute;
    visibility: hidden;
    height: 0;
    width: 0;
}
.ama-form__radio-label {
    width: 100%;
    height: 38px;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.25px;
    background-color: #eff0f0;
    border: 4px solid #eff0f0;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.ama-form__radio-label span {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 5px;
    color: #909090;
    -webkit-transition: color var(--transition) ease-out, background-color var(--transition) ease-in;
    -o-transition: color var(--transition) ease-out, background-color var(--transition) ease-in;
    transition: color var(--transition) ease-out, background-color var(--transition) ease-in;
}
.ama-form__radio-label + .ama-form__radio-label {
    margin-left: 10px;
}
.ama-form__radio:checked + label span {
    color: var(--btn-color);
    background-color: #fff;
    font-weight: 600;
}
.ama-form__radio.demo-radio + .ama-form__radio-label {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.ama-form__radio.real-radio + .ama-form__radio-label {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}
/* rtl */
.ama-form--rtl {
    direction: rtl;
}
.ama-form--rtl,
.ama-form--rtl .ama-form__btn {
    font-family: var(--font-family-ama-form-rtl);
}
.ama-form--rtl .bonus__message {
    direction: rtl;
}
.ama-form--rtl .bonus__message span {
    padding-left: 0;
    padding-right: 34px;
}
.ama-form--rtl .bonus__message span::before {
    margin-right: 0;
    margin-left: 15px;
}
.ama-form--rtl .bonus__message-explanation {
    text-align: right;
    direction: rtl;
}
.ama-form--rtl .input__container input {
    text-align: left;
    direction: ltr;
}
.ama-form--rtl .input__container label {
    right: 0;
    left: initial;
}
.ama-form--rtl .input__container input,
.ama-form--rtl .input__container label,
.ama-form--rtl .label-platform {
    letter-spacing: initial;
}
.ama-form--rtl .error-message {
    padding-left: initial;
    padding-right: 1.05rem;
    text-align: right;
}
.ama-form--rtl .input__container label,
.ama-form--rtl .error-message__response,
.ama-form--rtl .promo_code,
.ama-form--rtl .input__container-account-platform .label-platform {
    direction: rtl;
    text-align: right;
}
.ama-form--rtl .form__checkbox {
    direction: rtl;
}
.ama-form--rtl .checkbox__label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.ama-form--rtl .checkbox__label span {
    padding-left: initial;
    padding-right: 20px;
    text-align: right;
    direction: rtl;
}
.ama-form--rtl .checkbox__input {
    right: 0;
    margin: 0 !important;
}
.ama-form--rtl .dial-code-text,
.ama-form--rtl .form__phone,
.ama-form--rtl .iti--show-selected-dial-code .iti__selected-dial-code,
.ama-form--rtl .intl-tel-input .country-list .country .dial-code,
.ama-form--rtl .iti__country {
    direction: ltr;
    text-align: left;
    font-family: var(--font-family-ama-form) !important;
}
.ama-form--rtl .iti--show-selected-dial-code .iti__selected-flag,
.ama-form--rtl .ama-form__checkbox,
.rtl .iti-mobile .iti__country,
.iti-mobile .iti__country-list,
.ama-form.ama-form--rtl .iti__country-list,
.ama-form.ama-form--rtl .flag-dropdown {
    direction: ltr;
}
.ama-form--rtl .input__container-switch {
    direction: rtl;
}
.ama-form--rtl .checkbox label,
.ama-form--rtl [dir=rtl] .checkbox label,
.ama-form.ama-form--rtl .iti__country-list,
.ama-form.ama-form--rtl .flag-dropdown,
.ama-form.ama-form--rtl .country-list {
    padding: 0;
}
.ama-form--rtl .select-common,
.ama-form--rtl .select-platform,
.ama-form--rtl .custom__placeholder {
    background-position: left -1.5rem center;
    padding-right: 2rem;
    padding-left: 2.25rem;
    padding: 0.5rem 1.05rem 5px 2rem;
}
.ama-form--rtl .iti--allow-dropdown .iti__flag-container,
.ama-form--rtl .iti--show-selected-dial-code .iti__flag-container {
    right: auto;
    left: 0;
}
.ama-form--rtl .iti__arrow {
    margin-right: 0;
    margin-left: 6px;
}
.ama-form--rtl .iti--allow-dropdown .iti__country-container {
    right: auto;
    left: 0;
    direction: ltr;
}
/* style for site */
.partners-registration--site,
.ama-form--site {
    --main-color: #4caf50;
    --label-color: #0a0a0a;
    --btn-color: #4caf50;
    --hover-btn-color: #47a34a;
    --checkbox-label-color: #7c878f;
    --label-font-size: 14px;
}
.ama-form--site {
    margin-top: 2.5rem;
    max-width: 467px;
}
.ama-form--site .input__container input,
.ama-form--site .input__container select {
    height: 42px;
    margin: 0;
}
.ama-form--site .input__container input[type='date'] {
    line-height: 42px;
}
.ama-form .input__container input:disabled,
.ama-form .input__container textarea:disabled,
.ama-form .input__container select:disabled {
    border-color: transparent !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
}
.ama-form .checkbox__input:disabled {
    border: 0;
    cursor: not-allowed !important;
    pointer-events: none;
}
.ama-form .checkbox__input:disabled ~ .checkbox__label,
.ama-form .input__container .select2-container--default.select2-container--disabled .select2-selection__rendered,
.ama-form .input__container.disabled .promo_code-title,
.ama-form .input__container.disabled .custom__placeholder,
.ama-form .input__container.disabled .country-select.inside .flag-dropdown,
.ama-form .input__container.disabled .switch-label,
.ama-form .input__container.disabled .iti__selected-country,
.ama-form .input__container.disabled .iti__flag-container {
    border-color: transparent !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
    pointer-events: none;
}
.ama-form--site .input__container label,
.ama-form--site .label-platform {
    font-weight: 500;
    opacity: 1;
}
.ama-form--site .promo_code-title {
    margin: 0;
    font-size: 14px;
    color: #7c878f;
    border-bottom: 1px dashed currentColor;
    -webkit-transition: color var(--transition), border-bottom var(--transition);
    -o-transition: color var(--transition), border-bottom var(--transition);
    transition: color var(--transition), border-bottom var(--transition);
}
.ama-form--site .promo_code-title:hover {
    color: #4caf50;
    border-bottom: 1px solid transparent;
}
.ama-form--site .ama-form__btn {
    min-height: 40px;
    font-size: 12px;
    line-height: 1;
    text-transform: uppercase;
}
.ama-form--site .custom__placeholder {
    height: 42px;
}

/* style for land */
.land_theme .ama-form .input__container.disabled > input,
.land_theme .ama-form .input__container.disabled .promo_code > input,
.land_theme .ama-form .input__container.disabled .iti__selected-country,
.land_theme .ama-form .input__container.disabled .iti--allow-dropdown input.iti__tel-input,
.land_theme .ama-form .input__container.disabled .select2-container--disabled .select2-selection {
    border-color: #d4dbe2 !important;
    background-color: #fff !important;
    opacity: 0.5 !important;
    pointer-events: none;
}
.land_theme .ama-form .input__container.input__container--label.disabled .label,
.land_theme .ama-form .input__container.input__container--label.disabled > label {
    opacity: 0.5 !important;
    color: #8599ad;
}
.land_theme .ama-form .input__container.disabled .promo_code-title {
    opacity: 0.5 !important;
}
.land_theme .ama-form .checkbox__input:disabled {
    display: none;
}
.land_theme .ama-form {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 4px;
}
.land_theme .ama-form .input__container {
    position: relative;
}
.land_theme .ama-form .input__container .input__container {
    padding: 0;
}
.land_theme .ama-form .input__container .input__container:not(.input__container-hidden) {
    margin-top: 8px;
    margin-bottom: 0;
}
.land_theme .ama-form .input__container.input__container-phone > label {
    display: none;
}
.land_theme .ama-form .input__container > label {
    position: absolute;
    top: 24px;
    inset-inline-start: 0;
    width: 100%;
    margin: 0;
    padding: 0 12px;
    font-size: 16px;
    color: #8599ad;
    font-weight: 400;
    line-height: 1.5;
    transform: translateY(-50%);
    transition: .1s ease-in-out;
    cursor: text;
}
.land_theme .ama-form .input__container.input__container--label .label,
.land_theme .ama-form .input__container.input__container--label > label,
.land_theme .ama-form .input__container .promo_code > label {
    position: static;
    width: 100%;
    padding: 0 12px;
    margin-bottom: 8px;
    color: #030d17;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    transform: translateY(0);
}
.land_theme .ama-form .input__container > input,
.land_theme .ama-form .input__container .promo_code > input {
    height: 48px;
    padding: 20px 12px 4px;
    border-radius: 8px;
    border: 1px solid #d4dbe2;
    background-color: #fff;
    color: #030d17;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .input__container.input__container--label > input,
.land_theme .ama-form .input__container .promo_code > input {
    padding: 0 12px;
}
.land_theme .ama-form .input__container > input::placeholder,
.land_theme .ama-form .input__container .promo_code > input::placeholder {
    color: #8599ad;
    opacity: 0;
}
.land_theme .ama-form .input__container > input:focus,
.land_theme .ama-form .input__container .promo_code > input:focus {
    border-color: #ddeafd;
    box-shadow: 0 0 0 4px #ddeafd;
}
.land_theme .ama-form .input__container > input:focus::placeholder,
.land_theme .ama-form .input__container .promo_code > input:focus::placeholder {
    opacity: 1;
    transition: .1s .3s ease-in-out;
}
.land_theme .ama-form .input__container > input:hover,
.land_theme .ama-form .input__container .promo_code > input:hover {
    background-color: #f6f7f8;
}
.land_theme .ama-form .input__container.focus > input:hover,
.land_theme .ama-form .input__container.focus .promo_code > input:hover {
    box-shadow: 0 0 0 4px #ddeafd;
    background-color: #fff;
}
.land_theme .ama-form .input__container.invalid:not(.focus) > input,
.land_theme .ama-form .input__container.invalid:not(.focus) .promo_code > input,
.land_theme .ama-form .input__container.invalid:not(.focus) textarea {
    border-radius: 8px;
    border: 1px solid #e37d8e;
    background-color: #fff7f8;
}
.land_theme .ama-form .input__container:not(.focus, .input__container--label).invalid > label {
    color: #d74860;
}
.land_theme .ama-form .input__container:not(.input__container--label).focus > label,
.land_theme .ama-form .input__container:not(.input__container--label).filled > label {
    top: 4px;
    font-size: 12px;
    transform: translateY(0);
}
.land_theme .ama-form .input__container-tooltip {
    margin: 8px 0 0;
    padding: 0 4px;
    color: #a0b0c0;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}
.land_theme .ama-form .iti--allow-dropdown input.iti__tel-input {
    width: 100%;
    max-width: calc(100% - 116px);
    height: 48px;
    padding: 12px !important;
    margin-inline-start: auto !important;
    border-radius: 8px;
    border: 1px solid #d4dbe2;
    background-color: #fff;
    color: #030d17;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .input__container.invalid input.iti__tel-input {
    border-radius: 8px;
    border: 1px solid #e37d8e;
    background-color: #fff7f8;
}
.land_theme .ama-form .iti--allow-dropdown input.iti__tel-input:focus {
    border-color: #ddeafd;
    box-shadow: 0 0 0 4px #ddeafd;
}
.land_theme .ama-form .iti--allow-dropdown input.iti__tel-input:hover {
    background-color: #f6f7f8;
}
.land_theme .ama-form .iti--allow-dropdown input.iti__tel-input::placeholder {
    color: #8599ad;
}
.land_theme .ama-form .iti--inline-dropdown .iti__dropdown-content {
    top: calc(100% + 12px);
    left: auto;
    right: auto;
    margin: 0;
    padding-top: 12px;
    width: 100% !important;
    border-radius: 8px;
    border: 1px solid #f6f7f8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05), 0px 8px 32px 6px rgba(0, 0, 0, 0.10);
}
.land_theme .ama-form .iti--flexible-dropdown-width .iti__country-list {
    white-space: initial;
}
.land_theme .ama-form .iti__dial-code {
    color: #8599ad;
    font-size: 14px;
    line-height: 1.14;
    font-weight: 500;
    text-transform: uppercase;
}
.land_theme .ama-form .iti__country {
    border-radius: 8px;
    padding: 12px;
    border: 1px solid transparent;
}
.land_theme .ama-form .iti__country.iti__highlight {
    border-color: #e7f0fe;
    background-color: #f0f6ff;
}
.land_theme .ama-form .iti__country-name {
    color: #030d17;
}
.land_theme .ama-form .iti__country-list {
    margin-top: 8px;
    padding: 0 8px;
}
.land_theme .ama-form .iti__country-container {
    width: 100%;
    padding: 0;
}
.land_theme .ama-form .iti__selected-country {
    width: 108px;
    height: 48px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #d4dbe2;
    background-color: #fff;
    color: #030d17;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .iti__selected-country[aria-expanded="true"] {
    border-color: #ddeafd;
    box-shadow: 0 0 0 4px #ddeafd;
}
.land_theme .ama-form .iti__selected-country:hover {
    background-color: #f6f7f8;
}
.land_theme .ama-form .iti__selected-country-primary {
    padding: 0;
    margin: 0;
    background: transparent !important;
}
.land_theme .ama-form .iti__dropdown-content .iti__search-input {
    width: calc(100% - 16px);
    height: 48px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #d4dbe2;
    background-color: #fff;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .iti__dropdown-content .iti__search-input::placeholder {
    color: #8599ad;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}
.land_theme .ama-form .iti__dropdown-content .iti__search-input:focus {
    outline: none;
}
.land_theme .ama-form .iti__selected-dial-code {
    margin-inline-start: 0;
    margin-inline-end: 0;
}
.land_theme .ama-form .iti__arrow {
    width: 14px;
    height: 14px;
    margin: 0 4px;
    padding: 0;
    border: 0;
    background-image: url(../image/select-icon-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .iti__arrow.iti__arrow--up {
    transform: rotate(180deg);
}
.land_theme .ama-form .error-message {
    padding-inline-start: 8px;
    color: #d74860;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}
.land_theme .ama-form .select2-container {
    display: block;
    width: 100%;
}
.land_theme .ama-form .select2-selection {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #d4dbe2;
    background-color: #fff;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .select2-container--focus .select2-selection {
    border: 1px solid #d4dbe2;
}
.land_theme .ama-form .select2-selection:hover {
    background-color: #f6f7f8;
}
.land_theme .ama-form .select2-selection .select2-selection__rendered {
    min-height: 48px;
    width: 100%;
    margin: 0;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-inline-start: 12px;
    padding-inline-end: 36px;
    border: 0;
    background-color: transparent;
    border: 0;
    border-radius: 8px;
    color: #030d17;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}
.land_theme .ama-form .select2-dropdown {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #f6f7f8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05), 0px 8px 32px 6px rgba(0, 0, 0, 0.10);
    background-color: #fff;
    overflow: hidden;
}
.land_theme .ama-form .select2-dropdown.select2-dropdown--above {
    top: -12px;
}
.land_theme .ama-form .select2-dropdown.select2-dropdown--below {
    top: 12px;
}
.land_theme .ama-form .select2-dropdown .select2-results__option {
    position: relative;
    border-radius: 8px;
    padding: 12px;
    padding-inline-end: 30px;
    color: #030d17;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    border: 1px solid transparent;
}
.land_theme .ama-form .select2-dropdown .select2-results__option:not(:last-child) {
    margin-bottom: 4px;
}
.land_theme .ama-form .select2-dropdown .select2-results__option.select2-results__option--highlighted {
    border-color: #e7f0fe;
    background-color: #f0f6ff;
}
.land_theme .ama-form .select2-dropdown .select2-results__option.select2-results__option--selected {
    border-color: #e7f0fe;
    background-color: #f0f6ff;
}
.land_theme .ama-form .select2-dropdown .select2-results__option.select2-results__option--selected:before {
    content: '';
    position: absolute;
    top: 50%;
    inset-inline-end: 8px;
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../image/select-icon-check.svg);
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
}
.land_theme .ama-form .input__container.valid .select2.select2-container .select2-selection__rendered {
    border: 0;
    background-color: transparent;
}
.land_theme .ama-form .select2-container--default .select2-results__option--disabled {
    color: #d4dbe2;
}
.land_theme .ama-form .select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-inline-start: 0;
    margin-inline-end: 4px;
    margin-top: 4px;
    margin-bottom: 0;
    padding: 0;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    vertical-align: middle;
}
.land_theme .ama-form .select2-container--default .select2-selection--multiple .select2-selection__choice:first-child {
    margin-top: 0;
}
.land_theme .ama-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    width: 20px;
    height: 20px;
    padding: 0;
    margin: 0;
    background-image: url(../image/select-icon-close.svg);
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 1px solid transparent;
    font-size: 0;
}
.land_theme .ama-form .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: transparent;
    border-color: #d4dbe2;
}
.land_theme .ama-form .input__container:not(.focus).invalid .select2-selection {
    border-color: #d74860;
    background-color: #fff7f8;
}
.land_theme .ama-form .input__container.invalid .select2.select2-container .select2-selection__rendered {
    border: 0;
    background-color: transparent;
}
.land_theme .ama-form .input__container.invalid:not(.focus) .custom__placeholder,
.land_theme .ama-form .input__container.invalid:not(.focus) .select2.select2-container .select2-selection__rendered {
    color: #d74860;
}
.land_theme .ama-form .select2-container--open .select2-selection {
    border-radius: 8px !important;
    border-color: #ddeafd;
    box-shadow: 0 0 0 4px #ddeafd;
    background-color: #fff;
}
.land_theme .ama-form .select2-selection .select2-selection__arrow {
    top: 50%;
    inset-inline-end: 12px;
    width: 20px;
    height: 20px;
    background-image: url(../image/select-icon-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    transition: .3s ease-in-out;
}
.land_theme .ama-form .select2-container--open .select2-selection .select2-selection__arrow,
.land_theme .ama-form .select2-container--open .select2-selection.select2-selection--multiple:before {
    transform: translateY(-50%) rotate(180deg);
}
.land_theme .ama-form .select2-selection.select2-selection--multiple:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    inset-inline-end: 12px;
    width: 20px;
    height: 20px;
    border: 0;
    background-image: url(../image/select-icon-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    transition: .3s ease-in-out;
}
.land_theme .ama-form .select2-selection .select2-selection__arrow b {
    display: none !important;
}
.land_theme .ama-form .promo_code-title {
    border-bottom: 1px solid #68a4f7;
    color: #68A4F7;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration-line: none;
}
.land_theme .ama-form .checkbox__label {
    color: #8599ad;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.3;
}
.land_theme .ama-form .ama-form__checkbox {
    margin-bottom: 20px;
}
.land_theme .ama-form .checkbox__label span {
    position: relative;
    padding-inline-start: 32px;
}
.land_theme .ama-form .checkbox__label span:before {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    top: 0;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    border: 1px solid #e3e8ed;
    background-color: #e7ebef;
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .checkbox__input:checked + .checkbox__label span:before {
    border-color: #f06e2d;
    background-color: #eb7e47;
    background-image: url(../image/select-icon-checkbox-check.svg);
}
.land_theme .ama-form .checkbox__label svg {
    display: none;
}
.land_theme .ama-form .input__container:not(.input__container--select) textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d4dbe2;
    background-color: #fff;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    color: #030d17;
    caret-color: #030d17;
}
.land_theme .ama-form .input__container:not(.input__container--select) textarea:focus {
    border-color: #ddeafd;
    box-shadow: 0 0 0 4px #ddeafd;
}
.land_theme .ama-form .input__container:not(.input__container--select) textarea::placeholder {
    color: #8599ad;
    font-size: 14px;
}
.land_theme .ama-form .select2-search.select2-search--inline {
    display: none !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    white-space: initial;
}
.land_theme .ama-form .custom__placeholder {
    height: 48px;
    padding-inline-start: 12px;
    padding-inline-end: 36px;
}
.land_theme .ama-form .ama-form__btn {
    position: relative;
    min-height: 0;
    height: auto;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #df5916;
    background-color: #f06e2d;
    box-shadow: 0px 4px 4px 0px rgba(240, 110, 45, 0.20);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
}
.land_theme .ama-form .ama-form__btn:after {
    content: '';
    width: 16px;
    height: 16px;
    margin-inline-start: 8px;
    background-image: url(../image/btn-icon-arrow-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .ama-form__btn:hover {
    border-color: #c85014;
    background-color: #df5916;
}
.land_theme .ama-form .bonus__message span {
    padding: 0;
}
.land_theme .ama-form .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    padding-inline-start: 4px !important;
}

/* partner */
.land_theme .ama-form .input__container.input__container--country .country-select > input {
    width: 100%;
    max-width: 250px;
    height: 48px;
    padding: 12px !important;
    margin-inline-start: auto;
    border-radius: 8px;
    border: 1px solid #d4dbe2;
    background-color: #fff;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .input__container.input__container--country .country-select > input:hover {
    background-color: #f6f7f8;
}
.land_theme .ama-form .input__container.input__container--country .country-select .flag-dropdown {
    width: 100%;
}
.land_theme .ama-form .input__container.input__container--country .country-select .flag-dropdown .selected-flag {
    padding: 0;
    width: 55px;
    height: 48px;
    border-radius: 8px;
    border: 1px solid #d4dbe2;
    padding-left: 8px;
    background-color: #fff;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .input__container.input__container--country .country-select .flag-dropdown .selected-flag:hover {
    background-color: #f6f7f8;
}
.land_theme .ama-form .country-select .country-list {
    top: calc(100% + 12px);
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #f6f7f8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.05), 0px 8px 32px 6px rgba(0, 0, 0, 0.10);
    background-color: #fff;
    white-space: initial;
}
.land_theme .ama-form .country-select .country-list .country {
    border-radius: 8px;
    padding: 12px;
    padding-inline-end: 30px;
    color: #030d17;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    border: 1px solid transparent;
}
.land_theme .ama-form .country-select .country-list .country:not(:last-child) {
    margin-bottom: 4px;
}
.land_theme .ama-form .country-select .country-list .country.highlight {
    border-color: #e7f0fe;
    background-color: #f0f6ff;
}
.land_theme .ama-form .country-select .country-list .country.active {
    border-color: #e7f0fe;
    background-color: #f0f6ff;
    background-image: url(../image/select-icon-check.svg);
    background-position: right 8px center;
    background-repeat: no-repeat;
}
.land_theme .ama-form .country-select .selected-flag .arrow {
    width: 14px;
    height: 14px;
    margin: 0;
    padding: 0;
    border: 0;
    background-image: url(../image/select-icon-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
    transition: .3s ease-in-out;
}
.land_theme .ama-form .country-select .selected-flag .arrow.up {
    transform: translateY(-50%) rotate(180deg);
}
.land_theme .ama-form .input__container-switch .switch__row {
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: flex-start;
}
.land_theme .ama-form .label-platform {
    width: calc(100% - 32px);
    margin: 0;
    padding: 0;
    padding-inline-start: 8px;
    color: #030d17;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
.land_theme .ama-form .input__tooltip {
    display: none;
}
.land_theme .ama-form .input__container-switch .switch-label {
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    border-radius: 4px;
    border: 1px solid #e3e8ed;
    background-color: #e7ebef;
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s ease-in-out;
}
.land_theme .ama-form .input__container-switch .switch-label:after {
    display: none;
}
.input__container-switch .switch-input:checked + .switch-label {
    border-color: #f06e2d;
    background-image: url(../image/select-icon-checkbox-check.svg);
    background-color: #eb7e47;
}
.land_theme .ama-form input:-webkit-autofill,
.land_theme .ama-form input:-webkit-autofill:hover,
.land_theme .ama-form input:-webkit-autofill:focus,
.land_theme .ama-form input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #030d17;
    box-shadow: inset 0 0 0 30px #fff !important;
}

/* rtl new */
.land_theme .ama-form.ama-form--rtl .select2-selection .select2-selection__rendered,
.land_theme .ama-form.ama-form--rtl .input__container.input__container--label .label,
.land_theme .ama-form.ama-form--rtl .input__container.input__container--label > label,
.land_theme .ama-form.ama-form--rtl .input__container .promo_code > label,
.land_theme .ama-form.ama-form--rtl .input__container-tooltip,
.land_theme .ama-form.ama-form--rtl .ama-form__btn {
    line-height: normal;
}
.land_theme .ama-form.ama-form--rtl .ama-form__btn:after {
    transform: rotate(180deg);
}

/* dark new */
.land_theme.ama-form--dark .success-alert-wrap .alert__body {
    background-color: #202020 !important;
    color: #fff;
}
.land_theme.ama-form--dark .success-alert-wrap .alert__close {
    -webkit-filter: invert(100%);
    filter: invert(100%);
}
.land_theme .ama-form.ama-form--dark .input__container.disabled > input,
.land_theme .ama-form.ama-form--dark .input__container.disabled .promo_code > input,
.land_theme .ama-form.ama-form--dark .input__container.disabled .iti__selected-country,
.land_theme .ama-form.ama-form--dark .input__container.disabled .iti--allow-dropdown input.iti__tel-input,
.land_theme .ama-form.ama-form--dark .input__container.disabled .select2-container--disabled .select2-selection {
    border-color: #3f4a54 !important;
    background-color: #202020 !important;
}
.land_theme .ama-form.ama-form--dark .input__container > input,
.land_theme .ama-form.ama-form--dark .input__container > textarea,
.land_theme .ama-form.ama-form--dark .iti--allow-dropdown input.iti__tel-input,
.land_theme .ama-form.ama-form--dark .input__container:not(.input__container--select) textarea {
    caret-color: #fff;
    color: #fff;
}
.land_theme.ama-form--dark .success-alert-wrap .credentials__line,
.land_theme .ama-form.ama-form--dark .input__container > input,
.land_theme .ama-form.ama-form--dark .input__container:not(.input__container--select) textarea,
.land_theme .ama-form.ama-form--dark .input__container .promo_code > input,
.land_theme .ama-form.ama-form--dark .input__container.input__container--country .country-select > input,
.land_theme .ama-form.ama-form--dark .input__container.input__container--country .country-select .flag-dropdown .selected-flag,
.land_theme .ama-form.ama-form--dark .country-select .country-list {
    border: 1px solid #3f4a54;
    background-color: #202020;
}
.land_theme .ama-form.ama-form--dark .input__container > input::placeholder,
.land_theme .ama-form.ama-form--dark .input__container:not(.input__container--select) textarea::placeholder,
.land_theme .ama-form.ama-form--dark .input__container .promo_code > input::placeholder {
    color: #555f68;
}
.land_theme .ama-form.ama-form--dark .input__container > input:hover,
.land_theme .ama-form.ama-form--dark .input__container .promo_code > input:hover {
    background-color: #000;
}
.land_theme .ama-form.ama-form--dark .input__container > input:focus,
.land_theme .ama-form.ama-form--dark .input__container .promo_code > input:focus,
.land_theme .ama-form.ama-form--dark .iti--allow-dropdown input.iti__tel-input:focus,
.land_theme .ama-form.ama-form--dark .input__container:not(.input__container--select) textarea:focus {
    box-shadow: 0 0 0 4px #3f4a54;
}
.land_theme .ama-form.ama-form--dark .iti__selected-country {
    color: #fff;
}
.land_theme .ama-form.ama-form--dark .iti__selected-country[aria-expanded="true"] {
    box-shadow: 0 0 0 4px #3f4a54;
}
.land_theme .ama-form.ama-form--dark .input__container.invalid input,
.land_theme .ama-form.ama-form--dark .input__container.invalid textarea,
.land_theme .ama-form.ama-form--dark .input__container input[form-valid='false']:not(.form__phone),
.land_theme .ama-form.ama-form--dark .input__container.invalid .select,
.land_theme .ama-form.ama-form--dark .input__container.invalid .select2.select2-container .select2-selection {
    border-color: #3f4a54;
}
.land_theme .ama-form.ama-form--dark .select2-selection .select2-selection__rendered {
    border: 0;
    background-color: transparent;
}
.land_theme .ama-form.ama-form--dark .input__container.invalid:not(.focus) > input,
.land_theme .ama-form.ama-form--dark .input__container.invalid:not(.focus) .promo_code > input,
.land_theme .ama-form.ama-form--dark .input__container.invalid:not(.focus) textarea,
.land_theme .ama-form.ama-form--dark .input__container:not(.focus).invalid .select2.select2-container .select2-selection {
    border-color: #d40d2e;
    background-color: rgba(212, 13, 46, 0.08);
}
.land_theme .ama-form.ama-form--dark .input__container.invalid input.iti__tel-input {
    border-color: #d40d2e;
    background-color: rgba(212, 13, 46, 0.08);
}
.land_theme .ama-form.ama-form--dark .input__container > label {
    color: #555f68;
}
.land_theme .ama-form.ama-form--dark .input__container:not(.focus, .input__container--label).invalid > label,
.land_theme .ama-form.ama-form--dark .input__container:not(.focus).invalid .custom__placeholder,
.land_theme .ama-form.ama-form--dark .input__container:not(.focus).invalid textarea::placeholder {
    color: #d40d2e;
}
.land_theme .ama-form.ama-form--dark .iti--allow-dropdown input.iti__tel-input {
    border: 1px solid #3f4a54;
    background-color: #202020;
}
.land_theme .ama-form.ama-form--dark .iti--allow-dropdown input.iti__tel-input:hover {
    background-color: #000;
}
.land_theme .ama-form.ama-form--dark .iti--allow-dropdown input.iti__tel-input::placeholder {
    color: #555f68;
}
.land_theme .ama-form.ama-form--dark .iti__selected-country {
    border: 1px solid #3f4a54;
    background-color: #202020;
}
.land_theme .ama-form.ama-form--dark .iti__selected-country:hover {
    background-color: #000;
}
.land_theme .ama-form.ama-form--dark .iti__selected-dial-code {
    color: #fff;
}
.land_theme .ama-form.ama-form--dark .iti--inline-dropdown .iti__dropdown-content {
    border: 1px solid #3f4a54;
    background-color: #202020;
}
.land_theme .ama-form.ama-form--dark .iti__dropdown-content .iti__search-input {
    border: 1px solid #3f4a54;
    background-color: #202020;
}
.land_theme .ama-form.ama-form--dark .iti__dropdown-content .iti__search-input:hover {
    background-color: #000;
}
.land_theme .ama-form.ama-form--dark .iti__dropdown-content .iti__search-input::placeholder {
    color: #555f68;
}
.land_theme .ama-form.ama-form--dark .iti__country.iti__highlight {
    border-color: rgba(35, 122, 243, 0.08);
    background-color: rgba(35, 122, 243, 0.08);
}
.land_theme .ama-form.ama-form--dark .iti__country-name {
    color: #fff;
}
.land_theme .ama-form.ama-form--dark .select2-selection {
    border: 1px solid #3f4a54;
    background-color: #202020;
}
.land_theme .ama-form.ama-form--dark .select2-selection:hover {
    background-color: #000;
}
.land_theme .ama-form.ama-form--dark .select2-selection .select2-selection__rendered {
    color: #fff;
}
.land_theme .ama-form.ama-form--dark .input__container.input__container--label > label {
    color: #fff;
}
.land_theme .ama-form.ama-form--dark .checkbox__label span {
    color: #bbbfc3;
}
.land_theme .ama-form.ama-form--dark .promo_code-title {
    color: #0b60d6;
    border-color: #0b60d6;
}
.land_theme .ama-form.ama-form--dark .checkbox__label span:before,
.land_theme .ama-form.ama-form--dark .input__container-switch .switch-label {
    background-color: #202020;
    border-color: #3f4a54;
}
.land_theme .ama-form.ama-form--dark .input__container-switch .switch-input:checked + .switch-label {
    border-color: #f06e2d;
    background-color: #eb7e47;
    background-image: url(../image/select-icon-checkbox-check.svg);
}
.land_theme .ama-form.ama-form--dark .error-message {
    color: #d40d2e;
}
.land_theme .ama-form.ama-form--dark .select2-container--open .select2-selection {
    box-shadow: 0 0 0 4px #3f4a54;
}
.land_theme .ama-form.ama-form--dark .select2-dropdown {
    border: 1px solid #3f4a54;
    background-color: #202020;
}
.land_theme .ama-form.ama-form--dark .select2-dropdown .select2-results__option,
.land_theme .ama-form.ama-form--dark .country-select .country-list .country {
    color: #fff;
}
.land_theme .ama-form.ama-form--dark .select2-dropdown .select2-results__option.select2-results__option--selected,
.land_theme .ama-form.ama-form--dark .select2-dropdown .select2-results__option.select2-results__option--highlighted,
.land_theme .ama-form.ama-form--dark .country-select .country-list .country.active,
.land_theme .ama-form.ama-form--dark .country-select .country-list .country.highlight {
    border-color: rgba(35, 122, 243, 0.08);
    background-color: rgba(35, 122, 243, 0.08);
}
.land_theme .ama-form.ama-form--dark .select2-container--default .select2-results__option--disabled {
    color: #3f4a54;
}
.land_theme .ama-form.ama-form--dark .input__container-tooltip {
    color: #555f68;
}
.land_theme .ama-form.ama-form--dark .label-platform {
    color: #fff;
}
.land_theme .ama-form.ama-form--dark .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
}
.land_theme .partners-registration--dark .type__box {
    border: 1px solid #3f4a54;
    background-color: #202020;
}
.land_theme .ama-form.ama-form--dark input:-webkit-autofill,
.land_theme .ama-form.ama-form--dark input:-webkit-autofill:hover,
.land_theme .ama-form.ama-form--dark input:-webkit-autofill:focus,
.land_theme .ama-form.ama-form--dark input:-webkit-autofill:active {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff;
    caret-color: #fff;
    box-shadow: inset 0 0 0 30px #202020 !important;
}

/* style for front-page */
.ama-form--frontpage {
    margin-top: 0;
}
.ama-form--frontpage .input__container {
    margin-bottom: 15px;
}
.ama-form--frontpage .iti__selected-dial-code {
    color: initial;
}
.ama-form--frontpage .error-message__response {
    padding: 0.5rem;
}
.ama-form--frontpage .ama-form__checkbox {
    margin-bottom: 20px;
}
.ama-form--frontpage .input__container input:not(:focus) ~ .error-message,
.ama-form--frontpage .input__container input[form-valid='true'] ~ .error-message {
    display: none !important;
}

/* Dark mode styles */
.ama-form--dark .input__container label,
.ama-form--dark .label-platform {
    color: #fff;
    opacity: 1;
}
.ama-form--dark .input__container input,
.ama-form--dark .input__container textarea,
.ama-form--dark .select-common,
.ama-form--dark .select-platform {
    background-color: #353b42;
    border: 1px solid #353b42;
    color: #fff;
}
.ama-form--dark input:-webkit-autofill,
.ama-form--dark input:-webkit-autofill:hover,
.ama-form--dark input:-webkit-autofill:focus,
.ama-form--dark input:-webkit-autofill:active{
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: #fff;
    transition: background-color 5000s ease-in-out 0s;
    box-shadow: inset 0 0 20px 20px #353b42 !important;
}
.ama-form--dark .iti--show-selected-dial-code .iti__selected-flag {
    background-color: #353b42;
    border-right: 1px solid #3a4046;
}
.ama-form--dark .iti--show-selected-dial-code .iti__selected-dial-code {
    color: #fff;
}
.ama-form--dark .promo_code-title {
    color: #fb7101;
}
.ama-form--dark .promo_code-title:hover {
    border-bottom: 1px dashed #fb7101;
}
.ama-form--dark .iti__dropdown-content {
    background-color: #353b42;
    color: #fff;
    border: 1px solid #353b42;
}
.ama-form--dark .iti__dropdown-content .iti__search-input {
    background-color: #32383f;
    border-top: 1px solid #757575;
    border-bottom: 1px solid #757575;
}
.ama-form--dark .custom__placeholder {
    color: #fff;
}
.ama-form--dark .input__container [form-valid='true'],
.ama-form--dark .input__container.valid input,
.ama-form--dark .input__container input.valid,
.ama-form--dark .input__container.valid .select,
.ama-form--dark .input__container.valid .select2.select2-container .select2-selection__rendered {
    border: 1px solid var(--valid-border-color);
}
.ama-form--dark .input__container.invalid input,
.ama-form--dark .input__container.invalid textarea,
.ama-form--dark .input__container input[form-valid='false']:not(.form__phone),
.ama-form--dark .input__container.invalid .select,
.ama-form--dark .input__container.invalid .select2.select2-container .select2-selection__rendered {
    border: 1px solid var(--error-border-color);
}

/* media */
@media (max-width: 768px) {
    :root {
        --font-size: 14px;
        --error-font-size: 12px;
    }
    .input__container input {
        height: 45px;
    }
    .ama-form__btn {
        min-height: 50px;
        line-height: 50px;
        font-size: 18px;
    }
    .checkbox__label span {
        padding-left: 10px;
        -webkit-padding-start: 10px;
        padding-inline-start: 10px;
    }
    .ama-form--rtl .checkbox__label span {
        padding-right: 10px;
    }
    .ama-form--site {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 576px) {
    .iti-mobile .iti--container {
        width: auto;
    }
    .ama-form .country-list {
        width: auto;
        position: fixed;
        left: 30px;
        top: 30px;
        bottom: 30px;
        right: 30px;
        z-index: 1060;
        max-height: none;
    }
    .land_theme .ama-form .country-select .country-list {
        position: absolute;
        top: calc(100% + 12px);
        left: auto;
        right: auto;
        bottom: auto;
        max-height: 200px;
    }
    body.ama-form--dark .iti__country-list {
        background-color: #353b42;
        border-color: #353b42;
    }
}
@media (max-width: 360px) {
    .success-alert-wrap .alert__body {
        padding: 30px 20px;
    }
    .bonus__message span {
        padding-left: 15px;
    }
    .ama-form--rtl .bonus__message span {
        padding-right: 15px;
    }
    .land_theme .ama-form .input__container.input__container--country .country-select > input {
        max-width: 235px;
    }
}
