

/* Start:/local/components/msdm/schedule/templates/.default/style.css?17873169686031*/
[data-msdm-schedule] {
    --msdm-schedule-item-height: 9rem;
    --msdm-schedule-item-gap: 0.875rem;
}

[data-msdm-schedule] .calendar__items {
    position: relative;
}

[data-msdm-schedule].msdm-schedule_has-top-fade .calendar__items,
[data-msdm-schedule].msdm-schedule_has-bottom-fade .calendar__items {
    overflow: hidden;
}

[data-msdm-schedule].msdm-schedule_has-top-fade.msdm-schedule_has-bottom-fade .calendar__items {
    max-height: calc(var(--msdm-schedule-item-height) * 4 + var(--msdm-schedule-item-gap) * 4);
}

[data-msdm-schedule].msdm-schedule_has-top-fade:not(.msdm-schedule_has-bottom-fade) .calendar__items,
[data-msdm-schedule]:not(.msdm-schedule_has-top-fade).msdm-schedule_has-bottom-fade .calendar__items {
    max-height: calc(var(--msdm-schedule-item-height) * 3.5 + var(--msdm-schedule-item-gap) * 3);
}

[data-msdm-schedule] .calendar__items-group {
    margin-bottom: 0;
}

.msdm-schedule-temple-tabs {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-top: 1.5rem;
}

.msdm-schedule-temple-tabs__item {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: .625rem;
}

.msdm-schedule-temple-tabs__button {
    position: relative;
    min-height: 3.25rem;
    padding: .625rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: .75rem;
    background: #f8f8f8;
    color: #1a212f;
    font: 600 .875rem/1.2 "Suisse Intl", sans-serif;
    opacity: 1 !important;
    cursor: pointer;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.msdm-schedule-temple-tabs__button::after {
    position: absolute;
    bottom: -.45rem;
    left: 50%;
    width: .9rem;
    height: .9rem;
    background: #105c2e;
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) rotate(45deg) scale(.8);
    transition: opacity .2s ease, transform .2s ease;
}

.msdm-schedule-temple-tabs__item.active .msdm-schedule-temple-tabs__button,
.msdm-schedule-temple-tabs__item:hover .msdm-schedule-temple-tabs__button,
.msdm-schedule-temple-tabs__item:focus-within .msdm-schedule-temple-tabs__button {
    border-color: #105c2e;
    background: #105c2e;
    color: #fff;
}

.msdm-schedule-temple-tabs__item.active .msdm-schedule-temple-tabs__button::after {
    opacity: 1;
    transform: translateX(-50%) rotate(45deg) scale(1);
}

.msdm-schedule-temple-tabs__details {
    display: flex;
    min-height: 1rem;
    justify-content: center;
    gap: .4rem;
    color: #292d32;
    font: 500 .75rem/1.2 "Suisse Intl", sans-serif;
    text-align: center;
}

.msdm-schedule-temple-tabs__details a {
    color: #105c2e;
    text-decoration: underline;
    text-underline-offset: .16em;
}

[data-msdm-schedule] .calendar__items::before,
[data-msdm-schedule] .calendar__items::after {
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    z-index: 2;
}

[data-msdm-schedule] .calendar__items::before {
    background: linear-gradient(180deg, #FFFFFF 42.22%, rgba(255, 255, 255, 0) 100%);
    height: 84px;
    opacity: 0;
    top: 0;
    transition: opacity 0.2s ease;
}

[data-msdm-schedule] .calendar__items::after {
    background: linear-gradient(0deg, #FFFFFF 42.22%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    height: 84px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

[data-msdm-schedule].msdm-schedule_has-top-fade .calendar__items::before {
    opacity: 1;
}

[data-msdm-schedule].msdm-schedule_has-bottom-fade .calendar__items::after {
    opacity: 1;
}

[data-msdm-schedule] .calendar-item_hidden {
    display: none;
}

@media (max-width: 767px) {
    [data-msdm-schedule],
    [data-msdm-schedule] .calendar__header,
    [data-msdm-schedule] .calendar__row,
    [data-msdm-schedule] .calendar__items,
    [data-msdm-schedule] .calendar__items-group,
    [data-msdm-schedule] .calendar-item,
    [data-msdm-schedule] .calendar-item__right,
    [data-msdm-schedule] .calendar-item__text-wrap,
    [data-msdm-schedule] .calendar-item__peoples {
        box-sizing: border-box;
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    [data-msdm-schedule] .calendar__pagination {
        box-sizing: border-box;
        gap: 0.75rem;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
    }

    [data-msdm-schedule] [data-msdm-schedule-swiper] {
        flex: 1 1 auto;
        min-width: 0;
        overflow: hidden;
    }

    [data-msdm-schedule] .calendar__slider-btn {
        flex: 0 0 1.25rem;
        min-width: 1.25rem;
    }

    [data-msdm-schedule] .calendar-item {
        overflow: hidden;
    }

    [data-msdm-schedule] .calendar-item__name,
    [data-msdm-schedule] .calendar-item__action-name {
        overflow-wrap: anywhere;
    }

    .msdm-schedule-temple-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem .75rem;
    }

    .msdm-schedule-temple-tabs__item:first-child {
        grid-column: 1 / -1;
    }

    .msdm-schedule-temple-tabs__button {
        width: 100%;
    }
}

@media (max-width: 767px) {
    [data-msdm-schedule] {
        --msdm-schedule-item-height: 10.75rem;
    }
}

@media (max-width: 998px) {
    .calendar__header {
        margin-bottom: 1.25rem !important;
    }

    .calendar-item__btn:disabled {
        display: none;
    }

    .calendar-item__right {
        width: 100%;
    }

    .calendar-item__btn {
        font-weight: 500;
        font-size: 12px !important;
        position: absolute !important;
        right: 0 !important;
        color: #105C2E !important;
        background: none !important;
        text-decoration: underline !important;
        border: none !important;
        top: -32px !important;
        padding: 0 !important;
        min-width: auto !important;
    }

    .calendar__items {
        margin-bottom: 2rem !important;
    }
}

/* End */
/* /local/components/msdm/schedule/templates/.default/style.css?17873169686031 */
