@import url("../fonts/stylesheet.css");


#loading {
    position: fixed; /* Фиксированное позиционирование, чтобы оставаться на экране */
    top: 50%; /* На 50% от верхней границы */
    left: 50%; /* На 50% от левой границы */
    transform: translate(-50%, -50%); /* Сдвигаем на половину ширины и высоты */
    display: flex; /* Включаем flex для центрирования содержимого */
    justify-content: center; /* Центрируем спиннер */
    align-items: center; /* Центрируем спиннер */
    z-index: 1000; /* Чтобы индикатор был над другими элементами */
}

.spinner {
    border: 8px solid #f3f3f3; /* Цвет фона */
    border-top: 8px solid #3498db; /* Цвет спиннера */
    border-radius: 50%;
    width: 50px; /* Ширина */
    height: 50px; /* Высота */
    animation: spin 1s linear infinite; /* Анимация */
}

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

#feedbackModal .rating-btn {
    background-color: #06A1AE !important;
    border-color: #06A1AE;
    font-size: 16px;
    font-weight: 700;
    width: 32px;
    padding: 0.2rem 0;
    color: #fff;
    border-radius: 0.5rem;
}

#feedbackModal .rating-btn.not-selected {
    background-color: #E9E5E3 !important;
    border-color: #E9E5E3;
}

#feedbackModal .rating-btn.selected {
    background-color: #06A1AE !important;
    border-color: #06A1AE;
}

#feedbackModal .rating-btn.not-selected.selected {
    background-color: #E9E5E3 !important;
    border-color: #E9E5E3;
}

#feedbackModal .modal-header {
    border-bottom: none !important;
}
#feedbackModal .modal-content {
    background-color: #fff;
}
/* #feedbackModal, #offcanvasEdit .form-control {
    border: 2px solid #E7E7E7 !important;
    box-shadow: none !important;
} */
#offcanvasEdit .select2-selection__rendered {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    opacity: 50%;
}
#offcanvasEdit .select2-selection__arrow {
    top: 5px;
}
#feedbackModal .text-label {
    font-weight: 400;
    font-size: 14px;
}
#feedbackModal .rating-text {
    font-weight: 700;
    font-size: 18px;
}
#feedbackModal .btn-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 100;
}
#feedbackModal .btn-blue-green {
    border-radius: 67px;
    font-weight: 700;
    font-size: 14px;
    background-color: #06A1AE;
    color: white;
}

/* tooltips */
.tooltip-inner {
    font-size: 50px !important;
}

.offcanvas-end {
    width: 500px;
}

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

.box-shadow-none {
    box-shadow: none !important;
}

.btn-grey {
    background-color: white;
    border: 1px solid rgba(0, 162, 176, 1);
}
.btn-grey:hover {
    transition: all .3s ease;
    background-color: rgba(0, 162, 176, 1);
    color: white;
}

.border-radius-5 {
    border-radius: 5px !important;
}

.border-radius-8 {
    border-radius: 8px !important;
}

.border-radius-15 {
    border-radius: 15px !important;
}

.btn-green {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-green:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.bg-grey-form {
    background-color: #d9f1f3;
}

* {
    font-weight: 500;
    font-family: Gilroy, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, a, span, label {
    color: #2C3E50;
    margin-bottom: 0;
}

input[type="checkbox"] {
    appearance: none !important;
}
input[type="checkbox"] {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('/images/not-checked.svg');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;

    cursor: pointer;
    margin-right: 0.5rem;
}
input[type="checkbox"]:checked {
    border: none;
    background-image: url('/images/checked.svg');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
input[type="checkbox"]:checked:disabled {
    border: none;
    background-image: url('/images/checked.svg');
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
input[type="checkbox"]:checked:disabled {
    border: none;
    background-image: url('/images/checked-grey.svg') !important;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
input[type="checkbox"]:not(:checked):disabled {
    border: none;
    background-image: url('/images/not-checked-grey.svg') !important;
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

/* Чекбоксы для печати */
@media print {
    input[type="checkbox"] {
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        background-image: none !important;
        border: none !important;
        width: 20px !important;
        height: 20px !important;
        position: relative;
        display: inline-block;
        vertical-align: middle;
    }

    /* Not checked state */
    input[type="checkbox"]::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 18px;
        height: 18px;
        border: 1.5px solid rgba(128, 128, 128, 0.3);
        border-radius: 2px;
        margin: 1px;
        box-sizing: border-box;
    }

    /* Checked state */
    input[type="checkbox"]:checked::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 18px;
        height: 18px;
        border: 1.5px solid #78C2C9;
        border-radius: 2px;
        margin: 1px;
        box-sizing: border-box;
    }

    input[type="checkbox"]:checked::after {
        content: "";
        position: absolute;
        top: 4px;
        left: 3px;
        width: 12px;
        height: 7px;
        border-left: 2px solid #78C2C9;
        border-bottom: 2px solid #78C2C9;
        transform: rotate(-45deg);
        box-sizing: border-box;
    }
}

.opacity-75 {
    opacity: 75%;
}

.opacity-50 {
    opacity: 50%;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    color: #2C3E50;
    line-height: 38px;
}

h3 {
    font-weight: 700;
    font-size: 32px;
}

h5 {
    font-weight: 700;
}

h6 {
    font-weight: 700;
    font-size: 20px;
    line-height: 22px;
}

p {
    line-height: 20px;
    margin-bottom: 0 !important;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700 !important;
}

.lh-14 {
    line-height: 14px;
}

.lh-17 {
    line-height: 17px;
}

.lh-18 {
    line-height: 18px;
}

.lh-19 {
    line-height: 19px;
}
.lh-normal {
    line-height: normal;
}

.dropdown.bootstrap-select li.disabled a span {
    color: #000 !important;
    font-weight: 700 !important;
}

td.list-group .dropdown {
    margin-bottom: 0px;
}

.lh-16 {
    line-height: 16px !important;
}

.lh-23 {
    line-height: 23px;
}

.lh-24 {
    line-height: 24px;
}

.lh-25 {
    line-height: 25px;
}

.lh-26 {
    line-height: 26px;
}

.lh-28 {
    line-height: 28px;
}

.lh-30 {
    line-height: 30px;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-24 {
    font-size: 24px;
}

.fs-29 {
    font-size: 29px;
}

.fs-32 {
    font-size: 32px;
}

.text-green {
    color: #00A2B0;
}

.text-black {
    color: #2C3E50 !important;
}

.text-black-black {
    color: #000;
}

.text-black-grey {
    color: #2C3E50 !important;
}

.text-grey {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-grey-c {
    color: #CFCFCF;
}

.text-grey-light {
    color: rgba(0, 0, 0, 0.3);
}

.shadow-1 {
    box-shadow: 0px 45px 18px rgba(108, 132, 137, 0.01), 0px 25px 15px rgba(108, 132, 137, 0.03), 0px 11px 11px rgba(108, 132, 137, 0.06), 0px 3px 6px rgba(108, 132, 137, 0.07), 0px 0px 0px rgba(108, 132, 137, 0.07);
}

.shadow-2 {
    box-shadow: 0px 11px 15px rgba(3, 30, 128, 0.05);
}

.br-none {
    border: none !important;
}

.border-left {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.br-2 {
    border-radius: 2px !important;
}

.br-5 {
    border-radius: 5px;
}

.br-40 {
    border-radius: 40px;
}

.br-30 {
    border-radius: 30px;
}

.br-100 {
    border-radius: 100px !important;
}

.br-62 {
    border-radius: 62px;
}

.br-10 {
    border-radius: 10px;
}

.br-20 {
    border-radius: 20px;
}

.br-15 {
    border-radius: 15px;
}

.br-green-1 {
    border: 1px solid #00A2B0;
}

.br-green-light-2 {
    border: 2px solid #D9F1F3 !important;
}

.br-green-light-1 {
    border: 1px solid #D9F1F3;
}

.brt-green-light-2 {
    border-top: 2px solid #D9F1F3;
}

.brt-green-light-1 {
    border-top: 1px solid #D9F1F3;
}

.brb-green-light-2 {
    border-bottom: 2px solid #D9F1F3;
}

.brb-green-light-1 {
    border-bottom: 1px solid #D9F1F3;
}

.br-grey-2 {
    border: 2px solid #F2F2F2;
}

.brl-grey-2 {
    border-left: 2px solid #E6E6E6;
}

.btn-bell {
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    padding: 3px 10px;
}

.nav-link {
    font-size: 16px;
    color: #2C3E50;
    display: block;
    padding: 0;
}

.nav-link-active {
    border-bottom: 2px solid #00A2B0;
}

.nav-link:hover, .nav-link:visited, .nav-link:focus {
    color: #2C3E50;
}

.hover-shadow:hover {
    box-shadow: 0px 11px 15px rgba(3, 30, 128, 0.05);
}

.btn {
    font-weight: 500;
    line-height: 1.6;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.75rem;
}

.bg-white {
    background: #FFF;
}

.bg-lin-green {
    background: linear-gradient(270deg, #FFFFFF 0%, #EDF8F9 100%);
}

.bg-active {
    background-color: #1AE3161A;
}

.bg-block {
    background-color: #FDEEEE;
}

.bg-green {
    background-color: #EDF8F9;
}

.bg-green-dark {
    background-color: #00A2B0;
}

.bg-black {
    background-color: #27272E;
}

.bg-black-light {
    background-color: #3D3D43;
}

.bg-grey {
    background-color: #F1F1F1;
}

.bg-grey-light {
    background-color: #F7F7F7;
}

.bg-green-light {
    background-color: #D9F1F3 !important;
}

.badge {
    font-weight: 500;
    font-size: 12px;
    line-height: normal;
    padding: 5px 10px;
    border-radius: 60px;
    background: #D9F1F3;
    color: #2C3E50;
}

.notification-badge {
    height: 17px;
    min-width: 17px;
    border-radius: 100px;
    padding: 4px;
    background: #D9F1F3;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 12px;
    z-index: 1000;
}
.out-kod .badge {
    display: flex;
    align-items: center;
}

.badge-clean-all {
    font-weight: 500;
    font-size: 12px;
    line-height: 14px;
    padding: 5px 10px;
    border-radius: 60px;
    background: #fff;
    color: #2C3E50;
    align-self: center;
    flex-shrink: 0;
    white-space: nowrap;
    border: 1px solid #00A2B0;
}
.out-kod {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: #00A2B0;
}

.list-custom ul {
    list-style-type: none;
}

.list-custom ul li {
    padding-left: 2.8rem;
    background-image: url(../images/check-ul.svg);
    background-position: 0 0;
    background-size: 25px 25px;
    background-repeat: no-repeat;
}

.list-custom-green ul {
    list-style-type: none;
}

.list-custom-green ul li {
    padding-left: 2.8rem;
    background-image: url(../images/list-check-green.svg);
    background-position: 0 0;
    background-size: 25px 25px;
    background-repeat: no-repeat;
}

.card-img-top {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.btn-primary, .btn-primary:active, .btn-primary:focus {
    color: #fff;
    background-color: #00A2B0;
    border-color: #00A2B0;
}

.btn-primary:hover {
    color: #fff;
    background-color: #00A2B0;
    border-color: #00A2B0;
    opacity: 0.8;
}

.ellipsis-8 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.shadow-card-badge {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 80px;
}

.card-badge {
    top: 15px;
    left: 15px;
}

.card-weight {
    width: 367px;
}

.t-0 {
    top: 0;
}

.r-0 {
    right: 0;
}

.l-0 {
    left: 0;
}

.b-0 {
    bottom: 0;
}

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

.list-style-none {
    list-style-type: none;
}

.block-75 {
    width: 75%;
}

.td-none {
    text-decoration: none;
}

.accordion-button:not(.collapsed) {
    color: #2C3E50;
    background-color: #EDF8F9;
}

.accordion-item:first-of-type, .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.accordion-item:last-of-type, .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("../images/up-ar-green.svg");
    transform: rotate(0);
}

.accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-image: url("../images/down-ar-green.svg");
    background-size: 1rem;
}

.form-control {
    background: #FFFFFF;
    border: 1px solid #0000001A;
    border-radius: 8px;
    padding: 12.5px 10px !important;
}
.form-control:disabled {
    background-color: #00000008;
    color: #0000004D;
}
.form-control:focus {
    border: 1px solid transparent;
    box-shadow: 0 0 0 2px #D9F1F3;
}

label {
    font-size: 14px;
}

.list-custom-1 ul {
    list-style-type: none;
    padding-left: 0;
}

.list-custom-1 ul li {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    background-position: 0 0;
    background-size: 25px 25px;
    background-repeat: no-repeat;
}

.menu .list-select {
    padding-left: 39px;
    line-height: 17px;
}

.menu .select-a {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    line-height: 17px;
    text-decoration: none;
}

.menu .select-a:hover {
    color: #00A2B0;
    transition: 0.5s;
    cursor: pointer;
}

.menu .list-select-active {
    color: #00A2B0;
    font-weight: 600;
}

.menu .accordion-button {
    color: rgba(0, 0, 0, 0.5);
    background-color: transparent;
}

.menu .accordion-button:not(.collapsed) {
    color: rgba(0, 0, 0, 0.5);
    background-color: transparent;
}

.menu .profile .accordion-button {
    background: url("../images/profile-icon-grey.svg") no-repeat left;
}

.menu .profile .accordion-button:not(.collapsed) {
    background: url("../images/profile-icon.svg") no-repeat left;
}

.menu .setting .accordion-button {
    background: url("../images/settings-l.svg") no-repeat left;
}

.menu .setting .accordion-button:not(.collapsed) {
    background: url("../images/settings.svg") no-repeat left;
}

.menu .work .accordion-button {
    background: url("../images/Users_Group-l.svg") no-repeat left;
}

.menu .work .accordion-button:not(.collapsed) {
    background: url("../images/Users_Group.svg") no-repeat left;
}

.menu .portfolio .accordion-button {
    background: url("../images/User_Card_ID-l.svg") no-repeat left;
}

.menu .portfolio .accordion-button:not(.collapsed) {
    background: url("../images/User_Card_ID.svg") no-repeat left;
}

.menu .accordion-item {
    background-color: transparent;
    border: none;
}

.menu .accordion-item:first-of-type, .accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.menu .accordion-item:last-of-type, .accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.menu .accordion-button:not(.collapsed)::after {
    background-image: url("../images/menu.svg");
    transform: rotate(180deg);
}

.accordion-button::after {
    width: 25px;
    height: 25px;
    background-image: url("../images/menu_light.svg");
    background-size: 25px;
}

.text-grey-hover:hover {
    color: rgba(0, 0, 0, 0.5);
}

.text-green-hover:hover {
    color: #00A2B0;
}

.text-black-hover:hover {
    color: #2C3E50;
}

/* Модальные окна создания */
.create-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    position: fixed;
}

.menu {
    height: max(140vh, 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
html {
    height: 100%;
}
.bg-grey-form {
    background-color: #F2F2F2 !important;
    border-radius: 5px;
    box-shadow: none !important;
    border: 1px solid #D9F1F3;
}

.bg-grey-form:active, .bg-grey-form:focus {
    border: 1px solid #00A2B0;
    background-color: #FFF !important;
}

.form-control:disabled, .form-control[readonly].bg-grey-form {
    background-color: #00000008 !important;
}

.btn-secondary, .btn-secondary:active, .btn-secondary:focus {
    color: #2C3E50;
    background-color: #D9F1F3;
    border-color: #78C2C9;
    border-radius: 5px;
}

.btn-secondary:hover {
    color: #2C3E50;
    background-color: #D9F1F3;
    border-color: #78C2C9;
    opacity: 0.8;
}

.password {
    position: relative;
}

.password-control {
    position: absolute;
    top: 8px;
    right: 6px;
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url("../images/Show.svg") 0 0 no-repeat;
}

.password-control.view {
    background: url("../images/Hide.svg") 0 0 no-repeat;
}

.copy_btn {
    background-image: url("../images/Copy_active.svg");
    background-repeat: no-repeat;
    background-position: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left: none;
}

.copy_btn:hover, .copy_btn:active {
    background-image: url("../images/Copy_active.svg");
}

.form-copy:disabled, .form-copy[readonly] {
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-color: #FFF;
    box-shadow: none !important;
    font-size: 14px;
    border-right: none;
    border-radius: 10px;
    color: rgba(0, 0, 0, 0.5);
}

.ww-break {
    word-wrap: break-word;
}

.close-badge {
    background-image: url("../images/Close_SM.svg");
    background-repeat: no-repeat;
    background-position: center;
    padding: 0.4rem 0.4rem;

}

.vkr-form {
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: none !important;
    border: 1px solid #D9F1F3;
}

.vkr-form:active, .vkr-form:focus {
    border: 1px solid #00A2B0;
}

.btn-minus {
    background-image: url("../images/Minus.svg");
    background-repeat: no-repeat;
    background-size: contain;
    height: 29px;
    padding: 0 14px;
}

.btn-plus {
    background-image: url("../images/Plus.svg");
    background-repeat: no-repeat;
    background-size: contain;
    height: 29px;
    padding: 0 14px;
}

.form-control-minute-custom {
    width: 30px;
    padding: 3.5px 0 !important;
    background-color: transparent !important;
    color: rgba(0, 0, 0, 0.5);
    border: none;
}

.form-check-input.green {
    border: 2px solid #D9F1F3;
    box-shadow: none !important;
}

.form-check-input.green:checked {
    background-color: #fff;
    border-color: #D9F1F3;
}

.form-check-input.green:checked[type=radio] {
    background-image: url("../images/green.svg");
    background-size: 8px 8px;
}

.cursor-p {
    cursor: pointer;
}

.page-link {
    color: rgba(120, 194, 201, 0.45);
    background-color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
}

.page-item.active .page-link {
    color: #00A2B0;
    background-color: #fff;
    border-color: #fff;
}

.page-link:hover {
    color: #00A2B0;
    background-color: #fff;
    border-color: #fff;
}

.page-link:focus {
    color: #fff;
    background-color: #fff;
    box-shadow: none;
}

.p-btn {
    padding: 0.3rem 1rem;
}

.org_copy_delete,
.org_copy_btn,
.org_copy_edit {
    padding: 0 0.4rem;
    box-shadow: none !important;
}

.org_copy_delete:hover svg path,
.org_copy_btn:hover svg path,
.org_copy_edit:hover svg path,
.org_copy_delete:active svg path,
.org_copy_btn:active svg path,
.org_copy_edit:active svg path {
    stroke: #00A2B0 !important;
    stroke-opacity: 1;
}

.copy_edit {
    background-image: url("../images/Edit_Pencil.svg");
    background-repeat: no-repeat;
    background-position: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left: none;
}

.faculties_list {
    display: none !important;
}

.copy_edit:active, .copy_edit:hover{
    background-image: url("../images/Edit_Pencil_Blue.svg");
}

.copy_delete {
    background-image: url("../images/Trash_Full.svg");
    background-repeat: no-repeat;
    background-position: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-left: none;
}

.edit_block, .copy_box {
    display: none;
}

.w-40 {
    width: 40px;
}

.btn-close {
    background: transparent url("../images/Close_MD.svg") center/1em auto no-repeat
}
.select2-py-9 + .select2.select2-container .select2-selection__rendered {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    font-size: 14px;
}
.select2-py-8 + .select2.select2-container .select2-selection__rendered {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    font-size: 14px;
}
.select2-py-5 + .select2.select2-container .select2-selection__arrow {
    top: 7px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #D9F1F3;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.03);
    height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    padding: 9px 5px 9px 10px;
}
.white-select2 + .select2 .select2-selection__rendered {
    background-color: white;
    color: #2C3E50;
}
.white-select2 + .select2 .select2-selection--single, .select2 .select2-selection__rendered {
    border-radius: 8px;
}
.white-select2 + .select2 .select2-selection__placeholder {
    color: #0000004D !important;
}
.br-select-2 + .select2 .select2-selection--single {
    border: 2px solid #D9F1F3
}
.select2-selection__choice {
    padding: 0.3rem 0.2rem 0.3rem 8px !important;
    display: inline-flex !important;
    flex-direction: row-reverse !important;
    background-color: #D9F1F3 !important;
    border-radius: 100rem !important;
    border: none !important;
}
.select2-selection__choice span.select2-selection__choice__display {
    color: #2C3E50 !important;
    font-size: 12px !important;
}
.select2-selection__choice .select2-selection__choice__remove span {
    color: #00A2B0 !important;
    font-size: 12px !important;
    background-color: #fff !important;
    padding: 0 0.3rem 2px 0.3rem !important;
    border-radius: 100rem !important;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    position: relative !important;
    border-right: none !important;
    padding: 0 0.3rem !important;
    font-size: 12px !important;
    border-radius: 100rem !important;
    margin-top: -1px;
    background-color: #D9F1F3 !important;
}
.select2-container--default .select2-selection--multiple {
    border: 1px solid #0000001A;
}
.select2-selection__clear span {
    color: #00A2B0;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #0000001A !important;
}
.select2-dropdown {
    border: 1px solid #0000001A !important;
    border-top: none !important;
}
.select2-container--default .select2-results__option--selected {
    background-color: #D9F1F3 !important;
}
.select2-results__option {
    font-size: 14px;
    color: #2C3E50 !important;
}
.select2-results__option:hover {
    color: #2C3E50 !important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #F7F7F7 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11px;
}
.select2-search__field {
    font-size: 14px !important;
    line-height: 19px;
    opacity: 30%;
}

.select2-dropdown {
    border: 1px solid #D9F1F3;
    margin-top: 10px;
    border-radius: 10px;
    font-size: 14px;
}

.select2-search--dropdown {
    padding: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #D9F1F3;
    background-color: #F7F7F7;
    display: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus-visible {
    outline: none;
}

.select2-container--default .select2-results__option--selected {
    background-color: #D9F1F3 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #D9F1F3;
    color: #2C3E50;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: whitesmoke;
    color: #2C3E50;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar {
    width: 4px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-track {
    background: #D9F1F3;
    border-radius: 10px;
}

.select2-container--default .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
    background-color: #00A2B0;
    border-radius: 10px;
    border: 0px solid #FFFFFF;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border: solid rgba(0, 0, 0, 0.3);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-top: -1px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: solid rgba(0, 0, 0, 0.3);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-top: -5px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 10px;
}

.link-offcanvas.active,
.link-offcanvas.active div {
    border-bottom: 2px solid #00A2B0;
    padding-bottom: 3px;
    margin-bottom: -2px;
    line-height: normal;
}
.link-offcanvas div {
    line-height: normal;
}

.link-offcanvas:hover {
    color: #2C3E50;
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #CFCFCF;
    background-color: #F2F2F2;
    border-color: #F2F2F2;
}

.link-active-hover:hover {
    color: #00A2B0 !important;
}

.form-control.search {
    border-radius: 8px 0px 0px 8px;
    font-size: 16px;
    box-shadow: none !important;
    font-weight: 500;
    line-height: 20px;
    padding: 12px 20px !important;
}
.form-control.search::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.form-small-p {
    padding: 0.3rem 1rem !important;
}

.bg-white .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 2px solid #D9F1F3;
    /*border-radius: 100px;*/
}

.bg-white .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: solid #00A2B0;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-top: -5px;
}

.bg-white .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border: solid #00A2B0;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-top: -1px;
}

.bg-white_1 .select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 2px solid #D9F1F3;
}

.bg-white_1 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: solid #00A2B0;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-top: -5px;
}

.bg-white_1 .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border: solid #00A2B0;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-top: -1px;
}

.form-control.green {
    background: #FFFFFF;
    border: 2px solid #D9F1F3;
    border-radius: 100px;
    box-shadow: none !important;
}

.offcanvas .form-control {
    border-radius: 5px;
    border: 1px solid #0000001A;
    padding: 5px 10px !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
}
.offcanvas .form-control::placeholder {
    color: #00000080;
}

.big-table {
    overflow-x: hidden;
    width: 100%;
}

.overflow-x-visible {
    overflow-x: visible !important;
}
.green-c {
    width: 5px;
    height: 5px;
    border-radius: 100px;
    background-color: #27AE60;
}

.orange-c {
    width: 5px;
    height: 5px;
    border-radius: 100px;
    background-color: #F2994A;
}

.red-c {
    width: 5px;
    height: 5px;
    border-radius: 100px;
    background-color: #EB5757;
}

.bg-warning-c {
    background-color: rgba(242, 153, 74, 0.1);
}

.big-table th, .big-table td {
    border: none;
}

.big-table::-webkit-scrollbar {
    width: 4px;
}

.big-table::-webkit-scrollbar-track {
    background-color: #D9F1F3;
    border-radius: 100px;
}

.big-table::-webkit-scrollbar-thumb {
    background-color: #00A2B0;
    border-radius: 100px;
}

.info-box {
    border: 1px solid #D9F1F3 !important;
    border-radius: 15px !important;
    width: 350px !important;
    /*padding: 1rem !important;*/
    /*bottom: 2% !important;*/
    right: 3% !important;
}
.info-box .infobox-menu-item:hover p {
    color: #00A2B0 !important;
}
.info-box .infobox-menu-item:hover svg path {
    stroke: #78C2C9 !important;
    stroke-opacity: 1;
}

.bg-error {
    background-color: #f8d7da; /* Красный цвет фона для ошибок */
}

.bg-waiting {
    background-color: #E3C2161A;
}

.deleted {
    background-color: #E316161A;

}

.brt-black-grey {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
}

input[name="daterange"]::placeholder {
    font-size: 14px;
    font-weight: 500 !important;
    color: rgba(0, 0, 0, 0.5);
}
.daterangepicker td.available:hover {
    background: #D9F1F3;
}

.daterangepicker td.in-range {
    background: #D9F1F3;
}

.daterangepicker td.active, .daterangepicker td.active:hover {
    background-color: #00A2B0AB;
}

.daterangepicker .calendar-table th {
    color: rgba(0, 0, 0, 0.3);
}

.daterangepicker th.month {
    color: rgba(0, 0, 0, 0.5);
    font-size: 14px;
}

.available {
    color: rgba(0, 0, 0, 0.5) !important;
}

.drp-buttons {
    display: none !important;
}

.drp-calendar.left {
    border-radius: 20px 0px 0px 20px;
    border: 1px solid #D9F1F3;
}

.drp-calendar.right {
    border-radius: 0px 20px 20px 0px;
    border: 1px solid #D9F1F3;
}

.daterangepicker {
    border: none;
}

.daterangepicker.opensleft:after, .daterangepicker:before {
    border: none;
}

.daterangepicker .calendar-table .next span, .daterangepicker .calendar-table .prev span {
    border: solid #D9F1F3;
    border-width: 0 1px 1px 0;
}

.daterangepicker, .daterangepicker:focus-visible, .daterangepicker:focus, .daterangepicker:active, .daterangepicker:target {
    border: transparent !important;
}

input {
    border: 0;
    outline: none;
}

input::placeholder {
    opacity: 70% !important;
}

#faculties_list,
#years_list,
#departments_list,
#programs_list {
    max-height: 420px;
    overflow-y: auto;
}

#faculties_list .row:hover,
#years_list .row:hover,
#departments_list .row:hover,
#programs_list .row:hover {
    background-color: #EDF8F9;
}

.blue-scroll::-webkit-scrollbar {
    width: 4px;
    padding-right: 10px;
}

.blue-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.blue-scroll::-webkit-scrollbar-thumb {

    background: linear-gradient(90deg, #D9F1F3 0%, #78C2C9 100%);
    border-radius: 5px;
    border: 0 solid #FFFFFF;
}

.blue-scroll::-webkit-scrollbar-button {
    display: none;
}

.p-date {
    padding: 0.3rem 0;
}

.out-kod {
    display: none;
}

span.current {
    color: #00A2B0;
    background-color: #fff;
    border-color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: .375rem .75rem;
    display: block;
}

.custom_pagination ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin-bottom: 0;
}

.header {
    cursor: pointer;
}

.header.dropdown-menu {
    background: #2C3E50;
    margin-top: 8px;
    left: auto;
    right: 0;
}

.header .dropdown-item {
    background: transparent;
}

.header.dropdown-menu li {
    padding: 10px 30px 10px 20px;
    border-bottom: 1px #333 solid;
}

.header.dropdown-menu li.organization-info {
    background: #005477;
    color: #D7F5FF;
}

.header.dropdown-menu li:hover {
    background: #199AB5;
}

.header.dropdown-menu a {
    clear: both;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 300;
    white-space: inherit;
    line-height: 1;
    text-decoration: none !important;
}

#tabs-list .nav-item .nav-link {
    padding: 10px 15px;
    font-size: 16px;
    background-color: transparent;
}

#tabs-list .nav-item .nav-link.active {
    background-color: #78C2C9;
    color: white;
}

#tabs-list.nav-tabs {
    border-bottom: 1px solid #78C2C9;
}

/* bs-select */
.selectpicker-py-10 + .btn.dropdown-toggle.btn-light {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.selectpicker-py-5 + .btn.dropdown-toggle.btn-light {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
.selectpicker-py-12 + .btn.dropdown-toggle.btn-light {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}
.selectpicker-border-radius-5 + .btn.dropdown-toggle.btn-light {
    border-radius: 5px;
}

.btn.dropdown-toggle.btn-light {
    background-color: white;
    border: 1px solid #0000001A;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400 !important;
    padding: 12.5px 10px;
    line-height: 18.57px;
}

.dropdown-item.selected.active {
    background: #D9F1F3;
}

.dropdown-item:active {
    background: #e9ecef;
    color: #1e2125;
}

.filter-option-inner-inner {
    font-weight: 400;
    line-height: 19px;
}

@media (min-width: 1200px) {
    .nav-link {
        padding-right: 1rem !important;
        padding-left: 1rem !important;
    }
}

@media (max-width: 1199px) {
    .nav-link {
        padding-right: 0.4rem !important;
        padding-left: 0.4rem !important;
    }

    .big-table {
        overflow-x: scroll;
    }
}

@media (max-width: 992px) {
    .nav-link {
        padding-bottom: 0.3rem;
        padding-top: 0.7rem;
    }

    .navbar-nav {
        padding-left: 1.2rem;
        padding-bottom: 2rem;
    }

    header nav .dropdown-menu.show {
        box-shadow: none !important;
    }

    .block-75 {
        width: 100%;
    }

    .menu {
        height: 100%;
    }

    .menu-custom-lenght {
        height: 90.7vh;
    }
}

@media (max-width: 767px) {
    .menu-custom-lenght {
        height: 100%;
    }
}

@media (max-width: 430px) {
    .fs-m h2 {
        font-size: 30px;
        line-height: 26px;
    }
}

.border-radius-0 {
    border-radius: 0 !important;
}

.mx-20 {
    margin-left: 20px;
    margin-right: 20px;
}

.mt-20 {
    margin-top: 20px;
}
.mt-10 {
    margin-top: 10px;
}

.pt-10 {
    padding-top: 10px;
}
.pb-10 {
    padding-bottom: 10px;
}

.my-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}
.p-10 {
    padding: 10px !important;
}

.px-10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.border-radius-8 {
    border-radius: 8px !important;
}


.py-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

.py-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}
.py-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
}

.py-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.py-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
}

.py-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.py-14 {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
}

.py-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
}

.py-26 {
    padding-top: 26px !important;
    padding-bottom: 26px !important;
}

.pe-20 {
    padding-right: 20px;
}

.ps-20 {
    padding-left: 20px;
}

.pt-20 {
    padding-top: 20px;
}

.mt-36 {
    margin-top: 36px;
}

.mb-36 {
    margin-bottom: 36px;
}

.pb-20 {
    padding-bottom: 20px;
}

.px-12 {
    padding-left: 12px;
    padding-right: 12px;
}

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

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

.bg-none {
    background: none;
}

.bg-yellow {
    background-color: #E3C2161A;
}

.close-button {
    position: absolute;
    top: 16px;
    right: 16px;
}

.lh-0 {
    line-height: 0;
}
.lh-20 {
    line-height: 20px;
}

.input-with-button {
    border-radius: 5px 0 0 5px;
    border-width: 1px 0 1px 1px;
    border-style: solid;
    border-color: #0000001A;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    padding: 8px 10px 8px 10px !important;
}
.input-with-button::placeholder {
    opacity: 40%;
}

.button-with-input {
    background: #D9F1F3;
    padding: 7px 10px !important;
    border-radius: 0 8px 8px 0;
    gap: 10px;
}
.gap-20 {
    gap: 20px;
}

.bg-light {
    background-color: #D9F1F3 !important;
}
.bg-light-30 {
    background-color: #EDF8F966 !important;
}
.br-light {
    border-width: 2px, 0px, 2px, 0px; border-style: solid; border-color: #D9F1F3;
}

.card-document {
    position: relative;
    border: 2px solid #D9F1F3;
    border-radius: 15px;
    padding: 1rem;
}
.card-document a {
    color: #00A2B0;
}
.card-document .text-grey {
    font-weight: 400;
}
.card-document:hover {
    border: 2px solid transparent;
    box-shadow: 0 0 0 1px #00A2B0;
    background-color: #EDF8F9;
}
p.list-select-active a {
    color: #00A2B0 !important;
}
p.list-select-active svg path {
    stroke: #78C2C9;
    stroke-opacity: 1;
}
.navbar .dropdown-menu.show {
    width: fit-content;
    min-width: 5rem;
    top: 2rem;
    border: 1px solid #D9F1F3;
    border-radius: 1rem;
}
.navbar .dropdown-toggle::after {
    display: none;
}
.btn.dropdown-toggle {
    box-shadow: none !important;
}
.int-form {
    background-color: #fff !important;
    border: 1px solid #0000001A !important;
}
.input-group.integration .btn {
    border: 1px solid #0000001A;
    border-left: none;
    box-shadow: none !important;
    padding: 0 0.6rem;
    background-color: #fff;
}
.input-group.gr-form .btn {
    border: 2px solid #D9F1F3;
    border-left: none;
    box-shadow: none !important;
    padding: 0 0.6rem;
    background-color: #fff;
}
.input-group.integration .int-form {
    border-right: none !important;
}
.api-form,
.api-form:focus {
    background-color: #fff !important;
    padding: 0.4378rem 1rem !important;
    border: 2px solid #D9F1F3 !important;
    box-shadow: none !important;
}
.input-group.gr-form .btn {
    border: 2px solid #D9F1F3;
    border-left: none;
    box-shadow: none !important;
    padding: 0 0.6rem;
    background-color: #fff;
}
.input-group .api-form {
    border-right: none !important;
}
.brr-none {
    border-right: none !important;
}
hr {
    background-color: #0000001A;
    opacity: 1;
    flex-shrink: 0;
}
.handbook-form {
    padding: 0.15rem 1rem !important;
}
.input-group.handbook .btn {
    border-radius: 0 0.5rem 0.5rem 0;
}
.input-group.handbook input::placeholder {
    font-size: 14px;
}
@media(max-width: 1700px) {
    .parent {
        overflow-x: scroll;
        padding-top: 30px;
        padding-bottom: 30px;
        transform: rotate(180deg);
    }
    .child {
        width: 1524px;
        transform: rotate(180deg);
    }
    /* .child .child-item {
        width: 331px;
    } */

    .parent::-webkit-scrollbar {
        height: 6px;
        width: 4px;
        padding-right: 10px;
    }

    .parent::-webkit-scrollbar-track {
        background: transparent;
    }

    .parent::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, #D9F1F3 0%, #78C2C9 100%);
        border-radius: 5px;
        border: 0 solid #FFFFFF;
    }

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

#update_name_form .button-with-input {
    padding-right: 30px !important;
    padding-left: 30px !important;
}

#inspectors_access_modal, #configure_user_departments, #update_work_specialty_modal,
#update_work_modal, #add_work_modal, #import_work_modal, #work_info_student, #add_achievement, #edit_achievement {
    width: 700px;
}

#user_works_modal, #report_modal, #report_modal_print, #portfolio_offcanvas, #add_education,
#edit_education {
    width: 800px;
}
#you_portfolio #portfolio_offcanvas {
    width: auto !important;
}
#report_modal, #report_modal_print, #report_borrowings_offcanvas {
    width: 900px;
}

#report_modal_print {
    z-index: 2000 !important;
}

#configure_specialties_container, #users_configure_specialties_container {
    overflow-y: scroll;
    max-height: 450px;
    display: none;
}
.buttons-block {
    display: none;
}

.border-green-1 {
    border: 1px solid #00A2B0
}
.border-green-2 {
    border: 2px solid #00A2B0
}

.gap-10 {
    gap: 10px;
}

.bg-grey-custom {
    background-color: #0000000D;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: none !important;
}

.form-modal .bootstrap-select .dropdown-menu li a {
    font-size: 14px !important;
}
.dropdown-toggle::after {

}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: url("/images/Caret_Down_MD.svg") !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-bottom: 0 !important;
    border-left: 0 !important;
}
.inner.show::-webkit-scrollbar {
    width: 8px;
}

.inner.show::-webkit-scrollbar-track {
    background: #D9F1F3;
    border-radius: 4px;
}

.inner.show::-webkit-scrollbar-thumb {
    background: #00A2B0;
    border-radius: 4px;
}

.inner.show::-webkit-scrollbar-thumb:hover {
    background: #018994;
}


.fancytree-node .fancytree-expander {
    cursor: pointer;
    display: inline-block;
    width: 16px;
    height: 16px;
    background: url("/images/chevron-down.svg") center center no-repeat;
    background-size: 18px;
}

.fancytree-node.expanded .fancytree-expander {
    transform: rotate(180deg);
    background: url("/images/chevron-down.svg") center center no-repeat;
    background-size: 18px;
}

.fancytree-node:not(.has-children) .fancytree-expander {
    display: none;
}

.delete-comment-icon:hover path {
    stroke: #00A2B0;
    stroke-opacity: 1;
}

#portfolio_offcanvas .list-group-item,
.portfolio_offcanvas .list-group-item {
    padding: 0;
    border: none;
}
#portfolio_offcanvas .list-group-item,
.portfolio_offcanvas .list-group-item{
    color: #00A2B0 !important;
    text-decoration: underline !important;
    cursor: pointer;
    font-size: 12px;
    line-height: normal;
}
#portfolio_offcanvas .dropdown-menu li a,
.portfolio_offcanvas .dropdown-menu li a {
    margin-left: auto;
    margin-right: auto;
    font-size: 12px
}
#portfolio_offcanvas .dropdown-menu li a:hover,
.portfolio_offcanvas .dropdown-menu li a:hover {
    color: #00A2B0 !important;
    cursor: pointer;
}
#portfolio_offcanvas .dropdown-menu li,
.portfolio_offcanvas .dropdown-menu li a:hover{
    display: flex;
}

@media print {
    .portfolio_offcanvas.offcanvas-body {
        overflow-y: unset !important;
    }
    .portfolio_offcanvas button {
        display: none;
    }
    .portfolio_offcanvas.offcanvas-footer {
        display: none;
    }
    .portfolio_offcanvas table th:last-child,
    .portfolio_offcanvas table td:last-child {
        display: none;
    }
    .print-hide {
        display: none !important;
        opacity: 0 !important;
    }
    #report_modal_print .offcanvas-body {
        overflow-y: unset !important;
    }
    #report_modal_print .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .certificate-container {
        padding-left: 5px;
        padding-right: 5px;
    }

    table tr td,
    table tr th {
        font-size: 11px !important;
    }

    hr {
        height: 0px !important;
        display: none !important;
        margin: 0 !important;
    }

    .certificate-container h2.certificate-h2 {
        margin-top: 0px !important;
        font-size: 26px !important;
    }
    .certificate-container h3.certificate-h3 {
        margin-top: 0px !important;
        font-size: 16px !important;
    }
    table.table-bordered.table-condensed thead tr th,
    table.table-bordered.table-condensed tbody tr td {
        padding: 2px 5px !important;
    }
    .print-content.report-modal-content {
        padding: 16px 16px 0;
    }
    .certificate-text {
        margin-top: 5px !important;
    }
    .certificate-uniqueness-text {
        font-size: 20px !important;
    }
    table.certificate-table {
        margin-top: 5px !important;
    }
}

.certificate-table {
    margin-top: 24px;
}
.certificate-uniqueness-text {
    font-size: 28px;
    margin-bottom: 10px;
}
.certificate-text {
    margin-top: 16px;
}
.certificate-h2 {
    margin-top: 48px;
}
#report_modal_print .table.table-bordered.table-condensed {
    margin-top: 16px;
}

.download .portfolio_offcanvas.offcanvas-body {
    overflow-y: unset !important;
}
.download .portfolio_offcanvas button {
    display: none;
}
.download .portfolio_offcanvas.offcanvas-footer {
    display: none;
}
.download .portfolio_offcanvas table th:last-child,
.download .portfolio_offcanvas table td:last-child {
    display: none;
}
#portfolio_offcanvas.download {
    position: static !important;
    border-left: none;
}

.btn-absolute {
    top: 1rem;
    right: 1rem;
}

.btn.dropdown-toggle.disabled.btn-light {
    background-color: #00000008 !important;
    border: 1px solid #0000001A !important;
}

/* custom file input */
.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(1.6em + 0.75rem + 2px);
    margin-bottom: 0;
}
.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5px 10px;
    margin: 0;
    overflow: hidden;
    opacity: 0;
}
.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 31px;
    padding: 3px 10px;
    overflow: hidden;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.5);;
    background-color: #fff;
    border: 1px solid #78C2C9;
    border-radius: 5px;
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(1.6em + 0.75rem);
    padding: 3px 10px;
    line-height: 1.6;
    color: #2C3E50;
    content: "Выберите файл";
    background-color: #D9F1F3;
    border-left: inherit;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    font-weight: 500;
}

.daterangepicker td.active {
    background: #D9F1F3 !important;
    font-weight: 700 !important;
}

.auth-nav a.nav-link {
    padding: 10px 5px !important;
    font-size: 16px !important;
}
.auth-nav {
    gap: 10px;
}

.border-top-1 {
    border: 1px solid grey;
    border-width: 1px 0 0 0;
}

.certificate-container {
    padding-left: 48px;
    padding-right: 48px;
}

.h-44 {
    height: 44px !important;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #D9F1F3;
}

.dropdown-menu.info-box[data-popper-placement="bottom-start"],
.dropdown-menu.info-box[data-popper-placement="bottom-end"],
.dropdown-menu.info-box[data-popper-placement="top-end"],
.dropdown-menu.info-box[data-popper-placement="top-start"] {
    transform: translate(-296px, 34px) !important;
    inset: 0px auto auto 0px !important;
}

table tbody tr:nth-last-child(-n+5) .dropdown-menu.info-box {
    transform: translate(-294px, -563px) !important;
    inset: 0 auto auto 0 !important;
}
table tbody tr:nth-child(-n+5) .dropdown-menu.info-box {
    transform: translate(-296px, 34px) !important;
    inset: 0 auto auto 0 !important;
}

table tbody tr .dropdown-menu.info-box.deleted-page-info-box {
    transform: translate(-284px, 34px) !important;
    inset: 0 auto auto 0 !important;
}


/* Расширенные настройки */
#advanced-settings .accordion-button:not(.collapsed) {
    background-color: white;
    padding-left: 0;
    padding-right: 0;
}
#advanced-settings .accordion-button {
    padding: 24px 0;
    /*border-bottom: 1px solid #0000001A;*/
    box-shadow: none;
    font-size: 20px;
    font-weight: 500;
}
#advanced-settings .accordion-button:not(.collapsed) {
    border-bottom: 0;
}
#advanced-settings .accordion-button:focus {
    box-shadow: none;
    transition: none;
}
#advanced-settings .accordion-body {
    padding: 0 0 24px 0;
}
#advanced-settings .accordion-button.collapsed::after {
    background-image: url("../images/green-plus.svg") !important;
    width: 25px;
    height: 25px;
}
#advanced-settings .accordion-button:not(.collapsed)::after {
    transform: rotate(45deg);
    background-image: url("../images/green-plus.svg") !important;
}
#advanced-settings .hover-popup-container {
    position: relative;
}
#advanced-settings .hover-popup {
    position: absolute;
    bottom: 100%;
    right: 0;
    left: 100%;
    width: 403px;
    height: 160px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    border: 1px solid #00A2B0;
    padding: 16px;
    border-radius: 15px 15px 15px 0;
    font-size: 14px;
    line-height: 16px;
    background-color: white;
}
#advanced-settings .hover-popup-container:hover .hover-popup {
    opacity: 1;
    visibility: visible;
}

/* Техподдержка */
.b24-widget-button-position-bottom-right {
    left: 50px !important;
    right: auto !important;
}
.bx-livechat-position-bottom-right {
    left: 53px;
    right: auto !important;
}



input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    background: url('/images/close_grey_bold.svg') no-repeat center;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.works-counter {
    display: inline-block;
    background-color: #00A2B0;
    color: white;
    padding: 2px 8px;
    border-radius: 300px;
    font-weight: 600;
    font-size: 11px;
    margin-left: 4px;
    height: 17px;
    line-height: normal;
}
.works-counter.empty {
    display: none;
}


/*.badge {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    background: #ff4757;*/
/*    color: white;*/
/*    border-radius: 50%;*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    font-size: 12px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

tr.approved {
    background-color: #f5f5f5; /* Серый фон */
    color: #999; /* Серый цвет текста */
}


/* Уведомления */
.notifications-wrapper {
    position: relative;
    display: inline-block;
}

.notification-additional-element a {
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
    text-decoration: none;
    color: #00A2B0;
}

.notifications-btn {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #333;
}

.notifications-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    width: 350px !important;
    background: white;
    border: 1px solid #D9F1F3;
    border-radius: 15px;
    box-shadow: 0 2px 10px #D9F1F3;
    z-index: 1000;
    display: none;
    padding: 16px;
}

.notifications-dropdown.dropdown-menu[data-bs-popper] {
    left: auto;
    right: 0;
}

.notification-content {
    line-height: 16px;
}

.notification-item:hover .title {
    text-decoration: underline;
}

.notification-content .title {
    color: #2C3E50;
    font-size: 14px;
    font-weight: 500;
    line-height: 16px;
}

.notifications-dropdown.show {
    display: block;
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
}

.notifications-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #2C3E50;
}

.mark-all-read {
    background: none;
    border: none;
    padding: 0;
    color: #00A2B0;
    cursor: pointer;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
}

.no-notifications {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #2C3E50;
}

.notifications-list {
    padding: 0 16px 0 0;
    max-height: 238px;
    overflow-y: auto;
}
.notifications-list::-webkit-scrollbar {
    width: 4px;
}
.notifications-list::-webkit-scrollbar-track {
    background-color: #0000004D;
    border-radius: 100px;
}
.notifications-list::-webkit-scrollbar-thumb {
    background-color: #00A2B0;
    border-radius: 100px;
}

.notifications-list .notification-item:not(:last-child){
    padding-bottom: 10px;
    border-bottom: 1px solid #D9F1F3;
}
.notifications-list .notification-item:not(:first-child) {
    padding-top: 10px;
}
.notification-item svg {
    margin-top: 4px;
}
.notification-item.unread svg path {
    stroke: #00A2B0;
    stroke-opacity: 1;
}
.notification-text {
    margin-bottom: 4px;
}
.notification-time {
    color: #00000080;
    font-size: 10px;
    font-weight: 500;
    line-height: 14px;
    margin-top: 4px;
}
.notifications-footer {
    padding: 8px 16px;
    text-align: center;
    border-top: 1px solid #eee;
}



/* Стили для заголовочной ячейки с селектами */
th.month {
    position: relative;
    padding: 0;
    text-align: center;
}

/* Общие стили для обоих селектов */
th.month .monthselect,
th.month .yearselect {
    display: inline-block;
    padding: 3px 10px 3px 10px !important;
    margin: 0 3px;
    font-size: 12px !important;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ddd;
    border-radius: 6px !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: all 0.2s ease !important;
    vertical-align: middle;
}

/* Стиль при наведении */
th.month .monthselect:hover,
th.month .yearselect:hover {
    border-color: #D9F1F3;
}

/* Стиль при фокусе */
th.month .monthselect:focus,
th.month .yearselect:focus {
    outline: none;
    border-color: #D9F1F3;
    box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
}

/* Кастомные стрелки для селектов */
th.month::after {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 48%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #555;
    pointer-events: none;
}

th.month::before {
    content: "▼";
    position: absolute;
    top: 50%;
    right: 6%;
    transform: translateY(-50%);
    font-size: 10px;
    color: #555;
    pointer-events: none;
}

/* Позиционирование стрелок для каждого селекта */
th.month .monthselect {
    padding-right: 30px;
    margin-right: 20px; /* Отступ между селектами */
}

th.month .yearselect {
    padding-right: 30px;
}

.daterangepicker.dark th.month::after,
.daterangepicker.dark th.month::before {
    color: #aaa;
}

.input-group .btn:focus {
    box-shadow: none !important;
}

@keyframes bell-shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(15deg); }
    100% { transform: rotate(0deg); }
}

.bell-icon.bell-shake {
    animation: bell-shake 0.5s;
    transform-origin: top center; /* Точка вращения - верх иконки */
}

/* Стандартные стили иконки */
.bell-icon {
    display: inline-block;
    transition: transform 0.2s;
}

/* Счетчик для страниц в отчете */
#not-check-input::-webkit-outer-spin-button,
#not-check-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Typeahead */
.twitter-typeahead {
    width: 100%;
}
.typeahead {
    width: 100%;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #0000001A;
    border-radius: 5px;
    font-weight: 400;
    line-height: 18px;
}
.tt-menu {
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);

    max-height: 200px;
    overflow-y: auto;
}
.tt-suggestion {
    padding: 5px 15px;
    cursor: pointer;
}
.tt-suggestion:hover {
    background: #f5f5f5;
}
.empty-message {
    padding: 8px 15px;
    color: #999;
}

/* Select2 в структуре организации */
.select2-results__option.select2-results__option--selectable.select2-results__option--selected {
    background-color: #D9F1F3 !important;
}
#specialties_list + .select2-container .select2-selection__rendered {
    padding-top: 5px !important;
}

/* Прелоадер */
@keyframes preloader-animation {
    to { transform: rotate(360deg); }
}
.preloader-wrapper .preloader-img {
    display: inline-block;
    animation: preloader-animation 2s linear infinite;
}
.preloader-wrapper {
    text-align: center;
}


#do-not-check-pages-input::-webkit-inner-spin-button,
#do-not-check-pages-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#do-not-check-pages-input {
    -moz-appearance: textfield; /* Firefox */
}

.bootstrap-select .dropdown-menu {
    width: 100%;
}
.bootstrap-select .dropdown-menu span.text{
    white-space: break-spaces;
    line-height: 18px;
}
.bootstrap-select .dropdown-menu {
    max-height: 330px;
}

.footer-container {
    padding: 60px 30px 88px 60px;
}

/* Cookie */
.cookie-banner {
    position: fixed;
    bottom: 3%;
    right: 3%;
    background-color: white;
    border-radius: 48px;
    box-shadow: 0 4px 29.5px 0 #434CA51F;
    padding: 24px;
}
.cookie-banner p {
    font-size: 18px;
    line-height: 24px;
    margin-top: 12px;
}
.cookie-banner a {
    color: #006987;
}
.cookie-banner #close-cookie-button {
    display: flex;
    background-color: #fff;
    border: none;
    padding: 5.6px;
}
.cookie-banner #accept-cookie-button {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    margin-top: 16px;
}

.go-to-page, .per-page {
    display: flex;
    align-items: center;
    gap: 12px;
}
.go-to-page p {
    font-size: 16px;
    line-height: 20px;
    color: #2C3E50;
}
.go-to-page button {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    color: #00A2B0;
    background: none;
    border: none;
}
.go-to-page input {
    height: 48px;
    width: 64px;
    background-color: #F5F5F5;
    font-weight: 400;
    border-radius: 16px;
    padding: 10px;
    text-align: center;
    color: #7B7B7B;
    font-size: 16px;
}
.per-page .per-page-button {
    height: 48px;
    width: 120px;
    background-color: #F5F5F5;
    border: none;
    border-radius: 16px;
    text-align: left;
    color: #7B7B7B;
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    padding: 14px 16px;
}

#deleteWorksButton:disabled {
    color: #2C3E50;
    background-color: #D9F1F3;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.button-loading {
    animation: rotate 2s linear infinite !important;
}
