
.categories li a {
    color: white;
    width: 100%;
}

.name_sort{
    padding: .3rem;
}

.categories li {
    border-right: 1px solid white;
    padding-right: .3rem;
    /* width:100px; */
    /* width: 11%; */
    min-width: 153px;
    padding: .3rem;
}

.categories {
    background-color: #698DA3;
    background-color: #698DA3;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    /* flex-wrap: wrap; */
    font-size: .8rem;
    padding: 1rem;
    grid-gap: .6rem;
    overflow: auto;
    align-items: center;
}

.filter_btn_responsive {
    margin: 1rem .2rem;
    display: none;
    width: 100px;
    left: 5px;
    position: relative;
    background-color: #698DA3;
    color: white;
    border: none;
    border-radius: 10px;
    padding: .3rem;
    text-align: left;
    font-size: 1rem;
}




.right_content {
    width: 95%;
}

.left_content {
    /* width: 15%; */
    /* height: 85vh; */
    border-right: 1px solid lightgray;
    margin-right: .4rem;
}

.name_sort {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.sort_select {
    background-color: #698DA3;
    color: white;
    border: none;
    outline: none;
    padding: .4rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}


.name a {
    color: black;
}

.name span {
    color: lightgrey;
}


.card_content {
    /* display: grid; */
    /* grid-gap: .4rem; */
    margin: .5rem auto;
    width: 100%;
    height: 100%;
    text-align: left;
    /* align-items: center; */
    /* grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); */
    /* border-bottom: 1px solid lightgray; */
}
.card{
    border: none;
}


.card img {
    width: 140px;
    height: 140px;
}


.hrt_icon_ {
    position: absolute;
    padding: 1rem;
    right: 0;
    font-size: 1.5rem;
    cursor: pointer;
    color: lightgray;
}

.card p {
    font-size: .9rem;
}

.card .Price {
    font-size: 1.2rem;
    font-weight: 600;
}

.card .Price span i {
    font-size: 1.6rem;
    font-weight: 600;
}

.filter {
    width: 100%;
}

#remove_cross {
    display: none;
}

.filter_btn {
    width: 90%;
    background-color: #698DA3;
    color: white;
    border: none;
    border-radius: 10px;
    padding: .3rem;
    text-align: left;
    font-size: 1rem;
}


.filter_apply_btn {
    width: 90%;
    margin-top: 2rem;
    padding: .3rem;
    background-color: black;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    color: white;
    border: none;
    position: relative;
    left: 0.4px;
}

.right_content {
    position: relative;
}

.filter li {
    padding: .9rem;
    width: 90%;
    border-bottom: 1px solid black;
}

.filter li a {
    color: black;
    font-size: .8rem;
}

.filter li .light_grey_color {
    color: lightgray;
}

.filter .light_grey_color_li {
    border-bottom: 1px solid lightgrey;
}


/* ///////  Media query   /////// */



@media (max-width:970px) {

    .filter_btn_responsive {
        margin: 1rem 0;
        display: block;
    }

    .filter_btn {
        display: none;
    }

    #remove_cross {
        display: block;
    }

    .left_content {
        width: 100%;
        position: fixed;
        background: #fff;
        margin: auto;
        top: 0;
        padding: .5rem;
        height: 100vh;
        right: -.1px;
        transition: left .2s ease-in-out;
        left: -100000px;
    }

    .left_content.active {
        z-index: 55555;
        transition: left .2s ease-in-out;
        left: 0px;
    }

    .right_content {
        width: 100%;
    }

    .filter_btn {
        width: 100%;
    }

    .filter_apply_btn {
        width: 100%;
    }

    .filter li {
        padding: .9rem;
        width: 100%;
    }


    .filter p {
        text-align: right;
        padding: .3rem;
        font-size: 1.3rem;
    }

}

@media (max-width:500px) {

    .filter_btn_responsive {
        margin: 1rem 0;
        display: block;
    }

    .filter_btn {
        display: none;
    }

    #remove_cross {
        display: block;
    }

    .left_content {
        width: 100%;
        position: fixed;
        background: #fff;
        margin: auto;
        top: 0;
        padding: .5rem;
        height: 100vh;
        right: -.1px;
        left: -100000px;
    }

    .left_content.active {
        z-index: 55555;
        transition: all .2s ease-in-out;
        left: 0px;
    }

    .right_content {
        width: 100%;
    }

    .filter_btn {
        width: 100%;
    }

    .filter_apply_btn {
        width: 100%;
    }

    .filter li {
        padding: .9rem;
        width: 100%;
    }


    .filter p {
        text-align: right;
        padding: .3rem;
        font-size: 1.3rem;
    }

}


@media (max-width:417px) {

    .card_content {
        display: grid;
        /* grid-gap: 1rem; */
        place-content: center;
        place-items: center;
        margin: auto;
        width: 100%;
        height: 100%;
        text-align: left;
        align-items: center;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        border-bottom: 1px solid lightgray;
    }

    .card img {
        width: 140px;
        height: 140px;
    }

    .card {
        /* border-bottom: 1px solid lightgray; */
    }

}
