

/* Start:/bitrix/templates/main/template_styles.css?176550222498528*/
@import "/bitrix/templates/main/css/colors.css";

html,
body {
    padding: 0;
    margin: 0;
}

/* Общие стили для всех ссылок */
a {
    text-decoration: none !important;

}

/* Стиль для ссылок в темной теме */
body.dark-theme a.nav-link,
body.dark-theme a.dropdown-item {
    color: var(--bs-navbar-color) !important; /* статичный цвет */

}

/* Стиль для ссылок в кнопках*/
body.dark-theme a.btn{
    color: white ; /* статичный цвет */
    /* объявлять переменную лучше вне селектора, например, в :root или в другом месте */
}
body.dark-theme a.mo-link{
    color: white ; /* статичный цвет */
    /
}

/* Стиль для ссылок в пагинации*/
body.dark-theme a.page-link,
body.dark-theme a.file-link,
body.dark-theme a.phone {
    color: #0d6efd; /* статичный цвет */
    /* объявлять переменную лучше вне селектора, например, в :root или в другом месте */
}



body.dark-theme a {
    color: #87CEFA
}

.theme .logout a  {
    color: #87CEFA
}

/* Объявление переменной для hover (можно сделать глобально или внутри темы) */
body.dark-theme {
    --bs-nav-link-hover-color: var(--bs-navbar-hover-color);
}


/* Стиль для наведения  на сылки*/
body.dark-theme a.nav-link:hover,
body.dark-theme a.dropdown-item:hover {
    color: var(--bs-nav-link-hover-color) !important; /* цвет при наведении */
}





.h1,.h2{
    text-transform:uppercase !important;
    font-weight:300 !important;
    margin-bottom:30px !important;
    font-size:1.4em !important;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--background-color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #cccccc;
    border-top-color: #1a1a1a;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

body {
    /*transition: background-color 0.5s, color 0.5s; !* Плавный переход *!*/
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Задает минимальную высоту для body */
}

body.light-theme {
    background-color: var(--background-color-light);
    color: var(--text-color-light);
}

body.dark-theme {
    background-color: var(--background-color-dark);
    color: var(--text-color-dark);
}

.wrapper {
    flex: 1; /* Заполняет оставшееся пространство */
}

.container{
    margin: 20px 0;
}

.theme {
    font-size: 10px;
    color: #ffffff !important;
}

.main_head{
    background-image:url(/bitrix/templates/main/img/bg_.jpg);
    background-repeat:no-repeat;
    color:#fff;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    border-bottom: 2px red solid;
}

.main_head .logo img{width:100%;height:auto}

.main_head .title{text-transform:uppercase;font-weight:200}

.main_head .title .main_title{
    font-size:30px
}

.main_head .title .description{
    font-size:21px;
    letter-spacing:
            5px;margin-top:-10px;
}

/* Уведомление в header */



/* Стили для переключателя */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-icon {
    font-size: 20px;
    color: #aaa; /* Серый в выключенном состоянии */
    transition: color 0.3s;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}


.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0; /* Серая полоса */
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    color: #aaa; /* Серый в выключенном состоянии */
}


/* Включенное состояние */
input:checked + .toggle-slider {
    background-color: #28a745; /* Зеленый фон полосы в активном состоянии */
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
    color: white; /* Цвет кружка в активном состоянии */
    background-color: white; /* Фон кружка */
}

input:checked ~ .toggle-icon {
    color: #28a745; /* Цвет иконки в активном состоянии */
}


.minister-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; /* Отступ между элементами */
}

.minister-photo-container {
    width: 100%;        /* Или задайте конкретную ширину, например, 200px */
    height: 350px;       /* Задайте нужную высоту */
    overflow: hidden;     /* Обрезаем все, что выходит за пределы контейнера */
    position: relative;  /* Для абсолютного позиционирования изображения */
    border-radius: 5px
}

.minister-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;    /*  Заполняем контейнер, обрезая изображение при необходимости */
    transition: transform 0.5s ease; /* Добавляем плавную анимацию */
    /*position: absolute; !* Добавляем абсолютное позиционирование *!*/
    top: 0;
    left: 0;
}

.minister-photo-container:hover .minister-photo {
    transform: scale(1.1); /* Увеличиваем масштаб при наведении */
}

.minister-name {
    font-size: 13px; /* Размер шрифта для ФИО */
    text-align: center; /* Центрирование текста */

}

.main_head .link{
    font-weight:200;
    font-size:9px;
    display: flex;
    justify-content: flex-end;
    width: 175px;
}

.main_head .link .portal a{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    color:#fff
}

.main_head .link .portal a img{
    margin-right:5px;
    height: 30px;
    width: auto;
}

/*section{*/
/*    padding:20px 0 0;*/
/*}*/

.center{
    text-align:center
}


footer{
    background-color: var(--background-color-footer);
    color: var(--text-color-gray);
    padding:30px 0;
    margin-top: auto; /* Отодвигает футер вниз */
}

footer .logo img{
    width:60px;
    height:auto;
    margin-right:10px
}

footer .site_title{
    text-transform:uppercase
}

footer .copyright{
    font-size:13px;
    margin:30px 0;
}

.buttonAuth {
    width: 300px;
    margin: 0 auto;
}

.eventFeedGovernor a h3,
.eventFeedGovernmentSmall a h3,
.eventFeedGovernmentBig a h3{
    color:#bfbfbf;
    font-size:14px;
    line-height:1.1;
    transition: color .25s ease-in-out;

}

.eventFeedGovernor a:hover h3,
.eventFeedGovernmentSmall a:hover h3,
.eventFeedGovernmentBig a:hover h3{
    color:#ffffff;
}


.eventFeedGovernor-item-container {
    overflow: hidden; /* Обрезаем все, что выходит за пределы контейнера */
    position: relative;
}

.eventFeedGovernor-item {
    background-repeat: no-repeat;
    background-position: center 10%;
    background-size: cover;
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: transform 0.5s ease; /* Плавный переход при изменении масштаба */
}

.eventFeedGovernor-item-box-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.eventFeedGovernor-item-box-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}



.eventFeedGovernor-item:hover {
    transform: scale(1.1); /* Увеличиваем элемент при наведении */
}

.eventFeedGovernor-item-date {
    margin-left: 10px;
    font-size: 18px;
    padding: 4px 12px; /* Внутренние отступы */
    background-color: rgba(0, 150, 255, 0.65); /* Прозрачный синий (15% непрозрачности) */
    border-radius: 15px; /* Закругление углов */
    color: #0056b3; /* Цвет текста - темно-синий */
    display: inline-block; /* Чтобы фон работал правильно */
    line-height: 1.4; /* Межстрочный интервал */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Легкая тень */
}
.eventFeedGovernor-item-title{
    :80px;position:absolute;
    bottom:0;
    background:-webkit-gradient(linear,left bottom,left top,from(black),to(rgba(162,162,162,.6)));
    background:-o-linear-gradient(bottom,#000 0,rgba(162,162,162,.6) 100%);
    background:linear-gradient(0deg,#000 0,rgba(162,162,162,.6) 100%);padding:10px;
    border-radius: 5px;
    width: 100%;
}
.eventFeedGovernmentBig-item-container{
    overflow: hidden; /* Обрезаем все, что выходит за пределы контейнера */
    position: relative;
}
.eventFeedGovernmentBig-item-box-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.eventFeedGovernmentBig-item-box-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.eventFeedGovernmentBig-item {
    background-repeat:no-repeat;
    background-position:center top;
    background-size:cover;
    width:100%;
    height:535px;
    position:relative;
    margin-bottom:20px;
    border-radius: 5px;
    width: 100%;
    transition: transform 0.5s ease; /* Плавный переход при изменении масштаба */
}

.eventFeedGovernmentBig-item:hover {
    transform: scale(1.1); /* Увеличиваем элемент при наведении */
}

.eventFeedGovernmentBig-item-date{
    margin-left: 10px;
    font-size: 18px;
    padding: 4px 12px; /* Внутренние отступы */
    background-color: rgba(0, 150, 255, 0.65); /* Прозрачный синий (15% непрозрачности) */
    border-radius: 15px; /* Закругление углов */
    color: #0056b3; /* Цвет текста - темно-синий */
    display: inline-block; /* Чтобы фон работал правильно */
    line-height: 1.4; /* Межстрочный интервал */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Легкая тень */
}

.eventFeedGovernmentBig-item-title{
    max-height:80px;width:100%;
    position:absolute;bottom:0;
    background:-webkit-gradient(linear,left bottom,left top,from(black),to(rgba(162,162,162,.6)));
    background:-o-linear-gradient(bottom,#000 0,rgba(162,162,162,.6) 100%);
    background:linear-gradient(0deg,#000 0,rgba(162,162,162,.6) 100%);padding:10px;
    border-radius: 5px;
    width: 100%;

}
.eventFeedGovernmentSmall-item{
    background-repeat:no-repeat;
    background-position:center 10%;
    background-size:cover;width:100%;
    height:250px;position:relative;
    margin-bottom:20px;
    border-radius: 5px;
    width: 100%;
    transition: transform 0.5s ease; /* Плавный переход при изменении масштаба */
}

.eventFeedGovernmentSmall-item:hover {
    transform: scale(1.1); /* Увеличиваем элемент при наведении */
}

.eventFeedGovernmentSmall-item-container{
    overflow: hidden; /* Обрезаем все, что выходит за пределы контейнера */
    position: relative;
}
.eventFeedGovernmentSmall-item-box-top{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.eventFeedGovernmentSmall-item-box-bottom{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.eventFeedGovernmentSmall-item-date{
    margin-left: 10px;
    font-size: 18px;
    padding: 4px 12px; /* Внутренние отступы */
    background-color: rgba(0, 150, 255, 0.65); /* Прозрачный синий (15% непрозрачности) */
    border-radius: 15px; /* Закругление углов */
    color: #0056b3; /* Цвет текста - темно-синий */
    display: inline-block; /* Чтобы фон работал правильно */
    line-height: 1.4; /* Межстрочный интервал */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); /* Легкая тень */
}
.eventFeedGovernmentSmall-item-title{
    max-height:80px;
    position:absolute;bottom:0;background:-webkit-gradient(linear,left bottom,left top,from(black),to(rgba(162,162,162,.6)));
    background:-o-linear-gradient(bottom,#000 0,rgba(162,162,162,.6) 100%);
    background:linear-gradient(0deg,#000 0,rgba(162,162,162,.6) 100%);
    padding:10px;
    border-radius: 5px;
    width: 100%;
}

.navString {
    margin: 30px 0 !important;
}

.light-theme .showTitle,
.light-theme .info-cards  {
    color: var(--text-color-dark)
}

.eventImg {
    background-repeat: no-repeat;
    background-position: top right;
    background-size: contain;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.eventDesc {
    height: 245px;
    width: 80%;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px;
    border-radius: 5px;
}
.info-cards {
    font-size: 18px;
}
.info-card_background {
    /* Основные стили */
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

    /* Фон (прозрачная версия вашего цвета) */
    background-color: color-mix(in srgb, var(--background-color-dark-2) 70%, transparent);

    /* Эффекты */
    backdrop-filter: blur(2px);


}

/* Дополнительные стили для модального окна */
.member-info {
    padding-right: 8px; /* Для компенсации скроллбара */
}
.member-info::-webkit-scrollbar {
    width: 6px;
}
.member-info::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}
.rounded-image {
    border-radius: 8px;
    object-fit: cover;
    height: 300px;
}
.text-wrap {
    word-wrap: break-word;
    white-space: pre-wrap;
}

/* Эффект при наведении - меняем только тень и прозрачность */
.info-card_background:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background-color: color-mix(in srgb, var(--background-color-dark-2) 80%, transparent); /* Чуть менее прозрачный */
}

.light-theme .info-card_background {
    background: #fff;
    color: black;
}


/* Анимация пульсации ля иконки часов в поддержке */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Класс для анимации */
.pulse-animation {
    display: inline-block;
    animation: pulse 2s infinite;
}

/* Вращение */
@keyframes rotate {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(20deg); }
    100% { transform: rotate(0deg); }
}

/* Класс для анимации вращения */
.rotate-animation {
    display: inline-block;
    animation: rotate 2s infinite ease-in-out;
}

.info-card {
    border-radius:15px; /* Округление углов карточки */
    padding: 10px; /* Отступ внутри карточки */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Тень для карточки */
    transition: box-shadow 0.3s, background-color 0.3s; /* Плавный переход тени и цвета фона */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-card:hover {
    background-color: rgba(211, 211, 211, 0.5); /* Прозрачный серый цвет при наведении */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Увеличенная тень при наведении */
}

.img-container-it-voting{
    overflow: hidden; /* скрывает часть изображения, выходящую за пределы контейнера */
}

.img-container-it-voting img {
    transition: transform 0.5s ease; /* добавлен плавный переход */
}

.eventFeedGovernor-item-container:hover .img-container-it-voting img {
    transform: scale(1.1); /* увеличивает изображение на 10% при наведении */
}

.report-card {
    background: color-mix(in srgb, var(--background-color-dark-2) , transparent);
    border-radius: 5px; /* Закругленные углы */
    padding: 20px; /* Внутренние отступы */
    margin-bottom: 10px; /* Отступ между карточками */
    transition: transform 0.5s, box-shadow 0.5s; /* Плавный переход при наведении */
}
.light-theme .report-card {
    background: #fff;
    color: black;
}

.light-theme .card_advice{
    background: #fff;
    color: black;
}
.report-link {
    color: white; /* Цвет ссылки */
    text-decoration: none; /* Убираем подчеркивание */
}
.light-theme .report-link {
    color:black; /* Цвет ссылки */
    text-decoration: none; /* Убираем подчеркивание */
}

.deputy-name {
    font-size: 0.9em; /* Уменьшенный размер шрифта */
    font-weight: bold; /* Жирный шрифт */
    margin-bottom: 10px; /* Отступ снизу */
    text-align: center; /* Центрирование текста */
    display: block; /* Чтобы text-align работал */
    white-space: nowrap; /* Предотвращает перенос текста */
    overflow: hidden; /* Скрывает избыточный текст */

    max-width: 100%; /* Ограничивает ширину до 100% родительского элемента */
}

.image-container {
    max-width: 289px; /* Максимальная ширина контейнера */
    max-height: 345px; /* Максимальная высота контейнера */
    overflow: hidden; /* Скрыть часть изображения, если оно выходит за контейнер */
    display: flex; /* Для центрирования */
    justify-content: center; /* Центрирование по горизонтали */
    align-items: center; /* Центрирование по вертикали */
}

.rounded-image {
    border-radius: 5px; /* Округление углов изображения */
    width: 100%; /* Адаптивная ширина */
    height: auto; /* Автоматическая высота */
    display: block; /* Для корректного центрирования */
    transition: transform 0.5s ease; /* Плавный переход при увеличении */
}
.image-container-deputy {
    width: 100%; /* Ширина контейнера теперь зависит от ширины экрана */
    max-width: 300px; /* Максимальная ширина контейнера */
    height: auto; /* Высота будет определяться автоматически */
    aspect-ratio: 3 / 4; /* Устанавливаем соотношение сторон */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    /*background-color: #f0f0f0;*/
    position: relative;
    transition: transform 0.5s ease;
}

.img-fluid-deputy {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.5s ease;
}
.image-container-deputy:hover .img-fluid-deputy {
    transform: scale(1.1);
}

.card_advice:hover .rounded-image {
    transform: scale(1.025); /* Увеличение изображения на 2.5% при наведении на карточку */
}

.text {
    color:#A8A8A8; /* Установка серого цвета текста по умолчанию */
    transition: color 0.5s ease; /* Плавный переход цвета */
}

.card_advice:hover .text {
    color: inherit; /* Восстановление нормального цвета текста при наведении (или укажите конкретный цвет) */
}

.mayors-item {
    display: flex;
    flex-direction: column; /* Расположение элементов по вертикали */

    text-align: center; /* Центрирование текста */
    margin: 20px; /* Отступы вокруг элемента (при необходимости) */
}

.deputy-name p {
    font-size: 12px; /* Размер шрифта для имени */
    margin: 10px 0; /* Отступы сверху и снизу */
}

.news-item-additional-info {
    overflow-wrap: break-word; /* Перенос длинных слов */
    white-space: normal; /* Нормальное поведение пробелов */
    overflow: hidden; /* Скрывает переполнение */
}

.mayor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px; /* Отступ между элементами */
}

.mayor-photo-container {
    width: 100%; /* Или задайте конкретную ширину, например, 200px */
    height: 350px; /* Задайте нужную высоту */
    overflow: hidden; /* Обрезаем все, что выходит за пределы контейнера */
    position: relative; /* Для абсолютного позиционирования изображения */
    border-radius: 5px;
}

.mayor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Заполняем контейнер, обрезая изображение при необходимости */
    transition: transform 0.5s ease; /* Добавляем плавную анимацию */
    position: absolute; /* Абсолютное позиционирование */
    top: 0;
    left: 0;
}

.mayor-photo-container:hover .mayor-photo {
    transform: scale(1.1); /* Увеличиваем масштаб при наведении */
}

.mayors-item-job h4 {
    font-size: 16px; /* Размер шрифта для должности */
    margin: 5px 0; /* Отступы сверху и снизу */
}

.responsive-text {

    overflow: hidden; /* скрыть текст, если он выходит за пределы */
    white-space: nowrap; /* запретить перенос строк */
    text-overflow: ellipsis; /* добавляет многоточие, если текст длиннее доступной области */
    width: 100%; /* просто для примера, установить необходимую ширину */
    display: block; /* чтобы элемент отображался как блок */
}

.img-hover-container {
    overflow: hidden; /* Обеспечиваем целостность изображения */
    border-radius: 10px; /* Скругление углов */
    position: relative; /* Чтобы мы могли позиционировать псевдоэлемент */
}

.img-hover-container img {
    transition: transform 0.5s ease, filter 0.5s ease; /* Плавный переход для масштаба и фильтра */
}

.img-hover-container:hover img {
    transform: scale(1.1); /* Увеличение изображения при наведении */
}

.property-item {
    display: inline-block; /* Позволяет использовать отступы и эффекты */
    transition: background-color 0.1s, color 0.1s; /* Плавный переход для фона и цвета */
    padding: 2px; /* Внутренние отступы для элемента */
    max-width: 100%; /* Ограничивает ширину каждого элемента */
}

.property-item:hover {
    background-color: rgb(128, 128, 128); /* Непрозрачный серый цвет при наведении */
    color: #ffffff; /* Изменение цвета текста на белый при наведении */
    cursor: pointer; /* Указатель при наведении */
    border-radius: 10px; /* Закругленные углы */
}

.public_council-text {
    font-size: 18px; /* Адаптивный размер шрифта */
    margin: 10px 0; /* Отступы сверху и снизу */
    text-align: center; /* Центрирование текста */
}
.card_public_council {
    background: linear-gradient(145deg, rgb(32, 178, 170), rgb(0, 0, 128));
    border-radius: 8px; /* Закругление углов */
    transition: box-shadow 0.3s; /* Плавный переход тени */
    position: relative; /* Для абсолютного позиционирования псевдоэлементов */
    overflow: hidden; /* Скрыть переполнение */

}

/* Эффект при наведении */
.card_public_council:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 1.2); /* Добавляем тень */
}

.public_council-img {
    width: 100%; /* Занимает всю ширину карточки */
    height: 350px; /* Задайте фиксированную высоту, измените по необходимости */
    border-radius: 8px; /* Закругление углов */
    object-fit: cover; /* Обрезает изображение, сохраняя пропорции */
}
.news-item:hover {
    transform: scale(1.025); /* Увеличение карточки при наведении */
    z-index: 1; /* Подъем карточки выше остальных */
}

.card_advice {
    background: color-mix(in srgb, var(--background-color-dark-2) , transparent);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column; /* Устанавливаем вертикальное направление */
}

.card-title {
    font-size: 0.9rem;
    color: #fff;
}

.dark-theme .phoneBook .card-body h5 {
    color: var(--text-color-gray-light);
}

.light-theme .phoneBook .card-body h5 {
    color: var(--text-color-gray);
}

.phoneBook .card-body h5 {
    font-size: 12px;
    color: var(--text-color-gray-light);
}

.phoneBook .card-body .card-text {
    margin-bottom: 6px !important;
}

.phoneBook .card-body p {
    font-size: 14px;
}

.phoneBook .card-body .list-group {
    font-size: 12px;
}

.light-theme .navbar-toggler {
    color: var(--text-color-gray);
    border: var(--text-color-gray) solid 1px;
}

.dark-theme .navbar-toggler {
    color: var(--text-color-gray-light);
    border: var(--text-color-gray-light) solid 2px;
}

.component_info {
    border: 1px solid #000000;
    border-radius: 5px;
    background-color: var(--background-color-dark-2);
    padding: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.phoneBook table {
    font-size: 12px;
}

.phoneBook table tr th {
    font-size: 10px;
}

.phoneBook .photoUser {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

.efficiencyMark table {
    font-size: 14px;
}

.efficiencyMark table .btn-link{
    font-size: 14px;
    text-align: left;
    /*text-decoration: none;*/
    /*color: #42aaff;*/
}


.card-widget {
    border: 0;
    position: relative;
}

.widget-user .widget-user-header {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    height: 135px;
    padding: 1rem;
    text-align: center;
}

.widget-user .widget-user-username {
    font-size: 25px;
    font-weight: 300;
    margin-bottom: 0;
    margin-top: 0;
    text-shadow: 0 1px 1px rgba(0,0,0,.2);
}

.widget-user .widget-user-desc {
    margin-top: 0;
}

.widget-user .widget-user-image {
    left: 50%;
    margin-left: -45px;
    position: absolute;
    top: 80px;
}

.widget-user .widget-user-image>img {
    border: 3px solid #fff;
    height: 90px;
    width: 90px;
    object-fit: cover;
}

.img-circle {
    border-radius: 50%;
}

.elevation-2 {
    box-shadow: 0 3px 6px rgba(0,0,0,.16),0 3px 6px rgba(0,0,0,.23)!important;
}

.widget-user .card-footer {
    padding-top: 50px;
}

.border-right {
    border-right: 1px solid #dee2e6!important;
}

.description-block-link {
    padding: 15px 0;
}

.description-block .description-text {
    text-transform: uppercase;
}

.dark-theme .description-block .description-text .description-link {
    color: var(--text-color-gray-light) !important;
}

.dark-theme .description-block .description-text .description-link:hover {
    color: var(--text-color-dark) !important;
}

.dark-theme .background_gray {
    background: linear-gradient(90deg, rgba(73,76,98,1) 0%, rgba(52,53,63,1) 15%, rgba(58,59,72,1) 43%, rgba(73,76,98,1) 100%);
}

.text-link-table{
    color: black;
}

.dark-theme  .text-link-table{
    color: white;
}

.card-container {
    overflow: hidden; /* Скрывает части, выходящие за пределы контейнера */
    border-radius: 10px; /* Скругление углов карточки */
    transition:  transform 0.5s ease; /* Плавный переход для трансформации */
}

.card-container:hover .image-container img {
    transform: scale(1.1); /* Увеличение изображения при наведении на карточку */
}

.image-container {
    overflow: hidden; /* Скрывает часть изображения, выходящую за пределы контейнера */
    border-radius: 10px; /* Скругление углов контейнера */
    transition: transform 1.2s ease; /* Плавный переход для трансформации */
}

.back-button {
    background-color: #007bff; /* Цвет фона */
    color: white; /* Цвет текста */
    border: none; /* Убираем рамку */
    border-radius: 5px; /* Скругление углов */
    padding: 10px 20px; /* Внутренние отступы */
    font-size: 14px; /* Размер шрифта */
    cursor: pointer; /* Указатель для курсора */
    transition: background-color 0.3s ease; /* Плавный переход цвета фона */
    margin-left: 15px;
    margin-top: 15px;;
}

.back-button:hover {
    background-color: #0056b3; /* Цвет фона при наведении */
}

.back-button:focus {
    outline: none; /* Убираем рамку при фокусе */
}

.card_cab {
    min-height: 185px;
    margin-bottom: 20px;
    width: 100%;
    text-transform: uppercase;
    padding: 1.25rem;
}
.link_table a {
    color: #ffffff;
}

.link_table a:hover {
    text-decoration: underline!important;
}

.dark-theme  .menu_component .nav {
    background-color: #494C62 !important;
    border-radius: 5px;
}

.menu_component .nav a{
    border-bottom: 1px #34353F solid !important;
}

.menu_component .nav-item {
    display: block;
}

.dark-theme .menu_component  .nav-pills .nav-link. active, .menu_component .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #007bff;
}

.dark-theme .menu_component  .nav-pills .nav-link, .menu_component .nav-pills .show>.nav-link {
    color: #fff;
}

.menu_component  .nav-pills .nav-link, .menu_component .nav-pills .badge {
    color: black;
}

.menu_component  .nav-pills .nav-link, .menu_component .nav-pills .show>.nav-link {
    color: var(--coolor-black);
}

.menu_component .badge{
    color: var(--coolor-black);
}

.menu_component .active .badge{
    color: #fff;
}

.dark-theme .menu_component .badge{
    color: #fff;
}

.dark-theme .efficiencyMark .custom_input_title .input-group-text {
    border: none;
    background-color: #494C62;
    color: #FFFFFF;
}


.efficiencyMark .custom_table {
    /*background-color: #494C62;*/
    padding: 10px;
    border-collapse: inherit;
    font-size: 14px;
    width: 100%;

}

.dark-theme .efficiencyMark .custom_table {
    background-color: #494C62;
    padding: 10px;
    border-collapse: inherit;
    font-size: 14px;
    width: 100%;

}

.efficiencyMark .custom_table tr th {
    padding-left: 10px;
}

.efficiencyMark .custom_table th, .custom_table td {
    padding: 5px 15px;
}

.efficiencyMark .modal-body .custom_input_title .input-group-text {
    border: none;
    background-color: var(--background-color-dark);
    color: #FFFFFF;
}

.dark-theme .efficiencyMark .title_component {
    padding: 10px;
    background-color: var(--background-color-dark-2);
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 20px;
}

.efficiencyMark .title_component {
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 20px;
}

.ribbon-wrapper.ribbon-lg {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
}

.ribbon {
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    font-size: .8rem;
    line-height: 100%;
    padding: .375rem 0;
    position: absolute;
    right: -32px;
    top: 35px;
    text-align: center;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, .4);
    text-transform: uppercase;
    transform: rotate(45deg);
    width: 160px;
}

.statusColors {
    background-color:var(--color-red);
}

.drop-area {
    width: 100%;
    padding: 30px 0;
    border: 3px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color-gray-light);
    cursor: pointer;
    margin-bottom: 20px;
}

.drop-area.highlight {
    border-color: #007BFF;
}

.file-list {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-right: 30px;
}

.file-item img {
    width: 100px;
    height: auto;
    margin-right: 10px;
}

.file-item button {
    background-color: #f44336;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.file-item button:hover {
    background-color: #d32f2f;
}

.dark-theme .info-box .bg-body-tertiary {
    background-color: var(--background-color-dark) !important;
    color: var(--text-color-dark);
}

.initiatives h6 {
    font-size: 0.8rem;
    font-weight: bold;
}

.dark-theme .initiatives .event p span {
    color: var(--text-color-dark) !important;
}

.dark-theme .initiatives .event {
    border-bottom: 1px var(--text-color-dark) solid;
}

.initiatives .event {
    border-bottom: 1px var(--text-color-light) solid;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.gallery img {
    width: 100px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    transition: transform 0.2s;
}
.gallery img:hover {
    transform: scale(1.05);
}

.efficiencyMark .custom_input_title .for_text_4_1{
    width: 65px;
    display: block;
}

.efficiencyMark .custom_input_title .label_warning {
    background-color: #ff0;
    color: black;
}

.efficiencyMark .custom_input_title .label_warning_orange {
    background-color: #fb0;
    color: black;
}

.efficiencyMark .custom_input_title .label_danger {
    background-color: var(--color-red);
    color: black;
}

.efficiencyMark .custom_input_title .label_success {
    background-color: var(--color-green);
    color: black;
}



/* Дорожная карта*/
.green-info {
    --bs-bg-opacity: 1;
    background-color: rgba(76, 175, 80, var(--bs-bg-opacity)) !important; /* Зеленый цвет (RGB: 76, 175, 80) */
}

.form-group input {
    margin-right: 5px; /* Добавляет отступ справа между полями ввода */
}

.form-group .addResponsible {
    margin-left: 5px; /* Добавляет отступ слева для кнопки */
}

.event-list li:hover {
    background-color: rgba(221, 221, 231, 0.6); /* Темно-серый с 80% непрозрачностью */

    border-radius: 5px; /* Закругленные углы с радиусом 10px */

}

.info-card_roadmap {
    border-radius: 5px; /* Округление углов карточки */
    padding: 10px; /* Отступ внутри карточки */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Тень для карточки */
    transition: box-shadow 0.3s; /* Плавный переход тени */
    background-color: var(--background-color-dark-2);
    backdrop-filter: blur(2px);
}

.light-theme .info-card_roadmap {
    background: #fff; /* Белый фон в светлой теме */
    color: black; /* Черный текст в светлой теме */
}

.event-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.event-list li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.form-row {
    display: flex; /* Используем Flexbox для размещения элементов в строку */
    gap: 15px; /* Расстояние между элементами */
    flex-wrap: wrap;
}

.form-group {
    flex: 1; /* Элементы будут равномерно распределены по строке */
}

.offcanvas .card h6 {
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px ;
}

.offcanvas .card h4 {
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px ;
}

/*ВКС */

.calendar-container, .info-container {
    max-width: 100%; /* Уменьшенная максимальная ширина контейнеров */

    padding: 20px; /* Отступы внутри контейнера */
    background: rgba(255, 255, 255, 0); /* Полностью прозрачный фон */
    border-radius: 5px; /* Закругление углов */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Тень для эффекта */

}

.day-info {
    margin-top: 20px; /* Отступ сверху для блока информации о дне */
    padding: 15px; /* Отступы внутри блока */
    background-color: rgba(255, 255, 255, 0.1); /* Полупрозрачный фон */
    border-radius: 5px; /* Закругление углов */

}
.instructions-vks {
    margin-top: 0; /* Отступ сверху для блока информации о дне */
    padding: 15px; /* Отступы внутри блока */
    background: rgba(255, 255, 255, 0); /* Полностью прозрачный фон */
    border-radius: 5px; /* Закругление углов */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Тень для эффекта */

}

.file-list {
    margin-top: 10px; /* Отступ сверху для списка файлов */
    background-color: rgba(255, 255, 255, 0.2); /* Более яркий фон для списка */
    border-radius: 5px; /* Закругление углов списка */
    padding: 10px; /* Отступы внутри списка */
}


.venue {
    margin-top: 0; /* Отступ сверху для блока информации о дне */
    padding: 15px; /* Отступы внутри блока */
    background: rgba(255, 255, 255, 0); /* Полностью прозрачный фон */
    border-radius: 10px; /* Закругление углов */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Тень для эффекта */

}

/* Стили для списка номеров */
.number-list {
    display: none; /* Скрыто по умолчанию */
    margin-top: 10px; /* Отступ сверху для списка */
    padding: 0; /* Убираем отступы */
    list-style-type: none; /* Убираем маркеры списка */
}

.recover-password-link {
    color: #0066cc; /* Синий цвет ссылки */
    text-decoration: underline; /* Подчеркивание */
    cursor: pointer; /* Курсор-указатель */
    background: none; /* Убираем фон */
    border: none; /* Убираем границу */
    padding: 0; /* Убираем отступы */
    font: inherit; /* Наследуем шрифт */
    display: inline; /* Строчное отображение */
}

.recover-password-link:hover {
    color: #004499; /* Темно-синий при наведении */
    text-decoration: none; /* Убираем подчеркивание при наведении */
}

.recover-password-link:active {
    color: #003366; /* Еще темнее при нажатии */
}


.dropdown-menu {
    max-height: 250px; /* Ограничьте высоту выпадающего списка */

    overflow-y: auto; /* Добавьте вертикальную прокрутку */


}

.icon-wrapper {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(108, 117, 125, 0.1);
    border-radius: 50%;
}

.info-card_background:hover svg {
    fill: #0d6efd;
}

.form-check-input {
    margin-right: 10px; /* Отступ для чекбоксов */
}


/*Техническая поддержка*/

.status_job {
    width: 100%;
    /* background-color: #3646e6; */
    /* background: rgb(79, 79, 184); */
    /* background: linear-gradient(90deg, rgba(79, 79, 184, 1) 0%, rgba(54, 70, 230, 1) 14%, rgba(55, 67, 184, 1) 96%, rgba(73, 76, 98, 1) 100%); */
    background: rgb(92, 92, 96);
    background: linear-gradient(90deg, rgba(92, 92, 96, 0.95) 0%, rgb(54, 70, 230) 48%, rgb(73, 76, 98) 92%);
}

.text_task_in_button {
    background-color: #34353F;
    /* width: 100%; */
    padding: 20px;
}

.required {
    text-align: right;
    font-size: 12px;
    color: var(--color-red-light);
}

.dark-theme .report .card-body p {
    color: var(--text-color-gray-light);
}

.report .card-body p {
    color: var(--text-color-light);
}

.report .h5 {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.report .card {
    margin-bottom: 15px;
}

.report .card .tdWidth {
    width: 270px;
}

.sticky-card {
    position: sticky !important;
    top: 20px; /* Можно добавить отступ от верха */
    align-self: flex-start; /* Если карточка внутри Flex/Grid */
    z-index: 100;
}

.scroll{
    scrollbar-width: thin;
}

.scroll::-webkit-scrollbar {
    height: 7px; /* Ширина всего элемента навигации */
}

.scroll::-webkit-scrollbar-track {
    background: var(--background-color-dark-2); /* Цвет дорожки */
}

.scroll::-webkit-scrollbar-thumb {
    background-color: var(--background-color-dark); /* Цвет бегунка */
    border-radius: 20px; /* Округление бегунка */
    /*border: 3px solid #050c26; !* Оформление границ бегунка *!*/
}

.small-card {
    position: relative;
}

.small-card .inner {
    padding: 10px 10px 0;
    display: flex;
}

.small-card .icon {
    color: rgba(0,0,0,.15);
    z-index: 0;
}

.small-card .icon > i {
    position: absolute;
    right: 15px;
    top: 40px;
    font-size: 70px;
}

.small-card .small-card-footer {
    background-color: var(--background-color-footer);
}

.card-police ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.card-police ul li .form-control {
    width: 140px;
    height: 25px;
}

.messages112 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.messages112-item {
    width: 150px;
    padding: 15px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 5px;
}

.messages112-item h6 {
    color: var(--text-color-gray);
    font-size: 12px;
    height: 20px;
}

.phoneBook .card-body .messages112-item p {
    font-size: 32px;
    margin-bottom: 0;
}

.dark-theme .messages112-item {
    background-color: var(--background-color-dark);
}

.stat-card {
    background: #007bff;;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white; /* добавлено для белого текста */
}
.stat-card:hover {
    background: #e0e0e0;
}

/*Раздел чат-боты телеграмм*/

/* Основные стили для карточек */
.rcc-card {display:flex;flex-direction:column;min-height:30px;background-color:color-mix(in srgb, var(--background-color-dark-2), transparent);border-radius:12px;overflow:hidden;box-shadow:0 4px 6px rgba(0,0,0,0.05);transition:all 0.3s ease;position:relative;}
.light-theme .rcc-card {background-color:#fff;box-shadow:0 4px 6px rgba(0,0,0,0.1);}
.card-header-bot {padding:20px;position:relative;color:white;}
.card-icon {position:absolute;right:20px;top:20px;width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:24px;background:rgba(255,255,255,0.2);}
.rd-dy {padding:20px;flex-grow:1;}
.card-footer-bot {padding:15px 20px;border-top:1px solid #eee;display:flex;justify-content:space-between;align-items:center;}
/* Общий стиль для .card-link */
.card-link {
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Стиль для тёмной темы */
body.dark-theme .card-link {
    color: #00ffff; /* Цвет для тёмной темы */
}

body.dark-theme .card-link:hover {
    color: #00ffff;
}

/* Стиль для светлой темы (например, когда body не имеет класса dark-theme) */
body:not(.dark-theme) .card-link {
    color: #0088cc; /* Цвет для светлой темы */
}

body:not(.dark-theme) .card-link:hover {
    color: #006699;
}

/* Стили для статистики ботов */
.bots-stats {display:grid;grid-template-columns:repeat(3, 1fr);gap:15px;margin-bottom:20px;font-size:28px;}
.bot-stat {text-align:center;word-break:break-word;}
.bot-stat .label {font-size:14px;display:block;margin-top:5px;}

/* Стили для деталей карточки */
.card-details {max-height:0;overflow:hidden;transition:max-height 0.5s ease;background:rgba(0,0,0,0.02);border-radius:8px;}
.card-details.active {padding:15px;margin-top:15px;overflow-y:auto;max-height:300px;}
.detail-item {display:flex;justify-content:space-between;margin-bottom:10px;font-size:14px;}
.toggle-details {display:block;width:100%;padding:10px;background:linear-gradient(135deg, #06d6a0 0%, #048a81 100%);border:none;border-radius:8px;color:#e1e5eb;font-weight:600;cursor:pointer;margin-top:10px;text-align:center;}


/* Специфичные стили для телеграм карточек */
.card-telegram .card-header-bot {background:linear-gradient(135deg, #06d6a0 0%, #048a81 100%);}
.card-details i, .bot-stat i {color:#06d6a0;}
.card-header-bot h4, .card-header-bot p {display:block;margin:0;}

/* Дополнительные стили */
.stat-value {margin-left: 5px;}
@keyframes fadeIn {to {opacity:1;}}


/*СЦГ*/

.btn-add-zone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin-right: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.2s;
}

/* Красная зона */
.btn-red {
    background-color: #dc3545; /* красный */
    color: #fff;
}
.btn-red:hover {
    background-color: #c82333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Желтая зона */
.btn-yellow {
    background-color: #ffc107; /* желтый */
    color: #fff;
}
.btn-yellow:hover {
    background-color: #e0a800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Зеленая зона */
.btn-green {
    background-color: #28a745; /* зеленый */
    color: #fff;
}
.btn-green:hover {
    background-color: #218838;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.circle-red {
    color: #dc3545; /* Красный цвет */
    font-size: 1.5rem;
}
.circle-yellow {
    color: #ffc107; /* Желтый цвет */
    font-size: 1.5rem;
}
.circle-green {
    color: #28a745; /* Зеленый цвет */
    font-size: 1.5rem;
}

/* Общие стили для круговых иконок */
.circle-primary-sm, .circle-info-sm, .circle-warning-sm, .circle-success-sm,
.circle-red-sm, .circle-yellow-sm, .circle-green-sm {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.35rem;
    font-size: 1.4rem;
}

.circle-primary-sm {
    background-color: rgba(13, 110, 253, 0.2);
    color: #0d6efd;
}

.circle-info-sm {
    background-color: rgba(13, 202, 240, 0.2);
    color: #0dcaf0;
}

.circle-warning-sm {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.circle-success-sm {
    background-color: rgba(25, 135, 84, 0.2);
    color: #198754;
}

.circle-red-sm {
    background-color: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.circle-yellow-sm {
    background-color: rgba(255, 209, 102, 0.2);
    color: #ffd166;
}

.circle-green-sm {
    background-color: rgba(6, 214, 160, 0.2);
    color: #06d6a0;
}


.legend-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}
/* Общие стили для круговых иконок  в объектах с рисками */
.section-icon_objects {
    font-size: 15px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
}
.section-icon_objects:hover {
    transform: scale(1.2) rotate(35deg);

}

/* Часы в РKЦ*/
.elegant-clock {
    width: 150px; /* чуть меньше, чем 150px */
    height: 150px; /* чуть меньше, чем 150px */
    position: relative;
}
.clock-face {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #fff;
    border: 6px solid #3a4a6d;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1),
    inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.numbers {
    position: absolute;
    width: 100%;
    height: 100%;
}

.number {
    position: absolute;
    display: block;
    width: 20px; /* чуть меньше, чем 20px */
    height: 20px; /* чуть меньше, чем 20px */
    text-align: center;
    line-height: 18px;
    font-size: 14px; /* чуть меньше, чем 14px */
    font-weight: bold;
    color: #3a4a6d;
    transform: translate(-50%, -50%);
}

/* Позиции цифр на циферблате */
.pos1 { left: 70%; top: 15.5%; }
.pos2 { left: 82.5%; top: 30%; }
.pos3 { left: 90.5%; top: 50%; }
.pos4 { left: 82.5%; top: 70%; }
.pos5 { left: 70%; top: 84.5%; }
.pos6 { left: 50%; top: 90.5%; }
.pos7 { left: 30%; top: 84.5%; }
.pos8 { left: 17.5%; top: 70%; }
.pos9 { left: 9.5%; top: 50%; }
.pos10 { left: 17.5%; top: 30%; }
.pos11 { left: 30%; top: 15.5%; }
.pos12 { left: 50%; top: 9.5%; }

.hand {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform-origin: 50% 100%;
    border-radius: 4px;
}

.hour-hand {
    width: 6px; /* чуть меньше, чем 6px */
    height: 35px; /* чуть меньше, чем 35px */
    background: #3a4a6d;
    margin-left: -3px;
}

.minute-hand {
    width: 4px; /* чуть меньше, чем 4px */
    height: 45px; /* чуть меньше, чем 45px */
    background: #5d6b8a;
    margin-left: -2px;
}

.second-hand {
    width: 3px; /* чуть меньше, чем 3px */
    height: 50px; /* чуть меньше, чем 50px */
    background: #e74c3c;
    margin-left: -1.5px;
}

.center-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px; /* чуть меньше, чем 10px */
    height: 10px; /* чуть меньше, чем 10px */
    background: #e74c3c;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.time-now {
    font-size: 25px; /* чуть меньше, чем 22px */
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.work-status {
    font-size: 18px; /* чуть меньше, чем 14px */
    font-weight: bold;
    margin-bottom: 5px;
    padding: 3px 6px;
    border-radius: 5px;
    color: white;
}

.time-left {
    font-size: 18px; /* чуть меньше, чем 15px */
    opacity: 0.9;
}

.status-working {
    background-color: #2ecc71;
}

.status-lunch {
    background-color: #f39c12;
}

.status-closed {
    background-color: #e74c3c;
}

.status-weekend {
    background-color: #9b59b6;
}


/* Факты про Иркутскую область*/

.fact-counter {
    font-size: 1rem;
    font-style: italic;
    text-align: right;
    padding-right: 10px;
}

/* Техническое обслуживание */
.enhanced-monitoring {
    --color-normal: #2ecc71;
    --color-warning: #e53e3e;
    --color-error: #e53e3e;
    --color-bg: #f7fafc;
}

.status-visual {
    position: relative;
    width: 100px;
    height: 100px;
    margin-right: 20px;
    flex-shrink: 0;
}

.status-circle {
    position: relative;
    width: 100%;
    height: 100%;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #edf2f7;
}

.circle-progress {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(var(--color-normal) 0% 100%);
    clip-path: circle(50% at 50% 50%);
    transition: background 0.6s ease;
}

.status-emoji {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: all 0.4s ease;
}

.status-pulse {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: rgba(56, 161, 105, 0.3);
    animation: pulse 2s infinite;
    z-index: -1;
}

.status-title {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--color-normal);
    transition: color 0.4s ease;
}

/* Переключатель с улучшенной индикацией */
.enhanced-toggle {
    display: block;
    position: relative;
    cursor: pointer;
}

.toggle-track {
    display: block;
    height: 60px;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.toggle-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(46, 204, 113, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 0;
}

.enhanced-toggle input:checked + .toggle-track .toggle-indicator {
    left: 50%;
    background: rgba(229, 62, 62, 0.2);
}

.toggle-icons {
    position: relative;
    display: flex;
    height: 30px;
    z-index: 1;
}

.toggle-icons span {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.icon-normal {
    opacity: 1;
}
.icon-warning {
    opacity: 0.3;
}

.enhanced-toggle input:checked + .toggle-track .icon-normal {
    opacity: 0.3;
}
.enhanced-toggle input:checked + .toggle-track .icon-warning {
    opacity: 1;
}

.toggle-labels {
    display: flex;
    font-size: 12px;
    position: relative;
    z-index: 1;

}

.toggle-labels span {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.label-normal {
    color: #2ecc71;
}
.label-warning {
    color: #a0aec0;
}

.enhanced-toggle input:checked + .toggle-track .label-normal {
    color: #a0aec0;
}
.enhanced-toggle input:checked + .toggle-track .label-warning {
    color: #e53e3e;
}

.enhanced-toggle input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.warning-mode .status-pulse {
    background: rgba(229, 62, 62, 0.3);
    animation: pulse 2s infinite;
}

.warning-mode .status-title {
    color: #e53e3e;
}


/* Системные администраторы */

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Карточка администратора */
.admin-card {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 12px 24px rgba(0, 0, 0, 0.1); /* Многослойная тень для глубины */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0, 0, 0, 0.1); /* Легкая граница */
    cursor: pointer; /* Для интерактивности */
}

/* Эффект при наведении */
.admin-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.2); /* Немного более насыщенная граница при наведении */
}

.admin-card-header {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, var(--admin-light), white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.admin-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-avatar-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--admin-primary), var(--admin-accent));
    font-size: 2rem;
    font-weight: 600;
}



.admin-card-body {
    padding: 20px;
    flex-grow: 1;
}

.admin-name {
    margin: 0 0 5px 0;
    color: var(--admin-text);
    font-size: 1.2rem;
}


.admin-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--admin-text);
    font-size: 1rem;
}

.admin-contact-item i {
    color: var(--admin-gray);
    width: 20px;
    text-align: center;
}



.admin-stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}


.status-active {
    color: #4CAF50;
    font-weight: 600;
}

.admin-card-footer {
    display: flex;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 15px 20px;
}

.btn-admin-action {
    flex: 1;
    background: none;
    border: none;
    color: var(--admin-primary);
    font-weight: 500;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.85rem;
}

.admin-modal-footer {
    background: var(--admin-light);
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 15px 30px;
    justify-content: flex-start;
}

/* Разделы РКЦ */

/* Белая стрелка для аккордеона на темном фоне */
.accordion-button::after {
    filter: brightness(0) invert(1);
}

/* Базовые стили */
.rcc-dashboard {
    padding: 30px;
}

/* Обзор статистики */
.rcc-stats-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Базовый стиль для .rcc-stat-card */
.rcc-stat-card {
    background-color: color-mix(in srgb, var(--background-color-dark-2), transparent);
    /* остальные стили */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Светлая тема */
.light-theme .rcc-stat-card {
    background-color: #fff; /* Белый фон в светлой теме */
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    color: white;
}


.stat-icon.blue { background: #3498db; }
.stat-icon.green { background: #2ecc71; }
.stat-icon.orange { background: #e67e22; }
.stat-icon.yellow { background: #FFC107;}



/* Сетка карточек */
.rcc-stats-overview {
    display: grid;
    flex-wrap: wrap;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 10px;
}

/* Общие стили карточек */
.rcc-card {
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 20px); /* или другая ширина, под вашу сетку */
    min-height: 30px; /* или нужная минимальная высота */
    background-color: color-mix(in srgb, var(--background-color-dark-2), transparent);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

/* Светлая тема */
.light-theme .rcc-card {
    background-color: #fff; /* Белый фон в светлой теме */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Можно сделать тень чуть заметнее в светлой теме */
}

.card-header-rkc {
    padding: 20px;
    position: relative;
}
.card-footer-rkc {
    padding: 15px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Карточка эффективности */
.rcc-card.efficiency .card-header-rkc {
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
}

.card-stats-rkc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}
.stat-item-rkc {
    text-align: center;
    margin-top: 15px;
}

.stat-item-rkc .value {
    font-size: 18px;

}

.stat-item-rkc .label {
    font-size: 12px;

    display: block;
    margin-top: 5px;
}

.progress-container-rkc {
    width: 100%;
    max-width: 400px;
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    margin: 20px auto; /* центрирование контейнера */
}

.progress-bar-rkc {
    height: 100%;
    background-color: #4CAF50;
    width: 0; /* начальная ширина для анимации */
    border-radius: 10px 0 0 10px;
    transition: width 1.5s ease-in-out; /* плавная анимация изменения ширины */
}

/* Карточка дорожных карт */
.rcc-card.roadmap .card-header-rkc {
    background: linear-gradient(135deg, #06d6a0 0%, #048a81 100%);
    color: white;
}

.roadmap-item {
    display: flex;
    margin: 15px 0 15px 15px;
    position: relative;
}

.roadmap-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ecf0f1;
    margin-right: 15px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.roadmap-item.active .roadmap-dot {
    background: #06d6a0;
    box-shadow: 0 0 0 4px rgba(6,214,160,0.2);
}

/* Карточка проектов */
.rcc-card.projects .card-header-rkc {
    background: linear-gradient(135deg, #4895ef 0%, #3f37c9 100%);
    color: white;
}

.project-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Карточка Telegram ботов */
.rcc-card.telegram .card-header-rkc {
    background: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
    color: white;
}


.bot-stat .value {
    font-size: 18px;

}

.bot-stat .label {
    font-size: 12px;

    display: block;
    margin-top: 5px;
}

.bot-tag {
    background: #f5f6fa;
    padding: 8px 10px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 500;

}

/* Виджеты */
.widget {
    background-color: var(--background-color-dark-2, #2c2f33);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* Светлая тема */
.light-theme .widget {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Список активностей */
.activity-list {
    max-height: 400px;
    overflow-y: auto;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* Стиль элементов уведомлений */
.activity-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
    transition: background-color 0.2s, transform 0.2s;
    cursor: pointer; /* добавлено для интерактивности */
    border-bottom: 1px solid #eee;
}






.admin-card-header-rkc {
    margin-left: 15px;
    margin-top: 15px;
    display: flex;
    gap: 25px; /* Добавляет промежуток между элементами внутри flex-контейнера */
}

.activity-text {
    font-size: 12px;
    color: #fff;
    margin-bottom: 4px;
}
.light-theme .activity-text {
    color: #222;
}
.activity-time {
    font-size: 0.8em;
    color: #bbb;
}

/* Кнопка закрытия */
.close-btn-rkc {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    color: #888;
    transition: color 0.2s;
}

.close-btn-rkc:hover {
    color: #e74c3c;
}

.titleInput {
    margin-left: 10px;
    font-size: 14px;
}

.titleSmallGray {
    font-size: 14px;
    color: var(--text-color-gray);
}

.dark-theme .titleSmallGray {
    color: var(--text-color-gray-light);
}

.bigText {
    font-size: 22px;
    font-weight: bold;
}



/*Телефоный справочник - поиск*/

.department-link-wrapper {
    --primary-color: #4361ee;
    --hover-color: #3a0ca3;
    --text-color: #2b2d42;
}

.modern-department-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.modern-department-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(67, 97, 238, 0.15);
    color: var(--primary-color);
    border-color: rgba(67, 97, 238, 0.2);
}

.link-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.arrow-wrapper {
    display: flex;
    align-items: center;
    margin-left: 12px;
    position: relative;
    width: 24px;
    height: 18px;
}

.arrow-wrapper svg {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.arrow-wrapper .bi-arrow-right {
    opacity: 1;
    transform: translateX(0);
}

.arrow-wrapper .bi-arrow-right-short {
    opacity: 0;
    transform: translateX(-10px);
}

.modern-department-link:hover .bi-arrow-right {
    opacity: 0;
    transform: translateX(10px);
}

.modern-department-link:hover .bi-arrow-right-short {
    opacity: 1;
    transform: translateX(0);
}

/* Эффект подчеркивания */
.modern-department-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.modern-department-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}


/*Уведомления об обновлений*/
.notifications-container {
    position: absolute;
    top: 100%;
    right: 0;
    width: 450px;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
    margin-top: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.notifications-container.show {
    display: block;
    animation: slideInDown 0.3s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.notifications-header {
    padding: 1.25rem;
    border-bottom: 1px solid #e9ecef;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

.notifications-header h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.notifications-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.25rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notifications-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.notifications-list {
    max-height: 500px;
    overflow-y: auto;
    padding: 0.5rem;
}

.notification-item {
    display: flex;
    padding: 1.25rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.notification-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px 0 0 2px;
}

.notification-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.notification-item:last-child {
    margin-bottom: 0;
}

.notification-icon {
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.notification-icon i {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.3;
}

.notification-message {
    color: #5a6c7d;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Стили для ограничения текста */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em; /* 3 строки * 1.5 line-height */
}

.notification-message.expanded {
    -webkit-line-clamp: unset;
    max-height: none;
}

.notification-message p {
    margin-bottom: 0.5rem;
    display: inline;
}

.notification-message span {
    font-family: inherit !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    color: inherit !important;
}

.notification-message strong {
    color: #2c3e50;
    font-weight: 600;
}

.notification-message em {
    color: #7f8c8d;
    font-style: italic;
}

.notification-date {
    font-size: 0.8rem;
    color: #95a5a6;
    font-weight: 500;
}

.notification-actions {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.75rem;
    flex-shrink: 0;
    flex-direction: column;
}

.confirm-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 0.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.confirm-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.expand-btn {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    border: none;
    color: white;
    border-radius: 8px;
    padding: 0.4rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
    font-size: 0.9rem;
}

.expand-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.4);
}

.notification-empty {
    padding: 3rem 2rem;
    text-align: center;
    color: #bdc3c7;
}

.notification-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.notification-empty p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.notifications-footer {
    padding: 1.25rem;
    border-top: 1px solid #e9ecef;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 0 0 12px 12px;
}

.notifications-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
}

.notifications-footer .btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    white-space: nowrap;
}

.notifications-footer .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
}

.notifications-footer .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.notifications-footer .btn-outline-secondary {
    border: 1px solid #6c757d;
    color: #6c757d;
    background: transparent;
}

.notifications-footer .btn-outline-secondary:hover {
    background: #6c757d;
    border-color: #6c757d;
    color: white;
    transform: translateY(-1px);
}



.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    }
}

.notifications-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
    backdrop-filter: blur(2px);
}

.notifications-overlay.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Анимация подтверждения */
.notification-item.confirming {
    animation: confirmAnimation 0.6s ease forwards;
}

@keyframes confirmAnimation {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    50% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
        height: 0;
        margin-bottom: 0;
        padding: 0;
    }
}

/* Точки контроля*/

/* Стили для мероприятий */
.event-item {
    font-size: 0.75rem;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 8px;
    cursor: default;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    border-left: 5px solid;
    border-right: 1px solid rgba(0,0,0,0.05);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.event-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
}

/*.event-item:hover {*/
    /*transform: translateY(-3px);*/
    /*box-shadow: 0 6px 8px rgba(0,0,0,0.15);*/
/*}*/

/* КРАСНЫЙ - Губернатор */
.event-item.governor {
    background: linear-gradient(135deg, #fff5f5, #fed7d7);
    border-left-color: #e53e3e;
    color: #742a2a;
}

.event-item.governor::before {
    background: linear-gradient(90deg, transparent 0%, #e53e3e 50%, transparent 100%);
}

/* ЖЕЛТЫЙ - Первый заместитель/Председатель Правительства */
.event-item.first-deputy {
    background: linear-gradient(135deg, #fffaf0, #feebc8);
    border-left-color: #dd6b20;
    color: #744210;
}

.event-item.first-deputy::before {
    background: linear-gradient(90deg, transparent 0%, #dd6b20 50%, transparent 100%);
}

/* ЗЕЛЕНЫЙ - Заместитель Председателя/Заместитель Губернатора */
.event-item.deputy {
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    border-left-color: #38a169;
    color: #22543d;
}

.event-item.deputy::before {
    background: linear-gradient(90deg, transparent 0%, #38a169 50%, transparent 100%);
}

/* СЕРЫЙ - Не подтверждено */
.event-item.not-confirmed {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left-color: #6c757d;
    color: #495057;
    opacity: 0.7;
}

.event-item.not-confirmed::before {
    background: linear-gradient(90deg, transparent 0%, #6c757d 50%, transparent 100%);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 8px;
}

.event-time {
    font-weight: 700;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.event-name {
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.event-details {
    font-size: 0.65rem;
    line-height: 1.3;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 2px;
}

.event-chairman {
    font-weight: 600;
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    gap: 4px;
    padding-top: 6px;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin-top: 6px;
}

.event-icon {
    font-size: 0.7rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.no-events {
    color: #6c757d;
    font-style: italic;
    font-size: 0.75rem;
    text-align: center;
    padding: 30px 0;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px dashed #dee2e6;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* СТИЛИ ДЛЯ СТАТУСОВ МЕРОПРИЯТИЙ */
.event-status-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 8px;
    border-radius: 12px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.3);
}

.status-upcoming {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.status-current {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.status-completed {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

.status-not-confirmed {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    text-shadow: 0 1px 1px rgba(0,0,0,0.3);
}

/* Анимация пульсации для текущего мероприятия */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.schedule-container {
    position: relative;
    overflow: hidden;
    border: 1px solid #dee2e6;
    border-radius: 8px;
}

.schedule-wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
}

.fixed-sidebar {
    position: sticky;
    left: 0;
    background: white;
    z-index: 20;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

.days-container {
    display: flex;
    min-width: min-content;
}

.day-column {
    min-width: 300px;
    background: white;
    flex-shrink: 0;
}

.schedule-table {
    margin-bottom: 0;
}

.schedule-table thead th {
    border-bottom: 2px solid #dee2e6;
    vertical-align: middle;
}

.schedule-table tbody tr {
    height: 560px;
}

.schedule-table td {
    vertical-align: top;
    border: 1px solid #dee2e6;
}

.events-container {
    height: 100%;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
    max-height: 505px;
}

/* Стили для карточек заместителей */
.vice-card {
    background: white;
}

.vice-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

/* ДЕСКТОПНАЯ ВЕРСИЯ - ПОКАЗЫВАЕТСЯ ПО УМОЛЧАНИЮ */
.desktop-schedule {
    display: block;
}

/* МОБИЛЬНАЯ ВЕРСИЯ - СКРЫТА ПО УМОЛЧАНИЮ */
.mobile-schedule {
    display: none;
}

/* Стили для мобильной версии */
.vice-week-section {
    border: 1px solid #dee2e6;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    margin-bottom: 20px;
}

.days-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0 15px 15px 15px;
}

.days-wrapper {
    display: flex;
    gap: 12px;
    min-width: min-content;
}

.mobile-day-column {
    min-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e9ecef;
}

.mobile-day-header {
    text-align: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #dee2e6;
}

.mobile-day-name {
    font-weight: 700;
    font-size: 1rem;
    color: #495057;
    margin-bottom: 5px;
}

.mobile-day-date {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.mobile-add-event-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    font-size: 0.9rem;
}

.view-details-btn {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    width: 100%;
    justify-content: center;
}

.view-details-btn:hover {
    background: linear-gradient(135deg, #0a58ca, #084298);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .desktop-schedule {
        display: none;
    }

    .mobile-schedule {
        display: block;
    }

    .container-fluid.py-4 {
        padding: 10px 5px;
    }

    h1.display-6 {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .card-body.p-3 {
        padding: 1rem;
    }

    .d-flex.flex-wrap.gap-3 {
        gap: 8px;
        flex-direction: column;
    }

    .d-flex.gap-3.justify-content-between {
        flex-direction: column;
        gap: 10px;
    }

    .btn-outline-primary {
        width: 100%;
        justify-content: center;
    }

    .vice-card-mobile {
        margin-bottom: 0;
    }

    .vice-card-mobile .card-body {
        padding: 15px;
    }

    .vice-photo-mobile {
        width: 150px;
        height: 150px;
    }

    .mobile-day-column {
        min-width: 300px;
        padding: 12px;
    }

    .mobile-day-name {
        font-size: 0.9rem;
    }

    .mobile-day-date {
        font-size: 0.8rem;
    }

    .event-item {
        padding: 10px;
        margin-bottom: 8px;
        font-size: 0.7rem;
    }

    .event-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .event-time {
        font-size: 0.65rem;
    }

    .event-name {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .event-details,
    .event-chairman {
        font-size: 0.6rem;
    }

    .btn-primary.btn-sm,
    .confirm-btn {
        font-size: 0.6rem;
        padding: 6px 10px;
        width: 100%;
    }

    .event-status-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .assistants-list {
        margin-top: 10px;
        font-size: 0.8rem;
    }

    .assistants-list .small {
        font-size: 0.75rem;
    }

    .modal {
        z-index: 1060;
        position: fixed;
    }

    .modal-backdrop {
        z-index: 1050;
    }

    .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }

    .modal-content {
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .modal-body {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 15px;
    }

    .card-body.p-3 {
        padding: 15px;
    }

    .participant-card {
        padding: 8px;
        flex-direction: column;
        text-align: center;
    }

    .col-md-6, .col-md-8, .col-md-4 {
        width: 100%;
        margin-bottom: 15px;
    }

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

    .modal-footer .btn {
        width: 100%;
        margin: 0;
    }


}

/* Очень маленькие экраны */
@media (max-width: 480px) {
    .mobile-day-column {
        min-width: 300px;
        padding: 10px;
    }

    .vice-photo-mobile {
        width: 150px;
        height: 150px;
    }

    .event-item {
        padding: 8px;
        font-size: 0.65rem;
    }

    .days-scroll-container {
        padding: 0 10px 10px 10px;
    }
}
















/* Адаптивность для мобильных устройств */
@media (max-width: 576px) {
    .notifications-container {
        width: 95vw;
        right: -10px;
    }

    .notifications-footer-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .notifications-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .notification-message {
        -webkit-line-clamp: 2;
        max-height: 3em;
    }
}

.circleBtn {
    border: none !important;
    border-radius: 100% !important;
    width: 30px;
    height: 30px;
    padding: 0 !important;
}

.delete-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    width: 100%;
    justify-content: center;
}

.delete-btn:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}
.event-item .confirm-btn {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    width: 100%;
    justify-content: center;
}

.event-item .confirm-btn:hover {
    background: linear-gradient(135deg, #218838, #1e9e8a);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Общие улучшения для модальных окон */
.modal {
    backdrop-filter: blur(5px);
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
}

.view-document-btn {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    border: none;
}

.view-document-btn:hover {
    background: linear-gradient(135deg, #0a58ca, #084298);
    color: white;
}

.info-line {
    border-bottom: 1px solid #f0f0f0;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-line:last-child {
    border-bottom: none;
}

.info-icon {
    font-size: 1.3rem;
    color: #0d6efd;
    flex-shrink: 0;
}



.info-value {
    font-size: .95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.info-text-block {
    display: flex;
    flex-direction: column;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 12px;
}

.document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    gap: 12px;
}

.document-item:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.document-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.document-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.document-icon.pdf {
    background: #ffebee;
    color: #f44336;
}

.document-icon.doc,
.document-icon.docx {
    background: #e3f2fd;
    color: #2196f3;
}

.document-icon.xls,
.document-icon.xlsx {
    background: #e8f5e8;
    color: #4caf50;
}

.document-icon.jpg,
.document-icon.jpeg,
.document-icon.png {
    background: #fff3e0;
    color: #ff9800;
}

.document-icon.ppt,
.document-icon.pptx {
    background: #fce4ec;
    color: #e91e63;
}

.document-icon.zip,
.document-icon.rar {
    background: #f3e5f5;
    color: #9c27b0;
}

.document-icon.default {
    background: #f5f5f5;
    color: #757575;
}

.document-text {
    min-width: 0;
    flex: 1;
}

.document-name {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 4px;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.document-size {
    font-size: 0.75rem;
    color: #6c757d;
}

.document-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.document-actions .btn {
    padding: 6px 8px;
    font-size: 0.75rem;
}

/* Стили для улучшенного блока участников */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

/*. {*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.:hover {*/
/*    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;*/
/*}*/

.avatar-placeholder {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.status-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.status-indicator i {
    font-size: 0.6rem;
}

.participants-list::-webkit-scrollbar {
    width: 6px;
}

.participants-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.participants-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.participants-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Анимации */
.participant-card {
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .participant-card {
        padding: 15px 12px;
    }

    .avatar-placeholder {
        width: 45px !important;
        height: 45px !important;
    }

    .participant-name {
        font-size: 0.9rem !important;
    }

    .participants-stats .h4 {
        font-size: 1.25rem;
    }
}
/* Для мобильной версии добавьте эти стили */
.days-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 0 15px 15px 15px;
    /* Добавьте полосу прокрутки */
    scrollbar-width: thin;
    scrollbar-color: var(--background-color-dark) var(--background-color-dark-2);
}

/* Стилизация полосы прокрутки для WebKit браузеров */
.days-scroll-container::-webkit-scrollbar {
    height: 7px;
}

.days-scroll-container::-webkit-scrollbar-track {
    background: var(--background-color-dark-2);
    border-radius: 4px;
}

.days-scroll-container::-webkit-scrollbar-thumb {
    background-color: var(--background-color-dark);
    border-radius: 4px;
}

/* Убедитесь, что контейнер дней имеет минимальную ширину */
.days-wrapper {
    display: flex;
    gap: 12px;
    min-width: min-content; /* Это важно для горизонтальной прокрутки */
    padding-bottom: 5px; /* Отступ для полосы прокрутки */
}

/* Стили для каждого дня в мобильной версии */
.mobile-day-column {
    min-width: 280px; /* Фиксированная минимальная ширина */
    max-width: 300px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e9ecef;
    flex-shrink: 0; /* Важно: предотвращает сжатие элементов */
}
/* Бейджи периодичности мероприятий */
.periodicity-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
    border: 1px solid transparent;
    white-space: nowrap;
}

/* Цвета для разных типов периодичности */
.periodicity-weekly {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #1565c0;
    border-color: #90caf9;
}

.periodicity-monthly {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
    color: #7b1fa2;
    border-color: #ce93d8;
}

.periodicity-biweekly {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    border-color: #a5d6a7;
}

.periodicity-once {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    color: #ef6c00;
    border-color: #ffcc80;
}

/* Анимация бейджа */
.periodicity-badge {
    animation: badgePulse 2s infinite alternate;
}

@keyframes badgePulse {
    from {
        box-shadow: 0 0 0 rgba(0,0,0,0.1);
    }
    to {
        box-shadow: 0 0 8px rgba(0,0,0,0.2);
    }
}

/* Для мобильной версии */
@media (max-width: 768px) {
    .periodicity-badge {
        padding: 3px 8px;
        font-size: 0.6rem;
    }
}

.info-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin: 5px 0;
}











/***********************************/
/* Screens */

/* `xxl` applies to x-large devices (large desktops, less than 1400px)*/
@media (max-width: 1399.98px) {

}

/* `xl` applies to large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {

}

/* `lg` applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .eventFeedGovernor a h3 {
        font-size: 10px
    }
    .deputy-name p {
        font-size: 12px;

    }
    .eventDescExcerpt {
        font-size: 10px;
    }
}

/* `md` applies to small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
    .main_head .title .main_title{
        font-size:25px
    }
    .showTitle {
        font-size: 12px
    }
    .navbar-toggler {
        font-size: 12px !important;
    }
    .deputy-name p {
        font-size: 12px;

    }
    .image-container-deputy {
        width: 95%;
        margin: 0 auto;
        text-align: center;
    }

}


/* `sm` applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .eventDescExcerpt {
        font-size: 8px;
    }
}



/* End */
/* /bitrix/templates/main/template_styles.css?176550222498528 */
