.option-group {
    margin-bottom: 40px;
    width: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: relative;
    -webkit-transform: translate3D(0, 0, 0);
    -ms-transform: translate3D(0, 0, 0);
    transform: translate3D(0, 0, 0);
}
.options {
    margin-bottom: 30px;
}
.option-box {
    cursor: pointer;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #869791;
    text-align: left;
    width: 100%;
}
/*.option-box:hover {*/
/*    background-color: #f8f9fa;*/
/*}*/
.option-box .img {
    float: left;
    margin-right: 15px;
    width: 50px;
    height: 50px;
}
.option-box img {
    height: 40px;
}

.text, .price {
    display: block;

    margin-top: 5px;
    color: #7a8186;
}

.progress-container {
    width: 100%;
    margin: 0 auto;
}

.progressbar {
    display: flex;
    padding-left: 0;
    margin-bottom: 20px;
    overflow: hidden;
    color: rgb(77,77,77);
    background-color: #e9ecef;
    border-radius: 8px;
}

.progress-step {
    text-align: center;
    position: relative;
    flex-grow: 1;
    width: 1%;
    padding: 10px;
    cursor: pointer;
    background-color: white;
    border-right: 2px solid #e9ecef;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Align title at the bottom */
}

.progress-step:last-child {
    border-right: 0;
}

.progress-title {
    margin-top: 5px; /* Add space above the title */
    font-weight: 500;
    color: grey; /* Change title color to grey */
    order: 2; /* Ensure title is at the bottom */
    font-size: .8rem;
    text-transform: uppercase;
}

.progress-step.active, .progress-step.completed {
    background-color: #007bff;
    color: white;
}

.progress-step.active .progress-title, .progress-step.completed .progress-title {
    color: white; /* Ensure title color is white when step is active or completed */
}

.progress-step.completed:after {
    content: '\2713'; /* Checkmark */
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 16px;
    color: white; /* Ensure checkmark is visible */
}

#card-element {
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 2px 3px #cfd7df;
    border: 1px solid #e6ebf1;
}

.ui-widget-header {
    border: 1px solid #007bff;
    background: #007bff;
    background-color: #16D5FF;
}
.special span {
    color: red !important; /* should only apply to may 6 and 8 */
}
.not-special span {
    color: green !important;
}

label.check {
    cursor: pointer;
}
label.check input {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    pointer-events: none;
}
label.check div {
    padding: 7px 14px;
    border: 2px solid #3799aa;
    display: inline-block;
    color: #000;
    border-radius: 3px;
    text-transform: uppercase;
}
label.check input:checked + div {
    border-color: #3799aa;
    background-color: #3cb2cc;
    color: #fff;
}

input[type="checkbox"].btn-check:disabled:checked + label.btn {
    background-color: #16D5FF; /* Blue background for checked state */
    color: black; /* White text for checked state */
    opacity: 1;
}

label.btn:hover {
    background-color: transparent; /* Ensure background doesn't change */
    border-color: #16D5FF; /* Change border color on hover */
}

/* Specific hover styles when checkbox is unchecked */
input[type="checkbox"].btn-check:not(:checked) + label.btn:hover {
    background-color: transparent; /* Keep background unchanged */
    border: 2px solid #16D5FF;
}

/* Styles for checked and unchecked states to ensure consistency */
input[type="checkbox"].btn-check:checked + label.btn {
    background-color: #16D5FF; /* Bootstrap primary blue background */
    color: white; /* White text */
    border-color: #16D5FF; /* Matching border color */
}

input[type="checkbox"].btn-check:not(:checked) + label.btn {
    background-color: transparent; /* Transparent background for unchecked */
    border-color: #ccc; /* Default light border for unchecked */
    color: #000; /* Default text color */
}

.calendar-cell {
    width: calc(100% / 7); /* Each cell takes 1/7th of the row */
    aspect-ratio: .9; /* Ensures the cells are squares */
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 50px;
}

.btn-calendar {
    width: 100%;
    height: 100%;
    max-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inactive-date {
    background-color: #f0f0f0; /* Gray background for inactive dates */
    border: 1px solid #ddd;
    color: #888;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;

}


/* temporary styles */
.booking-header {
    background-color: #edeeef;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 8000;
}


.booking-header .bh-mm-logo {
    height: 60px;
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 4%;
}
.booking-header .booking-steps {
    float: left;
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.booking-header .booking-steps .booking-step.booking-step-bedroom {
    -webkit-box-flex: .5;
    -ms-flex: .5;
    flex: .5;
}
.booking-header .booking-steps .booking-step.booking-step-clean {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
}
.booking-header .booking-steps .booking-step.booking-step-recurring {
    -webkit-box-flex: 1.5;
    -ms-flex: 1.5;
    flex: 1.5;
}
booking-header .booking-steps .booking-step {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-color: #fff;
    border-top: 3px #14374c solid;
    border-bottom: 1px solid #edeeef;
    height: 110px;
    padding: 0 10px;
    -webkit-transition: all 250ms 0s ease-in-out;
    -o-transition: all 250ms 0s ease-in-out;
    transition: all 250ms 0s ease-in-out;
    cursor: pointer;
}
.booking-header .bh-price {
    float: right;
    border-top: 3px solid #edeeef;
    height: 110px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: center;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    width: 10%;
    position: relative;
}

.stem-sm {
    flex: .5;
}

.stem-lg {
    flex: 1;
}
.step-xl {
    flex: 1.5;
}
.step-xxl {
    flex: 2;
}
