.openingTime {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    margin-left: 10px;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    opacity: 0;
    max-width: 0;
    overflow: hidden;
    transition: opacity 1s ease-in, max-width 1s ease-in;
}

.openingTime.show {
    opacity: 1;
    max-height: 500px;
    max-width: 500px;
}

.weekly-hours {
    list-style-type: none;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 200;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.788);
}

.weekly-hours li {
    display: flex;
    justify-content: space-between;
}

.weekly-hours li strong {
    color: white;
    font-weight: 400;
}

.weekly-hours li.closed {
    color: red;
}