#avail_form {
    padding-top: 30px;
}

#op_book_engine {
    /* width: 90%; */
    background: #ffffff;
    -webkit-background: linear-gradient(181deg, rgba(255, 255, 255, 0.94), rgba(244, 242, 236, 0.94));
    -moz-background: linear-gradient(181deg, rgba(255, 255, 255, 0.94), rgba(244, 242, 236, 0.94));
    padding: 0 15px;
    padding-top: 0;
    border-radius: 30px;
    margin: 0 auto;
    border: 1px solid #eee;
    /* overflow: hidden; */
}
/* #op_book_engine label {
  height: 15px;
  font-size: 12px;
  text-indent: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
} */
.input-boxes input {
    padding: 27px 0;
    border: none;
    border-color: transparent !important;
    box-shadow: none !important;
    background: transparent;
}

#op_book_engine .form-group.arriving input:last-child,
#op_book_engine .form-group.departing input:last-child {
    background: url("https://www.svgrepo.com/show/533389/calendar-days.svg") no-repeat right 10px center #fff;
    background-size: 14px;
    padding-right: 35px;
    /* Ensures text doesn't overlap the icon */
    cursor: pointer;
    /* Makes it clear it's interactive */
    border-color: transparent;
    box-shadow: none;
}

#op_book_engine .room-summary {
    /* padding: 27px 0; */
    border: none;
    text-align: left;
    background: white;
    margin-top: 10px;
    position: relative;
}

#op_book_engine .room-dropdown {
    border-top: 1px dotted #ccc;
    padding-top: 10px;
    margin-top: 10px;
    right: 1.5px;
    width: 100%;
    margin: 10px auto;
    position: absolute;
    background: white;
    padding: 20px;
    box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

    #op_book_engine .room-dropdown .form-select {
        border-radius: 2px;
    }

#op_book_engine .search-summary {
    font-size: 13px;
    padding: 0 10px;
    color: #999;
    text-align: center;
    margin-bottom: 10px;
}

#op_book_engine .info-box {
    padding: 0;
    display: block;
}

#op_book_engine .room-inputs {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dotted #ddd;
}

#op_book_engine .room-wrapper {
    display: block;
    width: 100%;
    position: relative;
    align-items: center;
}

#op_book_engine .room-label {
    position: absolute;
    left: -21px;
    /* Adjust as needed */
    padding: 3px;
    height: 100%;
    writing-mode: vertical-rl;
    /* Rotates text vertically */
    text-orientation: mixed;
    font-size: 12px;
    background: #eee;
    font-weight: 500;
    color: #999;
}

#op_book_engine .room-dropdown {
    display: none;
    opacity: 0;
    transform: scale(0.95);
    /* Slight zoom-in effect */
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: absolute;
    width: 100%;
    background: white;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#op_book_engine .room-summary .room-dropdown .noRoomList {
    height: calc(100% - 50px);
    overflow: auto;
    padding: 0 15px;
    max-height: 460px;
}

#op_book_engine .room-dropdown.show {
    display: block;
    opacity: 1;
    transform: scale(1);
    /* Expands smoothly */
}

@media screen and (min-width: 768px) {
    #op_book_engine .room-summary {
        margin-top: 0;
    }

        #op_book_engine .room-summary .room-dropdown {
            border-top: none;
            width: 400px;
            border-radius: 30px;
            margin-top: 10px;
            left: 0;
            z-index: 99;
            padding: 20px 10px;
            height: auto;
            max-height: 550px;
            /* overflow: auto; */
        }

    #op_book_engine .search-summary {
        margin-bottom: 0;
    }
}
/* --------- Making the datepicker responsive ----------*/
@media (max-width: 567px) {
    input[type="date"],
    .flatpickr-input {
        width: 100%;
        font-size: 18px;
    }

    .flatpickr-calendar {
        /* position: fixed !important; */
        /* top: 10px !important; */
        left: 50% !important;
        width: 90% !important;
        max-width: 90%;
        /* Adjust as needed */
        background: white;
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translate(-50%, 0) !important;
    }

        .flatpickr-calendar .flatpickr-innerContainer {
            width: 100%;
        }

        .flatpickr-calendar .close-btn {
            margin-top: 15px;
            right: 10px;
            font-size: 17px;
            padding: 6px 12px;
            border: none;
            background: transparent;
            color: #333;
            border-radius: 5px;
            cursor: pointer;
        }

    .flatpickr-days,
    .flatpickr-rContainer {
        width: 90%;
    }
    /* Backdrop */
    .flatpickr-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.8);
        /* White fade effect */
        z-index: 9;
        display: none;
    }

        .flatpickr-backdrop.active {
            display: block;
        }
}

.flatpickr-calendar {
    width: 100% !important;
    padding: 10px 10px 30px;
    max-width: 720px;
    /* Adjust as needed */
    border-radius: 30px;
    position: absolute;
    margin-top: 5px;
}

    .flatpickr-calendar .close-btn {
        display: none;
    }

.flatpickr-days,
.flatpickr-rContainer {
    width: 100% !important;
    max-width: inherit;
    /* Ensures it follows the parent width */
    margin: 15px 0 0;
}

.dayContainer {
    width: 100%;
    border-top: none;
    border-right: none;
    min-width: inherit;
    max-width: inherit;
    margin: 0 15px;
    border: none;
    box-shadow: none !important;
}

.min-width {
    min-width: 14.28571429%;
}

.flatpickr-day {
    min-width: 14.28571429%;
    /* Improves touch accessibility */
    min-height: 48px;
    border-bottom: none;
    border-radius: 0;
    line-height: 48px;
    border-left: none;
    border-radius: 15px;
}

    .flatpickr-day.selected {
        background: #000 !important;
        border-radius: 15px;
        border: none;
        z-index: 99;
    }

        .flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
            background: #CB0A3B;
            border: none;
        }

.flatpickr-calendar:before, .flatpickr-calendar:after {
    position: absolute;
    display: none;
    pointer-events: none;
    border: solid transparent;
    content: '';
    height: 0;
    width: 0;
    left: 22px;
}

.flatpickr-day.nextMonthDay,
.flatpickr-day.flatpickr-disabled {
    border-left: none;
    border-bottom: none;
}

.flatpickr-calendar {
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: scale(0.95);
}

    .flatpickr-calendar.open {
        opacity: 1;
        transform: scale(1);
    }

.originDes {
    position: relative;
}

    .originDes p.text-danger {
        position: absolute;
        bottom: -10px;
        font-size: 13px;
    }

    .originDes::after {
        position: absolute;
        content: "";
        height: 40px;
        width: 1px;
        background: #AFAFAF;
        right: 0;
        top: 20px;
        transform: translate(-50%, 0);
    }

.form-group.arriving, .departing {
    position: relative;
}

    .form-group.arriving::after,
    .form-group.departing::after {
        position: absolute;
        content: "";
        height: 40px;
        width: 1px;
        background: #AFAFAF;
        right: -8px;
        top: 20px;
        transform: translate(-50%, 0);
    }

.qty-container {
    display: flex;
    justify-content: flex-end;
}

    .qty-container .qty-btn-minus,
    .qty-container .qty-btn-plus {
        border: 1px solid #CDCDCD;
        /* padding: 10px 13px; */
        font-size: 10px;
        height: 35px;
        width: 35px;
        transition: 0.3s;
        border-radius: 10px;
        font-size: 28px;
        color: #CB0A3B;
        line-height: 0;
    }

    .qty-container .qty-btn-plus {
        margin-left: -1px;
    }

    .qty-container .qty-btn-minus {
        margin-right: -1px;
    }

    .qty-container .input-qty {
        text-align: center;
        padding: 0;
        /* border: none; */
        max-width: 40px;
    }

.room-dropdown .noOfroom {
    font: normal normal normal 15px/18px Segoe UI;
    color: #000000;
    font-weight: 700;
    border-bottom: 1px solid #e7e7e7;
    padding: 0 10px;
    margin: 0 10px;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.addroomDiv {
    border-top: 1px solid #e1e1e1;
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    align-items: center;
}

    .addroomDiv button {
        background: #000;
        border: none;
        box-shadow: 0px 0px 6px #00000029;
        border-radius: 10px;
        padding: 8px 32px;
        color: #fff;
    }

    .addroomDiv h6 {
        color: #CB0A3B;
        font: normal normal 600 14px/18px Segoe UI;
        cursor: pointer;
    }

#op_book_engine .room-dropdown label {
    font: normal normal normal 15px/18px Segoe UI;
}

    #op_book_engine .room-dropdown label span {
        color: #9B9B9B;
        font: normal normal normal 12px/18px Segoe UI;
    }

.room-inputs-contain {
    margin: 10px 0;
}


.angucompleteHolder {
    width: 500px;
    padding: 0;
    cursor: pointer;
    z-index: 2;
    position: absolute;
    left: 20px;
    margin-top: 5px;
    background-color: #fff;
    max-height: 310px;
    overflow: auto;
    box-shadow: 0px 0px 6px #00000075;
    border-radius: 30px;
    overflow: hidden;
    display: none;
}

    .angucompleteHolder ul {
        padding: 0;
        margin: 0;
    }

        .angucompleteHolder ul li {
            list-style: none;
            padding: 5px 0;
        }

            .angucompleteHolder ul li p {
                font: normal normal 600 14px/18px Segoe UI;
                padding: 0;
                margin: 0;
            }

                .angucompleteHolder ul li p span {
                    font-size: 12px;
                }

            .angucompleteHolder ul li span {
                font: normal normal normal 12px/18px Segoe UI;
                color: #000000;
            }

            .angucompleteHolder ul li a {
                display: flex;
                align-items: center;
            }

                .angucompleteHolder ul li a .hotelIcon {
                    background: #cb0a3b1f;
                    border-radius: 10px;
                    margin-right: 10px;
                }

                    .angucompleteHolder ul li a .hotelIcon img {
                        padding: 10px;
                    }

            .angucompleteHolder ul li a {
                display: flex;
                align-items: center;
                padding: 5px 0 5px 0;
                border-bottom: 1px solid #dcdcdc;
            }

                .angucompleteHolder ul li a .hotelIcon {
                    background: #cb0a3b1f;
                    border-radius: 10px;
                    margin-right: 10px;
                }

                    .angucompleteHolder ul li a .hotelIcon img {
                        padding: 10px;
                    }

.searchDate {
    display: flex;
}

.flatpickr-day.today {
    border: none !important;
    background: #ebebeb !important;
}

.flatpickr-day.selected.startRange, .flatpickr-day.startRange.startRange, .flatpickr-day.endRange.startRange {
    border-radius: 15px;
}

.flatpickr-day.selected.endRange, .flatpickr-day.startRange.endRange, .flatpickr-day.endRange.endRange {
    border-radius: 15px;
    box-shadow: none !important;
}

.header-mob-modify {
    display: none;
}
/*--------------------------------------------------------------------
phone view of search engine popup
-----------------------------------------------------------------------*/
@media (max-width: 768px) {

    #op_book_engine {
        background: transparent;
        padding: 0;
        border: none;
    }

    .input-boxes input {
        padding: 18px 10px;
        background: #fff;
        border-radius: 20px;
    }

    .originDes {
        margin: 10px 0;
    }

    #op_book_engine .room-summary {
        padding: 0;
        border-radius: 20px;
    }

    #op_book_engine .info-box button {
        width: 100%;
        padding: 12px;
    }

    #op_book_engine .info-box {
        padding: 15px 0;
        display: block;
    }

    .full-screen-modal.room_guest label.col-form-label {
        color: #000;
        font-size: 14px;
        margin: 0;
    }

        .full-screen-modal.room_guest label.col-form-label span {
            color: #9B9B9B;
        }

    .full-screen-modal.room_guest .qty-container .qty-btn-minus, .qty-container .qty-btn-plus {
        background: transparent;
        height: 32px;
        width: 32px;
    }

    .full-screen-modal.room_guest .qty-container .input-qty {
        border: none;
        margin: 0 5px;
    }

    .full-screen-modal.room_guest .addroomDiv {
        border-top: 1px solid #e1e1e1;
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        align-items: center;
        position: absolute;
        bottom: 0;
        width: 90%;
    }

    .full-screen-modal {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100vw;
        background: #fff;
        z-index: 9999;
        will-change: transform;
        transition: transform 0.3s ease;
        display: none;
        z-index: 99999;
    }

        .full-screen-modal .mobile_head {
            /* background: #000; */
            padding: 23px 0;
            position: relative;
            box-shadow: 0px 1px 6px #0000002E;
        }

            .full-screen-modal .mobile_head .mobile_cross {
                width: 45px;
                /* height: 45px; */
                position: absolute;
                right: 0;
                top: 50%;
                transform: translate(0, -50%);
                text-align: center;
            }

            .full-screen-modal .mobile_head h6 {
                display: inline-block;
                margin: 0 auto;
                width: 100%;
                color: #000000;
                text-align: center;
                font: normal normal normal 20px/18px Segoe UI;
            }


        .full-screen-modal .model-content {
            padding: 20px 15px;
        }

            .full-screen-modal .model-content .search-field input {
                border: 1px solid #707070;
                border-radius: 20px;
                padding: 17px;
            }

            .full-screen-modal .model-content .search-field .angucompleteHolder {
                box-shadow: none;
                width: 90%;
                display: block;
            }

    .result_header.active #op_book_engine {
        flex-direction: column;
    }

        .result_header.active #op_book_engine .modify_search {
            flex-direction: column;
            border: none;
        }

        .result_header.active #op_book_engine .result-filter {
            display: none;
        }

        .result_header.active #op_book_engine .modify_search .autoCom-search {
            width: 100%;
            border: 1px solid #E3E3E3;
            border-radius: 15px;
            overflow: hidden;
            margin: 10px 0;
        }

            .result_header.active #op_book_engine .modify_search .autoCom-search input {
                width: 100%;
                max-width: 100%;
                padding: 18px 12px;
                font-size: 14px;
            }

        .result_header.active #op_book_engine .modify_search .room-summary {
            width: 100%;
            margin: 0;
            padding: 0;
            margin: 10px 0;
        }

            .result_header.active #op_book_engine .modify_search .room-summary input {
                border: 1px solid #E3E3E3;
                border-radius: 15px;
                padding: 12px;
            }

    .header-mob-modify {
        display: flex;
        align-items: center;
        gap: 0;
        border: none;
        padding: 12px;
        /* border-radius: 10px; */
        box-shadow: 0px 1px 6px #0000002E;
    }

    .result_header.active #op_book_engine .modify_search .searchDate.flatpickr-input {
        border: 1px solid #E3E3E3;
        padding: 0;
        border-radius: 15px;
        overflow: hidden;
    }

        .result_header.active #op_book_engine .modify_search .searchDate.flatpickr-input .date-range {
            padding: 0;
            border: none;
        }

            .result_header.active #op_book_engine .modify_search .searchDate.flatpickr-input .date-range input {
                padding: 15px 12px;
                border: none;
            }


            .result_header.active #op_book_engine .modify_search .searchDate.flatpickr-input .date-range:first-child {
                border-right: 1px solid #E3E3E3;
            }

    .header-mob-modify h1 {
        text-align: center;
        width: 100%;
        font-size: 20px;
    }

    .originDes::after {
        background: transparent;
    }

    .form-group.arriving::after, .form-group.departing::after {
        background: transparent;
    }
}


/* --------------------- General Input --------------------- */
.input-qty {
    width: 60px; /* compact width */
    text-align: center; /* center number */
    font-size: 16px; /* readable font */
    padding: 6px 8px; /* comfortable padding */
    border: 1px solid #ccc; /* light border */
    border-radius: 6px; /* rounded corners */
    transition: border 0.3s, box-shadow 0.3s;
    background-color: #f9f9f9;
}

    /* Focus state */
    .input-qty:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0,123,255,0.5);
        background-color: #fff;
    }

/* --------------------- Child Age Input --------------------- */
.child-age {
    width: 60px;
    text-align: center;
    font-size: 16px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fefefe;
    transition: border 0.3s, box-shadow 0.3s;
}

    /* Focus state */
    .child-age:focus {
        outline: none;
        border-color: #28a745;
        box-shadow: 0 0 5px rgba(40,167,69,0.5);
        background-color: #fff;
    }

/* --------------------- Plus / Minus Buttons --------------------- */
.qty-btn-plus,
.qty-btn-minus {
    width: 32px;
    height: 32px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 6px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}

    .qty-btn-plus:hover,
    .qty-btn-minus:hover {
        background-color: #f0f0f0;
        border-color: #007bff;
    }

    /* Disable button state when max/min reached */
    .qty-btn-plus:disabled,
    .qty-btn-minus:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }


.child-age-container {
    padding: 0;
    margin: 0px 9px;
}

.input-qty.child-age {
    padding: 9px 0;
    margin: 0 14px;
}
/* Responsive for mobile */
@media (max-width: 576px) {
    .input-qty, .child-age {
        width: 50px;
        font-size: 14px;
    }

    .qty-btn-plus,
    .qty-btn-minus {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

.angucomplete-holder input {
    width: 100%;
}

#exH_dropdown.angucomplete-dropdown {
    max-height: 350px;
    overflow: hidden;
    position: static;
    height: 315px;
    padding: 0;
    width: 95% !important;
    overflow-x: hidden;
    overflow-y: scroll;
    margin: 20px auto;
    text-align: left;
}

    #exH_dropdown.angucomplete-dropdown::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 8px rgba(0,0,0,0.3);
        background-color: #F5F5F5;
    }

    #exH_dropdown.angucomplete-dropdown::-webkit-scrollbar {
        width: 5px;
        background-color: #F5F5F5;
    }

    #exH_dropdown.angucomplete-dropdown::-webkit-scrollbar-thumb {
        background-color: #d81244;
    }



.angucomplete-holder .list_res {
    position: absolute;
    background-color: #fff;
    width: 386px;
    box-shadow: 1px 3px 13px 1px #00000030;
    border-radius: 15px;
    left: 0;
    top: 85px;
    z-index: 9;
    height: auto;
}


.angucomplete-row {
    display: block;
    /* align-items: flex-start; */
    padding: 14px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: relative;
}

    .angucomplete-row:last-child {
        border-bottom: none;
    }

    .angucomplete-row:hover,
    .angucomplete-selected-row {
        background: #f7f7f7;
    }

    .angucomplete-row::before {
        content: '';
        background: #fbdbe4;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        margin-right: 0;
        background-image: url('../img/addHotel.svg');
        /* background-size: 22px; */
        background-repeat: no-repeat;
        background-position: center;
        /* display: inline-block; */
        position: absolute;
        background-size: 16px;
    }

.angucomplete-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 3px;
    padding-left: 50px;
}

.angucomplete-description {
    font-size: 13px;
    color: #888;
    margin-top: 2px;
}

.highlight {
    color: #d90479;
    font-weight: 700;
}

.angucomplete-holder input:focus-visible {
    outline: none;
}
/* New css add search form End*/
.checkbox-list div {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 14px;
    color: #000000;
}

.hotel-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

    .hotel-search-wrapper input {
        width: 100%;
        padding: 10px 35px 10px 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
        outline: none;
        transition: border-color 0.2s;
        font-size: 14px;
    }

        .hotel-search-wrapper input:focus {
            border-color: #007bff;
        }

.clear-input {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 16px;
    color: #888;
}

    .clear-input:hover {
        color: #333;
    }

.hotel-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-height: 250px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 2px;
}

.hotel-item {
    padding: 6px 10px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s;
    color: #ccc;
}

    .hotel-item:hover, .hotel-item.active {
        background-color: #f0f8ff; /* light blue */
    }

.hotel-meta {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

.no-hotels {
    margin-top: 4px;
    font-style: italic;
    color: #888;
    padding: 10px;
}



/* MAIN WRAPPER */
.dropdowndiv {
    position: relative;
    display: inline-block;
    width: 150px;
    padding: 8px 14px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    margin-left: 10px;
    user-select: none;
}

    /* DOWN ARROW */
    .dropdowndiv::after {
        content: "";
        position: absolute;
        right: 22px;
        top: 12px;
        font-size: 11px;
        color: #555;
        pointer-events: none;
        background-image: url(/img/down-arrow.svg);
        width: 35px;
        height: 15px;
        background-repeat: no-repeat;
        background-size: 44px 20px;
    }

    /* DROPDOWN LIST */
    .dropdowndiv .dropdown-options {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        width: 100%;
        background: #fff;
        border: 1px solid #ccc;
        border-radius: 6px;
        z-index: 999;
        display: none;
        overflow: hidden;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    }

    /* SHOW WHEN OPEN */
    .dropdowndiv.open .dropdown-options {
        display: block;
    }

    /* OPTION BUTTONS */
    .dropdowndiv .dropdown-options button {
        width: 100%;
        padding: 10px 12px;
        border: none;
        background: #fff;
        text-align: left;
        font-size: 14px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
    }

        /* REMOVE LAST BORDER */
        .dropdowndiv .dropdown-options button:last-child {
            border-bottom: none;
        }

        /* HOVER EFFECT */
        .dropdowndiv .dropdown-options button:hover {
            background: #f5f5f5;
        }

#op_book_engine .info-box button span {
    display: none;
}

@media screen and (max-width: 768px) {
    .dropdowndiv {
        width: 130px;
    }

    .reaultMian .result-top-row .priceShort h6 {
        white-space: nowrap;
    }

    .angucomplete-holder .list_res {
        width: 100%
    }

    #op_book_engine .info-box button span {
        display: block;
    }

    #op_book_engine .info-box button svg {
        display: none;
    }
}
