@keyframes rf-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rf-flip {
    0% {
        transform: perspective(400px) rotateY(-1turn);
    }
    0%,
    40% {
        animation-timing-function: ease-out;
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    }
    50%,
    80% {
        animation-timing-function: ease-in;
    }
    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    }
    to {
        transform: perspective(400px);
        animation-timing-function: ease-in;
    }
}

.rf-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    display: flex;
    justify-content: center;
}

.rf-container__inner {
    box-sizing: border-box;
    max-width: 460px;
    width: 500px;
}

.rf-form {
    border-radius: 10px;
    box-shadow: #ffffff 0 0 0 0, rgba(15, 23, 42, 0.05) 0 0 0 1px, rgba(0, 0, 0, 0.1) 0 20px 25px -5px, rgba(0, 0, 0, 0.1) 0 8px 10px -6px;
}

.rf-form__header {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    box-sizing: border-box;
    padding: 24px 16px;
    text-align: center;
    color: #fff;
    border-top-right-radius: inherit;
    border-top-left-radius: inherit;
    background: #7ed321;
}

.rf-form__content {
    position: relative;
    box-sizing: border-box;
    padding: 20px 16px;
    border-radius: inherit;
}

.rf-form__loader {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.8);
}

.rf-form__loader::before {
    content: '';
    display: block;
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    border-radius: 50%;
    border: 5px solid #fff;
    border-top-color: rgb(255, 255, 255);
    border-right-color: rgb(255, 255, 255);
    border-bottom-color: rgb(255, 255, 255);
    border-left-color: rgb(255, 255, 255);
    border-color: currentColor transparent currentColor transparent;
    animation: rf-spin 1.2s linear infinite;
}

.rf-form-field {
    width: 100%;
}

.rf-form-field__error {
    line-height: 1.25;
    display: none;
    width: 100%;
    margin-top: 8px;
    color: #ef4444;
}

.iti {
    width: 100%;
}

.iti__flag-container {
    padding: 0;
}

.iti--separate-dial-code .iti__selected-flag {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.rf-form-input {
    font-size: 14px;
    line-height: 24px;
    box-sizing: border-box;
    width: 100%;
    padding: 8px 12px;
    color: #0f172a;
    border: 0 solid #e5e7eb;
    border-radius: 6px;
    box-shadow: #fff 0 0 0 0, #e2e8f0 0 0 0 1px, rgba(0, 0, 0, 0.05) 0 1px 2px 0;
    background-color: #fff;
    appearance: none;
}

.rf-form-input:focus {
    box-shadow: #fff 0 0 0 0, #3b82f6 0 0 0 2px, rgba(0, 0, 0, 0.05) 0 1px 2px 0;
}

.rf-form-button {
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    border: 0 solid #e5e7eb;
    border-radius: 8px;
    background: #7ed321;
}

.rf-form-button:focus {
    outline: none;
    box-shadow: #fff 0 0 0 0, rgb(147, 197, 253) 0 0 0 3px, rgba(0, 0, 0, 0) 0 0 0 0;
}

.rf-alert {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    padding: 8px;
    border-radius: 8px;
}

.rf-alert_error {
    color: #b91c1c;
    background: #fee2e2;
}

.rf-alert_success {
    color: #15803d;
    background: #dcfce7;
}

.rf-alert__icon {
    opacity: 0.65;
}

.rf-alert__content {
    font-size: 14px;
    line-height: 20px;
    padding-left: 12px;
}

.rf-alert__content * {
    font-family: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}

.rf-alert__content>* {
    margin: 0 !important;
    padding: 0 !important;
}

.rf-alert__content>*+* {
    margin-top: 0.35em !important;
}

.rf-alert__content>h1,
.rf-alert__content>h2,
.rf-alert__content>h3,
.rf-alert__content>h4,
.rf-alert__content>h5,
.rf-alert__content>h6 {
    font-size: 100% !important;
    font-weight: 600 !important;
}

.rf-alert__content>ul,
.rf-alert__content>ol {
    padding-left: 1.5em !important;
}

.rf-form__content>*+* {
    margin-top: 16px;
}

.rf-form__content> :last-child {
    margin-top: 20px;
}

.rf-logos {
    display: flex;
    flex-wrap: wrap;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.rf-logos>* {
    flex: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    max-width: 33.3%;
    padding: 8px;
}

.rf-logo {
    height: auto;
    max-width: 100%;
}

.rf-bid,
.rf-ask {
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: flex-start;
    white-space: nowrap;
}

.rf-bid>small,
.rf-ask>small {
    font-size: 12px;
    padding-right: 4px;
}

.rf-bid>span,
.rf-ask>span {
    transform: rotate3d(0, 1, 0, 0deg);
    animation: rf-flip 10s cubic-bezier(1, 0, 0, 1) 0s infinite;
}

.rf-bid {
    color: #84cc16;
}

.rf-bid>small {
    color: #f59e0b;
}

.rf-ask {
    color: #6b7280;
}

.rf-ask>small {
    color: #9ca3af;
}

.protect {
    width: 100%;
    position: absolute;
    top: 2px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.protect__item {
    font-size: 12px;
    line-height: 10px;
    color: var(--Black, #000);
    opacity: 0.8;
}

.protect__item a {
    color: inherit;
    text-decoration: none;
}

form {
    position: relative;
}

.preloader {
    display: none;
    background: white;
    position: absolute;
    top: 0%;
    bottom: 0;
    left: 0%;
    right: 0;
    z-index: 9995;
    background-image: url(../images/preloader.gif);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.5;
}

.rf-form-field {
    position: relative;
}

.rf-form-input.error {
    border: 1px solid #FF2633;
    box-shadow: #FF2633 0 0 0 0, #FF2633 0 0 0 1px, rgba(0, 0, 0, 0.05) 0 1px 2px
}

label.error {
    position: absolute;
    z-index: 2;
    top: calc(100% - 4px);
    left: 4px;
    width: 100%;
    background: #FF2633;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 900;
    font-size: 14px;
    line-height: 18px;
    color: #FFF;
    padding: 7px 12px;
}

label.error::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 15px;
    height: 15px;
    background: #FF2633;
    border-radius: 2px;
    transform: translateZ(-1px) rotate(45deg);
    top: -6px;
    left: 10px;
    transform-style: preserve-3d;
}

.rf-form-input.valid {
    border: 1px solid #008d2f;
    box-shadow: #008d2f 0 0 0 0, #008d2f 0 0 0 1px, rgba(0, 0, 0, 0.05) 0 1px 2px
}

input[type="tel"] {
    padding-left: 110px !important;
}

.intl-tel-input .country-list .country-name {
    color: #000000 !important;
}

.checkbox-svg {
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

.checked-svg svg {
    background: #FFFFFF !important;
    border-radius: 2px !important;
    border: 2px solid #000000 !important;
}

#cbx:checked+.checked-svg svg {
    stroke: #000 !important;
}

.privacy-checkbox {
    padding-left: 10px !important;
    font-size: 12px !important;
    line-height: 15px !important;
    color: #fff !important;
}

.privacy-checkbox a {
    color: inherit;
    text-decoration: underline;
}

.footer-terms {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    column-gap: 15px;
    list-style: none;
    padding: 0 !important;
    margin-bottom: 25px;
}

.footer-terms__link {
    color: #000;
}

@media (max-width: 560px) {
    .footer-terms {
        flex-direction: column;
        justify-content: center;
        row-gap: 6px;
    }
}