/*
 * Filters bar include style for gallura template.
 */

.filters-bar {
    padding-top: .5em;
    padding-bottom: .5em;
    position: relative;
    transition: all .2s linear;
    text-align: center;
}

.filters-bar.scroll {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 2;
    top: 5em;
}

.filters-bar a {
    margin: .5em .2em;
}

/* Mobile menu activates */
@media screen and (max-width: 768px) {
    .filters-bar.scroll {
        top: 4.5em;
    }
}
  
@media screen and (max-width: 576px) {
    
    .filters-bar.scroll {
        top: 4.6em;
    }

    div#filter.mobile {
        display: block;
        width: 100%;
    }

    div#filter.mobile a.button {
        width: 100%;
        display: block;
        border-radius: 0;
        border-bottom: 1px solid;
        text-align: left;
    }

    div#filter.mobile p {
        color: var(--white);
        font-size: 1.2em;
        width: 90%;
        text-transform: uppercase;
        text-align: center;
        background-color: var(--green);
        padding: .5em 5%;
    }

    div#filter.mobile p  span {
        display: none;
        float: right;
    }

    div#filter.mobile p  span.open {
        display: block;
    }
}