#slider-range {
    height: 1px;
    background: #E6E6E6;
    border: none;
}

.tour-meta .rate-view .star {
    font-size: 14px
}

.filter-menu .submenu.active {
    display: block;
    border-radius: 10px;
}

.filter-menu .submenu.active li {
    border-bottom: 1px solid #eeeeee;
    font-size: 13px
}

#slider-range .ui-state-default,
#slider-range .ui-state-default .ui-widget-content .ui-state-default {
    border: 1px solid #FB5B32;
}

.bt-datepicker::placeholder {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 10px
}

.bt-datepicker {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    padding-left: 10px
}

.bt-datepicker:focus {
    outline: none;
    border: none;
    caret-color: transparent;
}

.newletter {
    margin-bottom: 30px
}

.newletter input {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    border-radius: 30px;
    padding: 15px 160px 15px 30px;
    font-size: 15px;
    color: #595959;
    height: 45px;
}

.newletter input:focus {
    outline: none
}

.newletter button {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: #FB5B32;
    color: white;
    font-size: 13px;
    padding: 15px 25px;
    border-radius: 30px;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    border-radius: 4px;
    z-index: 1;
}

.submenu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.submenu-item {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
}

.submenu-item:hover {
    background-color: #ddd;
}

.menu:hover .submenu {
    display: block;
}

ul.filter-list .filter-item.hidden {
    max-height: 0;
    /* Ban đầu ẩn hoàn toàn */
    overflow: hidden;
    /* Ẩn nội dung tràn */
    opacity: 0;
    /* Đặt độ trong suốt */
    transition: all 0.3s ease;
    /* Thêm hiệu ứng mượt mà */
}

ul.filter-list:hover .filter-item {
    max-height: 50px;
    /* Đặt chiều cao tối đa phù hợp với mục của bạn */
    opacity: 1;
    /* Hiển thị lại mục */
    transition: all 0.3s ease;
    /* Thêm hiệu ứng mượt mà */
}

@media (max-width: 786px) {
    ul.filter-list .filter-item.hidden {
        max-height: unset;
        overflow: hidden;
        opacity: 1;
    }
}