* {
    -webkit-tap-highlight-color: transparent;
}

body {
    background: #F7F8FA;
}

body._modal-safari {
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    position: fixed;
    overflow: hidden;
}

/* ========== */
/*   LOGIN    */
/* ========== */

._dark-logo {
    color: #fff !important;
    background-color: var(--color-primary) !important;
}
._dark-logo .bk-auth__info {
    color: #333!important;
}
._dark-logo .bk-auth__decor-bg {
    background: linear-gradient(154deg, rgba(255, 255, 255, 0.00) 4.33%, #FFF 58.08%) !important;
}
._dark-logo .bk-auth__form-title span {
    color: rgba(255, 255, 255, 0.5) !important;
}
._dark-logo .bk-auth__input input {
    background-color: transparent !important;
}
._dark-logo .bk-auth__eye {
    background-color: rgba(255, 255, 255, 0.5) !important;
}
._dark-logo .bk-auth__button {
    color: var(--color-primary) !important;
    background-color: #fff !important;
}
._dark-logo .bk-auth__button:hover {
    filter: brightness(0.9) !important;
}
._dark-logo .bk-auth__link {
    color: rgba(255, 255, 255, 0.5) !important;
}


._dark-logo .bk-auth__hint {
    color: #fff !important;
    background-color: rgba(255, 255, 255, 0.5) !important;
}
._dark-logo .bk-auth__hint-icon {
    background-color: #fff !important;
}




.bk-popup__wrapper {
    top: 0;
    /*right: 0;*/
    /*bottom: 0;*/
    left: 0;
    height: 100vh;
    /*height: 100dvh;*/
    width: 100vw;
    background-color: rgba(51, 51, 51, 0.5);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    position: fixed;
    z-index: 149;
}

.bk-popup__wrapper._active {
    opacity: 1;
    visibility: visible;
}

.bk-license,
.bk-menu {
    width: calc(100% - 80px);
    max-width: 1200px;
    padding: 20px;
    top: 20px;
    left: 50%;
    bottom: 20px;
    border-radius: 10px;
    background-color: #fff;
    transform: translate(-50%, 20%);
    opacity: 0;
    /*-webkit-transition: all 0.2s;*/
    /*-o-transition: all 0.2s;*/
    /*transition: all 0.2s;*/
    -webkit-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    transition: transform 0.2s;
    position: fixed;
    overflow: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.bk-license::-webkit-scrollbar,
.bk-menu::-webkit-scrollbar {
    display: none;
}

.bk-license._active,
.bk-menu._active {
    opacity: 1;
    transform: translate(-50%, 0);
}

.bk-license__inner {
}

.bk-license__close,
.bk-menu__close {
    display: none;
}

.bk-license__header {
    margin-bottom: 60px;
    background-image: url(/img/lk-bankrupt/bankrupt-bg.jpg);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: right 30%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.bk-license__title {
    height: 100%;
    background: linear-gradient(88deg, var(--color-secondary) 55.89%, var(--color-secondary-opacity) 92.15%);
}

.bk-license__title p {
    padding: 50px;
    max-width: 860px;
    font-size: clamp(1.25rem, -0.089rem + 3.571vw, 3.125rem);
    font-weight: 700;
    line-height: 1.15;
}

.bk-license__body {
    padding: 0 70px;
}

.bk-license__subtitle {
    margin: 40px 0;
    font-weight: 700;
}

.bk-license__text {
    font-size: clamp(1rem, 0.732rem + 0.714vw, 1.375rem);
}

.bk-license__text:not(:last-child) {
    margin-bottom: 20px;
}

.bk-auth,
.bk-auth__loader {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    line-height: 1.15;
    background-color: #fff;
    position: fixed;
    overscroll-behavior: none;
}

.bk-auth__loader {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease 0.2s;
    z-index: 10;
}

.bk-auth._loaded .bk-auth__loader,
.bk-main._loaded .bk-auth__loader {
    opacity: 0;
    visibility: hidden;
}

.bk-auth__loader svg {
    width: 80px;
    height: 80px;
}

.bk-auth._loaded .bk-auth__loader svg {
    opacity: 0;
    transition: opacity .2s ease;
}

.bk-auth__decor {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(/img/lk-bankrupt/bankrupt-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 70% center;
    position: fixed;
    z-index: -1;
    transition: all 0.7s ease 1.5s;
}

.bk-auth._loaded .bk-auth__decor {
    right: 50%;
}

.bk-auth__decor-bg {
    height: 100%;
    background: linear-gradient(154deg, var(--color-secondary-opacity) 4.33%, var(--color-secondary) 58.08%);
}

.bk-auth__inner {
    height: 100vh;
    height: 100dvh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.bk-auth__info {
    max-width:500px;
    margin-top: auto;
    margin-bottom: 80px;
    padding-right: 20px;
}

@keyframes text-animation {
    from {opacity: 0; transform: translateY(20%);}
    to {opacity: 1; transform: none;}
}

.bk-auth__title,
.bk-auth__text,
.bk-auth__small {
    opacity: 0;
    transform: translateY(20%);
    transition: opacity .5s ease, transform .5s ease;
}

.bk-auth._loaded .bk-auth__title,
.bk-auth._loaded .bk-auth__text,
.bk-auth._loaded .bk-auth__small {
    animation: text-animation .5s ease forwards;
}

.bk-auth__title {
    font-weight: 600;
}

.bk-auth._loaded .bk-auth__title {
    animation-delay: .5s;
}

.bk-auth._loaded .bk-auth__text {
    animation-delay: .8s;
}

.bk-auth._loaded .bk-auth__small {
    animation-delay: 1.1s;
}

.bk-auth__title {
    margin-bottom: 40px;
    font-size: clamp(1rem, -0.518rem + 4.048vw, 3.125rem);
}

.bk-auth__text {
    margin-bottom: 40px;
    font-size: clamp(1.5rem, 1.232rem + 0.714vw, 1.875rem);
}

.bk-auth__small {
    font-size: 16px;
    filter: opacity(0.5);
}

.bk-auth__form {
    max-width: 440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(50vw);
    opacity: 0;
    transition: all .7s ease 1.5s;
}

.bk-auth._loaded .bk-auth__form {
    transform: translateX(0);
    opacity: 1;
}

.bk-auth__logo {
    margin-top: 80px;
    margin-bottom: auto;
}

.bk-auth__form-title {
    margin-bottom: 60px;
    font-size: clamp(1.875rem, 1.429rem + 1.19vw, 2.5rem);
}

.bk-auth__form-title span {
    color: var(--color-primary);
}

.bk-auth__input {
    margin-bottom: 10px;
    /*padding: 14px 20px;*/
    font-size: clamp(1rem, 0.911rem + 0.238vw, 1.125rem);
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
    transition: all .2s ease;
}

.bk-auth__inputs._error .bk-auth__input {
    color: rgba(229, 64, 71, 0.5);
    border-color: rgba(229, 64, 71, 0.15);
}

.bk-auth__input input {
    padding: 14px 20px;
    flex-grow: 1;
    border-radius: 8px;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.bk-auth__inputs._error .bk-auth__input input::placeholder {
    color: rgba(229, 64, 71, 0.5);
}

.bk-auth__input input:nth-child(2) {
    padding-right: 30px;
}

.bk-auth__eye {
    --s: 20px;

    width: var(--s);
    height: var(--s);
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(51, 51, 51, .5);
    -webkit-mask-image: url("/img/lk-bankrupt/eye.svg");
    mask-image: url("/img/lk-bankrupt/eye.svg");
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    position: absolute;
    cursor: pointer;
    transition: background-color .2s ease;
}

.bk-auth__inputs._error .bk-auth__eye {
    background-color: rgba(229, 64, 71, 0.5);
}

.bk-auth__input input[type="text"] + .bk-auth__eye {
    -webkit-mask-image: url("/img/lk-bankrupt/eye-slash.svg");
    mask-image: url("/img/lk-bankrupt/eye-slash.svg");
}

.bk-auth__error {
    margin-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
}

.bk-auth__inputs._error .bk-auth__error {
    opacity: 1;
    visibility: visible;
}

.bk-auth__error-text {
    margin-bottom: 20px;
    font-size: clamp(1rem, 0.911rem + 0.238vw, 1.125rem);
    color: #E54047;
}

.bk-auth__hint {
    margin-bottom: 20px;
    padding: 20px;
    font-size: clamp(1rem, 0.911rem + 0.238vw, 1.125rem);
    color: rgba(51, 51, 51, 0.5);
    background-color: var(--color-primary-opacity);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: flex;
}

.bk-auth__hint-icon {
    --s: 20px;
    width: var(--s);
    height: var(--s);
    margin-right: 20px;
    background-color: rgba(51, 51, 51, .5);
    -webkit-mask-image: url("/img/lk-bankrupt/icon-info.svg");
    mask-image: url("/img/lk-bankrupt/icon-info.svg");
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.bk-auth__button {
    margin-bottom: 70px;
    padding: 14px;
    background-color: var(--color-primary);
    border: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    font-size: clamp(1rem, 0.911rem + 0.238vw, 1.125rem);
    transition: filter .2s ease;
}

.bk-auth__button:hover {
    filter: brightness(1.1);
}

.bk-auth__button:active {
    filter: brightness(0.9);
}

.bk-auth__link {
    margin-bottom: 80px;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.5);
}

.bk-auth__link span {
    text-decoration: underline;
    cursor: pointer;
}

/* ========== */
/*  CONTENT   */
/* ========== */

.bk-header,
.client__header {
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 0;
    line-height: 1.15;
    background-color: #fff;
    box-shadow: 0px 4px 8px 0px rgba(217, 217, 217, 0.25);
    position: fixed;
    z-index: 10;
}

.client__header {
    width: 100vw;
    min-height: 70px;
    align-items: center;
    transform: translateX(0);
    transition: transform .2s ease;
    display: none;
}

.bk-header__inner,
.client__header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bk-header__inner {
    padding: 16px 0;
}

.client__header-inner {
    width: 100%;
    padding: 0 15px;
}

.bk-menu__inner {
}

.client__header-btn {
    font-size: 16px;
    font-weight: 500;
    color: rgba(51, 51, 51, 0.5);
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.client__header-btn span {
    --s: 20px;
    width: var(--s);
    height: var(--s);
    margin-right: 20px;
    background-color: rgba(51, 51, 51, .5);
    -webkit-mask-image: url("/img/lk-bankrupt/icon-arrow.svg");
    mask-image: url("/img/lk-bankrupt/icon-arrow.svg");
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    transform: rotate(90deg);
    flex-shrink: 0;
}

.bk-header__lawyer {
    margin-right: 20px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.bk-menu__lawyer {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bk-header__lawyer-avatar,
.bk-menu__lawyer-avatar {
    width: var(--s);
    height: var(--s);
    font-weight: 500;
    line-height: 1;
    border-radius: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
    text-transform: uppercase;
}

.bk-header__lawyer-avatar {
    --s: 50px;
    margin-right: 10px;
    font-size: 17px;
}

.bk-menu__lawyer-avatar {
    --s: 130px;
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 52px;
}

.bk-header__lawyer-info {
    overflow: hidden;
}

.bk-header__lawyer-name {
    font-size: clamp(1rem, 0.821rem + 0.476vw, 1.25rem);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-header__lawyer-name,
.bk-header__lawyer-pos {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bk-menu__lawyer-name {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.bk-header__lawyer-pos,
.bk-menu__lawyer-pos {
    font-size: 16px;
    opacity: .5;
}

.bk-menu__lawyer-pos {
    text-align: center;
}

.bk-header__nav {
    display: flex;
    align-items: center;
}

.bk-header__nav > *:not(:last-child) {
    margin-right: 20px;
}

.bk-header__contacts {
    text-align: right;
    font-size: 16px;
}

.client__header-menu {
    --s: 30px;
    width: var(--s);
    height: var(--s);
    margin-left: 10px;
    background-color: rgba(51, 51, 51, .5);
    -webkit-mask-image: url("/img/common/icon-menu.svg");
    mask-image: url("/img/common/icon-menu.svg");
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    flex-shrink: 0;
}

.bk-header__menu-icon {
    --s: 24px;
    width: var(--s);
    height: var(--s);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bk-header__menu-icon div {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #989898;
    position: relative;
    transition: background-color 0s ease .2s;
}

.bk-menu._active .bk-header__menu-icon div {
    background-color: transparent;
}

.bk-header__menu-icon div:before,
.bk-header__menu-icon div:after {
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background-color: #989898;
    position: absolute;
    content: '';
    transition: transform .2s ease .2s, rotate .2s ease 0s;
}

.bk-menu._active .bk-header__menu-icon div:before,
.bk-menu._active .bk-header__menu-icon div:after {
    transition: transform .2s ease 0s, rotate .2s ease .2s;
}

.bk-header__menu-icon div:before {
    transform: translateY(300%);
}

.bk-menu._active .bk-header__menu-icon div:before {
    transform: translateY(0);
    rotate: 45deg;
}

.bk-header__menu-icon div:after {
    transform: translateY(-300%);
}

.bk-menu._active .bk-header__menu-icon div:after {
    transform: translateY(0);
    rotate: -45deg;
}

.bk-menu__contacts {
    margin-bottom: 20px;
    padding: 10px;
    font-size: 16px;
    color: var(--textOpacity);
    border-radius: 8px;
    background: var(--bodyBg);
    display: block;
}

.bk-menu__phone {
    margin-bottom: 8px;
    text-decoration: none;
}

.bk-menu__worktime {
}

.bk-header__form-btn,
.bk-menu__form-btn {
    min-height: 52px;
    padding: 15px 34px;
    font-weight: 500;
    font-size: 16px;
    background-color: var(--color-secondary);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bk-menu__form-btn {
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
    font-weight: 400;
}

.bk-header__logout,
.bk-menu__logout {
    min-height: 52px;
    padding: 14px;
    background-color: var(--color-primary-opacity);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.bk-menu__logout {
    width: 100%;
    padding: 20px;
    font-size: 16px;
    color: var(--color-primary);
}

.bk-header__logout span {
    --s: 24px;
    width: var(--s);
    height: var(--s);
    background-color: var(--color-secondary);
    -webkit-mask-image: url(/img/lk-bankrupt/icon-logout.svg);
    mask-image: url(/img/lk-bankrupt/icon-logout.svg);
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.bk-main {
    padding-top: 100px;
}

.bk-main__title {
    margin-bottom: 14px;
    padding: 16px 24px;
    font-size: clamp(1.25rem, 0.982rem + 0.714vw, 1.625rem);
    font-weight: 600;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.bk-main__steps {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: stretch;
    counter-reset: steps-count;
}

.bk-main__step {
    padding: 40px;
    font-size: 20px;
    color: var(--color-primary);
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    flex: 1 1 100%;
    counter-increment: steps-count;
    position: relative;
}

.bk-main__step:nth-child(1) {
    z-index: 2;
}

.bk-main__step:nth-child(2) {
    z-index: 1;
}

.bk-main__step._active,
.bk-main__step._current {
    color: #fff;
    background-color: var(--color-primary);
}

.bk-main__step._from {
    margin-right: 16px;
}

.bk-main__step._to {
    padding-left: 80px;
}

.bk-main__step._from::after,
.bk-main__step._to::before {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    /*clip-path: polygon(*/
    /*        50% 0,*/
    /*        90% 40%,*/
    /*        92% 44%,*/
    /*        93% 46%,*/
    /*        94% 47%,*/
    /*        94% 53%,*/
    /*        93% 54%,*/
    /*        92% 56%,*/
    /*        90% 60%,*/
    /*        50% 100%,*/
    /*        0% 100%,*/
    /*        0 50%,*/
    /*        0% 0%);*/
    clip-path: polygon(50% 0%, 89.07% 40.93%, 92% 44%, 93% 46%, 94.67% 49.33%, 94.67% 52.46%, 93.41% 55.32%, 92% 57.25%, 90% 60%, 50% 100%, 3% 100%, 2.25% 99.75%, 2% 99.5%, 1.5% 99%, 1% 98.5%, 0.5% 98%, 0% 97%, 0% 50%, 0% 3%, 0.5% 2%, 1% 1.5%, 1.5% 1%, 2% 0.5%, 2.25% 0.25%, 3% 0%);
    position: absolute;
    content: '';
}

.bk-main__step._from::after,
.bk-main__step._active._from::after, .bk-main__step._current._from::after {
    height: 93%;
    right: -24px;
    background-color: var(--color-primary);
    z-index: 1;
}

.bk-main__step._active._from::after, .bk-main__step._current._from::after {
    background-color: var(--color-primary);
}

.bk-main__step._from::after {
    background-color: #fff;
}

.bk-main__step._to::before {
    height: 93%;
    /*left: -9px;*/
    left: -28px;
    background-color: #F7F8FA;
}

.bk-main__step-title {
    font-weight: 700;
}

.bk-main__step-title:after {
    content: counter(steps-count);
}

.bk-main__step-text {
    white-space: nowrap;
}

.bk-main__timeline {
    min-height: calc(100vh - 420px);
    padding: 40px;
    background-color: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    position: relative;
}

.bk-main__plug {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    z-index: 1;
}

.bk-main__plug-inner {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bk-main__plug-icon {
    margin-bottom: 30px;
    width: 80%;
    max-width: 728px;
    margin-top: auto;
}

.bk-main__plug-title {
    max-width: 80%;
    margin-bottom: 14px;
    font-size: clamp(1.25rem, 0.982rem + 0.714vw, 1.625rem);
    font-weight: 600;
}

.bk-main__plug-text {
    max-width: 80%;
    margin-bottom: auto;
    font-size: 16px;
}














.new_popup_wrapper,
.deep-popup_wrapper {
    visibility: hidden;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 99;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity .5s;
}

.new_popup_wrapper._active,
.deep-popup_wrapper._active {
    visibility: visible;
    opacity: 1;
}


.client,
.managers,
.request {
    width: 75%;
    top: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: 10px;
    background-color: #fff;
    transform: translateX(200%);
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    position: absolute;
}

.client._active,
.managers._active,
.request._active {
    transform: translate(0);
}

.client._inactive {
    -webkit-transform: scale(0.95) translateX(-60px);
    -ms-transform: scale(0.95) translateX(-60px);
    transform: scale(0.95) translateX(-60px);
}

.client__inner,
.request__inner {
    height: 100%;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 400px auto;
    overflow: hidden;
    position: relative;
}

.client__archive {
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 1;
}

.client__archive._active {
    opacity: 0.9;
    visibility: visible;
}

.client__aside,
.request__aside {
    padding: 28px 20px;
    background-color: #F7F8FA;
    border-radius: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.client__status {
    width: fit-content;
    margin-bottom: 12px;
    margin-left: 24px;
    padding: 6px 8px;
    font-size: 16px;
    line-height: 1.15;
    border-radius: 8px;
    position: relative;
}

.client__name,
.request__title {
    max-width: 100%;
    margin-bottom: 28px;
    margin-left: 24px;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.15;
    word-wrap: break-word;
    outline: none;
}

.client__menu,
.request__menu {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.client__menu-header {
}

.client__menu-tabs {
    margin: 0 24px 36px;
    padding-bottom: 12px;
    border-bottom: 2px solid #E9E9EE;;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client__menu-tab {
    font-size: 20px;
    position: relative;
    cursor: pointer;
    user-select: none;
}

.client__menu-tab._active::after {
    width: 100%;
    height: 4px;
    bottom: -15px;
    left: 0;
    border-radius: 2px;
    background-color: #295CC9;
    position: absolute;
    content: '';
}

.client__menu-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.client__menu-item {
    flex-grow: 1;
    display: none;
    flex-direction: column;
}

.client__menu-item._active {
    display: flex;
    height: 0px;
}

.client__menu-forms {
    /*max-height: calc(100vh - 480px);*/
    /*flex-grow: 1;*/
    /*overflow-x: hidden;*/
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.client__menu-forms::-webkit-scrollbar {
    display: none;
}

.client_menu-form,
.client_menu-template,
.request__menu-item {
    padding: 8px 8px 8px 16px;
    border-left: 7px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all .2s ease;
    user-select: none;
}

.client_menu-form._active,
.client_menu-template._active,
.request__menu-item._active {
    background-color: var(--color-primary-opacity);
    border-left: 7px solid var(--color-secondary);
}

.client_menu-form:hover,
.client_menu-template:hover,
.request__menu-item:hover {
    background-color: var(--color-primary-opacity);
}

.client_menu-form:not(:last-child) {
    margin-bottom: 10px;
}

.client_menu-form__title {
    font-size: 20px;
    line-height: 1.15;
}

.client_menu-form__info {
    display: flex;
    align-items: center;
}

.client_menu-form__title + .client_menu-form__info {
    margin-top: 6px;
}

.client_menu-form__progressbar {
    height: 10px;
    margin-right: 6px;
    border-radius: 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    flex-grow: 1;
    transition: all .2s ease;
}

.client_menu-form__progressbar::-webkit-progress-bar {
    border-radius: 5px;
    background-color: var(--color-primary-opacity);
    transition: all .2s ease;
}

.client_menu-form__progressbar::-moz-progress-bar {
    border-radius: 5px;
    background-color: var(--color-primary);
    transition: all .2s ease;
}

.client_menu-form__progressbar::-webkit-progress-value {
    border-radius: 5px;
    background-color: var(--color-primary);
    transition: all .2s ease;
}

.client_menu-form__progress {
    width: 40px;
    font-size: 16px;
    line-height: 1.15;
    color: rgba(51, 51, 51, 0.5);
    text-align: right;
}

.client__menu-footer {
    margin-top: auto;
    flex-shrink: 0;
}

.client__saved {
    margin: 20px 0 10px 24px;
    font-size: 16px;
    color: rgba(51, 51, 51, 0.5);
}

.client__send {
    width: calc(100% - 48px);
    margin: 0 24px 10px;
    padding: 16px;
    font-size: 20px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    background-color: #2154CF;
    cursor: pointer;
    user-select: none;
}

.client__send:active {
    background-color: #1b43a0;
}

.client__menu-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.client__delete {
    width: fit-content;
    margin-left: 24px;
    font-size: 16px;
    color: rgba(51, 51, 51, 0.5);
    transition: all .2s ease;
    cursor: pointer;
    user-select: none;
}

.client__delete:hover {
    color: rgba(229, 64, 71, 0.75);
}

.client__menu-support {
    width: fit-content;
    margin-left: auto;
    margin-right: 24px;
    font-size: 16px;
    color: rgba(51, 51, 51, 0.5);
    text-decoration: none;
    transition: all .2s ease;
    cursor: pointer;
    user-select: none;
}

.client__menu-support:hover {
    color: #333333;
}

.client__menu-templates {
    height: calc(100vh - 260px);
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
}

.client__menu-templates::-webkit-scrollbar {
    display: none;
}

.client_menu-template {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.client_menu-template._disabled {
    filter: contrast(0.3) brightness(1.5);
    cursor: not-allowed;
}

.client_menu-template__icon {
    --s: 60px;
    width: var(--s);
    height: var(--s);
    margin-right: 16px;
    background-color: var(--color-primary);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client_menu-template__icon span {
    --s: 34px;
    width: var(--s);
    height: var(--s);
    background-color: #fff;
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    -webkit-mask-image: url(/img/lk-bankrupt/icon-document.svg);
    mask-image: url(/img/lk-bankrupt/icon-document.svg);
    -webkit-mask-position: center;
    mask-position: center;
}

.client_menu-template__name {
    font-size: 20px;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.client__menu-history {
}

.client__menu-history--text {
    margin: 0 24px;
    font-size: 20px;
    line-height: 1.15;
    color: rgba(51, 51, 51, 0.5);
}

.client__saved {
}
.client__send {
}
.client__delete {
}



.client__body,
.request__body {
    height: calc(100vh - 40px);
    padding: 28px 38px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    position: relative;
}

.client__body::-webkit-scrollbar,
.request__body::-webkit-scrollbar {
    display: none;
}

.client__body-item {
    width: 100%;
    height: 100%;
    display: none;
}

.client__body-item._active {
    display: block;
}

.client__body-loading {
    top: 0;
    right: 0;
    bottom: 0;
    left: 400px;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease;
    z-index: 2;
}

.client__body-loading div {
    --s: 60px;
    width: var(--s);
    height: var(--s);
    -webkit-mask-image: url(/img/lk-bankrupt/audio-loader.svg);
    mask-image: url(/img/lk-bankrupt/audio-loader.svg);
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--color-primary);
}

.client__body._loading .client__body-loading,
.request__body._loading .client__body-loading {
    opacity: 1;
    visibility: visible;
}

.client_body-plug {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    line-height: 1.15;
    background-color: #fff;
    position: absolute;
    z-index: 1;
}

.client_body-plug._inactive {
    display: none;
}

.client_body-plug__inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client_body-plug__icon  {
    width: 90%;
    max-width: 728px;
    margin-top: auto;
    margin-bottom: 30px;
}

.client_body-plug__title,
.client_body-plug__text {
    text-align: center;
    max-width: 60%;
}

.client_body-plug__title {
    margin-bottom: 14px;
    font-size: clamp(1.25rem, 0.982rem + 0.714vw, 1.625rem);
    font-weight: 600;
}

.client_body-plug__text {
    margin-bottom: auto;
    font-size: 16px;
    text-align: center;
}

.client__forms {
}

.client__form {
    display: none;
}

.client__form._active {
    display: block;
}

.client__form-clue,
.client_form-inputbox__hint-inner {
    margin-bottom: 20px;
    padding: 14px 16px;
    color: rgba(51, 51, 51, 0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.client__form-clue a,
.client_form-inputbox__hint-inner a,
.client_form-inputbox .client__form-clue a,
.client_form-inputbox .client_form-inputbox__hint-inner a {
    margin-bottom: 0;
    color: inherit;
    display: inline-block;
}

.client__form-clue a:visited,
.client_form-inputbox__hint-inner a:visited,
.client_form-inputbox .client__form-clue a:visited,
.client_form-inputbox .client_form-inputbox__hint-inner a:visited {
    color: inherit;
}

.client__form-clue._green,
.client__form-clue._readonly {
    /*background-color: rgba(84, 178, 104, 0.15);*/
    background-color: #e5f3e8;
}

.client__form-clue._yellow {
    /*background-color: rgba(252, 191, 71, 0.15);*/
    background-color: #fff5e3;
}

.client__form-clue._red {
    /*background-color: rgba(229, 64, 71, 0.15);*/
    background-color: #fbe2e3;
}

.client__form-clue._error {
    /*background-color: rgba(229, 64, 71, 0.15);*/
    background-color: #fbe2e3;
}

.client__form-clue div,
.client_template-form__error-icon {
    --s: 24px;
    width: var(--s);
    height: var(--s);
    margin-right: 16px;
    background-color: #E54047;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(/img/lk-bankrupt/icon-info.svg);
    mask-image: url(/img/lk-bankrupt/icon-info.svg);
    -webkit-mask-position: center;
    mask-position: center;
    flex-shrink: 0;
    display: none;
}

.client__form-clue._error div {
    display: block;
}

.client__form-clue._readonly div {
    display: block;
    background-color: #BBBBBB;
    -webkit-mask-image: url(/img/lk-bankrupt/icon-lock.svg);
    mask-image: url(/img/lk-bankrupt/icon-lock.svg);
}

.client_form-inputbox {
    position: relative;
}

.client_form-inputbox:not(:last-child),
.client__form-selectbox:not(:last-child),
.client_form-inputbox__files:not(:last-child) {
    padding-bottom: 20px;
}

.client_form-inputbox:last-child,
.client__form-selectbox:last-child {
    padding-bottom: 28px;
}

.client__form > .client_form-inputbox__files:last-child {
    padding-bottom: 28px;
}

.client__form._readonly .client_form-inputbox:not(:last-child),
.client__form._readonly .client__form-selectbox:not(:last-child) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #E9E9EE;
}

.client_form-inputbox._error {
}

.client_form-inputbox__title,
.client_form-inputbox__text {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.15;
    position: relative;
    transition: color .2s ease;
}

.client_form-inputbox__title {
    display: flex;
    /*align-items: center;*/
    word-break: break-word;
}

.client_form-inputbox__value {
    font-size: 16px;
    line-height: 1.15;
    color: rgba(51, 51, 51, 0.5);
}

.client_form-inputbox__value + .client_form-inputbox__value {
    margin-top: 10px;
}

.client_form-inputbox > .client_form-inputbox__title > span {
    /*padding-right: 10px;*/
}

.client_form-inputbox > .client_form-inputbox__title > span span,
.client_form-inputbox__text span {
    margin-left: -10px;
    display: none;
}

.client_form-inputbox._required > .client_form-inputbox__title > span span,
.client_form-inputbox__text._required span {
    color: #E54047;
    /*position: absolute;*/
    display: contents;
}

/*.client_form-inputbox._required > .client_form-inputbox__title span::after {*/
/*    color: #E54047;*/
/*    content: ' *';*/
/*    position: absolute;*/
/*}*/

.client_form-inputbox__hint {
    --s: 24px;
    width: var(--s);
    height: var(--s);
    margin-left: 16px;
    background-color: var(--color-primary);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(/img/lk-bankrupt/icon-info.svg);
    mask-image: url(/img/lk-bankrupt/icon-info.svg);
    -webkit-mask-position: center;
    mask-position: center;
    transform: translateY(-10%) rotate(180deg);
    flex-shrink: 0;
    cursor: pointer;
}

.client_form-inputbox__hint-inner {
    width: 102%;
    transform: translateX(-1%);
    bottom: calc(100% - 10px);
    margin-bottom: 12px;
    /*background-color: #F7F8FA;*/
    background-color: var(--color-primary);
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease .2s;
    position: absolute;
    z-index: 1;
}

.client_form-inputbox__hint-inner._bottom {
    bottom: unset;
    top: 100%;
}

.client_form-inputbox__hint:hover+.client_form-inputbox__hint-inner {
    bottom: 100%;
    opacity: 1;
    visibility: visible;
}

.client_form-inputbox__hint:hover+.client_form-inputbox__hint-inner._bottom {
    bottom: unset;
    top: calc(100% + 22px);
    opacity: 1;
    visibility: visible;
}

.client_form-inputbox__delete {
    top: 0;
    right: 0;
    color: #999999;
    transition: color .2s ease;
    position: absolute;
    cursor: pointer;
    display: none;
}

.client__form-box:not(:only-child) .client_form-inputbox__delete {
    display: block;
}

.client_form-inputbox__delete:hover {
    color: #E54047;
}

.client_form-inputbox__delete._loading {
    color: #E54047;
    background-color: #E54047;
    -webkit-mask-image: url(/img/lk-bankrupt/audio-loader.svg);
    mask-image: url(/img/lk-bankrupt/audio-loader.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.client_form-inputbox__input {
    width: 100%;
    margin-bottom: 6px;
    padding: 16px 24px;
    border: 1px solid #E9E9EE;
    border-radius: 8px;
    background-color: transparent;
    font-family: "Gilroy", sans-serif;
    /*font-size: 16px;*/
    line-height: 1.15;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    transition: all .2s ease;
}

.client_form-inputbox__date {
    width: fit-content;
    position: relative;
}

.client_form-inputbox__date::after {
    --s: 24px;
    width: var(--s);
    height: var(--s);
    top: calc(50% - 4px);
    right: 20px;
    transform: translateY(-50%);
    background-color: #C4C4C6;
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    -webkit-mask-image: url(/img/lk-bankrupt/icon-calendar.svg);
    mask-image: url(/img/lk-bankrupt/icon-calendar.svg);
    position: absolute;
    content: '';
}

.client_form-inputbox__input[type=date],
.client_form-inputbox__input._safari-date {
    width: 200px;
}

.client_form-inputbox__input[onclick] {
    cursor: pointer;
    transition: none;
}

.client_form-inputbox__input::placeholder {
    color: inherit;
    opacity: 0.5;
}

textarea.client_form-inputbox__input {
    resize: vertical;
}

.client_form-inputbox._error .client_form-inputbox__input {
    border: 1px solid rgba(229, 64, 71, 0.15);
    color: rgba(229, 64, 71, 0.75);
}

.client_form-inputbox__error {
    font-size: 16px;
    line-height: 1.15;
    color: transparent;
}

.client_form-inputbox._error .client_form-inputbox__error,
.client__form-box._error .client_form-inputbox__error,
.client_form-inputbox__file._error .client_form-inputbox__error,
.client_form-inputbox__file.need_allert .client_form-inputbox__error{
    margin-top: 10px;
    color: rgba(229, 64, 71, 0.75);
    transition: color .2s ease;
}

.client_form-inputbox__label {
    width: fit-content;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.client_form-inputbox__label:not(:last-child) {
    margin-bottom: 12px;
}

.client_form-inputbox__label input[type=radio],
.client_form-inputbox__label input[type=checkbox] {
    --s: 24px;
    width: var(--s);
    height: var(--s);
    margin: unset;
    margin-right: 12px;
    border: 1px solid #EAEAEA;
    background-color: #fff;
    background-image: url("/img/lk-bankrupt/checkmark.svg");
    background-position: center;
    background-size: 70%;
    background-repeat: no-repeat;
    flex-shrink: 0;
    appearance: none;
    outline: none;
    transition: all .2s;
    cursor: pointer;
}

.client_form-inputbox._error .client_form-inputbox__label input[type=radio],
.client_form-inputbox._error .client_form-inputbox__label input[type=checkbox] {
    border-color: rgba(229, 64, 71, 0.75);
}

.client_form-inputbox__label input[type=radio] {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.client_form-inputbox__label input[type=checkbox] {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.client_form-inputbox__label input[type=radio]:checked,
.client_form-inputbox__label input[type=checkbox]:checked {
    background-color: #54B268;
    border: 1px solid #54B268;
}

.client_form-inputbox__label span {
    color: rgba(51, 51, 51, 0.5);
    transition: all .2s ease;
}

.client_form-inputbox._error .client_form-inputbox__label span {
    color: rgba(229, 64, 71, 0.75);
}

.client_form-inputbox__label input:checked + span {
    color: #333;
}

.client_form-inputbox__files {
    display: grid;
    grid-template-columns: repeat(auto-fill, 232px);
    gap: 20px;
}

.client_form-inputbox__filebox {
    width: 232px;
    height: 170px;
    margin-bottom: 10px;
    border-radius: 10px;
    position: relative;
}

.client_form-inputbox__filebox-label {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #FBFBFC;
    border: 1px solid #F7F8FA;
    border-radius: 10px;
    position: absolute;
    display: block;
    cursor: pointer;
    transition: background-color .2s ease;
}

.client_form-inputbox__filebox-label[data-type="file"]._loaded {
    background-color: #F5F8FF;
}

/*.client_form-inputbox__file._error .client_form-inputbox__filebox-label._loaded {*/
.client_form-inputbox__file._error .client_form-inputbox__filebox-label,
.client_form-inputbox__file.need_allert .client_form-inputbox__filebox-label {
    background-color: #FEF6F7;
    border: 1px solid rgba(229, 64, 71, 0.15);
}

.client_form-inputbox__filebox-label::before {
    --s: 32px;
    width: var(--s);
    height: var(--s);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #C4C4C6;
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    -webkit-mask-image: url(/img/lk-bankrupt/icon-upload-plug.svg);
    mask-image: url(/img/lk-bankrupt/icon-upload-plug.svg);
    position: absolute;
    content: '';
}

.client_form-inputbox__filebox-label::after {
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    line-height: 1.15;
    color: #C4C4C6;
    position: absolute;
    /*z-index: -1;*/
}

.client_form-inputbox__filebox-label::after {
    /*content: 'Загрузить файл';*/
    content: 'Загрузить файл в формате .pdf';
    text-align: center;

}

.client_form-inputbox__file._error .client_form-inputbox__filebox-label::after,
.client_form-inputbox__file.need_allert .client_form-inputbox__filebox-label::after {
    color: #F6BABD;
}

.client_form-inputbox__filebox-label._loaded:hover,
.client_form-inputbox__file._error .client_form-inputbox__filebox-label._loaded:hover,
.client_form-inputbox__file.need_allert .client_form-inputbox__filebox-label._loaded:hover{
    background-color: rgba(51, 51, 51, 0.8);
}

.client_form-inputbox__filebox-label._loaded::before,
.client_form-inputbox__filebox-label._loaded::after {
    opacity: 0;
    transition: opacity .2s ease;
    z-index: 1;
}

.client_form-inputbox__filebox-label._loaded::before {
    background-color: #fff;
}

/*.client_form-inputbox__file._error .client_form-inputbox__filebox-label._loaded::before {*/
.client_form-inputbox__file._error .client_form-inputbox__filebox-label::before,
.client_form-inputbox__file.need_allert .client_form-inputbox__filebox-label::before {
    background-color: #F6BABD;
}

.client_form-inputbox__filebox-label._loaded::after {
    color: #fff;
    content: 'Изменить файл';
}

.client__form._readonly .client_form-inputbox__filebox-label._loaded::after {
    display: none;
}

.client_form-inputbox__file._readonly .client_form-inputbox__filebox-label._loaded::after {
    content: 'Скачать';
}

.client_form-inputbox__filebox-label._loaded:hover::before,
.client_form-inputbox__filebox-label._loaded:hover::after {
    opacity: 1;
}

.client_form-inputbox__filebox input {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0;
    cursor: pointer;
    position: absolute;
    z-index: 1;
}

.client_form-inputbox__filebox img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
    position: relative;
    transition: filter .2s ease;
}

/*.client_form-inputbox__filebox-label._loaded img {*/
/*    z-index: -1;*/
/*}*/

.client_form-inputbox__filebox-label:hover img {
    filter: brightness(0.5);
}

.client_form-inputbox .client_form-inputbox__filebox-link,
.client__form-selectbox .client_form-inputbox__filebox-link,
.client__form._readonly .client_form-inputbox__filebox-link {
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    position: absolute;
    display: none;
}

.client__form._readonly .client_form-inputbox .client_form-inputbox__filebox-link,
.client__form._readonly .client__form-selectbox .client_form-inputbox__filebox-link,
.client__form._readonly .client_form-inputbox__filebox-link {
    top: 60%;
}

.client_form-inputbox__filebox-label._loaded .client_form-inputbox__filebox-link {
    font-size:16px;
    color: #fff;
    display: block;
    z-index: 1;
    opacity: 0;
    transition: opacity .2s ease;
}

.client_form-inputbox__file._error .client_form-inputbox__filebox-label._loaded .client_form-inputbox__filebox-link,
.client_form-inputbox__file.need_allert .client_form-inputbox__filebox-label._loaded .client_form-inputbox__filebox-link {
    color: #F6BABD;
}

.client_form-inputbox__filebox-label._loaded:hover .client_form-inputbox__filebox-link {
    opacity: 1;
}

.client_form-inputbox__filebox-preview {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: var(--color-primary-opacity);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    display: flex;
    transition: background-color .2s ease;
}

.client_form-inputbox__filebox-label:hover .client_form-inputbox__filebox-preview {
    background-color: transparent;
}

.client_form-inputbox__filebox-preview div {
    --s: 32px;
    width: var(--s);
    height: var(--s);
    margin-bottom: 8px;
    background-color: var(--color-primary);
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    -webkit-mask-image: url(/img/lk-bankrupt/icon-circke-checkmark.svg);
    mask-image: url(/img/lk-bankrupt/icon-circke-checkmark.svg);
    flex-shrink: 0;
    transition: background-color .2s ease;
}

.client_form-inputbox__filebox-label:hover .client_form-inputbox__filebox-preview div {
    background-color: #42454B;
}

.client_form-inputbox__filebox-preview p {
    font-weight: 500;
    font-size: 14px;
    color: var(--color-primary);
    transition: color .2s ease;
}

.client_form-inputbox__filebox-label._loaded:hover .client_form-inputbox__filebox-preview p {
    color: #42454B;
}

.client_form-inputbox__filebox-delete {
    --s: 30px;
    width: var(--s);
    height: var(--s);
    top: 0;
    right: 0;
    background-color: transparent;
    -webkit-mask-size: 50%;
    mask-size: 50%;
    -webkit-mask-image: url(/img/lk-bankrupt/icon-close.svg);
    mask-image: url(/img/lk-bankrupt/icon-close.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    position: absolute;
    cursor: pointer;
    transition: background-color .2s ease;
    z-index: 1;
}

.client_form-inputbox__filebox-label._loaded:hover .client_form-inputbox__filebox-delete,
.client_form-inputbox__filebox:hover .client_form-inputbox__filebox-delete{
    background-color: #fff;
}

.client_form-inputbox a,
.client_form-inputbox a:visited {
    margin-bottom: 10px;
    color: rgba(51, 51, 51, 0.5);
    display: block;
}

.inputbox-select {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.15;
    position: relative;
}

.inputbox-select._active .client_form-inputbox__input {
    border-radius: 10px 10px 0 0;
}

.inputbox-select._active .inputbox-select__body {
    display: block;
}

.client_form-inputbox__input[name=creditor] {
    color: rgba(51, 51, 51, 0.5);
    cursor: pointer;
}

.client_form-inputbox__link {
    font-size: 16px;
    line-height: 1.15;
    text-decoration: underline;
    color: rgba(51, 51, 51, 0.5);
}

.inputbox-select__header-inner {
    position: relative;
}

.inputbox-select__icon {
    --s: 24px;
    width: var(--s);
    height: var(--s);
    top: 50%;
    right: 20px;
    background-image: url(/img/lk-bankrupt/icon-arrow.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: translateY(-50%);
    position: absolute;
    transition: all .2s ease;
    z-index: -1;
}

.inputbox-select._active .inputbox-select__icon {
    transform: translateY(-50%) rotate(180deg);
}

.inputbox-select__body {
    width: 100%;
    max-height: 300px;
    top: 52px;
    border-radius: 0 0 10px 10px;
    border: 1px solid #EAEAEA;
    border-top: none;
    background-color: #fff;
    position: absolute;
    overflow-y: auto;
    scrollbar-width: none;
    display: none;
    z-index: 2;
}

.inputbox-select__body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.inputbox-select__item {
    height: 40px;
    padding: 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}

.inputbox-select__item._hide {
    display: none;
}

.client__form-selectbox {
    counter-reset: box-counter;
}

.client__form-select {
    padding-left: 30px;
    border-left: 4px solid var(--color-primary-opacity);
    border-radius: 12px;
}

.client__form-select + .client__form-select {
    margin-top: 16px;
}

.client__form-box {
    position: relative;
}

.client__form-counter {
    margin-bottom: 20px;
    padding-top: 6px;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
}

.client__form-selectbox .client_form-inputbox__input {
    margin-bottom: 0;
}

.client__form-counter {
    counter-increment: box-counter;
}

.client__form-counter::after {
    content: ' № ' counter(box-counter);
}

.client__form-add {
    margin-top: 18px;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 1.15;
    color: #999999;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.client__form-add div {
    --s: 24px;
    width: var(--s);
    height: var(--s);
    background-color: #999999;
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    -webkit-mask-image: url(/img/lk-bankrupt/icon-plus.svg);
    mask-image: url(/img/lk-bankrupt/icon-plus.svg);
    flex-shrink: 0;
}

.client__form-add._loading div {
    -webkit-mask-image: url(/img/lk-bankrupt/audio-loader.svg);
    mask-image: url(/img/lk-bankrupt/audio-loader.svg);
}

.client__form-summ {
    padding: 18px 20px;
    font-size: 18px;
    /*font-size: 16px;*/
    line-height: 1.15;
    background-color: #F1F3F9;
    border-radius: 10px;
}

.client__form-summ span,
.client__form-summ small {
    font-weight: 500;
    font-size: 16px;
}

.client__form-summ span {
    margin-left: 28px;
}















.client__history-item:not(:last-child) {
    margin-bottom: 30px;
}

.client__history-title {
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.15;
}

.client__history-title span {
    margin-left: 10px;
    font-weight: 400;
    color: rgba(51, 51, 51, 0.5);
}

.client__history-inner {
}

.client__history-status {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client__history-status:not(:last-child) {
    margin-bottom: 26px;
    position: relative;
}

.client__history-status:last-child {
    padding-bottom: 28px;
}

.client__history-status:not(:last-child):before {
    left: 17px;
    top: 36px;
    width: 1px;
    height: 100%;
    background-color: #EEEFF1;
    position: absolute;
    content: '';
}

.client__history-icon {
    --s: 36px;
    width: var(--s);
    height: var(--s);
    margin-right: 24px;
    background-color: #fff;
    border: 1px solid #EEEFF1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /*align-self: start;*/
    position: relative;
}

.client__history-icon span {
    width: var(--s);
    height: var(--s);
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    flex-shrink: 0;
}

.client__history-info {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.client__history-nomination {
    margin-right: 20px;
    font-size: 16px;
    line-height: 1.15;
    flex-basis: 20%;
}

.client__history-textbox {
    flex-grow: 1;
    flex-basis: 50%;
}

.client__history-docs {
    margin-left: 20px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: rgba(51, 51, 51, 0.5);
    text-align: right;
    flex-basis: 30%;
}

.client__history-docs p {
    display: flex;
    align-items: center;
    justify-content: end;
}

.client__history-docs span {
    --s: 24px;
    width: var(--s);
    height: var(--s);
    margin-left: 10px;
    background-color: var(--color-primary);
    -webkit-mask-image: url(/img/lk-bankrupt/icon-file-download.svg);
    mask-image: url(/img/lk-bankrupt/icon-file-download.svg);
    -webkit-mask-size: var(--s);
    mask-size: var(--s);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    flex-shrink: 0;
    display: inline-block;
    cursor: pointer;
    position: relative;
}

.client__history-docs small {
    display: none;
}

.client__history-status:not([data-status="kad"]) .client__history-icon span {
    --s: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.client__history-status[data-status="new"] .client__history-icon span {
    --s: 100%;
    background-color: #EAEAEA;
    -webkit-mask-image: url(/img/lk-bankrupt/icon-init.svg);
    mask-image: url(/img/lk-bankrupt/icon-init.svg);
}

.client__history-status[data-status="created"] .client__history-icon span {
    --s: 80%;
    background-color: #EAEAEA;
    -webkit-mask-image: url(/img/lk-bankrupt/icon-created.svg);
    mask-image: url(/img/lk-bankrupt/icon-created.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.client__history-status[data-status="kad"] .client__history-icon span {
    --s: 70%;
    background-color: #EAEAEA;
    -webkit-mask-image: url(/img/lk-bankrupt/icon-kad.svg);
    mask-image: url(/img/lk-bankrupt/icon-kad.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.client__history-status[data-status="on-check"] .client__history-icon span {
    background-color: #295CC9;
}

.client__history-status[data-status="need-info"] .client__history-icon span {
    background-color: #FCBF47;
}

.client__history-status[data-status="before-court"] .client__history-icon span {
    background-color: #FC9E47;
}

.client__history-status[data-status="in-court"] .client__history-icon span {
    background-color: #FC9E47;
}

.client__history-status[data-status="bankrupt"] .client__history-icon span {
    background-color: #54B268;
}

.client__history-status[data-status="archive"] .client__history-icon span {
    background-color: #999999;
}

.client__history-text {
    font-size: 16px;
    line-height: 1.15;
    flex-grow: 1;
}

.client__history-text span {
    font-weight: 500;
}

.client__history-time {
    margin-left: 24px;
    font-size: 14px;
    line-height: 1.15;
    color: rgba(51, 51, 51, 0.5);
    flex-shrink: 0;
}























@media (max-width: 767px) {
    body {
        min-height: 100dvh;
    }

    .popup__wrapper,
    .header,
    .background {
        display: none;
    }

    ._container {
        overflow: hidden;
    }

    .bk-license,
    .bk-menu {
        width: 100vw;
        right: 0;
        left: 0;
        opacity: 1;
        overscroll-behavior: none;
    }

    .bk-license {
        top: 80px;
        bottom: 0;
        /*padding: 0 24px 24px;*/
        padding: 30px 24px 24px;
        -webkit-border-radius: 30px 30px 0 0;
        -moz-border-radius: 30px 30px 0 0;
        border-radius: 30px 30px 0 0;
        transform: translate(0, 100%);
    }

    .bk-menu {
        height: 85vh;
        top: 0;
        bottom: unset;
        padding: 0 14px 50px;
        border-radius: 0 0 20px 20px;
        transform: translate(0, -100%);
    }

    .bk-license._active,
    .bk-menu._active {
        transform: translate(0, 0);
    }

    .bk-menu__inner {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .bk-license__body {
        padding: 0;
    }

    .bk-menu__lessons {
        flex-grow: 1;
        overflow: auto;
    }

    .bk-license__close,
    .bk-menu__close {
        display: block;
        width: 100%;
        height: 30px;
        /*position: relative;*/
        position: fixed;
        left: 0;
    }

    .bk-license__close {
        top: 0;
    }

    .bk-menu__close {
        bottom: 0;
        height: 50px;
    }

    .bk-license__close::before,
    .bk-menu__close::before {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100px;
        height: 6px;
        background-color: var(--text);
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        position: absolute;
        content: '';
    }

    .bk-license__title p {
        padding: 24px 14px;
    }

    .bk-license__header {
        margin-bottom: 30px;
    }

    .bk-auth,
    .bk-auth__loader {
        right: unset;
        bottom: unset;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
    }

    .bk-auth__decor {
        transform: translateX(0);
    }

    .bk-auth._loaded .bk-auth__decor {
        right: 0;
        transform: translateX(-100%);
    }

    .bk-auth__inner {
        height: 100vh;
        height: 100dvh;
        display: block;
    }

    .bk-auth__info {
        bottom: 40px;
        margin-bottom: 0;
        transition: all 0.7s ease 1.5s;
        position: absolute;
    }

    .bk-auth__title,
    .bk-auth__text,
    .bk-auth__small {
        opacity: 1;
        transform: unset;
    }

    .bk-auth._loaded .bk-auth__title {
        animation: unset;
    }

    .bk-auth._loaded .bk-auth__text {
        animation: unset;
    }

    .bk-auth._loaded .bk-auth__small {
        animation: unset;
    }

    .bk-auth._loaded .bk-auth__info {
        transform: translateX(-100%);
    }

    .bk-auth__title {
        margin-bottom: 38px;
        font-size: 30px;
    }

    .bk-auth__text {
        margin-bottom: 40px;
        font-size: 24px;
    }

    .bk-auth__form {
        transform: translateX(100%);
    }

    .bk-auth__form {
        height: 100%;
        padding: 0;
    }

    .bk-auth__logo {
        margin-top: 24px;
    }

    .bk-auth__form-title {
        margin-bottom: 28px;
    }

    .bk-auth__button {
        margin-bottom: 10px;
    }

    .bk-auth__link {
        margin-top: auto;
        margin-bottom: 10px;
    }

    .bk-main .lesson {
        padding: 0;
    }







    /* ======= */
    /* CONTENT */
    /* ======= */
    .client_menu-form._active,
    .client_menu-template._active,
    .request__menu-item._active {
        background-color: unset;
        border-left: 7px solid transparent;
    }
    .client {
        top: 0;
        right: 0;
        bottom: 0;
        width: 200vw;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

    .client._active {
        transform: translateX(50%);
    }

    .client._selected {
        transform: translateX(0);
    }

    .client__header {
        display: flex;
    }

    .client._selected .client__header {
        transform: translateX(100%);
    }

    .client__inner {
        grid-template-columns: 1fr 1fr;
    }

    .client__aside {
        padding: 90px 20px 20px;
        background-color: #fff;
    }

    .client__name {
        display: none;
    }

    .client_menu-form__title {
        padding-right: 50px;
    }

    .client__body {
        height: 100%;
        padding: 90px 20px 20px;
    }

    .bk-main {
        padding-top: 82px;
        padding-bottom: 80px;
    }

    .bk-main__plug {
        position: relative;
    }

    .bk-header {
        padding: 0;
    }

    .bk-header__lawyer-avatar {
        --s: 40px;
        font-size: 16px;
    }

    .bk-header__lawyer-name {
        font-weight: 400;
    }

    .bk-header__nav {
        display: none;
    }

    .bk-header__menu-icon {
        display: flex;
    }

    .bk-main__title {
        margin-bottom: 10px;
    }

    .bk-main__steps {
        margin: 0 -15px 10px;
        padding: 0 15px;
        overflow: scroll;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .bk-main__steps::-webkit-scrollbar {
        display: none;
    }

    .bk-main__step {
        padding: 30px 20px;
        font-size: 18px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }

    .bk-main__step._from {
        margin-right: 10px;
    }

    .bk-main__step._from::after {
        height: 94%;
        right: -24px;
    }

    .bk-main__step._to {
        padding-left: 40px;
    }

    .bk-main__step._to::before {
        height: 94%;
        left: -27px;
    }

    .bk-main__step-text {
        position: relative;
        z-index: 2;
    }

    .bk-main__timeline {
        padding: 20px;
    }

    .client__body-loading {
        left: 100vw;
    }

    .client__history-icon {
        align-self: start;
    }

    .client__history-info {
        display: block;
    }

    .client__history-textbox {
        margin-bottom: 10px;
    }

    .client__history-time {
        margin-left: 0;
    }

    .client__history-nomination {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .client__history-text + .client__history-text {
        margin-top: 10px;
    }

    .client__history-docs {
        margin-left: 0;
        text-align: left;
    }

    .client__history-docs p {
        display: block;
    }

    .client__history-docs p a {
        margin-top: 10px;
        font-weight: 500;
        color: var(--color-primary);
        display: flex;
        align-items: center;
    }

    .client__history-docs span {
        margin-left: 0;
        margin-right: 10px;
    }

    .client__history-docs small {
        display: block;
    }

    .client__history-status:last-child {
        padding-bottom: 0;
    }

    .client_form-inputbox__files {
        grid-template-columns: unset;
    }

    .client_form-inputbox__filebox {
        width: 100%;
        max-width: 380px;
        height: unset;
        padding-top: 61%;
    }
}