
/* Блок фильтров */
.filters-sidebar {
    width: 200px;
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 8px 8px 4px 4px rgba(0,0,0,0.15);
    height: fit-content;
    transition: width 0.3s ease;
    position: relative;
    /* top: 60px; */
    z-index: 10;

}

.filters-sidebar.collapsed {
    width: 48px;
    height: 48px;
    overflow: hidden;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filters-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #666;
}

.filter-option {
    display: flex;
    /* align-items: center; */
    align-items: flex-start;
    margin-bottom: 8px;
    /* white-space: nowrap; */
    flex-direction: column-reverse;
}

.filter-option input {
    margin-left: 8px;
}

.filter-option label {
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
