

/* Start:/local/components/spll/calendar.list/templates/.default/style.css?178518839910106*/
.calendar-page {
    position: relative;
}

.calendar-main__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.calendar-main__heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.calendar-main__title-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.calendar-reset-wrap {
    margin-top: 14px;
}

.calendar-main__title {
    font-size: 32px;
    line-height: 120%;
}

.calendar-list-page {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
}

.calendar-list-page__content {
    flex: 1;
    min-width: 0;
}

.calendar-list-page__sidebar {
    width: 416px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 20px;
}

.calendar-main__content-header {
    display: flex;
    align-items: center;
    gap: 24px;
}

.calendar-main__content-search {
    flex: 1 1 auto;
    min-width: 0;
}

/* Кнопка-лупа. Иконка 24px, зона нажатия расширена до 44px (WCAG 2.5.8)
   отрицательными полями, чтобы не менять высоту поля. */
.calendar-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin: -10px -10px -10px 0;
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    cursor: pointer;
    border-radius: 50%;
    transition: color 0.2s, background-color 0.2s;
}

.calendar-search-btn:hover {
    color: var(--b2b-primary);
    background: rgba(47, 142, 237, 0.08);
}

.calendar-search-btn:focus-visible {
    outline: 2px solid var(--b2b-primary);
    outline-offset: 2px;
}

.calendar-search-btn svg {
    flex-shrink: 0;
    pointer-events: none;
}

.calendar-main__content--categories {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    max-height: 48px;
}

.calendar-tag span {
    white-space: nowrap;
}

.calendar-tag.btn-component--primary-dark {
    background: #2f8eed !important;
    color: #fff !important;
}

.calendar-mobile-filters-btn,
.calendar-mobile-filter-app {
    display: none;
}

.calendar-widget-wrap {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.cal-widget {
    background: transparent;
    padding: 24px;
    border: 1px solid #919191;
    border-radius: 10px;
    min-width: 280px;
    max-width: 416px;
    flex-shrink: 0;
}

.calendar-list-page__sidebar .cal-widget {
    max-width: none;
    width: 100%;
}

.cal-widget__loading {
    text-align: center;
    color: #94a3b8;
    padding: 40px 0;
}

.calendar-component__header {
    margin-bottom: 20px;
}

.calendar-component__month-year {
    color: #123670;
}

.cal-widget__nav {
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    padding: 0;
    border-radius: 6px;
    line-height: 1;
    transition: background 0.15s;
    width: 24px;
    height: 24px;
}

.cal-widget__nav:hover {
    background: #f1f5f9;
}

.js-cal-next .cal-widget__nav-icon {
    transform: rotate(180deg);
}

.calendar-component__weekdays-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    column-gap: 2px;
    margin-bottom: 20px;
}

.calendar-component__weekday {
    color: #adadad;
}

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

.cal-widget__day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: 40px;
    padding: 4px 2px;
    border-radius: 6px;
    min-height: 36px;
    gap: 2px;
    cursor: pointer;
    box-sizing: border-box;
    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--today,
.cal-widget__day--selected {
    border-radius: 8px;
    min-height: 40px;
    padding: 4px 0;
}

.cal-widget__day--today {
    background: #3b82f6;
}

.cal-widget__day--today:hover {
    background: #3b82f6;
}

.cal-widget__day--today .cal-widget__day-num {
    color: #fff;
    width: auto;
    height: auto;
}

.cal-widget__day--selected {
    background: #d9efff;
}

.cal-widget__day--selected:hover {
    background: #d9efff;
}

.cal-widget__day--selected .cal-widget__day-num {
    color: #0a1a3e;
    width: auto;
    height: auto;
}

.cal-widget__day--selected.cal-widget__day--today .cal-widget__day-num {
    color: #0a1a3e;
}

.cal-widget__day-num {
    font-size: 13px;
    color: #123670;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cal-widget__dots {
    display: flex;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.cal-legend {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 4px;
    padding-left: 12px;
}

.cal-legend__item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
}

.cal-legend__dot {
    min-width: 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin-top: 6px;
}

.cal-legend__label {
    font-size: 18px;
    line-height: 130%;
    font-variant-numeric: lining-nums proportional-nums;
    color: #123670;
    max-width: 350px;
    margin: 0;
}

.calendar-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
    text-decoration: underline;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: #123670;
}

.calendar-reset-btn:hover {
    text-decoration: none;
}

.calendar-main__header-sort .custom-select {
    position: relative;
    width: 292px;
    max-width: 100%;
    margin-right: 16px;
    font-family: inherit;
}

.calendar-main__header-sort .select-control {
    min-height: 44px;
    height: 44px;
    background: #f9fcff;
    border: 1px solid rgba(0, 26, 52, 0.5);
    border-radius: 10px;
    padding: 0 12px 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s linear;
    position: relative;
}

.calendar-main__header-sort .select-control,
.calendar-main__header-sort .select-dropdown {
    width: 100%;
}

.calendar-main__header-sort .select-control:hover {
    border-color: #2f8eed;
}

.calendar-main__header-sort .custom-select.open .select-control {
    border: 1px solid #0a1a3e;
    border-radius: 10px 10px 0 0;
    border-bottom-color: transparent;
}

.calendar-main__header-sort .select-value {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    font-variant-numeric: lining-nums proportional-nums;
    color: #0a1a3e;
    flex: 1;
}

.calendar-main__header-sort .select-icon {
    display: flex;
    align-items: center;
    transition: transform 0.2s;
    color: #0a1a3e;
}

.calendar-main__header-sort .custom-select.open .select-icon {
    transform: rotate(180deg);
}

.calendar-main__header-sort .select-dropdown {
    position: absolute;
    left: 0;
    background: #f9fcff;
    border: 1px solid #0a1a3e;
    border-top-width: 0;
    border-radius: 0 0 10px 10px;
    padding: 2px 12px 10px 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
    box-sizing: border-box;
}

.calendar-main__header-sort .select-dropdown.open {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    overflow-y: auto;
}

.calendar-main__header-sort .select-option {
    padding: 8px 0;
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    font-variant-numeric: lining-nums proportional-nums;
    color: #919191;
    cursor: pointer;
    transition: color 0.2s;
}

.calendar-main__header-sort .select-option:hover {
    color: #0a1a3e;
}

.calendar-main__header-sort .select-option.selected {
    color: #2f8eed;
}

.calendar-main__header-sort .select-dropdown::-webkit-scrollbar {
    width: 4px;
}

.calendar-main__header-sort .select-dropdown::-webkit-scrollbar-track {
    background: #e8eff5;
    border-radius: 2px;
}

.calendar-main__header-sort .select-dropdown::-webkit-scrollbar-thumb {
    background: #2f8eed;
    border-radius: 2px;
}

@media (max-width: 1242px) {
    .calendar-main__header {
        gap: 20px;
        margin-bottom: 24px;
    }

    .calendar-main__header-sort {
        flex-basis: 360px;
        max-width: 360px;
    }

    .calendar-main__title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .calendar-main__header {
        margin-bottom: 16px;
        flex-direction: column;
    }

    .calendar-main__heading {
        width: 100%;
    }

    .calendar-main__header-sort {
        width: 100%;
        max-width: none;
        flex-basis: auto;
        justify-content: flex-start;
    }

    .calendar-main__title {
        font-size: 24px;
    }

    .calendar-main__title-row {
        justify-content: space-between;
        width: 100%;
        gap: 12px;
    }
}

/* Спиннер на кнопке «Показать ещё» при догрузке событий */
.b2b-pagination__more.is-loading {
    position: relative;
    pointer-events: none;
}

.b2b-pagination__more.is-loading .js-bxmaker__ajaxpagenav__block-showmore-btn {
    visibility: hidden;
}

.b2b-pagination__more.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    margin: -11px 0 0 -11px;
    border: 2px solid rgba(10, 26, 62, 0.2);
    border-top-color: currentColor;
    border-radius: 50%;
    animation: calendar-showmore-spin 0.7s linear infinite;
}

@keyframes calendar-showmore-spin {
    to {
        transform: rotate(360deg);
    }
}

/* End */


/* Start:/local/components/spll/calendar.list/templates/.default/filters-mobile.css?17768485286960*/
.no-scroll {
    overflow: hidden;
}

@media (max-width: 1242px) {
    .calendar-main__header-sort,
    .calendar-list-page__sidebar {
        display: none;
    }

    .calendar-reset-wrap {
        display: none !important;
    }

    .calendar-main__content--categories,
    .calendar-main__content--categories.flex,
    .calendar-main__content--categories .calendar-tag {
        display: none !important;
    }

    .calendar-mobile-filters-btn {
        display: none;
    }

    .calendar-mobile-filters-btn--search {
        display: inline-flex !important;
    }

    .calendar-mobile-filters-btn--title {
        display: none !important;
    }

    .calendar-list-page__filter {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: var(--calendar-mobile-header-offset, 0px);
        z-index: 2200;
        transform: translateY(100%);
        transition: transform .25s ease;
        visibility: hidden;
        pointer-events: none;
        background: #f9fcff;
        overflow: hidden;
    }

    .calendar-list-page__filter.mobile-open {
        transform: translateY(0);
        visibility: visible;
        pointer-events: auto;
    }

    .calendar-mobile-filter-app {
        display: flex;
        flex-direction: column;
        height: 100%;
        min-height: 0;
        background: #f9fcff;
    }

    .calendar-mobile-filter-scroll {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        padding: 20px 20px 24px;
        -webkit-overflow-scrolling: touch;
    }

    .calendar-mobile-filter-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 33.5px;
    }

    .calendar-mobile-filter-head__title {
        margin: 0;
        color: #0a1a3e;
        font-size: 18px;
        font-weight: 600;
        line-height: 138%;
    }

    .calendar-mobile-filter-head__close {
        border: 0;
        background: transparent;
        color: #2f8eed;
        font-size: 16px;
        font-weight: 500;
        line-height: 130%;
        padding: 0;
        cursor: pointer;
    }

    .calendar-mobile-filter-widget {
        display: grid;
        grid-template-columns: minmax(0, 242px) minmax(0, 1fr);
        gap: 20px;
        align-items: start;
        margin-bottom: 24px;
    }

    .calendar-mobile-filter-widget .cal-widget {
        width: 100%;
        min-width: 0;
        max-width: none;
        padding: 16px;
    }

    .calendar-mobile-filter-widget .cal-legend {
        gap: 10px;
        padding: 0;
    }

    .calendar-mobile-filter-widget .cal-legend__label {
        max-width: none;
        font-size: 14px;
        line-height: 140%;
    }

    .calendar-mobile-filter-block + .calendar-mobile-filter-block {
        margin-top: 24px;
    }

    .calendar-mobile-filter-block__title {
        margin: 0 0 20px;
        color: #0a1a3e;
        font-size: 22px;
        font-weight: 600;
        line-height: 115%;
        letter-spacing: 0.01em;
    }

    .calendar-mobile-filter-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .calendar-mobile-filter-tag {
        border: 0;
        border-radius: 10px;
        background: #e8eff5;
        color: #0a1a3e;
        font-size: 16px;
        line-height: 130%;
        font-weight: 400;
        padding: 13.5px 16px;
        cursor: pointer;
        transition: background .2s ease, color .2s ease;
    }

    .calendar-mobile-filter-tag.is-active {
        background: #2f8eed;
        color: #fff;
    }

    .calendar-mobile-filter-footer {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding: 20px 20px 36px;
        background: #f9fcff;
        flex-shrink: 0;
    }

}

@media (min-width: 768px) and (max-width: 1242px) {
    .calendar-mobile-filter-head__title {
        font-size: 22px;
        line-height: 120%;
    }

    .calendar-mobile-filter-widget {
        grid-template-columns: 416px minmax(272px, 1fr);
        gap: 17px;
        justify-content: start;
        align-items: start;
    }

    .calendar-mobile-filter-widget .cal-widget {
        width: 416px;
        max-width: 416px;
        padding: 24px;
    }

    .calendar-mobile-filter-widget .cal-legend {
        gap: 16px;
        width: 100%;
        max-width: none;
    }

    .calendar-mobile-filter-widget .cal-legend__item {
        gap: 11px;
    }

    .calendar-mobile-filter-widget .cal-legend__label {
        max-width: none;
        font-size: 16px;
        line-height: 130%;
    }
}

@media (max-width: 767px) {
    .calendar-mobile-filters-btn--search,
    .calendar-main__content-search,
    .calendar-reset-wrap {
        display: none !important;
    }

    .calendar-mobile-filters-btn--title {
        display: inline-flex !important;
    }

    .calendar-mobile-filter-scroll {
        padding: 20px 16px 16px;
    }

    .calendar-mobile-filter-head {
        margin-bottom: 20px;
    }

    .calendar-mobile-filter-widget {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .calendar-mobile-filter-widget .cal-widget {
        width: min(100%, 320px);
        max-width: 320px;
        min-width: 0;
        padding: 12px;
        margin: 0;
    }

    .calendar-mobile-filter-widget .calendar-component__header {
        margin-bottom: 10px;
    }

    .calendar-mobile-filter-widget .calendar-component__weekdays-row {
        margin-bottom: 10px;
    }

    .calendar-mobile-filter-widget .calendar-component__month-year,
    .calendar-mobile-filter-widget .calendar-component__month-year.body-text {
        font-size: 16px;
        line-height: 130%;
    }

    .calendar-mobile-filter-widget .calendar-component__weekday,
    .calendar-mobile-filter-widget .calendar-component__weekday.caption-s {
        font-size: 12px;
        line-height: 130%;
    }

    .calendar-mobile-filter-widget .cal-widget__day-num,
    .calendar-mobile-filter-widget .cal-widget__day-num.body-text {
        font-size: 16px;
    }

    .calendar-mobile-filter-widget .cal-legend {
        width: 100%;
        max-width: none;
        padding-left: 5px;
    }

    .calendar-mobile-filter-widget .cal-legend__item {
        gap: 11px;
    }

    .calendar-mobile-filter-widget .cal-legend__dot {
        min-width: 10px;
        width: 10px;
        height: 10px;
        margin-top: 5px;
    }

    .calendar-mobile-filter-widget .cal-legend__label {
        font-size: 14px;
        line-height: 130%;
        max-width: none;
    }

    .calendar-mobile-filter-block + .calendar-mobile-filter-block {
        margin-top: 24px;
    }

    .calendar-mobile-filter-block__title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .calendar-mobile-filter-tag {
        font-size: 14px;
        padding: 13px 16px;
    }

    .calendar-mobile-filter-footer {
        padding: 12px 16px 16px;
    }
}

/* End */


/* Start:/local/templates/main_b2b/components/bitrix/system.pagenavigation/bxmaker_ajaxpagenav_default/style.css?17847966061920*/


.b2b-pagination {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  .b2b-pagination__more {
    color: var(--b2b-primary);
    background: none;
    margin: 0 auto;
  }
  .b2b-pagination__more:hover {
      color: var(--b2b-primary);
      background-color: var(--b2b-secondary);
  }

  .b2b-pagination__btn-move {
    min-width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: none !important;
    outline: none !important;
    background: none !important;
    line-height: 1;
    svg {
      height: 16px;
    }
  }
  .b2b-pagination__btn-move:disabled {
    opacity: 0.6;
  }
  .b2b-pagination__btn-move:last-child svg {
    margin-left: auto;
  }

  .b2b-pagination__btn-page {
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    outline: none !important;
    border-radius: 50%;
    background: none;
    line-height: 1;
    transition: var(--animate-duration);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: var(--b2b-accent);
  }
  .b2b-pagination__btn-page:hover {
    background-color: var(--b2b-secondary);
  }
  .b2b-pagination__btn-page.b2b-pagination__btn-page_active {
    background-color: var(--b2b-secondary);
    color: var(--t-color-1);
    pointer-events: none;
    position: relative;
  }
}
/* Ряд со стрелками и номерами страниц не должен вылезать за пределы блока:
   номера скрыты классом ui-desktop-lg, который объявлен только в шаблоне B2C,
   поэтому на узких экранах строка распирала страницу по горизонтали. */
.b2b-pagination > .f-row-c {
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 8px;
}

/* End */


/* Start:/local/templates/main_b2b/components/bitrix/news.list/calendar/style.css?17839320215345*/
.calendar-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    gap: 16px;
    padding: 24px 0 0;
}

.calendar-card__color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.date-dot-container.items-center {
    align-items: flex-start;
}

.item-section-name {
    margin: 0;
    color: #2f8eed;
    font-size: 14px;
}

.exhibition-card__date-separator {
    margin: 0;
    margin-top: 2px;
    color: #123670;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.calendar-cards__empty {
    display: block !important;
    width: 100% !important;
    margin: 100px auto 0 !important;
    color: #123670 !important;
    font-size: 28px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.01em !important;
    text-align: center !important;
}

.calendar-pagination {
    padding: 24px 0 0;
}

.calendar-pagination .b2b-pagination {
    margin-top: 0;
}

.exhibition-card {
    width: 100%;
    min-height: 246px;
    height: auto;
    padding: 20px;
    background: #fff;
    border-radius: 20px;
}

.exhibition-card__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 100%;
    height: 100%;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.exhibition-card__head {
    position: relative;
    width: 100%;
}

.exhibition-card__title {
    display: block;
    overflow: visible;
    margin: 0;
    line-height: 1.3;
}

.exhibition-card__logo {
    width: 167px;
    height: 100px;
}

.exhibition-card__logo img {
    display: block;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-position: center;
}

@media (max-width: 1242px) {
    .exhibition-card__logo img {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 767px) {
    .exhibition-card__logo img {
        max-width: 100%;
        max-height: 100%;
    }
}

.exhibition-card__logo--empty {
    visibility: hidden;
}

.exhibition-card__tag {
    color: #2f8eed;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.exhibition-card__date-start,
.exhibition-card__date-end {
    gap: 2px;
    align-items: flex-start;
}

.exhibition-card__date-start-day,
.exhibition-card__date-end-day {
    color: #123670;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
}

.exhibition-card__date--column {
    justify-content: flex-start;
    gap: 4px;
    padding-top: 2px;
}

.exhibition-card__date--column .caption-s {
    color: #123670;
    font-weight: 500;
    line-height: 1;
}

.exhibition-card__date-start-day-of-week,
.exhibition-card__date-end-day-of-week {
    margin-top: 0;
    color: #adadad !important;
    font-weight: 500;
}

.exhibition-card__disabled {
    background: #d9d9d9;
    filter: grayscale(1);
}

@media (max-width: 1242px) {
    .calendar-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        justify-items: center;
        gap: 8px;
        padding: 24px 0 0;
    }

    .calendar-cards__empty {
        font-size: 22px !important;
    }

    .exhibition-card {
        width: 100%;
        max-width: 360px;
        min-height: 220px;
        height: auto;
        padding: 20px;
        border-radius: 16px;
        justify-self: center;
    }

    .exhibition-card__link {
        min-height: 100%;
        gap: 0;
    }

    .exhibition-card__head {
        margin-bottom: 8px;
    }

    .exhibition-card__logo {
        width: 72px;
        height: 43px;
        margin-bottom: 15px;
    }

    .exhibition-card__date-start-day,
    .exhibition-card__date-end-day {
        font-size: 32px;
    }

    .item-section-name {
        margin-bottom: 8px;
        font-size: 14px;
    }

    .exhibition-card__date span,
    .exhibition-card__date-separator {
        font-size: 12px;
    }

    .exhibition-card__title,
    .exhibition-card__title.body-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .calendar-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        gap: 8px;
        padding: 0;
    }

    .calendar-cards__empty {
        font-size: 18px !important;
    }

    .exhibition-card {
        width: 100%;
        max-width: 320px;
        min-width: 0;
        min-height: 190px;
        height: auto;
        padding: 16px;
        justify-self: center;
    }

    .exhibition-card__link {
        min-height: 100%;
        gap: 0;
    }

    .exhibition-card__head {
        margin-bottom: 4px;
    }

    .item-section-name {
        margin-bottom: 4px;
        font-size: 12px;
    }

    .exhibition-card__logo {
        width: 72px;
        height: 43px;
        margin-bottom: 11px;
    }

    .exhibition-card__date-start-day,
    .exhibition-card__date-end-day {
        font-size: 28px;
    }

    .exhibition-card__title,
    .exhibition-card__title.body-text {
        font-size: 14px;
    }
}

@media (max-width: 639px) {
    .calendar-cards {
        grid-template-columns: 1fr;
    }

    .exhibition-card {
        width: 100%;
        max-width: clamp(320px, calc(100vw - 40px), 420px);
    }
}

/* End */


/* Start:/local/templates/main_b2b/components/spll/static.banner_with_elements/tours_and_vitrina/style.css?17768485294504*/

.exhibition-section[data-v-5b24f159] {
    padding: 70px 0 44px
}

@media screen and (max-width: 920px) {
    .exhibition-section[data-v-5b24f159] {
        padding:40px 0
    }
}

@media screen and (max-width: 480px) {
    .exhibition-section[data-v-5b24f159] {
        padding:60px 0 20px
    }
}

.exhibition-section__main[data-v-5b24f159] {
    gap: 16px;
    height: 303px
}

@media screen and (max-width: 920px) {
    .exhibition-section__main[data-v-5b24f159] {
        gap: 8px;
        height: 246px
    }
}

@media screen and (max-width: 767px) {
    .exhibition-section__main[data-v-5b24f159] {
        flex-direction:column;
        gap: 8px;
        height: auto
    }
}

.exhibition-section__content[data-v-5b24f159] {
    padding: 36px;
    background-color: #d9efff;
    border-radius: 20px;
    gap: 16px;
    flex-grow: 1
}

@media screen and (max-width: 921px) {
    .exhibition-section__content[data-v-5b24f159] {
        padding:20px;
    }
}

@media screen and (max-width: 920px) {
    .exhibition-section__content[data-v-5b24f159] {
        gap: 12px;
        width: calc(50% - 4px)
    }
}

@media screen and (max-width: 767px) {
    .exhibition-section__content[data-v-5b24f159] {
        width:100%
    }
}

.exhibition-section__text[data-v-5b24f159] {
    max-width: 473px
}

@media screen and (max-width: 1100px) {
    .exhibition-section__text[data-v-5b24f159] {
        font-size:16px
    }
}

.exhibition-section__content-btn[data-v-5b24f159] {
    max-width: 236px
}

@media screen and (max-width: 920px) {
    .exhibition-section__content-btn[data-v-5b24f159] {
        max-width:100%
    }
}

.exhibition-section__image[data-v-5b24f159]:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg,#0000,#00000073 58.93%);
    z-index: 1
}

.exhibition-section__image[data-v-5b24f159] {
    max-width: 416px;
    padding: 36px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #24465f;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    color: #fff
}

@media screen and (max-width: 921px) {
    .exhibition-section__image[data-v-5b24f159] {
        padding:20px;
    }
}

@media screen and (max-width: 920px) {
    .exhibition-section__image[data-v-5b24f159] {
        max-width: 100%;
        width: calc(50% - 4px);
        justify-content: space-between
    }

    .exhibition-section__content[data-v-5b24f159] .tv-component-button,
    .exhibition-section__image[data-v-5b24f159] .tv-component-button {
        width: 100%;
        max-width: none;
    }
}

@media screen and (max-width: 368px) {
    .exhibition-section__content[data-v-5b24f159] {
        padding:16px;
    }

    .exhibition-section__image[data-v-5b24f159] {
        padding:16px;
    }
}

@media screen and (max-width: 767px) {
    .exhibition-section__image[data-v-5b24f159] {
        width:100%;
        height: 240px
    }
}
.exhibition-section__title[data-v-5b24f159] {
    font-size: 36px;
    font-weight: 700;
}

@media screen and (max-width: 1100px) {
    .exhibition-section__title[data-v-5b24f159] {
        font-size:22px
    }
}

@media screen and (max-width: 480px) {
    .exhibition-section__title[data-v-5b24f159] {
        font-size:22px
    }
}

.exhibition-section__image-title[data-v-5b24f159] {
    font-size: 28px
}

@media screen and (max-width: 1100px) {
    .exhibition-section__image-title[data-v-5b24f159] {
        font-size:22px
    }
}

@media screen and (max-width: 480px) {
    .exhibition-section__image-title[data-v-5b24f159] {
        font-size:22px
    }
}

.exhibition-section__image-title[data-v-5b24f159] {
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.exhibition-section__image-text[data-v-5b24f159] {
    max-width: 238px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1
}

.exhibition-section__content[data-v-5b24f159] .tv-component-button,
.exhibition-section__image[data-v-5b24f159] .tv-component-button {
    margin-top: auto;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1100px) {
    .exhibition-section__image-text[data-v-5b24f159] {
        font-size:16px;
        margin-bottom: 32px
    }
}

.tv-component-button {
    max-width: 236px;
}

/* 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 */
/* /local/components/spll/calendar.list/templates/.default/style.css?178518839910106 */
/* /local/components/spll/calendar.list/templates/.default/filters-mobile.css?17768485286960 */
/* /local/templates/main_b2b/components/bitrix/system.pagenavigation/bxmaker_ajaxpagenav_default/style.css?17847966061920 */
/* /local/templates/main_b2b/components/bitrix/news.list/calendar/style.css?17839320215345 */
/* /local/templates/main_b2b/components/spll/static.banner_with_elements/tours_and_vitrina/style.css?17768485294504 */
/* /local/components/b2c/ui.button/buttons.css?17851611903168 */
