/* Globale styling */
.openingstijden-container{
    font-size: 12px;
}

.open-gesloten [class*="openingstijden-"]{
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 5px;
}

.open-gesloten [class*="status-"] {
    text-transform: uppercase;
    font-size: 1.2em;
    line-height: 1.2em;
}

.open-gesloten h3 {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
}
.open-gesloten h3 strong {
    font-weight: 600;
    color: #63802B;
}

.open-gesloten a {
    color: #2D2A2A;
    text-decoration: underline;
}

/* Styling groot blok */
.openingstijden-container.groot{
    background: #fff;
    padding: 40px;
    display: inline-flex;
    flex-direction: column;
    row-gap: 20px;
    text-align: left;
}

.openingstijden-container.groot .open-gesloten [class*="openingstijden-"]{
    margin-bottom: 10px;
}
.openingstijden-container.groot .open-gesloten h3 {
    font-size: 24px;
}

.openingstijden .tijden {
    display: flex;
    gap: 30px;
}

.openingstijden .opening {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px
}
.openingstijden .opening .dagen{
    font-size: 12px;
    color: #63802B;
}
.openingstijden .opening .van-tot{
    font-size: 20px;
    font-weight: 700
}

.route {
    display: flex;
    gap: 30px;
    align-items: center;
}
.route a {
    background: #63802B;
    padding: 15px 30px;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}
.route .adres {
    display: flex;
    flex-direction: column;
}

/* Media Queries */

@media (max-width:480px)  {
    .openingstijden .tijden {
        flex-direction: column;
        gap: 0 !important;
    }

    .route {
        flex-direction: column;
        justify-content: start;
        align-items: baseline;
        gap: 10px !important;
    }
}