.shopt_slide_box{
    border: 1px solid var(--border);
    border-radius: 9px;
    background-color: #fff;
    padding: 7px;
    display: flex;
    align-items: center;
    direction: rtl;
    margin: 0 3px;
}
.shopt_slide_box figure{
    width: 50px;
    margin-left: 10px;
}
.title_menu_box {
    color: #000;
}
.disc_menu_box {
    color: #7d7d7d;
}
.product_contents > div{
    padding: 0;
}
.product_box {
    background: #fff;
    margin-bottom: 0;
}
.breadcrumb {
    direction: ltr;
    justify-content: end;
}
.pro_cate_select{
    outline: none;
    border: 1px solid var(--border);
    border-radius: 9px;
    background-color: #fff;
    color: #8c8c8c;
    font-size: 14px;
    height: 40px;
    width: 200px;
    margin-top: 10px;
}
.cate_pro_content{
    border: 1px solid var(--border);
    border-radius: 9px;
    background-color: #fff;
    padding: 14px 20px;
    position: sticky;
    top: 20%;
}
.cate_pro_content p{
    padding: 1px 10px 3px;
    margin-bottom: 6px;
    font-size: 15.6px;
    transition: all 240ms ease-in-out;
}
.cate_pro_content p:hover{
    border-right: 6px solid var(--mainc);
    background-color: rgba(0, 128, 255, 0.389);
}
.cate_pro_content p:hover a{
    color: #fff;
}
.cate_pro_content a{
    color: #000;
    transition: all 240ms ease-in-out;
}
.pro_filters{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter_button{
    font-size: 30px;
    color: #777777;
    display: none;
    cursor: pointer;
}
.profilter_menu{
    position: fixed;
    top: 0;
    right: -400px;
    width: 320px;
    height: 100vh;
    background-color: #fff;
    z-index: 9999;
    overflow-y: scroll;
    transition: all 200ms ease-in;
}
.profilter_menu_on{
    right: 0;
}
.exitprofilter {
    padding: 12px 25px 7px;
    font-size: 26px;
    margin-bottom: 9px;
    border-bottom: 1px solid var(--border);
}
.pagination{
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.pagination a{
    width: 36px;
    height: 36px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    border-radius: 50%;
    color: #000;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.pagination .pagination_active{
    background-color: var(--mainc);
    color: #fff;
}
@media(max-width: 1200px) {
   .cate_pro_content{
    display: none;
   } 
   .filter_button{
    display: block;
   }
   .profilter_menu .cate_pro_content{
    display: block;
    border: none;
    position: relative;
    top: 0;
    padding: 10px 15px;
   }
   .profilter_menu .cate_pro_content p{
    margin-bottom: 13px;
   }
}