.philters-trigger {
    cursor: pointer;
    margin: 20px 0 0;
    font-size: 16px;
    color: #373737
}

.philters-trigger .alt-title {
    display: none
}

.philters-trigger.philters-open .default-title {
    display: none
}

.philters-trigger.philters-open .alt-title {
    display: inline
}

#philters-wrapper, #philter-warning {
    padding: 0 20px
}

.philters-parent {
    transition: max-height 250ms ease-in-out;
    overflow: hidden;
    max-height: 1000px
}

.philters-parent.hide {
    max-height: 0
}

.philters-parent li {
    font-size: 14px
}

.philters-parent li a {
    text-decoration: none
}

.result {
    width: 0;
    padding: 0;
    max-height: 0;
    transition: max-height 350ms ease-in-out, width 350ms ease-in-out, padding 350ms ease-in-out;
    overflow: hidden
}

.result.philter-active, .result.random {
    width: 100%;
    max-height: 700px;

    padding:0 1rem;
}

#philter-warning {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out
}

#philter-warning.msg-visible {
    display: block;
    opacity: 1
}

@media(min-width: 576px){
    .result.philter-active, .result.random {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}


.btn-philter{
    border-radius:4px;
    background-color: red;
}

#philters {
    margin: 0;
    list-style: none;
    padding: 0;
    font-size: 0;
}

#philters li {
    display: inline-block;
    padding-right: 5px;
    margin: 10px 0 0;
}
#philters li a {
    display: inline-block;
    /*background-color: #BBB;*/
    border-radius: 3px;
    padding: 8px 16px;
    color: black;
    transition: background-color 150ms linear;
    text-transform: uppercase;
}
@media(max-width:576px){
    #philters li a {

        padding: 8px 8px;

    }
}
#philters li a:hover,
#philters li a.activate-philter {
    /*background-color: #a22d86;*/
    /*color:white !important;*/
    border-radius: 0px;
    border-bottom: 2px solid #a22d86;
}

/*#clear-philters {*/
/*    border-bottom: 2px solid #a22d86; !* Example style *!*/
/*}*/

.filter-title{

    letter-spacing: 1.2px;
    color: #6d6d6d;
    text-transform: uppercase;
}