.shop {
    background: url(../images/shop_hero.jpg);
    min-height: 30vh;
    background-size: cover;
    background-position: center;
}
.shop__message {
    width: 30%;
    color: var(--black);
    background: rgba(255, 255, 255,0.9);
    padding: 1.5rem;
    border-radius: 1rem;
}
.filter_category {
    cursor: pointer;
}

.filter_category:hover {
    color: var(--secondary);
    transition: .4s;
}

.filter_item_count h6{
    font-size: .9rem;
    
}
.filter_item_count span {
    font-family: var(--en-font);
    font-weight: bold;
}
.form-select {
    background-position:left 0.4rem center;
    padding: .4rem 1rem .4rem 2rem;
    /* font-size: 1rem; */
}
.filter_bar_container {
    position: fixed;
    right: -500%;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0,0.5);
    z-index: 9;
}


.filter_bar {
    height: 100vh;
    max-height: 100vh;
    width: 25%;
    /* max-width: 100%; */
    background: var(--white);
    overflow-y: auto;
    transition: .4s;
}



.filter_bar_category , a {
    color: var(--dark);
    transition: .4s;
}
.filter_bar_category li:nth-of-type(1){
    margin-bottom: 1.5rem;
    border-bottom: .01rem solid rgba(0, 0, 0,0.2);
    padding-bottom: 1rem;
}
.filter_bar_category li :not(li:nth-of-type(1)){
    line-height: 2;
}
.filter_bar_category a:hover {
    color: var(--secondary);
}
.filter_price_input {
    width: 6rem;
}
.filter_price_input span {
    z-index: 1;
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    margin-top: .2rem;
}
.close_filter {
    cursor: pointer;
    transition: .4s;
    font-size: 1.5rem;
}

.close:hover {
    color: var(--secondary);
}

input[type="range"]:focus{
    border: 0 !important;
}

    
 


@media (max-width:768px) {
    .shop__message {
        width: auto;
    }
    .filter_bar {
        width: 100%;
    }
}
