@import "css/mobile.css";

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: local('Inter Light'), local('Inter-Light'), url(fonts/Inter-Light.woff2) format('woff2'), url(fonts/Inter-Light.woff) format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: local('Inter Regular'), local('Inter-Regular'), url(fonts/Inter-Regular.woff2) format('woff2'), url(fonts/Inter-Regular.woff) format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: local('Inter Medium'), local('Inter-Medium'), url(fonts/Inter-Medium.woff2) format('woff2'), url(fonts/Inter-Medium.woff) format('woff');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: local('Inter Bold'), local('Inter-Bold'), url(fonts/Inter-Bold.woff2) format('woff2'), url(fonts/Inter-Bold.woff) format('woff');
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: local('Source Sans Pro Semibold'), local('SourceSansPro-Semibold'), url(fonts/Source-Sans-Pro-Semi-Bold.woff2) format('woff2'), url(fonts/Source-Sans-Pro-Semi-Bold.woff) format('woff');
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 700;
    src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(fonts/Source-Sans-Pro-Bold.woff2) format('woff2'), url(fonts/Source-Sans-Pro-Bold.woff) format('woff');
}

:root {
    --full-width: 1262px;
    --text-color: 66, 69, 77; /* #42454D */
    --title-color: 47, 49, 55; /* #2F3137 */
    --panel-bg: 255, 255, 255; /* #ffffff */
    --hover-bg: 249,249,250; /* #F9F9FA */
    --common-bg: 243, 244, 245; /* #F3F4F5 */
    --custom-color: 186, 61, 114; /* #ba3d72 */
    --warning-color: 231, 86, 113; /* #e75671 */
    --success-color: 126, 211, 33; /* #7ed321 */
    --attention-color: 229, 132, 97; /* #e58461 */
    --border-color: 231,234,237; /* #E7EAED */
    --grey: 147, 151, 161; /* #9397a1 */
    --grey-plus: 190,192,199; /* #BEC0C7 */
    --modern-grey: 198,204,210; /* #C6CCD2 */
    --text-extra-small: 0.75rem;
    --text-small: 0.8125rem;
    --text-normal: 0.875rem;
    --text-medium: 0.938rem;
    --text-label: 1rem;
    --text-title: 1.25rem;
    --text-increased: 1.5rem;
    --standart-transition: 300ms ease 0s;
    --bank-logo: url(img/logo.svg) no-repeat 0 0;
    --bank-logo-width: 130px;
    --bank-logo-pub: url(img/logo_pub.svg) no-repeat 50% 0;
    --bank-bg-login: url(img/bgLogin.jpg) no-repeat scroll 50% 0 / cover;
    --bank-bg-registration: url(img/bg_register.jpg) no-repeat scroll 50% 0 / cover;
    --bank-bg-maintenance: url(img/bg.jpg) no-repeat 50% 0 / cover;
    /*  --text-small: calc(.5rem + .65vmin);  !* FONT-SIZE: 13px *!
      --text-normal: calc(.57rem + .65vmin); !* FONT-SIZE: 14px *!
      --text-medium: calc(.63rem + .65vmin); !* FONT-SIZE: 15px *!
      --text-label: calc(.7rem + .65vmin);  !* FONT-SIZE: 16px *!*/
}

:focus {
    outline: none;
}

*, ::after, ::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scrollbar-width: thin;
    scrollbar-color: #797C84 rgb(var(--smoky-white));
}

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

::-webkit-scrollbar,
::-webkit-scrollbar-track {
    background: rgba(var(--smoky-white), .8);
    width: 5px;
    margin: 0 3px;
}

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

body, html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

.body_full {
    height: 100%;
}

html {
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    background: rgb(var(--smoky-white));
    line-height: 1.54;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-small);
    color: rgb(var(--graphite));
    font-weight: 400;
    overflow-x: auto;
    overflow-y: scroll;
}

.hidden {
    display: none;
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    padding: 0 0 0 40px;
    margin: 12px 0 0;
    position: relative;
}

li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgb(var(--custom-first));
    position: absolute;
    left: 16px;
    top: .65em;
}

.wiki ul {
    padding: 0 0 0 20px;
    list-style: disc;
}

.wiki li::before {
    display: none
}

.xml-doc-container li::before,
.printArea li::before {
    display: none;
}

.xml-doc-container ul,
.printArea ul {
    list-style-type: circle;
}

.xml-doc-container .break,
.printArea .break, .break {
    word-break: break-all;
}

.l-flex {
    display: flex;
}

.l-valign_middle {
    display: flex;
    align-items: center;
}

.l-flex .l-align_right {
    justify-content: flex-end;
}

.l-flex .l-align_center {
    justify-content: center;
}

.l-flex .l-align_left {
    justify-content: flex-start;
}

ul.feedbackPanel,
ul.feedbackPanel li {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.feedbackPanel li::before {
    display: none;
}

h1, h2, h3,
.o-title,
.o-title_sub {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 26px;
    line-height: 44px;
    font-weight: 600;
    color: rgb(var(--black));
}

h2, h3,
.o-title_sub,
.o-title_sub .o-checkbox-label {
    font-size: var(--text-title);
    line-height: 1.3;
    margin-bottom: 24px;
}

h3 {
    font-size: 17px;
}

.o-title + .o-title_sub {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: var(--text-small);
    margin-top: 8px;
}

.dialogBox_confirm .breadcrumbs .o-title {
    font-family: 'Inter', sans-serif;
    font-size: var(--text-title);
    padding: 0;
    margin: 0;
    display: block;
    line-height: 1.5;
    font-weight: 400;
}

.o-title_light {
    font-size: var(--text-label);
    font-weight: 300;
    padding: 25px 0 15px;
}

.o-text_small {
    font-size: var(--text-extra-small);
    line-height: 1.2;
}

.o-text_increased {
    font-size: var(--text-normal);
}

.o-text_medium {
    font-size: var(--text-label);
    line-height: 1.5;
    font-weight: 300;
    font-family: "Inter", sans-serif;
}

.o-text_light {
    font-weight: 300;
}

.o-text_form {
    font-size: var(--text-title);
    padding-bottom: 24px;
    line-height: 1.25;
    font-weight: 300;
}

.o-text_value {
    height: 40px;
    line-height: 40px;
    font-size: var(--text-small);
}

.o-text_custom {
    color: rgb(var(--custom-first));
}

.o-text_semibold, .o-simple-table__th.o-text_semibold {
    font-weight: 500;
}

.o-text_strong {
    font-weight: 700;
}

.o-word-wrap {
    word-break: break-all;
    word-break: break-word;
    word-wrap: anywhere;
}

.o-toggle {
    position: relative;
    padding-left: 50px;
}

.o-toggle_absolute {
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
}

.o-toggle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 34px;
    height: 14px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-block;
    background-color: rgba(var(--light-grey), 1);
    transition: background 300ms ease 0s;
}

.o-toggle::after {
    content: '';
    position: absolute;
    left: -2px;
    top: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.12), 0 0 2px rgba(0, 0, 0, 0.14);
    background-color: rgb(255,255,255);
    transition: all 300ms ease 0s;
}

.o-toggle_active::before {
    background: rgba(var(--custom-first), 0.5);
}

.o-toggle_active::after {
    background: rgba(var(--custom-first), 0.5);
    background: rgb(var(--custom-first));
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2), 0 2px 2px rgba(0, 0, 0, 0.12), 0 0 2px rgba(0, 0, 0, 0.14);
    left: 16px;
}
.o-toggle .o-tooltip {
    position: absolute;
    left: auto;
    top: -55px;
    right: 10px;
}

.o-toggle .o-tooltip::before {
    top: auto;
    right: 13px;
    bottom: -8px;
    transform: rotate(-45deg);
    left: auto;
}

.dialog__footer_default {
    display: none !important;
}

.o-link,
.o-link:visited, a {
    color: rgb(var(--custom-first));
    text-decoration: none;
    cursor: pointer;
}

.o-link:hover,
a:hover {
    text-decoration: underline;
}

.o-link_dashed {
    border-bottom: 1px dashed rgb(var(--graphite));
    text-decoration: none;
}

.o-link_dashed:hover {
    color: rgb(var(--custom-first));
    border-color: rgb(var(--custom-first));
    text-decoration: none;
    cursor: pointer;
}

.o-icon,
.o-icon_small,
.o-icon_select,
.o-icon_change-view {
    width: 20px;
    height: 20px;
    fill: rgb(var(--graphite));
    vertical-align: middle;
    transition: fill var(--standart-transition);
}

.toolbar__button:hover .o-icon,
.o-link-with-icon:hover .o-icon,
.o-icon:hover,
.o-icon:hover .o-icon,
.o-link-with-icon:hover .o-icon_small,
.o-icon_small:hover {
    fill: rgb(var(--custom-first));
}

.o-icon_small {
    width: 20px;
    height: 20px;
}

.o-icon_collapse {
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
}

.disabled:hover .o-icon {
    fill: rgb(var(--graphite));
}

.o-link-with-icon,
.o-link-with-icon:link,
.o-link-with-icon:visited,
.o-link-with-icon:hover {
    padding: 7px 16px 8px;
    color: rgb(var(--graphite));
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.o-link-with-icon:hover {
    color: rgb(var(--custom-first));
}

.o-link-with-icon .o-link-with-icon__text {
    margin-left: 8px;
}

.o-link-with-icon .o-icon_small {
    margin-left: -8px;
}

.switcher::after {
    content: "";
    display: block;
    clear: both;
}

.switcher-item {
    float: left;
    height: 40px;
    padding: 8px 20px;
    border: solid 1px rgb(var(--light-grey));
    margin-right: -1px;
    position: relative;
    cursor: pointer;
    margin-bottom: 16px;
}

.switcher-item_current,
.switcher_disabled .switcher-item.switcher-item_current {
    border-color: rgb(var(--custom-first));
    color: rgb(var(--custom-first));
    z-index: 1;
    background-color: #ffffff;
}

.switcher_disabled .switcher-item {
    background: rgba(0, 0, 0, .05);
    border: solid 1px rgb(var(--light-grey));
    color: rgb(var(--graphite));
    cursor: auto;
}

.swipe {
    width: 45px;
    height: 24px;
    border-radius: 16px;
    background-color: rgb(var(--white));
    border: solid 1px #cdcfd3;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

.swipe::after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #cdcfd3;
    position: absolute;
    left: 2px;
    top: 2px;
    transition: left 300ms ease 0s;
}

.swipe_active {
    background-color: rgb(var(--custom-first));
    border: solid 1px rgb(var(--custom-first));
}

.swipe_active::after {
    left: 23px;
    background: rgb(var(--white));
}

.o-title_sub .swipe {
    position: absolute;
    right: 0;
    top: 0;
}

[class*="o-button"] {
    display: inline-block;
    cursor: pointer;
    padding: 0 14px;
    height: 40px;
    line-height: 38px;
    border-style: solid;
    border-width: 1px;
    border-radius: 4px;
    text-align: center;
    font-weight: 400;
    text-decoration: none !important;
    transition: color, background-color, opacity var(--standart-transition);
}

.o-button {
    background-color: transparent;
    border-color: rgba(var(--custom-first), .32);
    color: rgb(var(--custom-first));
}
.o-button_primary {
    background-color: rgb(var(--custom-first));
    color: rgb(var(--white));
    border-color: rgb(var(--custom-first));
}
.o-button_transparent {
    background-color: transparent;
    color: rgb(var(--custom-first));
    border-color: transparent;
}

.o-button:hover {
    background-color: rgba(var(--custom-first), .08);
    border-color: rgba(var(--custom-first), 0.32);
}
.o-button_primary:hover {
    background-color: rgba(var(--custom-first), .92);
    border-color: rgba(var(--custom-first), 0.92);
}
.o-button_transparent:hover {
    background-color: rgba(var(--custom-first), 0.08);
    border-color: transparent;
}

.o-button:active {
    background-color: rgba(var(--custom-first), 0.16);
}
.o-button_primary:active {
    background-color: rgb(var(--custom-first));
    filter: grayscale(0.28);
}
.o-button_transparent:active {
    background-color: rgba(var(--custom-first), 0.16);
}

[class*="o-button"]:focus-visible, [class*="o-button"]:focus {
    outline: 2px solid rgba(95, 140, 229, 0.32);
}

[class*="o-button"]:disabled, [class*="o-button"].disabled {
    cursor: default;
    opacity: 1;
}

.o-button:disabled, .o-button.disabled {
    border-color: rgb(var(--light-grey));
    background-color: rgb(var(--light-grey));
    color: rgb(var(--grey));
}
.o-button_primary:disabled, .o-button_primary.disabled {
    border-color: rgb(var(--modern-grey));
    background-color: rgb(var(--modern-grey));
    color: rgb(var(--white));
}
.o-button_transparent:disabled, .o-button_transparent.disabled {
    border-color: transparent;
    background-color: transparent;
    color: rgb(var(--grey));
}

.o-button_large, .o-section [class*="o-button"] {
    height: 44px;
    line-height: 42px;
    padding: 0 20px;
}
.o-button_small, .o-section .o-button_small {
    height: 36px;
    line-height: 34px;
    padding: 0 10px;
}
.o-button_wide {
    width: 100%;
}

[class*="o-button"] .o-icon {
    height: 20px;
    width: 20px;
    margin-right: 2px;
}

.o-button_small .o-icon {
    height: 16px;
    width: 16px;
}

.o-button_large .o-icon {
    height: 24px;
    width: 24px;
}

.o-button .o-icon, .o-button_transparent .o-icon {
    fill: rgb(var(--custom-first));
}

.o-button:disabled .o-icon,
.o-button.disabled .o-icon,
.o-button_transparent:disabled .o-icon,
.o-button_transparent.disabled .o-icon {
    fill: rgb(var(--grey));
}

.o-button_primary .o-icon,
.o-button_primary:disabled .o-icon,
.o-button_primary.disabled .o-icon {
    fill: rgb(var(--white));
}

[class*="o-button"] + [class*="o-button"] {
    margin-left: 8px;
}

.o-underinput {
    line-height: 1.2;
    font-size: var(--text-small);
    margin-top: -10px;
    margin-bottom: 16px;
    opacity: 0.74;
    clear: both;
}

.daterangepicker {
    position: absolute;
    z-index: 99;
    width: 600px;
    height: 328px;
    margin-top: 3px;
    border-radius: 2px;
    box-shadow: 0 0 10px 0 #eaebec;
    background-color: rgb(var(--white));
    border: solid 1px rgb(var(--light-grey));
    padding: 18px 26px;
    display: none;
    cursor: pointer;
}

.o-link_calendar {
    position: absolute;
    right: 6px;
    top: 10px;
    background-color: rgba(255, 255, 255, 0);
}

.o-link_calendar + .o-tooltip_right .o-tooltip_icon {
    right: -26px;
}

.o-link_calendar + .o-tooltip_right .o-tooltip {
    margin-left: 32px;
}

.o-form__period + .o-link_calendar {
    right: 10px;
    top: 8px;
}

.o-link_calendar .o-icon_small {
    vertical-align: top;
}

.o-input_date:disabled + .o-link_calendar .o-icon_small {
    cursor: default;
    opacity: 0.5;
}

.o-input_date:disabled + .o-link_calendar .o-icon_small:hover {
    fill: rgb(var(--graphite));
}

.daterangepicker .calendar {
    width: 48%;
    float: left;
}

.daterangepicker .calendar.right {
    float: right;
}

.daterangepicker.single {
    width: 275px;
    height: 328px;
    padding: 12px 18px;
}

.daterangepicker.single .calendar {
    width: 100%;
    float: none;
}

.daterangepicker .select_ranges {
    display: none;
}

.daterangepicker table,
.daterangepicker td,
.daterangepicker th {
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

.daterangepicker table {
    width: 100%;
    position: relative;
    table-layout: fixed;
}

.daterangepicker th {
    padding-bottom: 10px;
}

.daterangepicker tr:first-child th:first-child,
.daterangepicker tr:first-child th:last-child {
    width: 36px;
}

.daterangepicker th.month {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 36px;
}

.daterangepicker td div {
    padding: 2px 0;
    margin: 4px 0;
    cursor: pointer;
}

.daterangepicker td .disabled {
    cursor: text;
    opacity: .5;
}

.daterangepicker td .off,
.daterangepicker td .weekend {
    opacity: .5;
}

.daterangepicker td .start-date,
.daterangepicker td .end-date,
.daterangepicker td .in-range,
.daterangepicker td .active {
    color: rgb(var(--white));
    background: rgb(var(--custom-first));
}

.daterangepicker td .start-date {
    border-top-left-radius: 18px;
    border-bottom-left-radius: 18px;
}

.daterangepicker td .end-date {
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}

.fa-chevron-left,
.fa-chevron-right {
    width: 36px;
    height: 36px;
    display: inline-block;
    margin: 0 auto;
    cursor: pointer;
}

.daterangepicker__wrapper-button {
    position: absolute;
    top: 2px;
    right: 0;
    white-space: nowrap;
}

.o-icon_daterangepicker {
    width: 36px;
    height: 36px;
}

.fa-chevron-right {
    transform: rotate(180deg);
    width: 30px;
    height: 30px;
    overflow: hidden;
    vertical-align: middle;
}

.fa-chevron-right .o-icon_daterangepicker {
    margin: -3px 0 0 -3px;
}

.daterangepicker__icon-current-month {
    margin-left: -0.25rem;
    fill: none;
    stroke: rgb(var(--graphite));
    vertical-align: middle;
    width: 30px;
    height: 30px;
}

.daterangepicker__icon-current-month:hover {
    stroke: rgb(var(--custom-first));
}

.o-checkbox, .o-radio, input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

input[type="radio"] + label,
.o-checkbox-label,
.o-radio-label {
    padding-left: 28px;
    min-height: 20px;
    display: inline-block;
    line-height: 1.43;
    position: relative;
    cursor: pointer;
    margin-bottom: 8px;
}

.o-checkbox-label::before {
    content: "";
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: rgb(var(--white));
    border: 1px solid #D8DADE;
    box-sizing: border-box;
    border-radius: 4px;
    position: absolute;
}

.o-checkbox-label::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><path fill='%23fff' d='M6.4107 9.69522C6.49027 9.75889 6.605 9.75253 6.67706 9.68047L12.6347 3.72278C12.791 3.56657 13.0442 3.56657 13.2004 3.72278L14.049 4.57131C14.2052 4.72752 14.2052 4.98079 14.049 5.137L6.95207 12.2339C6.80794 12.378 6.5785 12.3907 6.41935 12.2634L2.31235 8.97779C2.13984 8.83979 2.11187 8.58807 2.24988 8.41557L2.99951 7.47853C3.13752 7.30602 3.38923 7.27805 3.56174 7.41606L6.4107 9.69522Z' /></svg>");
}

.sv_inverse .o-checkbox-label::after {
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><path fill='rgb(22,22,22)' d='M6.4107 9.69522C6.49027 9.75889 6.605 9.75253 6.67706 9.68047L12.6347 3.72278C12.791 3.56657 13.0442 3.56657 13.2004 3.72278L14.049 4.57131C14.2052 4.72752 14.2052 4.98079 14.049 5.137L6.95207 12.2339C6.80794 12.378 6.5785 12.3907 6.41935 12.2634L2.31235 8.97779C2.13984 8.83979 2.11187 8.58807 2.24988 8.41557L2.99951 7.47853C3.13752 7.30602 3.38923 7.27805 3.56174 7.41606L6.4107 9.69522Z' /></svg>");
}

.part-selected.o-checkbox-label::after {
    top: 15px !important;
    left: 11px !important;
    width: 10px;
    height: 2px;
    background: rgb(var(--white)) none;
}

.part-selected.o-checkbox-label::before,
.o-checkbox.checked + .o-checkbox-label::before,
.o-checkbox:checked + .o-checkbox-label::before {
    background-color: rgb(var(--custom-first));
    border-color: rgb(var(--custom-first));
}

.login-page__form .o-checkbox-label {
    line-height: 20px;
}

.o-checkbox-label_tip {
    padding-right: 26px;
}

.o-checkbox-label_tip .o-tooltip_icon {
    top: 0;
    right: 0;
}

.o-checkbox-label_tip .o-tooltip {
    top: -14px;
}

[disabled] + .o-checkbox-label,
input[type="radio"][disabled] + label,
[disabled] + .o-radio-label {
    opacity: 0.5;
    cursor: default;
}

input[type="radio"] + label,
.o-radio-label {
    padding-left: 32px;
    display: block;
    margin-bottom: 16px;
}

.radio-group_inline input[type="radio"] + label {
    display: inline-block;
    margin-right: 2.25rem;
}

.radio-group_inline > br {
    display: none;
}

.o-checkbox_label {
    margin-bottom: 10px;
}

.th-checking.checking .o-table__th,
.o-table__td.checking {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 6px;
}

.th-checking.checking .o-table__th .o-checkbox-label,
.o-table__td.checking .o-checkbox-label,
.o-simple-table__th.checking .o-checkbox-label,
.o-simple-table__td.checking .o-checkbox-label {
    padding: 0;
    margin: 10px 0 0;
    border-radius: 8px;
    width: 32px;
    height: 32px;
}

.th-checking.checking .o-table__th .o-checkbox-label:hover,
.o-table__td.checking .o-checkbox-label:hover,
.o-simple-table__th.checking .o-checkbox-label:hover,
.o-simple-table__td.checking .o-checkbox-label:hover {
    background: rgb(var(--light-grey));
}

.th-checking.checking .o-table__th .o-checkbox-label::before,
.o-table__td.checking .o-checkbox-label::before,
.o-simple-table__th.checking .o-checkbox-label::before,
.o-simple-table__td.checking .o-checkbox-label::before {
    top: 6px;
    left: 6px;
}

.th-checking.checking .o-table__th .o-checkbox-label::after,
.o-table__td.checking .o-checkbox-label::after,
.o-simple-table__th.checking .o-checkbox-label::after,
.o-simple-table__td.checking .o-checkbox-label::after {
    top: 8px;
    left: 8px;
}

.o-simple-table__th.checking .o-checkbox-label,
.o-simple-table__td.checking .o-checkbox-label {
    margin-top: -6px;
    margin-left: -6px;
    margin-bottom: -6px;
}

.o-title_sub .o-checkbox-label {
    margin-top: 5px;
}

.o-checkbox-group > .o-checkbox-label {
    margin-bottom: 0.5rem;
}

.o-checkbox-group__child {
    padding-left: 1.5rem;
}

input[type="radio"] + label::before,
.o-radio-label::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
    border: 1px solid rgb(var(--modern-grey));
    border-radius: 50%;
}

.o-checkbox-label:hover::before,
input[type="radio"]:hover + label::before,
.o-checkbox:focus + label::before,
input[type="radio"]:focus + label::before {
    border-color: rgba(var(--custom-first), 0.8);
}

input[type="radio"]:checked + label::before,
.o-radio-label.checked::before {
    border-color: rgb(var(--custom-first));
    border-width: 6px;
}

input[type="radio"]:checked + label::after,
input:checked + .o-radio-label::after {
    display: block;
}

input[type="radio"]:hover + label::after {
    background: #ccc;
}

input:-ms-input-placeholder {
    color: #a9a9a9
}

input::placeholder {
    color: #a9a9a9;
}

.o-label {
    font-size: var(--text-small);
    line-height: 20px;
    padding-bottom: 5px;
}

.o-amount_label {
    text-transform: uppercase;
    font-size: var(--text-increased);
    font-weight: 300;
    line-height: 55px;
    position: absolute;
    right: 10px;
    top: 0;
    opacity: 0.5;
    z-index: 2;
}

.o-amount {
    font-weight: 500;
}

.o-amount__dc {
    font-weight: 400;
}

.o-notes,
.o-notes_small {
    font-size: var(--text-medium);
    line-height: 1.2;
    padding-top: 9px;
}

.o-notes_small {
    font-size: var(--text-small);
}

.o-fieldset {
    padding-bottom: 24px;
    position: relative;
}

.o-fieldset_bottom {
    margin-bottom: -16px;
}

.o-fieldset_absolute {
    position: absolute;
    left: 100%;
    bottom: 16px;
    margin-left: 95px;
    width: 300px;
    padding-right: 20px;
    z-index: 3;
}

.o-fieldset_absolute > .o-fieldset {
    padding-bottom: 0;
}

.o-input,
.o-select__value,
.o-textarea {
    border: solid 1px rgb(var(--light-grey));
    background: rgb(var(--white));
    display: block;
    width: 100%;
    padding: 11px 10px;
    height: 40px;
    line-height: 20px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
    font-size: var(--text-small);
    font-weight: 400;
    color: rgb(var(--graphite));
}

.orgSelect .o-select__value {
    border: solid 1px rgb(216, 218, 222);
}

.o-input[type='password'] {
    font-family: "Open Sans", sans-serif;
}

.o-input_text_s, .o-input_text_s .o-select__value {
    font-size: var(--text-extra-small);
    padding-left: 5px;
    padding-right: 5px;
    letter-spacing: -0.25px;
}

textarea {
    resize: vertical;
}

.o-input,
.o-select__value,
.editLabel input {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.o-input_hidden-dictionary + .o-icon_button-wrapper,
.o-input_hidden-dictionary + .feedbackMessage + .o-icon_button-wrapper {
    display: none;
}

.textarea-prefix {
    position: absolute;
    width: 90%;
    left: 1px;
    top: 8px;
    padding: 0 10px;
    background: rgb(var(--white));
}

.textarea-prefix + .o-textarea {
    padding-top: 32px;
}

.product-name {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 28px;
    color: rgb(var(--black));
    margin-bottom: 32px;
}

.product-name__icon {
    width: 24px;
    height: 24px;
    padding: 4px;
    fill: rgb(var(--custom-first));
    cursor: pointer;
    margin-top: -4px;
}

.editLabel {
    display: inline;
    cursor: pointer;
}

.editLabel.editing + .product-name__icon,
.editLabel.editing + .svg-icon_card-status.svg-icon_card-status_relative {
    display: none;
}

.editLabel.editing {
    display: block;
    margin-right: 0;
}

.o-title.static .editLabel {
    cursor: auto;
}

.o-input_small {
    height: 32px;
    font-size: 13px;
    margin-bottom: 0;
}

.editLabel input {
    margin-bottom: 4px;
    max-width: 880px;
}

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;
}

.o-input_amount {
    height: 55px;
    padding-top: 14px;
    padding-right: 40px;
    padding-bottom: 14px;
    font-size: 24px;
    font-weight: 300;
}

.o-input_has-icon {
    padding-right: 40px;
}

.o-input:disabled,
.o-textarea:disabled,
.o-select_static .o-select__value,
.o-select.disabled .o-select__value {
    background-color: rgba(0, 0, 0, .05);
}

.o-select__item.disabled, .o-select__item.disabled:hover {
    background-color: rgb(var(--white));
    opacity: .5;
    cursor: not-allowed;
}

.o-select.disabled:hover .o-icon_select,
.o-select.o-select_static:hover .o-icon_select {
    fill: rgb(var(--graphite));
}

.o-input_disabled {
    background-color: rgb(var(--ghostly-white));
    border-color: #cdcfd3;
    color: rgba(74, 74, 74, .5);
}

.o-textarea {
    height: 114px;
    min-height: 114px;
    resize: vertical;
    line-height: 1.28;
}

.o-textarea_fixed {
    resize: none;
}

.textarea-counter {
    position: absolute;
    top: 100px;
    right: 17px;
    opacity: 0.5;
    font-size: var(--text-extra-small);
}

.o-undertextarea {
    opacity: .5;
    margin-bottom: 16px;
}

.o-input:focus {
    border-bottom-color: rgb(var(--custom-first));
    border-bottom-width: 2px;
}

.o-input:focus {
    padding-bottom: 10px;
}

.o-input_slider,
.o-input_slider:focus {
    margin: 0;
    border-color: rgb(var(--light-grey));
    border-bottom-width: 1px;
    padding-bottom: 11px;
}

.o-form__input.o-input_slider,
.o-form__input.o-input_slider:focus {
    margin-bottom: 16px;
}

.o-form__input + .run-slider {
    margin-top: -26px;
}

.o-input_amount:focus {
    padding-bottom: 13px;
}

.o-input.invalid,
.invalid .o-select__value,
.o-textarea.invalid {
    border-bottom-width: 2px;
    border-bottom-color: rgb(var(--critical));
    padding-bottom: 10px;
}

.o-input.o-input_success {
    background: url('img/icons/o-input_success.svg') no-repeat right 9px top 9px;
    border-bottom: 2px solid rgb(var(--success-color));
}

.o-input.o-input_error {
    background: url('img/icons/o-input_error.svg') no-repeat right 9px top 9px;
    border-bottom: 2px solid rgb(var(--critical));
}

.o-warning {
    color: rgb(var(--critical));
}

.o-success {
    color: rgb(var(--success-color));
}

.o-notify {
    color: rgb(var(--system-attention));
}

.o-warning_underinput,
.validationMessage {
    margin-top: -14px;
    margin-bottom: 14px;
    font-size: var(--text-small);
    color: rgb(var(--critical));
    display: block;
    line-height: 1.2;
}

.o-checkbox-label + .o-warning_underinput,
.o-checkbox-label + .validationMessage {
    margin-top: 0;
    margin-bottom: 0;
}

.invalid.notify {
    border-bottom-color: rgb(var(--attention-color)) !important;
}

.invalid.notify + .o-warning_underinput,
.invalid.notify + .validationMessage {
    color: rgb(var(--attention-color));
}

.validationMessage {
    display: none;
}

.invalid + .validationMessage {
    display: block;
}

.o-input_slider + .validationMessage {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: -100%;
    margin-bottom: 6px;
}

.o-warning_underinput {
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0;
}

.login-page__form .o-warning_underinput {
    text-align: left;
    margin-top: -14px;
    margin-bottom: 14px;
}

.o-input_date {
    padding-right: 30px;
    /*background: rgb(var(--white)) url(img/icons/o-icon__calendar_small.svg) no-repeat 96% 8px;
    cursor: pointer;*/
}

.o-select, .o-select_static {
    position: relative;
    cursor: pointer;
}

.o-select_static {
    cursor: auto;
}

.o-select__value {
    padding-right: 38px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: rgb(var(--white));
    font-size: inherit;
}

.o-select__list,
.wicket-aa-container ul {
    display: none;
    position: absolute;
    margin-top: 0;
    left: 0;
    top: 100%;
    width: 100%;
    max-height: 282px;
    padding: 4px 0;
    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(--white));
    border: solid 1px rgb(var(--light-grey));
}

.corporate-cards__actions .o-select__list {
    max-height: 250px;
}

.wicket-aa-container ul,
.wicket-aa-container li {
    padding: 0;
    margin: 0;
    list-style: none;
}

.wicket-aa-container ul {
    display: block;
    position: relative;
    padding: 4px 0;
}

.wicket-aa-container li::before,
.wicket-aa-container li::after {
    display: none;
}

.o-select__list_simple {
    width: 220px;
    left: auto;
    right: 0;
    top: 32px;
}

.o-select__list_details .o-icon_small {
    margin-top: -4px;
    float: right;
    display: none;
}

.o-select__list_details .enabled .o-icon_small {
    display: block;
}

.toolbar__button .o-select__list_simple {
    right: auto;
    left: 0;
    top: 100%;
    margin-top: 3px;
}

.opened .o-select__list {
    display: block;
}

.o-select__item,
.wicket-aa-container li {
    display: block;
    padding: 10px 12px;
    cursor: pointer;
    text-transform: none;
    color: rgb(var(--graphite));
    word-wrap: break-word;
}

.toolbar__button .o-select__item:hover {
    text-decoration: none;
}

.o-select__footer {
    margin: 10px;
    border-top: 1px solid rgb(var(--light-grey));
    padding: 10px 0 0;
    text-align: center;
}

.o-select__footer [class*="o-button"] {
    width: 100%;
}

.o-select .o-form__label {
    margin-left: 20px;
}

.o-select .o-input,
.o-select .o-form__input {
    margin: 12px 10px;
    width: calc(100% - 20px);
}

.o-select__item:hover,
.wicket-aa-container li:hover {
    background: rgb(var(--ghostly-white));
}

.o-select__list_currency {
    overflow-y: hidden;
    height: 230px;
    padding-bottom: 54px;
    max-height: none;
}

.o-select__list_currency .o-select__items-container {
    overflow-y: auto;
    max-height: 170px;
}

.o-select__list_currency .o-select__footer {
    position: absolute;
    bottom: 0;
    width: 200px;
}

.o-select__list_currency .o-checkbox-label {
    margin: 0;
}

.o-icon_select {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -10px;
}

.reg-icon_close,
.o-icon_close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 3;
}

.closeDialog {
    cursor: pointer;
}

.o-icon_clear {
    position: absolute;
    right: 12px;
    top: 12px;
}

.o-tabs, .tab-row {
    border-bottom: 1px solid rgb(var(--light-grey));
    width: 100%;
    margin-bottom: 24px;
}

.tab-row ul,
.tab-row li {
    padding: 0;
    margin: 0;
    list-style: none;
    display: block;
}

.o-tabs::after,
.tab-row::after {
    content: "";
    display: block;
    clear: both;
}

.o-tabs_border_null {
    border: 0;
}

.o-tabs__item,
.tab-row li {
    float: left;
    margin-right: 40px;
    font-size: 14px;
}

.o-tabs__nds-link {
    float: left;
    font-size: var(--text-normal);
    padding: 10px 12px;
    height: 40px;
    border: 1px solid rgb(var(--light-grey));
    line-height: 1.25;
    margin-right: -1px;
    cursor: pointer;
}

.o-tabs_nds {
    border: 0;
}

.o-tabs__nds-link::after {
    display: none;
}

.o-tabs__nds-link.o-tabs_current {
    border-color: rgb(var(--custom-first));
}

.o-tabs__nds-link.disabled, .disabled .o-tabs__nds-link {
    background-color: rgba(0, 0, 0, .05);
    cursor: auto;
}

.o-tabs__nds-link.disabled:not(.o-tabs_current):hover, .disabled .o-tabs__nds-link:not(.o-tabs_current):hover {
    color: rgb(var(--graphite));
}

.tab-row li::before {
    display: none;
}

.o-tabs_border_null .o-tabs__item {
    margin-right: 20px;
}

.o-tabs_current,
.o-tabs__item.selected .o-tabs__link,
.tab-row li.selected {
    position: relative;
}

.o-tabs_current::after,
.tab-row li.selected::after,
.o-tabs__item.selected .o-tabs__link::after {
    position: absolute;
    content: "";
    width: 100%;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: rgb(var(--custom-first));
}

.o-tabs_border_null .o-tabs_current::after,
.o-tabs_border_null .o-tabs__item.selected .o-tabs__link::after {
    display: none;
}

.o-tabs__link,
.tab-row a {
    cursor: pointer;
    display: inline-block;
    text-decoration: none !important;
    color: rgb(var(--graphite));
    transition: color var(--standart-transition);
    line-height: 40px;
    height: 40px;
}

div.o-tabs__link {
    display: block;
}

.o-tabs_current,
.o-tabs_current .o-tabs__link,
.o-tabs__link:hover,
.tab-row a:hover,
.tab-row .selected a,
.o-tabs__item.selected .o-tabs__link {
    color: rgb(var(--custom-first));
}

.o-table {
    width: 100%;
    border-collapse: collapse;
    border: 0;
    margin: 0;
    padding: 0;
    table-layout: fixed;
}

.empty-table + .o-table {
    display: none;
}

.empty-table {
    text-align: center;
    font-size: var(--text-small);
    padding: 30px;
    position: relative;
}

.tariffs-grid__item-content.empty-table {
    position: static;
}

.th-checking {
    width: 37px;
}

.o-table th {
    padding: 0;
    margin: 0;
    vertical-align: middle;
    font-weight: normal;
    position: sticky;
    top: 122px;
    z-index: 1;
}

.o-table-wrapper_filterless .o-table th {
    top: 64px;
}

.o-table-headers_top_null th,
.sessions-table.o-table th {
    top: 0;
}

.msie .o-table th,
.dialogBox .o-table th {
    position: static !important;
    top: 0 !important;
    background-color: rgb(var(--smoky-white));
}

.currency-table .o-table th {
    opacity: 0.5;
    padding: 0 0 24px;
}

.currency-table .o-table td {
    padding: 0;
    border: 0;
}

.currency-table_single {
    padding-bottom: 20px !important;
}

.currency-table_single .o-text_form {
    padding: 20px 0;
}

.currency-table_single .o-table th {
    padding-bottom: 20px;
}

.currency-table_single .o-table td {
    border-top: 1px solid rgb(var(--light-grey)) !important;
}

.o-table td {
    padding: 16px 10px;
    vertical-align: top;
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgb(var(--light-grey));
}

.o-table tr:last-child td {
    border: 0;
}

.o-table-wrapper {
    background-color: rgb(var(--white));
    border-radius: 4px;
    margin: 20px 0;
}

.o-table__th {
    text-align: left;
    position: relative;
    padding: 16px 10px;
    height: 52px;
    background-color: rgb(var(--white));
    border-bottom: solid 1px rgb(var(--light-grey));
    font-weight: 500;
    z-index: 9;
    transition: box-shadow var(--standart-transition);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: rgb(var(--black));
}

th:last-child .o-table__th {
    border-top-right-radius: 4px;
}

th:first-child .o-table__th {
    border-top-left-radius: 4px;
}

td, th {
    text-align: left;
}

.o-table__th a:link,
.o-table__th a:visited {
    display: block;
    padding: 16px 34px 16px 10px;
    margin: -16px -10px 0;
    position: relative;
    color: rgb(var(--graphite));
    text-decoration: none;
}

.o-table__th a:hover {
    background-color: rgb(var(--ghostly-white));
}

.o-table__th a .sort-arrow,
.o-simple-table__th a .sort-arrow {
    width: 8px;
    height: 5px;
    position: absolute;
    top: 20px;
    right: 14px;
    fill: rgb(var(--modern-grey));
}

.o-table__th a .sort-arrow_up,
.o-simple-table__th .sort-arrow_up {
    transform: rotate(180deg);
}

.o-table__th a .sort-arrow.sort-arrow_down,
.sort-arrow_up a .sort-arrow.sort-arrow_down {
    top: 28px;
}

.sortOrderDown .o-icon.sort-arrow_up,
.sortOrderUp .o-icon.sort-arrow_down {
    fill: rgb(var(--custom-first));
}

.o-table__th_options a .sort-arrow {
    right: 48px;
}

.o-simple-table__th .o-checkbox-label {
    margin-bottom: 0;
    vertical-align: middle;
}

.o-simple-table__th a {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 16px 10px;
    color: rgb(var(--black));
    text-decoration: none;
    transition: color var(--standart-transition);
}

.o-simple-table__th a:hover {
    background-color: rgb(var(--ghostly-white));
    color: rgb(var(--custom-first));
    text-decoration: none;
}

.o-simple-table__th a .sort-arrow {
    top: 15px;
    right: 12px;
}

.o-simple-table__th a .sort-arrow_down {
    top: 23px;
}

.o-simple-table__th:first-child a {
    padding-left: 18px;
}

.o-simple-table__th:last-child a {
    padding-right: 18px;
}

.o-simple-table__th:last-child a {
    padding-right: 18px;
}

.is-fixed .o-table__th {
    position: fixed;
    top: 0;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, .1);
}

.o-table td:first-child,
.o-table th:first-child .o-table__th {
    padding-right: 0;
}

.account-report-table .o-table__td:first-child,
.account-report-table .o-table__th:first-child {
    padding-left: 16px;
}

.account-report-table .o-table__th:first-child a:link,
.account-report-table .o-table__th:first-child a:visited {
    margin-left: -16px;
    padding-left: 16px;
}

.account-report-table .o-table__td:last-child,
.account-report-table .o-table__th:last-child {
    padding-right: 16px;
}

.o-table__th_options .display-options {
    top: 6px;
    right: -20px;
}

.o-table tr:hover {
    background: rgb(var(--ghostly-white));
}

tr.bg_gray {
    background: rgb(var(--smoky-white));
}

.o-table_print {
    width: 100%;
}

.o-table_print td, .o-table_print th {
    padding: 8px;
}

.currency-table tr:hover {
    background: rgb(var(--white));
}

.sessions-table tr:hover {
    background: inherit;
}

.tr_disabled {
    background: rgba(var(--ghostly-white), .4);
    color: rgba(var(--graphite), .4);
}

.o-dialog-table td {
    vertical-align: top;
    font-size: var(--text-normal);
}

.o-delimiter {
    height: 100%;
    width: 1px;
    margin: 0 auto;
    background: rgba(151, 151, 151, .2);
    position: absolute;
    left: 50%;
    margin-left: -10px;
}

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

.input-delimiter {
    font-size: var(--text-medium);
    font-weight: 400;
    color: rgb(var(--graphite));
    position: absolute;
    opacity: 0.5;
    left: -17px;
    top: 8px;
}

.time-delimiter {
    font-size: var(--text-medium);
    color: rgb(var(--graphite));
    opacity: 0.5;
    line-height: 52px;
    text-align: center;
}

.l-grid_half .input-delimiter {
    left: -3px;
    top: 7px;
}

[class*="l-grid_"] {
    float: left;
    padding-right: 20px;
}

.l-grid_1 {
    width: 4.6875rem;
}

.l-grid_2 {
    width: 9.375rem;
}

.l-grid_3 {
    width: 14.0625rem;
}

.l-grid_4 {
    width: 18.75rem;
}

.l-grid_5 {
    width: 23.4375rem;
}

.l-grid_6 {
    width: 28.125rem;
}

.l-grid_7 {
    width: 32.8125rem;
}

.l-grid_8 {
    width: 37.5rem;
}

.l-grid_9 {
    width: 42.1875rem;
}

.l-grid_10 {
    width: 46.875rem;
}

.l-grid_11 {
    width: 51.5625rem;
}

.l-grid_12 {
    width: 56.25rem;
}

.o-section .l-grid_12 {
    width: 100%;
}

.l-grid-row {
    padding-bottom: 20px;
}

.l-grid_half {
    width: 50%;
    padding-right: 10px;
}

.l-grid_half + .l-grid_half {
    padding-right: 0;
    padding-left: 10px;
}

.l-position_relative {
    position: relative;
}

.l-align_left {
    text-align: left;
}

.l-align_right {
    text-align: right;
}

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

.l-vertical-align_middle {
    vertical-align: middle;
}

.l-align_middle {
    display: inline-block;
    vertical-align: middle;
}

.l-padding_null {
    padding: 0;
}

.l-float_right {
    float: right;
}

.l-float_left {
    float: left;
}

.l-height_full {
    overflow-y: hidden;
}

.l-height_full > [class*="l-grid_"] {
    margin-bottom: -20000px;
    padding-bottom: 20000px;
}

.l-height_full .l-grid_4 ul > li {
    padding-left: 24px;
}

.l-height_full .l-grid_4 ul > li:before {
    left: 0;
}

.l-height_full.l-height_absolute {
    overflow: visible;
    position: relative;
}

.l-height_full.l-height_absolute > [class*="l-grid_"] {
    margin-bottom: 0;
    padding-bottom: 0;
}

.l-height_full.l-height_absolute > .l-grid_1 {
    position: absolute;
    left: 32.8125rem;
    top: 0;
    height: 100%;
}

.l-height_full.l-height_absolute > .l-grid_4 {
    margin-left: 4.6875rem;
}

.is-ellipsed, .is-ellipsed_inline {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.is-ellipsed_inline {
    display: inline-block;
    max-width: 100%;
}


.is-colored {
    color: rgb(var(--custom-first));
    fill: rgb(var(--custom-first));
}

.is-inactive,
.is-inactive .o-icon {
    cursor: default !important;
    fill: rgb(var(--graphite)) !important;
}

.is-rotated {
    transform: rotate(180deg);
}

.is-radial_bottom {
    border-radius: 0 0 4px 4px;
}

.is-blured {
    overflow: hidden;
}

.is-blured::after {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--graphite), .75);
    z-index: 99;
}

.body.is-blured {
    min-height: 100vh;
}

[class*="is-popup"] {
    width: 334px;
    height: auto;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -167px;
    transform: perspective(1px) translateY(-50%);
    max-height: 90vh;
    overflow: auto;
    padding: 16px 20px;
    font-size: var(--text-small);
    border-radius: 2px;
    background-color: rgb(var(--white));
    border: solid 1px rgb(var(--light-grey));
    z-index: 9998;
}

[class*="is-popup"].save-confirm {
    width: 392px;
    border-radius: 8px;
}


[class*="is-popup"].success {
    text-align: center;
}

.timeoutDialog.is-popup_alert {
    z-index: 9999;
}

.timeoutDialog.is-popup_alert + [class*="is-popup"] {
    display: none;
}

.is-popup_alert.systemAlert .content {
    margin-bottom: 16px;
}

.is-popup_alert.systemAlert .alert-title .o-icon_close {
    cursor: pointer;
}

.keyPath__attention {
    left: auto;
    margin: -150px 0 0 -375px;
    transform: none;
    position: absolute;
}

.alert-title,
.info-header {
    margin: -16px -20px 15px;
    padding: 24px 20px 24px 60px;
    line-height: 18px;
    border-bottom: 1px solid rgb(var(--light-grey));
    font-size: var(--text-medium);
    color: rgb(var(--critical));
    position: relative;
}

.success-info__content {
    margin: 20px 0;
    line-height: 1.2;
    font-size: var(--text-label);
}

.info-header {
    color: rgb(var(--success-color));
    padding-left: 20px;
}

.info-header .o-icon {
    margin-right: 15px;
}

.alert-title__icon {
    width: 28px;
    height: 28px;
    position: absolute;
    left: 20px;
    top: 20px;
}

.run-slider {
    margin-top: -10px;
}

.run-slider .slider.slider-horizontal {
    width: calc(100% - 14px);
    height: 2px;
    margin: 0 0 4px !important;
}

.run-slider .slider.slider-horizontal .slider-track {
    height: 2px;
    width: calc(100% + 14px);
    margin: 0;
    top: 0;
    left: 0;
    background: #eaebec none;
}

.run-slider .slider-handle {
    width: 14px;
    height: 14px;
    margin-top: -6px;
    margin-left: 0 !important;
    box-shadow: none;
    background: rgb(var(--custom-first)) none;
}

.run-slider .slider-selection.tick-slider-selection {
    background: rgb(var(--custom-first)) none;
}

.run-slider .slider.slider-horizontal .slider-tick {
    display: none;
}

.o-icon-restriction, .o-icon-restriction:hover {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin: -3px 4px 0 -11px;
    fill: #F14C60;
}

.account__limitation .o-icon-restriction,
.account__limitation .o-icon-restriction:hover {
    margin: -3px 4px 0 0;
}

.o-table__td .o-icon-restriction {
    margin-left: 0;
}

.loading {
    position: fixed;
    width: 97%;
    left: 0;
    top: 0;
    z-index: 99;
    display: none;
}

.loading_pub {
    width: 97%;
    left: 0;
    top: 0;
    margin: 0;
}

.loading__timeline {
    animation: loading 4s;
    background: rgb(var(--custom-first));
    height: 6px;
    border-radius: 0;
}

.loading_pub .loading__timeline {
    background: #fff;
}

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

/* PUBLIC PAGE */
.pubpage {
    position: relative;
    height: 100%;
}

.pubpage__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: var(--bank-bg-login);
}

.pubpage__bg_reg, .register-page {
    background: var(--bank-bg-registration);
}

.error-page {
    position: relative;
    min-height: 100%;
    background: var(--bank-bg-maintenance);
}

.error-page .header__logo {
    margin-left: 0;
}

.error-page__container {
    max-width: 800px;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -220px 0 0 -400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .5);
    border-radius: 10px;
    padding: 20px 40px 70px;
    background: rgba(var(--white), .7);
}

.error-page__bank-label {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: url(img/internetBankLabel.png) no-repeat 0 0;
    position: relative;
    bottom: -18px;
}

.error-page-wrapper {
    width: 100%;
    height: 100%;
    background: rgb(var(--white));
}

.error-page__content {
    width: 516px;
    height: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding-top: 160px;
}

.o-icon_404 {
    width: 516px;
    height: 240px;
    margin-bottom: 50px;
}

.pubpage__header {
    height: 95px;
    padding-top: 25px;
    background: rgb(var(--custom-first));
    position: relative;
    z-index: 1;
}

.pubpage__logo,
.register-page .pubLogo {
    display: block;
    margin: 0 auto;
    width: 220px;
    height: 45px;
    background: var(--bank-logo-pub);
    background-size: contain;
}

a.pubpage__language {
    position: absolute;
    right: 200px;
    top: 38px;
    font-size: var(--text-small);
    color: #ffffff;
}

a.pubpage__faq {
    position: absolute;
    right: 280px;
    top: 38px;
    font-size: var(--text-small);
    color: #ffffff;
}

.pubpage__language .o-icon_small, .pubpage__faq .o-icon_small {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: -20px;
    fill: #fff;
}

.pubpage__faq .o-icon_small {
    left: -22px;
}

.pubpage__language.selected {
    display: none;
}

.login-page__wrapper {
    position: relative;
    height: 100%;
    margin-top: -95px;
    padding-top: 95px;
}

.login-page__content {
    width: 360px;
    margin: 0 auto;
}

.login-page__info {
    position: relative;
    background: #fff;
    opacity: 0.75;
    margin-top: 80px;
    transition: opacity var(--standart-transition);
}

.login-page__info:hover {
    opacity: 0.9;
}

.login-page__info-header {
    position: relative;
    height: 90px;
    padding: 25px 0;
    margin: 0;
    font-size: 22px;
    line-height: 40px;
    text-align: center;
    color: #4b4b57;
    background: rgba(255, 255, 255, 1);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

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

.login-page__info-content {
    padding: 34px 0;
    background: #ffffff;
    background: -moz-linear-gradient(top, #eff0f2 0px, #edeeef 50px, #ffffff 110px);
    background: -webkit-linear-gradient(top, #eff0f2 0px, #edeeef 50px, #ffffff 110px);
    background: linear-gradient(to bottom, #eff0f2 0px, #edeeef 50px, #ffffff 110px);
}

.login-page__info-content .clear,
.login-page__info-footer {
    max-width: 1200px;
    margin: 0 auto;
}

.login-page__info-col {
    float: left;
    width: 50%;
    padding: 0 5%;
    line-height: 1.3;
    font-size: var(--text-label);
}

.login-page__info-item {
    font-size: var(--text-small);
    padding: 10px 0 6px;
    position: relative;
}

.login-page__info-item .o-icon {
    position: absolute;
    left: -40px;
    top: 4px;
    width: 36px;
    height: 36px;
}

.login-page__form {
    margin-top: 124px;
    background: #fff;
    border-radius: 4px;
    border: solid 1px rgb(var(--smoky-white));
    transition: margin 300ms linear 0s;
    padding-bottom: 1px;
}

.login-page__form-close {
    width: 12px;
    height: 12px;
    fill: #9397A1;
    fill-opacity: 0.6;
}

.login-page__form-header {
    font-size: var(--text-label);
    font-weight: 500;
    padding: 28px 24px 28px;
    line-height: 24px;
}

.login-page__form .o-tabs {
    margin-top: -13px;
}

.login-page__form .o-tabs__item {
    min-width: 50%;
    margin: 0;
    font-size: var(--text-small)
}

.login-page__form .o-tabs.o-tabs_single {
    display: none;
}

.login-page__form .o-tabs__link {
    padding-bottom: 7px;
    color: #a4a4a4;
}

.login-page__form .o-tabs_current .o-tabs__link,
.login-page__form .o-tabs__link:hover {
    color: rgb(var(--custom-first))
}

.login-page__inner {
    padding: 0 24px;
    position: relative;
    margin-bottom: 27px;
}

.login-page__tooltip-icon {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    cursor: pointer;
    margin-left: 1px;
}

.login-page__tooltip {
    width: 284px;
    display: none;
    position: absolute;
    left: calc(100% + 46px);
    bottom: 0;
    border-radius: 4px;
    border: 1px solid rgb(var(--light-grey));
    padding: 12px 12px 10px;
    line-height: 20px;
    background-color: rgb(var(--white));
    font-size: var(--text-small);
}

.login-page__form .o-label {
    line-height: 20px;
    padding-bottom: 8px;
}

.login-page__form .o-input {
    border-color: rgb(var(--light-grey));
    margin-bottom: 20px;
}

.login-page__form .o-input:focus {
    border-bottom-color: rgb(var(--custom-first));
}

.login-page__date {
    width: 152px;
    position: relative;
}

.login-page__form .o-link_calendar {
    top: 12px;
    right: 14px;
}

.login-page__form .o-link_calendar svg {
    width: 16px;
    height: 15px;
}

.login-page__form .feedback .feedbackPanel {
    margin-top: 24px;
}

.combo-input-code {
    display: flex;
    margin: 0 -7px;
}

.o-input_combo {
    display: none;
}

.combo-input-code input {
    margin: 0 7px;
    text-align: center;
    max-width: 12.3%;
}

.android .combo-input-code,
.ipad .combo-input-code,
.iphone .combo-input-code {
    display: none;
}

.android .o-input_combo,
.ipad .o-input_combo,
.iphone .o-input_combo {
    display: block;
}


.card-quartile {
    height: 196px;
    padding: 86px 14px 68px;
    background-color: rgb(var(--smoky-white));
    border-radius: 12px;
    position: relative;
}

.card-quartile__line {
    width: 100px;
    height: 20px;
    position: absolute;
    top: 24px;
    left: 24px;
    border-radius: 4px;
    background: rgba(var(--grey), 0.6);
    opacity: 0.24;
}

.card-quartile__points {
    display: inline-block;
    width: 23.61%;
    height: 40px;
    text-align: center;
    font-size: var(--text-title);
    line-height: 40px;
    color: rgba(var(--grey), 0.6);
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 700;
    vertical-align: middle;
}

.card-quartile .o-input {
    display: inline-block;
    width: 23.61%;
    margin-bottom: 0;
    vertical-align: middle;
}

.card-quartile .feedbackMessage {
    position: absolute;
    bottom: -44px;
    left: 0;
}

.card-quartile__holder {
    position: absolute;
    left: 24px;
    bottom: 24px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: var(--text-small);
    line-height: 20px;
    letter-spacing: 0.08em;
    color: rgba(var(--grey), 0.6);
}

.login-page__form .o-button {
    display: block;
    width: 100%;
    text-align: center;
    margin: 32px 0 20px;
    font-size: var(--text-small);
}

.login-page__form .loginForm__row_phone {
    margin-bottom: -8px;
}

.login-page__component a {
    text-decoration: none !important;
}

.login-page__component .o-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgb(var(--custom-first));
    display: inline-block;
    margin: 16px 6px 0;
}

.login-page__component .o-icon:hover {
    opacity: 0.8;
}

.login-page__component .o-icon:focus {
    opacity: 1;
}

.login-predictive-container {
    position: relative;
    font-size: var(--text-title);
    line-height: 1.25;
    padding-bottom: 24px;
}

.login-predictive-container .o-icon {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}

.login-predictive-reset:hover {
    border-bottom: 1px dashed rgb(var(--graphite));
    cursor: pointer;
}

.self-registration-link {
    display: none;
    position: relative;
    background: #fff;
    border-radius: 4px;
    border: solid 1px rgb(var(--smoky-white));
    padding: 24px 20px 24px 82px;
    margin-top: 23px;
    line-height: 1.2;
    font-size: var(--text-normal);
    color: rgb(var(--custom-first)) !important;
    text-decoration: none !important;
}

.o-icon_selfregister {
    position: absolute;
    top: 20px;
    left: 22px;
    width: 40px;
    height: 40px;
}

.key-path-container .o-browse {
    height: 32px;
    line-height: 30px;
}

.login-mobile-links {
    margin-top: 40px;
}

.login-mobile-links > a {
    text-decoration: none;
    height: 50px;
    background-repeat: no-repeat;
    background-position: 0;
    background-size: auto 50px;
}

.login-mobile-links__android,
.login-mobile-links__android_en {
    width: 169px;
    float: left;
    background-image: url(img/google-play.svg);

}

.login-mobile-links__ios,
.login-mobile-links__ios_en {
    width: 150px;
    float: right;
    background-image: url(img/app-store.svg);
}

.login-mobile-links__android_en {
    background-image: url(img/google-play_en.svg);
}

.login-mobile-links__ios_en {
    background-image: url(img/app-store_en.svg);
}

.o-browse {
    border-radius: 4px;
    border: dashed 1px rgb(var(--custom-first));
    display: inline-block;
    padding: 0 20px 0 40px;
    font-size: var(--text-normal);
    position: relative;
    color: rgb(var(--custom-first));
    cursor: pointer;
    vertical-align: middle;
}

.o-browse:hover {
    border-style: solid;
}

.o-browse-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -10px;
    fill: rgb(var(--custom-first));
}

.delete-file-container {
    display: none;
}

.o-icon_deletefile {
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    right: 4px;
    top: 8px;
}

.o-input_del {
    padding-right: 1.5rem;
}

.key-path-container {
    white-space: nowrap;
}

#keyDir {
    vertical-align: middle;
    display: inline-block;
    width: 128px;
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.2;
    margin-left: 15px;
}

.o-input_user + .is-popup,
.o-input_user + .validationMessage + .is-popup {
    position: absolute;
    left: 100%;
    top: 0;
    margin: 0 0 0 20px;
    display: none;
}

.o-input_user:focus .o-input_user + .is-popup + .is-popup,
.o-input_user:focus + .is-popup {
    display: block;
    transform: none;
}

.o-icon_eye,
.o-icon_eye-closed,
.toggle-password {
    position: absolute;
    right: 10px;
    top: 15px;
    width: 20px;
    height: 20px;
}

.o-icon_eye-closed {
    display: none;
}

.toggle-password {
    cursor: pointer;
    background: rgba(var(--white), 0);
}

.caps-warning {
    display: none;
    position: absolute;
    font-size: var(--text-small);
    color: rgb(var(--attention-color));
    top: 42px;
    left: 0;
    line-height: 16px;
    width: 100%;
    text-align: center;
}

.o-page-static .caps-warning {
    text-align: left;
    position: relative;
    top: 0;
    margin-top: -10px;
}

/* REGISTRATION */
.pubpage-wrapper {
    width: var(--full-width);
    margin: 0 auto;
}

.register-page__header {
    background: transparent none;
}

.register-page__header .pubpage__logo {
    margin: 0;
}

.register-page__form {
    width: 480px;
    border-radius: 4px;
    border: solid 1px #e5e5e5;
    background-color: #ffffff;
    position: relative;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

.register-page__tooltip {
    position: absolute;
    left: 100%;
    top: 10px;
    margin-left: 30px;
    border-radius: 3px;
    width: 395px;
    box-shadow: 0 0 20px 1px rgba(69, 72, 80, 0.2);
    border: solid 1px #cccccc;
    background-color: #ffffff;
    padding: 20px 0 20px 70px;
    font-size: var(--text-small);
    line-height: 1.33;
}

.register-page__tooltip::before {
    content: "";
    left: -4px;
    top: 50%;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #fff;
    transform: rotate(45deg);
    margin-top: -6px;
    box-shadow: -1px 1px 0 rgba(0, 0, 0, .15);
}

.register-page__form .o-icon_selfregister {
    top: 18px;
    left: 18px;
}

.register-page__otp-timer-wrapper {
    position: relative;
    margin-top: -8px;
    font-size: var(--text-normal);
    margin-bottom: 70px;
}

.register-page__otp-timer {
    display: block;
    margin: 0 auto 17px;
}

.register-page__otp-timer-label {
    position: absolute;
    top: 21px;
    width: 100%;
    text-align: center;
}

.register__loader {
    border-radius: 50%;
    margin: 40px auto;
    width: 64px;
    height: 64px;
    border: 6px solid rgba(0, 0, 0, 0.05);
    border-top: 6px solid #555;
    animation: rotating 1.2s infinite linear;
}

.register-page__passport {
    background: var(--selfreg-passport-icon);
}

.register-page__snils {
    background: var(--selfreg-snils-icon);
}

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

.svg-icon__account-reserved {
    margin: 40px 0;
}

.register-page__requisites {
    margin: 0 -2.5625rem 2.5rem;
    padding: 2.5rem;
    background-color: #454850;
    color: #ffffff;
    font-weight: 400;
}

.register-page__requisites-row {
    margin-bottom: 1.875rem;

}

.register-page__requisites-label {
    font-size: 0.75rem;
    line-height: 1.67;
    margin-bottom: 0.75rem;
}

.register-page__requisites-data {
    font-size: 1.5rem;
    line-height: 1.33;
}

.register-page__requisites-link {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    margin-right: 1.25rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(var(--white), 0.2);
    text-align: center;
}

.register-page__requisites-share .svg-icon__print,
.register-page__requisites-share .svg-icon__mail,
.register-page__requisites-share .svg-icon__download {
    fill: #ffffff;
    stroke: none;
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 0.125rem;
}

.register-page__next-wrapper {
    margin-bottom: 2.5rem;
}

.register-page__next {
    position: relative;
    padding: 1.25rem 2.25rem 0 3.75rem;
    font-weight: 400;
    line-height: 1.43;
    color: #333333;
    font-size: 0.875rem;
}

.register-page__next-icon {
    position: absolute;
    top: 1.25rem;
    left: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid #d4d4d4;
    text-align: center;
    padding-top: 0.125rem;
}

.svg-icon__collection-documents,
.svg-icon__cup {
    display: inline-block;
    width: 2.25rem;
    height: 2.25rem;
}

.register-page__next-heading {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.5;
    color: #454850;
}

.svg-icon__calendar {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 0.5rem;
    right: 0.625rem;
    cursor: pointer;
}

.register-page__row .loginForm__input_date {
    position: relative;
    background-color: transparent;
}

.register-page__row textarea.loginForm__input {
    height: 12.5rem;
    border-radius: 0.25rem;
    padding: 0.875rem 0.5rem 1.125rem 1.5rem;
    color: #333333;
    font-weight: 400;
    line-height: 1.43;
}

.register-page__select-time .loginForm__input_datepicker {
    height: 3rem;
    line-height: 3rem;
    padding-left: 1rem;
}

.register-page__select-time .loginForm__input_datepicker .inputIcon {
    background: none;
    width: 0;
    height: 0;
    top: 1.4375rem;
    right: 1.375rem;
    border: 4px solid transparent;
    border-top-color: rgb(var(--graphite));
}

.register-page__select-time div.select {
    font-size: 0.875rem;
}

.register-page__select-time div.select > div {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    color: #333333;
}

.register-page-continue__icon-show {
    position: absolute;
    width: 16px;
    height: 12px;
    right: 40px;
    top: 40px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: transform 0.5s ease 0s;
}

.register-page-continue__icon-show:before,
.register-page-continue__icon-show:after {
    content: "";
    position: absolute;
    top: 5px;
    right: -2px;
    width: 12px;
    height: 2px;
    background-color: rgb(var(--graphite));
    transform: rotate(-45deg);
}

.register-page-continue__icon-show:after {
    transform: rotate(45deg);
    right: 5px;
}

.register-page-continue__icon-show.hide {
    transform: rotate(180deg);
}

.register-page-continue__header {
    margin: -48px -40px 0;
    padding: 48px 40px 0;
    cursor: pointer;
}

.register-page__select-time div.select > div span {
    padding: 0.875rem 1.25rem;
}

.register-page-inside__wrapper-requisites {
    margin-top: 2.4375rem;
    padding: 2.4375rem 0 4.375rem;
    border-top: 1px solid rgb(var(--light-grey));
}

.register-page-inside__account-label {
    color: #8f8f8f;
}

.register-page-inside__account-number {
    font-size: var(--text-increased);
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.register-page-inside__subtitle {
    font-family: "Source Sans Pro", sans-serif;
    font-size: var(--text-label);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.register-page-inside__filename {
    display: inline-block;
    white-space: nowrap;
}

.register-page-inside__filename .o-icon {
    display: none;
}

.selfreg__docs_accent {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
}

.selfreg__docs_accent,
.register-page-inside__subtitle,
.register-page-inside__doc-warning {
    vertical-align: middle;
}

.register-page-inside__table-row {
    padding: 1.25rem 0 5.625rem;
    border: rgb(var(--light-grey));
}

.register-page-inside__table-date {
    background: none;
    border: 0;
}

.register-page-inside__wrapper-documents {
    padding: 1.25rem 4.375rem;
    border: 1px solid rgb(var(--light-grey));
    border-radius: 4px;
    position: relative;
    margin-bottom: 1.25rem;
}

.svg-icon__statement,
.svg-icon__download-arrow {
    position: absolute;
    top: 1.25rem;
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
}

.svg-icon__statement {
    position: absolute;
    left: 1.25rem;
}

.svg-icon__download-arrow {
    border: 1px solid rgb(var(--light-grey));
    border-radius: 8px;
    right: 1.25rem;
    cursor: pointer;
}

.register-page-inside__document-template {
    display: inline-block;
    vertical-align: middle;
}

.svg-icon__download-arrow-wrapper {
    display: inline-block;
    vertical-align: middle;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    text-align: center;
    border: 1px solid #eaebec;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}


.add-files__list-item .svg-icon__download-arrow {
    fill: rgb(var(--graphite));
    width: 24px;
    top: -12px;
    right: -5px;
    vertical-align: middle;
    border: 0;
}


.register-page-inside__icon-delete {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 10px;
    height: 10px;
    margin-left: 8px;
}

.register-page-inside__icon-delete:before,
.register-page-inside__icon-delete:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 10px;
    background-color: red;
    transform: rotate(45deg);
    right: 0;
    top: 3px;
    cursor: pointer;
}

.register-page-inside__icon-delete:after {
    transform: rotate(-45deg);
}

.register-page-inside .add-files {
    padding: 0;
}

.register-page-inside .add-files .add-files__place {
    padding: 3.75rem 0;
}

.add-files {
    margin: 1.5rem 0 2.5rem;
    padding: 3.75rem 0;
    border: 1px solid rgb(var(--light-grey));
    text-align: center;
    border-radius: 4px;
}

.add-files .svg-icon__cloud {
    width: 2.5rem;
    height: 2.5rem;
    vertical-align: middle;
    margin-right: 0.625rem;
    fill: rgb(var(--light-grey));
}

.add-files .o-button {
    margin-right: 0.25rem;
}

.add-files__list {
    margin-bottom: 1.5rem;
}

.add-files__list-item {
    position: relative;
    margin-bottom: 0.25rem;
    background: rgb(var(--smoky-white));
    border-radius: 4px;
    padding: 8px 40px 8px 12px;
}

.add-files__list-item .o-attachement {
    width: auto;
    display: inline-block;
}

.add-files__list-item .o-attachement:hover {
    text-decoration: none;
}

.add-files__list-item .toolbar__button-label {
    position: static;
    display: inline-block;
    vertical-align: middle;
    background: none;
    color: rgb(var(--graphite));
    width: auto;
    max-width: max-content;
    max-width: none !important;
    padding: 0;
}

.register-page-inside__doc-info {
    padding: 40px 40px 30px 120px;
    border: solid 2px rgb(var(--attention-color));
    border-radius: 4px;
    position: relative;
    margin-bottom: 40px;
}

.selfreg__docs_upload {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 35px;
    top: 40px;
    background: rgb(var(--attention-color));
    border-radius: 50%;
}

.questionnaire__title {
    margin: 48px 0 15px;
    padding-left: 2.875rem;
}

.questionnaire__number-list {
    counter-reset: vCounter;
}

.questionnaire____number-list-item {
    list-style: none;
    padding-left: 2.875rem;
}

.questionnaire____number-list-item:before {
    counter-increment: vCounter;
    content: counters(vCounter, '', decimal-leading-zero);
    font-size: var(--text-label);
    font-weight: 400;
    background: none;
    width: auto;
    height: auto;
    left: 0;
    top: 1.5625rem;
}

.questionnaire__label-strong {
    font-size: var(--text-label);
    font-weight: 500;
}

.svg-icon__add-person {
    width: 2rem;
    height: 2rem;
}

.svg-icon__trash {
    width: 1.5rem;
    height: 1.5rem;
}

.questionnaire__attention {
    padding: 0 0 1rem 3.375rem;
    position: relative;
}

.questionnaire__attention-icon {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 3px;
    left: 0;
    fill: rgb(var(--attention-color));
}

.questionnaire__table {
    table-layout: fixed;
    border-collapse: collapse;
    width: 100%;
    border-spacing: 0;
    font-size: var(--text-extra-small);
}

.questionnaire__table th,
.questionnaire__table td {
    padding: 0 1.25rem 1.25rem 0;
}

.questionnaire__table th {
    vertical-align: top;
    font-weight: 400;
    line-height: 1.2;
}

.questionnaire__table th:last-child,
.questionnaire__table td:last-child {
    padding-right: 0;
}

.questionnaire__table .o-input {
    height: 3rem;
    margin-bottom: 0;
}

.questionnaire__table .validationMessage {
    margin: 0 0 -1.25rem;
    font-size: var(--text-extra-small);
    line-height: 0.675rem;
}

.questionnaire__disabled {
    background-color: rgba(0, 0, 0, .05);
}

.svg-icon__edit,
.svg-icon__tick {
    display: none;
    position: absolute;
    top: 10px;
    right: 40px;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.svg-icon__tick {
    right: 10px;
}

.svg-icon__wicket_on,
.svg-icon__wicket_on + .svg-icon__edit,
.svg-icon__wicket_on + .svg-icon__tick {
    display: block;
}

.svg-icon__wicket_on {
    z-index: 1;
}

.questionnaire__common-info {
    margin: 2.5rem 0;
}

.questionnaire__icon-across {
    position: absolute;
    top: 10px;
    right: 8px;
    background: transparent;
    color: transparent;
    width: 1.25rem;
    height: 1.25rem;
    z-index: 1;
    padding: 0;
    cursor: pointer;
}

.questionnaire__icon-across:before,
.questionnaire__icon-across:after {
    content: "";
    position: absolute;
    top: 3px;
    right: 50%;
    margin-right: -1px;
    width: 0.125rem;
    height: 0.92454rem;
    transform: rotate(45deg);
    border-radius: 0.0625rem;
    background: rgb(var(--graphite));
}

.questionnaire__icon-across:after {
    transform: rotate(-45deg);
}

.questionnaire__button {
    margin-bottom: 2.5rem;
}

.type-communication__item {
    float: left;
    width: 60%;
    margin-bottom: 0.5rem;
}

.type-communication__item:nth-child(2n) {
    float: right;
    width: 40%;
}

/* MAIN CONTAINER */
.body {
    position: relative;
    height: 100%;
    font-size: var(--text-small);
    min-width: 1280px;
}

.content {
    position: relative;
    margin: 0 28px 0 72px;
    padding-bottom: 1px;
}

.content_full {
    margin-left: 28px !important;
}

.dialog .content {
    margin: 0;
}

.dialog .content.save-confirm_content {
    margin: 8px 8px 32px 8px;
    font-size: var(--text-medium);
    font-weight: 500;
}

.content__dialog .content, .content-panel .content {
    margin: 0;
}

.privpage {
    position: relative;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding-left: 280px;
    transition: padding-left var(--standart-transition);
}

.header, .utils {
    height: 56px;
    width: 100%;
    background: rgb(var(--white));
}

.header {
    box-shadow: inset 0 -1px 0 rgb(var(--light-grey));
    position: relative;
    padding: 0 28px;
}

.breadcrumbs-options {
    position: absolute;
    left: 170px;
    top: -46px;
}

/* HEADER */
.logo-wrapper {
    float: left;
}

.header__logo {
    float: left;
    width: var(--bank-logo-width);
    height: 45px;
    margin: 5px 0;
    position: relative;
    text-indent: -9999px;
    background: var(--bank-logo);
    background-size: contain;
}

.breadcrumbs {
    position: relative;
    margin: 28px 0 20px;
}

.dialogBox .breadcrumbs {
    margin: 48px 0 40px;
}

.breadcrumbs,
.breadcrumbs .o-title {
    font-size: var(--text-normal);
    line-height: 1;
    padding: 0;
    font-weight: 400;
    font-family: "Inter", sans-serif;
}

.breadcrumbs .o-title {
    display: inline-block;
}

.breadcrumbs .o-title:hover {
    text-decoration: underline;
    cursor: pointer;
}

.breadcrumbs .o-title.static {
    text-decoration: none;
    cursor: none;
}

.dialogBox_confirm .breadcrumbs .o-title:hover {
    text-decoration: none;
    cursor: auto;
}

.breadcrumbs .o-title.disabled,
.content__dialog .o-title {
    display: block;
    font-size: 26px;
    line-height: 34px;
    font-weight: 600;
    font-family: "Source Sans Pro", sans-serif;
    text-decoration: none !important;
    cursor: default !important;
}

.breadcrumbs .o-title.disabled {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.breadcrumbs-payment-select {
    position: absolute;
    right: 90px;
    top: 52px;
}

.breadcrumbs_account, .dialogBox .breadcrumbs_account {
    margin: 0 0 24px 0;
    font-size: var(--text-small);
}

.breadcrumbs_account .o-title {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    padding-bottom: 20px;
    display: block;
}

.breadcrumbs_account .accountNumber {
    line-height: 20px;
    padding-bottom: 4px;
}

.breadcrumbs_account .accountDate {
    line-height: 20px;
    opacity: .6;
}

.orgSelect {
    width: 252px;
    display: inline-block;
    float: right;
    padding: 8px 0;
}

.orgSelect .o-select {
    width: 252px;
}

.orgSelect .o-select__list, .utils .o-select .o-select__list.templatesList {
    box-shadow: 0 24px 52px rgba(48, 48, 48, 0.12);
    border-radius: 4px;
    border: none;
    max-height: 80vh;
    width: 312px !important;
}

.orgSelect .o-select__list {
    border: 1px solid rgb(var(--light-grey));
}

.orgSelect .o-select__value {
    margin: 0;
    border-radius: 4px;
}

.orgSelect .o-select__item {
    position: relative;
}

.orgSelect .o-select__list-label {
    padding-top: 16px;
    padding-bottom: 12px;
    padding-left: 12px;
    font-size: var(--text-extra-small);
    color: rgb(var(--grey));
    line-height: 16px;
    cursor: default;
}

.orgSelect .o-select.o-select_static .o-icon_select {
    display: none;
}

.orgSelect .o-select__item.green:after,
.orgSelect .o-select__item.orange:after,
.orgSelect .o-select__item.gray:after,
.orgSelect .o-select__item.red:after {
    content: '';
    position: absolute;
    right: 21px;
    top: 50%;
    margin-top: -3px;
    border: 3px solid #61AF53;
    border-radius: 50%;
}

.orgSelect .o-select__item.orange:after {
    border-color: rgb(var(--system-attention));
}

.orgSelect .o-select__item.red:after {
    border-color: #E75671;
}

.orgSelect .o-select__item.gray:after {
    border-color: #BEC0C7;
}

.header__buttons {
    float: right;
    margin-left: 52px;
    height: 100%;
    text-align: right;
}

.header__buttons .o-link-with-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    margin-top: 8px;
    position: relative;
    border-radius: 4px;
    margin-left: 12px;
}

.header__buttons .o-link-with-icon:hover,
.header__buttons .header__buttons__dropdown.opened .o-link-with-icon {
    background: rgb(var(--smoky-white));
    cursor: pointer;
}

.header__buttons .o-link-with-icon .o-icon {
    width: 20px;
    height: 20px;
    margin: 0;
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}

.header__buttons .o-exit {
    margin-left: 4px;
}

.header__buttons .o-exit .o-icon {
    width: 13px;
    height: 16px;
    top: calc(50% - 8px);
    left: calc(50% - 6px);
}

.header__buttons .o-link-with-icon .o-icon {
    fill: #555963;
}

.header__buttons .header__buttons__dropdown {
    width: 56px;
    position: relative;
    display: inline-block;
    margin-left: 20px;
    margin-top: 8px;
}

.header__buttons .header__buttons__dropdown .o-link-with-icon {
    margin: 0;
    width: 100%;
}

.header__buttons .header__buttons__dropdown .o-icon_user {
    width: 22px;
    height: 22px;
    left: 9px;
    top: calc(50% - 11px);
}

.header__buttons .header__buttons__dropdown .o-icon_arrow {
    width: 10px;
    height: 5px;
    right: 10px;
    top: calc(50% - 3px);
    left: auto;
}

.header__buttons__dropdown__list {
    display: none;
    position: absolute;
    width: 280px;
    background: rgb(var(--white));
    right: 0;
    top: calc(100% - 4px);
    box-shadow: 0 24px 52px rgba(48, 48, 48, 0.12);
    padding: 22px 0 22px 0;
    text-align: left;
    border-radius: 4px;
    line-height: 20px;
    z-index: 10;
}

.header__buttons__dropdown.opened .header__buttons__dropdown__list {
    display: block;
}

.header__buttons__dropdown__list__user {
    font-weight: 500;
    margin-bottom: 16px;
}

.header__buttons__dropdown__list a {
    text-decoration: none;
    color: rgb(var(--graphite));
}

.header__buttons__dropdown__list__item > a,
.header__buttons__dropdown__list__item > span,
.language-switch a {
    display: block;
    padding: 6px 32px;
}

span.language-switch {
    padding: 0;
    margin: 0;
}

.header__buttons__dropdown__list__item a:hover,
.header__buttons__dropdown__list__item:hover span,
.header__buttons__dropdown__list__item span:hover {
    color: rgb(var(--custom-first));
    cursor: pointer;
}

.header__buttons__dropdown__list__bottom {
    border-top: 1px solid rgb(var(--light-grey));
    padding-top: 14px;
    margin-top: 22px;
}

.language-switch span {
    display: none;
}

.utils {
    padding: 8px 28px;
}

a.utils__item {
    display: inline-block;
    line-height: 40px;
    margin-right: 36px;
    color: rgb(var(--graphite));
    text-decoration: none;
}

a.utils__item:hover {
    color: rgb(var(--custom-first));
    text-decoration: none;
}

.exchange-rates {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 20px;
    margin-right: 20px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color var(--standart-transition);
}

.exchange-rates:hover {
    background-color: rgb(var(--hover-bg));
}

.exchange-rates__label,
.exchange-rates__label_colored {
    display: inline-block;
    width: 132px;
}

.exchange-rates__label_colored {
    color: #9397A1;
}

.exchange-rates__currency {
    width: 32px;
    font-weight: 500;
    margin: 0 19px 0 12px;
}

.exchange-rates__wrapper,
.exchange-rates__container {
    display: flex;
    align-items: center;
}

.exchange-rates__wrapper {
    width: 60px;
    justify-content: flex-end;
}

.exchange-rates__wrapper + .exchange-rates__wrapper {
    margin-left: 12px;
}

.exchange-rates__icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    fill: #61AF53;
    margin-left: 5px;
    flex-shrink: 0;
}

.exchange-rates__icon_hidden {
    visibility: hidden;
}

.exchange-rates__icon.down {
    transform: rotate(180deg);
}

.exchange-rates__icon.red {
    fill: rgb(var(--warning-color));
}

.exchange-rates-details {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 10;
    width: 368px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    background-color: rgb(var(--panel-bg));
}

.exchange-rates-details:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    left: 0;
    bottom: 100%;
}

.exchange-rates-details:hover,
.exchange-rates:hover + .exchange-rates-details {
    display: block;
}

.exchange-rates-details__rate {
    display: flex;
    align-items: flex-start;
}

.exchange-rates-details__rate + .exchange-rates-details__rate {
    border-top: 1px solid rgb(var(--border-color));
    margin-top: 10px;
    padding-top: 16px;
}

.exchange-rates-details__currency-row {
    display: flex;
    padding-bottom: 8px;
}

.exchange-rates-details__info {
    padding: 12px 0 20px;
    color: #9397A1;
    font-size: var(--text-extra-small);
}

.exchange-rates-details__info svg {
    width: 16px;
    height: 16px;
    fill: #9397A1;
    vertical-align: middle;
    margin-right: 2px;
}

.exchange-rates-details .o-button_small {
    height: 36px;
    line-height: 34px;
}

.exchange-rates-onbording__close {
    position: absolute;
    width: 12px;
    height: 12px;
    top: 14px;
    right: 14px;
    fill: #686D79;
    transition: fill var(--standart-transition);
    cursor: pointer;
}

.exchange-rates-onbording__close:hover {
    fill: rgb(var(--custom-color));
}

/* ASIDE */
.aside {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 280px;
    z-index: 16;
    background: #555963;
    color: rgb(var(--light-grey));
    padding-top: 10px;
    padding-right: 2px;
    transition: width var(--standart-transition);
}

.scrollbar-outer {
    height: calc(100% - 58px);
    overflow-y: scroll;
}

.aside__menu::-webkit-scrollbar, .aside__menu__child__inner::-webkit-scrollbar,
.aside__menu::-webkit-scrollbar-track, .aside__menu__child__inner::-webkit-scrollbar-track {
    background: #555963;
    width: 4px;
    margin: 0 2px;
}

.aside__menu::-webkit-scrollbar-thumb, .aside__menu__child__inner::-webkit-scrollbar-thumb {
    background: rgb(var(--grey));;
    border-radius: 1px;
}

.aside__menu__item {
    position: relative;
    margin: 0 2px 1px 8px;
    border-radius: 4px;
    overflow: hidden;
    line-height: 20px;
    font-weight: 400;
}

.aside__menu > .aside__menu__item,
.aside__menu > div > .aside__menu__item_parent {
    white-space: nowrap;
}

.aside__menu__item_parent {
    cursor: pointer;
}

.aside__menu__item a, .aside__menu__item__link {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 14px 16px 14px 60px;
}

.aside__menu__item .o-icon {
    height: 16px;
    width: 16px;
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 18px;
    fill: rgb(var(--light-grey));
}

.aside__menu__item__counter, .subcounter i {
    position: absolute;
    left: 24px;
    top: 22px;
    font-style: normal;
    font-size: var(--text-extra-small);
    height: 18px;
    line-height: 18px;
    background-color: rgb(var(--custom-first));
    border-radius: 50%;
    padding: 0 4px;
    color: rgb(var(--white));
    text-align: center;
    min-width: 18px;
}

.subcounter .aside__menu__item__counter, .subcounter i {
    left: auto;
    top: 15px;
    right: 10px;
}

.aside__menu__item__title {
    font-size: var(--text-small);
    color: rgb(var(--light-grey));
    font-weight: 400;
}

.aside__menu__item:hover,
.aside__menu__item.active,
.aside__menu__item.opened {
    background: #3D4047;
}

.aside__menu__child {
    display: none;
    position: fixed;
    width: 320px;
    left: 281px;
    background: #555963;
    border-radius: 4px;
    padding: 28px 2px 28px 0;
    transition: left var(--standart-transition);
}

.expanded {
    overflow: auto;
    overflow-x: hidden;
}

.expanded .aside__menu__child {
    display: none;
    position: static;
    left: auto;
    border-radius: 0;
    padding: 0 6px 0 0;
}

.aside__menu__child__inner {
    overflow-y: scroll;
    max-height: 100%;
}

.expanded .aside__menu__child__inner {
    overflow: auto;
    max-height: none;
}

.aside__menu__child__title .aside__menu__item__title {
    font-size: 15px;
    line-height: 27px;
    color: rgba(var(--white), .32);
    padding: 24px 16px 16px 24px;
    display: inline-block;
    width: 100%;
}

.aside__menu__child__inner .aside__menu__item a, .aside__menu__child__inner .aside__menu__item__link {
    padding: 14px 16px;
}

.aside__menu__child__inner .aside__menu__item__link {
    padding-right: 36px;
}

.aside__menu__child__inner .aside__menu__child__title:first-child .aside__menu__item__title {
    padding-top: 0;
}

.aside__menu__item__icon {
    width: 12px;
    height: 6px;
    position: absolute;
    right: 14px;
    top: 21px;
    fill: rgb(var(--white));
    transform: rotate(-90deg);
}

.aside_short .aside__menu__item__icon {
    display: none;
}

.expanded .aside__menu__item__icon {
    display: block;
    transform: none;
}

.aside__toggler {
    margin-bottom: 2px;
    margin-left: 8px;
    width: 48px;
    text-align: center;
    position: relative;
    height: 48px;
    cursor: pointer;
}

.aside__toggler .o-icon {
    width: 16px;
    height: 14px;
    margin: 0.5rem;
    cursor: pointer;
}

.aside_wide .aside__toggler .toggle_wide, .aside_short .aside__toggler .toggle_short {
    display: none;
}

.privpage.aside_short .aside {
    width: 68px;
}

.privpage.aside_short {
    padding-left: 68px;
}

.privpage.aside_short .aside__menu > .aside__menu__item,
.privpage.aside_short .aside__menu > div > .aside__menu__item_parent {
    max-width: 52px;
}

.privpage.aside_short .aside__menu > .aside__menu__item .aside__menu__item__title,
.privpage.aside_short .aside__menu > div > .aside__menu__item_parent .aside__menu__item__title {
    opacity: 0;
}

.privpage.aside_short .aside__menu > .aside__menu__item,
.privpage.aside_short .aside__menu > div > .aside__menu__item_parent {
    padding: 0;
}

.privpage.aside_short .aside__menu > .aside__menu__item a,
.privpage.aside_short .aside__menu > div > .aside__menu__item > .aside__menu__item__link {
    height: 48px;
    padding: 0;
}

.privpage.aside_short .aside__menu > .aside__menu__item.hover .aside__menu__item__title,
.privpage.aside_short .aside__menu > .hover > .aside__menu__item_parent .aside__menu__item__title {
    opacity: 1;
    position: fixed;
    left: 72px;
    background-color: #555963;
    padding: 8px 12px;
    border-radius: 4px;
    color: #fff;
    box-shadow: 0 24px 52px rgba(48, 48, 48, 0.12);
    transition: opacity var(--standart-transition);
    z-index: 1;
}

.privpage.aside_short .aside__menu__child {
    left: 69px;
}

.privpage.aside_short .aside__menu__child .aside__menu__item__title {
    display: inline;
}

.privpage.aside_short .aside__menu__child__title .aside__menu__item__title {
    display: inline-block;
}

.privpage.aside_short .aside__menu__child .aside__menu__item__link {
    padding-right: 36px;
}

.o-select_duo .o-select__value {
    height: 60px;
    line-height: 1.5;
    padding-top: 9px;
}

.o-select_duo .o-text_small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: var(--text-normal);
}

.o-select.o-select_duo .o-select__value {
    height: 68px;
    padding-top: 14px;
    font-size: var(--text-normal);
}

.o-select.o-select_duo .o-select__list .o-select__item {
    min-height: 56px;
}

/* TOOLBAR */

.toolbar-sticky-wrapper {
    position: sticky;
    top: 0;
    z-index: 5;
}

.toolbar {
    padding: 12px 19px;
    background: rgb(var(--white));
    border-radius: 4px;
    position: sticky;
    z-index: 9;
    top: 0;
}

.toolbar_bottom {
    position: fixed;
    bottom: 12px;
    width: calc(100vw - 280px - 2 * 28px - 5px);
    border-radius: 4px;
    background-color: rgb(var(--custom-first));
    z-index: 16;
    padding: 4px 42px;
    display: none;
    height: 60px;
    transition: width var(--standart-transition);
}

.aside_wide .toolbar_bottom {
    width: calc(100vw - 280px - 2 * 28px - 5px);
}

.aside_short .toolbar_bottom {
    width: calc(100vw - 68px - 2 * 28px - 5px);
}

.toolbar__separator {
    display: inline-block;
    width: 1px;
    height: 24px;
    background: rgba(var(--white), .24);
    margin: 14px 20px;
    float: right;
}

.toolbar-sticky-wrapper .toolbar {
    position: relative;
    z-index: auto;
}

.toolbar::after {
    clear: both;
    display: block;
    content: "";
}

.toolbar__button {
    cursor: pointer;
    position: relative;
    float: left;
    height: 40px;
    border-radius: 8px;
    border: solid 1px rgb(216, 218, 222);
    padding: 9px;
    margin-right: 20px;
}

.toolbar__button .o-icon {
    vertical-align: top;
}

.toolbar__button .o-icon_dropdown {
    width: 6px;
    height: 4px;
    position: absolute;
    top: 17px;
    left: auto;
    right: 12px;
}

.toolbar_bottom .toolbar__button {
    border: none;
    padding: 9px 10px;
    width: auto;
    height: auto;
    text-align: center;
    margin-right: 0;
    float: right;
    margin-left: 12px;
    margin-top: 6px;
    transition: background var(--standart-transition);
}

.toolbar_bottom .toolbar__button:hover {
    background: rgba(var(--white), 0.12);
}

.toolbar_bottom .toolbar__button:active {
    background: rgba(var(--graphite), 0.15);
}

.js-toolbar__button-else {
    display: none;
}

.toolbar_bottom .toolbar__button_right {
    margin: 6px 0 0 0;
}

.toolbar_bottom .toolbar__button-label {
    display: inline-block;
    position: static;
    background: transparent;
    margin: 0 0 0 12px !important;
    padding: 0;
    font-size: var(--text-extra-small);
    line-height: 20px;
}

.toolbar_bottom .toolbar__button_right .toolbar__button-label {
    display: none;
}

.toolbar_bottom .toolbar__button .o-icon {
    fill: rgb(var(--white));
    margin-bottom: 2px;
}

.toolbar_bottom .toolbar__button .o-select + span,
.toolbar_bottom .toolbar__button .o-select + .o-icon {
    margin-right: 0;
}

.toolbar_bottom .toolbar__button:hover .o-icon {
    fill: rgb(var(--white));
}

.toolbar_bottom .toolbar__button:hover .toolbar__button-label {
    display: inline-block;
}

.toolbar_bottom .toolbar__button_right:hover .toolbar__button-label {
    display: none;
}

.toolbar_bottom .toolbar__info {
    float: left;
    color: rgb(var(--white));
    padding: 17px 0 17px 38px;
    position: relative;
}

.toolbar_bottom .toolbar__info .toolbar__info__checkbox {
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 0;
    width: 16px;
    height: 16px;
}

.toolbar_bottom .checked + .o-checkbox-label::before,
.toolbar_bottom input:checked + .o-checkbox-label::before {
    border-color: rgb(var(--white)) !important;
    fill: rgb(var(--white)) !important;
}

.toolbar_bottom .toolbar__info-container {
    line-height: 1.3;
}

.toolbar_bottom .toolbar__button_dropdown .o-icon_dropdown {
    width: 52px;
    height: 52px;
    opacity: 0;
    margin-left: -10px;
    margin-bottom: -9px;
}

.toolbar_bottom .toolbar__button .o-select {
    min-height: 0;
}

.toolbar_bottom .toolbar__button .o-select__list {
    left: auto;
    top: auto;
    right: -12px;
    bottom: 50px;
    text-align: left;
}

.toolbar__info-container .toolbar__info__amount {
    font-size: var(--text-small);
    display: inline-block;
}

.toolbar__info-container .toolbar__info__sum {
    font-size: var(--text-small);
    display: inline-block;
    margin-left: 20px;
}

.toolbar__button_wide {
    width: auto;
    height: 44px;
    padding: 12px 20px;
    color: rgb(var(--custom-first));
    border: 1px solid rgba(var(--custom-first), 0.32);
    border-radius: 4px;
}

.toolbar__button_wide .o-icon {
    display: none;
}

.toolbar__button:hover {
    border-color: rgb(var(--custom-first));
    z-index: 11;
}

.toolbar__button:hover .o-icon {
    fill: rgb(var(--graphite));
}

.toolbar__button.disabled {
    opacity: 0.5;
    cursor: default;
    border-color: #d4d4d4;
}

.toolbar__section {
    margin-right: 21px;
    float: left;
}

.toolbar__section .toolbar__button {
    margin-right: -1px;
    border-radius: 0;
}

.toolbar__section .toolbar__button:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.toolbar__section .toolbar__button:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.toolbar__button-label,
.black-tip {
    opacity: 0;
    position: absolute;
    border-radius: 8px;
    background-color: rgb(var(--graphite));
    color: rgb(var(--white));
    padding: 4px 10px;
    font-size: var(--text-small);
    top: 80px;
    z-index: -1;
    text-align: center;
    line-height: 1.69;
    left: 50%;
    white-space: nowrap;
    transition: opacity 200ms ease 0s;
}

.toolbar__button-label {
    display: none;
    opacity: 1;
}

.toolbar__button-label:before {
    content: "";
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    position: absolute;
    border-radius: 3px;
    left: 50%;
    margin-left: -3px;
    top: -4px;
    background-color: inherit;
}

.toolbar__button_wide:hover {
  opacity: 0.8;
}

.toolbar__button_wide .toolbar__button-label {
    display: inline-block;
    position: static;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0);
    color: rgb(var(--custom-first));
    padding: 0;
    margin-left: 0 !important;
    opacity: 1;
}

.o-attachement {
    display: block;
    width: 36px;
    height: 36px;
    position: relative;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
}

.o-attachement .toolbar__button-label {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.o-attachement:hover .toolbar__button-label,
.toolbar__button:hover .toolbar__button-label {
    opacity: 1;
    top: 47px;
    z-index: 29;
}

.toolbar__button:hover .toolbar__button-label {
    display: inline-block;
}

/*.toolbar__button.disabled .toolbar__button-label {
    display: none;
}*/

.toolbar__button_wide.disabled {
    background-color: rgb(var(--ghostly-white));
    opacity: 0.5;
}

.toolbar__button_wide.disabled .toolbar__button-label,
.toolbar__button_wide.disabled:hover .toolbar__button-label{
    display: inline-block;
    color: #a1a2a2;
}

.toolbar__button_wide:hover .toolbar__button-label,
.toolbar__button_wide:hover .o-icon {
    color: rgb(var(--custom-first));
    fill: rgb(var(--custom-first));
}

.toolbar__dropdown {
    display: none;
}

.toolbar__button .o-select {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 8px 6px;
}

.toolbar__button .o-select + span,
.toolbar__button .o-select + .button-icon,
.toolbar__button .o-select + .o-icon {
    margin-right: 16px;
}

.o-attachement-link {
    width: 32px;
    height: 32px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 4px;
    padding: 6px;
}

.o-attachement-link:hover {
    background: rgb(var(--light-grey));
}

.o-attachement-link .o-icon {
    fill: rgb(var(--graphite));
}

.o-icon_dropdown {
    bottom: 2px;
    left: 0;
    position: absolute;
}

.top-toolbar {
    position: absolute;
    right: 0;
    top: -51px;
    z-index: 1;
}

.filter-form {
    display: none;
    padding: 13px 37px 8px;
    background: rgb(var(--white));
    border-radius: 0 0 4px 4px;
}

.o-icon_change-view {
    position: absolute;
    width: 36px;
    height: 36px;
    cursor: pointer;
    right: 0;
    bottom: 4px;
    z-index: 11;
}

.filter-toggle {
    position: absolute;
    right: 0;
    top: -116px;
    line-height: 36px;
    font-size: var(--text-label);
}

.filter-toggle__label {
    font-size: var(--text-small);
    line-height: 20px;
}


.date-filter_null .filter-toggle {
    top: -58px;
}

.filter-open {
    top: 57px;
    position: absolute;
    right: 0;
    white-space: nowrap;
    z-index: 9;
}

.period-filter {
    padding: 13px 19px;
    background: rgb(var(--white));
    border-top: solid 1px rgb(var(--light-grey));
    margin-top: -1px;
    line-height: 30px;
}

.period-filter::after {
    display: block;
    clear: both;
    content: "";
}

.period-filter__label {
    font-size: var(--text-label);
    display: inline-block;
    margin-top: -5px;
    vertical-align: middle;
    margin-right: 36px;
}

.period-filter__value {
    display: inline-block;
    border-bottom: 1px dotted rgb(var(--graphite));
    margin-right: 16px;
    cursor: pointer;
    line-height: 1.3;
    text-transform: lowercase;
}

.period-filter__value.color {
    color: rgb(var(--custom-first));
    border-bottom-color: rgb(var(--custom-first));
}

.o-tag {
    float: left;
    cursor: pointer;
    height: 36px;
    line-height: 34px;
    padding: 0 12px;
    border-radius: 4px;
    background-color: rgb(var(--white));
    border: solid 1px rgb(216, 218, 222);
    transition: border 300ms ease 0s, color 300ms ease 0s;
    margin-right: 8px;
    font-size: var(--text-small);
}

.o-tag:hover {
    border-color: rgb(var(--custom-first));
    color: rgb(var(--custom-first));
}

.o-tag_selected, .o-tag_selected:hover {
    color: rgb(var(--white));
    background: rgb(var(--custom-first));
    border-color: rgb(var(--custom-first));
}

.period-filter .o-form__input {
    height: 36px;
    padding-top: 8px;
    padding-left: 4px;
    padding-right: 4px;
    float: left;
    margin-left: 8px;
}

.period-filter .o-input_date.o-input_small {
    width: 95px;
    padding-right: 10px;
    background: url(img/icons/o-icon__calendar_small.svg) no-repeat 100% 42%;
}

.period-filter .o-button_small {
    margin-left: 10px;
}

.period-filter .o-form__input {
    margin-bottom: 0;
}

.filter-form__item {
    padding: 0 16px;
    height: 40px;
    line-height: 38px;
    font-size: var(--text-normal);
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 4px;
    border: 1px solid rgb(var(--light-grey));
    cursor: pointer;
    transition: border-color var(--standart-transition);
}

.is-bordered_custom {
    border: 1px solid rgb(var(--custom-first));
}

tr.is-bordered_custom {
    outline: 1px solid rgb(var(--custom-first));
    outline-offset: -1px;
}

.currenciesList .filter-form__item {
    border-radius: 4px;
    position: relative;
    padding-right: 32px;
    float: left;
    margin-right: 10px;
}

.currenciesList .filter-form__item .o-icon_close {
    right: 8px;
    top: 50%;
    margin-top: -10px;
}

.currencies-date-picker {
    position: absolute;
    top: 20px;
    right: 20px;
}

.acquiring-filter__period .feedbackMessage,
.currencies-date-picker .feedbackMessage {
    position: absolute;
    left: 100%;
    top: 20px;
    padding: 12px;
    background-color: rgb(var(--white));
    border-radius: 4px;
    border: 1px solid rgb(var(--light-grey));
    width: 150px;
    z-index: 1;
}

.acquiring-filter__period .feedbackMessage:before,
.currencies-date-picker .feedbackMessage:before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    border-color: rgb(var(--light-grey));
    border-style: solid;
    border-width: 0 0 1px 1px;
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    background-color: rgb(var(--white));
}

.filter-form__item:hover {
    border-color: rgb(var(--custom-first));
}

.filter-form__item_current,
.filter-form__item_current:hover {
    background-color: rgb(var(--smoky-white));
    border: solid 1px rgb(var(--light-grey));
    cursor: default;
}

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

.currency-contracts__bank-name,
.currency-contracts__client-name {
    font-size: var(--text-label);
    line-height: 1.2;
    margin-bottom: -8px;
}

.currency-contracts__bank-name {
    padding-top: 24px;
}

.currency-contracts__client-name {
    padding-top: 32px;
}

/* PAGINATION */
.pagination {
    margin-bottom: 92px;
    transition: margin-bottom var(--standart-transition);
}

.o-section .pagination {
    margin-bottom: 0;
}

.pagination::after {
    content: "";
    display: block;
    clear: both;
}

.pagination__list {
    float: left;
    width: 72%;
}

.o-section .pagination__list {
    width: 100%;
    margin-bottom: 32px;
}

.pagination__list-item {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgb(var(--white));
    border: solid 1px #eaebec;
    text-align: center;
    float: left;
    line-height: 34px;
    margin-right: 6px;
    cursor: pointer;
}

.pagination__list-page {
    line-height: 38px;
    font-size: var(--text-normal);
    border-radius: 0;
    margin-right: -1px;
}

.pagination__list-page:hover {
    color: rgb(var(--custom-first));
}

.pagination__list-page:first-child {
    border-radius: 8px 0 0 8px;
}

.pagination__list-page:last-child {
    border-radius: 0 8px 8px 0;
    margin-right: 6px;
}

.pagination__sort {
    float: right;
    line-height: 40px;
}

.pagination__sort-select {
    float: right;
    margin-left: 16px;
}

.pagination__sort-select .o-select__value {
    width: 72px;
    height: 40px;
    border-radius: 4px;
    border: solid 1px rgb(var(--light-grey));
    cursor: pointer;
    margin: 0;
    position: relative;
    padding: 12px 10px;
}

.pagination__sort .o-select__list {
    display: none;
    position: absolute;
    top: auto !important;
    bottom: 41px !important;
    background-color: rgb(var(--white));
    border: solid 1px #e5e5e5;
    width: 100% !important;
    left: 0 !important;
    border-radius: 8px;
    z-index: 19;
}

.pagination__sort .o-select__item {
    padding: 12px 10px;
}

.select-list__choice:hover {
    color: rgb(var(--custom-first));
    transition: color var(--standart-transition);
}

/* DIALOGS */
.dialog,
.dialogBox,
.dialogBox_opened + .content-panel {
    display: none !important;
}

.content__dialog {
    background-color: rgb(var(--white));
    border-radius: 4px;
    position: relative;
    padding: 1px 20px 0 40px;
    margin-top: -73px;
    margin-bottom: 40px;
    display: none;
}

.dialog_type_modal::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 97;
}

.dialog_type_modal .dialog__content {
    z-index: 98;
    position: relative;
}

.dialog_type_modal .o-icon_close,
.dialog_type_modal .o-section__close {
    z-index: 98;
}

.content__dialog_page {
    background: rgb(var(--smoky-white));
    border: 0;
    padding: 0;
    margin-top: -92px;
}

.content__dialog_page .o-icon_close {
    display: none;
}

.dialog.last-child,
.dialogBox_opened {
    display: block !important;
}

.dialogBox_confirm .dialog.last-child {
    display: none !important;
}

.dialogBox_confirm .dialog:last-child {
    display: block !important;
}

.dialog__footer {
    margin: 40px 20px 0 0;
    padding: 40px 0;
    border-top: 1px solid rgb(var(--light-grey));
}

.dialog__footer-comission {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(var(--light-grey));
}

.dialog-container {
    background: rgba(var(--custom-first), 0.08);
    border-radius: 8px;
    padding: 24px 72px 32px;
    margin-bottom: 44px;
}

.dialog-container__checkbox {
    position: absolute;
    left: 32px;
    top: 26px;
}

.dialog-container .o-h4 {
    margin-bottom: 8px;
}

.dialog-container__button {
    padding: 8px 10px;
    height: auto;
    font-weight: 500;
    font-size: var(--text-small);
    line-height: 20px;
}

.dialog-container__icon {
    height: 170px;
    width: 170px;
    position: absolute;
    right: 52px;
    top: 0;
}

.dialogBox_confirm.dialogBox_opened {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 74, 74, .8);
    z-index: 999;
}

.dialogBox_confirm.dialogBox_opened + .content-panel {
    display: block !important
}

.dialogBox_confirm .dialog.confirmation {
    width: 380px;
    padding: 20px;
    border-radius: 2px;
    background: rgb(var(--white));
    border: solid 1px rgba(205, 207, 211, 0.5);
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -120px 0 0 -190px;
}

.dialogBox_confirm .o-icon_close {
    width: 20px;
    height: 20px;
}

.dialogBox_confirm .breadcrumbs {
    padding: 4px 0 16px;
    margin: 0;
}

/* HOMEPAGE */
.o-custom-link {
    padding-top: 1.5rem;
    font-size: var(--text-medium);
}

.o-banner-container {
    margin-top: 20px;
    width: 100%;
    height: 150px;
    position: relative;
    transition: height var(--standart-transition), margin 100ms linear 250ms;
}

.o-banner-close {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 3;
}

.o-banner-container.closed {
    height: 0;
    overflow: hidden;
    margin: 0;
}

.o-banner-slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transition: opacity var(--standart-transition);
}

.o-banner-slide_visible {
    opacity: 1;
    z-index: 1;
}

.o-banner-link {
    display: block;
    text-decoration: none !important;
}

.o-banner-link::after {
    content: "";
    display: block;
    clear: both;
}

.o-banner {
    height: 150px;
    width: auto;
    min-width: 100%;
    float: left;
    border: 0;
}

.o-banner-container__controls {
    position: absolute;
    bottom: 5px;
    right: 0;
    z-index: 3;
}

.o-aml {
    margin-top: 8px;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
}
.o-aml-mask {
    text-align: center;
    transform: translateZ(0px);
}

.o-aml-mask:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.o-aml .o-icon {
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 4px;
}

.o-aml:hover .o-aml__icon-safe {
    background-color: rgb(var(--common-bg));
}

.o-icon.o-aml__icon-safe {
    fill: #61AF53;
    transition: background-color var(--standart-transition);
}

.o-aml .gray .o-aml__icon-safe ,
.o-aml-org__info.gray .o-aml__icon-safe  {
    display: block;
    fill: rgb(var(--grey-plus));
}

.o-aml .none .o-aml__icon-safe ,
.o-aml-org__info.none .o-aml__icon-safe  {
    display: block;
    fill: rgb(var(--grey-plus));
}

.o-aml .orange .o-aml__icon-warning,
.o-aml-org__info.orange .o-aml__icon-warning {
    display: block;
    background-color: rgba(255, 160, 0, 0.12);
    fill: rgb(var(--system-attention));
}

.o-aml .red .o-aml__icon-warning,
.o-aml-org__info.red .o-aml__icon-warning {
    display: block;
    background-color: rgba(231, 86, 113, 0.12);;
    fill: #E75671;
}

.o-aml__info {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 300px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgb(var(--white));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 19;
}

.o-aml__info:before {
    content: '';
    width: 100%;
    height: 4px;
    position: absolute;
    top: -4px;
    left: 0;
}

.o-aml__info.show,
.o-aml:hover .o-aml__info {
    display: block;
}

/*.o-aml:hover .gray + .o-aml__info,*/
.o-aml:hover .none + .o-aml__info {
    display: block;
}

.o-aml__title {
    font-weight: 500;
    margin-bottom: 4px;
    color: rgb(var(--title-color));
}

.o-aml-dialog {
    width: 740px;
    padding: 28px;
    position: relative;
    background-color: rgb(var(--panel-bg));
    border-radius: 8px;
    max-height: calc(100% - 40px);
    overflow: auto;
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0px);
}

.o-aml-dialog__title {
    font-size: 22px;
    margin-bottom: 40px;
}

.o-aml-org {
    position: relative;
    cursor: auto;
    overflow: hidden;
    transition: box-shadow var(--standart-transition);
    border-radius: 4px;
}

.o-aml-org:hover,
.o-aml-org.show {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.o-aml-org.o-aml-org__single,
.o-aml-org.o-aml-org__single:hover {
    box-shadow: none;
    cursor: auto;
}


.o-aml-org__info {
    padding: 24px 80px 28px 76px;
    cursor: pointer;
}

.o-aml-org__info .o-aml__icon-warning,
.o-aml-org__info .o-aml__icon-safe {
    width: 36px;
    height: 36px;
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 8px;
    border-radius: 4px;
}

.o-aml-org__bank {
    margin-top: 8px;
    font-weight: 500;
    color: #5F8CE5;
}

.o-aml-org__collapse-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 28px;
    right: 24px;
    transform: rotate(0);
    transition: all var(--standart-transition);
    fill: rgb(var(--grey-plus));
}

.o-aml-org:hover .o-aml-org__collapse-icon,
.o-aml-org.show .o-aml-org__collapse-icon {
    fill: rgb(var(--text-color));
}

.o-aml-org.show .o-aml-org__collapse-icon {
    transform: rotate(-180deg);
    fill: rgb(var(--text-color));
}

.o-aml-org__name {
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 4px;
}

.o-aml-org__info,
.o-aml-org__indicators-count {
    color: #686D79;
}

.o-aml-org__indicators {
    padding: 12px 80px 24px 76px;
}

.o-aml-org.o-aml-org__single .o-aml-org__indicators {
    padding: 0 80px 24px 56px;
}

.o-aml-org__indicators-count {
    opacity: 0.5;
}

.o-aml-org__indicators-item {
    margin-bottom: 28px;
    padding-left: 0;
}

.o-aml-org__indicators-item:last-child {
    border: 0;
    padding-bottom: 0;
}

.o-aml-org__indicators-item:before {
    width: 6px;
    height: 6px;
    left: -41px;
    top: 8px;
    background-color: #61AF53;
}

.o-aml-org__indicators-item .o-aml__icon-warning {
    position: absolute;
    top: 0;
    left: -48px;
}

.o-aml-org__indicators-item.red .o-aml__icon-warning,
.o-aml-org__indicators-item.orange .o-aml__icon-warning {
    display: block;
    fill: rgb(var(--system-attention));
}

.o-aml-org__indicators-item.red .o-aml__icon-warning {
    fill: #E75671;
}

.o-aml-org__indicators-item.red:before,
.o-aml-org__indicators-item.orange:before {
    content: none;
    background-color: #E75671;
}

.o-aml-org__indicators-label {
    font-size: var(--text-medium);
    color: rgb(var(--modern-grey));
    font-weight: 500;
    line-height: 24px;
    margin: 40px 0 28px;
}

.o-aml-org__indicators-label:first-child {
    margin-top: 0;
}

.o-aml-org__indicators-status {
    font-weight: 500;
}

.o-aml-org__indicators-item.green .o-aml-org__indicators-status {
    color: #61AF53;
}

.o-aml-org__indicators-item.orange .o-aml-org__indicators-status {
    color: rgb(var(--system-attention));
}

.o-aml-org__indicators-item.red .o-aml-org__indicators-status {
    color: #E75671;
}

.o-aml-org__indicators-title {
    font-size: var(--text-medium);
    color: rgb(var(--title-color));
    line-height: 24px;
    font-weight: 500;
    margin: 12px 0 8px;
}

.o-aml-org__indicators-info {
    color: #686D79;
}

.o-aml-org .o-tooltip {
    margin: 0;
    bottom: 0;
    left: 144px;
    max-width: 280px;
    white-space: normal;
    padding: 8px 12px;
    height: auto;
    top: auto;
    line-height: 20px;
    border: 0;
    box-shadow: 0 24px 52px rgba(48, 48, 48, 0.12);
    border-radius: 4px;
}

.o-aml-org .o-tooltip::before {
    display: none;
}

.o-aml-dialog .o-infoblock {
    margin: 40px 0 0;
    padding: 8px 12px 8px 44px;
    background-position: 14px 10px;
}

.o-simple-table {
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.o-simple-table_hover tr:hover {
    background-color: rgb(var(--ghostly-white));
}

.o-table-input {
    width: 100%;
    margin: 0 0 15px;
    padding: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.o-table-input__th,
.o-table-input__td-simple {
    margin: 0;
    padding: 14px 10px 14px 19px;
    border: solid rgb(var(--light-grey));
    border-width: 1px 0;
    background-color: rgb(var(--ghostly-white));
    font-size: var(--text-normal);
    font-weight: 400;
    line-height: 1.2;
}

.o-table-input__td-simple {
    background: none;
    font-size: inherit;
    line-height: inherit;
}

.o-table-input__th:first-child,
.o-table-input__td-simple:first-child {
    padding-left: 11px;
    border-width: 1px 0 1px 1px;
}

.o-table-input__th:last-child,
.o-table-input__td-simple:last-child {
    padding-right: 20px;
    border-width: 1px 1px 1px 0;
}

.o-table-input__td {
    margin: 0;
    padding: 8px 0 0 8px;
    border-width: 0;
    vertical-align: top;
}

.o-table-input__td:first-child {
    padding: 8px 0 0 0;
}

.o-table-input__td .o-input {
    margin: 0;
}

.o-table-input__td .validationMessage {
    margin: 0;
}

.o-table-input__td .o-icon_button-wrapper {
    display: none;
}

.o-table-input__td_delete {
    position: relative;
    z-index: 1;
}

.empty-table + .o-simple-table_dynamic {
    display: none;
}

.o-simple-table__th {
    height: 52px;
    margin: 0;
    padding: 16px 10px;
    font-weight: 500;
    background-color: rgb(var(--smoky-white));
    position: relative;
}

.o-simple-table__th .sort-arrow {
    display: none;
}

.o-simple-table__td {
    margin: 0;
    padding: 16px 16px 16px 0;
    border: solid rgb(var(--light-grey));
    border-width: 1px 0;
    line-height: 1.46;
    vertical-align: top;
}

.o-simple-table__th:first-child,
.o-simple-table__td:first-child {
    padding-left: 16px;
}

.o-simple-table__th:last-child,
.o-simple-table__td:last-child {
  padding-right: 0;
}

.o-simple-table tr:last-child td {
  border: 0;
}

.o-simple-table_border  tr:last-child td {
    border-width: 0 0 1px;
}

.o-simple-table__total tr:hover, .o-simple-table tr.totalInfo:hover, .o-table_status tr:hover {
    background: rgb(var(--white));
}

.pos-amount-label {
    color: rgb(var(--success-color));
}

.o-simple-table__total {
    margin-top: 40px;
    font-size: 16px;
    font-weight: 300;
}

.o-simple-table__total .o-simple-table__td {
    margin-top: 40px;
    border-width: 1px 0 0 0;
    padding-top: 40px;
    padding-bottom: 40px;
}

.o-simple-table__total .o-simple-table__td + .o-simple-table__td {
    padding-left: 0;
}

.simple-table__footer .l-grid_9 .pagination__list {
    width: 100%;
}

.o-icon_details {
    width: 20px;
    height: 20px;
}

.o-icon_sort {
    width: 20px;
    height: 20px;
}

.account__currency {
    border-radius: 50%;
    border: solid 1px rgb(var(--light-grey));
    width: 46px;
    height: 46px;
    display: block;
    margin: 0 auto;
    font-size: 20px;
    line-height: 43px;
    text-align: center;
    position: relative;
}

/*.account__currency_blocked {
    border: 2px solid rgb(var(--critical));
    line-height: 41px;
}*/

.account__currency_critical {
    border: 2px solid #D0021B;
    line-height: 41px;
}

.account__currency_default {
    border: 2px solid #F14C60;
    line-height: 41px;
}

.account__currency_important {
    border: 2px solid rgb(var(--critical));
    line-height: 41px;
}

.account__currency_notification {
    border: 2px solid rgb(var(--attention-color));
    line-height: 41px;
}

.account__currency_critical::after, .account__currency_important::after,
.account__currency_notification::after, .account__currency_default::after {
    content: "";
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 16px;
    height: 16px;
    background: url(img/icons/o-icon-blocked-account.svg) no-repeat 0 0;
}

.section .o-collapse__container,
.section .o-collapse__container:hover {
    text-align: center;
    cursor: pointer;
    margin: 28px -40px 0;
    padding: 0 !important;
    display: block;
}

.o-collapse__container .o-icon {
    width: 48px;
    height: 24px;
    padding: 5px 0 3px !important;
    border-top-left-radius: 50% 100%;
    border-top-right-radius: 50% 100%;
    background-color: rgb(var(--smoky-white));
}

.o-collapse__container .o-icon.is-rotated {
    border-radius: 0;
    border-bottom-left-radius: 50% 100%;
    border-bottom-right-radius: 50% 100%;
    padding: 3px 0 5px !important;
}

.toggle-chart-container {
    padding: 30px 0;
}

.toggle-chart-container .o-icon {
    display: none;
}

.toggle-chart-container_visible .show {
    display: none;
}

.toggle-chart-container_visible .o-icon {
    display: inline-block;
}

.o-chart-container {
    border-bottom: 1px solid rgb(var(--light-grey));
    margin-bottom: 24px;
}

.o-chart {
    padding-bottom: 24px;
}

.o-chart__legend {
    margin: 16px 0 0 38px;
}

.o-chart__legend li {
    display: inline-block;
    margin: 0 22px 0 0;
    padding: 0;
}

.o-chart__legend-mark {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    margin-right: 4px;
    vertical-align: middle;
}

.o-chart__legend-label {
    font-size: 12px;
    vertical-align: middle;
}

.o-chart__legend li:before {
    content: none;
}

.o-canvas:hover + .o-chart__tooltip {
    z-index: 0;
}

.o-chart__tooltip {
    position: absolute;
    opacity: 0;
    border: 1px solid rgb(var(--light-grey));
    border-radius: 4px;
    box-shadow: 0 0 10px 0 #eaebec;
    background-color: rgb(var(--white));
    padding: 12px 10px 12px 14px;
    z-index: -1;
    transition: all 0.2s ease 0s, z-index 0.1s step-end 0s;
}

.o-chart__tooltip:before,
.o-chart__tooltip:after {
    content: '';
    position: absolute;
    height: 5px;
    width: 5px;
    background-color: rgb(var(--white));
    bottom: -3px;
    left: 50%;
    margin-left: -2px;
    transform: rotate(45deg);
    box-shadow: 3px 3px 10px 0 #eaebec;
}

.o-chart__tooltip:after {
    box-shadow: -2px -2px 1px 0 rgb(var(--white));
}

.o-chart__tooltip-title {
    font-size: 12px;
    text-align: center;
}

.o-chart__tooltip-mark {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 8px;
    border-radius: 6px;
}

.o-chart__tooltip-amount {
    font-size: 20px;
    font-weight: 300;
    vertical-align: middle;
    white-space: nowrap;
}

.o-chart-acquiring {
    margin-top: 16px;
}

.copyright {
    font-size: var(--text-small);
    text-align: center;
    padding: 112px 0 20px;
}

.home-bottom-panel-wrapper {
    overflow: hidden;
}

.home-bottom-panel {
    display: table;
    table-layout: fixed;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: 20px;
    border-spacing: 20px 0;
}

.home-bottom-panel__row {
    display: table-row;
    height: 1px;
}

.home-cur-panel,
.home-news-panel {
    display: table-cell;
    height: inherit;
    padding: 0 10px;
}

.home-bottom-panel .o-simple-container {
    overflow: hidden;
    padding-bottom: 32px;
    position: relative;
    height: 100%;
    margin-top: 0;
}

.home-news-panel.o-simple-container:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 170px;
    border-radius: 4px;
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 1) 100%);
}

.home-bottom-panel__cell {
    max-height: 316px;
}

.home-bottom-panel__cell .o-table th {
    position: static;
}

.home-news-panel .o-title_sub {
    display: inline-block;
    padding-right: 16px;
}

.home-news-panel__item {
    margin-bottom: 24px;
    position: relative;
}

.home-news-panel__item-title {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 300;
    margin-bottom: 4px;
    font-size: 16px;
    color: rgb(var(--graphite));
}

.home-news-panel__text {
    margin-top: 10px;
}

.information-panel {
    display: flex;
    margin: 20px -10px 0;
}

.information-panel__item {
    flex: 1;
    background-color: rgb(var(--white));
    border-radius: 4px;
    margin: 0 10px;
    padding: 24px 28px 60px 28px;
    position: relative;
    overflow: hidden;
    min-height: 128px;
    transition: all var(--standart-transition);
    cursor: pointer;
    top: 0;
}

.information-panel__item:hover {
    top: -2px;
    box-shadow: 0 16px 24px rgba(61, 64, 71, 0.12);
}

.information-panel__item.disabled:hover {
    top: 0;
    box-shadow: none;
    cursor: default;
}

.information-panel__item-label {
    max-width: 144px;
}

.information-panel__error,
.information-panel__item-counter,
.information-panel__item .o-link,
.information-panel__skeleton-counter {
    position: absolute;
    bottom: 24px;
}

.information-panel__error {
    color: rgba(var(--graphite), 0.5);
}

.information-panel__error,
.information-panel__item .o-link {
    bottom: 25px;
}

.information-panel__item-counter {
    font-size: var(--text-title);
    color: rgb(var(--custom-first));
    line-height: 28px;
}

.information-panel__item svg {
    width: 72px;
    height: 74px;
    position: absolute;
    top: 50%;
    right: -16px;
    transform: translateY(-50%);
}

svg.o-icon_returned-doc {
    width: 54px;
    right: -7px;
}

svg.o-icon_important-mail {
    width: 68px;
    right: -14px;
}

svg.o-icon_calendar-event {
    height: 62px;
}

svg.o-icon_currency-supply {
    right: -8px;
}

.information-panel__skeleton-label,
.information-panel__skeleton-label:after,
.information-panel__skeleton-counter {
    width: 116px;
    height: 16px;
    border-radius: 4px;
    background-color: rgb(var(--smoky-white));
}

.information-panel__skeleton-label:after {
    content: '';
    display: inline-block;
    width: 60px;
    margin-top: 20px;
}

.information-panel__skeleton-counter {
    width: 36px;
    height: 24px;
}

.information-panel_small .information-panel__item {
    padding: 16px 120px 16px 28px;
    min-height: 76px;
}

.information-panel_small .information-panel__skeleton-label {
    margin-top: 3px;
    margin-left: 56px;
}

.information-panel_small .information-panel__skeleton-counter {
    bottom: 25px;
}

.information-panel_small .information-panel__item-counter,
.information-panel_small .information-panel__item-label {
    position: static;
    display: inline-block;
    margin-right: 16px;
    vertical-align: middle;
}

.information-panel_small .information-panel__item-label {
    max-width: none;
}

.information-panel_small .information-panel__item {
    display: flex;
    align-items: center;
}

.information-panel_small .information-panel__error,
.information-panel_small .information-panel__item .o-link {
    position: static;
    margin-top: 4px;
}

.information-panel_small .information-panel__item svg {
    top: 12px;
    right: 24px;
    transform: none;
}

.information-panel__tabs {
    padding: 13px 20px;
    margin-bottom: 0;
    border-radius: 4px 4px 0 0;
    background-color: rgb(var(--white));
    border: 1px solid #e5e5e5;
}

.information-panel__tabs .o-tabs__item {
    margin-right: 20px;
}

.information-panel__tabs .o-tabs_current:after {
    content: none;
}

.information-panel__table td {
    vertical-align: top;
}

.home-documents .o-tabs {
    margin: 0;
}

.o-tabs .counter_css {
    font-size: var(--text-extra-small);
    display: inline-block;
    padding: 2px 6px;
    background: rgb(var(--smoky-white));
    border-radius: 10px;
    margin-left: 6px;
    line-height: 1.2;
    color: rgb(var(--graphite));
}

.home-documents .o-tabs__body .o-tabs {
    border: 0;
}

.home-documents .o-tabs__body .tab-row {
    margin: -26px -40px 40px;
    border-top: 1px solid rgb(var(--light-grey));
    padding: 24px 40px 20px;
    background: rgb(var(--ghostly-white));
    box-sizing: content-box;
}

.home-documents .o-tabs__body_new .tab-row {
    margin-top: 0;
}

.home-operations-panel {
    padding-bottom: 24px !important;
    margin-bottom: 0 !important;
}

.home-documents .o-tabs__body .home-operations-panel .tab-row {
    border: 0;
    margin: 0;
    padding: 20px;
}

.home-operations-panel .period-filter {
    background: none;
    border: 0;
    padding: 0;
    margin-top: 0;
}

.home-operations-panel .o-form__period {
    width: 168px;
    padding-right: 32px;
}

.home-documents .o-tabs__body .o-tabs__link::after {
    display: none;
}

.home-documents .o-tabs__body .o-tabs__item,
.home-documents .o-tabs__body .o-tabs__link {
    border: 0;
}

.home-documents .o-tabs__body .o-tabs__item {
    margin-right: 20px;
}

.home-documents .pos-amount-label {
    color: #61AF53;
}

.o-page-static .news-item {
    padding: 20px 40px 60px;
    position: relative;
    line-height: 18px;
    margin: 0 0 20px;
}

.news-item__header {
    padding-bottom: 20px;
}

.news-item__date {
    margin-top: 4px;
    font-weight: 400;
}

.o-page-static .news-item_short {
    padding: 20px 40px;
}

.news-item .o-link {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 32px;
    text-align: center;
    cursor: pointer;
    border-top: solid 1px #eeeff0;
    line-height: 28px;
}

.newsBody {
    max-height: 70px;
    overflow: hidden;
}

.news-item.opened .newsBody {
    max-height: none;
}

/* DOCUMENT STATUS */
.o-document-state {
    padding-left: 28px;
}

[class*="doc-state-"] {
    position: relative;
    display: inline-block;
}

[class*="doc-state-"] .stateIco {
    position: absolute;
    top: 0;
    left: -30px;
    width: 20px;
    height: 20px;
}

.doc-state-DELIVERED .stateIco {
    background: url(img/icons/o-doc-status__dostavlen.svg) no-repeat 0 0;
}

.doc-state-SENT .stateIco {
    background: url(img/icons/o-doc-status__otpravlen.svg) no-repeat 0 0;
}

.doc-state-SENT_TO_PAYER .stateIco {
    background: url(img/icons/o-doc-status__send-to-bank.svg) no-repeat 0 0;
}

.doc-state-FPS_PERFORMED .stateIco,
.doc-state-PROCESSED .stateIco {
    background: url(img/icons/o-doc-status__ispolnen.svg) no-repeat 0 0;
}

.doc-state-RECEIVED .stateIco,
.doc-state-NEW .stateIco,
.doc-state-RECEIVED_CL .stateIco {
    background: url(img/icons/o-doc-status__prinyat.svg) no-repeat 0 0;
}

.doc-state-TO_WORK .stateIco,
.doc-state-ACCEPTED .stateIco {
    background: url(img/icons/o-doc-status__prinyat-v-rabotu.svg) no-repeat 0 0;
}

.doc-state-FAILED .stateIco,
.doc-state-REJECTED .stateIco {
    background: url(img/icons/o-doc-status__blocked.svg) no-repeat 0 0;
}

.doc-state-CANCELED .stateIco {
    background: url(img/icons/o-doc-status__likvidirovan.svg) no-repeat 0 0;
}

.doc-state-FPS_RETURN .stateIco,
.doc-state-PROCESSED-ERRORS .stateIco,
.doc-state-RETURNED .stateIco {
    background: url(img/icons/o-doc-status__vozvrashen.svg) no-repeat 0 0;
}

.doc-state-TO_CONTROL .stateIco {
    background: url(img/icons/o-doc-status__na-controle.svg) no-repeat 0 0;
}

.doc-state-TO_CARD .stateIco,
.doc-state-CONTROL_OK .stateIco {
    background: url(img/icons/o-doc-status__ne-prosmotren.svg) no-repeat 0 0;
}

.doc-state-DELIVER_TO_PAYER .stateIco {
    background: url(img/icons/o-doc-status__delivered-to-bank.svg) no-repeat 0 0;
}

.doc-state-TO_CONTROL_OTP .stateIco,
.doc-state-INCOME_WAIT .stateIco,
.doc-state-IN_PROCESS .stateIco,
.doc-state-WAIT_PROC .stateIco,
.doc-state-WAIT_PLANNED .stateIco,
.doc-state-TRANSFER_WAIT .stateIco {
    background: url(img/icons/o-doc-status__waiting.svg) no-repeat 0 0;
}

.doc-state-CONTROL_OK_OTP .stateIco {
    background: url(img/icons/o-doc-status__otp-ok.svg) no-repeat 0 0;
}

.doc-state-OTP_SENT .stateIco {
    background: url(img/icons/o-doc-status__otp-sent.svg) no-repeat 0 0;
}

.doc-state-READY .stateIco {
    background: url(img/icons/o-doc-status__podgotovlen.svg) no-repeat 0 0;
}

.doc-state-SIGNED .stateIco {
    background: url(img/icons/o-doc-status__podpisan.svg) no-repeat 0 0;
}

.doc-state-PARTIAL .stateIco,
.doc-state-PARTIAL_PAID .stateIco {
    background: url(img/icons/o-doc-status__partial.svg) no-repeat 0 0;
}

.o-icon__status-error {
    width: 1rem;
    height: 1rem;
}

.o-svg-type-wrapper {
    width: 2rem;
    height: 2rem;
    background: rgb(var(--custom-first));
    border-radius: 50%;
    padding: .5rem;
    display: inline-block;
}

.o-svg-type {
    width: 1rem;
    height: 1rem;
    fill: rgb(var(--custom-first));
}

.organization-info {
    border: solid 1px rgb(var(--light-grey));
    padding: 12px 20px;
    margin-top: -1px;
    position: relative;
}

.organization-info.is-opened {
    background: rgb(var(--ghostly-white));
}

.o-button_title {
    position: absolute;
    right: 0;
    top: -64px;
}

.o-checkbox-container {
    padding: 16px;
    margin-top: 12px;
    border: 1px solid rgb(var(--light-grey));
}

/* STATIC PAGE */
.o-page-static,
.o-simple-container,
.o-simple-container_inset {
    border-radius: 4px;
    position: relative;
    padding: 40px 20px 20px 40px;
    margin-bottom: 40px;
    background-color: rgb(var(--white));
}

.o-simple-container {
    padding: 32px 40px 0;
    margin: 20px 0 0;
}

.o-simple-container .o-simple-container_motions {
    padding: 0;
    margin: 0;
    border: 0;
}

.o-simple-container_inset {
    padding: 32px 16px 24px 36px;
    margin-bottom: 20px;
}

.o-simple-container__gray {
    margin: -24px -40px 0;
    padding: 24px 40px 0;
    background: rgb(var(--ghostly-white));
}

.o-salary-container {
    background: rgb(var(--white));
    padding: 2rem 2rem 0 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    position: relative;
}

.o-salary-container .o-tabs {
    width: calc(100% + 4rem);
    margin-left: -2rem;
    padding-left: 2rem;
}

.o-salary-container .o-collapse__container,
.o-salary-container .o-collapse__container:hover {
    padding-top: 4px !important;
}

.onb-salary.o-mask {
    z-index: 90;
}

.onb-salary .onb-salary__dialog {
    padding-left: 0;
    padding-right: 0;
    border-radius: 12px;
}

.onb-salary__content {
    padding-left: 13.5417%;
    padding-right: 13.5417%;
}

.onb-toolbar__close .o-icon_close {
    width: 32px;
    height: 32px;
    top: 4px;
    right: 4px;
}

.salary-slider {
    overflow: hidden;
    white-space: nowrap;
}

.salary-slider__item {
    display: inline-block;
    width: 100%;
    transition: margin var(--standart-transition);

}

.salary-slider__animation {
    width: 100%;
    margin: 32px 0 40px;
    border: 4px solid rgb(var(--smoky-white));
    min-height: 380px;
}

.salary-slider__buttons {
    margin: 0.625rem 0 1.25rem;
    text-align: center;
}

.salary-slider__buttons-item {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 5px;
    border-radius: 3px;
    background-color: rgb(var(--custom-first));
    cursor: pointer;
    opacity: 0.32;
    transition: all var(--standart-transition);
}

.salary-slider__buttons-item.active {
    opacity: 1;
}

/* WORKERS */
.worker-item {
    padding: 20px 0;
    border: 1px solid rgb(var(--light-grey));
    border-width: 1px 0;
    position: relative;
}

.worker-item + .worker-item {
    border-width: 0 0 1px 0;
}

.worker-item .o-icon_close {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 10px;
}

.worker-item .o-select__value,
.worker-item .o-input,
.worker-item .validationMessage {
    margin-bottom: 0;
}

.worker-item .o-input.invalid,
.worker-item .o-select.invalid .o-select__value {
    margin-bottom: 16px;
}

.worker-item__docs {
    opacity: .6;
}

.worker-item__name {
    font-weight: 500;
}

.worker-number {
    font-weight: 500;
}

.workers-counter {
    position: absolute;
    bottom: 46px;
    left: 50px;
}

.o-icon_delete-worker {
    position: absolute;
    top: 20px;
    right: 20px;
    fill: #B0B8BF;
    cursor: pointer;
}

.add-worker {
    padding: 28px 24px;
    background: rgb(var(--ghostly-white));
    margin-top: 30px;
}

.add-worker .o-button, .o-salary__buttons .o-button {
    border: 1px solid rgb(var(--light-grey));
    color: rgb(var(--graphite));
    padding: 0 8px;
    background: rgb(var(--white));
    font-size: var(--text-small);
}

.add-worker .o-button:hover, .o-salary__buttons .o-button:hover {
    color: rgb(var(--custom-first));
    border-color: rgb(var(--custom-first));
}

.dialog__footer_salary {
    margin: 0 20px 0 0;
    border: none;
}

.o-icon_add-worker-item {
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -10px;
    fill: rgb(var(--custom-first));
}

.worker-info__subtitle,
.worker-info__label {
    font-size: var(--text-small);
    color: rgb(var(--grey));
    margin-bottom: 16px;
}

.worker-info__subtitle,
.sv_inverse .worker-info__label {
    color: inherit;
}

.worker-info__account-icon {
    width: 16px;
    height: 16px;
    margin-left: 10px;
    vertical-align: middle;
    cursor: pointer;
}

/* ONBOARDING */
body.is-onboarding {
    overflow: hidden;
}

.o-mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--graphite), .12);
    z-index: 89;
}

.sv_inverse .o-mask {
    background-color: rgba(var(--white), .5);
}

.onboarding-dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 612px;
    height: 652px;
    border-radius: 16px;
    background-color: #FFFFFF;
    z-index: 90;
    text-align: center;
    font-size: var(--text-small);
    line-height: 20px;
}

.sv_inverse .onboarding-dialog {
    background-color: rgb(var(--ghostly-white));
}

.onbording__close {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 14px;
    right: 14px;
    fill: #BEC0C7;
    cursor: pointer;
}

.sv_inverse .onbording__close {
    fill: rgb(var(--white))
}

.onboarding__slider {
    display: flex;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.onboarding__slide {
    width: 612px;
    flex-shrink: 0;
    margin-left: 0;
    transition: margin-left var(--standart-transition);
}

.onbording__img {
    height: 444px;
    background-color: rgb(var(--smoky-white));
    background-size: contain;
    background-repeat: no-repeat;
}

.onbording__info {
    width: 348px;
    margin: 40px auto 0;
    text-align: center;
}

.onboarding__continue,
.onboarding__start {
    position: absolute;
    left: 50%;
    bottom: 52px;
    transform: translateX(-50%);
    color: rgb(var(--custom-first));
    cursor: pointer;
}

.onboarding__start {
    display: none;
    bottom: 40px;
    color: #ffffff;
}

.sv_inverse .onboarding__start {
    background-color: rgb(var(--white));
}

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

.onboarding__next-btn,
.onboarding__prev-btn {
    position: absolute;
    top: 50%;
    right: -52px;
    margin-top: -18px;
    transform: rotate(-90deg);
    z-index: 90;
    fill: #FFFFFF;
    cursor: pointer;
}

.onboarding__prev-btn {
    display: none;
    right: auto;
    left: -52px;
    transform: rotate(90deg);
}

.banking-support {
    cursor: pointer;
}

.banking-support__wrapper {
    position: relative;
    padding-bottom: 28px;
}

.banking-support__wrapper::before {
    border-top: 1px solid rgb(var(--light-grey));
    width: calc(100% + 2000px);
    height: calc(100% + 96px);
    background: #fff;
    content: "";
    position: absolute;
    left: -1000px;
    top: -96px;
    z-index: -1;
}

.banking-support__item {
    padding: 28px;
    margin-bottom: 20px;
    background-color: rgb(var(--white));
    border-radius: 4px;
    transition: box-shadow var(--standart-transition);
}

.banking-support__item:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
}

.banking-support__item-header {
    margin-bottom: 26px;
}

.banking-support__title {
    display: inline-block;
    font-size: 19px;
    font-weight: 500;
    margin-right: 17px;
    vertical-align: middle;
    line-height: 28px;
}

.banking-support__status::before {
    content: '';
    display: inline-block;
    border-radius: 3px;
    border: 3px solid #61AF53;
    margin-right: 9px;
    margin-bottom: 1px;
}

.banking-support__status.created::before {
    border-color: rgb(var(--system-attention));
}

.banking-support__status.closed::before {
    border-color: rgb(var(--critical));
}

.banking-support__label {
    display: inline-block;
    width: 144px;
    color: rgb(var(--grey));
}

.banking-support__amount {
    font-size: var(--text-medium);
    font-weight: 500;
}

.banking-support__contract-amount {
    width: 184px;
    font-weight: 500;
    font-size: 17px;
}

.banking-support__contract-label {
    font-size: var(--text-extra-small);
    color: rgb(var(--grey));
    margin-top: 4px;
}

.banking-support__button {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 12px;
    border-radius: 4px;
    color: rgb(var(--custom-first));
    border: 1px solid rgba(var(--custom-first), 0.32);
    cursor: pointer;
}

.banking-support__count-org {
    font-size: var(--text-medium);
    margin: 28px 0 20px;
    line-height: 24px;
}

.banking-support__details {
    width: 43.82%;
    float: left;
    padding-right: 36px;
}

.banking-support__details-title {
    margin: 12px 0 20px;
    font-size: var(--text-medium);
    color: rgb(var(--grey));
}

.banking-support__details-label,
.banking-support__details-number {
    padding-bottom: 8px;
}

.banking-support__details-label {
    padding-right: 28px;
}

.banking-support__details-notes {
    padding-top: 24px;
    color: rgb(var(--grey));
}

.banking-support__details-expenses {
    width: 56.18%;
    float: left;
    margin: 57px 0 0;
}

.banking-support__details-expenses table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.banking-support__details-expenses table th {
    font-weight: 500;
    padding: 0 0 16px;
}

.banking-support__details-expenses table td {
    padding: 16px 0;
    border-top: 1px solid rgb(var(--light-grey));
}

.banking-support__details-expenses table th + th,
.banking-support__details-expenses table td + td {
    padding-left: 36px;
}

.banking-support__expenses-code {
    margin-right: 14px;
}

.banking-support__org {
    padding: 0;
    position: relative;
    border-bottom: 1px solid transparent;
}

.banking-support__org:hover {
    box-shadow: none;
}

.banking-support__org-name {
    font-size: var(--text-medium);
    font-weight: 500;
    margin-bottom: 8px;
    max-width: 586px;
}

.banking-support__org-label {
    color: rgb(var(--grey));
    margin-bottom: 10px;
}

.banking-support__org-amount {
    width: 184px;
    font-weight: 500;
}

.banking-support__org .banking-support__status {
    margin-left: 20px;
}

.banking-support__org .banking-support__details-title {
    margin-top: 32px;
}

.banking-support__org .banking-support__details-expenses {
    margin-top: 77px;
}

.banking-support__org .tree-node,
.banking-support__header,
.banking-support__details-collapse span {
    cursor: pointer;
}

.banking-support__org .tree-node,
.banking-support__org .tree-node_opened {
    position: relative;
}

.banking-support__org-expend {
    position: relative;
    width: 76px;
    float: left;
    margin-top: 16px;
    padding: 9px 32px 9px 8px;
    border: 1px solid rgb(var(--light-grey));
    border-radius: 4px;
    text-align: center;
    font-size: var(--text-extra-small);
    line-height: 16px;
    color: rgb(var(--grey));
    transition: color var(--standart-transition), border-color var(--standart-transition);
}

.banking-support__tooltip {
    float: left;
    margin: 21px 0 0 36px;
    color: rgb(var(--grey));
    display: none;
}

.tree-node:hover .banking-support__tooltip {
    display: block;
}

.banking-support__org-expend:hover {
    border-color: rgb(var(--custom-first));
    color: rgb(var(--custom-first));
    text-decoration: none;
}

.banking-support__org-expend .o-icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 7px;
    right: 7px;
}

.banking-support__org-expend:hover .o-icon {
    fill: rgb(var(--custom-first));
}

.banking-support__org-expend.active {
    color: rgb(var(--custom-first));
}

.banking-support__org-expend.active .o-icon {
    fill: rgb(var(--custom-first));
    transform: rotate(180deg);
}

.banking-support__details-collapse {
    float: right;
    width: calc(100% - 112px);
    color: rgb(var(--custom-first));
    margin-top: 22px;
}

.banking-support__org-contract {
    padding: 28px;
    min-height: 160px;
}

.banking-support__org .tree-subtree {
    margin-left: 36px;
    border-left: 2px solid rgba(13, 89, 153, 0.2);
    overflow-x: auto;
    padding: 4px 0 12px;
}

.banking-support__org > div > div > .tree-node + .tree-subtree {
    margin-bottom: 28px;
    transform: translateY(-16px);
}

.banking-support__org .tree-subtree .banking-support__org-contract {
    min-height: 128px;
    padding: 12px 20px;
    margin-left: 8px;
    margin-right: 8px;
    transition: box-shadow var(--standart-transition);
    border-radius: 4px;
}

.banking-support__org .tree-subtree .banking-support__org-contract:hover {
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
}

.banking-support__org-expend.is-node-end:hover,
.banking-support__org-expend.is-node-end {
    border: none;
    color: rgb(var(--grey));
}

.banking-support__org-expend.is-node-end .o-icon {
    display: none;
}

/* MARKETPLACE */
.marketplace {
    max-width: 1152px;
}

.marketplace-container,
.marketplace-multiple-container {
    display: flex;
    flex-wrap: wrap;
}

.marketplace-container .l-grid_4,
.marketplace-multiple-container > div {
    float: none;
    width: 33.33%;
    padding-right: 28px;
    padding-bottom: 28px;
}

.marketplace-multiple-container .l-grid_4 {
    padding-right: 0;
    width: auto;
    float: none;
}

.marketplace__banner {
    width: 880px;
    height: 300px;
    background: url(img/marketplace__banner.jpeg) no-repeat 50% 25%;
    background-size: cover;
    margin-bottom: 40px;
}

.marketplace__item {
    height: 100%;
    padding-bottom: 20px;
    border-radius: 4px;
    line-height: 1.2;
    background-color: rgb(var(--white));
}

.marketplace__inner {
    overflow: hidden;
    padding: 200px 28px 0;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.marketplace .activated .marketplace__inner,
.marketplace .wait .marketplace__inner {
    overflow: visible;
}

/*.marketplace__item::after {
    opacity: 0;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--white));
    border-radius: 3px;
    transition: opacity 300ms ease 0s;
    z-index: 4;
}

.marketplace__item:hover::after {
    opacity: .9;
}*/

.marketplace .activated .marketplace__item:hover::after {
    opacity: 0;
}

.marketplace .activated .marketplace__item {
    border: 1px solid rgb(var(--custom-first));
}

.marketplace .activated .marketplace__item:hover {
    cursor: auto;
}

.marketplace__inner .o-title {
    cursor: pointer;
    line-height: 1.4;
    font-size: var(--text-title);
    word-wrap: break-word;
    -ms-word-wrap: break-word;
}

.marketplace__inner .o-title:hover {
    color: rgb(var(--custom-first));
}

.marketplace__img {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 172px;
    overflow: hidden;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    z-index: 1;
}

.marketplace__img img {
    width: 100%;
    height: auto;
    transition: transform 300ms ease-in-out;
}

.marketplace__img:hover img {
    transform: scale(1.05);
}

.marketplace__info {
    text-align: left;
    padding-top: 20px;
    line-height: 1.54;
    flex-grow: 1;
    padding-bottom: 60px;
}

.marketplace__info li:before {
    display: none;
}

.marketplace__info ul li:before {
    display: block;
}

.marketplace__info * {
    font-size: var(--text-extra-small);
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-style: normal;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.marketplace__info li {
    padding: 0;
    margin: 6px 0 0;
}

.marketplace__info ol,
.marketplace__info ul {
    padding-left: 20px;
}

.marketplace__info li::before {
    top: 6px;
    left: -17px;
}

.marketplace__item:hover {
    border-color: rgb(var(--custom-first));
}

.marketplace__item .o-button_primary {
    width: 144px;
    z-index: 14;
}

.marketplace__item:hover .o-button_primary {
    display: block;
}

.marketplace__item-banner {
    height: 460px;
    position: relative;
    margin-bottom: 40px;
    overflow: hidden;
}

.marketplace__item-banner img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
}

.marketplace__item-info {
    position: absolute;
    top: 40px;
    right: 40px;
    padding: 40px;
    overflow: hidden;
    width: 460px;
    max-height: 320px;
    background-color: rgba(0, 0, 0, 0.75);
    color: rgb(var(--white));
    font-size: var(--text-normal);
}

.marketplace__item-info:empty {
    display: none;
}

.marketplace__item-info p {
    padding-bottom: 7px;
}

.marketplace__item-info h2 {
    color: inherit;
}

.marketplace__item-banner .o-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.marketplace__item-description {
    font-size: var(--text-medium);
}

.marketplace__item-description label {
    line-height: 1.69;
    font-size: var(--text-small);
    display: block;
}

.marketplace__item-description h2 {
    margin-bottom: 32px;
}

.marketplace__item-description h4 {
    padding: 10px 0 24px;
    font-size: var(--text-increased);
    line-height: 1;
    font-weight: 300;
    margin: 0;
}

.marketplace__item-description .o-delimiter_horizontal {
    margin: 16px 0 40px
}

.marketplace__item__price {
    border-top: 1px solid #cfd3dc;
    padding-top: 12px;
    font-size: var(--text-title);
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 20px;
}

.marketplace.clear .tariffs__item {
    border: 1px solid rgb(var(--light-grey));
    margin-right: 20px;
}

.tariffs__infoLink {
    padding-top: calc(25px + 1rem);
}

.marketplace.clear .tariffs__infoLink {
    padding: 20px 20px 0 0;
}

.tariffs-notice {
    padding: 20px;
    border: 1px solid rgb(var(--success-color));
    background-color: rgba(126, 211, 33, 0.02);
    font-size: var(--text-label);
}

.tariffs-notice_red {
    border: 1px solid rgb(var(--critical));
    background-color: rgba(var(--critical), .1);
}

.tariffs__item {
    background: rgb(var(--white));
    border-radius: 4px;
    padding: 28px 28px 32px 32px;
}

.tariffs__item::after {
    content: "";
    display: block;
    clear: both;
}

.tariffs__img {
    float: right;
    width: 280px;
    height: 212px;
}

.tariffs__img__image {
    height: 100%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover, auto;
    background-position: center, top;
}

.tariffs__inner {
    margin-right: 320px;
}

.tariffs__item-info {
    font-size: var(--text-small);
    padding: 8px 0 56px;
    text-align: left;
    line-height: 1.3;
}

.tariffs__item-info ul li::before {
    top: 5px;
}

.tariffs__price {
    font-size: var(--text-label);
    font-weight: 600;
    line-height: 1.5;
    display: inline-block;
    margin-left: 2rem;
}

.tariffs__status,
.tariffs__status_wait {
    display: inline-block;
    background: #61AF53;
    border-radius: 1px;
    padding: 4px 8px;
    font-size: var(--text-small);
    line-height: 1.538;
    color: #fff;
    margin: -12px 0 20px;
}

.tariffs__status_wait {
    color: #61AF53;
    background: rgba(97, 175, 83, 0.08);
}

.tariffs__status .o-icon__alarm-clock {
    margin: 3px -7px;
}

.o-icon__alarm-clock {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.o-icon__tariff-error {
    display: inline-block;
    width: 240px;
    height: 240px;
    margin: 40px 0 20px;
}

.tariff-error__text {
    margin-bottom: 80px;
}

.partners-loader {
    border-radius: 50%;
    margin: 200px auto 0;
    width: 64px;
    height: 64px;
    border: 6px solid rgba(0, 0, 0, 0.05);
    border-top: 6px solid rgb(var(--graphite));
    animation: rotating 1.2s infinite linear;
}

/* CORPORATE CARDS */
.o-page__org-header {
    margin: 0 -20px 12px -40px;
    padding: 32px 20px 20px 40px;
    font-weight: 500;
    font-size: var(--text-label);
    line-height: 1.5;
    background: rgb(var(--ghostly-white));
}

.o-page__bank-header {
    margin: 0 -20px 32px -40px;
    padding: 32px 20px 20px 40px;
    font-weight: 300;
    font-size: var(--text-label);
    line-height: 1.5;
    background: rgb(var(--ghostly-white));
}

.o-page__org-header + .o-page__bank-header {
    margin-top: -80px;
}

.corporate-cards-account {
    white-space: nowrap;
}

.corporate-cards-accountError {
    color: #9397A1;
    font-size: 12px;
}

.corporate-cards {
    height: 120px;
    width: 187px;
    margin-bottom: 4px;
    padding: 0;
    background: url(img/corpcard.png) no-repeat 50% 0;
    background-size: cover;
    text-transform: uppercase;
    position: relative;
    float: left;
    border-radius: 12px;
    z-index: 1;
    transition: margin 150ms ease-in-out;
}

.corporate-cards:hover {
    margin-bottom: 8px;
    margin-top: -4px;
}

.corp-card-select__icon {
    height: 24px;
    width: 39px;
    margin-top: -3px;
    padding: 0;
    background: url(img/cards/default/def_small.png) no-repeat 50% 0;
    background-size: cover;
    text-transform: uppercase;
    position: relative;
    float: left;
    border-radius: 3px;
}

.corp-card-select__value {
    margin-left: 60px;
}

.corp-pin-card {
    padding: 16px 48px 16px 88px;
    background-color: rgb(var(--ghostly-white));
    border-radius: 8px;
    margin-bottom: 32px;
    position: relative;
}

.corp-pin-card > div {
    position: static;
}

.corp-pin-card .corporate-cards {
    width: 48px;
    height: 32px;
    position: absolute;
    top: 18px;
    left: 20px;
    border-radius: 4px;
}

.corp-pin-card .corporate-cards__info {
    padding-top: 0;
    padding-left: 0;
    position: static;
}

.corp-pin-card .corporate-cards__number,
.corp-pin-card .corporate-cards__holder,
.corp-pin-card .corporate-cards__date {
    line-height: inherit;
    padding-top: 0;
}

.corp-pin-card .wrapper-card-status {
    top: 16px;
    right: 20px;
}

.corporate-cards__statement {
    display: none;
    position: absolute;
    cursor: pointer;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(0, 0, 0, .3);
    color: #fff;
    text-align: center;
    text-transform: none;
    padding-top: 38px;
}

.corporate-cards__statement svg {
    display: block;
    margin: 0 auto 4px;
    fill: #fff !important;
}

.corporate-cards:hover .corporate-cards__statement {
    display: block;
}

.corporate-cards__info {
    padding-left: 205px;
    padding-top: 0.5rem;
    position: relative;
}

.corporate-cards__add {
    padding-top: 77px;
    text-align: center;
    border-radius: 8px;
    background: rgb(var(--smoky-white));
    font-size: 23px;
    font-weight: 300;
    cursor: pointer;
    color: rgb(var(--graphite));
    line-height: 1;
}

.wrapper-card-status,
.svg-icon_card-status {
    width: 20px;
    height: 20px;
    position: absolute;
    right: 42px;
    top: 6px;
}

.corporate-cards__utils {

}

.corp-pin-recovery .wrapper-card-status {
    right: 10px;
}

.wrapper-card-status .svg-icon_card-status {
    position: static;
}

.wrapper-card-status .o-tooltip.bottom_right {
    right: -9px;
    top: calc(100% + 8px);
}

.svg-icon_card-status_relative {
    position: relative;
    top: 2px;
    right: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 16px;
}

.corporate-cards__number {
    font-weight: 500;
    padding-top: 4px;
}

.corporate-cards__date,
.corporate-cards__product,
.corporate-cards__holder,
.corporate-cards__org {
    line-height: 1.5;
    padding-top: 4px;
}

.corporate-cards__utils {
    position: absolute;
    right: 0;
    top: 0;
}

.corp-cards-label .o-tooltip_right .o-tooltip_icon {
    top: 0;
    right: -24px;
}

.corp-cards-label .o-tooltip_right .o-tooltip_input {
    left: calc(100% + 24px);
    top: -13px;
}

.o-icon_attachement,
.o-icon_card-actions {
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 6px;
    margin: -6px;
    border-radius: 4px;
}

.o-table__td .o-attachement:hover,
.o-icon_attachement:hover,
.o-icon_card-actions:hover {
    background: rgb(var(--light-grey));
    fill: currentColor;
}

.o-table__td .o-attachement {
    padding: 6px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.corporate-cards .o-icon_card-actions {
    vertical-align: top;
}

.corporate-cards__actions {
    position: absolute;
    right: 10px;
    top: 3px;
}

.corp-cards-wrapper {
    padding: 24px 28px 28px;
    background-color: rgb(var(--white));
    border-bottom: 1px solid rgb(var(--border-color));
}

.corp-cards-wrapper:first-child {
    border-radius: 4px 4px 0 0;
}

.corp-cards-wrapper:last-child {
    border-radius: 0 0 4px 4px;
    border-bottom: none;
    margin: 0 0 20px;
}

.corp-cards-label {
    color: rgba(var(--graphite-plus));
    display: inline-block;
    position: relative;
    padding-bottom: 4px;
}

.corp-cards-n {
    color: rgb(var(--graphite));
    font-weight: normal !important;
    padding-bottom: 4px;
}

.corp-cards-empty {
    padding-top: 467px !important;
    min-height: 700px;
    background: rgb(var(--white)) url(img/icons/copr-cards-null.svg) no-repeat 50% 100px;
}

.corp-cards-empty .empty-panel-link {
    margin-top: 1.75rem;
    text-decoration: none !important;
}

.corporate-cards__message {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 187px;
    background-color: rgba(var(--graphite), 0.8);
    border-radius: 10px;
    text-transform: none;
    text-align: center;
    color: rgb(var(--panel-bg));
}

.corporate-cards__message-text {
    display: inline-block;
    line-height: 1.69;
    vertical-align: middle;
    padding: 6px 26px;
    max-height: 120px;
}

.corporate-cards__message .o-icon_close {
    position: absolute;
    top: 10px;
    right: 10px;
    fill: rgb(var(--white));
}

.o-icon_button-wrapper {
    position: absolute;
    top: 0;
    right: -55px;
    z-index: 15;
}

.has-icon_hide .o-icon_button-wrapper {
    display: none !important;
}

.catalog-head .o-icon_button-wrapper {
    right: 0;
}

.o-icon_button {
    width: 40px;
    height: 40px;
    padding: 10px;
    cursor: pointer;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
}

.o-icon_button-wrapper .o-icon_button.disabled,
.o-icon_button-wrapper .o-icon_button.disabled:hover {
    cursor: default;
    opacity: 0.5;
    border: 1px solid rgb(var(--light-grey));
    background-color: rgba(0, 0, 0, .1);
}

.tooltip {
    display: none;
}

.o-tooltip-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
}

.o-tooltip_right .o-tooltip_icon {
    right: -8px;
}

.o-tooltip_right .o-tooltip_input {
    left: calc(100% + 8px);
}

.o-title_sub .o-tooltip_right .o-tooltip_icon,
.o-title_light .o-tooltip_right .o-tooltip_icon {
    top: 3px;
    right: -28px;
}

.o-title_sub .o-tooltip_right .o-tooltip_input,
.o-title_light .o-tooltip_right .o-tooltip_input {
    top: -11px;
    left: calc(100% + 28px);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.o-tooltip_icon {
    position: absolute;
    width: 20px;
    height: 20px;
    font-weight: 600;
    color: rgb(var(--graphite));
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    border: 1px solid rgb(var(--graphite));
    border-radius: 50%;
    right: 10px;
    top: 10px;
    cursor: pointer;
    transition: color var(--standart-transition), border-color var(--standart-transition);
    z-index: 1;
    font-family: "Inter", sans-serif;
}

.o-tooltip_icon:hover, .o-tooltip_icon.o-tooltip_icon_active {
    color: rgb(var(--custom-first));
    border-color: rgb(var(--custom-first));
}

.o-tooltip, .o-tooltip_input {
    position: absolute;
    top: -4px;
    left: 56px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease 0s, z-index 0.4s step-end 0s;
    padding: 12px;
    font-size: 13px;
    background-color: rgb(var(--white));
    border-radius: 4px;
    border: 1px solid #ebeced;
    text-transform: none;
    color: rgb(var(--graphite));
    white-space: nowrap;
    line-height: 1.25;
}

.o-tooltip_input.opened {
    z-index: 16;
    opacity: 1;
}

.o-tooltip_input {
    left: 100%;
    margin-left: 14px;
}

.o-tooltip_right {
    margin-left: 14px;
    left: calc(100% + 32px + 4px);
    right: auto;
    top: -14px;
    bottom: auto;
}

.o-tooltip::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 10px;
    border-color: #ebeced;
    border-style: solid;
    border-width: 0 0 1px 1px;
    transform: rotate(45deg);
    width: 14px;
    height: 14px;
    background-color: rgb(var(--white));
}

.o-tooltip_input::before {
    top: 16px;
}

.o-tooltip.bottom {
    left: -20px;
    top: 44px;
    width: auto;
}

.o-tooltip.bottom_right {
    left: auto;
    right: 0;
    top: 100%;
    width: auto;
    margin-top: 5px;
}

.o-tooltip.bottom::before {
    top: -8px;
    left: 23px;
    border-width: 1px 0 0 1px;
}

.o-tooltip.bottom_right::before {
    left: auto;
    right: 12px;
    transform: rotate(135deg);
    top: -7px !important;
}

.o-tooltip-icon:hover {
    cursor: pointer;
}

.o-tooltip-icon:hover + .o-tooltip {
    transition: opacity 0.4s ease 0s;
    z-index: 1;
    opacity: 1;
}

.o-tooltip_string {
    padding: 6px 12px;
}

.o-tooltip_icon-textarea {
    top: 0;
    right: -45px;
}

.o-tooltip_icon-textarea + .o-tooltip_input {
    top: -14px;
    margin-left: 62px;
}

.o-tooltip_icon-textarea + .o-tooltip_input.top {
    top: auto;
    bottom: 110.77%;
    margin-left: 14px;
}

.o-tooltip_icon-textarea + .o-tooltip_input.top:before {
    top: auto;
    left: 13px;
    bottom: -7px;
    border-width: 0 1px 1px 0;
}

.o-icon_button-wrapper + .o-tooltip_icon-textarea {
    top: 55px;
}

.o-icon_button-wrapper + .o-tooltip_icon-textarea + .o-tooltip_input.top {
    top: auto;
    bottom: 69.23%;
}

.o-tooltip-wrapper_inline {
    display: inline-block;
    position: relative;
}

.o-tooltip-wrapper_inline .o-tooltip_icon {
    position: static;
    display: inline-block;
}

.o-tooltip-wrapper_inline .o-tooltip {
    width: 400px;
    white-space: normal;
    top: -9px;
    margin-left: 24px;
}

.o-nds {
    font-size: var(--text-increased);
}

.close-frame-button {
    position: fixed;
    right: 5px;
    top: 5px;
    width: 60px;
    height: 60px;
    z-index: 9990;
    cursor: pointer;
}

/* КРЕДИТЫ */
.o-icon_loan-info {
    width: 80px;
    height: 80px;
    display: block;
    cursor: pointer;
    transition: transform 300ms ease-in-out;
}

.o-icon_loan-info:hover {
    transform: scale(1.05);
}

.deposit-open__deposit-header-icon {
    position: absolute;
    width: 48px;
    height: 48px;
    top: 20px;
    left: 20px;
    padding: 6px;
}

.loan-account {
    font-weight: 500;
    line-height: 28px;
    font-size: var(--text-title);
    padding-bottom: 12px;
    display: inline-block;
}


.deposit-buttons {
    padding-bottom: 28px;
}

.deposit-buttons .o-button {
    border: 1px solid rgba(var(--custom-first), 0.32);
    padding: 0 10px;
}

.deposit-buttons .o-button:hover {
    background: rgba(var(--custom-color), 0.08);
}

.deposit-buttons .o-button_borderless {
    border-style: none;
    color: rgb(var(--custom-first));
}

.deposit-buttons .o-button_borderless:hover {
    opacity: 0.8;
}

.actions-panel {
    display: inline-block;
    vertical-align: middle;
}

.loan-amount {
    font-size: 1.0625rem;
    padding-top: 4px;
    line-height: 28px;
    font-weight: 400;
}

.open-product {
    line-height: 30px;
    border-radius: 4px;
    padding: 45px 0;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    color: rgb(var(--custom-first));
    border: 1px solid rgb(var(--custom-first));
    cursor: pointer;
    margin-top: 20px;
    transition: color var(--standart-transition), background var(--standart-transition);
}

.open-product:hover {
    background: rgb(var(--custom-first));
    color: rgb(var(--white));
}

.deposit-info {
    font-size: 24px;
    font-weight: 300;
}

.deposit-additional-info {
    border-radius: 4px;
    background-color: rgb(var(--ghostly-white));
    border: solid 1px rgb(var(--light-grey));
    padding: 20px 55px;
    margin-bottom: 40px;
}

.deposit-open__info {
    border: solid 1px rgb(var(--light-grey));
    padding: 0 20px 32px;
}

.deposit-open__info .o-icon_loan-info {
    margin: 20px auto 40px;
}

.deposit-open__calculator {
    float: left;
    width: 355px;
    padding: 32px 40px;
    background-color: rgb(var(--white));
    border-radius: 4px;
    border: solid 1px #ebeced;
}

.deposit-open__calculator-title {
    font-size: var(--text-title);
    font-weight: 400;
    margin-bottom: 16px;
}

.o-table-tabs {
    width: calc(100% + 8px);
    margin: 0 -4px 15px;
    padding: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

.o-table-tabs__td__item {
    margin-top: 8px;
    padding: 12px;
    line-height: 1.46;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgb(var(--light-grey));
}

.o-table-tabs__td {
    padding: 0 4px;
}

.o-table-tabs__td__item:hover {
    color: rgb(var(--custom-first));
}

.o-table-tabs_current {
    border-color: rgb(var(--custom-first));
    color: rgb(var(--custom-first));
}

.deposit-open__calculator .o-checkbox-label {
    padding-bottom: 5px;
    font-size: var(--text-small);
}

.deposit-open__calculator .run-slider {
    margin-bottom: 9px;
}

.deposit-open__wrapper-deposits {
    float: right;
    width: 505px;
}

.deposit-open__select-currency > label {
    display: inline-block !important;
    padding-right: 16px;
}

.deposit-open__deposit {
    padding: 20px;
    background-color: rgb(var(--white));
    border-radius: 4px;
    border: 1px solid #ebeced;
    margin-bottom: 20px;
    position: relative;
}

.deposit-open__deposit .o-icon_loan-info {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
}

.deposit-open__deposit-name {
    font-size: var(--text-title);
    font-weight: 600;
    line-height: 1.3;
}

.deposit-open__terms {
    display: inline-block;
    font-size: var(--text-normal);
    margin: 4px 0 33px;
}

.deposit-open__deposit-name,
.deposit-open__terms {
    margin-left: 66px;
}

.deposit-open__deposit-currency-wrapper,
.deposit-open__deposit-replenishment-label,
.deposit-open__deposit-withdrawal-label {
    display: inline-block;
    vertical-align: middle;
    margin-right: -4px;
    padding-right: 6px;
    font-size: var(--text-extra-small);
}

.deposit-open__deposit-currency-wrapper {
    width: 157px;
}

.deposit-open__deposit-replenishment-label {
    width: 130px;
}

.deposit-open__deposit-withdrawal-label {
    width: 176px;
    padding-right: 0;
}

.deposit-open__deposit-currency {
    font-weight: 400;
    margin-top: 8px;
}

.deposit-open__deposit-currency,
.deposit-open__deposit-percent {
    font-size: 18px;
}

.deposit-open__deposit-wrapper-icon {
    margin-left: -8px;
}

.deposit-open__deposit-icon {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    vertical-align: middle;
}

.deposit-open__deposit-term {
    font-size: var(--text-extra-small);
    margin: 24px 0 4px;
}

.deposit-open__deposit-capitalization {
    font-size: var(--text-extra-small);
    margin-bottom: 10px;
}

.wrapper-status-loan {
    margin-bottom: 15px;
}

.svg-icon__loan-status {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    vertical-align: middle;
}

.svg-icon__status-label {
    display: inline-block;
    font-size: var(--text-label);
    vertical-align: middle;
    color: rgb(var(--graphite));
    font-weight: 300;
}

.deposit-open__table-buttons {
    width: 100%;
    table-layout: fixed;
    margin-top: 8px;
}

.deposit-open__table-buttons .deposit-open__table-cell {
    padding: 0 10px;
}

.deposit-open__table-buttons .deposit-open__table-cell:first-child {
    padding-left: 0;
}

.deposit-open__table-buttons .deposit-open__table-cell:last-child {
    padding-right: 0;
}

#blinger-launcher-iframe, .blinger-invitation-iframe {
    display: none !important
}

.sortOrderNone,
.sortOrderDown,
.sortOrderUp {
    white-space: nowrap;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sortOrderNone .o-icon_sort {
    display: none;
}

.sortOrderDown .o-icon_sort {
    transform: rotate(180deg);
}

.sortOrderUp .o-link_dashed,
.sortOrderDown .o-link_dashed {
    color: rgb(var(--custom-first));
    border-bottom: 1px dashed rgb(var(--custom-first));
}

.directory-toolbar {
    padding: 0;
}

.directory-toolbar .toolbar-email-form .o-label {
    padding-top: 12px;
}

.directory-toolbar .toolbar-email-form .o-input {
    margin-bottom: 0;
}

.directory-toolbar .toolbar-email-form .validationMessage {
    margin: 0;
}

.search-panel {
  width: 320px;
  float: right;
  position: relative;
}

.search-panel .o-svg_search {
    top: 4px;
}

.password-reset-form {
    min-height: 200px;
}

.reset-password-successful__message {
    margin-bottom: 40px;
}

.reset-password-successful__button {
    margin-bottom: 30px;
}

.last-updated {
    position: absolute;
    left: 0;
    bottom: 6px;
    color: rgba(74, 74, 74, .5);
}

.motions-display-options {
    padding: 24px 0 16px;
}

.motions-display-options .o-checkbox-label {
    margin-right: 16px;
}

.o-icon_calculate {
    position: absolute;
    right: 11px;
    top: 11px;
    cursor: pointer;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0);
}

.o-input_amount + .calc-wrapper + .o-icon_calc .o-icon_calculate,
.o-input_amount + .feedbackMessage + .calc-wrapper + .o-icon_calc .o-icon_calculate {
    top: 18px;
}

div.calc {
    opacity: 1 !important;
}

div.calculator {
    width: 280px;
    height: 337px;
    padding: 20px 12px 16px 20px;
    box-shadow: 0 0 10px 0 #eaebec;
    background-color: rgb(var(--white));
    border: solid 1px rgb(var(--light-grey));
    position: absolute;
    right: -140px;
    top: 100%;
    margin-top: 10px;
    z-index: 20;
}

.calculator .results {
    padding-right: 8px;
    padding-bottom: 24px;
}

.calculator .calculator-result {
    height: 40px;
    border-radius: 4px;
    background-color: rgb(var(--white));
    border: solid 1px rgb(var(--custom-first));
    font-size: var(--text-normal);
    margin: 0 8px 0 0;
    text-align: right;
}

.calculator-button {
    width: 40px;
    height: 40px;
    font-size: var(--text-label);
    line-height: 38px;
    text-align: center;
    border: 1px solid #cdcfd3;
    float: left;
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    border-radius: 4px;
}

.calculator-button:hover {
    border-color: rgb(var(--custom-first));
}

.calculator-button_duo {
    width: 88px;
}

.calculator-back {
    font-size: 22px;
    line-height: 36px;
}

.calc-wrapper {
    position: absolute;
    left: 0;
    top: 100%;
    padding: 8px 10px;
    font-size: var(--text-normal);
    width: 280px;
    height: 32px;
    background-color: rgb(var(--white));
    border: solid 1px #cdcfd3;
    z-index: 9;
    display: none;
    margin-top: -1px;
    line-height: 1.2;
}

.payee-facts__dialog {
    float: left;
    position: relative;
}

.payee-facts__dialog_absolute {
    position: absolute;
    float: none;
    margin-left: -14px;
    transform: translateX(-100%);
    top: 3px;
    z-index: 2;
}

.payee-facts__dialog .facts::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #aaa;
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    float: left;
    margin-right: 8px;
}

.payee-facts__dialog .facts_RED::before {
    background: rgb(var(--critical));
}

.payee-facts__dialog .facts_YELLOW::before {
    background: rgb(var(--system-attention));
}

.payee-facts__dialog .facts_GREEN::before {
    background: #61AF53;
}

.facts__tip {
    position: absolute;
    left: -20px;
    top: 70%;
    width: 300px;
    box-shadow: 0 0 10px 0 #eaebec;
    background-color: rgb(var(--white));
    border: solid 1px rgb(var(--light-grey));
    padding: 10px 15px;
    border-radius: 4px;
    z-index: -1;
    visibility: hidden;
    margin-top: 10px;
    /*transition: visibility 300ms ease 0s, top 300ms ease 0s;*/
}

.payee-facts__dialog .facts:hover + .facts__tip {
    top: 100%;
    z-index: 17;
    visibility: visible;
}

.facts-loader,
.facts-loader:before,
.facts-loader:after {
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation: facts-load 1.8s infinite ease-in-out;
    animation: facts-load 1.8s infinite ease-in-out;
}

.payee-facts__dialog_absolute .facts-loader {
    margin-left: -40px;
    margin-top: 1px;
}

.payee-facts__dialog_absolute .facts::before {
    width: 12px;
    height: 12px;
    margin-top: 19px;
    margin-right: 4px;
}

.facts-loader {
    color: #AAAAAA;
    font-size: 6px;
    margin: 0 0 0 20px;
    position: relative;
    text-indent: -9999em;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

.facts-loader:before,
.facts-loader:after {
    content: '';
    position: absolute;
    top: 0;
}

.facts-loader:before {
    left: -3.5em;
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.facts-loader:after {
    left: 3.5em;
}

@-webkit-keyframes facts-load {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

@keyframes facts-load {
    0%,
    80%,
    100% {
        box-shadow: 0 2.5em 0 -1.3em;
    }
    40% {
        box-shadow: 0 2.5em 0 0;
    }
}

/* BOOKER CALENDAR */
.o-icon_homecalendar {
    width: 280px;
    height: 280px;
    margin-top: -14px;
}

.calendar-nav {
    text-align: center;
    position: absolute;
    left: -36px;
    top: 175px;
    width: 36px;
    height: 36px;
    transform: rotate(90deg);
}

.calendar-nav_next {
    left: auto;
    right: -16px;
    transform: rotate(270deg);
}

.event-calendar {
    position: relative;
    margin: 60px 0 20px;
    height: 275px;
    padding: 20px;
    border: 1px solid rgb(var(--light-grey));
    cursor: pointer;
}

.event-calendar:hover {
    border-color: rgb(var(--custom-first));
}

.event-calendar .o-text_form {
    position: absolute;
    height: 30px;
    padding: 0;
    top: -50px;
    left: 0;
    width: 100%;
}

.event-calendar_selected,
.event-calendar_selected:hover {
    border-radius: 2px 0 0 2px;
    margin-bottom: 0;
    height: 295px;
    border: 1px solid rgb(var(--custom-first));
    border-bottom: 1px solid rgb(var(--white));
}

.event-container {
    margin-top: -1px;
    border-radius: 0 0 2px 2px;
    min-height: 100px;
    border: 1px solid rgb(var(--custom-first));
}

.event-container_empty {
    margin-top: 40px;
    text-align: center;
}

.event-calendar-table {
    padding: 0;
    margin: 0;
    border: 0;
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.event-calendar-table td,
.event-calendar-table th {
    text-align: center;
    font-size: var(--text-normal);
    font-weight: 400;
    padding: 4px 2px;
}

.event-calendar-table th {
    padding-bottom: 15px;
}

.event-calendar-table td .off,
.event-calendar-table td .weekend {
    opacity: 0.5;
}

.event-calendar__item_date {
    color: rgb(var(--white));
    background: rgb(var(--custom-first));
    border: 1px solid rgb(var(--custom-first));
    width: 32px;
    height: 24px;
    line-height: 22px;
    border-radius: 12px;
}

.event-calendar__item {
    color: rgb(var(--custom-first));
    border: 1px solid rgb(var(--custom-first));
    width: 32px;
    height: 24px;
    line-height: 22px;
    border-radius: 12px;
}

.event__item {
    position: relative;
    padding: 16px 20px 16px 90px;
    margin: 20px;
    min-height: 92px;
    border: 1px solid rgb(var(--light-grey));
    cursor: pointer;
}

.calendar-common_collapsed .event__item {
    margin-left: 0;
}

.o-checkbox-label_rmb .o-tooltip_icon {
    top: 0;
    right: -30px;
}

.o-checkbox-label_rmb .o-tooltip_input {
    left: calc(100% + 30px);
    top: -14px;
    width: 400px;
}

.event__popup {
    position: absolute;
    left: auto;
    right: -10px;
    top: 10%;
    bottom: auto;
    margin: 0;
    opacity: 0;
    z-index: -1;
    transition: opacity 300ms ease 0s;
    box-shadow: 0 0 10px 0 #eaebec;
}

.event__item:hover .event__popup {
    z-index: 5;
    opacity: 1;
}

.event__icon {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgb(var(--light-grey));
}

.event__item:hover {
    border-color: rgb(var(--custom-first));
}

/* PRINTS */
.dialog .doc-view * {
    margin: 0;
    padding: 0;
    border: 0;
}

.dialog .doc-view table {
    width: 100%;
    margin: 0;
    padding: 0;
    table-layout: fixed;
    border-collapse: collapse;
}

.dialog .doc-view h1 {
    font-size: 1.2em;
    line-height: 1.3;
    padding: 0 0 1em;
    margin: 0;
    text-align: center;
}

.dialog .doc-view h3 {
    font-size: 1em;
    line-height: 1.3;
    padding: 2em 0 .5em;
    margin: 0;
    text-align: left;
}

.dialog .doc-view p {
    padding: .2em 0;
}

.dialog .doc-view .keyinfo td {
    padding: .2em 0;
}

.dialog .doc-view .keyinfo td:first-child {
    width: 20%;
    padding-right: .5em;
    font-weight: bold;
    text-align: right;
}

.dialog .doc-view .bodyText {
    font-family: Arial, sans-serif;
    background: none repeat scroll 0 0 rgb(var(--white));
    border-top: 1px solid rgb(var(--light-grey));
    margin-top: 40px;
    padding: 20px 20px 40px;
    line-height: 1.5;
    white-space: pre-wrap;
}

.dialog .doc-view .bodyText p {
    padding: 1em 0;
}

.dialog .doc-view .bodyText ul,
.dialog .doc-view .bodyText ol {
    padding: 0 0 0 2em;
}

.dialog .doc-view .textLine {
    max-width: 600px;
}

.dialog .doc-view .textLine > strong + span {
    padding-left: 10px;
}

.dialog .doc-view td {
    background: transparent none;
}

.dialog .doc-view .free-document td,
.dialog .doc-view .free-document .keyinfo td {
    padding: 5px 10px;
    border: 1px solid rgb(var(--light-grey));
}

.dialog .doc-view .free-document table + table {
    margin-top: 10px;
}

.dialog #divSignatures {
    padding: 1em 0 0;
    max-width: 600px;
}

.doc-view {
    padding-top: 40px;
}

.doc-view .free-document {
    margin: 0 auto;
}

.dialog .doc-view .printArea,
.dialog .printArea {
    width: 180mm;
    padding: 0 !important;
    font-size: 8pt;
    line-height: 10pt;
    margin: 0 auto;
}

.dialog .doc-view .printArea .printTable {
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
}

.dialog .doc-view .printArea .printTable td {
    border: none;
    padding: 0 0 12px;
}

.dialog .doc-view .printArea .printTable .tableTitle {
    color: rgb(var(--text-title));
    font-weight: 500;
    width: 160px;
    padding-right: 32px
}

.dialog .printArea h1 {
    font-size: 14px;
    margin: 20px 0;
    text-align: center;
}

.dialog .doc-view .printArea p,
.dialog .printArea p {
    padding: .5em 0;
}

.dialog .doc-view .printArea ol,
.dialog .doc-view .printArea ul,
.dialog .printArea ol,
.dialog .printArea ul {
    padding: .5em 0 .5em 2em;
}

.dialog .doc-view .printArea small,
.dialog .printArea small {
    font-size: 9pt;
}

.dialog .doc-view .printArea.horizontalPrint,
.dialog .printArea.horizontalPrint {
    width: 180mm; /* В рамках заявки JUR-6816 */
}

.dialog .doc-view .printArea table.smallfont td,
.dialog .printArea table.smallfont td {
    font-size: 9pt;
}

.dialog .doc-view .printArea > table,
.dialog .printArea > table {
    width: 100%;
}

.dialog .doc-view .printArea table,
.dialog .printArea table {
    border: 0;
    border-collapse: collapse;
    padding: 0;
    margin: 0;
}

.dialog .doc-view .printArea table td,
.dialog .printArea table td {
    padding: 4px 0;
    margin: 0;
    vertical-align: middle;
    background: transparent none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: content-box;
    border-style: solid;
    border-color: #000;
    border-width: 0 1px 1px 0;
}

.dialog .doc-view .printArea table td.highlight,
.dialog .printArea table td.highlight {
    background: #dedede;
}

.dialog .doc-view .printArea table.align-top td,
.dialog .printArea table.align-top td {
    vertical-align: top;
}

.dialog .doc-view .printArea table.align-center td,
.dialog .printArea table.align-center td {
    text-align: center;
}

.dialog .doc-view .printArea tbody tr.dataContent:last-child td,
.dialog .printArea tbody tr.dataContent:last-child td {
    border-bottom-style: solid !important;
    border-bottom-width: 1px !important;
}

.dialog .doc-view .printArea table.vpadding td,
.dialog .printArea table.vpadding td {
    padding-bottom: 4mm;
}

.dialog .doc-view .printArea.orderIn table td,
.dialog .printArea.orderIn table td {
    padding: 1mm 2mm;
}

.dialog .printArea.orderIn table td.borderless {
    padding: 0;
}

.dialog .printArea.orderIn table td.borderless table td {
    border-width: 0 0 0 1px;
}

.dialog .printArea.orderIn table td.borderless table td:first-child {
    border: 0;
}

.dialog .doc-view .printArea.orderIn table tr td:first-child,
.dialog .printArea.orderIn table tr td:first-child {
    padding-left: 0;
}

.dialog .doc-view .printArea table.fullBorder tr td:first-child,
.dialog .printArea table.fullBorder tr td:first-child {
    border-width: 0 1px 1px 1px;
    padding-left: 2mm;
}

.dialog .doc-view .printArea table.nopadding tr td,
.dialog .printArea table.nopadding tr td {
    padding: 0;
}

.dialog .doc-view .printArea table.cellNumber tr td,
.dialog .printArea table.cellNumber tr td {
    border-width: 1px 1px 1px 0;
    padding: 1mm 0;
    text-align: center;
}

.dialog .doc-view .printArea table.cellNumber tr td:first-child,
.dialog .printArea table.cellNumber tr td:first-child {
    border-width: 1px 1px 1px 1px;
    padding: 1mm 0;
}

.dialog .doc-view .printArea .banknotes-wrap,
.dialog .printArea .banknotes-wrap {
    position: relative;
}

.printArea .checkboxPrint {
    width: 5mm;
    height: 5mm;
    line-height: 5mm;
    text-align: center;
    border: 1px solid #000;
}

.document-revoke-reason {
    max-width: 180mm;
    margin: 0 auto !important;
    padding: 1rem 0 2rem !important;
}

.dialog .doc-view .printArea input[type="radio"],
.dialog .doc-view .printArea input[type="checkbox"],
.dialog .printArea input[type="radio"],
.dialog .printArea input[type="checkbox"] {
    display: inline !important;
    vertical-align: middle !important;
}

.bank-notes,
.dialog .doc-view .bank-notes {
    display: inline-block;
    text-align: center;
    font-family: "Arial", sans-serif;
    font-size: 13px;
    padding: 1mm;
    max-width: 60mm;
    line-height: 1.1;
    word-wrap: break-word;
    color: #024486;
    font-weight: bold;
    border: 3px solid #024486;
}

.bank-notes > p {
    padding: 0;
    margin: 0;
}

.tableWithOutBorder tr td {
    border: 0;
}

.dialog .doc-view .printArea .banknotes-wrap .bank-notes,
.dialog .printArea .banknotes-wrap .bank-notes {
    right: 0;
    top: -13mm;
    position: absolute;
}

.dialog .doc-view .printArea .bank-notes.relative-notes,
.dialog .printArea .banknotes-wrap .bank-notes.relative-notes {
    top: 0;
    margin-top: 2mm;
    position: relative;
}

.contract-info__close-date {
    color: rgb(var(--critical));
    padding-left: 0.5rem;
}

.contract-info__amount-info {
    padding: 2rem 0 0.75rem 0;
    border-bottom: 1px solid #eaebec;
    margin-bottom: 2rem;
}

.contract-info__amount-info__item {
    margin-bottom: 12px;
    font-size: 13px;
}

.tooltip .contract-info__amount-info__item:last-child {
    margin-bottom: 0;
}

.time-filter {
    margin-bottom: 10px;
}

.time-filter .o-input_small {
    padding-left: 4px;
    padding-right: 4px;
    float: left;
    margin-left: 8px;
}

.time-filter .o-input_date {
    width: 95px;
    padding-right: 10px;
    background: url(img/icons/o-icon__calendar_small.svg) no-repeat 100% 42%;
}

.time-filter__interval-label {
    line-height: 2rem;
    vertical-align: top;
    margin-left: 0.5rem;
}

.time-filter__select-label {
    line-height: 32px;
    margin-right: 8px;
}

/* Счёт на оплату */
[class*="width_"] {
    float: left;
    margin-right: 20px;
}

.no-margin {
    margin: 0
}

.width_small {
    width: 100px;
}

.width_large {
    width: 303px;
}

.width_medium {
    width: 127px;
}

/* Acquiring */
.point-sale-name {
    padding: 4px 0 28px;
}

.pos-container {
    background: #fff;
    margin-right: 12px;
    margin-bottom: 28px;
    padding: 20px 20px 20px 200px;
    position: relative;
}

.pos-container__icon {
    width: 160px;
    height: 160px;
    position: absolute;
    left: 20px;
    top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.o-icon_terminal {
    width: 80px;
    height: 80px;
    transition: transform 300ms ease-in-out;
}

.pos-container__icon:hover .o-icon_terminal {
    transform: scale(1.05);
}

.pos__info__date {
    font-weight: 500;
    padding: 20px 0 12px;
}

.pos__info__table {
    width: auto;
}

.pos__info__table td {
    color: rgb(var(--graphite));
    padding-bottom: 4px;
}

.pos__info__table td:first-child {
    padding-right: 39px;
    color: rgb(var(--graphite-plus));
}

.dialog-filter .period-filter {
    padding-left: 0;
    padding-right: 0;
    border: 0;
    margin-bottom: 10px;
}

.acquiring-filter {
    padding: 24px 20px 24px 0;
    border: 0;
}

.acquiring-filter__period .l-grid_2 {
    width: 103px;
    padding-right: 8px;
}

.acquiring-filter .period-filter__value {
    margin-left: 8px;
}

.acquiring-filter__period .o-input_small {
    padding-top: 7px;
    padding-bottom: 7px;
}

.acquiring-filter__period .o-input_small:focus {
    padding-bottom: 6px;
}

.acquiring-filter__period .feedbackMessage {
    width: 95px;
    top: 60px;
    left: -2px;
}

.acquiring-filter__period .feedbackMessage:before {
    top: -8px;
    left: 11px;
    transform: rotate(135deg);
}

.acquiring-filter__title {
    font-size: var(--text-title);
    font-weight: 300;
    margin-right: 60px;
}

.acquiring-filter .o-checkbox-label {
    margin-right: 26px;
}

.acquiring-filter .o-checkbox-label {
    margin-top: 6px;
}

.acquiring-filter .o-select .o-select__value {
    height: 32px;
    padding: 8px 38px 8px 10px;
    margin-bottom: 0;
}

/* ELBA */

.elba-panel {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: rgb(var(--white));
}

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

.elba-panel .elba-panel__access {
    padding: 32px 0;
    border: 1px solid rgb(var(--light-grey));
    border-width: 1px 0;
    margin: 40px 0 32px;
}

.elba-panel__access .app {
    font-weight: 600;
}

.elba-panel__access ul {
    margin-top: 20px;
}

.elba-panel__access ul li {
    font-size: var(--text-small);
    padding-left: 16px;
}

.elba-panel__access ul li::before {
    left: 0;
    top: .5em;
    width: 8px;
    height: 8px;
}

.elba-panel__logo {
    margin-bottom: 20px;
}

.elba-panel__logo .o-icon {
    width: 240px;
    height: 240px;
}

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

.elba-panel__buttons .o-button,
.elba-panel__buttons .o-button_primary {
    width: 120px;
}

.elba-panel__error-text {
    margin: 40px 0;
    font-weight: 600;
}

.course-change {
    position: relative;
    width: 1px;
    display: inline-block;
    height: 17px;
}

.o-icon_courses {
    width: 16px;
    height: 16px;
    position: absolute;
    right: -20px;
    top: 4px;
}

.commercial-panel .o-title_light {
    padding: 0;
}

.commercial-panel__footer {
    display: block;
    border-radius: 8px;
    position: relative;
    padding: 22px 22px 22px 32px;
    color: rgb(var(--graphite));
    background: rgb(var(--smoky-white));
    line-height: 40px;
    margin-bottom: 1rem;
    font-size: var(--text-label);
}

.commercial-panel__list {
    padding-left: 60px;
    font-size: var(--text-label);
}

.commercial-panel .doc-state-PROCESSED, .commercial-panel .doc-state-FAILED {
    width: 16px;
    height: 16px;
}

.commercial-panel .icon.stateIco {
    left: 0;
    top: 0;
}

.commercial-panel__list li:first-child {
    margin-top: 5px;
}

.commercial-panel .o-icon_selfregister {
    position: static;
}

.commercial-panel__button {
    display: block;
    height: auto;
    padding: 9px 21px;
    line-height: 1.1;
}

.commercial-panel .o-title_light,
.commercial-panel .o-title_sub,
.commercial-panel .o-simple-table,
.commercial-panel .upload,
.commercial-panel .commercial-panel__list {
    margin-bottom: 28px;
}

.motionsNumber {
    font-size: var(--text-extra-small);
    display: inline-block;
    padding: 2px 6px;
    background: rgb(var(--custom-first));
    border-radius: 10px;
    margin-left: 6px;
    line-height: 1.2;
    color: rgb(var(--white));
}

.table-note {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 12px;
    width: 382px;
    text-align: center;
}

.confirmation.is-popup_alert .feedbackMessage.feedbackPanelWARNING {
    padding: 5px 0 8px;
}

.confirmation.is-popup_alert .feedbackMessage.feedbackPanelWARNING .feedbackMessage {
    padding-bottom: 12px;
}

.account__limitation {
    border: 1px solid rgb(var(--critical));
    padding: 40px 40px 16px 40px;
}

.account__limitation .o-tooltip-icon {
    border-radius: 10px;
    border: 1px solid gray;
    line-height: 20px;
    font-weight: bold;
    font-size: 14px;
    margin-left: 16px;
    padding-left: 5px;
}

.account__limitation-tooltip {
    list-style-position: inside;
    width: 500px;
}

.account__limitation-tooltip li:first-child {
    margin-top: 0;
}

.account__limitation-tooltip li {
    padding: 0;
}

.account__limitation-tooltip li:before {
    content: none;
}

.currency-swap-button {
    width: 44px;
    height: 44px;
    background: rgb(var(--custom-color));
    border-radius: 50%;
    border: 4px solid rgb(var(--smoky-white));
    position: relative;
    cursor: pointer;
}

.currency-swap-button .o-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
}

.currency-swap-button_right {
    position: absolute;
    top: 40px;
    left: calc(100% / var(--grid) * 10 + 10px);
}

.o-icon_scrolltop {
    width: 40px;
    height: 40px;
    padding: 11px 15px;
    border-radius: 50%;
    fill: rgb(var(--custom-first));
    position: fixed;
    right: 1rem;
    bottom: 9rem;
    background-color: #ffffff;
    cursor: pointer;
    z-index: -1;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity var(--standart-transition);
}

.sv_inverse .o-icon_scrolltop, .sv_inverse .o-icon_scrolltop:hover {
    fill: rgb(var(--white));
}

.o-icon_scrolltop.is-visible {
    opacity: 1;
    z-index: 19;
}

.o-icon_scrolltop:hover {
    fill: rgb(var(--custom-first));
    border-color: rgb(var(--custom-first));
}

.o-chat.blink {
    animation: blinkButtonChat 0.7s ease 2;
}

.o-chat .o-icon {
    fill: currentColor;
}

@keyframes blinkButtonChat {
    50% {
        color: rgb(var(--custom-first));
        background-color: rgb(var(--ghostly-white));
    }
    100% {
        color: rgb(var(--graphite));
        background-color: rgb(var(--white));
    }
}

.footer-chat {
    display: none;
    position: fixed;
    bottom: 1.25rem;
    right: 4.5rem;
    width: 11.8125rem;
    height: 3rem;
    border-radius: 1.5rem;
    background-color: rgb(var(--custom-first));
    padding: 14px 18px;
    cursor: pointer;
    z-index: 5;
}

.footer-chat .o-icon {
    fill: rgb(var(--white));
    margin-right: 6px;
}

.footer-chat__label {
    color: rgb(var(--white));
    font-weight: 300;
}

.footer-chat__close {
    position: absolute;
    top: 50%;
    right: 0.875rem;
    transform: translateY(-50%);
    stroke: rgb(var(--white));
    fill: none;
}

.footer-chat__close:hover {
    fill: rgb(var(--white));
}

.chat-footer-window {
    position: fixed;
    bottom: 2.625rem;
    right: 4rem;
    width: 20rem;
    background: rgb(var(--white));
    box-shadow: 0px 40px 52px rgba(61, 64, 71, 0.16);
    border-radius: 8px;
    padding: 1.5rem 1.5rem 1.25rem;
}

.chat-footer-window .o-button_small {
    margin-top: 1rem;
}

/* SPECIAL VERSION */
.o-svpanel {
    padding: 16px 0;
    background: rgb(var(--white));
    border-radius: 0 0 4px 4px;
    border: 1px solid #e5e5e5;
    margin: 20px 28px 0 28px;
    font-size: 16px;
    display: none;
}

.o-svpanel * {
    font-family: 'Inter', sans-serif !important;
}

[class*="sv-text_"],
[class*="sv-color_"] {
    display: inline-block;
    line-height: 28px;
    height: 30px;
    margin-left: 10px;
    text-align: center;
    width: 30px;
    border: 1px solid rgb(var(--light-grey));
    border-radius: 3px;
    cursor: pointer;
    transition: border 300ms ease 0s;
    font-weight: 400;
    vertical-align: middle;
}

[class*="sv-text_"]:hover,
[class*="sv-color_"]:hover {
    border-color: rgb(var(--graphite));
}

.sv-color_inverse {
    color: rgb(var(--white));
    background: rgb(var(--graphite));;
    border-color: rgb(var(--graphite));
}

.sv-color_inverse:hover {
    border-color: #000;
    background: #000;
}

.o-svpanel__options {
    margin-left: 20px;
    line-height: 30px;
}

.sv-text_normal {
    font-size: 12px;
}

.sv-text_normal {
    font-size: 14px;
}

.sv-text_medium {
    font-size: 18px;
}

.sv-text_big {
    font-size: 22px;
}

.sv-text_serif {
    font-family: "Times New Roman", serif !important;
}

.o-svpanel .o-link_dashed {
    font-size: 14px;
}

.o-svpanel__hide {
    margin-right: 20px;
}

.color_optioned, .text_optioned, .font_optioned {
    border-color: rgb(var(--custom-first));
}

.user-rights_short {
    height: 36px;
    overflow: hidden;
}

.access-status {
    position: absolute;
    top: 22px;
    right: 64px;
    height: 30px;
    width: 30px;
}

.pseudo-textarea {
    position: relative;
    margin-bottom: 16px;
}

.pseudo-textarea .o-input {
    border-width: 0 1px;
    margin-bottom: -1px;
}

.pseudo-textarea .o-input:first-child {
    border-width: 1px 1px 0 1px;
}

.pseudo-textarea .o-input:last-child,
.pseudo-textarea .o-input:last-of-type {
    border-width: 0 1px 1px 1px;
}

.pseudo-textarea_focused .o-input:last-child,
.pseudo-textarea_focused .o-input:last-of-type {
    border-bottom: 2px solid rgb(var(--custom-first));
}

.pseudo-textarea .o-input.invalid + .feedbackMessage + .o-input + .o-input + .o-input {
    border-bottom: 2px solid rgb(var(--critical));
}

.pseudo-textarea .validationMessage {
    position: absolute;
    bottom: -17px;
    left: 0;
    margin-bottom: 0;
    transform: translateY(100%);
}

.is-popup_alert .feedbackMessage.feedbackPanelERROR {
    word-break: break-word;
}

.restriction {
    margin-top: 4px;
}

.dialog .doc-view .printable-notes {
    width: 600px;
    margin: 0 auto;
    text-align: right;
    padding-top: 10px;
}

.lookup.o-icon {
    transition: border-color var(--standart-transition);
}

.lookup.o-icon:hover {
    border-color: rgb(var(--custom-first));
}

.o-tabs__nds-link:hover {
    color: rgb(var(--custom-first));
}

.o-select:hover .o-icon_select {
    fill: rgb(var(--custom-first));
}

.fps-info {
  padding: 20px 24px;
  border-radius: 8px;
  background-color: rgb(var(--hover-bg));
  margin-bottom: 16px;
}

.fps-info__icon {
  width: 64px;
  height: 36px;
  margin-bottom: 20px;
}

.fps-info__text {
  font-size: var(--text-extra-small);
  color: #9397A1;
}

.editLabel.stretch > span:after {
    margin-top: -11px;
}

.delete-template .o-icon {
    margin-top: -6px;
}

.topbar {
    display: inline-block;
    float: right;
    margin-top: -5px;
    margin-bottom: 12px;
}

.password-reset-feedback .feedbackPanel {
    color: rgb(var(--critical));
    line-height: 1.2;
    font-size: var(--text-small);
    text-align: center;
}

.password-reset-feedback ul.feedbackPanel li {
    margin-bottom: 10px;
}

/* OLD BROWSER WARNING */
.old-browser-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--white));
    z-index: 105;
}

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

.old-browser-warning {
    position: absolute;
    width: 100%;
    text-align: center;
    height: 650px;
    top: 50%;
    left: 0;
    margin-top: -325px;
}

.old-browser-warning .o-title {
    padding: 32px 0 16px;
}

.old-browser-warning .o-text_increased {
    padding: 80px 0;
}

.old-browser-warning a {
    margin: 0 20px;
    text-decoration: underline;
    color: #ba3d72 !important;
}

.old-browser-warning .o-button_primary {
    background: #ba3d72 !important;
}

.old-browser-warning .o-text_small {
    padding: 16px 0 0;
}

.change-browser-icon {
    background: url(img/icons/changeBrowser.png) no-repeat 50% 50%;
}

input[type="password"]::-ms-reveal {
    display: none;
}

/* SMART APP BANNERS */
.smartapp-manual {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .4);
    z-index: 99999;
}

.smartapp-manual__modal {
    position: absolute;
    left: 50%;
    top: 200px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .3);
    width: 700px;
    margin-left: -350px;
    padding: 60px;
}

.smartapp-manual__modal .svg-icon__close {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 32px;
    height: 32px;
}

.smartapp-manual__code {
    font-family: monospace;
    font-size: 12px;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px dashed #333;
    word-break: break-all;
}

.smartapp-manual__mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--white), 0);
}

.smartapp-manual__done {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    right: 60px;
    top: 155px;
    width: 160px;
    text-align: center;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    line-height: 30px;
    font-size: 14px;
    height: 0;
    overflow: hidden;
    transition: height 300ms ease 0s;
}

.smartapp-manual__done_visible {
    height: 30px;
}

.statement-topbar .o-link-with-icon {
    padding-left: 11px;
    padding-right: 13px;
}

.statement-topbar .o-link-with-icon:last-child {
    padding-right: 0;
}

.topbar-container + .client-container {
    margin-top: -10px;
    padding-bottom: 1px;
}

.currency-operations {
    margin-left: 172px;
    margin-bottom: 28px;
}

.currency-operations__icons-top {
    position: absolute;
    top: 12px;
    right: 0;
    z-index: 3;
    white-space: nowrap;
}

.currency-operations__icons-top span + span .o-icon {
    margin-left: 16px;
}

.currency-operations__icons-top.spd span + span .o-icon {
    margin-left: 3px;
}

.additionalConfirmationText ol li,
.additionalConfirmationText ul ol li {
    padding: 0 0 0 12px;
}

.additionalConfirmationText ol li::before {
    content: none;
}

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

.additionalConfirmationText ul li,
.additionalConfirmationText ol ul li {
    padding: 0 0 0 24px;
}

.additionalConfirmationText ul li:before {
    left: 12px;
    top: 3px;
}

.o-delimiter_right:after {
    content: "";
    position: absolute;
    top: 0;
    right: -28px;
    height: 100%;
    width: 1px;
    background: rgba(151, 151, 151, .2);
}

.online-chat-panel {
    position: fixed;
    z-index: 999;
    top: auto;
    bottom: 0;
    height: 80vh;
    right: 0;
}

.online-chat-panel__frame {
    position: relative;
    border: 0;
    height: 100%;
    background-color: #fff;
    top: 0;
    right: 0;
}

.department-map {
    height: 600px;
    width: calc(100% + 80px);
    position: relative;
    margin-left: -40px;
}

.map__loader {
    border-radius: 50%;
    margin: 40px auto;
    width: 64px;
    height: 64px;
    border: 6px solid rgba(0, 0, 0, 0.05);
    border-top: 6px solid #555;
    animation: rotating 1.2s infinite linear;
}

.quartile-image-tip {
    background: var(--quartile-image);
    width: 200px;
    height: 62px;
    position: absolute;
    top: 0;
    right: 0;
}

.improveButton {
    display: none;
}

.filterPanel .period-filter {
    padding: 0;
}

.filterPanel .filter-toggle {
    top: -56px;
}

.filterPanel .mainPeriodFilter {
    padding: 13px 19px;
}

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

.o-icon_hide-doc {
    margin-top: -24px;
    padding-bottom: 6px;
    cursor: pointer;
    text-align: right;
    border-bottom: 1px solid rgb(var(--light-grey));
}

.o-icon_hide-doc .o-icon {
    width: 24px;
    height: 24px;
}

.document-history-view__item {
    display: block;
    position: relative;
    padding: 0.25rem 0 0.25rem 28px;
}

.document-history-view__item .o-icon_small {
    fill: rgb(var(--success-color));
    position: absolute;
    top: 0.25rem;
    left: 2px;
}

.document-history-view__item .o-icon_small:hover {
    fill: rgb(var(--success-color));
}

.o-message {
    padding: 1rem 1rem 1rem 4rem;
    position: relative;
    border: 1px solid rgb(var(--light-grey));
    border-width: 1px 0;
}

.o-message .o-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    margin-top: -1.125rem;
}

.o-validation_message {
    position: relative;
    padding: 28px 28px 28px 60px;
    border-radius: 4px;
    background-color: rgba(var(--critical), 0.08);
}

.error-content-panel .o-validation_message {
    border-radius: 0;
    padding: 12px;
}

.o-validation_message .o-icon {
    position: absolute;
    top: 28px;
    left: 28px;
    fill: rgb(var(--critical));
}

.o-validation_notification {
    background-color: rgba(var(--system-attention), 0.08);
    color: rgb(var(--system-attention));
}

.o-validation_notification .o-icon {
    fill: rgb(var(--system-attention));
}

.account_closed, .account_transit, .account_regular {
    display: inline-block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    line-height: 44px;
    font-size: 18px;
    text-align: center;
    color: #fff;
}

.account_transit {
    background: #7a7a7a;
}

.account_closed {
    background: #cdcfd3;
}

.account_regular {
    background: rgb(var(--custom-secondary));
}

.account_regular_invest {
    background: rgb(var(--white));
    color: rgb(var(--custom-secondary));
    border: 1px solid rgb(var(--custom-secondary));
}

.o-select.o-select_duo .account__icon {
    float: left;
    width: 46px;
    height: 46px;
    margin-top: -3px;
    margin-right: 1rem;
}

.o-icon_status {
    width: 1rem;
    height: 1rem;
    position: absolute;
    display: none;
}

.o-icon_retained {
    top: 0;
    right: 0;
}

.account__currency_retained .o-icon_retained {
    display: block;
}

.o-icon_acc_closed,
.o-icon_on-card-file {
    bottom: 0;
    right: 0;
}

.account__closed .o-icon_acc_closed,
.account__currency_on-card-file .o-icon_on-card-file {
    display: block;
}

.o-icon_restricted {
    bottom: 0;
    left: 0;
}

.account__currency_restricted .o-icon_restricted {
    display: block;
}

.o-icon_blocked {
    top: 0;
    left: 0;
}

.account__currency_blocked .o-icon_blocked {
    display: block;
}

.rate-container__filter {
    padding-top: 4px;
}

.rate-container__filter .o-tag {
    float: right;
}

.rate-container__filter .o-tag:first-child {
    margin-right: 0;
}

.o-simple-table__tr_titled .o-simple-table__td {
    padding-top: 2rem;
}

.o-simple-table__tr__title {
    white-space: nowrap;
    margin-left: 12px;
    margin-top: 10px;
    opacity: .6;
    font-size: var(--text-normal);
}

.online-rate__rate {
    margin-bottom: 4px;
}

.online-rate__timer {
    color: rgb(var(--grey));
}

.online-rate__timer .o-warning {
    display: inline-block;
    min-width: 45px;
}

.change-password-form .caps-warning {
    position: static;
    margin-top: -14px;
    top: auto;
}

/*FAQ*/
.faq {
    background-color: rgb(var(--white));
}

.faq__header {
    height: 56px;
    background-color: rgb(var(--custom-first));
}

.faq__wrapper {
    max-width: 1172px;
    width: 100%;
    margin: 0 auto;
}

.faq__header .faq__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.faq__header .pubpage__logo {
    margin: 0;
    background-position: left;
}

.faq__back {
    color: rgb(var(--white));
    cursor: pointer;
}

.faq__search {
    background: rgb(var(--smoky-white));
    padding: 24px 0;
}

.faq__search .o-form__input {
    margin-bottom: 0;
}

.faq__links .o-title_sub {
    margin: 3rem 0 2rem 0;
}

.faq__links .o-title_sub + .faq__link {
    border-top: 1px solid rgb(var(--light-grey));
}

.faq .faq__link {
    padding: 1.25rem;
    border-bottom: 1px solid rgb(var(--light-grey));
    max-width: 65%;
    width: 100%;
    cursor: pointer;
    transition: background var(--standart-transition);
}

.faq .faq__link_internal {
    padding: 1.25rem;
    border-top: 1px solid rgb(var(--light-grey));
    cursor: pointer;
    transition: color var(--standart-transition);
}

.faq .faq__link_internal:hover {
    color: rgb(var(--custom-first));
}

.faq .faq__link:hover {
    background: rgb(var(--smoky-white));
}

.faq__footer {
    max-width: 1172px;
    width: 100%;
    margin: 0 auto;
    padding: 10.75rem 0 4rem;
}

.faq__footer__logo {
    display: block;
    width: 220px;
    height: 45px;
    background: var(--bank-logo);
    background-size: contain;
}

.faq__breadcrumbs {
    margin: 3.5rem 0 2rem;
    font-size: var(--text-small);
    cursor: pointer;
    display: inline-block;
}

.faq .o-title {
    margin-bottom: 1.75rem;
}

.faq__articles__item {
    width: 65%;
    /*Footer at bottom*/
    min-height: calc(100vh - 95px - 88px - 3.5rem - 14.75rem - 45px);
}

.faq__upload, .upload {
    display: block;
    border: 1px solid rgb(var(--light-grey));
    border-radius: 8px;
    position: relative;
    padding: 22px 22px 22px 100px;
    color: rgb(var(--graphite));
    margin-bottom: 1rem;
    transition: background var(--standart-transition);
}

.faq__upload:hover, .upload:hover {
    text-decoration: none !important;
    background: rgb(var(--smoky-white));
}

.faq__upload__icon, .upload__icon {
    width: 52px;
    height: 52px;
    position: absolute;
    top: 50%;
    left: 28px;
    transform: translateY(-50%);
    fill: none;
}

.faq__upload__text, .upload__text {
    line-height: 1.75rem;
}

.upload__text {
    font-size: var(--text-label);
}

.faq__upload__size, .upload__size {
    line-height: 1rem;
    font-size: var(--text-small);
    color: rgba(var(--graphite), .7);
}

.faq__image {
    background: rgb(var(--smoky-white));
    height: 430px;
    position: relative;
    margin: 40px 0;
}

.faq__image img {
    max-height: 430px;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.faq ol {
    counter-reset: myCounter;
    padding: 0 0 0 44px;
}

.faq ul {
    padding-left: 40px;
    counter-reset: none;
}

.faq ul li {
    padding: 0 0 0 45px;
    margin: 0 0 2rem;
}

.faq ol li {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0 0 0 56px;
}

.faq ol > li:before {
    counter-increment: myCounter;
    content: counter(myCounter);
    background: transparent;
    text-align: center;
    line-height: 28px;
    width: 28px;
    height: 28px;
    border: 1px solid rgb(var(--light-grey));
    top: 0;
    left: 0;
}

.faq ol ol, .faq ol ul, .faq ul ol, .faq ul ul {
    margin-top: 1rem;
    padding-left: 0;
}

.remains-notes-container {
    padding: 1rem 0 2rem;
    border-top: 1px solid rgb(var(--light-grey));
}

.onb-toolbar__content {
    width: 960px;
    max-width: 80%;
    max-height: 100%;
    overflow-y: auto;
    background: rgb(var(--white));
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3rem 12rem;
}

.remains-notes-container {
    padding: 1rem 0 2rem;
    border-top: 1px solid rgb(var(--light-grey));
}

.attach_wide .add-files__place {
    max-width: none;
}

.attach_wide br {
    display: none;
}

.add-files__place {
    width: 100%;
    padding: 24px;
    font-size: 13px;
    border: 1px dashed rgb(var(--grey-plus));
    text-align: center;
    transition: background-color var(--standart-transition);
    border-radius: 4px;
    color: rgb(var(--grey));
    margin-bottom: 20px;
}

.add-files__place.disabled {
    background: rgb(var(--hover-bg));
    color: #a1a2a2;
    border-color: #eaebec;
}

.o-attachement_wide .add-files__place {
    max-width: none;
}

.o-attachement_wide .add-files__attach br {
    display: none;
}

.add-files__place_hover {
    background-color: rgba(var(--smoky-white), .5);
}

.add-files__attach {
    font-weight: 500;
}

.add-files__attach.disabled {
    color: #a1a2a2;
    text-decoration: none;
    cursor: default;
}

.add-files__info {
    margin-top: 8px;
    font-size: var(--text-extra-small);
    line-height: 16px;
}

.add-files__filename {
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-right: 56px;
}

.add-files__filename:hover {
    color: rgb(var(--custom-first));
}

.add-files__filename:hover .o-icon {
    fill: rgb(var(--custom-first));
}

.add-files__filename .o-icon {
    width: 14px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 2px;
}

.add-files__delete {
    position: absolute;
    right: 10px;
    top: 8px;
    cursor: pointer;
}

.add-files__delete svg {
    fill: rgb(var(--grey));
}

.add-files__delete:hover svg {
    fill: rgb(var(--graphite))
}

.add-files__file-size {
    color: rgb(var(--grey));
    margin-left: 8px;
    position: absolute;
    top: 0;
    right: 0;
}
.ean__tip {
    display: none;
    background: var(--ean-tip);
}

.open-salary {
    position: relative;
    background: rgb(var(--white));
    padding: 2.5rem 3.25rem;
    border-radius: 4px;
}

.o-icon_open-salary {
    width: 258px;
    height: 192px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: url(img/o-icon_open-salary.png) no-repeat;
}

.embossedName {
    background: rgb(var(--smoky-white));
    padding: 12px 16px;
    border-radius: 8px;
}

.embossedName .o-input {
    margin-bottom: 0;
}

.embossedName .o-input + .validationMessage {
    margin-top: 2px;
}

.embossedName__label {
   margin-bottom: 8px;
}

.o-panel_short, .content__dialog {
    position: relative;
    max-width: calc(var(--full-width) - 300px);
}

.o-icon_menu-pools-accounts {
    display: inline-block;
    width: 16px;
    height: 16px;
    background: rgb(var(--white));
    border-radius: 50%;
}

.statement-state {
    position: static;
    float: right;
    line-height: 27px;
    padding: 21px 0 15px;
}

.account-statement-info {
    color: rgba(var(--graphite), .6);
}

.client-container__title {
    min-height: 65px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: calc(100% - 380px);
}

.client-container__title div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.topbar-container + .client-container .statement-state,
.topbar-container + .client-container .client-container__title {
    margin-top: -16px;
}

.client-container .account_closed,
.client-container .account_transit,
.client-container .account_regular {
  width: 46px;
  height: 46px;
  line-height: 46px;
}

.accounts-closed__tr {
    transition: var(--standart-transition);
    cursor: pointer;
}

.accounts-closed__tr:hover {
    background-color: rgb(var(--hover-bg));
}

.accounts-closed__tr.empty:hover {
    cursor: auto;
    background: none;
}

.client-container > .o-simple-table {
    border: 1px solid rgb(var(--light-grey));
}

.client-container .accounts-closed-list td {
    border-top: 0;
}

.client-container .accounts-closed-list-tr + tr .o-simple-table__td {
    border-top: 1px solid rgb(var(--light-grey));
}

.accounts-closed__count {
    color: #9397A1;
    margin-left: 4px;
}

.accounts-closed__label {
    opacity: 0;
    transition: var(--standart-transition);
    margin-left: 16px;
    color: #9397A1;
}

.accounts-closed__tr:hover .accounts-closed__label {
    opacity: 1;
}

.client-container .accounts-closed-list {
    display: none;
    padding: 0;
    border-bottom-width: 0;
}

.accounts-closed-list .o-simple-table {
    margin-bottom: 0;
}

.accounts-closed-short__tr td {
    border-bottom: 0;
}

.accounts-closed-short__tr + tr .accounts-closed-list .o-simple-table__td {
    border-top: 1px solid rgb(var(--light-grey)) !important;
}

.o-icon_info {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    fill: rgba(var(--graphite), .6);
}

table .account-statement-info .o-icon_info {
    display: none;
}

.icon.icoUrgent {
    position: absolute;
    margin: -8px 0 0 -26px;
}

.icon.icoUrgent:before,
.icon.icoUrgent:hover:before {
    background-image: url("img/icons/static/textIco.svg");
    background-position: 0 -95px !important;
    background-repeat: no-repeat;
    background-size: 32px auto;
    content: "";
    display: inline-block;
    height: 32px;
    margin: 0;
    position: relative;
    width: 32px;
}

.masked-dialog {
    position: relative;
    width: 392px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 64px 28px;
    font-size: var(--text-small);
}

.masked-dialog__title {
    font-size: var(--text-medium);
    margin-bottom: 12px;
    font-weight: 500;
    color: rgb(var(--title-color));
}

.masked-dialog__footer {
    padding: 24px 0 0;
    color: rgba(var(--grey), 1);
}

.masked-dialog__error {
    margin: 28px -28px -64px;
    padding: 28px;
    background: rgba(var(--warning-color), .08);
    color: rgb(var(--warning-color));
    text-align: left;
}

.o-icon_state {
    width: 72px;
    height: 72px;
    margin: 0 auto 36px;
    fill: none;
    display: block;
}

.o-infoblock {
    background: rgba(95, 140, 229, 0.12) url(./img/icons/static/info.svg) no-repeat 24px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    padding: 48px 24px 20px;
    color: #5F8CE5;
    font-size: 13px;
    line-height: 20px;
}

.openAccountPanelWrapper {
    padding-bottom: 28px;
}

.openAccountPanel {
    width: 100%;
    background: rgba(var(--custom-first), 0.12);
    color: rgb(var(--custom-first));
    font-size: var(--text-small);
    padding: 14px 24px;
    margin-top: 32px;
    line-height: 36px;
}

.openAccountPanelWrapper + .o-collapse__container, .openAccountPanelWrapper + .o-collapse__container:hover {
    padding-top: 0!important;
}

.openAccountPanel .o-button {
    border: 1px solid rgba(var(--custom-first), 0.32);
}

.openAccountPanel .o-button:hover {
    opacity: 0.8
}

.accountOpenRequestPanel {
    width: 100%;
    margin-bottom: 16px;
    background: rgba(95, 140, 229, 0.12);
    color: #5F8CE5;
    padding: 8px 44px;
    position: relative;
    border-radius: 4px;
}

.accountOpenRequestPanel .o-icon_info {
    width: 20px;
    height: 20px;
    fill: #5F8CE5;
    position: absolute;
    top: 8px;
    left: 10px;
    margin: 0;
}

.accountOpenRequestPanel .o-icon_close {
    top: 4px;
    right: 6px;
    margin: 0;
    fill: #5F8CE5;
}

.accountOpenRequestPanel.warning {
    background: rgba(var(--warning-color), .08);
    color: rgb(var(--critical));
}

.accountOpenRequestPanel.warning .o-icon_info,
.accountOpenRequestPanel.warning .o-icon_close {
    fill: rgb(var(--critical))
}

.accountsEmpty {
    text-align: center;
    color: #9397A1;
}

.accountProducts {
    padding: 20px 28px 28px;
    border: 1px solid rgb(var(--border-color));
    border-radius: 4px;
    margin-bottom: 32px;
}

.accountProducts:last-child {
    margin-bottom: 0;
}

.accountProducts_name {
    font-size: var(--text-medium);
    line-height: 24px;
    font-weight: 500;
    padding-bottom: 16px;
}

.accountProducts_description {
    padding-bottom: 12px;
}

.o-infoblock_icon-left {
    padding-top: 20px;
    padding-left: 52px;
    background-position-y: 22px;
}

.dialog .doc-view .otp__attachments,
.otp__attachments {
    padding: 5px 12px;
    border: 1px solid rgb(var(--border-color));
    margin: 12px auto 0;
    font-size: var(--text-small);
}

.deposit_error {
    margin-top: 10px;
    padding: 8px 12px;
    border-radius: 4px;
    background-color: rgba(var(--critical), .12);
    color: rgb(var(--critical));
}

.deposit_error.warning {
    background-color: rgba(var(--system-attention), .12);
    color: rgb(var(--system-attention));
}

.o-restriction {
    padding: 20px 20px 0 20px;
    background-color: rgba(var(--critical), 0.12);
    margin-bottom: 16px;
    border: none;
    border-radius: 5px;
}

.o-restriction .o-h3 {
    font-size: 15px;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .o-text_light, .o-input_amount,
    .marketplace__item-description h4,
    .corporate-cards-account,
    .corporate-cards__add,
    .o-title_light {
        font-weight: 400;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    body {
        background-color: rgb(var(--smoky-white));
    }

    body > .body {
        font-size: 0.8125rem;
    }

    svg {
        background-color: rgba(255, 255, 255, 0);
    }

    svg use {
        pointer-events: none;
    }

    textarea {
      overflow: auto;
    }

    .o-grid > [class*='o-grid__item_']:first-child {
      margin-left: -0.01px;
    }

    .o-simple-table__td {
        border: solid #cfd3dc;
        border-width: 1px 0;
    }

    .error-page__content [class*="o-button"] {
        display: inline-block;
        cursor: pointer;
        padding: 0 20px;
        height: 40px;
        line-height: 38px;
        border-radius: 4px;
        text-align: center;
        font-size: 0.875rem;
        font-weight: 400;
        border: 1px dashed #ba3d72;
        color: #ba3d72;
    }

    .error-page__content .o-button_primary {
        background: #ba3d72;
        color: #ffffff;
        border-style: solid;
    }

    .error-page__content .o-button_small {
        height: 32px;
        line-height: 30px;
        font-size: 13px;
        padding: 0 12px;
    }

    .aside__menu {
        overflow: auto;
    }

    .subcounter .aside__menu__item__counter, .subcounter i {
        right: 19px;
    }

    .o-form .o-form__content {
      width: calc(100% - 172px);
      float: right;
      margin-left: 0;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1481px) {
    .content .o-section_xl {
        margin-left: -56px;
    }
}

@media screen and (max-width: 1439px) {
    .aside {
        width: 68px;
    }

    .privpage {
        padding-left: 68px;
    }

    .aside__menu__item__title {
        display: none;
    }

    .aside__menu__item a, .aside__menu__item__link {
        padding: 0;
    }

    .aside__menu__child {
        left: 69px;
    }

    .aside__menu__child .aside__menu__item__title {
        display: inline;
    }

    .aside__menu__child__title .aside__menu__item__title {
        display: inline-block;
    }

    .privpage.aside_wide .aside {
        width: 280px;
    }

    .privpage.aside_wide .aside__menu__item__title {
        display: inline-block;
    }

    .privpage.aside_wide .aside__menu__item a,
    .privpage.aside_wide .aside__menu__item__link {
        padding: 14px 16px 14px 60px;
    }

    .privpage.aside_wide .aside__menu__child {
        left: 281px;
    }

    .privpage.aside_wide .aside__menu__child .aside__menu__item a,
    .privpage.aside_wide .aside__menu__child .aside__menu__item__link {
        padding: 14px 16px;
    }

    .privpage.aside_wide .aside__menu__child .aside__menu__item__link {
        padding-right: 36px;
    }

    .toolbar_bottom {
        height: 80px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .aside_wide .toolbar_bottom, .aside_short .toolbar_bottom {
        width: calc(100vw - 68px - 2 * 28px - 5px);
    }

    .toolbar__separator {
        height: 32px;
        margin: 20px;
    }

    .toolbar_bottom .toolbar__button {
        width: 80px;
        padding: 12px 10px;
    }

    .toolbar_bottom .toolbar__button-label,
    .toolbar_bottom .toolbar__button_right .toolbar__button-label,
    .toolbar_bottom .toolbar__button:hover .toolbar__button-label,
    .toolbar_bottom .toolbar__button_right:hover .toolbar__button-label,
    .toolbar__info-container .toolbar__info__amount,
    .toolbar__info-container .toolbar__info__sum {
        display: block;
    }

    .toolbar_bottom .toolbar__button-label {
        margin: 10px 0 0 0!important;
        font-size: 10px;
        line-height: 14px;
    }

    .toolbar_bottom .toolbar__info {
        padding: 19px 0 19px 38px;
    }

    .toolbar__info-container .toolbar__info__sum {
        margin: 0;
    }

    .toolbar__info-container .toolbar__info__amount {
        margin-bottom: 2px;
    }

    .toolbar_bottom .toolbar__button.toolbar__button_dropdown .toolbar__button-label {
        display: block !important;
    }

    .toolbar_bottom .toolbar__button_dropdown .o-icon_dropdown {
        width: 66px;
        height: 72px;
        margin-left: -10px;
        margin-bottom: -14px;
    }

    .toolbar_bottom .toolbar__button .o-select__list {
        bottom: 66px;
    }

    .content {
        margin-left: 52px;
    }
}

@media screen and (max-width: 1267px) {
    .o-icon_scrolltop {
        right: 3px;
    }
}

@media screen and (max-width: 1267px) and (-ms-high-contrast: active) and (-ms-high-contrast: none) {
    html, body {
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}

@media screen and (max-width: 1045px) {
    .period-filter__quarter {
        display: none;
    }
}

@media screen and (max-width: 1024px) {

    html, body {
        font-size: 15.8px;
    }

    nobr {
        white-space: normal !important;
    }

    .login-user-container .is-popup {
        width: 210px;
    }

    .o-link-sv,
    .login-user-container .is-popup br,
    .password-reset-form .o-input_user + .is-popup_f2b {
        display: none;
    }

    .toolbar_bottom {
        padding-left: 20px;
        padding-right: 20px;
    }

    .toolbar_bottom .js-toolbar__button-else {
        position: relative;
        width: 80px;
        height: 72px;
    }

    .toolbar_bottom .js-toolbar__button-else.active {
        display: block;
    }

    .toolbar__button-else-icon,
    .toolbar__button-else-icon::before,
    .toolbar__button-else-icon::after {
        display: inline-block;
        border: 2px solid rgb(var(--white));
        border-radius: 2px;
    }

    .toolbar__button-else-icon {
        position: relative;
        margin: 12px 0;
    }

    .toolbar__button-else-icon::before,
    .toolbar__button-else-icon::after {
        content: '';
        position: absolute;
        left: -8px;
        top: -2px;
    }

    .toolbar__button-else-icon::after {
        left: auto;
        right: -8px;
    }

    .js-toolbar_bottom__list {
        display: none;
        width: 236px;
        position: absolute;
        right: 0;
        bottom: calc(100% + 8px);
        background-color: rgb(var(--white));
        box-shadow: 0 40px 52px rgba(61, 64, 71, 0.16);
        border-radius: 4px;
    }

    .js-toolbar_bottom__list.active {
        display: block;
    }

    .js-toolbar_bottom__list .toolbar__button {
        width: auto;
        float: none;
        display: block;
        margin-left: 0;
        padding: 8px;
        text-align: left;
    }

    .js-toolbar_bottom__list .toolbar__button:hover {
        background-color: rgb(var(--ghostly-white));
    }

    .js-toolbar_bottom__list .toolbar__button .o-icon,
    .js-toolbar_bottom__list .toolbar__button:hover .o-icon {
        fill: rgb(var(--graphite)) !important;
    }

    .js-toolbar_bottom__list .toolbar__button-label,
    .js-toolbar_bottom__list .toolbar__button:hover .toolbar__button-label {
        display: inline-block !important;
        color: rgb(var(--graphite));
        margin-left: 2px !important;
    }

    .login-page__tooltip {
        width: 182px;
        left: 78px;
        bottom: 100%;
    }

    .information-panel {
        margin-left: -6px;
        margin-right: -6px;
    }

    .information-panel__item {
        margin: 0 6px;
        padding-top: 24px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .information-panel__item svg {
        top: auto;
        bottom: 24px;
        transform: none;
    }

    .information-panel_small .information-panel__item svg {
        top: auto;
        bottom: -8px;
    }

    .onb-toolbar__content {
        padding: 3rem;
    }

    .banking-support__details-wrapper {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .banking-support__details,
    .banking-support__details-expenses {
        width: 100%;
        padding-right: 0;
        margin-bottom: 0;
    }

    .banking-support__org-contract {
        min-height: 170px;
        padding-bottom: 80px;
    }

    .banking-support__org .tree-subtree .banking-support__org-contract {
        min-width: 594px;
        padding-bottom: 54px;
    }

    .banking-support__org-name {
        max-width: 293px;
    }

    .banking-support__status {
        display: block;
    }

    .banking-support__org .banking-support__status {
        margin-left: 0;

    }

    .banking-support__org-amount {
        width: 130px;
    }

    .content {
        margin-left: 28px;
    }

    .filter-toggle__label {
        display: none;
    }

    .o-input_date {
        font-size: var(--text-small);
    }
}

@media screen and (max-width: 820px) {
    .error-page__container {
        margin: 0;
        width: 90%;
        left: 5%;
        top: 40px;
    }

    .orgSelect, .orgSelect .o-select {
        width: 200px;
    }
}

@media screen and (max-width: 768px) {

    .login-user-container .is-popup {
        width: 170px;
    }

    .o-link-with-icon__text {
        display: none;
    }

    .o-simple-container {
        padding: 16px 20px 0;
    }

    .section .o-collapse__container,
    .section .o-collapse__container:hover {
        margin: 0 -20px;
    }

    .home-documents .o-tabs__body .tab-row {
        margin: -26px -20px 40px;
        padding: 24px 20px 20px;
    }

    .topbar-main {
        display: inline-block;
        float: right;
        margin-top: -12px;
    }

    [class*="l-grid_"] {
        float: left;
        padding-right: 1rem;
    }

    .l-grid_1, .l-grid-mobile_1 {
        width: 3.3333rem;
    }

    .l-grid_2, .l-grid-mobile_2 {
        width: 6.6666rem;
    }

    .l-grid_3, .l-grid-mobile_3 {
        width: 10rem;
    }

    .l-grid_4, .l-grid-mobile_4 {
        width: 13.3333rem;
    }

    .l-grid_5, .l-grid-mobile_5 {
        width: 16.6666rem;
    }

    .l-grid_6, .l-grid-mobile_6 {
        width: 20rem;
    }

    .l-grid_6_corp {
        width: 28.125rem;
    }

    .l-grid_7 {
        width: 23.3333rem;
    }

    .l-grid_8, .l-grid-mobile_8 {
        width: 26.6666rem;
    }

    .l-grid_9, .l-grid-mobile_9 {
        width: 30rem;
    }

    .l-grid_10, .l-grid-mobile_10 {
        width: 33.3333rem;
    }

    .l-grid_11, .l-grid-mobile_11 {
        width: 36.6666rem;
    }

    .l-grid_12, .l-grid-mobile_12 {
        width: 40rem;
    }

    .l-grid-mobile_full {
        width: 100%;
    }

    .l-height_full.l-height_absolute > .l-grid_1 {
        left: 23.3333rem;
    }

    .l-height_full.l-height_absolute > .l-grid_4 {
        margin-left: 3.3333rem;
    }

    .l-padding_null {
        padding: 0;
    }

    .o-tabs__item {
        margin-right: 18px;
    }

    .o-tabs .counter_css {
        margin-left: 0;
    }

    .period-datepicker {
        float: left;
        margin-top: 1rem;
    }

    .event-calendar__item {
        width: 20px;
    }

    .o-fieldset_absolute {
        width: 188px;
    }

    .th-checking {
        width: 24px;
    }

    .th-checking .o-table__th {
        padding-left: 4px;
    }

    .o-table__td.checking {
        padding-left: 4px;
    }

    .o-table__th, .o-simple-table__th .o-table th {
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: var(--text-extra-small);
    }

    .o-icon_change-view {
        display: none;
    }

    .filter-toggle .o-link-with-icon {
        padding: 7px 0 8px;
    }

    .period-filter__label {
        margin-right: 8px;
    }

    .filter-form__item {
        padding: 0 6px;
        height: 32px;
        line-height: 32px;
    }

    .o-simple-container_inset {
        padding: 20px 4px 16px 24px;
    }

    .o-simple-container_inset .o-label {
        white-space: normal !important;
    }

    .o-tooltip, .o-tooltip_input {
        font-size: 0.7rem;
    }

    .o-icon_button {
        width: 20px;
        height: 20px;
        border: none;
        border-radius: 0;
    }

    .o-icon_button-wrapper {
        right: -32px;
        /*top: 50%;*/
        margin-top: 8px;
    }

    .o-tooltip_icon {
        width: 16px;
        height: 16px;
        line-height: 15px;
    }

    .o-icon_loan-info {
        width: 60px;
        height: 60px;
    }

    .time-filter__tags::after {
        content: '';
        clear: both;
        display: block;
        margin-bottom: 12px;
    }

    .m-wide-label {
        width: 8rem;
    }

    .stateIco {
        display: none;
    }

    .currencies-date-picker {
        top: 10px;
    }

    .motions-display-options .o-button {
        margin-top: 10px !important;
    }

    .header-buttons .o-select .o-select__list.templatesList {
        width: 180px;
        margin-left: -60px;
    }

    .l-float_right, .t-float_right {
        float: right;
    }

    .l-float_left, .t-float_left {
        float: left;
    }

    .m-select_left .o-select .o-select__list {
        right: 0;
        left: auto;
    }

    .toolbar__button,
    .toolbar__section {
        margin-right: 12px;
    }

    .corporate-cards {
        height: 126px;
        padding: 50px 30px 0 14px;
    }

    .corp-pin-card .corporate-cards {
        padding: 0;
    }

    .corporate-cards-account {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .corporate-cards__number,
    .corporate-cards__date,
    .corporate-cards__holder,
    .corporate-cards__org {
        font-size: var(--text-extra-small);
        line-height: 1.2;
    }

    .onboarding__button {
        display: none;
    }

    .error-page-wrapper {
        min-height: 100vh;
    }

    .dialog .doc-view .printArea, .dialog .printArea {
        transform: scale(0.9);
        margin-left: -20px;
        margin-top: -80px;
    }

    .t-hidden {
        display: none;
    }

    .period-filter .period-datepicker {
        margin-top: 0;
    }

    .period-filter .period-datepicker .o-form__period {
        width: 150px;
        font-size: 11px;
    }

    .o-icon_scrolltop {
        display: none;
    }

    .l-grid_2 .o-input_date {
        letter-spacing: -0.5px;
        font-size: var(--text-small);
        padding-right: 20px;
        padding-left: 5px;
    }

    .o-link_calendar {
        right: 2px;
    }

    .t-ellipsed {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .o-table-input__td {
        padding: 8px 0 0 0;
    }

    .o-table-input__td .o-icon {
        width: 28px;
        height: 28px;
        margin-top: 7px;
    }

    input[type="radio"] + label,
    .o-radio-label {
        font-size: var(--text-small);
    }

    .lookup.o-icon_button {
        padding: 0;
    }

    .old-payment_type {
        width: 166px !important;
    }

    .breadcrumbs-payment-select .l-grid_7 {
        width: 280px;
        margin-top: -6px;
    }

    .o-banner-container, .o-banner-container .o-banner {
        height: 109px;
    }

    .o-icon_button-wrapper + .o-tooltip_icon-textarea {
        right: -30px;
    }

    .o-tooltip_icon-textarea + .o-tooltip_input.top {
        margin-left: 0;
    }

    .resend-field {
        width: 8rem;
    }

    .timeLeftMessage {
        width: 21rem;
        margin-bottom: 8px;
    }

    .otpPanel form .o-button_primary {
        padding: 0 6px;
    }

    .deposit-open__calculator {
        width: 292px;
        padding: 32px 20px;
    }

    .deposit-open__wrapper-deposits {
        width: 300px;
    }

    .pseudo-textarea {
        margin-bottom: 28px;
    }

    .aside_wide .toolbar_bottom, .aside_short .toolbar_bottom {
        width: calc(100vw - 68px - 5px);
    }

    .add-files__place .o-button {
        line-height: 1.4;
    }

    .privpage.aside_short .aside {
        width: 58px;
        padding-left: 2px;
    }

    .privpage, .privpage.aside_wide, .privpage.aside_short {
        padding-left: 58px;
    }

    .aside__menu__item {
        margin: 0 2px 1px 4px;
    }

    .content {
        margin: 0 4px;
    }

    .aside__menu__item .o-icon {
        left: 12px;
    }

    .aside__menu__item__counter {
        left: 19px;
    }

    .aside__toggler {
        margin-left: 4px;
    }

    a.pubpage__language {
        right: 60px;
    }

    a.pubpage__faq {
        right: 120px;
    }

    .privpage.aside_short .aside__menu__child {
        left: 59px;
    }
}

@media screen and (max-width: 767px) {
    .login-page__content {
        width: auto;
        max-width: 360px;
    }

    .password-reset-form {
        margin-top: 0;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .aside_short.privpage .aside {
        width: 76px;
    }

    .aside_short.privpage .aside__menu__child {
        left: 77px;
    }

    .aside__menu__child__inner {
        overflow: auto;
    }

    .aside_short.privpage .aside__menu > .aside__menu__item,
    .aside_short.privpage .aside__menu > div > .aside__menu__item_parent {
        transform: translateZ(0);
    }

    .aside_short.privpage .aside__menu > .hover.aside__menu__item .aside__menu__item__title,
    .aside_short.privpage .aside__menu > div > .hover > .aside__menu__item_parent .aside__menu__item__title {
        left: 80px;
    }

    .o-checkbox-label::after {
      background: url('img/checkbox.svg') no-repeat 0 0;
    }

    .sv_inverse .o-checkbox-label::after {
        background: url('img/checkbox_inverse.svg') no-repeat 0 0;
    }
}

.newIB__header {
    padding: 0 0 32px;
}

.newIB__content {
    padding: 20px;
    font-size: 15px;
}

#newBankTimer {
    min-height: 59px;
}

.timerHeader {
    padding-bottom: 12px;
}

.timerContainer {
    max-width: 338px;
}

.timerElement {
    display: inline-block;
    width: 25%;
    text-align: center;
}

.timerElement__counter {
    width: 73px;
    height: 59px;
    background: #E7EAED;
    border-radius: 10px;
    font-weight: 700;
    line-height: 56px;
    font-size: 48px;
    color: #000000;
}

.timer__measurments {
    padding-top: 6px;
    font-size: 12px;
}

.timer__measurments__item {
    display: inline-block;
    width: calc(25% - 1px);
    text-align: center;
    color: #9397A1;
}

.timer__measurments__item:first-child {
    width: 73px;
}

.dialog-mask-xp .o-section {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -98px 0 0 -289px;
}

.section_XP {
    display: block !important;
}

/*Индикатор для тултипа "белого счета"*/
.aml-indicator-line {
    position: relative;
    text-align: left;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 50px;
}

.aml-indicator-subline {
    position: absolute;
    top: 0;
    height: 100%;
}

.aml-indicator-subline.green {
    left: 0;
    border-radius: 3px 0 0 3px;
    border-right: 1px solid rgb(var(--white));
    background: #61AF53;
}

.aml-indicator-subline.red {
    right: 0;
    border-radius: 0 3px 3px 0;
    border-left: 1px solid rgb(var(--white));
    background: #E75671;
}

.aml-indicator-delimiter {
    position: absolute;
    left: auto;
    right: auto;
    top: 17px;
    margin: 0 -6px;
    font-size: var(--text-extra-small);
    color: rgba(var(--graphite), .5);
    width: 0px;
    text-align: center;
}

.aml-indicator-delimiter::before {
    content: "";
    left: 0;
    bottom: 100%;
    height: 10px;
    width: 1px;
    position: absolute;
    background: rgba(var(--graphite), .2);
    right: 0;
    margin: 0 11px -2px;
}

.aml-indicator-dot {
    text-align: left;
    position: absolute;
    margin-top: -4px;
    left: 50%;
    height: 14px;
    width: 14px;
    border: 1px solid rgb(var(--white));
    border-radius: 7px;
}

.aml-indicator-dot.red,
.aml-indicator-container .red {
    background: #E75671;
}

.aml-indicator-dot.orange,
.aml-indicator-container .orange {
    background: #FFA000;
}

.aml-indicator-dot.green,
.aml-indicator-container .green {
    background: #61AF53;
}

.aml-indicator-container .gray {
    background: rgb(var(--grey-plus));
}

.aml-indicator-container .aml-indicator-txt {
    position: absolute;
    margin-top:  -26px;
    margin-left: -3px;
    left: 50%;
}


.returnLastRemoved {
    position: fixed;
    bottom: 20px;
    margin-left: -167px;
    left: 50%;
    height: 60px;
    z-index: 100;
    background-color: rgba(47, 49, 55, 0.8);
    color: rgb(var(--panel-bg));
    border-radius: 4px;
    padding: 8px 20px;
}

.returnLastRemoved .o-button {
    color: rgb(var(--panel-bg));
    border: 1px solid rgba(var(--panel-bg), 0.32)!important;
    margin-left: 50px;
    margin-right: 46px;
}

.returnLastRemoved .o-button:hover, .returnLastRemoved .o-link-with-icon:hover {
    background-color: rgba(104, 109, 121, 0.7);
    opacity: 1!important;
}

.returnLastRemoved .o-link-with-icon {
    position: absolute;
    right: 12px;
    top: 12px;
    padding: 6px;
    border-radius: 4px;
    cursor: pointer;
}

.returnLastRemoved .o-link-with-icon .o-icon {
    width: 24px;
    height: 24px;
    fill: rgb(var(--panel-bg));
}

.table_item tr:hover {
    background:  none !important;
}

.edit_panel {
    background: rgb(var(--panel-bg));
}

.info_panel:hover {
    background: rgba(var(--ghostly-white));
}

.info_panel__error {
    background: rgba(var(--critical), 0.08);
}

.info_panel__error:hover {
    background: rgba(var(--critical), 0.16);
}

.info_panel__warning {
    background: rgba(var(--system-attention), 0.08);
}
.info_panel__warning:hover {
    background: rgba(var(--system-attention), 0.16);
}

.o-section_xl .form_info__wrapper {
    position: absolute;
    z-index: 2;
    left: calc(100% + 70px);
    width: 272px;
    opacity: 0;
    margin-top: -68px;
    transition: opacity var(--standart-transition);
}

.form_info__wrapper.showInfo {
    opacity: 1
}

.docView__attach__quantity {
    font-weight: 500;
    display: inline-block;
    margin-right: 20px;
    padding-bottom: 24px;
}

.docView__attach__list {
    display: flex;
    flex-wrap: wrap;
}

.docView__attach__item {
    width: calc((100% - 4 * 14px)/5);
    min-height: 84px;
    margin-bottom: 14px;
    margin-right: 14px;
    background: rgb(var(--smoky-white));
    border-radius: 4px;
}

.docView__attach__item:nth-child(5n) {
    margin-right: 0;
}

.docView__attach__item .docView__attach__link {
    height: 100%;
    width: 100%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    border-radius: inherit;
    position: relative;
    text-decoration: none;
}

.docView__attach__link .docView__attach__name {
    flex-grow: 1;
    color: rgb(var(--graphite));
    word-break: break-word;
}

.docView__attach__link .docView__attach__size {
    font-size: var(--text-extra-small);
    color: rgb(var(--grey));
}

.docView__attach__link__mask {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--black), 0.72);
    justify-content: center;
    align-items: center;
}

.docView__attach__link__mask .o-icon {
    fill: rgb(var(--white));
}

.docView__attach__link:hover .docView__attach__link__mask {
    display: flex;
}

.depositInfo__table {
    width: 100%;
}

.depositInfo__table td {
    padding: 16px 0;
    border-top: 1px solid rgb(var(--light-grey));
}

.depositInfo__table tr:first-child td {
    border-top: none;
}

.depositInfo__label {
    color: #9397A1;
}

.depositInfo__table-info {
    font-size: var(--text-extra-small);
    line-height: 16px;
    margin-top: 4px;
    color: rgb(var(--grey));
}

.corp-pin-card .corp-cards__right {
    position: static;
}

.corp-pin-card .wrapper-card-status {
    position: absolute;
    top: 14px;
}

.corp-pin-card .o-tooltip_string {
    display: none;
}

.corp-pin-card .o-tooltip-icon:hover {
    cursor: default;
}

.corp-pin-card .corporate-cards:hover {
    margin: 0;
}

.corp-pin-card .corporate-cards__number:hover {
    cursor: default;
    color: inherit;
}

.corp-pin-card .corporate-cards:hover .corporate-cards__statement {
    display: none;
}



