﻿#s-filter {
    position: relative;
}

#s-filter-list {
    position: absolute;
    width: 300px;
    flex-direction: column;
    /*left: 0;*/
    z-index: 1000;
    /*width:100%;*/
    display: none;
    /*    float: left;
            min-width: 10rem;
            margin: 0.125rem 0 0;*/
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #17a2b8;
    /*background-color: #fff;*/
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}

#s-filter-list.open {
    display: block;
    height: 100px;
    -webkit-transition: height, 0.5s linear;
    -moz-transition: height, 0.5s linear;
    -o-transition: height, 0.5s linear;
    transition: height, 0.5s linear;
}


/*@media only screen and (max-width: 992px) {

    #s-filter-list{
        width: 100%;
    }
}*/