/* Opening hours list */
.opening-hours {
    max-width: 350px;
    margin-bottom: 1em;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

    .opening-hours__item {
        display: flex;
    }

        .opening-hours__date {
            flex-shrink: 0;
        }

        .opening-hours__time {
            display: flex;
            align-items: center;
            flex: 1;
        }

        .opening-hours__time::before {
            content: '';
            flex: 1;
            border-top: 2px dotted;
            margin-left: 5px;
            margin-right: 5px;
            opacity: 0.25;
        }
