.first_step {
    margin-left: 1px;
    display: flex;
    flex-direction: column;
}

#datepicker {
    margin: 0 auto;
    margin-left: -9px;
    text-align: center !important;
}

.ui-datepicker {
    width: auto;
    margin: 10px !important;
}

.ui-datepicker-calendar {
    width: 100% !important;
}

.ui-datepicker-calendar tbody td .ui-state-default {
    max-width: 30px !important;
    max-height: 30px !important;
    width: 30px !important;
    height: 30px !important;
}

.ui-datepicker-title {
    text-align: center !important;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    cursor: pointer !important;
}

.ui-datepicker-calendar td,
.ui-datepicker-calendar {
    text-align: center !important;
}

.ui-datepicker-calendar a {
    display: block;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    color: #333 !important;
}

.ui-datepicker-calendar .ui-state-highlight {
    background: #000000 !important;
}

.ui-datepicker-calendar .ui-state-active {
    background: #ffffff !important;
}

a.ui-state-default.ui-state-highlight {
    border-radius: 50% !important;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled .ui-state-default {
    text-align: center !important;
}

a.ui-state-default.ui-state-active {
    background-color: black !important;
    color: white !important;
    border-radius: 50% !important;
    text-align: center !important;
}

a.ui-state-default.ui-state-active:hover {
    background-color: black !important;
    color: white !important;
    border-radius: 50% !important;
    text-align: center !important;
}

a.ui-state-default {
    text-align: center !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default {
    border: 1px solid #ffffff !important;
    background-color: white !important;
    font-weight: normal !important;
    color: #454545 !important;
}

.ui-state-default,
.ui-widget-content .ui-state-default:hover {
    color: #fff !important;
    background-color: #000 !important;
    border-radius: 50% !important;
}

.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block !important;
}

.ui-widget-header {
    border: 1px solid #dddddd00 !important;
    background: #ffffff !important;
    color: #4c4c4c !important;
    font-weight: bold !important;
}

input#booking_date {
    background-color: white;
    color: black;
}

.datepicker_slots {
    display: flex;
    justify-items: baseline;
}

.booking_slot {
    background-color: white;
    height: 35px !important;
    width: 90px;
    color: black;
    display: flex;
    border-radius: 3px;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.booking_slots {
    height: fit-content;
    margin: 10px 0;
    width: 670px;
    display: flex;
    justify-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}

/* -------------------------- */
.ctm_row {
    width: calc(100% + 10px);
    margin-left: -5px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.ctm_row .col_half {
    width: calc(100% /2);
    padding: 0 5px;
    margin-bottom: 20px;
}

.ctm_row input {
    width: 100%;
}

#booking_submit {
    background-color: #fff !important;
    color: #000 !important;
}

.ctm_row input,
#services:focus {
    box-shadow: none !important;
    outline: none !important;
    border-color: #FFF !important;
}

.ui-state-hover:hover {
    background-color: transparent !important;
    border: none !important;
    /* right: 2px !important; */
    top: 2px !important;
}

.first_step #services {
    width: max-content;
}

#booking_date {
    display: none !important;
}

@media screen and (max-width:600px) {
    .datepicker_slots {
        flex-direction: column;
    }

    .booking_slots {
        width: auto;
        margin-top: 0;
    }

    .ctm_row .col_half {
        margin-bottom: 10px;
    }
}

@media screen and (max-width:575px) {
    .ctm_row {
        flex-direction: column;
    }

    .ctm_row .col_half {
        width: calc(100%);
        padding: 0 5px;
    }
}