.calendar_boxes{
    position: relative;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    padding: 1rem;
    background: #fff;
    box-shadow: 0 0 1rem 0 rgba(153, 157, 169, 0.1);
    border-radius: 1rem;
    max-width: 100%;
    overflow: hidden;
    overflow-x: scroll;
    margin-bottom: 2rem;
}
.calendar_box{
    position: relative;
    display: inline-block;
    margin: 0 .5rem;
}
.date_calendar{
    width: 100%;
    text-align: center;
    color: var(--gizem);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: .5rem;
}
.date_clocks{
    overflow: hidden;
    overflow-x: scroll;
    overflow-y: scroll;
    max-height: 570px;
}
.date_clocks::-webkit-scrollbar,
.date_clocks::-webkit-scrollbar-track,
.date_clocks::-webkit-scrollbar-thumb{
    width:0;
    height: 0;
    border-radius: 5px;
    background: #fff;
}
.date_clocks label{
    padding: .5rem 1rem;
    background: rgba(232, 215, 250, 0.48);
    margin: .25rem 0;
    border-radius: .25rem;
    width: 100%;
    text-align: center;
    cursor: pointer;
    color: var(--gizem);
    transition: all .25s;
    font-size: .940rem;
}
.date_clocks label.active_clock{
    background: #edf0f5;
    color: #AFBCCE;
    cursor: not-allowed;
}
.date_clocks input:checked + label{
    background: var(--gizem);
    color: #fff;
}
.day_name{
    font-size: .8rem;
    color: #AFBCCE !important;
    font-weight: 400;
}
@media screen and (max-width: 768px) {
    .date_clocks{
        max-height: 400px;
    }
}