﻿@charset "UTF-8";
/*Обнуление*/
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600;700;800;900&display=swap");

* {
    padding: 0;
    margin: 0;
    border: 0;
}

    *,
    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

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

button {
    cursor: pointer;
}

    button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

a,
a:visited {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

/* Базовый цвет ссылок всего сайта (перенесён из footer.css, где он стоял
   глобально и вне зоны ответственности подвала). */
a {
    color: #0E8C1A;
}

/* Глобально outline снят выше — возвращаем видимый фокус для клавиатуры. */
:focus-visible {
    outline: 2px solid #0E8C1A;
    outline-offset: 2px;
}

.header :focus-visible,
.footer :focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

body {
    font-size: 14px;
}

use {
    width: 100%;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

/*------------------ПОДКЛЮЧЕНИЕ ШРИФТОВ---------------------------------------------*/
/*------------------ТЕХНИЧЕСКИЕ КЛАССЫ----------------------------------------------*/

/* Высота фиксированной шапки. От неё считаются смещение .content, отступ
   бургер-меню и высота элементов шапки — держим одно значение на брейкпоинт. */
:root {
    --header-h: 80px;
}

@media (max-width: 1300px) {
    :root {
        --header-h: 60px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-h: 48px;
    }
}

._container {
    /*position: relative;*/
    max-width: 1880px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
}

._ibg {
    position: relative;
}

    ._ibg img {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        -o-object-fit: cover;
        object-fit: cover;
    }

/*---------------------------ГЛАВНЫЕ КЛАССЫ-----------------------------------------*/
body {
    color: #373737;
    font-family: "Inter Tight", sans-serif;
    font-size: 15px;
    line-height: 22px;
    background-color: #efeff2;
}

/* Блокирует прокрутку фона под оверлеями. Вешается из header.js (бургер шапки)
   и script.js (сайдбар заявок); снимать обязательно там же, где оверлей закрывается. */
body.lock {
    overflow: hidden;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
}

.header {
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    position: fixed;
}

.main {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    width: 100%;
}
p.MsoNormal {
    line-height: 1.5 !important;
    margin-bottom: 0px !important;
    font-size: 12.5pt;
}
p.MsoListParagraph {
    margin-bottom: 0px !important;
    font-size: 12.5pt;
}
#licence_agreement p {
    line-height: 1.5 !important;
    font-family: 'Inter Tight';
    font-size: 12.5pt;
    margin-bottom:0px !important;
}
/*---------------------------ОСТАЛЬНЫЕ КЛАССЫ---------------------------------------*/
/*---------------------------HEADER-------------------------------------------------*/
.header__burger {
    display: none;
    position: relative;
    width: 30px;
    height: 20px;
    padding: 0;
    background: none;
    cursor: pointer;
    z-index: 99;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .header__burger::before {
        content: "";
        background-color: #fff;
        width: 100%;
        height: 2px;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header__burger::after {
        content: "";
        background-color: #fff;
        width: 100%;
        height: 2px;
        position: absolute;
        bottom: 2px;
        right: 0;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header__burger span {
        background-color: #fff;
        width: 100%;
        height: 2px;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header__burger.active span {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
    }

    .header__burger.active::after {
        width: 100%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        bottom: 9px;
    }

    .header__burger.active::before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 9px;
    }

.header {
    background: #333;
    height: var(--header-h);
}

.header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    /* .header__right спозиционирована абсолютно у правого края экрана и места
       в ряду не занимает — резервируем его, чтобы не перекрывала контакты.
       Только на десктопе: в адаптиве справа стоит бургер, и отступ отрывал бы
       его от края. */
    @media (min-width: 993px) {
        .header__block--admin {
            padding-right: 36px;
        }
    }

.header__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 40px;
}

.header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin-bottom: 0;
}

.header__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: var(--header-h);
    padding: 0px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.36px;
    /* Рамка задана всегда, меняется только цвет — иначе текст прыгает на hover. */
    border-bottom: 3px solid transparent;
    -webkit-transition: color 0.25s, border-color 0.25s;
    transition: color 0.25s, border-color 0.25s;
}

    .header__link:hover {
        border-bottom-color: #0E8C1A;
        color: #0E8C1A;
    }

.header__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: var(--header-h);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
    /* Правая половина шапки должна уметь ужиматься: без этого min-width:auto
       держал её по ширине содержимого, и ряд вылезал за край контейнера. */
    min-width: 0;
}

.mobile {
    display: none !important;
}

.header__btn {
    margin-right: 10px;
    border-radius: 50px;
    background: #0E8C1A;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-width: 150px;
    padding: 10px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    height: 40px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: background-color 0.25s, -webkit-transform 0.1s;
    transition: background-color 0.25s, transform 0.1s;
}

    .header__btn:hover {
        background: #0a6e14;
        color: #fff;
    }

    .header__btn:active {
        transform: scale(0.98);
    }

.capital-container {
    background: linear-gradient(90deg, #ffda65 0%, #f29251 100%);
    border-radius: 12px;
    padding: 4px 20px;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 12px;
    user-select: none;
    max-width: 320px;
    text-align: center;
    /* Флекс-колонка вместо фиксированной высоты: две строки текста
       больше не выпирают за границы бейджа. */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    min-height: 40px;
    line-height: 1.25;
    min-width: 150px;
    margin-right: 16px;
}

.capital-container__value {
    font-size: 13px;
}

.header__notification {
    position: relative;
    position: relative;
    padding: 0 22px;
    margin: 0 24px;
    margin-right: 0;
    border-left: 1px solid #404040;
    border-right: 1px solid #404040;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    cursor: pointer;
}

    .header__notification svg {
        cursor: pointer;
    }

    .header__notification span {
        top: 25%;
        right: 20%;
        position: absolute;
        z-index: 10;
        border-radius: 50px;
        background: #d25320;
        width: 21px;
        height: 17px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #fff;
        font-size: 13px;
        font-weight: 900;
        line-height: normal;
        letter-spacing: 0.65px;
    }

    .header__notification svg path {
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .header__notification:hover {
        background-color: #fff;
    }

        .header__notification:hover svg path {
            stroke: #333;
        }

    .header__notification.active {
        background-color: #fff;
    }

        .header__notification.active svg path {
            stroke: #333;
        }

.header__profile {
    position: relative;
    padding-left: 24px;
    height: var(--header-h);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 20px;
    margin-right: 24px;
    cursor: pointer;
    border-right: 1px solid #404040;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    /* min-width:auto у флекс-элемента не даёт сжаться меньше содержимого — длинный
       e-mail распирал ряд и выталкивал контакты за край шапки. */
    min-width: 0;
}

    /* Имя пользователя усекается многоточием: под менеджером адрес длиннее,
       и на 1440 ряд переставал помещаться. Полный текст остаётся в title. */
    .header__profile > .header__profile-name {
        /* Не 0: иначе на узком десктопе (≈1100px, бургер включается только с 992)
           имя сжималось до нуля и от профиля оставались две иконки. */
        min-width: 80px;
        width: auto;
        height: auto;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header__profile > .header__profile-arrow {
        width: 18px;
        cursor: pointer;
        height: 18px;
    }

        .header__profile > .header__profile-arrow svg {
            margin: 0;
            margin-left: 4px;
        }

    .header__profile svg {
        margin-right: 10px;
    }

        .header__profile svg path {
            -webkit-transition: 0.3s;
            transition: 0.3s;
        }

    .header__profile:hover {
        background-color: #fff;
        color: #333;
    }

        .header__profile:hover svg path {
            stroke: #333;
        }

    .header__profile.active {
        background-color: #fff;
        color: #333;
    }

        .header__profile.active svg path {
            stroke: #333;
        }

.header__contacts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 24px;
    gap: 12px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    /* Тоже уступает место на узком десктопе, чтобы вся усадка не ложилась на имя */
    min-width: 0;
}

    .header__contacts span a {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header__contacts span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .header__contacts a {
        color: rgba(255, 255, 255, 0.75);
        font-size: 13px;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.26px;
        -webkit-transition: color 0.25s;
        transition: color 0.25s;
    }

        .header__contacts a:hover {
            color: #fff;
        }

.header__list.lock {
    display: none;
}

.header-notification__block {
    top: 100%;
    z-index: 15;
    left: 0;
    width: 420px;
    position: absolute;
    border-radius: 0px 15px 15px 15px;
    background: #fff;
    -webkit-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.1), 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.1), 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

    .header-notification__block.active {
        opacity: 1;
        visibility: visible;
    }

    .header-notification__block svg path {
        stroke: #0E8C1A !important;
    }

.header__right {
    right: 0px;
    position: absolute;
}

.header__go_to_admin {
    height: 40px;
    width: 30px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #0E8C1A;
    color: #FFFFFF;
    padding: 10px;
    text-align: center;
}

@media (max-width: 992px) {
    .header__right {
        right: 120px;
    }

    .header__go_to_admin {
        border-top-right-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}


/* Подложка под выпадающими блоками шапки. Была absolute размером 300vw × 300vh:
   внутри бургер-меню (оно fixed + overflow-y:auto) это раздувало область прокрутки
   втрое по обеим осям — меню скроллилось и показывало обе полосы прокрутки.
   Элемент есть только у авторизованных, поэтому ломалось только под логином.
   fixed + inset:0 закрывает ровно вьюпорт и в переполнение предка не попадает. */
.shadow-transperet {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 14;
}

    .shadow-transperet.active {
        opacity: 1;
        visibility: visible;
    }

.header-notification__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    color: #444;
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
}

    .header-notification__item:not(:last-child) {
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #ececf0;
    }

    .header-notification__item svg {
        -webkit-transition: 0.3s;
        transition: 0.3s;
        position: relative;
        min-width: 20px;
        right: 0;
    }

    .header-notification__item span {
        position: static;
        background-color: rgba(0, 0, 0, 0);
        width: auto;
        display: block;
        height: auto;
        color: rgba(153, 153, 153, 0.5);
        font-size: 11px;
        font-weight: 500;
        line-height: normal;
    }

    .header-notification__item:hover svg {
        right: -5px;
    }

.header-profile__block {
    top: 100%;
    z-index: 15;
    left: 0;
    width: 300px;
    position: absolute;
    border-radius: 0px 15px 15px 15px;
    background: #fff;
    -webkit-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.1), 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.1), 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

    .header-profile__block.active {
        opacity: 1;
        visibility: visible;
    }

.header-profile__title {
    color: #999;
    font-size: 15px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 24px;
}

.textarea__box {
    position: relative;
    width: 100%;
    margin-top: 10px;
}

    .textarea__box textarea {
        display: flex;
        height: 100%;
        max-height:390px;
        min-height:55px;
        flex-shrink: 0;
        border-color: transparent;
        border-radius: 7px;
        background-color: #f6f5f6;
        outline: none;
        width: 100%;
        padding-right: 85px;
        padding-top: 14px;
        padding-left: 15px;
        font-family: "Inter Tight";
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        color: #333333;
        resize: vertical;
    }

.chat-file-button {
    position: absolute;
    left: unset;
    top: unset;
    right: 45px;
    bottom: 10px;
}

.send-message-button {
    position: absolute;
    left: unset;
    right: 10px;
    top: unset;
    bottom: 10px;
}

.header-profile__list {
    color: #444;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ececf0;
    margin-bottom: 25px;
}

    .header-profile__list li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header-profile__list span {
        width: 75px;
        color: rgba(153, 153, 153, 0.5);
        font-size: 14px;
        font-weight: 500;
        line-height: 26px;
    }

.header-profile__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
    gap: 5px;
}

.header-profile__link {
    color: #0E8C1A;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.28px;
}

.header-profile__exit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.28px;
    background-color: rgba(0, 0, 0, 0);
}

@media (max-width: 1300px) {
    .request-chat-block {
        width: 100% !important;
    }

    .header__link {
        padding: 0 10px;
        font-size: 16px;
    }

    .header__logo img {
        max-height: 32px;
    }

    .header__btn {
        font-size: 12px;
        padding: 7px 14px;
        height: 32px;
        min-width: 125px;
    }

    .capital-container {
        padding: 4px 14px;
        min-height: 32px;
        min-width: 132px;
        margin-right: 12px;
    }

    .header__notification {
        margin: 0 12px;
        padding: 0 12px;
    }

    .header__profile {
        margin-right: 32px;
        padding-right: 12px;
        max-width: 250px;
    }

        .header__profile svg {
            min-width: 18px;
        }

        .header__profile > .header__profile-arrow {
            position: relative;
        }

    .header__body {
        gap: 10px;
    }
}

@media (max-width: 992px) {
    .header-notification {
        display: none;
    }

    .header__btn {
        margin-right: 0;
    }

    .capital-container {
        margin-right: 0;
        margin-bottom: 20px;
        min-height: 44px;
        font-size: 13px;
    }

    .header__profile {
        height: 40px;
    }

    .header__burger {
        display: block;
        z-index: 10;
    }

    /* Бургер-меню: полноэкранная панель, выезжающая сверху.
       100dvh, чтобы адресная строка мобильного браузера не съедала низ,
       и overflow-y — иначе на низких экранах контент меню обрезается. */
    .header__content {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        padding: calc(var(--header-h) + 20px) 20px 40px;
        overflow-y: auto;
        overscroll-behavior: contain;
        background-color: #333;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: opacity 0.35s, visibility 0.35s, -webkit-transform 0.35s;
        transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
    }

        .header__content.active {
            opacity: 1;
            visibility: visible;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }

    /* Ссылки в меню — колонкой по центру панели, заодно и центр строк. */
    .header__link {
        height: auto;
        margin-bottom: 20px;
        padding: 0;
        border-bottom: 0;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        font-size: 22px;
    }

    /* Списки и профиль тянутся на всю ширину панели, иначе центрируется
       только их внешний бокс, а строки внутри остаются прижатыми влево. */
    .header__content > .header__list,
    .header__content > .header__profile,
    .header__content > .header__contacts {
        width: 100%;
    }

    .header__content .header__profile {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .header__content .header__contacts {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
    }

    .header__btn {
        border-radius: 50px;
        min-width: 150px;
        padding: 10px 20px;
        color: #fff;
        font-size: 14px;
        height: 44px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 0.28px;
        margin-bottom: 20px;
    }

    .header__notification {
        display: none;
    }

        .header__notification.lock {
            display: block;
        }

    .header__profile {
        max-width: 100%;
        margin-bottom: 20px;
        border: 0;
        font-size: 25px;
    }

        .header__profile svg {
            width: 40px;
            height: 40px;
            min-width: 40px;
        }

        .header__profile > .header__profile-arrow {
            display: none;
        }

    .header__contacts {
        padding-right: 0;
    }

        .header__contacts a {
            font-size: 18px;
        }

        .header__contacts svg {
            width: 32px;
            height: 32px;
            min-width: 32px;
        }

    .header__notification {
        height: auto;
        border: 0;
    }

    .header__list {
        display: none;
    }

        .header__list.lock {
            height: auto;
            width: 100%;
            display: block;
            padding-left: 0;
        }
}
/* ----------------------------------------------------------------- */
.__select {
    position: relative;
    width: 240px;
    height: 40px;
}

.request-subtype.active {
    background-color: #0E8C1A;
    transition: 0.3s;
}

    .request-subtype.active span {
        color: white !important;
    }

.__select[data-state="active"] .__select__title {
    border-radius: 7px 7px 0 0;
}

    .__select[data-state="active"] .__select__title::before {
        -webkit-transform: translate(-3px, -50%) rotate(-45deg);
        -ms-transform: translate(-3px, -50%) rotate(-45deg);
        transform: translate(-3px, -50%) rotate(-45deg);
    }

    .__select[data-state="active"] .__select__title::after {
        -webkit-transform: translate(3px, -50%) rotate(45deg);
        -ms-transform: translate(3px, -50%) rotate(45deg);
        transform: translate(3px, -50%) rotate(45deg);
    }

.__select[data-state="active"] .__select__content {
    opacity: 1;
}

.__select[data-state="active"]
.__select__label + .__select__input + .__select__label {
    max-height: 40px;
    border-top-width: 1px;
}

.__select__title {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0px 10px 0 43px;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
    color: #999;
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .__select__title::before,
    .__select__title::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 16px;
        display: block;
        width: 10px;
        height: 2px;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        background-color: #333333;
        -webkit-transform: translate(-3px, -50%) rotate(45deg);
        -ms-transform: translate(-3px, -50%) rotate(45deg);
        transform: translate(-3px, -50%) rotate(45deg);
    }

    .__select__title::after {
        -webkit-transform: translate(3px, -50%) rotate(-45deg);
        -ms-transform: translate(3px, -50%) rotate(-45deg);
        transform: translate(3px, -50%) rotate(-45deg);
    }

    .__select__title:hover {
        border-color: #0E8C1A;
    }

        .__select__title:hover::before,
        .__select__title:hover::after {
            background-color: #0E8C1A;
        }

.__select__content {
    position: absolute;
    overflow: hidden;
    top: 40px;
    left: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    background-color: #ffffff;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
    z-index: 8;
}

.__select__input {
    display: none;
}

    .__select__input:checked + label {
        background-color: #dedede;
    }

    .__select__input:disabled + label {
        opacity: 0.6;
        pointer-events: none;
    }

.__select__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 40px;
    max-height: 0;
    padding: 0 16px;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    cursor: pointer;
    overflow: hidden;
}

    .__select__label + input + .__select__label {
        border-top: 0 solid rgba(199, 204, 209, 0.3764705882);
    }

    .__select__label:hover {
        background-color: #0E8C1A !important;
        color: #ffffff;
    }

.main-content {
    margin-bottom: 60px;
}

.main-content__block {
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.main-siderbar {
    padding: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 21.5%;
    flex: 0 1 21.5%;
    min-width: 330px;
    border-radius: 15px;
    background: #f9f8f9;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
}

.main-siderbar__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}

.main-link {
    margin-bottom: 5px;
    height: 60px;
    width: 100%;
    border-radius: 2px 8px 8px 2px;
    background: #fff;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    padding: 0 10px 0 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-left: 4px solid #0E8C1A;
    color: #373737;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.3px;
}

    .main-link p {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 9px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

.allrequests-count {
    border-radius: 50px;
    background: rgba(130, 115, 109, 0.5);
    height: 18px;
    width: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #f9f8f9;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    position: unset !important;
}

.notification-count {
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    background: red;
    height: 18px;
    width: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white !important;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 0px;
    left: 0px;
}

.request-type__content {
    display: flex;
    gap: 9px;
}

.main-link svg {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

    .main-link svg path {
        stroke: #0E8C1A;
        stroke-opacity: 1;
    }

.main-item {
    height: 60px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #fff;
    -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    padding: 0 10px 0 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #373737;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.3px;
}

.main-block {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    padding-left: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
    -webkit-transition: 1s;
    transition: 1s;
}

    .main-block.active {
        margin: 5px 0;
        padding: 5px 0 5px 18px;
        opacity: 1;
        visibility: visible;
        max-height: 450px;
    }

.main-block__all {
    border-radius: 5px;
    background: #0E8C1A;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.05), 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.05), 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 0px 15px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.28px;
    cursor: pointer;
}

.main-block__item {
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.05), 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.05), 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 0px 15px;
    color: #373737;
    font-size: 14px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 0.28px;
    cursor: pointer;
}

    .main-block__item span:last-child {
        color: rgba(68, 68, 68, 0.5);
        text-align: right;
        font-size: 14px;
        font-weight: 400;
        line-height: 40px;
    }

    .main-block__item.yellow {
        color: #cfa200;
    }

    .main-block__item.red {
        color: #d93838;
    }

    .main-block__item.green {
        color: #47b022;
    }

    .main-block__item.blue {
        color: #6387de;
    }

    .main-block__item.brown {
        color: #ad4c4c;
    }

.newsEdit__btn {
    margin-top: 15px;
    border-radius: 50px;
    background: #0E8C1A;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.main-body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

.title {
    color: #222;
    font-size: 24px;
    font-weight: 300;
    line-height: 30px;
}

    .title span {
        font-weight: 600;
    }

.applications__title {
    margin-bottom: 30px;
}

.applications__filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 24px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

.manager-role .request-filter {
    position: relative;
}

.applications__filter {
    position: relative;
    display: flex !important;
    flex-direction: row;
    gap: 20px;
    justify-content: stretch;
}

.news-item__link a {
    color: #0E8C1A;
}

.applications__filter svg {
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 10px;
}

.applications__searchs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    justify-content: stretch;
}

.applications__search {
    height: 40px;
    position: relative;
    flex-grow: 1;
}

    .applications__search svg {
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .applications__search input {
        width: 100%;
        height: 100%;
        padding: 0 30px 0 15px;
        border-radius: 7px;
        background: #f9f8f9;
        font-size: 13px;
        font-weight: 600;
        line-height: 20px;
        color: #000;
    }

        .applications__search input::-webkit-input-placeholder {
            color: #999;
        }

        .applications__search input::-moz-placeholder {
            color: #999;
        }

        .applications__search input:-ms-input-placeholder {
            color: #999;
        }

        .applications__search input::-ms-input-placeholder {
            color: #999;
        }

        .applications__search input::placeholder {
            color: #999;
        }

.applications__items {
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    padding: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.applications-top {
    border-radius: 8px;
    padding: 0 20px;
    background: #0E8C1A;
    height: 60px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

    .applications-top div {
        align-items: center;
        color: #fff;
        display: flex;
        font-size: 13px;
        font-weight: 500;
        justify-content: center;
        line-height: 16px;
        letter-spacing: 0.26px;
        text-align: center;
        white-space: nowrap;
    }

.applications-top__num {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 5%;
    flex: 0 1 5%;
}

.applications-top__date {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-top__name {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 15%;
    flex: 0 1 15%;
}

.applications-top__INN {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-top__product {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-top__sum {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-top__term {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-top__agent {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-top__status {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 8px;
    padding: 0 20px;
    background: #f9f8f9;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    gap: 5px;
}

    .applications-item .applications-item__edit {
        display: none;
    }

    .applications-item.draft .applications-item__status {
        font-weight: 700;
    }

    .applications-item.draft .applications-item__icon {
        background-image: url("../img/applications/draft.svg");
    }

    .applications-item.consideration .applications-item__status {
        font-weight: 700;
        color: #cfa200;
    }

    .applications-item.consideration .applications-item__icon {
        background-image: url("../img/applications/consideration.svg");
    }

    .applications-item.refinement .applications-item__status {
        font-weight: 700;
        color: #d93838;
    }

    .applications-item.refinement .applications-item__icon {
        background-image: url("../img/applications/refinement.svg");
    }

    .applications-item.approved .applications-item__status {
        font-weight: 700;
        color: #47b022;
    }

    .applications-item.approved .applications-item__icon {
        background-image: url("../img/applications/approved.svg");
    }

    .applications-item.issued .applications-item__status {
        font-weight: 700;
        color: #6387de;
    }

    .applications-item.issued .applications-item__icon {
        background-image: url("../img/applications/issued.svg");
    }

    .applications-item.denied .applications-item__status {
        font-weight: 700;
        color: #ad4c4c;
    }

    .applications-item.denied .applications-item__icon {
        background-image: url("../img/applications/denied.svg");
    }

    .applications-item.edit .applications-item__edit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .applications-item div {
        color: #333;
        font-size: 13px;
        font-weight: 500;
        line-height: 16px;
        letter-spacing: 0.26px;
        text-align: center;
    }

.request-status-options {
    z-index: 5;
}

.selectCustom-option {
    padding-left: 9px;
}

.applications-item:hover {
    border-radius: 8px;
    background: #fff;
    -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
}

.applications-item__num {
    font-weight: 600 !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 5%;
    flex: 0 1 5%;
}

.applications-item__date {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: rgba(51, 51, 51, 0.35) !important;
}

    .applications-item__date span {
        color: #333 !important;
    }

.applications-item__name {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 15%;
    flex: 0 1 15%;
    word-break: break-all;
}

.applications-item__INN {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-item__product {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-item__sum {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-item__term {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-item__agent {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

@media (min-width: 993px) {
    .applications-top {
        justify-content: space-between;
    }

    .applications-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .applications-item__num {
        display: flex;
        justify-content: center;
        max-width: 40px;
        min-width: 40px;
    }

    .applications-item__date {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 100px;
        min-width: 100px
    }

    .applications-item__name {
        display: flex;
        justify-content: center;
        max-width: 120px;
        min-width: 120px
    }

    .applications-item__product {
        display: flex;
        justify-content: center;
        max-width: 120px;
        min-width: 120px
    }

    .applications-item__product {
        display: flex;
        justify-content: center;
        max-width: 100px;
        min-width: 10px
    }

    .applications-item__sum {
        display: flex;
        justify-content: center;
        max-width: 90px;
        min-width: 90px;
        white-space: nowrap
    }

    .applications-item__term {
        display: flex;
        justify-content: center;
        max-width: 70px;
        min-width: 70px
    }

    .applications-item__agent {
        display: flex;
        justify-content: center;
        max-width: 200px;
        min-width: 200px
    }

    .applications-item__status {
        display: flex;
        justify-content: center;
        max-width: 120px;
        min-width: 120px
    }

    .applications-top__num {
        max-width: 40px;
        min-width: 40px;
    }

    .applications-top__date {
        max-width: 100px;
        min-width: 100px;
    }

    .applications-top__name {
        max-width: 120px;
        min-width: 120px;
    }

    .applications-top__INN,
    .applications-top__product {
        max-width: 100px;
        min-width: 10px;
    }

    .applications-top__sum {
        max-width: 90px;
        min-width: 90px;
    }

    .applications-top__term {
        max-width: 70px;
        min-width: 70px;
    }

    .applications-top__agent {
        max-width: 200px;
        min-width: 200px;
    }

    .applications-top__status {
        max-width: 120px;
        min-width: 120px;
    }
}

.applications-item__status {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 10%;
    flex: 0 1 10%;
}

.applications-item__icon {
    width: 16px;
    height: 16px;
    display: block;
    margin-right: 5px;
}

.applications-item__edit {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    border-radius: 16px 0px 0px 16px;
    background: rgba(241, 128, 82, 0.1);
    width: 34px;
    height: 34px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
}

    .applications-item__edit svg {
        width: 18px;
        height: 18px;
    }

.applications-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    gap: 5px;
}

.applications-pagination__prev-prev {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    color: #444444;
    font-size: 13px;
    font-weight: 600;
    line-height: 40px;
}

    .applications-pagination__prev-prev svg path {
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .applications-pagination__prev-prev:hover {
        color: #fff;
        background: #0E8C1A;
    }

        .applications-pagination__prev-prev:hover svg path {
            stroke: #fff;
            stroke-opacity: 1;
        }

.applications-pagination__prev {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    color: #444444;
    font-size: 13px;
    font-weight: 600;
    line-height: 40px;
}

    .applications-pagination__prev svg path {
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .applications-pagination__prev:hover {
        color: #fff;
        background: #0E8C1A;
    }

        .applications-pagination__prev:hover svg path {
            stroke: #fff;
            stroke-opacity: 1;
        }

.applications-pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.applications-pagination__number {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    color: #444444;
    font-size: 13px;
    font-weight: 600;
    line-height: 40px;
}

    .applications-pagination__number:hover {
        color: #fff;
        background: #0E8C1A;
    }

    .applications-pagination__number.active {
        color: #fff;
        background: #0E8C1A;
    }

.applications-pagination__next {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    color: #444444;
    font-size: 13px;
    font-weight: 600;
    line-height: 40px;
}

    .applications-pagination__next svg path {
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

.document-list-elem-image {
    margin-left: 5px;
}

.applications-pagination__next:hover {
    color: #fff;
    background: #0E8C1A;
}

    .applications-pagination__next:hover svg path {
        stroke: #fff;
        stroke-opacity: 1;
    }

.applications-pagination__next-next {
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    color: #444444;
    font-size: 13px;
    font-weight: 600;
    line-height: 40px;
}


.applications-pagination__next-next svg path {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.applications-pagination__next-next:hover {
    color: #fff;
    background: #0E8C1A;
}

    .applications-pagination__next-next:hover svg path {
        stroke: #fff;
        stroke-opacity: 1;
    }

.main-siderbar__close {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    display: block;
}

    .main-siderbar__close svg path {
        stroke-width: 3px;
        stroke: #333333;
    }

.main-siderbar__close {
    display: none;
}

.applications-open {
    display: none;
}

@media (max-width: 830px) {
}

@media (max-width: 1400px) {
    .main-item svg {
        min-width: 20px;
    }

    .applications {
        overflow: hidden;
    }

    .applications-block-items {
        max-width: 100%;
        width: 100%;
        background: #fff;
        border-radius: 15px;
        -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
        padding: 10px 0 10px 10px;
    }

    .applications__items {
        overflow-y: scroll;
        width: 100%;
        max-width: 74vw;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .applications__items::-webkit-scrollbar {
            width: 4px;
            height: 4px;
            background-color: #fff;
        }

        .applications__items::-webkit-scrollbar-thumb {
            border-radius: 4px;
            background-color: #98989a;
        }

        .applications__items::-webkit-scrollbar-track {
            border-radius: 4px;
            background-color: #fff;
        }

    .applications-item {
        min-width: 1000px;
    }

    .applications-top {
        min-width: 1000px;
    }
}

@media (max-width: 1200px) {
    .applications__items {
        overflow-y: scroll;
        width: 100%;
        max-width: 72vw;
    }

    .table-body-left,
    .table-body-right {
        width: 100%;
    }

    .col-6 {
        max-width: 100%;
    }

    .table-body {
        flex-direction: column;
        padding-bottom: 10%;
    }

    .create-next-step {
        margin-bottom: -7%;
    }
}

@media (max-width: 1100px) {
    .application__title {
        gap: 5px !important;
    }

    .applications__filter {
    }

    .applications__searchs {
        margin-right: 0 !important;
        flex-direction: row !important;
    }

    .applications-open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        max-width: 240px;
        padding: 10px 20px;
        background-color: #0E8C1A;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
        color: #fff;
        margin-bottom: 20px;
    }

    .send-to-bank-buttons {
        flex-direction: row !important;
        gap: 5px !important;
    }

    .applications__items {
        overflow-y: scroll;
        width: 100%;
        max-width: 95vw;
    }

    .main-content__block {
        gap: 0;
    }

    .main-siderbar {
        padding-top: 60px;
        position: fixed;
        left: 0;
        top: 500px;
        width: 100vw;
        z-index: 10;
        height: 100vh;
        overflow-y: scroll;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        border-radius: 0;
    }

        .main-siderbar::-webkit-scrollbar {
            width: 4px;
            height: 4px;
            background-color: #fff;
        }

        .main-siderbar::-webkit-scrollbar-thumb {
            border-radius: 4px;
            background-color: #0E8C1A;
        }

        .main-siderbar::-webkit-scrollbar-track {
            border-radius: 4px;
            background-color: #fff;
        }

        .main-siderbar.active {
            top: 0;
            opacity: 1;
            visibility: visible;
        }
}

@media (max-width: 767px) {
    .applications__searchs {
        flex-direction: column !important;
    }

    .send-to-bank-button2 {
        margin-left: 0px !important;
    }

    .wish__box {
        flex-direction: column !important;
        gap: 15px;
    }

    .table-body {
        padding-bottom: 5%;
    }

    .create-next-step {
        display: none;
        margin: 0;
    }

        .create-next-step.sec {
            display: block;
            position: unset;
            width: 100% !important;
        }

    .prevStep-box.mobile {
        margin-bottom: 20px !important;
    }

    .mobile {
        display: flex !important;
    }

    .create-next-step.mobile {
        margin: 20px 0px 0px 20px;
        position: unset;
        border-radius: 50px;
        background: #0E8C1A;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 250px;
        height: 50px;
        padding: 10px 40px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        line-height: 20px;
        letter-spacing: 0.3px;
        cursor: pointer;
        border: 1px solid #0E8C1A;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .applications__filter {
        flex-direction: column;
        gap: 10px;
    }

    .table-header-create {
        flex-direction: column;
    }

    .table-header-left.col-6 img:first-child {
        display: none;
    }

    .table-header-left.col-6 {
        background-color: #0E8C1A;
        padding: 30px;
        border-radius: 10px 10px 0 0;
    }

    .table-body {
        margin-top: 10px;
    }

    .table-header-right.col-6 {
        padding: 15px;
    }

    .gray-input-right-sign {
        right: 8px !important;
    }

    .manager-role .request-filter {
        width: 100% !important;
    }

    .request-filter {
        transition: 0.3s;
        width: 100% !important;
    }

    .selectCustom-options {
        width: 100% !important;
        transition: 0.3s !important;
    }

    .manager-filter {
        transition: 0.3s;
    }

    .applications__items {
        overflow-y: scroll;
        width: 100%;
        max-width: 92vw;
    }

    .applications__filters {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .applications__searchs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .applications-open {
        max-width: 100%;
    }

    .__select {
        width: 100%;
    }

    .applications__search {
        width: 100%;
    }

    .applications-pagination__number:nth-child(7) {
        display: none;
    }

    .applications-pagination__number:nth-child(4) {
        display: none;
    }

    .applications-pagination__number:nth-child(5) {
        display: none;
    }
}

@media (max-width: 518px) {
    .col-6.spec {
        gap: 35px !important;
    }
}

@media (max-width: 461px) {
    .col-6.spec {
        gap: 17px !important;
    }
}

@media (max-width: 500px) {
    .applications__items {
        overflow-y: scroll;
        width: 100%;
        max-width: 88vw;
    }
}

/* ------------------------FOOTER--------------------------------- */
/* Раскладка колонок — в footer.css, здесь только типографика. */
.footer__text {
    color: #BDBDBD;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.26px;
}

.footer__text_links {
    color: #d8d8d8;
    font-size: 13px;
    line-height: 20px;
    border-bottom: 1px solid rgba(216, 216, 216, 0.35);
    -webkit-transition: color 0.25s, border-color 0.25s;
    transition: color 0.25s, border-color 0.25s;
}

    .footer__text_links:hover {
        color: #fff;
        border-bottom-color: #fff;
    }
/* -----------------------LOGIN------------------------------ */
.login {
    position: relative;
    overflow: hidden;
}

.login__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 118px;
    position: relative;
    z-index: 1;
    max-width: 1186px;
    padding: 0 15px;
    margin: 0 auto;
    padding-top: 87px;
    padding-bottom: 115px;
}

.validation {
    bottom: -125px !important;
}

.login__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
    padding-top: 63px;
}

.login__form {
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.login__title {
    color: #222;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 30px;
}

.login__input {
    height: 50px;
    margin-bottom: 20px;
    width: 100%;
    position: relative;
}

    .login__input input {
        width: 100%;
        height: 100%;
        border-radius: 7px;
        padding: 0 15px 0 50px;
        background: #f6f5f6;
        font-size: 15px;
        font-weight: 500;
        line-height: 50px;
        color: #000;
    }

        .login__input input::-webkit-input-placeholder {
            color: #999;
        }

        .login__input input::-moz-placeholder {
            color: #999;
        }

        .login__input input:-ms-input-placeholder {
            color: #999;
        }

        .login__input input::-ms-input-placeholder {
            color: #999;
        }

        .login__input input::placeholder {
            color: #999;
        }

.login-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.login__eye {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .login__eye .eye__on {
        display: none;
    }

    .login__eye.active .eye__on {
        display: block;
    }

    .login__eye.active .eye__off {
        display: none;
    }

.login__buttons {
    padding-top: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 50px;
}

.login__password {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #0E8C1A;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0.3px;
}

/* #0E8C1A под белым текстом даёт 4.39 — ниже WCAG AA (4.5). Затемнено до 5.30. */
.login__btn {
    border-radius: 50px;
    background: #0C7D16;
    border: 1px solid #0C7D16;
    height: 50px;
    padding: 10px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.3px;
    -webkit-transition: background-color 0.25s, border-color 0.25s, -webkit-transform 0.1s;
    transition: background-color 0.25s, border-color 0.25s, transform 0.1s;
}

    .login__btn:hover {
        background-color: #0a6e14;
        border-color: #0a6e14;
        color: #fff;
    }

    .login__btn:active {
        transform: scale(0.98);
    }

.login__bottom {
    border-radius: 8px;
    width: 100%;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 3px;
    background: #fff;
    -webkit-box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.15);
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
}

    .login__bottom a {
        color: #0E8C1A;
        font-weight: 600;
        line-height: 24px;
        padding-top: 2px;
    }

.login__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 60%;
    flex: 0 1 60%;
}

.login__back {
    position: absolute;
    -webkit-transform: rotate(-15deg);
    -ms-transform: rotate(-15deg);
    transform: rotate(-15deg);
    left: 50%;
    top: 60%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.login__policy {
    margin: 48px 0 30px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    color: #999;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
}

    .login__policy a {
        color: #0E8C1A;
        font-size: 13px;
        font-weight: 500;
    }

.login__checkbox input {
    display: none;
}

    .login__checkbox input:checked + label {
        border: 1px solid #0E8C1A;
        background-color: #0E8C1A;
    }

.login__checkbox label {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    min-width: 20px;
    cursor: pointer;
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    border: 1px solid #cdcdd4;
    background: #f6f5f6;
}

.login__subtext {
    color: rgba(153, 153, 153, 0.5);
    font-size: 11px;
    font-weight: 500;
    margin-top: 5px;
    line-height: normal;
}

.registration .login__btn {
    width: 100%;
}

.go-to-login-button {
    position: unset;
}

.login__title {
    position: relative;
    display: flex;
    justify-content: space-between;
}

@media (max-width: 1250px) {
    .login__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }

    .login__img {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }

        .login__img img {
            max-width: 100%;
        }

    .login__block {
        gap: 50px;
    }
}

@media (max-width: 992px) {


    .application__title {
        gap: 10px !important;
    }

    .send-to-bank-buttons {
        gap: 10px !important;
    }

    .login__img {
        display: none;
    }

    .login__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
        flex: 0 1 70%;
    }

    .login__block {
        gap: 50px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 931px) {
    .selectCustom-options {
        width: 180px !important;
    }

    .applications__search {
        width: 150px;
    }
}

@media (max-width: 767px) {
    .login__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .login__body {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
    }

    .login__form {
        padding: 20px;
    }

    .login__block {
        padding: 50px 0;
    }
}
/* -----------------------WELCOME------------------------------ */

.content2,
.front-page,
.hovers {
    width: 100%;
}

/* Ряд карточек продуктов: 3 → 2 → 1 в строке. Флекс, а не грид — карточек три,
   и при двух колонках грид оставлял третью в первой колонке с пустой второй рядом.
   flex-grow даёт перенесённой карточке растянуться на всю ширину строки. */
.products-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
    /* Якорь #products для кнопки «Создать заявку» в шапке: шапка фиксированная,
       без отступа переход по якорю прячет верх карточек под неё. */
    scroll-margin-top: calc(var(--header-h, 80px) + 20px);
}

    .products-row > .hovers {
        /* базис 320px задаёт точку переноса, grow — растягивание остатка строки */
        -ms-flex: 1 1 320px;
        flex: 1 1 320px;
        min-width: 0;
    }

.welcome {
    margin: 40px 0 80px 0;
}

.welcome__block {
    max-width: 1341px;
    margin: 0 auto;
}

.welcome__title {
    color: dimgray;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 20px;
    border: 1.5px solid dimgray;
    border-radius: 12px;
    text-align: center;
    padding: 6px 20px;
}
@media(max-width: 768px){
    .welcome__title {
        padding: 10px 20px;
    }
} 
.welcome__subtitle {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 40px;
}

.welcome__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}

.welcome-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.33%;
    flex: 0 1 33.33%;
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.welcome-item__img {
    height: 200px;
    text-align: center;
    margin-bottom: 30px;
}

    .welcome-item__img img {
        max-height: 100%;
    }

.welcome-item__title {
    color: #222;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 10px;
}

.font-3 {
    margin-top: 0 !important;
}

.welcome-item__subtitle {
    /* было #999 — контраст 2.85 на белом, ниже WCAG AA (нужно 4.5) */
    color: #6f6f6f;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ececf0;
    margin-bottom: 12px;
}

.welcome-item__name {
    /* было rgba(153,153,153,.5) — по факту #ccc, контраст 1.61 на белом */
    color: #6f6f6f;
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 5px;
}

.welcome-item__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.3px;
    margin-bottom: 9px;
}
.welcome-item__text p
{
    margin-bottom:0px;
}
.hovers {
    min-height: 680px;
    transform-origin: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
    .hovers:hover .front-page {
        transform: scale(1.05) translateZ(0);
        -webkit-transform: scale(1.05) translateZ(0);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
 .hovers .front-page {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        image-rendering: -webkit-optimize-contrast;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
.product-image {
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    image-rendering: crisp-edges;
}
/* Карточка — колонка; кнопка прижата к низу через margin-top:auto, а не
   position:absolute, поэтому длинный текст «Ставок» из БД больше не вылезает. */
.front-page {
    min-height: 100%;
}

.welcome-item__icon {
    min-width: 20px;
}

@media (max-width: 1200px) {
    .welcome-item__title {
        font-size: 18px;
        line-height: 25px;
    }

    .welcome-item__subtitle {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .welcome-item {
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .hovers {
        margin: 0;
    }

    .welcome__items {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .welcome-item {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
}

@media (max-width: 767px) {
    /* Ряд стал флексом — по одной карточке в строку задаём через базис */
    .products-row > .hovers {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    }

    .hovers {
        min-height: 0;
    }
}
/*--------------------------POPUP-PASSWORD----------------------------------*/
.popup-password {
    max-width: 450px;
    padding: 40px;
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 15;
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
}

    .popup-password.active {
        opacity: 1;
        visibility: visible;
    }

.popup-password__title {
    color: #222;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 30px;
}

.popup-password__close {
    position: absolute;
    right: 40px;
    top: 40px;
    cursor: pointer;
}

.popup-password__text {
    color: #999;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 50px;
}

.popup-password__input {
    height: 50px;
    margin-bottom: 30px;
    width: 100%;
    position: relative;
}

    .popup-password__input input {
        width: 100%;
        height: 100%;
        border-radius: 7px;
        padding: 0 15px 0 50px;
        background: #f6f5f6;
        font-size: 15px;
        font-weight: 500;
        line-height: 50px;
        color: #000;
    }

        .popup-password__input input::-webkit-input-placeholder {
            color: #999;
        }

        .popup-password__input input::-moz-placeholder {
            color: #999;
        }

        .popup-password__input input:-ms-input-placeholder {
            color: #999;
        }

        .popup-password__input input::-ms-input-placeholder {
            color: #999;
        }

        .popup-password__input input::placeholder {
            color: #999;
        }

.popup-password__icon {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 15px;
}

.popup-password__btn {
    border-radius: 50px;
    background: #0E8C1A;
    border: 1px solid #0E8C1A;
    height: 50px;
    padding: 10px 40px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.3px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

    .popup-password__btn:hover {
        background-color: #fff;
        color: #0E8C1A;
    }

.shadow {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 14;
    background-color: rgba(0, 0, 0, 0.3137254902);
    opacity: 0;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    visibility: hidden;
}

    .shadow.active {
        opacity: 1;
        visibility: visible;
    }

@media (max-width: 767px) {
    .popup-password {
        width: 95vw;
        padding: 20px;
    }

    .popup-password__close {
        right: 20px;
        top: 20px;
    }
}

/*--------------------------APPLICATION----------------------------------*/
.application__top {
    margin-bottom: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.application__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.red-border {
    border: 1px solid red;
}

.status-button,
.request-status-options {
    margin-left: 0 !important;
}

.application__back {
    border-radius: 50px;
    background: #fff;
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.application__status {
    border-radius: 7px;
    color: #000;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    height: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 0.28px;
}

    .application__status.red {
        color: #d93838;
    }

.application__btn {
    cursor: pointer;
    border-radius: 50px;
    background: #0E8C1A;
    border: 1px solid #0E8C1A;
    height: 50px;
    padding: 10px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.3px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.send-to-bank-buttons {
    display: flex;
    gap: 5px;
    align-items: center;
}

.application__btn {
    padding: 0px;
}

    .application__btn:hover {
        background-color: #fff;
        color: #0E8C1A;
    }

.request-type {
    display: flex;
    justify-content: space-between;
}

.application__title {
    align-items: center;
}

.application__boxs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.request-small-block {
    width: 100%;
    margin-right: 0 !important;
    position: relative;
}

.edit-button {
    top: -202px;
    right: -24px;
}

.employee-of-client {
    width: 100%;
}

.employee-of-bank {
    width: 100%;
}

@media (max-width: 1633px) {
    .edit-button {
        top: -215px;
    }
}

@media (max-width: 1400px) {
    .applications__filters {
        flex-direction: column;
    }
}

.application-box {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 33.33%;
    flex: 0 1 33.33%;
    padding: 24px;
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
}

.application-box__title {
    color: #777;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
}

.application-box__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
}

    .application-box__item:not(:last-child) {
        margin-bottom: 17px;
    }

.application-box__name {
    color: rgba(136, 136, 136, 0.5);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
}

.application-box__value {
    color: #333;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.3px;
}

.application__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.application-docs {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 60%;
    flex: 0 1 60%;
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
}

/*.request-documents-block {
    width: 65%;
}*/

.application-docs__title {
    color: #777;
    font-size: 18px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 21px 24px;
    border-bottom: 1px solid #ececf0;
}

.application-docs__form {
    padding: 24px;
}

.application-docs__item:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ececf0;
}

.application-docs__name {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 20px;
}

.application-docs__input {
    width: 100%;
    height: 50px;
}

    .application-docs__input input {
        display: none;
    }

    .application-docs__input label {
        border-radius: 7px;
        color: rgba(136, 136, 136, 0.5);
        font-size: 14px;
        font-weight: 500;
        width: 100%;
        height: 100%;
        line-height: normal;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 5px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
        border: 2px dashed #0E8C1A;
    }

        .application-docs__input label.hover {
            border: 2px solid #0E8C1A;
            color: #fff;
            background-color: #0E8C1A;
        }

.application-docs-files {
    margin-top: 24px;
    color: #0E8C1A;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.28px;
    display: none;
}

    .application-docs-files.active {
        display: block;
    }

.application-chat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border-radius: 15px;
    background: #fff;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    -webkit-box-flex: 0;
    -ms-flex: 0 1 40%;
    flex: 0 1 40%;
}

.application-chat__top {
    color: #777;
    font-size: 18px;
    line-height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    padding: 21px 24px;
    border-bottom: 1px solid #ececf0;
}

.application-chat__body {
    max-height: 679px;
    padding: 25px 20px 0px 24px;
    overflow-y: scroll;
}

    .application-chat__body::-webkit-scrollbar {
        width: 5px;
        background-color: #ececf0;
    }

    .application-chat__body::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: #98989a;
    }

    .application-chat__body::-webkit-scrollbar-track {
        border-radius: 5px;
        background-color: #ececf0;
    }

.application-chat-message {
    margin-bottom: 20px;
}

.application-chat-message__time {
    margin-bottom: 10px;
    color: rgba(136, 136, 136, 0.5);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
}

.application-chat-message__body {
    border-radius: 8px;
    background: #efeff2;
    padding: 15px;
    width: 100%;
    color: #333;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
}

    .application-chat-message__body a {
        color: #0E8C1A;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.28px;
        display: block;
        margin-top: 5px;
    }

.application-chat__bottom {
    position: relative;
    min-height: 90px;
    border-top: 1px solid #ececf0;
    padding: 20px;
    margin-top: auto;
}

.application-chat__input {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 7px;
    background: #f6f5f6;
    font-size: 15px;
    font-weight: 500;
    line-height: 50px;
    padding: 0 50px 0 15px;
    color: #000;
}

    .application-chat__input::-webkit-input-placeholder {
        color: rgba(153, 153, 153, 0.5);
    }

    .application-chat__input::-moz-placeholder {
        color: rgba(153, 153, 153, 0.5);
    }

    .application-chat__input:-ms-input-placeholder {
        color: rgba(153, 153, 153, 0.5);
    }

    .application-chat__input::-ms-input-placeholder {
        color: rgba(153, 153, 153, 0.5);
    }

    .application-chat__input::placeholder {
        color: rgba(153, 153, 153, 0.5);
    }

.application-chat__submit {
    position: absolute;
    right: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50px;
    background: #0E8C1A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .application-chat__submit svg path {
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .application-chat__submit:hover {
        background-color: #f6f5f6;
    }

        .application-chat__submit:hover svg path {
            fill: #0E8C1A;
        }

@media (max-width: 1433px) {
    .send-to-bank-buttons {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 1300px) {
    .request-documents-block {
        width: 100%;
    }

    .application__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .application-chat__input {
        height: 50px;
    }

    .application__title {
        gap: 10px;
    }

    .application__btn {
        padding: 0;
    }
}

@media (max-width: 992px) {
    .application__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 20px;
    }

    .application__title {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (max-width: 900px) {
    .application__data {
        justify-content: flex-start;
        flex-direction: column;
    }

    .edit-button.third {
        top: -325px !important;
    }
}

@media (max-width: 767px) {
    .application__boxs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .application__title {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        font-size: 16px;
    }

    .application__body {
        margin: 0 -20px;
    }

    .application-docs {
        border-radius: 0;
    }

    .application-chat {
        border-radius: 0;
    }
}
/*--------------------------APPLICATION-VIP---------------------------------*/
.application-vip {
    margin: 50px 0 80px 0;
}

.application-vip__title {
    margin-bottom: 20px;
}

.create-font-3 {
    margin-top: 20px;
}

.application-vip__subtext {
    color: #999;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 40px;
}

.application-vip__form {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    -webkit-box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.07), 0px 1px 5px 0px rgba(0, 0, 0, 0.05);
}

.application-vip__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
}

.application-vip__one {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    height: 80px;
    background-color: #f9f8f9;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    color: rgba(68, 68, 68, 0.25);
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #fff;
}

    .application-vip__one .application-vip__icon {
        -webkit-transition: 0.3s;
        transition: 0.3s;
        position: relative;
        z-index: 2;
        width: 36px;
        height: 36px;
        background-color: #e0e0e0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 50%;
    }

        .application-vip__one .application-vip__icon svg path {
            -webkit-transition: 0.3s;
            transition: 0.3s;
            fill: #fff;
        }

    .application-vip__one p {
        position: relative;
        z-index: 2;
    }

    .application-vip__one span {
        width: 98%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .application-vip__one::before {
        width: 58.203px;
        height: 138.57px;
        -webkit-transform: rotate(-36.69deg);
        -ms-transform: rotate(-36.69deg);
        transform: rotate(-36.69deg);
        -ms-flex-negative: 0;
        flex-shrink: 0;
        background-color: #0E8C1A;
        position: absolute;
        right: 5px;
        border-radius: 2px;
        top: -70px;
        content: "";
    }

    .application-vip__one::after {
        width: 58.203px;
        height: 138.57px;
        -webkit-transform: rotate(36.69deg);
        -ms-transform: rotate(36.69deg);
        transform: rotate(36.69deg);
        -ms-flex-negative: 0;
        flex-shrink: 0;
        background-color: #0E8C1A;
        position: absolute;
        right: 5px;
        border-radius: 2px;
        top: 8px;
        content: "";
    }

    .application-vip__one span {
        background-color: #0E8C1A;
    }

    .application-vip__one .application-vip__icon {
        background-color: #fff;
    }

        .application-vip__one .application-vip__icon svg path {
            fill: #0E8C1A;
        }

    .application-vip__one.active::before {
        background-color: #f6ac8f;
    }

    .application-vip__one.active::after {
        background-color: #f6ac8f;
    }

    .application-vip__one.active span {
        background-color: #f6ac8f;
    }

    .application-vip__one.active .application-vip__icon svg path {
        fill: #fff;
    }

.application-vip__two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    height: 80px;
    background-color: #f9f8f9;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
    color: rgba(68, 68, 68, 0.25);
    font-size: 14px;
    font-weight: 700;
    line-height: 36px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .application-vip__two .application-vip__icon {
        -webkit-transition: 0.3s;
        transition: 0.3s;
        position: relative;
        z-index: 2;
        width: 36px;
        height: 36px;
        background-color: #e0e0e0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 50%;
    }

        .application-vip__two .application-vip__icon svg path {
            -webkit-transition: 0.3s;
            transition: 0.3s;
            stroke: #fff;
        }

    .application-vip__two.active {
        background-color: #0E8C1A;
        color: #fff;
    }

        .application-vip__two.active .application-vip__icon {
            background-color: #fff;
        }

            .application-vip__two.active .application-vip__icon svg path {
                stroke: #0E8C1A;
            }

.application-vip__body {
    background: #fff;
    padding: 40px;
    gap: 70px;
    display: none;
}

    .application-vip__body.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .application-vip__body.open {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

        .application-vip__body.open .application-vip__content {
            -webkit-box-flex: 0;
            -ms-flex: 0 1 47%;
            flex: 0 1 47%;
        }

.application-vip__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
}

.application-vip__subtitle {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 40px;
}

.application-vip__item {
    margin-bottom: 30px;
}

    .application-vip__item.sliderui {
        margin-bottom: 40px;
    }

    .application-vip__item .application-vip__input.file input {
        display: none;
    }

    .application-vip__item .application-vip__input.file label {
        width: 100%;
        height: 100%;
        border-radius: 7px;
        border: 2px dashed #0E8C1A;
        background: rgba(14, 140, 26, 0.05);
        color: rgba(153, 153, 153, 0.5);
        font-size: 14px;
        font-weight: 500;
        line-height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        cursor: pointer;
    }

.application-vip__name {
    color: #999;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 10px;
}

.red-border {
    border-color: red !important;
}

.application-vip__input {
    height: 50px;
    width: 100%;
    position: relative;
}

    .application-vip__input input {
        width: 100%;
        height: 100%;
        border-radius: 7px;
        background: #f6f5f6;
        padding: 0 30px 0 15px;
        color: #333;
        font-size: 15px;
        font-weight: 500;
        line-height: 50px;
        border: 1px solid transparent;
    }

.application-vip__input-text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 15px;
    color: rgba(153, 153, 153, 0.5);
    text-align: right;
    font-size: 15px;
    font-weight: 500;
    line-height: 50px;
}

.application-vip__slider {
    margin: 10px 0;
    border-radius: 7px;
    border: 0 !important;
    background: #f6f5f6;
    height: 4px;
}

    .application-vip__slider .ui-slider-range-min {
        border-radius: 7px;
        border: 0;
        background: #0E8C1A;
    }

    .application-vip__slider .ui-slider-handle {
        background-color: #fff;
        cursor: pointer;
        top: -7px;
        border-radius: 50%;
        border: 4px solid #0E8C1A;
        -webkit-filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.15));
        filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.15));
    }

.application-vip__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

    .application-vip__bottom span {
        color: rgba(153, 153, 153, 0.5);
        font-size: 11px;
        font-weight: 500;
        line-height: normal;
    }

.application-vip__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

    .application-vip__items .application-vip__item {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }

.application-vip__footer {
    padding: 10px 40px 40px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

    .application-vip__footer.active {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        .application-vip__footer.active .application-vip__submit {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

        .application-vip__footer.active .application-vip__prev {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

        .application-vip__footer.active .application-vip__next {
            display: none;
        }

.application-vip__next {
    border-radius: 50px;
    background: #0E8C1A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 250px;
    height: 50px;
    padding: 10px 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.3px;
    cursor: pointer;
    border: 1px solid #0E8C1A;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .application-vip__next:hover {
        background-color: #fff;
        color: #0E8C1A;
    }

.application-vip-header {
    border-radius: 8px;
    background: #efeff2;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
}

.first-step-info {
    justify-content: unset;
    padding: 20px;
}

.application-vip-header__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 25%;
    flex: 0 1 25%;
}

.application-vip-header__name {
    color: rgba(153, 153, 153, 0.5);
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
    margin-bottom: 10px;
}

.application-vip-header__value {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #333;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
    gap: 5px;
}

    .application-vip-header__value span {
        font-weight: 700;
    }

.application-vip__subsubtitle {
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 18px;
    margin-bottom: 15px;
}

.application-vip__subtext {
    color: #999;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 30px;
}

.application-vip__item {
    margin-bottom: 50px;
}

    .application-vip__item.bigfile {
        height: 150px;
    }

        .application-vip__item.bigfile .application-vip__input {
            height: 100%;
        }

.application-vip-upload {
    padding-top: 160px;
}

.application-vip-upload__name {
    color: #999;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    margin-bottom: 10px;
}

.application-vip-upload__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
}

.application-vip-upload__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: #0E8C1A;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.28px;
}

.application-vip__prev {
    color: #0E8C1A;
    font-size: 15px;
    line-height: 24px;
    gap: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    letter-spacing: 0.3px;
    display: none;
    cursor: pointer;
}

.application-vip__submit {
    border-radius: 50px;
    background: #0E8C1A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 50px;
    padding: 10px 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    display: none;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.3px;
    border: 1px solid #0E8C1A;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .application-vip__submit:hover {
        background-color: #fff;
        color: #0E8C1A;
    }

.application-vip__checkboxs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 40px;
    gap: 15px;
}

.create-drag-drop {
    font-size: 10px;
}

.application-vip-checkbox {
    height: 50px;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
}

    .application-vip-checkbox input {
        display: none;
    }

        .application-vip-checkbox input:checked + label {
            border: 2px solid #0E8C1A;
        }

            .application-vip-checkbox
            input:checked + label
            .application-vip-checkbox__icon {
                border: 1px solid #0E8C1A;
                background: #0E8C1A;
            }

                .application-vip-checkbox
                input:checked + label
                .application-vip-checkbox__icon
                svg {
                    opacity: 1;
                    visibility: visible;
                }

    .application-vip-checkbox label {
        width: 100%;
        height: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border-radius: 7px;
        border: 2px solid #eee;
        background: #fff;
        padding: 0 15px;
        cursor: pointer;
        color: #333;
        font-size: 15px;
        font-weight: 600;
        line-height: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

.fin-type {
    transition: 0.3s;
}

.application-vip-checkbox__icon {
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: 1px solid #cdcdd4;
    background: #f6f5f6;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

    .application-vip-checkbox__icon svg {
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

.create-drag-drop {
    margin-top: 0 !important;
}

.checked-block {
    display: none;
}

    .checked-block.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

.application-vip__menudrop {
    margin-bottom: 33px;
}

    .application-vip__menudrop .__select {
        width: 100%;
        height: 50px;
    }

    .application-vip__menudrop .__select__title {
        border-radius: 7px;
        background: #f6f5f6;
    }

    .application-vip__menudrop .__select__content {
        top: 50px;
        -webkit-box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.1), 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
        box-shadow: 0px 15px 50px 0px rgba(0, 0, 0, 0.1), 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
    }

@media (max-width: 1200px) {
    .application-vip__body {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .application-vip-upload {
        padding-top: 0;
    }

    .col-7 {
        max-width: 100%;
    }

    .table-body-right.col-5 {
        max-width: 100%;
    }

        .table-body-right.col-5 span {
            margin-top: 0px !important;
        }

    .prevStep-box {
        display: none !important;
        position: unset !important;
    }

        .prevStep-box.mobile {
            display: block !important;
            margin-top: 50px;
            margin-bottom: -50px;
        }
}

@media (max-width: 992px) {
    .application-vip-header {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .first-step-info {
        display: grid;
        grid-template-columns: repeat(2, 48%);
        height: max-content;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .first-step-info {
        flex-direction: column;
        align-items: self-start;
        height: max-content;
        display: flex;
        gap: 20px;
    }

    .radioBtn-Wrapper {
        justify-content: unset;
        flex-direction: column;
        gap: 15px;
    }

    .fin-type {
        width: 100%;
    }

    ._container {
        padding: 0 10px;
    }

    .col-7 {
        padding: 20px;
    }

    .table-header-create {
        height: max-content;
    }

    .col-7 .create-font-3 {
        margin-top: 0px;
    }

    .table-body {
        margin-top: 0px;
    }

    .application-vip-upload__item {
        font-size: 12px;
    }

    .selectCustom-options {
        width: 100% !important;
    }

    .applications__search {
        width: 100%;
    }

        .applications__search svg {
            right: 7px;
        }

    .application-vip-header {
        display: -ms-grid;
        display: grid;
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .application-vip__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .application-vip__body {
        padding: 20px;
    }

    .application-vip__top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .application-vip__one {
        min-height: 70px;
    }

        .application-vip__one::before {
            display: none;
        }

        .application-vip__one::after {
            display: none;
        }

        .application-vip__one span {
            width: 100%;
        }

    .application-vip__two {
        min-height: 70px;
    }

    .application-vip__items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
/* -------------------news--------------------------- */
.news {
    margin: 50px 0 60px 0;
}

.addNews__btn {
    margin-bottom: 20px;
    border-radius: 50px;
    background: #0E8C1A;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 150px;
    padding: 10px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    height: 40px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.editNews__btn {
    margin: 20px;
    border-radius: 50px;
    background: #0E8C1A;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    height: 40px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .editNews__btn a {
        text-decoration: none;
        color: white;
    }

.editAppVersion_btn {
    margin: 20px;
    border-radius: 50px;
    background: #0E8C1A;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    height: 40px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .editAppVersion_btn a {
        text-decoration: none;
        color: white;
    }

.registerBank_btn, .addAgent_btn, .manageBanks_btn, .logsErrors_btn {
    margin: 20px;
    border-radius: 50px;
    background: #0E8C1A;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 10px 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 14px;
    height: 40px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .registerBank_btn a, .addAgent_btn a, .manageBanks_btn a, .logsErrors_btn a {
        text-decoration: none;
        color: white;
    }



.news__title {
    margin-bottom: 40px;
}

.news__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.news-item {
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05), 0px 5px 25px rgba(0, 0, 0, 0.07);
    padding: 40px 30px 30px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    gap: 20px;
    width: calc(25% - 15px);
    cursor: pointer;
    position: relative;
}
@media (max-width: 1399.98px) {
    .news-item {
        width: calc(33.33% - 13px);
    }
}
@media (max-width: 1079.98px) {
    .news-item {
        width: calc(50% - 10px);
    }
    .news-item__title {
        padding-top: 10px;
    }
}
@media (max-width: 524.98px) {
    .news__items {
        flex-direction: column;
    }

    .news-item {
        width: 100%;
    }
}

.news-item__date {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 22%;
    flex: 0 0 22%;
}

.news-item__body {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 78%;
    flex: 0 1 100%;
}

.news-item__title {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.36px;
    margin-bottom: 24px;
    text-align: center;
}

.news-item__text {
    color: #777;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.28px;
    margin-bottom: 20px;
    max-height: 50px;
    overflow: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.news-item__html {
    color: #777;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.28px;
    margin-bottom: 20px;
    opacity: 0;
    visibility: hidden;
    transform-origin: 0 0;
    transform: rotateX(-90deg);
    overflow: hidden;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    margin-bottom: -20px;
    max-height: 0;
}

    .news-item__html.active {
        max-height: 1500px;
        transform: rotateX(0deg);
        opacity: 1;
        visibility: visible;
        margin-bottom: 20px;
    }

.news__item__text.active {
    max-height: 1000px;
}

.news-item__link {
    color: #0E8C1A;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.28px;
    border-bottom: 1px dashed #0E8C1A;
    display: inline;
    max-width: 127px;
    cursor: pointer;
}

.news-item__edit {
    color: #0E8C1A;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.28px;
    border-bottom: 1px dashed #0E8C1A;
    display: inline;
    max-width: 127px;
    cursor: pointer;
}

.news-item__delete {
    color: #0E8C1A;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.28px;
    border-bottom: 1px dashed #0E8C1A;
    display: inline;
    max-width: 127px;
    cursor: pointer;
}

.news-item__files {
    margin: 30px 0;
    border-radius: 8px;
    padding: 20px;
    background: #efeff2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.news-item__file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    color: #0E8C1A;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 0.28px;
}

    .news-item__file span {
        color: rgba(153, 153, 153, 0.5);
    }

@media (max-width: 767px) {
    .news-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
/* -------------------Правки--------------------------- */
.login__eye {
    max-height: 20px;
}

.header__profile.lock {
    display: none;
}

.header-mobile__body {
    display: none;
}

.request-small-block:last-child {
    order: 1;
}

.request-small-block:nth-child(2) {
    order: 2;
}

.request-small-block:first-child {
    order: 3;
}

@media (max-width: 1400px) {
    /*    .applications-item {
        overflow-x: scroll;
    }*/
}

@media (max-width: 1210px) {
}

@media (max-width: 992px) {
    .applications-item {
        display: -ms-grid;
        display: grid;
        min-width: 100%;
        -ms-grid-columns: 1fr 10px 1fr 10px 1fr 10px 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 20px 10px;
        margin-bottom: 3px !important;
    }

    .applications-item__num {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 10%;
        flex: 0 1 10%;
    }

        .applications-item__num::before {
            content: "№:";
            font-weight: 900;
        }

    .applications-item__date {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 10%;
        flex: 0 1 10%;
    }

        .applications-item__date::before {
            color: #000;
            content: "Дата создания:";
            font-weight: 900;
        }

    .applications-item__name {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 10%;
        flex: 0 1 10%;
    }

        .applications-item__name::before {
            content: "Название:";
            font-weight: 900;
        }

    .applications-item {
        height: auto;
        padding: 20px;
    }

    .applications-item__INN {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 10%;
        flex: 0 1 10%;
    }

        .applications-item__INN::before {
            content: "ИНН:" !important;
            font-weight: 900;
        }

    .applications-item__product {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 10%;
        flex: 0 1 10%;
    }

        .applications-item__product::before {
            content: "Продукт:";
            font-weight: 900;
        }

    .applications-item__sum {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 10%;
        flex: 0 1 10%;
    }

        .applications-item__sum::before {
            content: "Сумма:";
            font-weight: 900;
        }

    .applications-item__term {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 10%;
        flex: 0 1 10%;
    }

        .applications-item__term::before {
            content: "Срок:";
            font-weight: 900;
        }

    .applications-item__agent {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 15%;
        flex: 0 1 15%;
    }

        .applications-item__agent::before {
            content: "Агент:";
            font-weight: 900;
        }

    .applications-item__status {
        -webkit-box-flex: 0;
        -ms-flex: 0 1 10%;
        flex: 0 1 10%;
    }

        .applications-item__status::before {
            color: #000;
            content: "Статус:";
            font-weight: 900;
        }

    .applications-item__icon {
        min-width: 16px;
    }

    .applications-top {
        display: none;
    }
}
/*/@media (max-width: 1200px) {
  .applications-item {
    display: -ms-grid;
    display: grid;
    min-width: 100%;
    -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 10px;
  }
}/*/
@media (max-width: 992px) {
    .header__profile {
        display: none;
    }

        .header__profile.lock {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            z-index: 15;
            font-size: 14px;
            margin-bottom: 0;
            height: auto;
            padding: 0;
            background-color: rgba(0, 0, 0, 0) !important;
            margin-right: 0;
        }

            .header__profile.lock svg path {
                stroke: #fff;
                stroke-opacity: 1 !important;
            }

            .header__profile.lock svg {
                width: 25px;
                height: 25px;
                min-width: 25px;
                margin-right: 5px;
            }

    .header-mobile__body {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        /* .header__block раздаёт место через space-between. У авторизованных в нём
           появляется третий элемент — скрытая form.exit, — и бургер уезжал в середину.
           margin-left:auto съедает свободное место слева и прижимает блок вправо. */
        margin-left: auto;
    }

    /* Форма выхода отправляется из JS (Exit()), визуально её нет — незачем
       занимать место во флекс-раскладке шапки. */
    .header__block > .exit {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .header-profile__block.lock {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        overflow-y: auto;
        overscroll-behavior: contain;
        border-radius: 0;
    }

    .header-profile__exit svg {
        display: none;
    }

    .header__profile-close {
        position: absolute;
        right: 10px;
        top: 10px;
        cursor: pointer;
        z-index: 10;
    }

        .header__profile-close svg path {
            stroke: #000 !important;
        }
}

@media (max-width: 767px) {
    .applications-item {
        padding: 10px;
        display: -ms-grid;
        display: grid;
        min-width: 100%;
        -ms-grid-columns: 1fr 10px 1fr;
        grid-template-columns: 1fr 1fr;
        gap: 20px 10px;
    }

    .applications__items {
        padding: 0;
    }

    .applications-block-items {
        padding: 5px;
    }

    .applications__items {
        max-width: 100%;
        overflow-y: auto;
    }

    /* Оба блока .header__profile ниже раньше были объявлены порознь
       с разными свойствами — сведены в одно правило. */
    .header__profile {
        font-size: 20px;
        margin-right: 0;
        height: 50px;
        padding: 10px 20px;
    }

        .header__profile.active {
            border-radius: 10px 10px 0 0;
        }

        .header__profile svg {
            width: 30px;
            height: 30px;
            min-width: 30px;
        }

    .header-profile__block {
        width: 100%;
        border-radius: 0 0 10px 10px;
    }

    .header__contacts svg {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .__select__title {
        font-size: 11px;
    }

    .application-vip__item.sliderui {
        margin-bottom: 20px;
    }

    .application-vip__menudrop {
        margin-bottom: 20px;
    }

    .application-vip__item {
        margin-bottom: 20px;
    }

    .application-vip__body {
        padding-bottom: 0;
    }

    .application-vip__next {
        width: 100%;
        max-width: 350px;
    }

    .application-vip__item .application-vip__input.file label {
        font-size: 10px;
    }

    .application-vip__footer {
        padding: 20px;
    }

        .application-vip__footer.active {
            padding-top: 30px;
        }

    .application-vip__checkboxs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

@media (max-width: 550px) {
    .send-to-bank-buttons {
        flex-direction: column !important;
        gap: 15px !important;
    }

    .new-banks-list {
        left: -30px !important;
    }
}

.confirm__email {
    margin-top: 18%;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}

.confirm-delete {
    /*display: flex;*/
    text-align: center;
    vertical-align: middle;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 55px;
}

    .confirm-delete .font-1 {
        text-align: center;
        vertical-align: middle;
        font-weight: 400;
    }

        .confirm-delete .font-1 div {
            font-weight: bold;
            font-size: 14px;
            margin: 10px 0px;
        }

.appVersion {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

    .appVersion input {
        text-align: center;
    }

/*.ajax_loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
*/
.ajax_loader svg path,
.ajax_loader svg rect {
    fill: #0E8C1A;
}


.img-wrapper img {
    max-width: 100%;
}

.modal-files-wrapper {
    position: fixed;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    top: 0;
    background: rgba(0, 0, 0, 0.07);
    backdrop-filter: 3px;
}

.modal-files {
    width: min-content;
    padding: 30px;
    border-radius: 20px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05), 0px 5px 25px rgba(0, 0, 0, 0.07);
}

    .modal-files button {
        padding: 20px;
        width: 368px;
        background: rgba(241, 128, 82, 1);
        font-size: 15px;
        color: white;
        border-radius: 100px;
    }

    .modal-files .title {
        font-size: 24px;
        font-weight: 600;
        color: rgba(34, 34, 34, 1);
        text-align: center;
        margin-bottom: 15px;
    }

    .modal-files .subtitle {
        font-size: 15px;
        color: rgba(153, 153, 153, 1);
        text-align: center;
        margin-bottom: 15px;
    }

.page404 {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .page404 h1 {
        font-size: 120px;
        border-right: 3px solid black;
        padding-right: 30px;
        margin-right: 30px;
        font-weight: bold;
    }

    .page404 .title a {
        color: #0E8C1A;
        cursor: pointer;
    }

.applications-item-hightlight {
    background-color: antiquewhite;
}

.onlyNew-type {
    background: #FFFFFF;
    border: 2px solid #EEEEEE;
    border-radius: 7px;
    height: 50px;
    font-family: 'Inter Tight';
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 50px;
    width: 49%;
    padding-left: 10px;
    color: #333333;
    display: flex;
    align-items: center;
}

    .onlyNew-type:hover {
        border: 2px solid #0E8C1A;
    }

        .onlyNew-type:hover .radioBtn {
            width: 20px;
            height: 20px;
            border: 1px solid #0E8C1A;
            border-radius: 50px;
        }

.applications__searchs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    justify-content: stretch;
}

.search-block {
    height: 40px;
    position: relative;
    flex-grow: 1;
}

    .search-block .search-btn {
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.header__logo img {
    max-height: 35px;
}

#adminPanelTable th, #adminPanelTable td {
    border: solid 1px black;
}

#adminPanelTable {
    border-spacing: 0px;
    width: 100%
}

    #adminPanelTable td {
        padding: 3px;
    }


.confirm-post {
    /*display: flex;*/
    text-align: center;
    vertical-align: middle;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 55px;
}

    .confirm-post .font-1 {
        text-align: center;
        vertical-align: middle;
        font-weight: 400;
    }

        .confirm-post .font-1 div {
            font-weight: bold;
            font-size: 14px;
            margin: 10px 0px;
        }

.bank-node {
    position: relative;
}

    .bank-node div div {
        padding-right: 15px;
    }

.bank-notification-count {
    border-top-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    background: red;
    height: 18px;
    width: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: white !important;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    line-height: normal;
    position: absolute;
    top: 0px;
    right: 0px;
}

.all-notifications {
    float: right;
}

    .all-notifications div {
        position: absolute;
        right: 0;
        margin-right: 5px;
        text-decoration: underline;
        font-weight: bold;
    }

.auth-form__eye {
    position: absolute;
    right: 18px;
    top: 15px;
}

/* «Войти» в шапке — тот же .login__btn, что и на странице логина, но компактнее.
   Раньше правило было глобальным и задавало 50x30 (на мобиле 25x25), из-за чего
   надпись не помещалась в кнопку. */
.header .login__btn {
    height: 36px;
    padding: 8px 24px;
    font-size: 14px;
    margin-right: 24px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .header .login__btn {
        height: 32px;
        padding: 6px 18px;
        margin-right: 0;
    }

    .header__contacts {
        margin-top: 20px;
    }

    .greeting-label {
        margin-left: 0px;
    }
}

.modal-content {
    border-radius: 1.5rem;
    border:1px solid green;
}
