/* _ START ____________________________ WORK HOURS ____________________________ */

.work_hours {
    width: 100%;
    padding: 0 !important;
}

.work_hours .work_hours_content {
    width: 80%;
    margin: 70px auto;
}

.work_hours .work_hours_content .theme {
    font-size: 16px;
    font-weight: 700;
    padding-left: 10px;
    border-left: 1px solid #3A5BCC;
    margin-bottom: 15px;
}

.work_hours .work_hours_content.title {
    font-size: 42px;
    font-weight: 700;
    max-width: 850px;
}

.work_hours .work_hours_content .title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.work_hours .work_hours_content .content_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    gap: 20px;
    margin-top: 50px;
}

.work_hours .work_hours_content .form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 500px;
    gap: 10px;
}

.work_hours .work_hours_content .form .info {
    font-weight: 400;
    padding-bottom: 5px;
    font-size: 14px;
}

.work_hours .work_hours_content .form .phone {
    font-weight: 400;
}

.work_hours .work_hours_content .form .email {
    font-weight: 400;
}

.work_hours .work_hours_content .form a {
    color: #202021;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.work_hours .work_hours_content .form .reserve_button {
    background: #3a5bcc;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    color: white;
    font-weight: 400;
    font-size: 16px;
    margin-top: 10px;
    text-decoration: none;
    width: 80%;
    text-align: center;
    cursor: pointer;
}

.work_hours .work_hours_content .hours_wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.work_hours .work_hours_content .hours_wrapper>p {
    font-weight: 700;
    margin-bottom: 15px;
}

.work_hours .work_hours_content .table {
    width: 260px;
    position: relative;
}



.work_hours .work_hours_content .table .info_icon {
    position: absolute;
    right: 200px;
    top: -43px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.work_hours .work_hours_content .table .mon_wed {
    border-bottom: 1px dashed;
}

.work_hours .work_hours_content .table .thur_sat {
    border-bottom: 1px dashed;
}

.work_hours .work_hours_content .table>div {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.work_hours .work_hours_content .table .timezone_info_message {
    position: absolute;
    background: white;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid #ececec;
    z-index: 10;
    bottom: 150px;
    right: -10px;
    width: 200px;
    display: none;
}

.work_hours .work_hours_content .table .show_message {
    display: block;
    animation: all 0.3s ease-out;
}

.work_hours .work_hours_content .table .timezone_info_message p {
    font-size: 12px;
}

/* _ END ____________________________ WORK HOURS____________________________ */
/* _ START ____________________________ FOOTER ____________________________ */

footer {
    width: 100%;
    box-shadow: 0px 0px 2px 0px #202021;
    padding: 20px 0;
}

footer .footer_content {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .footer_content img {
    width: 12px;
}

footer .footer_content span, footer .footer_content a{
    font-size: 12px;
    margin-left: 10px;
}

footer .footer_content a.email {
    cursor: pointer;
    text-decoration: none;
    color: #202021;
}

/* _ END ____________________________ FOOTER ____________________________ */

@media only screen and (max-width: 840px) {
    /* _ START ____________________________ WORK HOURS ____________________________ */

    .work_hours .work_hours_content {
        width: 90%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-direction: column;
    }
    .work_hours .work_hours_content .content_wrapper {
        flex-direction: column;
        align-items: flex-end;
        margin-top: 30px;
    }

    .work_hours .work_hours_content .form .info {
        font-size: 14px;
        font-weight: 400;
    }
    .work_hours .work_hours_content .form{
        width: 100%;
        max-width: 100%;
    }
    .work_hours .work_hours_content .hours_wrapper {
        width: 80%;
        margin: auto;
    }
    .work_hours .work_hours_content .title {
        font-size: 20px;
    }

    .work_hours .work_hours_content .table {
        width: 100%;
    }
    .work_hours .work_hours_content .table .info_icon{
        right: 210px;
        top: -45px;
    }

    /* _ END ____________________________ WORK HOURS ____________________________ */
}