.list-top-filter {
    background: white;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* For screens md.sm.xs smaller than 970px, the sidebar becomes a drawer */
@media screen and (max-width: 970px) {
    .sidebar-drawer {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100%;
        background-color: #fff;
        z-index: 999;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }

    .sidebar-drawer.open {
        left: 0;
        padding-top: 4rem;
    }

    .sidebar-close-btn {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 1000;
    }

    .listing-section {
        width: 100% !important;
    }
}

/* Hide close button for screens larger than 970px */
@media (min-width: 971px) {
    .sidebar-close-btn {
        display: none !important;
    }

    .closeDrawer {
        display: none;
    }

    .sidebar-drawer {
        position: static;
        width: 100%;
        height: auto;
        box-shadow: none;
    }
}

.watch-row {
    border: 1px solid transparent;
    /* Adjust padding as needed */
    border-radius: 1px;
    /* Adjust border-radius as needed */
    transition: background-color 0.3s ease, border-color 0.3s ease,
        padding 0.3s ease;
}

.watch-card-hover:hover {
    background-color: #e8f4ff;
    border-color: #007bff;
    /* padding: 5px; */
    /* Adjust hover padding to create an effect */
    border-radius: 1px;
    /* Adjust hover border-radius for a smoother look */
}

.watch-row:hover img {
    filter: none;
    background-color: white;
}

.small-arrow {
    font-size: 0.8rem;
}

.filter-checkbox {
    width: 1.25em;
    height: 1.25em;
    border: 2px solid #ccc;
}

.filter-checkbox-label {
    color: #1c1c1c;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 5px 0px 5px 5px;
}

.filter-heading {
    /* display: flex;
    width: 230px;
    height: 48px;
    padding: 12px 0px;
    justify-content: center;
    align-items: center;
    gap: 152px;
    flex-shrink: 0; */

    color: var(--dark, #1c1c1c);
    font-feature-settings: "liga" off, "clig" off;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}
.watch-row img {
    display: flex;
    width: 210px;
    height: 210px;
    padding: 5px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin: 5px;
}

.watch-title {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-price {
    color: var(--base-color-dark, #1c1c1c);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.2px;
}

.watch-description {
    color: var(--gray-600, #505050);
    font-feature-settings: "liga" off, "clig" off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.2px;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-view-detail {
    color: var(--base-color-blue, #0d6efd);
    font-feature-settings: "liga" off, "clig" off;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

#closeDrawer {
    width: 40px;
    height: 40px;
    border: 2px solid #dc3545;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#closeDrawer i {
    font-size: 1.2rem;
    color: #dc3545;
}

#closeDrawer:hover {
    background-color: rgba(220, 53, 69, 0.1);
    transform: scale(1.1);
}

.slider-container {
    margin-top: 10px;
    height: 10px;
}

.noUi-base {
    background: #ddd;
}

.noUi-connect {
    background: #007bff;
}

.noUi-horizontal .noUi-handle {
    width: 22px;
    height: 22px;
    right: -17px;
    top: -6px;
}

.noUi-handle {
    border: 1px solid #d9d9d9;
    border-radius: 11px;
    background: white;
    cursor: default;
    box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}

.noUi-handle:after,
.noUi-handle:before {
    content: "";
    display: block;
    position: absolute;
    background: white;
    height: 14px;
    width: 1px;
    left: 14px;
    top: 6px;
}

.btn.active {
    background: #bebebe;
}
