﻿.work-hours {
    width : 27% ;
    height: 100%;
    display: flex;
    /*margin: 0 2rem;*/
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.center-information {
    height: 70%;
    width: 100%;
    display: flex;
    direction: rtl;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
}

.date-title {
    display: block;
    direction: rtl;
    font-size: 20px;
    text-align: center;
    color: var(--section_fcolor);
}

.date-box {
    width: 50%;
    margin: 5px;
    display: flex;
    min-width: 120px;
    max-width: 130px;
    overflow: hidden;
    border-radius: 6px;
    align-items: center;
    flex-direction: column;
    box-shadow: 0px 4px 4px 1px rgba(60,64,67,42%);
}

.date-weekday {
    width: 100%;
    padding: 3px;
    font-size: 15px;
    text-align: center;
    border-radius: 5px 5px 0 0;
    color: var(--workHourHeader_fcolor);
    background-color: var(--workHourHeader_bcolor1);
}

.date-time {
    width: 100%;
    padding: 6px;
    direction: rtl;
    font-size: 17px;
    text-align: center;
    border-radius: 0 0 5px 5px;
    color: var(--workHourContent_fcolor);
    background-color: var(--workHourContent_bcolor1);
}

@media only screen and (max-width: 1440px) {
    .date-box {
        width: 43%;
    }
}

@media (min-width : 940px) and (max-width : 1340px) {
    .work-hours {
        width: 30%;
    }
}

@media only screen and (max-width: 1150px) {
    .center-information {
        height: 100%;
    }

    .work-hours {
        width: 100%;
        height: auto;
        padding: 1rem;
        margin: 1rem 0;
    }

    /*.date-title {
        display: none;
    }*/

    .date-time {
        height: 33px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
