
                    #s_breadCrump{
                        flex: 0 0 100%;
                        max-width: 100%;
                        width: 100%;
                        margin: auto;
                        height: 50px;
                        line-height:24px;
                        padding:0 20px;
                        font-size: 12px;
                        color:#000000;
                    }
                    #s_breadCrump span,#s_breadCrump a{display:inline-block;padding: 0px 5px;color:#000000;}
                
            .filters-section{
                margin-top: 20px;
                border-radius: 5px;
                padding: 20px;
                background-color: #fff;
                box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
            }
            .filters-section:first-child{
                margin-top: 0;
            }
            .filter-title{
                font-weight: 500;
                color: #222;
                line-height: 2;
                border-bottom: 2px solid #9E9E9E;
                display: block;
            }
            .filters-section > ul{
                padding: 0 10px 10px 10px;
                overflow: auto;
                max-height: 200px;
            }
            .filters-section li:first-child{
                margin-top: 10px;
            }
            .filters-section input + label{
                position: relative;
                display: flex;
                height: 40px;
                align-items: center;
                cursor: pointer;
                color: #333;
                font-size: 14px;
                transition: color 250ms cubic-bezier(.4,.0,.23,1);
            }
            .filters-section input + label > .custom-checkbox{
                display: flex;
                justify-content: center;
                align-items: center;
                width: 18px;
                height: 18px;
                background: transparent;
                border: 2px solid #9E9E9E;
                border-radius: 2px;
                cursor: pointer;  
                transition: all 250ms cubic-bezier(.4,.0,.23,1);
            }
            .filters-section input + label:hover, .filters-section input:focus + label{
                color: #9e9e9e;
            }
            .filters-section input + label:hover > .custom-checkbox,.filters-section input:focus + label > .custom-checkbox{
                background: rgba(255,255,255,.1);
            }
            .filters-section input:checked + label > .custom-checkbox{
                border: 9px solid #1e5f74;
                animation: shrink-bounce 200ms cubic-bezier(.4,.0,.23,1);
            }
            .filters-section input:checked + label > .custom-checkbox:before{
                content: "";
                position: absolute;
                top: -3px;
                left: -5px;
                border-right: 3px solid transparent;
                border-bottom: 3px solid transparent;
                transform: rotate(45deg);
                transform-origin: 0% 100%;
                animation: checkbox-check 125ms 250ms cubic-bezier(.4,.0,.23,1) forwards;
            }
            .text-sub-filter{
                margin-top: 5px;
                margin-left: 10px;
                margin-right: 10px;
                cursor: pointer;
            }
            .search-filter{
                display: flex;
                flex-direction: row;
                width: 100%;
                padding: 10px 0;
            }
            .search-filter > span{
                display: block;
                flex: 0 0 30px;
                max-width: 30px;
                width: 100%;
                height: 30px;
                background-repeat: no-repeat;
                background-size: 25px;
                background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" id=\"Capa_1\" x=\"0px\" y=\"0px\" viewBox=\"0 0 310.42 310.42\" style=\"enable-background:new 0 0 310.42 310.42;\" xml:space=\"preserve\"><g><g><path fill=\"rgb(82,82,82)\" d=\"M273.587,214.965c49.11-49.111,49.109-129.021,0-178.132c-49.111-49.111-129.02-49.111-178.13,0    C53.793,78.497,47.483,140.462,76.51,188.85c0,0,2.085,3.498-0.731,6.312c-16.065,16.064-64.263,64.263-64.263,64.263    c-12.791,12.79-15.836,30.675-4.493,42.02l1.953,1.951c11.343,11.345,29.229,8.301,42.019-4.49c0,0,48.096-48.097,64.128-64.128    c2.951-2.951,6.448-0.866,6.448-0.866C169.958,262.938,231.923,256.629,273.587,214.965z M118.711,191.71    c-36.288-36.288-36.287-95.332,0.001-131.62c36.288-36.287,95.332-36.288,131.619,0c36.288,36.287,36.288,95.332,0,131.62    C214.043,227.996,155,227.996,118.711,191.71z\"/><g><path fill=\"rgb(82,82,82)\" d=\"M126.75,118.424c-1.689,0-3.406-0.332-5.061-1.031c-6.611-2.798-9.704-10.426-6.906-17.038     c17.586-41.559,65.703-61.062,107.261-43.476c6.611,2.798,9.704,10.426,6.906,17.038c-2.799,6.612-10.425,9.703-17.039,6.906     c-28.354-11.998-61.186,1.309-73.183,29.663C136.629,115.445,131.815,118.424,126.75,118.424z\"/></g></g></g></svg>");
            }
            .search-filter > input{
                flex: 0 0 calc(100%-30px);
                width: 100%;
                max-width: calc(100%-30px);
                padding: 0 5px;
                color: #525252;
                font-size: 14px;
            }
            @keyframes shrink-bounce{
              0%{
                transform: scale(1);
              }
              33%{    
                transform: scale(.85);
              }
              100%{
                transform: scale(1);    
              }
            }
            @keyframes checkbox-check{
              0%{
                width: 0;
                height: 0;
                border-color: #eee;
                transform: translate3d(0,0,0) rotate(45deg);
              }
              33%{
                width: .2em;
                height: 0;
                transform: translate3d(0,0,0) rotate(45deg);
              }
              100%{    
                width: .2em;
                height: .5em;    
                border-color: #eee;
                transform: translate3d(0,-.5em,0) rotate(45deg);
              }
            }
            
            .filtering-section{
                flex: 0 0 25%;
                width: 100%;                                                                
                max-width: 25%;
                padding-right: 20px;
                height: max-content;
                margin: 20px 0;
            }
         
            .card-main{
                width: 100%;
                padding: 0 10px;
            } 
            #locals_main .card-box-width{
                flex: 0 0 25%;
                max-width: 25%;
            }
            .pagination{
                width: 100%;
                flex: 0 0 calc(100% - 20px);
                max-width: calc(100% - 20px);
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                height: 50px;
                padding: 15px;
                margin: 20px 10px;
                border-radius: 50px;
                background-color: #222831;
                box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
            }
            .arrow-pagination > svg{
                width: 100%;
                height: 100%;
            }
            .arrow-pagination > svg path{
                fill: #222831;
            }
            .left-pagination{
                transform: rotate(180deg);
            }
            .number-pagination{
                display: flex;
                flex-direction: row;
                align-items: center;
                height: 100%;
            }
            .num-pagination:hover{
                background-color: #1e5f74;
            }
            .num-pagination:hover > a{
                color: #fff;
            }
            .arrow-pagination:hover{
                background-color: #1e5f74;
            }
            .arrow-pagination:hover >svg path{
                fill: #fff;
            }
            .pagination-style{
                flex:0 0 30px;
                max-width: 30px;
                width:100%;
                height: 30px;
                background-color: #dddddd;
                border-radius: 50%;
                padding: 5px;
                cursor: pointer;
                text-align: center;
            }
            .number-pagination .pagination-style{
                margin: 0 7px;
            }
            .number-pagination .arrow-pagination > a{
                display: block;
                text-align: center;
            }
            .active-pagination{
                background-color: #00baff !important;
            }
            .active-pagination > a{
                color: #fff !important;
            }
            .pagination-style > span{
                display: block;
                margin-top: -4px;
                font-weight: 600;
            }
            .non-product{   
                font-size: 25px;
                display: block;
                text-align: center;
                font-weight: 600;
                color: #222;
                margin: 50px 0;
                width: 100%;
            }
            .post-details > i{
                transform: rotate(180deg);
            }
            .post-details::after{
                right: 0;
            }
            .link-box::after{
                right: 0;
            }
            .link-box > i{
                transform: rotate(180deg) translateY(-3px);
            }
            .link-box:hover i{
             color:#39dfaa;
            }
            #top_custom_review{
                flex: 0 0 100%;
                width: 100%;
                max-width: 100%;
            }
            .adv-img{
                width: 100%;
                height: 100%;
                object-fit: cover;
                padding: 15px;
                user-drag: none;
                -webkit-user-drag: none;
                user-select: none;
                -moz-user-select: none;
                -webkit-user-select: none;
                -ms-user-select: none;
            }
           
                .card-main{ 
                    flex: 0 0 75%;
                    max-width: 75%;
                }
            .ofhi{overflow:hidden}.tag-item:hover{color:dimgrey}.image-box{height:9em;border-radius:10px}.image-box a{border-radius:10px 10px 0 0}.mainTitle>a{font-size:1em}.item-tags{font-size:.7em;font-weight:400}.mainTitle:hover{color:#6bc6ea!important}.discount-percent{font-size:2.3em;line-height:1.6}.shoptag-item:hover{box-shadow:0 0 30px 7px #aba9a9;-webkit-box-shadow:0 0 30px 7px #aba9a9;-o-box-shadow:0 0 30px 7px #aba9a9;-moz-box-shadow:0 0 30px 7px #aba9a9}.beta-section{text-align:center}.mainTitle{line-height:2}.item-cover{background-color:rgb(1 1 1 / .2);-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-ms-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s;opacity:0 border-radius:10px 10px 0 0}.shoptag-item .item-hidden-details>.item-tags{justify-content:space-between;align-items:center;height:7em;padding:.5em}.shoptag-item .item-hidden-details>.item-tags,.shoptag-item .item-hidden-details{height:3em;background:#fff;color:darkblue;margin:.5em;padding:.5em}.shoptag-item.has-beta .item-hidden-details>.item-tags{height:4.8em;padding-top:1em}.item-hidden-details .beta-btns>a:hover{opacity:.9}.item-hidden-details .beta-btns{height:3em}.shoptag-item.has-beta .item-hidden-details{padding-top:1em}.shoptag-item .item-hidden-details{padding-top:4em}.shoptag-item .item-hidden-details>.main-title{flex:0 0 3.2em}.shoptag-item .beta-tag{position:absolute;top:30px;right:-14px;background:red;background:linear-gradient(133deg,transparent 10px,red 11px);padding:3px 20px;color:#fff;font-size:20px;min-width:100px}.shoptag-item .beta-tag:after{width:0;height:0;border-style:solid;border-width:10px;border-color:#fff0 #fff0 darkred #fff0;transform:rotate(-45deg);content:'';position:absolute;right:4px;bottom:-10px}.title_slider{background-color:'.$dat['color_b_bg'].'}.shoptag-item{transition:all 0.45s;margin-bottom:20px;background-color:'.$dat['color_tem2'].';border-radius:10px}.item-hidden-details .beta-btns>a{border:none;color:'.$dat['color_link'].';font-size:1em;line-height:2.5em}.shoptag-item .item-hidden-details>.item-description{flex:0 0 12em;padding:0 1.5em;font-size:.7em;text-align:justify;color:'.$dat['color_text'].';overflow:hidden}.shoptag-item:hover .item-cover{opacity:1}.shoptag_main{width:100%;height:100%;overflow:hidden;position:relative;transition:all .32s}.shoptag-item-img{border-radius:10px 10px 0 0;display:block;margin:auto;width:100%;height:100%;object-fit:cover;-webkit-transition:all 0.3s;-moz-transition:all 0.3s;-ms-transition:all 0.3s;-o-transition:all 0.3s;transition:all 0.3s}.p-15px{padding:15px}
            #body_popup_1,#body_popup_2{
                position:fixed;
                display:flex;
                text-align:center;
                top:0;
                bottom:0;
                right:0;
                left:0;
                z-index:99999;
                visibility:hidden;
                opacity: 0;
                background:rgba(0,0,0,0.5);
            }
            #body_popup_1.open-popup,#body_popup_2.open-popup{
                visibility:visible;
                opacity: 1;
            }
            #body_popup_1 > div,#body_popup_2 > div{
                display:block;
                background:#fff;
                padding:10px;
                margin:auto;
                transform:translateY(-150px);
                -webkit-transition:transform .3s;-moz-transition:transform .3s;-ms-transition:transform .3s;-o-transition:transform .3s;transition:transform .3s;
                text-align:center;
                border-radius:10px;
                position:relative;
                z-index:999999;
            }
            #body_popup_1.open-popup > div,#body_popup_1.open-popup > div{
                transform:translateY(0);
            }
            #body_popup_1 .icon-close-popup{
                position:absolute;
                font-size:30px;
                height:30px;
                width:30px;
                border-radius:50%;
                color:red;
                top:-10px;
                right:-10px;
                background-color:transparent;
                z-index:9999;
            }
            #body_popup_1 .icon-close-popup i{
                position:absolute;
                top:0;
                right:0;
            }
            #body_popup_1 .container-html{
                height:100%;
                overflow:auto;
                max-height:90vh;
            }
            #body_popup_1 .container-html::-webkit-scrollbar{
                width:5px;
                height:100%;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-track{
                background-color:transparent;
            }
            #body_popup_1 .container-html::-webkit-scrollbar-thumb{
                background-color:#777;
                border-radius:20%;
            }
            #body_popup_1 .icon-close-popup{
                color:#fff;
                top:0;
                right:0;
            }
            #module_waiting_box{
                position:fixed;
                background:rgba(256,256,256,0.8);
                width:100%;
                height:100%;
                -webkit-transition:.3s;-moz-transition:.3s;-ms-transition:.3s;-o-transition:.3s;transition:.3s;
                top:0;
                right:0;
                opacity:0;
                z-index:9999999999999;
                visibility:hidden;
            }
            #module_waiting_box.show-waiting{
                visibility:visible;
                opacity:1;
            }
            #module_waiting_box .spinner {
              margin: 100px auto 0;
              width: 70px;
              text-align: center;
            }
            
            #module_waiting_box .spinner > div {
              width: 18px;
              height: 18px;
              background-color: #333;
              border-radius: 100%;
              display: inline-block;
              -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
              animation: sk-bouncedelay 1.4s infinite ease-in-out both;
            }
            
            #module_waiting_box .spinner .bounce1 {
              -webkit-animation-delay: -0.35s;
              animation-delay: -0.35s;
            }
            
            #module_waiting_box .spinner .bounce2 {
              -webkit-animation-delay: -0.16s;
              animation-delay: -0.16s;
            }
            
            @-webkit-keyframes sk-bouncedelay {
              0%, 95%, 100% { -webkit-transform: scale(0) }
              50% { -webkit-transform: scale(1.0) }
            }
            
            @keyframes sk-bouncedelay {
              0%, 95%, 100% { 
                -webkit-transform: scale(0);
                transform: scale(0);
              } 50% { 
                -webkit-transform: scale(1.0);
                transform: scale(1.0);
              }
            }
        body{direction: rtl;text-align: right;}