.harbour-slot-wrapper .form-group,
.tier-slot-wrapper .form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F2F2FF;
    padding: 10px 20px;
    border-radius: 10px;
    flex-direction: column;
    align-items: start;
}
.harbour-slot-wrapper .form-group .form-group,
.tier-slot-wrapper .form-group .form-group{
    padding: 0;
    width: 100%;
}

.harbour-slot-wrapper .form-group label,
.tier-slot-wrapper .form-group label {
    font-size: 16px;
    font-family: var(--font-poppins);
    color: var(--title-color);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
}


.harbour-slot-wrapper .form-group svg {
    width: 40px;
    height: 30px;
}

.time-slot-wrapper {
    position: relative;
    width: 100%;
}
.travelers-field.disabled {
    pointer-events: none;
    opacity: 0.6;
    position: relative;
    background-color: #ccc;
}

.time-loader {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 10;
}

select.loading {
    pointer-events: none;
    opacity: 0.6;
}

option.disabled {
    color: #999;
}


/* style time slot  */
div#select-time-slot {}

div#select-time-slot .form-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #F2F2FF;
    padding: 10px 20px;
    border-radius: 10px;
}

div#select-time-slot .form-group .time-slot-wrapper label {
    font-size: 16px;
    font-family: var(--font-poppins);
    color: var(--title-color);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 0;
}

div#select-time-slot .form-group svg {
    width: 40px;
    height: 30px;
}

/* div#select-time-slot .form-group .time-slot-wrapper select {
    color: #525252;
    padding: 0;
    margin: 0;
    margin-left: -4px;
    width: calc(100% - 50px);
    font-size: 90%;
} */

div#select-time-slot .form-group .time-slot-wrapper .nice-select.select-timeslot {
    color: #525252;
    float: none;
    padding: 0;
    margin: 0;
    height: auto;
    line-height: 1.5;
    border: none;
    background: transparent;
}

/* checkbox toggle  */
.partial-deposit-label {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    /* Width of the toggle area */
    height: 20px;
    /* Height of the toggle area */
    cursor: pointer;
    /* Indicates it's interactive */
}

/* Hide the default checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider/toggle background */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    /* Unchecked color */
    transition: 0.4s;
    border-radius: 30px;
    border: 1px solid #ccc;
    /* Makes it rounded */
}

/* The circular handle */
.slider::before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 2px;
    bottom: 2px;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 50%;
    /* Makes it a circle */
}

/* Change background color when checked */
input:checked+.slider {
    background-color: #2196F3;
    border: 1px solid #2196F3;
    /* Checked color (blue) */
}

/* Move the handle to the right when checked */
input:checked+.slider::before {
    background-color: #ffffff;
    transform: translateX(20px);
}