#sidebarContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    display: none;
    z-index: 10;
}

    #sidebarContainer label {
        font-size: 14px;
    }

.sidebar-filters {
    height: calc(100vh - 72px);
    width: 350px;
    position: fixed;
    left: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    top: 74px;
}

@media (max-width: 576px) {
    .sidebar-filters {
        width: 100%;
    }
}

#sidebarFilterForm {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.light-border-bottom {
    border-bottom: 1px solid #ecfcff !important;
}

/* #sidebarFilterForm {
    height: 75%;
} */

.sidebar-filter-content-wrapper {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar-filter-header {
    padding: 20px;
}

.bottom-box-shadow {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.sidebar-filter-content {
    padding: 20px;
}

#sidebarFilters .filter-checkbox label {
    width: 100%;
}

#sidebarFilters .filter-checkbox input[type="checkbox"],
#sidebarFilters .sidebar-filter-select input[type="checkbox"] {
    display: none;
}

    #sidebarFilters .filter-checkbox input[type="checkbox"] + span,
    #sidebarFilters .sidebar-filter-select input[type="checkbox"] + span {
        background-color: #ebfaff;
        padding: 15px;
        border-radius: 8px;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    #sidebarFilters .filter-checkbox input[type="checkbox"]:checked + span,
    #sidebarFilters .sidebar-filter-select input[type="checkbox"]:checked + span {
        background-color: #7fe5ff;
        color: black;
    }

#sidebarFilters .color-filter input[type="checkbox"]:checked + span {
    border-radius: 50% !important;
}

#sidebarFilters .filter-icon {
    margin-right: 10px;
    font-size: 20px;
    cursor: pointer;
}

#sidebarFilters .filter-select-button {
    background-color: #ebfaff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.sidebar-filters #search-btn-container {
    background-color: #fff;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    bottom: 0;
}

.sidebar-filters .search-btn {
    width: 100%;
    height: 48px;
    margin: 0px 5px;
    padding: 15px 22px;
    border-radius: 8px;
    background-color: #000;
    color: #fff;
    border: 1px solid #000;
    font-size: 14px;    
}

.sidebar-filter-select {
    /* height: 100%; */
    overflow-y: auto;
    padding: 20px;
}

#sidebarVehicleModelOptions label {
    margin-bottom: 10px !important;
    width: 100%;
}

.fit-content {
    height: fit-content;
}

.check-mark-black {
    border: 1px solid black;
}

.checkbox-indicator {
    position: relative;
}

input[type="checkbox"]:checked + .checkbox-indicator:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 7px;
    height: 14px;
    transform: rotate(45deg);
    border-top: none;
    border-left: none;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    left: 50%;
    transform: translate(-50%,-55%) rotate(45deg);
    opacity: 1;
    transition: opacity 0.5s;
}

input[type="checkbox"]:checked + .checkbox-indicator.check-mark-black:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 7px;
    height: 14px;
    transform: rotate(45deg);
    border-top: none;
    border-left: none;
    border-bottom: 2px solid black;
    border-right: 2px solid black;
    left: 50%;
    transform: translate(-50%,-55%) rotate(45deg);
    opacity: 1;
    transition: opacity 0.5s;
}
