html,
body {
    margin: 0;
    padding: 0;
    overscroll-behavior: none;
    touch-action: none;
    display: block;
    height: 100%;
    min-height: 100%;
    min-height: -webkit-fill-available;
}
@media (min-width: 992px) {
    html, body {
        height: auto;
    }
}
body {
    background: var(--green-200);
    color: var(--gray-950);
    font-size: 15px;
    line-height: 20px;
    font-family: var(--font-main);
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    transform-origin: center center;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}
#main {
    width: 100%;
    max-width: 1000px;
    display: none;
    position: relative;
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}
body:not(.body_registration_enter_phone) #main,
body:not(.body_registration_enter_sms_code) #main {
    min-height: 100%;
}
body.body_auto_height #main {
    height: calc(var(--vh, 1vh) * 100);
}
body.make_security_code #main {
    overflow: hidden;
}
#main {
    margin: 0 auto;
}
#main.visible {
    display: flex;
}
.main_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    transition: all 1s ease;
    opacity: 0;
    visibility: hidden;
}
.main_overlay.visible {
    opacity: 1;
    visibility: visible;
    background: rgba(10, 10, 10, 0.48);
    backdrop-filter: blur(5px);
    z-index: 2;
}
.content {
    padding: 70px 20px 32px;
    position: relative; /* android ok */
    width: 100%;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.page_with_footer .content {
    padding-bottom: 90px;
}
body.body_auto_height .content {
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
}
.content_flex {
    display: flex;
    flex-shrink: 0;
}
.content.content_transition {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}
.content_left_position {
    transform: translateX(-100%);
}
.content_flex_columns {
    flex-direction: column;
}
.content_flex_columns_fullpage {
    justify-content: space-between;
}
.content_bg_success_with_icon {
    background-image: url('/images/green_bg_light_logo_bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 100%;
    z-index: -1;
    -webkit-transition: all 7s ease;
    -moz-transition: all 7s ease;
    -o-transition: all 7s ease;
    transition: all 7s ease;
    opacity: 1;
}
.content_left_position .content_bg_success_with_icon {
    opacity: 0;
}
.all_pages_main_top {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: -47px 0 0;
}
.all_pages_main_title {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: var(--gray-950);
}
.blue_info {
    border: 1px solid var(--blue-500);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 12px 16px;
    background: var(--blue-50);
    margin: 24px 0 0;
}
.blue_info .blue_info_top {
    display: flex;
    gap: 12px;
}
.blue_info .blue_info_title {
    font-weight: 600;
    font-size: 15px;
    line-height: 24px;
    color: var(--gray-950);
    margin-bottom: 5px;
}
.blue_info .blue_info_text {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 5px;
}
.blue_info .blue_info_btn {
    height: 36px;
    margin: 12px 0 0;
    text-transform: none;
}
.blue_info .bg_white {
    color: var(--gray-950);
}
.blue_info .blue_info_btn_wrp {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.blue_info .blue_info_btn_half {
    width: 47%;
    font-size: 12px;
}
@media (max-width: 430px) {
    .blue_info .blue_info_btn_half {
        width: 100%;
    }
}
.success-wrp {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.content_success .footer-info-success {
    background-color: transparent;
    border: none;
    position: relative;
    padding: 0 20px;
}
.content_success .footer-info-success a:first-child {
    margin-bottom: 20px;
}
.footer-info-success a.bg_white {
    color : var(--gray-950);
}
.success-icon {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.content_success h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}
.content_success .success-text {
    font-size: 15px;
    font-weight: 500;
}