*,
::after,
::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: #797c84 rgb(243, 244, 245);
    min-width: 0; /* FIREFOX FLEX HACK */
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', sans-serif;
    color: rgb(var(--general_black));
    background: rgb(var(--general_white));
    font-size: 16px;
    line-height: 1.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

.loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 300ms ease-in 0s, z-index 300ms step-end 0s;
    z-index: 9999;
    background-color: #FFFFFF;
}

.loading_hidden {
    opacity: 0;
    z-index: -1;
}

.spinner {
   -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    width: 50px;
    height: 50px;
}

.loading_hidden .spinner {
    animation-iteration-count: 1;
    z-index: 9999;
}

.path {
    stroke: rgb(var(--general_custom_first));
    stroke-linecap: round;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
}

.loading_hidden  .path {
    animation-iteration-count: 1;
}

.bg {
    stroke: rgba(var(--general_custom_first), 0.3);
}

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

@keyframes rotate {
    100% {
        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;
    }
}


input::-ms-reveal,
input::-ms-clear {
    display: none;
}

.body {
    min-height: 100%;
    min-width: 360px;
}

.bgLogin {
    width: calc(100% - 656px);
    height: 100%;
    position: fixed;
    top: 0;
    left: 656px;
    background-repeat: no-repeat;
    background-position: 50% 0;
    background-size: cover;
}

.bgLogin_default {
    background-image: url(../images/bgLogin.jpg);
}

a {
    color: rgb(var(--general_black));
    text-decoration: none;
}

a:hover {
    color: rgb(var(--general_custom_first));
}

iframe {
    width: 100%;
    min-height: 100%;
    border: 0;
}

:focus {
    outline: none;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar,
::-webkit-scrollbar-track {
    background: rgb(243, 244, 245);
    width: 5px;
    margin: 0 3px;
}

::-webkit-scrollbar-thumb {
    background: #797c84;
    border-radius: 5px;
}

a {
    color: rgb(var(--general_custom_first));
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
}

.hidden {
    display: none;
}

.clear::after {
    content: "";
    display: table;
    clear: both;
}

svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 158px;
}

.header__logo {
    display: block;
    width: 200px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: contain;
}

.header__logo_default {
    background-image: url(../images/logo.svg);
}

.section__error-wrap .header__logo {
    margin-bottom: 40px;
}

.header__link {
    color: #000;
    font: var(--body_regular);
    margin-left: 32px;
    display: inline-block;
    margin-bottom: 3px;
}

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

.section {
    padding: 48px 48px 28px;
    min-height: 100vh;
    width: 656px;
    min-width: 360px;
    background: rgb(var(--general_white));
    position: relative;
    display: flex;
    flex-direction: column;
}

.section.scrolless {
    overflow: hidden;
}

.section__inner {
    width: 100%;
    max-width: 336px;
    margin: 0 auto 72px;
    flex-grow:1;
}

.section__header {
    font: var(--head_h1);
    padding: 0 0 40px;
}

.section__aside {
    margin-bottom: 20px;
    font: var(--body_regular);
}

.section__link {
    color: #000;
    margin-right: 16px;
    margin-bottom: 8px;
    float: left;
    cursor: pointer;
}

.section__link:hover {
    color: rgb(var(--general_custom_first));
    text-decoration: underline;
}

.section__applications {
    position: relative;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
    height: 100px;
    overflow: hidden;
}

.section__applications_opened {
    height: auto;
}

.section__applications_more {
    position: absolute;
    left: 0;
    top: 64px;
    color: #9397A1;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.section__applications_opened .section__applications_more svg {
    transform: rotate(180deg);
}

.section__applications_more:hover {
    text-decoration: none;
}

.section__app {
    display: none;
    height: 48px;
    width: 162px;
    background: url('../images/stores/rustore.svg') no-repeat 50% 50%;
    flex-shrink: 0;
}

.section__app:first-child {
    margin-bottom: 36px;
}

#ios {
    background-image: url('../images/stores/appstore.svg');
    width: 144px;
}

#android {
    background-image: url('../images/stores/googleplay.svg');
    widtH: 160px;
}

#app_gallery {
    background-image: url('../images/stores/appgalery.svg');
    width: 160px;
}

#get_apps {
    background-image: url('../images/stores/getapps.svg');
    width: 148px;
}

#f_store {
    background-image: url('../images/stores/fstore.svg');
    width: 138px;
}

#galaxy_store {
    background-image: url('../images/stores/galaxystore.svg');
    width: 138px;
}

.section__copyrights {
    padding-top: 32px;
    font: var(--caption_regular);
    color: rgb(var(--general_grey));
}

.section__form {
    display: none;
    position: relative;
}

.section__form_visible {
    display: block;
}

.section__alert_warning {
    display: none;
}

.section__back {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 0;
    font: var(--caption_regular);
    color: rgb(104, 109, 121);
    cursor: pointer;
}

.section__back:hover {
    text-decoration: underline;
    color: rgb(var(--general_custom_first));
}

.section__label {
    font: var(--body_regular);
    color: rgb(var(--general_graphite));
    display: block;
    position: absolute;
    margin: 16px 0 0 12px;
    transition: margin 100ms ease, font-size 100ms ease;
}

.section__label.focused {
    margin-top: 8px;
    font-size: 10px;
    color: rgb(var(--general_grey));
}

.section__select,
.section__input {
    border: 1px solid rgb(var(--general_light_grey));
    background: rgb(var(--general_white));
    border-radius: 4px;
    display: block;
    outline: none;
    width: 100%;
    padding: 24px 12px 8px;
    height: 52px;
    line-height: 20px;
    margin-bottom: 16px;
    font: var(--body_regular);
    color: rgb(var(--general_graphite));
}

.section__input.error {
    border: 1px solid rgba(var(--system_critical), 0.72);
}

.section__input.error + span + .section__error-message {
    display: block;
}

.section__error-message {
    display: none;
    margin-top: -14px;
    margin-bottom: 14px;
    font: var(--body_regular);
    color: rgb(var(--system_critical));
    line-height: 1.2;
}

#password {
    padding-right: 40px;
}

input[type="number"] {
    -moz-appearance: textfield;
    box-shadow: none;
}

input[type="number"]::-ms-clear {
    display: none;
}

input::-ms-clear {
    display: none;
}

input[type="number"],
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.section__select {
    padding: 9px 32px 9px 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.section__select::after {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
    background: url('../images/select.svg') no-repeat 50% 50%;
}

.section__dropdown {
    display: none;
    width: 302px;
    position: absolute;
    max-height: 282px;
    padding: 4px 0;
    margin-top: -20px;
    overflow-y: auto;
    z-index: 19;
    border-radius: 2px;
    box-shadow: 0 0 20px 1px rgba(69, 72, 80, 0.2);
    background-color: rgb(var(--general_white));
    border: 1px solid rgb(var(--general_light_grey));
}

.section__dropdown_opened {
    display: block;
}

.section__dropitem {
    display: block;
    padding: 12px 10px;
    cursor: pointer;
    font: var(--body_regular);
    word-wrap: break-word;
}

.section__dropitem:hover {
    background-color: rgba(var(--general_smoky_white), .6);
}

.show-password {
    position: absolute;
    margin: -52px 0 0;
    width: 20px;
    height: 20px;
    background: url(../images/icon_eye.svg) no-repeat 0 0;
    cursor: pointer;
    right: 12px;
}

.show-password_c {
    background-image: url(../images/icon_eye_c.svg);
}

.show-password_hide {
    display: none;
}

.show-password + input {
    padding-right: 40px;
}

input[type='checkbox'] {
    display: none;
}

.section__checkbox {
    font: var(--body_regular);
    display: inline-block;
    cursor: pointer;
    padding-left: 28px;
    position: relative;
}

.section__checkbox::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid rgba(var(--general_graphite), .3);
    background: rgb(var(--general_white));
    border-radius: 4px;
}

.section__checkbox:hover::before {
    border-color: rgb(var(--general_custom_first));
}

input:checked + .section__checkbox::before {
    border-color: rgb(var(--general_custom_first));
    background: rgb(var(--general_custom_first));
}

input:checked + .section__checkbox::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    color: rgb(var(--general_white));
    background: url(../images/check.svg) no-repeat 0 0;
}

.section__submit {
    margin-top: 24px;
}

.section__button,
.section__button-loading {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    margin: 0 36px 0 0;
    text-align: center;
    height: 44px;
    padding: 12px 20px;
    border-radius: 4px;
    font: var(--body_regular);
    border: 1px solid rgb(var(--general_custom_first));
    background: rgb(var(--general_custom_first));
    color: rgb(var(--general_white));
    transition: opacity 300ms ease-in-out;
    flex-shrink: 0;
}

.section__button:hover {
    opacity: 0.8;
}

.section__button_disabled:hover,
.section__button_disabled {
    background: rgb(var(--general_grey_plus));
    color: rgb(var(--general_white));
    border-color: rgb(var(--general_grey_plus));
    opacity: 1;
    cursor: default;
}

.section__password-login {
    display: flex;
    align-items: center;
}

.section__bankphone {
    display: none;
}

.section__password-reset {
    font: var(--caption_regular);
}

.section__password-reset.link span,
.section__password-reset a {
    display: none;
}

.section__password-reset.link a {
    display: inline;
}

.section__otp {
    font: var(--body_regular);
    padding-bottom: 20px;
}

.align_center {
    text-align: center;
}

.aside {
    position: fixed;
    background: rgba(var(--general_black), 0.08);
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.aside__inner {
    position: relative;
    width: 746px;
    max-height: 96vh;
    overflow-y: auto;
    background: rgb(var(--general_white));
    border-radius: 8px;
    padding: 28px;
}

.aside__header {
    padding: 0 0 28px;
    font: var(--head_h1);
}

.o-icon_security {
    width: 40px;
    height: 40px;
    vertical-align: middle;
    margin-right: 16px;
}

.aside__title {
    font: var(--head_h4);
    padding: 12px 0 20px 48px;
}

.aside__close {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.aside__close:hover {
    color: rgb(var(--general_custom_first))
}

.aside__close svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.o-delimiter_horizontal {
    height: 1px;
    width: 100%;
    background: rgba(151, 151, 151, .2);
    margin: 20px 0;
}

.aside__item {
    font: var(--body_regular);
    padding: 0 0 20px 48px;
    position: relative;
    min-height: 56px;
}

.aside__item svg {
    position: absolute;
    left: 0;
    top: 4px;
    width: 36px;
    height: 36px;
}

.section__infomessage,
.section__alert {
    position: relative;
    max-width: 300px;
    font: var(--body_regular);
    color: rgb(var(--system_critical));
    padding: 8px 12px 8px 44px;
    background: rgba(var(--system_critical), 0.12);
}

.section__infomessage::before,
.section__alert::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/icon_alert.svg) no-repeat 0 0;
    position: absolute;
    left: 12px;
    top: 8px;
}

.section__infomessage {
    max-width: 375px;
    background: rgba(95, 140, 229, 0.12);
    border-radius: 4px;
    color: rgba(95, 140, 229, 1);
    white-space: pre-line;
}

.section__infomessage::before {
    background-image: url(../images/icon_info.svg);
}

.section__alert {
    margin-top: 20px;
    word-wrap: break-word;
}

.skeleton-tabs + .section__tabs-container {
    display: none;
}

.skeleton-tabs__item {
    display: flex;
    padding: 16px 0;
    align-items: center;
}

.skeleton-tabs__item-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;

}

.skeleton-tabs__item-name {
    width: 100%;
    max-width: 184px;
    height: 12px;
}

.skeleton-tabs__item-icon,
.skeleton-tabs__item-name {
    background-color: rgb(var(--general_light_grey));
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.skeleton-tabs__item div::after {
    content: '';
    position: absolute;
    left: -100px;
    top: 0;
    width: 100px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0) 100%
    );
    animation: skeleton-loading 1.6s linear infinite;
}

@keyframes skeleton-loading {
    0% {
        left: -100px;
    }
    100% {
        left: calc(100% + 100px);
    }
}

.section__tabs-item {
    display: none;
    padding: 16px 0 16px 52px;
    margin-left: -18px;
    width: 100%;
    max-width: 300px;
    cursor: pointer;
    font: var(--body_regular);
    color: rgb(var(--general_black));
    border-radius: 4px;
    position: relative;
}

.section__tabs-item:hover {
    background: rgb(var(--general_ghostly_white));
}

.section__tabs-item .section__tabs-icon {
    position: absolute;
    top: 17px;
    left: 18px;
}

.section__info {
    text-align: center;
    font: var(--body_regular);
}

.section__welcome {
    font: var(--head_h2);
    padding-bottom: 24px;
    cursor: pointer;
}

.section__welcome:hover span {
    border-bottom: 1px dashed rgb(var(--general_black));
}

.o-icon_windows {
    display: block;
    margin: 16px auto 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgb(var(--general_custom_first));
}

.key-path {
    padding: 20px 24px;
    max-width: 412px;
    background: rgb(var(--general_smoky_white));
    border-radius: 8px;
}

.key-path__file {
    font: var(--caption_regular);
    word-break: break-all;
    word-break: break-word;
    word-wrap: anywhere;
    margin-bottom: 20px;
    color: rgb(var(--general_grey));
}

.key-path__browse {
    padding: 8px 10px;
    display: inline-block;
    height: 36px;
    border-radius: 4px;
    background: rgb(var(--general_white));
    border: solid 1px rgb(var(--general_custom_first));
    color: rgb(var(--general_custom_first));
    font: var(--body_medium);
    cursor: pointer;
}

.notification {
    width: 334px;
    top: 50%;
    padding: 16px 20px;
    font: var(--body_regular);
    border-radius: 2px;
    background-color: rgb(var(--general_white));
    border: solid 1px rgb(var(--general_smoky_white));
    z-index: 9;
    left: auto;
    margin: -150px 0 0 -375px;
    position: absolute;
}

.notification__title {
    font: var(--head_h4);
    margin: -16px -20px 15px;
    padding: 24px 20px;
    border-bottom: 1px solid rgb(var(--general_light_grey));
    color: rgb(var(--system_critical));
}

.notification__icon {
    vertical-align: middle;
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-right: 12px;
}

.notification__hide {
    display: block;
    margin-top: 10px;
    color: rgb(var(--general_custom_first));
    cursor: pointer;
}

.loadingBar {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 9999;
}

.loadingBar__timeline {
    animation: loading 4s;
    height: 6px;
    width: 95%;
    border-radius: 0;
    background: rgb(var(--general_custom_first));
}

@keyframes loading {
    from {
        width: 1%
    }
    to {
        width: 95%
    }
}

.oauth-grant {
    width: 600px;
    margin: 0 auto;
    height: 100%;
    min-height: 100vh;
    padding: 100px 0;
}

.oauth-grant__title {
    font-size: 26px;
    line-height: 44px;
    font-weight: 600;
    text-align: center;
}

.oauth-grant__content {
    padding: 32px 0;
    border-top: 1px solid rgb(231,234,237);
    border-bottom: 1px solid rgb(231,234,237);
    margin: 40px 0 32px;
}

.oauth-grant__app {
    font-weight: 600;
}

.o-button {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    cursor: pointer;
    height: 40px;
    line-height: 38px;
    border: 1px dashed rgb(var(--general_custom_first));
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    padding: 0 20px;
    background: rgb(var(--general_white));
    color: rgb(var(--general_custom_first));
    outline: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.o-button:hover {
    border-style: solid;
    text-decoration: none;
}

.o-button_primary {
    background: rgb(var(--general_custom_first));
    border: 1px solid rgb(var(--general_custom_first));
    color: rgb(var(--general_white));
}

.o-button_primary:hover {
    opacity: 0.8;
}

.o-button_small {
    height: 36px;
    line-height: 34px;
    padding: 0 10px;
}

.o-button + .o-button {
    margin-left: 18px;
}

.l-align_center {
    text-align: center;
}

.list {
    list-style: none;
    margin-top: 20px;
}

.list li {
    font-size: 13px;
    padding-left: 16px;
    margin: 12px 0 0;
    position: relative;
}

.list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgb(var(--general_custom_first));
    position: absolute;
    left: 0;
    top: 4px;
}

.oauth-grant__buttons .o-button {
    min-width: 120px;
}

.oauth-grant__granted {
    line-height: 1.5;
    font-weight: 300;
}

.oauth-grant__logo {
    width: 240px;
    height: 240px;
    background: url(../images/oauth-grant.svg) no-repeat 50% 50% / contain;
    margin: 0 auto 20px;
}

.input-tooltip {
    display: none;
    position: absolute;
    white-space: nowrap;
    background: rgb(var(--general_white));
    padding: 8px 12px;
    font: var(--body_regular);
    color: rgb(var(--general_graphite));
    box-shadow: 0 24px 52px rgba(48, 48, 48, 0.12);
    border-radius: 4px;
    top: 0;
    left: calc(100% + 28px);
}

.input-tooltip_mod {
    top: 56px;
}

#certs-expired-message {
    font: var(--body_regular);
    margin-bottom: 16px;
}

.certs-expired-message__row {
    margin-bottom: 8px;
}

#certificates {
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 390px;
    margin-left: -20px;
}

#certificates li {
    padding: 16px 12px 16px 52px;
    margin: 0;
    cursor: pointer;
    font: var(--caption_regular);
    color: rgb(var(--general_grey));
    position: relative;
}

#certificates li::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(../images/icon_file.svg) no-repeat 0 0;
    top: 16px;
    left: 20px;
}

#certificates li:hover {
    background: rgb(var(--general_ghostly_white));
    border-radius: 4px;
}

#certificates li.expired_date:hover {
    background: transparent;
    cursor: text;
}

#certificates li div {
    margin-bottom: 10px;
    font: var(--body_regular);
    color: rgb(var(--general_black))
}

#certificates li.expired_date div {
    color: rgb(var(--general_grey));
}

#certificates li.expired_date::before {
    opacity: 0.6;
}

.section__icon-loading,
.section__button-loading {
    display: none;
    justify-content: space-between;
    width: 30px;
    margin-bottom: 20px;
}

.section__icon-loading > span,
.section__button-loading > span {
    width: 6px;
    height: 6px;
    background-color: rgb(var(--general_custom_first));
    border-radius: 50%;
    animation: 1s 0.1s infinite loadingData;
    opacity: 0;
}

@keyframes loadingData {
    0% {opacity: 0}
    50% {opacity: 1}
    100% {opacity: 0}
}

.section__button-loading {
    width: 80px;
    margin-bottom: 0;
    align-items: center;
    padding-left: 25px;
    padding-right: 25px;
}

.section__button-loading.show {
    display: flex;
}

.section__button-loading.show + .section__button {
    display: none;
}

.section__button-loading:before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 1;
    cursor: default;
}

.section__button-loading > span {
    background-color: rgb(var(--general_ghostly_white));
}


.mask {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(var(--general_black), 0.12);
}

.dialog {
    width: 334px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(var(--general_white));
    font: var(--body_regular);
    z-index: 2;
}

.dialog__header {
    padding: 33px 28px 20px 68px;
    border-bottom: 1px solid rgb(var(--general_light_grey));
    color: rgb(var(--system_critical));
    background: url(../images/icon_allert_rect.svg) no-repeat 28px 30px;
    position: relative;
}

.dialog__header__close {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
    fill: rgba(var(--general_black), 0.72);
}

.dialog__header__close:hover {
    fill: rgb(var(--general_custom_first));
}

.dialog__content {
    padding: 12px 28px 24px;
    white-space: pre-line;
}

.dialog__footer {
    padding: 0 28px 28px;
}

/* ERROR PAGE */
.section__error {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.bgError_default {
    background-image: url(../images/error.jpg);
}

.section__error-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    max-width: 700px;
    width: 100%;
    margin: -220px 0 0 -350px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    border-radius: 10px;
    padding: 20px 40px 70px;
    background: rgba(255, 255, 255, .7);
}

.section__error-head {
    font: var(--head_h1);
    padding-bottom: 20px;
}

.old-browser-panel {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255,255,255);
    z-index: 999;
}

.old-browser-warning {
    position: absolute;
    width: 100%;
    text-align: center;
    height: 650px;
    top: 50%;
    left: 0;
    margin-top: -325px;
    font: 400 13px/20px 'Inter', sans-serif;
    color: rgb(47, 49, 55);
}

.old-browser-icon {
    width: 200px;
    height: 200px;
    display: block;
    margin: 0 auto;
    background: url(../images/mammoth.png) no-repeat 50% 50%;
    background-size: cover;
}

.old-browser-warning .o-title {
    padding: 32px 0 20px;
    font: 600 22px/28px 'Source Sans Pro', sans-serif;
    color: rgb(47, 49, 55);
}

.old-browser-panel__info {
    margin-bottom: 32px;
}

.old-browser-warning .o-button_primary {
    height: 44px;
    line-height: 42px;
    background: rgb(186, 64, 117);
    border: 1px solid rgb(186, 64, 117);
    color: rgb(255, 255, 255);
}

.old-browser-panel__links {
    margin-top: 28px;
}

.old-browser-panel__links a {
    font: 400 13px/20px 'Inter', sans-serif;
    display: inline-block;
    margin: 0 28px;
    color: rgb(186, 64, 117);
}

.old-browser-panel__attention {
    width: 572px;
    margin: 40px auto 0;
    padding: 12px 16px;
    background-color: rgba(255, 160, 0, 0.12);
    border-radius: 4px;
    font: 400 12px/16px 'Inter', sans-serif;
    text-align: left;
}

.old-browser-panel__attention a {
    color: inherit;
    text-decoration: underline;
}

.msie .loading {
    display: none;
}

.msie .old-browser-panel {
    display: block;
}


/*Ie 10/11*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none)
{
    html{
        height: 100%;
    }
    body{
        overflow: auto;
        height: 100%;
    }
    .section {
        height: 0;
    }
}

.section__banner {
    padding: 20px 118px 20px 20px;
    background: rgba(229, 132, 97, 0.12) url(../images/banner_fns.svg) no-repeat;
    background-position: calc(100% - 24px) 28px;
    border-radius: 8px;
    margin-bottom: 52px;
    font-size: 13px;
    line-height: 20px;
    color: rgb(var(--general_graphite));
}

.section__banner a {
    display: inline-block;
}

.section__banner-link {
    margin-top: 20px;
}

.cookiePolice {
    width: 352px;
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 16px 48px 16px 16px;
    font-size: 12px;
    line-height: 18px;
    background-color: rgb(var(--general_white));
    border-radius: 8px;
    box-shadow: 0 40px 52px rgba(61, 64, 71, 0.16);
}

.cookiePolice__close {
    width: 32px;
    height: 32px;
    fill: rgb(var(--general_grey_plus));
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    transition: fill 300ms ease 0s;
}

.cookiePolice__close:hover {
    fill: rgb(var(--general_custom_first));
}

.cookiePolice__row {
    margin-top: 12px;
    white-space: pre-line;
}

.cookiePolice .o-button_small {
    display: inline-block;
    margin-top: 16px;
    border-style: solid;
    border-color: rgba(var(--general_custom_first), .32);
    transition: background-color 300ms ease 0s;
}

.cookiePolice .o-button_small:hover {
    background-color: rgba(var(--general_custom_first), .08);
}

.cookiePoliceDialog {
    width: 100%;
    height: calc(100% - 24px);
    max-width: 1052px;
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(var(--general_white));
    border-radius: 12px;
    font-size: 13px;
    overflow: hidden;
}

.cookiePoliceDialog__container {
    max-height: 100%;
    padding: 40px;
    overflow-y: auto;
}

.cookiePoliceDialog__header {
    font-size: 15px;
    line-height: 24px;
    color: rgb(72, 75, 82);
    margin-bottom: 32px;
    font-weight: bold;
    text-align: center;
}

.cookiePoliceDialog .list li {
    padding-left: 40px;
    line-height: 20px;
}

.cookiePoliceDialog .list li::before {
    width: 6px;
    height: 6px;
    top: .65em;
    left: 16px;
}

.cookiePoliceDialog .cookiePolice__close {
    top: 4px;
    right: 4px;
}

.cookiePoliceDialog ol {
    list-style-position: inside;
}

.cookiePoliceDialog ol > li:before {
    display: none;
}

.cookiePoliceDialog__subtitle {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.mobile-wrapper {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.mobile-wrapper__content {
    background: rgb(var(--general_white));
    border-radius: 4px;
    border: 1px solid rgb(var(--general_smoky_white));
    padding: 1.25rem;
    text-align: center;
    position: absolute;
    width: 90vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    font: var(--body_regular);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-wrapper__content .section__app {
    margin-top: 16px;
}

.mobile-wrapper__no-support-icon {
    display: block;
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    fill: none;
}

.mobile-wrapper__install-app {
    display: none;
}

.mobile-wrapper__no-support.hidden + .mobile-wrapper__install-app {
    display: block;
}

.login-mobile-links__ios,
.login-mobile-links__android {
    display: inline-block;
    text-decoration: none;
    margin-top: 16px;
}

.login-mobile-links__ios svg,
.login-mobile-links__android svg {
    width: 144px;
    height: 48px;
}

.login-mobile-links__android svg {
    width: 160px;
}


/* СТИЛИ ДЛЯ IPHONE */
.iphone:not(.hideMobileBanner) > .body {display: none;}
.iphone:not(.hideMobileBanner) > .bgLogin {
    width: 100%;
    left: 0;
}
.iphone:not(.hideMobileBanner) > .mobile-wrapper {display: block;}

.section__notification {
    display: none;
    padding: 8px 16px 8px 40px;
    position: relative;
    background: #FEEFEE;
    color: #B9455A;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin-top: 50px;
    border-radius: 6px;
}

.macos .section__notification {
    display: block;
}

.section__notification svg {
    position: absolute;
    left: 13px;
    top: 7px;
}

.section__notification div {
    padding-bottom: 8px;
}

/* СТИЛИ ДЛЯ ANDROID */
@media screen and (max-width: 767px), screen and (max-width: 1023px) and (orientation: landscape) {
    .android:not(.hideMobileBanner) > .body {display: none;}
    .android:not(.hideMobileBanner) > .bgLogin {
        width: 100%;
        left: 0;
    }
    .android:not(.hideMobileBanner) > .mobile-wrapper {display: block;}
}

@media screen and (max-width: 1440px) {
    .header {
        margin-bottom: 112px;
    }
    .bgLogin {
        width: calc(100% - 496px);
        left: 496px;
    }
    .section {
        width: 496px;
    }
    .kc-form-login .section__header {
        padding-bottom: 12px;
    }
    .section__banner {
        margin-bottom: 44px;
    }
    .section__copyrights {
        padding-top: 16px;
    }
}

@media screen and (max-width: 1366px) {
    .header {
        margin-bottom: 72px;
    }
    .bgLogin {
        width: calc(100% - 472px);
        left: 472px;
    }
    .section {
        width: 472px;
        padding-top: 40px;
        padding-bottom: 20px;
    }
    .section__banner {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 1280px) {
    .bgLogin {
        width: calc(100% - 448px);
        left: 448px;
    }
    .section {
        width: 448px;
    }
}

@media screen and (max-height: 1079px) and (min-height: 1024px) {
    .header {
        margin-bottom: 128px;
    }
    .section__header {
        padding-bottom: 40px;
    }
    .section__banner {
        margin-bottom: 52px;
    }
}

@media screen and (max-width: 1024px) {
    .bgLogin {
        width: calc(100% - 512px);
        left: 512px;
    }
    .header {
        margin-bottom: 72px;
    }
    .section {
        width: 512px;
    }
    .section__header {
        padding-bottom: 32px;
    }
    .kc-form-login .section__header {
        padding-bottom: 32px;
    }
}

@media screen and (max-width: 768px) {
    .bgLogin {
        width: calc(100% - 520px);
        left: 520px;
    }
    .section {
        max-width: 520px;
        width: 100%;
    }
}

@media screen and (max-width: 768px) and (orientation:portrait) {
    .header {
        margin-bottom: 128px;
    }
}

@media screen and (max-height: 768px) {
    .section__inner {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 732px) {
    .input-tooltip {
        top: 56px;
        left: 0;
        z-index: 1;
    }
}

@media screen and (max-width: 412px) {
    .header {
        margin-bottom: 68px;
    }
    .section {
        padding: 32px 24px 20px;
    }
    .section__header {
        padding-bottom: 32px;
    }
    .section__inner {
        max-width: 312px;
        margin-bottom: 40px;
    }
    .section__banner {
        margin-bottom: 40px;
    }
    .section__link {
        width: 100%;
    }
    .cookiePolice {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 16px;
    }
}

@media screen and (max-width: 390px) {
    .section {
        padding: 24px 20px 20px;
    }
    .section__banner {
        margin-bottom: 32px;
    }
}

@media screen and (max-width: 360px) {
    .header {
        margin-bottom: 56px;
    }
    .section {
        padding-left: 16px;
        padding-right: 16px;
    }
}
