/* ======================== */
/*    ASIDE - FILTER        */
/* ======================== */

/* FILTER PANEL */
.Filter-panel {
    position: fixed;
    top: 80px;
    right: -200px;
    width: 200px;
    height: 300px; 

    background: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    border-radius: 15px 0 0 15px;
    padding: 15px;
    transition: right 0.3s ease;
    z-index: 1000;
    font-size: 16px;
}

.Filter-panel.active {
    right: 0;
}

.Filter-toggle {
    position: fixed;
    top: 120px;
    right: 0;

    background: #007bff;
    color: white;
    font-size: 1.1em;
    /* font-weight: bolder; */
    /* padding: 10px; */
    opacity: 0.9;
    border-radius: 40px 0 0 40px;
    cursor: pointer;
    z-index: 1001;

    display: flex;
    justify-content: center;
}

.Filter-panel-title {
    margin-bottom: 10px;
    font-size: 20px;
    
}

.Filter-panel-label {
    display: block;
    margin-top: 10px;
    /* font-size: 14px; */
    /* text-decoration: underline; */
}

option {
    font-size: 18px;
}

.font-arrow {
    font-size: 2.1em;
    transition: transform 0.2s ease;
}

.font-arrow:hover {
    transform: scale(1.2);
}

.Filter-panel-count {
    font-size: 0.88rem;
    /* opacity: 0.7; */
    font-style: italic;
    font-weight: bold;
    color: #007bff;
    text-shadow: -2px 0 5px rgba(0,0,0,0.2);
}