.filtre {
    position: relative;
    z-index: 1;
    opacity: 0;
    transition: all 200ms ease-in-out;

    &.loaded {
        opacity: 1;
    }

    .filtre__titre {
        font-weight: 500;
        color: var(--wp--preset--color--secondary);
        margin-bottom: 8px;
    }

    .facetwp-facet {
        margin-bottom: 0;
    }
}

.filtre-mobile-bouton {
    position: fixed;
    background-color: rgba(255, 255, 255, 0.7);
    bottom: 0;
    z-index: 2;
    left: 0;
    right: 0;
    text-align: center;
    backdrop-filter: blur(10px);
    padding: 14px 15px;

    button {
        display: block;
        width: 100%;
    }
}