.days-container{
    display: flex;
    justify-content: space-between;    
    text-align: center;
}

.days-container .day_number{
    font-size: 38px;
    font-weight: 900;
}

.days-container .daily-schedule{
    width: 100%;
    background-color: white;
    margin-right: 2px;    
    padding: 10px;
    cursor: pointer;
    color: black;
}

.days-container .daily-schedule:last-child{
    margin-right: 0px;
}

.days-container .daily-schedule.active{
    color: var(--e-global-color-text);
    border-bottom: 3px solid var(--e-global-color-text);
}

.daily-schedule .weekday{
    text-transform: uppercase;
/*     font-family: "Graphik"; */
}

.schedule-container{
    margin-top: 45px;
    margin-bottom: 45px;
}

.schedule-container .hidden{
    display: none;
}

.schedule-container .schedule-class {
    width: 100%;
    background-color: white;
    margin-bottom: 6px;
    padding: 20px;
    min-height: 81px;
    align-items: center;
    display: grid;
    grid-template-columns: 15% 25% 15% 25% 20%;
}

.schedule-container .duration{
    color: black;
}

.schedule-container .class-hours, .schedule-container .class-title, .schedule-container .duration, .schedule-container .trainers, .schedule-container .schedulecta {
    font-weight: 900;
    width: 100%;
}

.schedule-container .schedulecta{
    text-align: center;
    border: 1px solid var(--e-global-color-text);
    padding: 10px;
}

.schedule-container .class-title, .schedule-container .schedulecta{
    color: var(--e-global-color-text);
}

.class-hours, .trainers{
    color: #808080;
}

.filtered_class{
    display: none !important;
}

@media only screen and (max-width: 600px) {
    .days-container strong {
        display: none; 
    }
    .days-container .day_number{
        font-size: 15px;
    }
    .days-container .daily-schedule{
        padding-top: 0px;
        padding-bottom: 20px;
    }
    .schedule-container .schedule-class{
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }
}