
#sch_container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483500;
    overflow: hidden;
    display: none;
}

.sch-backdrop {
    opacity: .75;
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #000;
    /*opacity: 0;*/
    transition: opacity var(--df-layer-animation-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sch-layer {
    max-height: 100%;
    overflow-y: auto;
    /*position: relative;*/
    display: grid;
    /*grid-template-rows: min-content min-content 1fr min-content min-content;
    grid-template-columns: 1fr;
    grid-template-areas:
        "dfd-header"
        "dfd-before-content"
        "dfd-content"
        "dfd-after-content"
        "dfd-footer";
    grid-gap: var(--dfd-fullscreen-gap-y) var(--dfd-fullscreen-gap-x);
    gap: var(--dfd-fullscreen-gap-y) var(--dfd-fullscreen-gap-x);*/
    width: 100%;
    padding: 30px;
    margin: 0;
    background-color: var(--df-neutral-background, hsl(204, 2%, 100%));
    transition: max-height var(--df-layer-animation-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94),padding var(--df-layer-animation-duration) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    /*max-height: 0;*/
    /*min-height: 50%;*/
    overflow: auto;
}

/* FORM ***********************************************************************/

.sch-logo {
    margin-bottom: 10px;
}
.sch-q {
    padding: 10px 70px 10px 20px;
    width: 100%;
    height: 46px;
    font-size: 14px;
    background: #fff;
    color: #264093;
    border: 1px solid;
    border-radius: 50px;
}
.sch-submit {
    position: absolute;
    top: 0;
    right: 15px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    width: 65px;
    text-align: center;
    color: #264093;
    background: #fff;
    border-radius: 0 50px 50px 0;
    padding: 0;
    border: 1px solid;
    border-left: 0;
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}
.sch-submit > i {
    color: #000000;
    font-size: 24px;
    display: block;
    line-height: 46px;
}

.sch-mbl-input {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
    border-bottom: 2px solid #264093;
}
.sch-mbl-input > div:first-child {
    margin-right: -1px;
    /*display: flex;*/
}

.sch-mbl-input > div:first-child > button {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    cursor: pointer;
    /*position: relative;*/
    z-index: 2;
    /*color: #6c757d;*/
    background-color: transparent;
    /*background-image: none;*/
    /*border-color: #6c757d;*/
    border: 0;
    /*border-bottom: 2px solid #264093;*/
}
.sch-mbl-input > input {
    /*position: relative;*/
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    /*margin-bottom: 0;*/
    border: 0;
    /*border-bottom: 2px solid #264093;*/
    outline: none;
}
.sch-mbl-input > input:active, 
.sch-mbl-input > input:focus {
    border: 0;
    /*border-bottom: 2px solid #264093;*/
    outline: none;
}
.sch-mbl-input > div:last-child {
    margin-left: -1px;
}
.sch-mbl-input > div:last-child > button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    cursor: pointer;
    z-index: 2;
    background-color: transparent;
    border: 0;
    display: none;
}

/* FILTERS ********************************************************************/

.sch-feature:first-letter {
    text-transform: uppercase;
}
.sch-values, 
.sch-values-hidden, 
.sch-values-collapse {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sch-values li, 
.sch-values-hidden li, 
.sch-values-collapse li {
    margin: 0;
    padding: 0;
}
.sch-values label, 
.sch-values-hidden label {
    margin: 0;
    padding: 0;
    cursor: pointer;
}
.sch-values-hidden {
    display: none;
}
.sch-values-collapse button {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    background-color: #FFFFFF;
    cursor: pointer;
    color: #264093;
    font-size: 14px;
}
.sch-values-collapse button > i {
    vertical-align: -2px;
}

#sch_mbl_show_filters {
    display: none;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 25px;
    z-index: 1;
    border-radius: 50rem;
    padding: 10px 15px 8px;
    background: #264093;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}
#sch_mbl_show_filters:active, 
#sch_mbl_show_filters:focus, 
#sch_mbl_show_filters:hover {
    background: #264093;
}

#sch_mbl_hide_filters {
    float: right;
    border: 0;
    background: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
}
#sch_mbl_hide_filters_bar {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
    display: block;
    border-top: 3px solid #777777;
    width: 100px;
    position: absolute;
    cursor: pointer;
}

#sch_mbl_filters {
    position: absolute;
    z-index: 1;
    display: none;
    background: #FFFFFF;
    top: 20px;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 25px 15px;
    border-top: 1px solid #CBCBCB;
    border-radius: 10px 10px 0 0;
}

/* SUPPLIERS ******************************************************************/

.sch_mbl_suppliers {
    /*height: 34px !important;*/
    overflow-x: auto;
    margin-bottom: 10px;
}
.sch_mbl_suppliers ul {
    /*height: 34px !important;*/
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
    /*overflow-y: hidden;
    overflow-x: auto;
    display: block;*/
}
.sch_mbl_suppliers ul li {
    width: auto;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.sch_mbl_suppliers ul li a {
    display: block;
    margin: 0 1px;
    padding: 2px 10px;
    border-radius: 50rem;
    border: 1px solid #ebebeb;
    font-size: small;
}

.scroll {overflow:auto; }
.scroll ul{ white-space: nowrap;}
.scroll li {display: inline-block;  width: 300px;}

/* PRODUCTS *******************************************************************/

.sch-products {
    display: flex;
    flex-wrap: wrap;
}
.sch-product {
    padding: 15px;
    margin: 0 0 15px;
    border-radius: 5px;
    font-size: 14px;
    /*border: 1px solid #FFFFFF;*/
    border: 1px solid #ebebeb;
}
.sch-product:hover {
    /*border: 1px solid #ebebeb;*/
    border: 1px solid #264093;
}
.sch-product-image {
    /*max-height: 200px;*/
    margin-bottom: 15px;
    text-align: center;
}
.sch-product-image img {
    /*width: 100%;*/
    /*max-height: 200px;*/
    margin: 0;
    vertical-align: middle;
}
.sch-product-name {
    margin-bottom: 15px;
}
.sch-product-price > .regular-price {
    color: #9b9b9b;
    font-weight: 400;
    text-decoration: line-through;
    margin-right: 2px;
    font-size: 14px;
}
.sch-product-price > .price-sale {
    color: #eb2606;
    font-weight: bold;
}

/* MEDIA QUERY ****************************************************************/

/**
 * Extra small devices (portrait phones, less than 576px)
 * No media query since this is the default in Bootstrap
 */
@media (max-width: 575px) {
    
    .sch-hidden-xs {
        display: none;
    }
    
    .sch-layer {
        padding: 10px 15px 15px;
    }
    
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    
    .sch-hidden-sm {
        display: none;
    }
    
    .sch-layer {
        padding: 10px 15px 15px;
    }
    
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px)  and (max-width: 991px) {
    .sch-hidden-md {
        display: none;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px)  and (max-width: 1199px) {
    .sch-hidden-lg {
        display: none;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .sch-hidden-xl {
        display: none;
    }
}
