.cab-appointment-box {
    
    font-family: 'AktivGrotesk';
}

.cab-flex {
    display: flex;
    gap: 40px;
}

.cab-calendar-wrap {
    flex: 0 0 310px;
}

.cab-slots-wrap {
    flex: 1;
}

.cab-cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 340px;
    margin-bottom: 8px;
}

.cab-calendar {
    display: flex;
    flex-wrap: wrap;
    max-width: 340px;
}

.cab-day {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 2px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.cab-day.disabled {
    background: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
}

.cab-day.active,
.cab-day.today.active {
    background: #122550;
    color: #fff;
    border-color: #122550;
}

.cab-day.today {
    border: 2px solid #122550;
}

.cab-slot {
    padding: 10px;
    border: 1px solid #ddd;
    margin-bottom: 8px;
    cursor: pointer;
}

.cab-slot.active {
    background: #122550;
    color: #fff;
    border-color: #122550;
}

.cab-no-slots {
    color: #777;
    font-style: italic;
}
.date_time_slot span.price {
    text-align: right;
}
@media (max-width: 768px) {
    .cab-flex {
        flex-wrap: wrap;
    }
    .cab-calendar-wrap {
        flex: 0 0 100%;
    }

    .cab-slots-wrap {
        flex: 0 0 100%;
    } 
    .cab-slot {
        padding: 7px;
    }
    
}