

/* Start:/local/components/spll/static.section_description/templates/.default/style.css?178601995597*/
.section__head-content {
    margin-bottom:28px;
}
.section__head-content {
    color: #123670;
}
/* End */


/* Start:/local/components/spll/interact.map/templates/.default/style.css?178481975910142*/
/* Индикатор загрузки */
.loading-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--bg-page);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-width: 250px;
    max-width: 300px;
}

.loading-indicator h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: var(--t-color-3);
    font-weight: 600;
}

.loading-progress-container {
    width: 100%;
    height: 10px;
    background: #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #1E98FF, #4CAF50);
    transition: width 0.5s ease;
}

.loading-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #666;
}

.loading-stats span {
    font-weight: 600;
    color: #333;
}

/* Карусель в балуне кластера */
.ymaps-2-1-79-balloon {
    background: var(--bg-page);
    border: 1px solid var(--border-color-2);
    border-radius: 16px;
    max-width: 440px;
    padding: 24px 12px 24px 24px !important;
    overflow: hidden;

    .ymaps-2-1-79-balloon__content>ymaps {
        width: 100% !important;
    }

    .ymaps-2-1-79-balloon__tail {
        display: none;
    }
}

/* Стили для балуна */
.ymaps-2-1-79-balloon__close-button {
    opacity: 0.7;
    transition: opacity 0.2s;
}

.ymaps-2-1-79-balloon__close-button:hover {
    opacity: 1;
}


/* Общий контейнер */
.interact-map-wrapper {
    display: flex;
    gap: 16px;
    position: relative;
    overflow: visible;
    padding-bottom: 70px;
    max-height: none;
    align-items: flex-start;
}


/* Чекбоксы в стиле Quasar */
.q-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    user-select: none;
    /* Убираем space-between и reverse, чтобы было как на референсе (слева чекбокс, потом текст) */
    justify-content: space-between;
    gap: var(--space-8);
    width: 100%;
}

.q-checkbox__inner {
    width: 18px;
    height: 18px;
    border: 1px solid var(--q-primary);
    border-radius: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    flex-shrink: 0;
}

/* Скрытый нативный чекбокс */
.q-checkbox__native {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* SVG галочка */
.q-checkbox__svg {
    width: 100%;
    height: 100%;
    color: #fff;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.2s, transform 0.2s;
    stroke: currentColor;
    stroke-width: 2px;
}

/* Состояние checked */
.q-checkbox__native:checked+.q-checkbox__bg .q-checkbox__svg {
    opacity: 1;
    transform: scale(1);
}

.q-checkbox__native:checked+.q-checkbox__bg {
    background: var(--q-primary);
    border-color: var(--q-primary);
}

.q-checkbox__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.q-checkbox__label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.bx-yandex-view-layout {
    flex: 1 1 auto;
    max-width: none;
    min-width: 0;
    height: 392px;
    min-height: 392px;
    border-radius: 28px;
    overflow: hidden;
}

.bx-yandex-view-map {
    width: 100%;
    height: 100%;
}

.bx-yandex-view-map .bx-yandex-map {
    height: 100% !important;
}

.map-sidebar.filter {
    border-radius: 16px;
    border: 1px solid #d7baff;
    padding: 24px;
    background-color: #f7f5ff;
    width: 288px;
    min-width: 288px;
    max-width: 288px;
    height: 392px;
    min-height: 392px;
    flex-shrink: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.filter .filter__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
    margin-bottom: 20px;
}

.filter .filter__checkboxes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
}

.q-checkbox .t-3 {
    font-size: 14px;
    font-weight: 500;
}

.map-sidebar.filter .map-full-version-btn {
    width: 100%;
    min-height: 48px;
    height: 48px;
    margin-top: auto;
}

#multi-fetch-progress {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    min-width: 290px;
    z-index: 1000;
}

#multi-fetch-progress .title {
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

#multi-fetch-progress .progress-item {
    margin-bottom: 12px;
}

.progress-item .wrapper-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 12px;
}

.progress-item .progress-bar-container {
    background: #f0f0f0;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
}

.progress-item .progress-bar-fill {
    width: 0%;
    height: 100%;
    background: #32D3FF;
    transition: width 0.3s;
}

/* Адаптивные стили для интерактивной карты */

/* Для планшетов и небольших экранов */
@media (max-width: 1200px) {
    .interact-map-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding-bottom: 40px;
    }

    .map-sidebar.filter {
        width: 100%;
        min-width: 0;
        max-width: none;
        height: 326px;
        min-height: 326px;
        order: 2;
    }

    .bx-yandex-view-layout {
        width: 100%;
        max-width: 100%;
        height: 393px;
        min-height: 393px;
        order: 1;
    }

    .filter .filter__checkboxes {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 16px;
    }

    .filter .filter__checkboxes .q-checkbox {
        width: 100%;
    }

    .map-sidebar.filter .map-full-version-btn {
        width: 236px;
        min-width: 236px;
        align-self: center;
    }
}

/* Для мобильных устройств */
@media (max-width: 680px) {
    .interact-map-wrapper {
        gap: 16px;
        padding-bottom: 32px;
    }

    .map-sidebar.filter {
        height: 326px;
        min-height: 326px;
    }

    .filter .filter__checkboxes .q-checkbox {
        width: 100%;
    }

    /* Адаптация прогресс-бара */
    #multi-fetch-progress {
        top: auto;
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
    }

    .loading-indicator {
        top: auto;
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
    }

    /* Адаптация балуна для мобильных */
    .ymaps-2-1-79-balloon {
        max-width: calc(100vw - 20px) !important;
        padding: 16px 12px 16px 16px !important;
    }

    .ymaps-2-1-79-balloon__content {
        font-size: 14px;
    }

    .bx-yandex-view-layout {
        height: 393px;
        min-height: 393px;
    }

    .map-sidebar.filter .map-full-version-btn {
        width: 236px;
        min-width: 236px;
        align-self: center;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .loading-stats {
        flex-direction: column;
        gap: 4px;
    }

    .progress-item .wrapper-title {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .map-sidebar.filter {
        height: 392px;
        min-height: 392px;
    }
}

/* Для экранов с высокой плотностью пикселей */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .loading-progress-bar {
        background: linear-gradient(90deg, #1E98FF, #4CAF50);
    }
}

/* Опционально: поддержка landscape-ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
    .interact-map-wrapper {
        padding-bottom: 20px;
    }

    .map-sidebar.filter {
        max-height: 200px;
        overflow-y: auto;
    }

    /* В landscape тоже столбиком, но компактнее */
    .filter .filter__checkboxes {
        gap: 8px;
    }
}


.cluster-balloon {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 15px;
}

.cluster-balloon-item,
.obj-balloon {
    width: 300px;
}

.cluster-balloon-item a,
.obj-balloon a {
    text-decoration: none
}

.obj-balloon .obj-img-wrapper {
    background-size: cover;
    overflow: hidden;
    /* height: 267px; */
    align-items: center;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    background-position: 50%;
    background-repeat: no-repeat;
}

.obj-balloon .obj-img-wrapper img {
    /* height: 100%; */
    /* width: 100%; */
    max-height: 80px;
}

.obj-balloon .obj-titles {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 4px;
    margin-top: 16px;
}

.obj-balloon h3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    font-size: 20px;
    font-weight: 600;
    color: #152138;
    line-height: 28px;
}

.obj-balloon .obj-address {
    font-size: 16px;
    font-weight: 400;
    color: #59647a;
    line-height: 24px;
}

.cluster-balloon-item h4 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    font-size: 16px;
    font-weight: 600;
    color: #152138;
    line-height: 22px;
}

.cluster-balloon-item h4 span {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
}

.cluster-balloon-item .obj-address {
    font-size: 14px;
    font-weight: 400;
    color: #59647a;
    line-height: 20px;
}

/* End */


/* Start:/local/components/b2c/ui.button/buttons.css?17851611903168*/
.b2c-btn {
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    box-sizing: border-box;
    border: solid transparent 2px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 500;
    font-family: var(--font-family-1);
    font-size: 16px;
    line-height: 140%;
    cursor: pointer;
}
.b2c-btn, .b2c-btn * {
    transition: var(--animate-duration);
}
.b2c-btn_inline {
    display: inline-flex;
}
.b2c-btn.b2c-btn_square {
    width: 44px;
    padding: 10px;
}

.b2c-btn.b2c-btn_icon {
    min-height: 36px;
    padding: 0;
    background: transparent;
    border-color: transparent;
    color: var(--t-color-1);
}

.b2c-btn_1 {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: var(--t-color-5);
}
.b2c-btn_1:hover {
    background: var(--q-accent);
    border-color: var(--q-accent);
    color: var(--t-color-5);
}

.b2c-btn_2 {
    background: var(--q-accent);
    border-color: var(--q-accent);
    color: var(--t-color-5);
}
.b2c-btn_2:hover {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: var(--t-color-5);
}

.b2c-btn_3 {
    background: var(--bg-page);
    border-color: var(--bg-page);
    color: var(--t-color-1);
}
.b2c-btn_3:hover {
    background: var(--q-primary);
    border-color: var(--q-primary);
    color: var(--t-color-5);
}
.b2c-btn_border-3 {
    border-color: var(--t-color-1);
}

.b2c-btn_4 {
    background: var(--bg-page);
    border-color: var(--bg-page);
    color: var(--t-color-1);
}
.b2c-btn_4:hover {
    background: var(--q-accent);
    border-color: var(--q-accent);
    color: var(--t-color-5);
}

.b2c-btn_5 {
    background: var(--bg-page);
    border-color: var(--t-color-4);
    color: var(--t-color-4);.b2c-btn;

    svg path {
        color: var(--t-color-4);
        stroke: var(--t-color-4);
    }
}
.b2c-btn_5:hover {
    background: var(--t-color-4);
    border-color: var(--t-color-5);
    color: var(--t-color-5);

    svg path {
        color: var(--t-color-5);
        stroke: var(--t-color-5);
    }
}

.b2c-btn_6 {
    background: var(--t-color-4);
    border-color: var(--t-color-4);
    color: var(--t-color-5);

    svg path {
        color: var(--t-color-5);
        stroke: var(--t-color-5);
    }
}
.b2c-btn_6:hover {
    background: var(--t-color-5);
    border-color: var(--t-color-5);
    color: var(--t-color-4);

    svg path {
        color: var(--t-color-4);
        stroke: var(--t-color-4);
    }
}
.b2c-btn_border-6 {
    border-color: var(--t-color-1);
}

.b2c-btn-icon {
    background: none !important;
    outline: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
}

.b2c-btn_7 {
    background: white;
    border-color: var(--q-primary);
    color: var(--q-primary);

    svg path {
        color: var(--q-primary);
        stroke: var(--q-primary);
    }
}
.b2c-btn_7:hover {
    background: white;
    border-color: var(--q-clear);
    color: var(--q-clear);

    svg path {
        color: var(--q-clear);
        stroke: var(--q-clear);
    }
}

/* End */


/* Start:/local/templates/main_b2b/components/bitrix/map.yandex.system/company_map/style.css?1776848529666*/
div.bx-yandex-map {color: black; font-size: 11px;}
div.bx-yandex-map div.YMaps-b-balloon-content {color: black; font-size: 11px;}
div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td {
	padding: 0px !important;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td textarea{
	font-size: 11px;
}


div.bx-popup-form div.bx-yandex-map div.YMaps-b-balloon-point div.YMaps-b-balloon div.YMaps-b-balloon-wrap table.YMaps-b-balloon-frame td.YMaps-b-balloon-b {
	background-image: none !important;
}

/* End */


/* Start:/local/components/spll/calendar.mini/templates/tourism/style.css?178816307521538*/
/* === Обёртка всего блока === */
.calendar-mini-wrap {
    width: 100%;
    margin-top: 70px;
    margin-bottom: 70px;
}

/* === Заголовок === */
.calendar-mini-section__title {
    max-width: 717px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1C1B1D;
    margin-bottom: 24px;
    line-height: 120%;
}

/* === Основной контейнер === */
.calendar-mini-section {
    position: relative;
    width: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: 886px 435px;
    column-gap: 15px;
    row-gap: 16px;
    align-items: start;
}

/* === Левая колонка с карточками === */
.calendar-mini-section__list {
    /* колонка не рисует свой бокс: сетка карточек и нижний ряд встают
       ячейками сетки секции и выравниваются с календарём и новостями */
    display: contents;
    width: 886px;
    flex-direction: column;
    gap: 16px;
}

.calendar-mini-events-grid {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    grid-template-columns: repeat(2, 435px);
    gap: 16px;
    min-height: 28.5rem;
}

.calendar-mini-featured {
    grid-column: 1;
    grid-row: 2;
    display: grid;
    grid-template-columns: 435px 322px;
    gap: 16px;
}

.calendar-mini-featured__media-slot {
    width: 435px;
    height: 235px;
}

.calendar-mini-featured__event-slot {
    width: 322px;
    height: 235px;
}

/* === Календарь === */
.calendar-mini-section__sidebar {
    grid-column: 2;
    grid-row: 1;
    width: 435px;
    /* height: 456px; */
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    background: #E8E8FF;
    border-radius: 20px;
    box-sizing: border-box;
}

.calendar-mini-section__sidebar .cal-widget {
    width: 398px;
    height: 392px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #ABABAB;
    border-radius: 10px;
    box-sizing: border-box;
    overflow: hidden;
}

.cal-widget__loading {
    padding: 0;
}


/* === Кнопка перейти к календарю === */
.calendar-mini__btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #3dbf8a;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s;
    box-sizing: border-box;
}

.calendar-mini__btn:hover {
    background: #2ea876;
}

/* === Карточки мероприятий === */
.exhibition-card {
    --calendar-mini-address-max: 190px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    width: 435px;
    height: 240px;
    border: 1px solid #d9d7ff;
    box-sizing: border-box;
}

.calendar-mini-card__link,
.exhibition-card a {
    text-decoration: none;
    color: inherit;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    min-height: 0;
}

.calendar-mini-card__link--compact,
.exhibition-card a.calendar-mini-card__link--compact {
    justify-content: space-between;
}

/* Верхняя строка: адрес · дата */
.exhibition-card__meta {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
    min-width: 0;
    overflow: hidden;
}

.exhibition-card__address {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: var(--calendar-mini-address-max);
    flex: 0 1 auto;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    color: #534FBD;
}

.exhibition-card__address-text {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Точка-разделитель */
.exhibition-card__meta .exhibition-card__address::after {
    content: '•';
    flex: 0 0 auto;
    margin-left: 6px;
    color: #534FBD;
}

.exhibition-card__date {
    flex: 0 0 auto;
    overflow: visible;
    text-overflow: clip;
    white-space: nowrap;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
    color: #534FBD;
}

/* Логотип */
.exhibition-card__logo {
    width: 100px;
    height: 60px;
    flex-shrink: 0;
    margin: 22px 0 0;
    display: flex;
    align-items: center;
}

.exhibition-card__logo img {
    width: 100%;
    height: 100%;
    object-position: left center;
    object-fit: contain;
}

/* Название */
.exhibition-card__title {
    display: block;
    overflow: hidden;
    margin-top: auto;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 138%;
    color: #1C1B1D;
    margin-bottom: 0;
}

.calendar-mini-wrap .exhibition-card__title,
.calendar-mini-wrap .exhibition-card__title.h-3 {
    display: -webkit-box !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden !important;
    text-overflow: ellipsis;
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 138% !important;
    letter-spacing: 0 !important;
    color: #1C1B1D !important;
}

.calendar-mini-card__link--compact .exhibition-card__logo,
.exhibition-card a.calendar-mini-card__link--compact .exhibition-card__logo {
    margin-top: 0;
}

.calendar-mini-card__link--compact .exhibition-card__title,
.exhibition-card a.calendar-mini-card__link--compact .exhibition-card__title {
    margin-top: 0;
}

.calendar-mini-featured__event-slot .exhibition-card,
.calendar-mini-featured__event-slot .exhibition-card--featured {
    --calendar-mini-address-max: 118px;
    width: 322px;
    height: 235px;
}

/* === Фото-карточка со слайдером === */
.exhibition-card--photo {
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
    width: 435px;
    height: 235px;
    min-height: 235px;
    border: 1px solid #d9d7ff;
    background: #fff;
}

/* === Слайдер === */
.excursions-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 235px;
    overflow: hidden;
    border-radius: 20px;
}

.excursions-slider__wrapper {
    display: flex;
    transition: transform 0.4s ease;
    height: 100%;
}

.excursions-slider__slide {
    min-width: 100%;
    height: 100%;
}

.excursions-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.excursions-slider__prev,
.excursions-slider__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.excursions-slider__prev:hover,
.excursions-slider__next:hover {
    background: rgba(0, 0, 0, 0.65);
}

.excursions-slider__prev { left: 10px; }
.excursions-slider__next { right: 10px; }

/* === Новости в сайдбаре === */
.industrial-news {
    grid-column: 2;
    grid-row: 2;
    width: 547px;
    /* блок шире колонки календаря — правые края выровнены, левый выступает */
    margin-left: -112px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.industrial-news__item {
    display: block;
    background: #fff;
    width: 547px;
    padding: 20px;
    border: 1px solid #d9d7ff;
    border-radius: 20px;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 138%;
    color: #1C1B1D;
    text-decoration: none;
    transition: box-shadow 0.2s;
    overflow: hidden;
}

.industrial-news__item:hover {
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.industrial-news__item:first-child {
    /* height: 124px; */
}
.industrial-news__item-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}

.industrial-news__item:last-child:not(:first-child) {
    /* height: 96px; */
}

/* === Виджет календаря === */
.cal-widget__loading {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
    padding: 0;
}

.calendar-component__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.calendar-component__month-year {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1C1B1D;
}

.calendar-component__nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #9ca3af;
    padding: 2px 8px;
    border-radius: 6px;
    line-height: 1;
}

.calendar-component__nav-btn:hover {
    background: #f1f5f9;
}

.cal-widget__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-component__weekdays {
    display: contents;
}

.calendar-component__weekday {
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: #919191;
    padding: 4px 0 8px;
    text-transform: uppercase;
}

.cal-widget__day {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 2px;
    border-radius: 6px;
    min-height: 36px;
    gap: 2px;
    cursor: pointer;
    transition: background 0.15s;
}

.cal-widget__day:hover { background: #f8fafc; }
.cal-widget__day--empty { opacity: 0.3; cursor: default; }
.cal-widget__day--empty:hover { background: transparent; }

.cal-widget__day-num {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 16px;
    color: #1C1B1D;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-widget__day--today {
    background-color: var(--q-primary-light);
}
.cal-widget__day--selected {
    background-color: #E8E8FF;
}
/* .cal-widget__day--today .cal-widget__day-num {
    background: #534FBD;
    color: #fff;
    border-radius: 50%;
} */

/* .cal-widget__day--selected .cal-widget__day-num {
    background: #e2e8f0;
    font-weight: 600;
    border-radius: 50%;
} */

.cal-widget__dots {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
    height: 6px; /* место под точку резервируем всегда — высота строк не «прыгает» */
}

.cal-widget__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

/* Метка «в этот день есть мероприятие» — точка под числом (по макету) */
.cal-widget__dot--event {
    background: #8654CC;
}

.calendar-mini-legend {
    display: none;
}

.calendar-mini__btn {
    width: 398px;
    height: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #24D292;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Raleway', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0.01em;
    box-sizing: border-box;
}

.calendar-mini__btn:hover {
    background: #1fbe84;
}

.calendar-cards__empty {
    width: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #d9d7ff;
    border-radius: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 18px;
    color: #1C1B1D;
    box-sizing: border-box;
    padding: 20px;
}

@media screen and (max-width: 1390px) {
    .calendar-mini-section {
        position: relative;
        min-height: 0;
        display: grid;
        grid-template-columns: 736px 435px;
        column-gap: 16px;
        row-gap: 16px;
        align-items: start;
    }

    .calendar-mini-section__list {
        display: flex;
        width: 736px;
        grid-column: 1;
        grid-row: 1;
        min-height: auto;
    }

    .calendar-mini-events-grid,
    .calendar-mini-featured {
        grid-template-columns: repeat(2, 360px);
        gap: 16px;
    }

    .calendar-mini-featured__media-slot,
    .calendar-mini-featured__event-slot,
    .exhibition-card,
    .calendar-mini-featured__event-slot .exhibition-card,
    .calendar-mini-featured__event-slot .exhibition-card--featured,
    .exhibition-card--photo {
        width: 360px;
        height: 220px;
        min-height: 220px;
    }

    .calendar-mini-featured__event-slot .exhibition-card,
    .calendar-mini-featured__event-slot .exhibition-card--featured {
        --calendar-mini-address-max: 190px;
    }

    .excursions-slider {
        min-height: 220px;
    }

    .exhibition-card__meta,
    .exhibition-card__title {
        max-width: 320px;
    }

    .calendar-mini-section__sidebar {
        position: static;
        grid-column: 2;
        grid-row: 1;
    }

    .industrial-news {
        position: static;
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        height: auto;
        margin-left: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .industrial-news__item {
        width: 100%;
        height: 96px;
    }

    .industrial-news__item:first-child {
        /* height: 124px; */
    }

}

@media screen and (max-width: 1200px) {
    .calendar-mini-wrap {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .calendar-mini-section__title {
        max-width: 717px;
        font-size: 36px;
        line-height: 120%;
        margin-bottom: 24px;
    }

    .calendar-mini-section {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        align-items: start;
        justify-content: start;
    }

    .calendar-mini-section__list,
    .calendar-mini-events-grid,
    .calendar-mini-featured {
        display: contents;
        width: auto;
    }

    .calendar-mini-events-grid > .exhibition-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    .calendar-mini-events-grid > .exhibition-card:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .calendar-mini-section__sidebar {
        grid-column: 2;
        grid-row: 1 / span 2;
        width: 100%;
        /* height: 456px; */
        padding: 20px;
        gap: 20px;
        align-self: stretch;
        justify-self: start;
    }

    .calendar-mini-section__sidebar .cal-widget {
        width: 100%;
        flex: 1 1 auto;
        height: auto;
        padding: 20px;
    }

    .calendar-mini__btn {
        width: 100%;
        height: 48px;
        min-height: 48px;
        font-size: 16px;
    }

    .cal-widget__loading {
        width: 100%;
        height: 100%;
    }

    .calendar-mini-events-grid > .exhibition-card:nth-child(3) {
        grid-column: 1;
        grid-row: 3;
    }

    .calendar-mini-events-grid > .exhibition-card:nth-child(4) {
        grid-column: 2;
        grid-row: 3;
    }

    .calendar-mini-featured__media-slot {
        grid-column: 1;
        grid-row: 4;
    }

    .calendar-mini-featured__event-slot {
        grid-column: 2;
        grid-row: 4;
    }

    .industrial-news {
        grid-column: 1 / -1;
        grid-row: 5;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        width: 100%;
        justify-content: start;
    }

    .calendar-mini-featured__media-slot,
    .calendar-mini-featured__event-slot,
    .exhibition-card,
    .exhibition-card--featured,
    .exhibition-card--photo,
    .industrial-news__item {
        width: 100%;
    }

    .calendar-mini-featured__event-slot .exhibition-card,
    .calendar-mini-featured__event-slot .exhibition-card--featured {
        width: 100%;
        max-width: none;
    }

    .exhibition-card {
        height: 220px;
        padding: 20px;
    }

    .exhibition-card--photo,
    .calendar-mini-featured__media-slot,
    .calendar-mini-featured__event-slot,
    .calendar-mini-featured__event-slot .exhibition-card,
    .calendar-mini-featured__event-slot .exhibition-card--featured {
        height: 220px;
        min-height: 220px;
    }

    .excursions-slider {
        min-height: 220px;
    }

    .exhibition-card__meta,
    .exhibition-card__title {
        max-width: 320px;
    }

    .exhibition-card__meta,
    .exhibition-card__date {
        font-size: 14px;
        line-height: 140%;
    }

    .exhibition-card__address {
        font-size: 14px;
        line-height: 140%;
    }

    .exhibition-card__logo {
        width: 100px;
        height: 60px;
        margin-top: 22px;
    }

    .exhibition-card__title,
    .calendar-mini-wrap .exhibition-card__title,
    .calendar-mini-wrap .exhibition-card__title.h-3 {
        font-size: 20px !important;
        line-height: 138% !important;
    }

    .industrial-news__item,
    .industrial-news__item:first-child,
    .industrial-news__item:last-child:not(:first-child) {
        height: 152px;
        padding: 16px;
        font-size: 20px;
        line-height: 138%;
    }
}

@media screen and (max-width: 768px) {
    .calendar-mini-section {
        grid-template-columns: repeat(2, 360px);
        justify-content: start;
    }

    .calendar-mini-section__sidebar {
        width: 360px;
        max-width: 360px;
        /* height: 456px; */
    }

    .calendar-mini-featured__media-slot,
    .calendar-mini-featured__event-slot,
    .exhibition-card,
    .exhibition-card--featured,
    .exhibition-card--photo,
    .industrial-news__item {
        width: 360px;
    }

    .exhibition-card,
    .exhibition-card--photo,
    .calendar-mini-featured__media-slot,
    .calendar-mini-featured__event-slot,
    .calendar-mini-featured__event-slot .exhibition-card,
    .calendar-mini-featured__event-slot .exhibition-card--featured {
        height: 220px;
        min-height: 220px;
    }

    .industrial-news__item,
    .industrial-news__item:first-child,
    .industrial-news__item:last-child:not(:first-child) {
        width: 360px;
        height: 152px;
    }
}

@media screen and (max-width: 755px) {
    .calendar-mini-wrap {
        margin-top: 24px;
        margin-bottom: 24px;
    }

    .calendar-mini-section__title {
        max-width: none;
        font-size: 23px;
        line-height: 130%;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .calendar-mini-section {
        display: flex;
        flex-direction: column;
        gap: 24px;
        justify-content: flex-start;
        align-items: flex-start;
        overflow: visible;
        padding-bottom: 0;
    }

    .calendar-mini-section__sidebar {
        order: 1;
        width: 100%;
        max-width: none;
        /* height: 456px; */
        justify-self: auto;
    }

    .calendar-mini-section__list {
        order: 2;
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .calendar-mini-section__list::-webkit-scrollbar {
        display: none;
    }

    .calendar-mini-events-grid,
    .calendar-mini-featured {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: nowrap;
        gap: 16px;
        width: max-content;
        flex: 0 0 auto;
    }

    .calendar-mini-featured__media-slot {
        display: none;
    }

    .calendar-mini-featured__media-slot,
    .calendar-mini-featured__event-slot,
    .exhibition-card,
    .exhibition-card--featured,
    .exhibition-card--photo,
    .industrial-news__item {
        width: 260px;
    }

    .calendar-mini-section__sidebar .cal-widget,
    .calendar-mini__btn {
        width: 100%;
    }

    .exhibition-card,
    .exhibition-card--photo,
    .calendar-mini-featured__media-slot,
    .calendar-mini-featured__event-slot,
    .calendar-mini-featured__event-slot .exhibition-card,
    .calendar-mini-featured__event-slot .exhibition-card--featured,
    .industrial-news__item,
    .industrial-news__item:first-child,
    .industrial-news__item:last-child:not(:first-child) {
        height: 220px;
        min-height: 220px;
    }

    .excursions-slider {
        min-height: 220px;
    }

    .exhibition-card__meta,
    .exhibition-card__title {
        max-width: 220px;
    }

    .exhibition-card__logo {
        margin-top: 17px;
    }

    .exhibition-card__title,
    .calendar-mini-wrap .exhibition-card__title,
    .calendar-mini-wrap .exhibition-card__title.h-3,
    .industrial-news__item {
        font-size: 16px !important;
        line-height: 138% !important;
    }

    .industrial-news {
        display: none;
    }
}

@media screen and (max-width: 360px) {
    .calendar-mini-section__title {
        max-width: 320px;
    }

    .calendar-mini-section__sidebar {
        width: 320px;
        max-width: 320px;
    }
}

/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_elements/promo_tours/style.css?17848146041610*/
.tours-section .b2c-card {
    padding: 0 !important;
}

.tours-section .b2c-card__link {
    text-decoration: none;
    color: inherit;
    background-color: #d9efff;
    border-radius: 16px;
    padding: 20px;
    display: block;
    height: 100%;
}

.tours-section .card__link_address {
    padding-right: 6px;
}

.tours-section .b2c-card__link__imager {
    border-radius: 12px;
}

.tours-section .b2c-card .b2c-card__link .card__link_address {
    opacity: 0.5;
    font-style: normal;
}

.tours-section .b2c-card .b2c-card__link .card__link_description {
    color: #344054;
    font-size: 14px;
}

.tours-section .b2c-card .b2c-card__link h3.h-5 {
    font-size: 18px;
}

.tours-section__text[data-v-6bdb5575] {
    color: #123670;
}

@media screen and (max-width: 920px) {
    .tours-section__title[data-v-6bdb5575] {
        font-size: 26px;
        line-height: 1.15;
    }

    .tours-section__text[data-v-6bdb5575] {
        max-width: 100%;
        color: #123670;
    }

    .tours-section__head[data-v-6bdb5575] {
        margin-bottom: 28px;
    }

    .tours-section__content[data-v-6bdb5575] {
        overflow: hidden;
    }

    .swiper.tours-section__slider[data-v-6bdb5575] {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .tours-section__slide[data-v-6bdb5575] {
        width: 360px !important;
        max-width: 360px !important;
        height: auto;
        flex-shrink: 0;
    }

}

@media screen and (max-width: 480px) {
    .tours-section__slide[data-v-6bdb5575] {
        width: 320px !important;
        max-width: 320px !important;
    }
}

/* End */


/* Start:/local/components/b2c/ui.card/templates/tourism/style.css?17768485282628*/
.b2c-card__link {
    text-decoration: none;
}

.b2c-card {
    width: 100%;
    height: 100%;
    overflow: hidden;

    .b2c-card__title {
        color: var(--q-dark);
        font-weight: 600;
    }

    .b2c-card__link {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        cursor: pointer;

        .b2c-card__link__imager {
            position: relative;
            overflow: hidden;
            max-height: 273px;
            aspect-ratio: 16 / 9;

            img {
                width: 100%;
                height: 100%;
                object-position: center;
                object-fit: cover;
                display: block;
            }

            .b2c-card__link__imager_texts {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: space-between;

                .b2c-card__link__imager_texts__labels {
                    display: flex;
                    flex-direction: row;
                    align-items: flex-start;
                    flex-wrap: wrap;
                    gap: 6px;
                }
                .b2c-card__link__imager_texts__labels__label {
                    background-color: #fff;
                }

                .b2c-card__link__imager_texts__dot {
                    transform: translateY(-20%);
                }
            }
        }
        .b2c-card__link__imager::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .b2c-card__link__imager-grad-1::before {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 70.77%, rgba(0, 0, 0, .75) 104.81%);
        }

        .card__link_address {
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            opacity: 0.6;
            font-weight: 400;
            font-style: normal;
            color: var(--q-dark);
        }

        .card__link_description {
            font-size: 1rem;
            font-weight: 400;
            color: var(--q-dark);
            width: 100%;
            display: -webkit-box;
            -webkit-line-clamp: 2;        /* количество строк */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
    }
}

/* End */
/* /local/components/spll/static.section_description/templates/.default/style.css?178601995597 */
/* /local/components/spll/interact.map/templates/.default/style.css?178481975910142 */
/* /local/components/b2c/ui.button/buttons.css?17851611903168 */
/* /local/templates/main_b2b/components/bitrix/map.yandex.system/company_map/style.css?1776848529666 */
/* /local/components/spll/calendar.mini/templates/tourism/style.css?178816307521538 */
/* /local/templates/main_b2b/components/spll/static.banner_with_elements/promo_tours/style.css?17848146041610 */
/* /local/components/b2c/ui.card/templates/tourism/style.css?17768485282628 */
