@media (max-width: 960px) {
    #schedule_div {
        display: none;
    }

    #mobile_schedule {
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin: 50px 0px;
    }

    #mobile_schedule>div {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        margin: 2px 10px;
        width: 300px;
        border-radius: 25px;
    }

    #mobile_schedule>div>div {
        display: flex;
        flex-direction: row;
    }

    .mobile_schedule_row {
        display: inline-flex;
    }

    .time_mobile {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .time_mobile>div {
        margin: 1px;
    }

    .half_day {
        width: 100px;
        border-radius: 25px;
        justify-content: center;
    }

    .opened_mobile {
        background: rgba(0, 153, 51, 0.6);
        color: white;
        font-weight: 400;
        padding: 15px 0;
    }

    .closed_mobile {
        background: rgba(255, 112, 100, 0.5);
        color: white;
        font-weight: 400;
        justify-content: center;
        padding: 24px 0;
    }
}