h2{
    font-size: 1.5rem;
    color: #222222;
    line-height: normal;
}
.vertical-filters .product-menubar{
    height: auto;
    margin-bottom: 20px;
    list-style: none;
    padding-left: 0px;
}
.vertical-filters .product-menubar a{
    text-decoration: none;
}
.vertical-filters #filter-text-selected{
    display: flex;
    flex-direction: column;
    font-size: 11px;
}
.vertical-filters .product-menubar li{
    line-height: 1.2rem;
    position: relative;
    padding-left: 20px; /* spazio per il cerchio */
}
.vertical-filters .product-menubar li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border: 1px solid #ccc; /* colore cerchio */
    border-radius: 50%;
}
.vertical-filters .product-menubar li.active:before {
    background: #ccc; /* cerchio pieno */
}
.remove-filter{
    cursor: pointer;
}
.product-filter-btn{
    background: #222222;
    text-decoration: none;
    font-weight: bold;
}

/*LOADING */
.wrapperBall {
    display: flex;
    align-items: center;
    gap: 15px;
}
.containerBall {
    position: relative;
    width: 60px;
    height: 80px;
}
.ball {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #b3ff00;

    animation: bounce 0.8s ease-in-out infinite;
}
.shadow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 6px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    animation: shadowScale 0.8s ease-in-out infinite;
}
.textBall {
    font-size: 16px;
}
@keyframes bounce {
    0% {
        transform: translate(-50%, 0) scaleX(1.2) scaleY(0.8);
    }
    25% {
        transform: translate(-50%, -50px) scaleX(1) scaleY(1);
    }
    50% {
        transform: translate(-50%, -70px) scaleX(0.95) scaleY(1.05);
    }
    75% {
        transform: translate(-50%, -50px) scaleX(1) scaleY(1);
    }
    100% {
        transform: translate(-50%, 0) scaleX(1.2) scaleY(0.8);
    }
}
@keyframes shadowScale {
    0%, 100% {
        transform: translateX(-50%) scaleX(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) scaleX(0.6);
        opacity: 0.2;
    }
}  
/*FINE --- LOADING*/

@media screen and (max-width: 767px){
    .vertical-filters ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        list-style: none;
        padding: 0;
    }    
    .product-filter-details{
        width: 100%;
        box-shadow: 0 8px 32px -8px rgba(0,0,0,.1);
        top: 50px;
        left: 0;
        transition: .5s;
        z-index: 11;
        display: none;
    }    
}