.bs-font-family {
    font-family: 'Poppins', sans-serif;
}

.bg-amber-50 {
    --tw-bg-opacity: 1;
    background-color: rgb(255 251 235 / var(--tw-bg-opacity))
}

.bg-amber-400 {
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36 / var(--tw-bg-opacity))
}

/* Custom Select Dropdown Styles for Room Select Button */
.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #000;
    /* Black background */
    color: #fff;
    /* White text */
    padding: 0.5rem 2rem 0.5rem 0.5rem;
    /* Adjust padding as needed */
    border: 1px solid #000;
    /* Black border */
    border-radius: 0.375rem;
    /* Rounded corners */
    font-weight: 700;
    /* Bold font */
    width: 100%;
    /* Full width */
}

.custom-select-container {
    position: relative;
}

.custom-select::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 0.75rem;
    /* Adjust as needed for desired position */
    transform: translateY(-50%);
    pointer-events: none;
    color: white;
    /* Ensure the arrow matches the text color */
}


.custom-select option {
    background-color: #000;
    /* Black background for options */
    color: #fff;
    /* White text for options */
}



/* Secondary custom select styles for the options */
.secondary-select-container {
    position: relative;
}

.secondary-select {
    padding: 0.4rem 0.75rem;
    /* Adjust padding as needed */
    border: 1px solid #dddddd;
    /* Light gray border */
    border-radius: 0.250rem;
    /* Rounded corners */
    width: 100%;
    /* Fill the width of the container */
}


.secondary-select::after {
    content: '▼';
    position: absolute;
    top: 50%;
    right: 2rem;
    /* Adjust as needed for desired position */
    transform: translateY(-50%);
    pointer-events: none;
    color: black;
    /* Ensure the arrow matches the text color */
}

/* Create CSS 22/10/2024 */

.bs-htl-title {
    display: none;
}

.bs-input-control input,
select {
    height: 52px;
    border-radius: 19px;
    padding-left: 35px;
    background: #eee;
}

.bs-input-control .bs-custom-select {
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        radial-gradient(#ddd 70%, transparent 72%);
    background-position:
        calc(100% - 20px) calc(1em + 8px),
        calc(100% - 15px) calc(1em + 8px),
        calc(100% - 0.57em) 0.9em;
    background-size:
        5px 5px,
        5px 5px,
        1.5em 1.5em;
    background-repeat: no-repeat;
}

.bs-input-control .bs-form-icon {
    padding-right: 24px;
}

.bs-input-control .bs-bg-dark {
    background-color: #000 !important;
    color: #fff !important;
}

.bs-room-prefer-close{
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    text-align: center;
    border-radius: 50%;
    padding: 2px;
    font-size: 14px;
}

.bs-common-button {
    width: 100%;
    height: 39px;
    border-radius: 41px;
}

.bs-common-button.bs-border-dark {
    border: 2px solid #000;
}

.bs-common-button.bs-border-danger {
    border: 2px solid rgba(220, 38, 38, 1);
}

.bs-common-button.bs-bg-dark {
    background-color: #000;
    color: #fff;
}

.bs-common-button.bs-bg-danger {
    background-color: rgba(220, 38, 38, .3);
}

.bs-common-button.bs-text-danger {
    color: rgba(220, 38, 38, 1);
    text-align: center;
    font-size: .875rem;
    line-height: 1.25rem;
    padding: .5rem;
    font-weight: 600;
}

.bs-common-button.bs-success-button {
    padding: 7px 12px;
    background: #10b981;
    color: #fff;
    font-size: 14px;
}

.toggle-box-of-booking i.fas {
    transform: rotate(180deg);
    transition: all ease .3s;
}

.bg-gray-900\/50 {
    background-color: rgb(148 163 184 / 80%) !important;
}

    

@media(max-width: 767px) {
    .bs-htl-title {
        display: flex;
        flex-direction: row;
        align-items: center;
    }
}

@media(max-width: 412px) {
    .bs-htl-title {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}