.calendar_tab
{
    background: white;
    margin-top: 5px;
    width: 100%;
    position: relative;
    box-shadow: rgba(60, 66, 87, 0.04) 0px 0px 5px 0px, rgba(0, 0, 0, 0.04) 0px 0px 10px 0px;
    overflow: hidden;
    border-radius: 4px;
}

.appointment_day
{
    width: 15%;
    text-align: center;
    display: flex;
    color: rgb(151, 151, 151);
    font-weight: 700;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1.5;
}

.appointments_days
{
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    display: flex;
    height: 60px;
    position: relative;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid rgb(229, 229, 229);
}

.available_booking_hours
{
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 10px;
    border-radius: 4px;
}

.available_booking_hour:hover
{
    font-weight: 700;
}

.available_booking_hour
{
    font-size: 14px;
    padding-top:25px;
    line-height: 1.3;
    cursor: pointer;
}

input[type="radio"] 
{
    display: none;
}

input[type="radio"]:checked + label 
{
    font-weight: 700;
}

.available_booking_hours_colum
{
    width: 15%;
    text-align: center;
}

.available_booking_hour.disabled {
    opacity: 0.35;
    cursor: not-allowed;
    text-decoration: line-through;
}