.openingstijden {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 30px;
    color: var(--opn-text-color, #493a35);
}

.openingstijden *,
.openingstijden *::before,
.openingstijden *::after {
    box-sizing: border-box;
}

.openingstijden__inner {
    width: min(100%, var(--opn-max-width, 1000px));
    margin-left: var(--opn-inner-margin-left, auto);
    margin-right: var(--opn-inner-margin-right, auto);
}

.openingstijden__block {
    margin: 0 0 24px;
}

.openingstijden__info {
    margin: 0 0 24px;
}

.openingstijden__info--outro {
    margin: 24px 0 0;
}

.openingstijden__info > :first-child {
    margin-top: 0;
}

.openingstijden__info > :last-child {
    margin-bottom: 0;
}

.openingstijden h2,
.openingstijden h3 {
    margin: 0 0 14px;
    color: var(--opn-heading-color, #5d433c);
    line-height: 1.2;
}

.openingstijden__week,
.openingstijden__specials {
    display: grid;
}

.openingstijden__row {
    position: relative;
    display: grid;
    grid-template-columns: minmax(130px, 1fr) minmax(140px, auto) minmax(180px, 2fr);
    gap: 10px;
    align-items: center;
    border-bottom: var(--opn-line-width, 1px) solid var(--opn-line-color, rgba(129, 94, 85, .22));
    border-radius: var(--opn-day-radius, 0);
    background: var(--opn-open-bg, transparent);
    font-style: var(--opn-open-font-style, normal);
    font-weight: var(--opn-open-font-weight, 800);
    margin: var(--opn-day-margin, 0);
    overflow: hidden;
    padding: var(--opn-open-day-padding, 0);
}

.openingstijden__row.is-today::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--opn-today-width, 4px);
    background: var(--opn-today-color, #fa9403);
}

.openingstijden__row.is-closed {
    background: var(--opn-closed-bg, transparent);
    border-bottom-color: var(--opn-closed-line-color, var(--opn-line-color, rgba(129, 94, 85, .22)));
    font-style: var(--opn-closed-font-style, var(--opn-open-font-style, normal));
    font-weight: var(--opn-closed-font-weight, var(--opn-open-font-weight, 800));
    padding: var(--opn-closed-day-padding, var(--opn-open-day-padding, 0));
}

.openingstijden__day {
    color: var(--opn-day-name-color, #5d433c);
    font-style: inherit;
    font-weight: inherit;
    padding: var(--opn-day-name-padding, 0px);
}

.openingstijden__row.is-today .openingstijden__day {
    padding-left: calc(var(--opn-day-name-padding, 0px) + var(--opn-today-width, 4px) + 10px);
}

.openingstijden__row.is-closed .openingstijden__day {
    color: var(--opn-closed-day-name-color, #5d433c);
}

.openingstijden__time {
    color: var(--opn-time-color, #815e55);
    font-style: inherit;
    font-weight: inherit;
    white-space: nowrap;
}

.openingstijden__row.is-closed .openingstijden__time {
    color: var(--opn-closed-text-color, #856259);
}

.openingstijden__row.is-closed .openingstijden__note {
    color: var(--opn-closed-text-color, #856259);
}

.openingstijden__row.is-today {
    background: var(--opn-today-bg-color, var(--opn-open-bg, transparent));
    color: var(--opn-today-text-color, inherit);
}

.openingstijden__row.is-today .openingstijden__day,
.openingstijden__row.is-today .openingstijden__time,
.openingstijden__row.is-today .openingstijden__note {
    color: var(--opn-today-text-color, currentColor);
}

.openingstijden__note {
    color: inherit;
    font-style: inherit;
    font-weight: inherit;
    min-width: 0;
}

.openingstijden__special {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    border: 1px solid var(--opn-line-color, rgba(129, 94, 85, .22));
    border-radius: var(--opn-day-radius, 8px);
    background: var(--opn-block-bg, #fff);
    font-style: var(--opn-open-font-style, normal);
    font-weight: var(--opn-open-font-weight, 800);
    margin: var(--opn-day-margin, 0);
    overflow: hidden;
    padding: var(--opn-open-day-padding, 12px);
}

.openingstijden__special--open {
    border-color: var(--opn-extra-open-border-color, var(--opn-line-color, rgba(129, 94, 85, .22)));
    background: var(--opn-extra-open-bg, var(--opn-open-bg, var(--opn-block-bg, #fff)));
    color: var(--opn-extra-open-text-color, var(--opn-text-color, #493a35));
}

.openingstijden__special--open .openingstijden__special-date span,
.openingstijden__special--open .openingstijden__special-date strong,
.openingstijden__special--open .openingstijden__special-time,
.openingstijden__special--open .openingstijden__special-note {
    color: var(--opn-extra-open-text-color, var(--opn-text-color, #493a35));
}

.openingstijden__special--closed {
    border-color: var(--opn-extra-closed-border-color, var(--opn-line-color, rgba(129, 94, 85, .22)));
    background: var(--opn-extra-closed-bg, var(--opn-closed-bg, var(--opn-block-bg, #fff)));
    color: var(--opn-extra-closed-text-color, var(--opn-closed-text-color, #856259));
    font-style: var(--opn-closed-font-style, var(--opn-open-font-style, normal));
    font-weight: var(--opn-closed-font-weight, var(--opn-open-font-weight, 800));
    padding: var(--opn-closed-day-padding, var(--opn-open-day-padding, 12px));
}

.openingstijden__special-date span {
    display: block;
    color: var(--opn-day-name-color, #5d433c);
    font-size: 13px;
    font-style: inherit;
    font-weight: inherit;
}

.openingstijden__special-date strong {
    color: var(--opn-heading-color, #5d433c);
    font-style: inherit;
    font-weight: inherit;
}

.openingstijden__special-time {
    color: var(--opn-time-color, #815e55);
    font-style: inherit;
    font-weight: inherit;
}

.openingstijden__special--closed .openingstijden__special-date span,
.openingstijden__special--closed .openingstijden__special-date strong,
.openingstijden__special--closed .openingstijden__special-time,
.openingstijden__special--closed .openingstijden__special-note {
    color: var(--opn-extra-closed-text-color, var(--opn-closed-text-color, #856259));
}

.openingstijden__special-note {
    color: inherit;
    font-style: inherit;
    font-weight: inherit;
    margin-top: 0px;
}

.openingstijden__link {
    display: inline-flex;
    margin-top: 7px;
    color: var(--opn-link-color, #cf3d01);
    font-weight: 800;
    text-decoration: none;
}

.openingstijden__link:hover {
    color: var(--opn-heading-color, #5d433c);
    text-decoration: underline;
}

@media (max-width: 760px) {
    .openingstijden__row {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .openingstijden__time {
        white-space: normal;
    }

    .openingstijden__special {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}
