@import 'static/fonts.css';
@import 'static/variables.css';
@import 'static/common.css';

body {
    opacity: 1;
    transition: opacity 300ms ease-out 500ms;
}

.fbalance_waiting, .fbalance_loading {
    opacity: 0;
}

.login_buttons_wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
}

a.become_client_button {
    display: none;
    background-color: rgb(var(--color-cancel));
    color: rgb(var(--color-text))
}

a.become_client_button:hover {
    background-color: rgba(var(--color-cancel), 0.5);
}

.fbalance_loading {
    cursor: progress;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hidden {
    display: none;
}

.login {
    min-width: 1100px;
    margin: 0 auto;
    display: flex;
    position: relative;
}

.banner {
    flex-shrink: 0;
    width: 30%;
    min-width: 433px;
    min-height: 514px;
    height: 100vh;
    position: relative;
}

@media all and (max-width: 1200px) {
    .banner {
        max-width: 568px;
    }
}

.banner ul {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 48px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 4;
}

.banner li {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 0.4;
    border-radius: 50%;
    margin: 0 4px;
    transition: opacity var(--transition);
}

.banner li.active {
    opacity: 1;
}

.banner__img {
    opacity: 0;
    position: absolute;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: flex;
    padding-bottom: 72px;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    transition: opacity 500ms ease-out 0s;
    font-size: var(--text-size-x);
    font-weight: 700;
    line-height: 28px;
    color: #fff;
}

.banner__text {
    padding: 0 30px;
    text-align: center;
    white-space: pre-line;
}

.banner__link:hover,
.banner__link {
    display: inline-block;
    margin: 16px auto 0;
    padding: 0 20px;
    color: #3d4047;
    background: #FFFFFF;
    border-radius: 86px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    height: 54px;
    line-height: 54px;
}

.banner__link:hover {
    text-decoration: underline;
}

.banner__img.active {
    opacity: 1;
    z-index: 2;
}

.wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100vh;
    /*max-height: 970px;*/
}

.wrapper__form {
    flex-grow: 1;
}

.header {
    padding: 8px 38px 8px 49px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.logo {
    display: block;
    width: 200px;
    height: 64px;
    background: var(--image-logo);
}

.header__links {
    flex-grow: 1;
    text-align: right;
    position: relative;
}

.header__links-item {
    cursor: pointer;
    color: rgb(var(--color-text));
    text-decoration: none;
    transition: color var(--transition);
    display: inline-flex;
    align-items: center;
    margin-left: 24px;
}

.header__links-item:hover {
    color: rgb(var(--color-custom));
    text-decoration: none;
}

.header__links-item svg {
    vertical-align: middle;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    fill: rgb(var(--color-disabled));
    transition: fill var(--transition);
}

.header__links-item:hover svg {
    fill: rgb(var(--color-custom));
}

#fc-locale-list {
    display: none;
    background: rgb(var(--color-base));
    box-shadow: 2px 6px 24px rgba(68,113,209,.16);
    border-radius: 8px;
    width: auto;
    position: absolute;
    height: auto;
    padding: 24px 0;
    right: 0;
    top: 40px;
}

#fc-locale-list.is-visible {
    display: block;
}

#fc-locale-list li {
    display: block;
    margin: 0;
    padding: 0;
}

#fc-locale-list a {
    margin: 0;
    min-height: 62px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    font-size: var(--text-size-r);
    cursor: pointer;
    width: 100%;
    color: rgb(var(--color-gray));
    transition: background-color var(--transition);
    word-break: break-word;
}

#fc-locale-list li:first-child::before {
    display: none;
}

#fc-locale-list a {
    cursor: pointer;
    color: rgb(var(--color-gray));
    text-decoration: none;
}

#fc-locale-list a:hover {
    background: rgba(243, 245, 251, 0.5);
}

#fc-locale-list a:hover {
    color: rgb(var(--color-custom));
    border-color: rgb(var(--color-custom));
}

.form {
    max-width: 464px;
    margin: 0 auto;
    text-align: center;
}

.title {
    font-size: var(--text-size-xxl);
    font-weight: 600;
    margin-bottom: 17px;
}

.tabs {
    display: none;
    justify-content: space-around;
    border-bottom: 1px solid rgb(var(--color-light));
}

.tabs__item {
    color: rgba(var(--color-text), .5);
    cursor: pointer;
    margin: 0 0 -1px;
    padding: 25px 0 16px 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition)
}

.tabs__item:first-child {
    margin-left: 0;
}

.content {
    padding-top: 40px;
}

[data-register] {
    display: none;
}

.tabs__item:hover {
    color: rgb(var(--color-text));
}

.tabs__item_active {
    color: rgb(var(--color-text));
    border-color: rgb(var(--color-custom));
}

.content__item {
    display: none;
}

.content__item_active {
    display: block;
}

.label {
    color: rgb(var(--color-gray));
    font-size: var(--text-size-s);
    display: block;
    padding-bottom: 8px;
    text-align: left;
}

.input {
    display: block;
    width: 100%;
    height: 56px;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--text-size-r);
    font-weight: 400;
    color: rgb(var(--color-text));
    border: solid 1px rgb(var(--color-light));
    background-color: rgb(var(--color-base));
    line-height: 1.47;
    padding: 16px 17px;
    margin-bottom: 40px;
}

.input_icon {
    padding-left: 56px;
}

.input_toggle {
    padding-right: 56px;
}

.input.invalid,
.input:focus {
    border: 2px solid rgb(var(--color-custom));
    padding: 15px 16px;
}

.input.invalid {
    border-color: rgb(var(--color-error));
}

.input_icon:focus {
    padding-left: 55px;
}

.input_toggle:focus {
    padding-right: 55px;
}

.input-error, .input-error [data-error] {
    display: none;
    color: rgb(var(--color-error));
    font-size: var(--text-size-m);
    text-align: left;
}

.input.invalid + .input-error {
    display: block;
    margin-top: -36px;
    padding-bottom: 20px;
    line-height: 16px;
}

.input.invalid[data-error='required'] + .input-error [data-error='required'],
.input.invalid[data-error='invalid'] + .input-error [data-error='invalid'] {
    display: block;
}

.button {
    display: inline-flex;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    text-align: center;
    min-width: 148px;
    height: 56px;
    padding: 17px 22px;
    position: relative;
    line-height: 1.467;
    border-radius: 86px;
    border: 0;
    color: rgb(var(--color-base));
    background: rgb(var(--color-custom));
    font-size: var(--text-size-r);
    text-decoration: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
}

.button.block {
    width: 100%;
}

.button:hover {
    background: rgba(var(--color-custom), 0.7);
}

.button svg {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.button[disabled] {
    opacity: 0.3;
    cursor: default;
}

.field_agreement, .personalDataAgreement {
    padding: 16px 0;
    display: flex;
}

.field_agreement label, .personalDataAgreement label {
    color: rgb(var(--color-text));
    text-align: left;
}

.field_agreement a, .personalDataAgreement a {
    text-decoration: none;
    border-bottom: 1px solid rgb(var(--color-light));
    color: rgb(var(--color-gray));
    transition:
            color var(--transition),
            border var(--transition);
}

.field_agreement a:hover, .personalDataAgreement a:hover {
    border-bottom-color: rgb(var(--color-custom));
    color: rgb(var(--color-custom));
}

.remember {
    padding: 17px 0;
    margin-bottom: 16px;
    text-align: left;
    display: flex;
}

.remember label {
    flex-grow: 1;
}

.remember span {
    color: rgb(var(--color-gray));
    cursor: pointer;
    transition: color 300ms ease-in-out;
}

.remember span:hover {
    color: rgb(var(--color-custom));
}

.radio,
.checkbox {
    display: none;
}

.forget-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
    margin-top: 32px;
    transition: color 300ms ease-in-out;
}

.forget-link:hover {
    color: rgb(var(--color-custom))
}

.radio__label,
.checkbox__label {
    position: relative;
    padding-left: 37px;
    font-size: var(--text-size-r);
    color: rgb(var(--color-gray));
    display: inline-block;
    padding-top: 1px;
    cursor: pointer;
    line-height: 22px;
}

.radio__label .radio__border,
.checkbox__label .checkbox__border {
    width: 18px;
    height: 18px;
    border-radius: 2px;
    border: 2px solid rgb(var(--color-disabled));
    background: rgb(var(--color-base));
    position: absolute;
    left: 0;
    top: 4px;
    transition: border var(--transition);
}

.radio__label:hover .radio__border,
.checkbox__label:hover .checkbox__border {
    border-color: rgb(var(--color-custom));
}

.checkbox__label svg {
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 8px;
    display: block;
    fill: rgb(var(--color-base));
}

.checkbox:checked + .checkbox__border {
    border-color: rgb(var(--color-custom));
    background: rgb(var(--color-custom));
}

.radio__label {
    color: inherit;
}

.radio__label .radio__border {
    top: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: border-color var(--transition);
}

.radio:checked + .radio__border {
    border: 6px solid rgb(var(--color-custom));
}

.radio__label + .radio__label {
    margin-left: 30px;
}

.l-position_relative {
    position: relative;
}

.icon {
    width: 24px;
    height: 24px;
    fill: rgb(var(--color-custom));
    left: 16px;
    top: 16px;
    position: absolute;
}

.wrapper__scroll {
    padding: 42px 0;
}

.arrow {
    display: block;
    margin: 0 auto;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: rgb(var(--color-disabled));
    transition: color var(--transition);
}

.arrow svg {
    fill: currentColor;
    width: 24px;
    height: 24px;
}

.arrow:hover {
    color: rgb(var(--color-custom));
}

/* ПО НОМЕРУ КАРТЫ */
.card {
    padding: 98px 36px 0;
    text-align: left;
    position: relative;
    width: 316px;
    height: 196px;
    background: rgb(var(--color-custom));
    box-shadow: 6px 10px 28px rgba(var(--color-custom), .34);
    border-radius: 24px;
    font-weight: 600;
    font-size: var(--text-size-x);
    color: rgb(255,255,255);
    margin: 0 auto 16px;
}

.card__decor {
    width: 204px;
    height: 74px;
    position: absolute;
    right: 0;
    top: 0;
}

.card__bank {
    position: absolute;
    left: 36px;
    top: 36px;
    width: 48px;
    height: 48px;
    background: url(./img/card_logo.svg) no-repeat 50% 50%;
}

.card__label {
    font-weight: 400;
    font-size: var(--text-size-m);
    color: #fff;
    opacity: 0.5;
    margin-bottom: 3px;
}

.card__number {
    display: flex;
    align-items: center;
}

.card__mask {
    color: rgba(255, 255, 255, 0.5);
}

.card__number span {
    margin-right: 16px;
}

.card__number input {
    width: 70px;
    background: transparent none;
    text-align: center;
    height: 30px;
    border: 0;
    border-bottom: 2px solid #fff;
    font-weight: 600;
    font-size: var(--text-size-x);
    color: rgb(255,255,255);
    font-family: "Open Sans", sans-serif;
}

.card__number input.invalid {
    border-color: rgb(var(--color-error));
}

.card__number input::-webkit-input-placeholder {
    color: #fff;
    opacity: 0.3;
}
.card__number input::-moz-placeholder {
    color: #fff;
    opacity: 0.3;
}
.card__number input:-ms-input-placeholder {
    color: #fff;
    opacity: 0.3;
}
.card__number input:-moz-placeholder {
    color: #fff;
    opacity: 0.3;
}

/* ПО ПАСПОРТУ */
.passport__radio_container {
    margin-bottom: 32px;
}

/* ПРОДУКТЫ БАНКА */
.l-grid {
    --grid: 12;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.l-grid_16 {
    --grid: 16;
}

[class*='l-grid__item_'] {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin-bottom: 20px;
}

.l-grid__item_1 {
    width: calc(100% / var(--grid) * 1);
}
.l-grid__item_2 {
    width: calc(100% / var(--grid) * 2);
}
.l-grid__item_3 {
    width: calc(100% / var(--grid) * 3);
}
.l-grid__item_4 {
    width: calc(100% / var(--grid) * 4);
}
.l-grid__item_5 {
    width: calc(100% / var(--grid) * 5);
}
.l-grid__item_6 {
    width: calc(100% / var(--grid) * 6);
}
.l-grid__item_7 {
    width: calc(100% / var(--grid) * 7);
}
.l-grid__item_8 {
    width: calc(100% / var(--grid) * 8);
}
.l-grid__item_9 {
    width: calc(100% / var(--grid) * 9);
}
.l-grid__item_10 {
    width: calc(100% / var(--grid) * 10);
}
.l-grid__item_11 {
    width: calc(100% / var(--grid) * 11);
}

.info {
    max-width: 940px;
    margin: 0 auto;
}

.info__title {
    font-weight: 600;
    font-size: var(--text-size-xxl);
    padding: 80px 0 16px;
}

.info__product {
    text-decoration: none;
    color: #333333;
    padding: 0 24px 24px 24px;
    display: flex;
    position: relative;
    align-items: flex-end;
    background: rgb(var(--color-cancel));
    border-radius: 16px;
    font-size: var(--text-size-r);
    height: 148px;
}

.info__product:hover {
    text-decoration: underline;
}

.info__product svg {
    width: 54px;
    height: 36px;
    fill: rgb(var(--color-custom));
    position: absolute;
    right: 24px;
    top: 24px;
}

.info__label {
    color: rgb(var(--color-gray));
    margin-bottom: 36px;
}

.security {
    padding-top: 30px;
    text-align: center;
    color: rgb(var(--color-gray));
}

.mobile .security__link {
    display: none;
}

.link {
    padding-bottom: 2px;
    border-bottom: 1px solid rgb(var(--color-light));
    cursor: pointer;
    color: rgb(var(--color-gray));
    text-decoration: none;
    transition: color var(--transition), border var(--transition);
}

.link:hover {
    color: rgb(var(--color-custom));
    border-bottom-color: rgb(var(--color-custom));
}

.modal-mask {
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(61, 64, 71, .8);
    left: 0;
    top: 0;
    z-index: 999;
}

.modal-close {
    position: absolute;
    width: 48px;
    height: 48px;
    right: 40px;
    top: 40px;
    cursor: pointer;
    background: url(img/close.svg) no-repeat 0 0 / contain;
    z-index: 9;
}

.modal-frame {
    background: #fff;
    padding: 2rem;
    max-height: 94vh;
    max-width: 94vw;
    position: relative;
    border-radius: 24px;
}

/* ПОДВАЛ */
.footer {
    margin: 80px auto 0;
    background: rgba(246, 249, 255, 1);
}

.footer__inner {
    max-width: 1296px;
    padding: 57px 20px;
    width: 100%;
    margin: 0 auto;
}

.copyrights {
    padding: 30px 0;
    background: rgb(var(--color-cancel));
}

.copyrightsInfo {
    max-width: 1228px;
    height: 100%;
    margin: 0 auto;
    color: rgb(var(--color-gray));
    font-size: var(--text-size-m);
    padding: 0 20px;
}

.footer__phone {
    padding-bottom: 16px;
    font-size: var(--text-size-x);
    font-weight: 600;
}

.footer__mail {
    padding-bottom: 16px;
}

.footer__mail .link {
    font-size: var(--text-size-x);
    font-weight: 600;
    color: rgb(var(--color-text));
    text-decoration: none;
    border: none;
    padding: 0;
}

.footer__comment {
    font-weight: 400;
    padding-top: 5px;
    font-size: var(--text-size-m);
    color: rgb(var(--color-gray));
}

.footer__comment + div {
    margin-top: 5px;
}

.footer__buttons {
    padding-top: 8px;
}

.footer__links .link {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer__courses {
    font-weight: 600;
    display: none;
    margin-right: -30px;
}

.mobile .footer__courses {
    margin-right: 0;
}

.footer__header {
    padding-bottom: 2px;
    border-bottom: 1px solid rgb(var(--color-light));
}

.footer__courses table {
    width: 100%;
    border-collapse: collapse;
}

.footer__courses table td,
.footer__courses table th {
    padding-bottom: 16px;
}

.footer__courses table th {
    text-align: left;
    font-size: var(--text-size-m);
    color: rgb(var(--color-gray));
    font-weight: 400;
    padding-bottom: 16px;
}

.footer__courses table th .footer__header {
    font-weight: 600;
    font-size: var(--text-size-r);
    color: rgb(var(--color-text));
}

#footer-apps_accordion {
    --max-width: calc(112px * 2 + 16px);
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 16px;
    max-width: var(--max-width);
    margin-inline-start: auto;
}

.footer-apps_accordion-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.mobile .footer-apps_accordion-inner {
    align-items: center;
    margin-top: 8px;
}

span.footer-apps_accordion-badge {
    margin: 0;
}

#footer-apps_accordion-button {
    display: inline-flex;
    column-gap: 8px;
    font-size: var(--text-size-r);
    line-height: 22px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#footer-apps_accordion-button .footer-apps_accordion-arrow {
    transform: rotate(180deg);
}

#footer-apps_accordion-button.active .footer-apps_accordion-arrow {
    transform: rotate(0);
}

#footer-apps_desktop {
    max-width: 246px;
    margin-inline-start: auto;
}

#footer-apps_mobile {
    max-width: 246px;
    margin-inline: auto;
}

span.footer-apps_accordion-open {
    margin: 0;
    color: rgb(var(--color-text));
    font-size: var(--text-size-r);
    line-height: 22px;
}

.footer-apps_accordion-panel {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-block-start: 12px;
    overflow: hidden;
}

.footer-apps_accordion-text {
    display: inline-block;
    border-bottom: 1px solid rgb(var(--color-light));
    cursor: pointer;
    margin-inline-start: 8px;
    color: rgb(var(--color-gray));
    transition: color var(--transition), border var(--transition);
}
.footer-apps_accordion-icon {
    display: inline-flex;
    align-items: center;
}

.footer-apps_accordion-text:hover {
    border-bottom-color: rgb(var(--color-custom));
    color: rgb(var(--color-custom));
}

.footer__custom {
    margin-bottom: 24px;
    font-size: var(--text-size-m);
    color: rgb(var(--color-gray));
    text-align: right;
}

.footer__custom span,
.footer__custom a {
    text-decoration: none;
    display: inline-flex;
    margin-left: 8px;
    cursor: pointer;
}

.footer__custom a.footer__social {
    display: none;
    width: 48px;
    height: 48px;
    background: rgb(var(--color-custom));
    border-radius: 50%;
    margin-left: 10px;
    align-items: center;
    justify-content: center;
}

a.footer__social:first-child,
a.footer__social:first-of-type {
    margin-left: 0;
}


.footer__social svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

#bank-frames, #bank-products, #footer_onlineCall {
    display: none;
}

.usersaved {
    display: none;
    padding-bottom: 16px;
}

.usersaved__name {
    font-weight: 700;
}

.security__modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: rgba(61, 64, 71, .8);
    z-index: 10000;
    overflow-y: auto;
}

.security__close {
    position: absolute;
    width: 48px;
    height: 48px;
    right: 40px;
    top: 40px;
    cursor: pointer;
    background: url(img/close.svg) no-repeat 0 0 / contain;
}

.security__dialog {
    margin: 50px auto;
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 24px 132px;
    font-size: var(--text-size-x);
    color: rgb(var(--color-gray));
    width: 100%;
    max-width: 1100px;
}

.security__img {
    width: 164px;
    height: 164px;
    margin: 0 auto;
    background: url(img/security.svg) no-repeat 0 0 / contain;
}

.security__title {
    font-size: var(--text-size-xxxl);
    color: rgb(var(--color-text));
    font-weight: 700;
    line-height: 40px;
    margin: 0 0 32px;
    text-align: center;
}

.security__list {
    position: relative;
    padding-left: 48px;
    padding-bottom: 30px;
    text-align: left;
}

.security__list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(var(--color-custom));
}

.warning__info, .mdse-auth-info div {
    font-size: var(--text-size-m);
    color: rgb(var(--color-error));
    display: block;
    text-align: center;
    margin: 0 0 30px;
}

.mdse-auth-info div {
    color: rgb(var(--color-error));
}

.change-password {
    text-align: left;
}

.change-password__label {
    color: rgb(var(--color-gray));
    font-size: var(--text-size-m);
    margin: -17px 0 34px;
}

.change-password__title {
    font-size: var(--text-size-xl);
    font-weight: 700;
    margin-bottom: 27px;
}

.change-password__list {
    padding: 0 0 24px;
    margin: 0;
    list-style: none;
    color: rgb(var(--color-gray));
}

.change-password__list li {
    position: relative;
    padding: 0 0 16px 48px;
}

.change-password__list li::before {
    content: '';
    position: absolute;
    left: 21px;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(var(--color-custom));
}

.change-password-check {
    display: none;
    padding: 0 16px;
    text-align: left;
    margin-bottom: 40px;
}

.change-password-check__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.change-password-check__list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 16px;
    color: rgb(var(--color-gray));
}

.change-password-check__list li:last-of-type {
    margin-bottom: 0;
}

.change-password-check__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    width: 24px;
    height: 24px;
    background: url(img/status_error.svg) no-repeat 0 0;
}

.change-password-check__list .change-password-check__pass::before {
    background-image: url(img/status_ok.svg);
}

.qr-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 6;
    background: rgba(61, 64, 71, 0.8);
    align-items: center;
    justify-content: center;
    display: none;
}

.qr-dialog {
    position: fixed;
    z-index: 7;
    background: rgb(var(--color-base));
    width: 90vw;
    height: auto;
    max-width: 622px;
    border-radius: 24px;
    padding: 36px 36px 0;
    display: flex;
}

.qr-dialog__image {
    width: 214px;
    height: 283px;
    background: url(img/qrbg.svg) no-repeat 0 0;
    flex-shrink: 0;
    padding: 121px 0 0 78px;
}

.qr-dialog__info {
    padding-top: 55px;
    padding-left: 36px;
}

.qr-dialog__title {
    font-weight: 700;
    font-size: var(--text-size-xxl);
    padding-bottom: 16px;
    line-height: 1.333;
    color: rgb(var(--color-text));
}

.qr-dialog__about {
    color: rgb(var(--color-gray));
    font-size: var(--text-size-x);
    max-width: 227px;
}

#qr-container svg {
    width: 67px;
    height: 67px;
}

.qr-close {
    width: 24px;
    height: 24px;
    position: absolute;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.qr-close svg {
    fill: rgb(var(--color-disabled));
}

.form__infoblock {
    padding-bottom: 32px;
    text-align: left;
    color: rgb(var(--color-gray));
}

.error-container div {
    padding-bottom: 32px;
    color: rgb(var(--color-error))
}

.togglePassword {
    position: absolute;
    top: 0;
    right: 60px;
    cursor: pointer;
}

.togglePassword svg {
    fill: #B0B8BF;
    transition: fill var(--transition);
}

.togglePassword:hover svg {
    fill: rgb(var(--color-custom));
}

.togglePassword .icon_show, .togglePassword.password_visible .icon_hide {
    display: none;
}

.togglePassword.password_visible .icon_show, .togglePassword .icon_hide {
    display: block;
}

.dialog {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(61, 64, 71, .8);
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.dialog__content {
    width: 620px;
    padding: 344px 100px 141px;
    border-radius: 24px;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
    color: rgb(var(--color-gray));
    font-family: 'Roboto', sans-serif;
    background: #fff url(./img/dialog.svg) no-repeat 51% 56px;
}

.dialog__content_password {
    padding: 50px 70px;
    background: #fff;
}

.dialog__title {
    padding: 20px 0;
    font-size: var(--text-size-xxl);
    color: rgba(85, 89, 99, 1);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.dialog__list {
    list-style: none;
    margin: 25px 0;
    padding: 0;
    text-align: left;
}

.dialog__list li {
    padding-bottom: 16px;
    color: rgb(var(--color-gray));
}

.dialog__list li::before {
    content: '\2022';
    color: rgb(var(--color-custom));
    padding-right: 16px;
    font-weight: bold;
    font-size: 20px;
}

.dialog__content .button {
    margin: 17px 0;
    padding: 16px 20px;
    min-width: auto;
}

#multiFg {
    display: none;
}

.help {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
}

.help__background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--color-text), .8);
}

.help__content {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: white;
    padding: 30px 16px;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    z-index: 100;
}

.help__title {
    font-size: var(--text-size-x);
    font-weight: 600;
    margin-bottom: 10px;
}

.help__link {
    padding: 22px 0;
}

.help__button-wrapper {
    display: none;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.help__button {
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding: 7px 12px;
    background-color: rgb(var(--color-cancel));
    border-radius: 100px;
}

.help__button-icon {
    width: 24px;
    height: 24px;
    fill: rgb(var(--color-custom));
}

@media all and (min-width: 1921px) {
    .banner__img {
        max-height: 100vh;
    }
}

@media all and (max-width: 1000px) {
    .login {
        min-width: 320px;
    }
    .banner {
        display: none;
    }
    .wrapper {
        min-height: auto;
    }
    .login, .info {
        padding-left: 20px;
        padding-right: 20px;
    }
    .header, .form {
        padding-left: 0;
        padding-right: 0;
    }
    .footer .l-grid > div {
        width: 50%;
    }
    .footer .l-grid > div:nth-child(2n+1) {
        text-align: left;
    }
    .footer .l-grid > div:nth-child(2n) {
        text-align: right;
    }
    .security__dialog {
        margin: 0;
        border-radius: 0;
    }
}

@media all and (max-width: 640px) {
    .header {
        margin-bottom: 8px;
    }
    .help__button-wrapper {
        display: flex;
    }
    .wrapper__scroll {
        display: none;
    }
    .login_buttons_wrapper {
        flex-direction: column;
    }
    .tabs {
        flex-wrap: wrap;
    }
    .footer .l-grid > div,
    .info .l-grid__item_6,
    .footer__custom,
    .info .l-grid__item_4 {
        width: 100%;
        text-align: center !important;
    }
    .footer > div > div {
        margin-bottom: 40px;
    }
    .footer {
        padding-bottom: 0;
    }
    .security__dialog {
        padding-left: 32px;
        padding-right: 32px;
    }
    .security__dialog .security__title {
        font-size: var(--text-size-xxl)
    }
}

@media all and (max-width: 490px) {
    .header #bank-site {
        position: absolute;
        right: 0;
        top: -4px;
        text-align: left;
        width: 32px;
        height: 32px;
        text-indent: -9999px;
    }
    .header #bank-site svg {
        width: 32px;
        height: 32px;
    }
    .tabs__item {
        font-size: 12px;
    }
    .passport__radio_container {
        text-align: left;
    }
    .passport__radio_container .radio__label {
        margin-left: 0;
        margin-bottom: 10px;
    }
    .checkbox__label {
        text-align: left;
    }
    .security__dialog {
        font-size: var(--text-size-r)
    }
    .security__dialog .security__title {
        font-size: var(--text-size-xl);
        padding-left: 24px;
        padding-right: 24px;
    }

    .change-password-check {
        padding: 0;
    }
}

.bookmarks {
    display: none;
    position: fixed;
    left: 16px;
    top: 20px;
    width: calc(100vw - 32px);
    padding: 24px 16px;
    z-index: 999;
    background: rgb(var(--color-base));
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
    color: #000;
    border-radius: 16px;
    box-shadow: 2px 6px 24px 0 rgba(68, 113, 209, 0.16);
}

.bookmarks::after {
    content: '';
    display: table;
    clear: both;
}

.bookmarks__text {
    margin-left: 76px;
}

.bookmarks__icon {
    width: 60px;
    height: 60px;
    float: left;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    border-radius: 20px;
}

.bookmarks__title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 16px;
    padding-right: 32px;
}

.bookmarks__hint {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-left: 13px;
    font-size: 13px;
    line-height: 20px;
    color: rgb(var(--color-gray));
}

.bookmarks__hintOther {
    gap: 10px;
}

.bookmarks__close {
    width: 24px;
    height: 24px;
    right: 16px;
    top: 24px;
    position: absolute;
}

.bookmarks__share svg {
    display: inline;
    vertical-align: bottom;
}

.warning-pass-info {
    display: none;
    margin-top: -32px;
    text-align: left;
    color: rgb(var(--color-error));
    font-size: var(--text-size-s);
    padding-bottom: 16px;
}

.faceid-link {
    display: none;
    margin: 0 0 38px 28px;
    position: relative;
}

.mobile-ios .faceid-link {
    display: inline-block;
}

.faceid {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.faceid__inner {
    width: 100%;
    max-width: 360px;
}

.faceid__icon {
    width: 100%;
    height: 164px;
    background: url(./img/icon_faceid.svg) no-repeat 50% 0;
}

.faceid__title {
    font-size: var(--text-size-xl);
    font-style: normal;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
}

.faceid__description {
    text-align: center;
    padding: 8px 16px;
    color: rgb(var(--color-gray));
}

.faceid__list {
    color: rgb(var(--color-gray));
    padding: 0 32px 56px;
}

.faceid__listItem {
    padding: 8px 0;
    display: flex;
}

.faceid__listItem span {
    width: 32px;
    flex-shrink: 0;
    color: rgb(var(--color-custom));
    font-weight: 600;
}

.faceid__button {
    padding: 0 8px 16px;
}

.faceid__close {
    position: absolute;
    top: 40px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: url(./img/icon_close.svg) no-repeat 0 0;
}

.pwa-link {
    display: none;
    margin: 16px 0 40px;
    color: rgb(var(--color-gray));
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: rgb(var(--color-light));
}

.mobile .pwa-link {
    display: block;
}

.pwa {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 0 20px;
    z-index: 10000;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.pwa__close {
    position: absolute;
    top: 40px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: url(./img/icon_close.svg) no-repeat 0 0;
}

.pwa__inner {
    width: 100%;
    max-width: 360px;
}

.pwa__icon {
    width: 100%;
    height: 164px;
    background: url(./img/icon_pwa.svg) no-repeat 50% 0;
}

.pwa__title {
    font-size: var(--text-size-xl);
    font-style: normal;
    font-weight: 700;
    padding: 10px 0;
    text-align: center;
}

.pwa__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: rgb(var(--color-gray));
    padding: 16px 32px 40px 40px;
}

.pwa__listItem {
    padding-left: 16px;
}

.pwa__listItem::marker {
    color: rgb(var(--color-custom));
    font-weight: 600;
}

.pwa__share svg {
    display: inline;
    vertical-align: bottom;
}

.faceid-link.help__link, .pwa-link.help__link {
    color: rgb(var(--color-text));
    text-decoration: none;
    margin: 0;
}