/* =========================================================
   OPENING HOURS PAGE
   Kaminkeller
========================================================= */


/* =========================================================
   HOURS BLOCKS
========================================================= */

.hours-block {
    margin-bottom: 35px;
}

.hours-title {
    margin: 15px 0;
    padding-bottom: 8px;
    font-weight: normal;
    letter-spacing: normal;
    color: rgba(210, 210, 210, 0.80);
    opacity: 0.6;
    background-image: url("../images/linie_half_4.png");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: auto 0.5px;
}

.opening-hours {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 22px;
    max-width: 520px;
}

.scroll-container {
    width: calc(100vw - 360px);
    padding: 0;
    margin: 0 100px 0 260px;
    overflow-y: scroll;
    scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.scroll-container-box {
    padding: 80px 0;
    opacity: 0;
    transition: all 2s;
    will-change: opacity;
}

.scroll-container-box:first-of-type,
.scroll-container-box:target {
    opacity: 1;
    transition: all 2s;
}

@media screen and (max-width: 600px) {
    .scroll-container {
        width: calc(100vw - 40px);
        margin: 0 20px;
    }
}


/* =========================================================
   DAY / TIME ROWS
========================================================= */

.day {
    display: flex;
    align-items: center;
    opacity: 0.5;
}

.time {
    text-align: right;
    white-space: nowrap;
    opacity: 0.5;
}

.day.today,
.time.today {
    color: rgba(100, 155, 255, 1);
    opacity: 1;
}

.today-label {
    margin-left: 8px;
    font-size: 10px;
    color: rgba(100, 155, 255, 0.8);
    opacity: 0.8;
}


/* =========================================================
   CLOSED STATE
========================================================= */

.time.closed {
    letter-spacing: normal;
    text-transform: uppercase;
    opacity: 0.8;
    color: rgba(100, 155, 255, 0.8);
}