/**
 * Stili per il filtro veicoli nel front-end
 */

.woo-vehicle-filter fieldset {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 1rem;
    border: none;
    padding: 0;
}
.woo-vehicle-filter legend {
    margin-top: 0;
    margin-bottom: 10px;
    width: 100%;
    font-family: var(--altfont);
    font-size: 1.25rem;
}

.filter-row {
    margin-bottom: 5px;
    width: 100%;
}
@media (min-width: 580px) {
    .filter-row {
        width: 48%;
    }
}
@media (min-width: 992px) {
    .filter-row {
        width: 23%;
    }
}
.filter-select {
    width: 100%;
}

.woo-vehicle-filter button {
    display: inline-block;
    border: none;
    cursor: pointer;
}

/* .loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-left-color: #09f;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
} */
