.e{
/*    direction: ltr;*/
/*    text-align: left;*/
    font-family: sans-serif !important;
    font-weight: 500;
}
html{
    scroll-behavior: smooth;
}
body{
	direction: ltr;
    text-align: left;
}
body.rtl{
    direction: rtl;
    text-align: right;
}
.dir-ltr{direction: ltr;}
.dir-rtl{direction: rtl;}
body.ltr .float-right{
    float: right !important;
}
.modal-header{
    padding-bottom: .75rem;
}
.modal-header .close span{
    font-weight: 100;
/*    font-size: 2rem;*/
}
.modal-title{
    font-size: 1.125rem;
}
@media (max-width: 991px){
    .modal-title{
        font-size: 1rem;
    }
}
body.ltr .modal-header .close{
    margin: -1rem -1rem -1rem auto;
}
img{
    max-width: 100%;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
a{
    color: #000;
}
a:hover{
    color: #333;
    /*text-decoration: none;*/
}
hr.hr-dashed{
    border-top: 1px dashed rgba(0,0,0,.25);
}
hr.hr-gradient{
    border: 0;
    height: 1px;
    background: rgb(255,255,255);
    background: -moz-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,.5) 50%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,.5) 50%, rgba(255,255,255,0) 100%);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,0,0,.5) 50%, rgba(255,255,255,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.breadcrumb{
    background-color: transparent;
}
.breadcrumb-item{
    font-size: 14px;
    font-weight: 100;
}
.breadcrumb-item+.breadcrumb-item{
    padding: 0;
}
.breadcrumb-item+.breadcrumb-item::before{
    padding-right: .5rem;
    padding-left: .5rem;
    content: "/";
    font-size: 12px;
    line-height: 20px;
}
.container-fluid{
    padding-right: 0;
    padding-left: 0;
}

.text-right{text-align: right !important;}
.rtl .text-right{text-align: left !important;}
.text-left{text-align: left !important;}
.rtl .text-left{text-align: right !important;}

.dropdown-toggle::after{
    margin: 0 .255em;
    vertical-align: 0;
}
.dropdown.show .dropdown-toggle::after{
    vertical-align: .1rem;
    border-bottom: .3em solid;
    border-left: .3em solid transparent;
    border-top: 0;
    border-right: .3em solid transparent;
}

.dropdown-menu{
    padding: 0;
    margin: 0 1rem;
}
.dropdown-item{
    font-size: 13px;
    padding: .5rem 1rem;
    font-weight: 300;
}

.rtl .flex-align-right{
    margin-left: unset;
    margin-right: auto;
}
.flex-align-right{
    margin-right: unset;
    margin-left: auto;
}

/* MODAL */
body.rtl .modal .close{
    right: auto;
    left: 25px;
}

/* BUTTONS */
.btn{
	font-size: 14px;
	font-weight: 300;
    border-radius: .35rem;
}
.btn-group-sm>.btn, .btn-sm{
    font-size: 13px;
    padding-bottom: .1rem;
    border-radius: .25rem;
}
.btn.focus, .btn:focus{
	box-shadow: 0 0 0 transparent !important;
}

/* COLORS */
.btn-primary{
/*    background-color: #0a5bff;*/
/*    border-color: #0a5bff;*/
    background-color: rgb(33,113,243);
    border-color: rgb(33,113,243);
}
.btn-primary:hover{
/*    background-color: #0a49ff;*/
/*    border-color: #0a49ff;*/
    background-color: rgb(13,93,253);
    border-color: rgb(13,93,253);
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle{
    background-color: #0a38ff;
    border-color: #0a38ff;
}
.btn-secondary{
    background-color: #4f5a63;
    border-color: #4f5a63;
}
.btn-success{
    background-color: #65ca01;
    border-color: #65ca01;
}
.btn-danger{
    background-color: #ff2c42;
    border-color: #ff2c42;
}
.btn-warning{
    background-color: #fff200;
    border-color: #fff200;
}
.btn-info{
    color: #02404a;
    background-color: #00dcff;
    border-color: #00dcff;
}



.text-primary{
/*    color: #0a5bff !important;*/
    color: rgb(33,113,243) !important;
}
.text-secondary{
    color: #4f5a63 !important;
}
.text-success{
    color: #65ca01 !important;
}
.text-danger{
    color: #ff2c42 !important;
}
a.text-danger:focus, a.text-danger:hover{
    color: #ef1329 !important;
}
.text-warning{
    color: #fff200 !important;
}
.text-info{
    color: #00dcff !important;
}
.text-gray{
    color: #5f5f5f !important;
}


.dropdown-item.active, .dropdown-item:active{
    background-color: #0a5bff;
}

/* FORMS */
.pagination{
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}
.pagination a{
    text-decoration: none;
    display: block;
    width: 100%;
    padding: 1px 10px 0;
}
.pagination li{
    display: inline-block;
    min-width: 30px;
    height: 30px;
    text-align: center;
    margin: 0 3px;
    line-height: 30px;
    font-weight: 500;
    border-radius: 30px;
    color: #999;
    font-size: 14px;
    overflow: hidden;
}
.pagination li:not(.ellipsis):not(.current):hover{
    cursor: pointer;
    color: #555;
    background-color: rgba(33,113,243,.25);
}
.pagination li.current{
    padding: 1px 5px 0;
    font-size: 16px;
    color: #fff;
    background-color: rgb(33,113,243);
    box-shadow: 0 4px 5px 0 rgba(33,113,243,.14), 0 1px 10px 0 rgba(33,113,243,.12), 0 2px 4px -1px rgba(33,113,243,.2);
}
.pagination li.current a{
    color: #fff;
}
.pagination li.ellipsis:after{
    content: '...';
}



/* FORMS */
.form-control{
    border-color: #c8c8c8;
    height: auto;
    padding: .65rem 1.2rem;
    border-radius: .35rem;
}

.form-control:focus{
    /*
    border-color: #4b4b4b;
	box-shadow: 0 0 0 transparent !important;
    */
    box-shadow: 0 0 0px 2px #2171f3 !important;
}
.form-group{
	position: relative;
	margin-top: 14px;
}
.form-group label{
    position: absolute;
    font-weight: 300;
	top: -12px;
    right: 8px;
    background: #fff;
    padding: 2px 8px 0;
    color: #2171f3;
    border-radius: 30px;
    line-height: 1.25;
}
body.ltr .form-group label{
    right: unset;
    left: 10px;
}

/* COMPONENTS */
.aa-component-input{
    position: relative;
}
.aa-component-input label{
    position: absolute;
    top: -10px;
    right: 15px;
    /*font-weight: 500;*/
    font-size: 11px;
    padding: 0 5px;
    /*color: #999;*/
    background-color: #fff;
    letter-spacing: -.25px;
    border-radius: 5px;
    z-index: 1;
}
body.ltr .aa-component-input label{
    right: unset;
    left: 15px;
}
.aa-component-input .required{
    position: absolute;
    color: red;
    font-size: 12px;
    padding: 0 3px;
    background: #fff;
}
.aa-component-input .icon{
    position: absolute;
    color: #666;
    top: 11px;
    left: unset;
    right: 10px;
    opacity: .6;
}
.aa-component-input select,
.aa-component-input input[type="file"]{
    height: 47px;
}
.rtl .aa-component-input .icon{
    right: unset;
    left: 10px;
}

.aa-component-star img{
    width: 12px;
}

ul.chips{
    list-style: none;
}
ul.chips li{
    display: inline-block;
    padding: 2px 14px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 100px;
    margin-right: 2px;
    color: #333;
}
ul.chips li:hover{
    background-color: rgba(0,0,0,.1);
}
ul.chips li.active{
    background-color: #333;
    color: #fff;
    /* box-shadow: 4px 4px 4px rgba(0,0,0,0.1); */
}

.tab-smooth-headers{
    position: sticky;
    background: #eff5fe;
    z-index: 1;
}
.tab-smooth-header{
    display: inline-block;
    padding: 12px 0;
    border-bottom: 2px solid transparent;
}
.tab-smooth-header.active{
    border-bottom: 2px solid #2171f3;
}
.tab-smooth-header.active a{
    color: #2171f3;
}
.tab-smooth-header a{
    padding: 12px 14px;
/*    font-size: 14px;*/
    font-weight: 100;
    color: #345;
    text-decoration: none;
}
.tab-smooth-content{
    padding: 178px 0 20px;
    margin-top: -168px;
}
.tab-smooth-content:not(:last-child){
/*    border-bottom: 1px solid #aaa;*/
}
/* Accordion */
.accordion .accord{
    background: #fff;
    padding: 15px 5px;
    margin: 4px 0;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.05);
    border-radius: .35rem;
    margin-bottom: 10px;
    transition: all .25s;
}
.accordion .accord.open{
    background-color: #00cd8a;
    background-color: #ccf5e8;
}
.accordion .accord-head{
    font-size: 16px;
    cursor: pointer;
    color: #2a4527;
}
.accordion .accord.open .accord-head{
    color: #000;
}
.accordion .accord-body{
    display: none;
    font-size: 15px;
    font-weight: 300;
    padding: 20px 40px;
    color: #00150e;
    line-height: 1.7;
}
.accordion .icon{
    margin: 0 10px;
    color: #EF438D;
}
.accordion .icon-d,
.accordion .icon-o{
    margin: 0 15px;
    opacity: .75;
    width: 16px;
}
.accordion .icon-o{
    display: none;
}
.accordion .accord.open .accord-body{
    display: block;
}
.accordion .accord.open .icon-d{
    display: none;
}
.accordion .accord.open .icon-o{
    display: inline-block;
}
.accordion.accordion-border .accord{
    border: 1px solid #00cd8a;
}


.faq-pattern{
    /*
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    background-color: rgba(126,213,39,.1);
    background-image: url('../img/faq-pattern.jpg');
    opacity: .01;
    */
}
/* Hover Menu */
.hover-menu:hover > .hover-menu-content{
    display: block;
}
.hover-menu-content{
    display: none;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.25);
}
.hover-menu-content li{
    font-size: 14px;
    cursor: pointer;
}
.hover-menu-content li a{
    display: block;
    padding: .6rem .5rem;
}
.hover-menu-content li:hover{
    /*background: #f8f9fa;*/
}
.hover-menu-content li:hover > .hover-menu-content-sub{
    display: block;
}
.hover-menu-content-wrapper .hover-menu-content-sub{
    display: none;
    position: absolute;
    top: 0;
    margin-right: 220px;
    /*width: calc(100% - 180px - 1rem);*/
}
body.ltr .hover-menu-content-wrapper .hover-menu-content-sub{
    margin-right: 0px;
    margin-left: 220px;
}
.hover-menu-content-wrapper .hover-menu-content-sub li{
    display: inline-block;
    margin: 4px 5px;
    border: 1px solid lightgray;
    border-radius: 5px;
}
.hover-menu-content-wrapper .hover-menu-content-sub li a{
    display: block;
    padding: .65rem 1.3rem;
}
.hover-menu-content-wrapper .hover-menu-content-sub li:hover{
    border-color: gray;
    background-color: #f7f7f7;
}
.hover-menu-content-sub{
    /*background: rgba(255,255,0,.1);*/
}
.hover-menu-content-sub li{
    /*border: 1px solid red;*/
}
.hover-menu-content-sub .hover-menu-content-sub{
    display: none!important;
}

/* CLASSES */
.hide{display: none;}

.w-80{width: 80%;}
.mw-60{max-width: 60%;}

.bg-lightgray{background-color: #f0f1f2;}

.mt--5{margin-top: -5px;}
.mt--10{margin-top: -10px;}
.mt--15{margin-top: -15px;}
.mt--20{margin-top: -20px;}
.mt--30{margin-top: -30px;}

.cf-w{filter: brightness(0) invert(1);}

.fs-10{font-size: 10px !important;}
.fs-11{font-size: 11px !important;}
.fs-12{font-size: 12px !important;}
.fs-13{font-size: 13px !important;}
.fs-14{font-size: 14px !important;}
.fs-15{font-size: 15px !important;}
.fs-16{font-size: 16px !important;}
.fs-17{font-size: 17px !important;}
.fs-18{font-size: 18px !important;}
.fs-20{font-size: 20px !important;}
.fs-22{font-size: 22px !important;}
.fs-24{font-size: 24px !important;}
.fs-26{font-size: 26px !important;}
.fs-32{font-size: 32px !important;}
.fs-36{font-size: 36px !important;}
.fs-42{font-size: 42px !important;}
.fs-48{font-size: 48px !important;}

.fw-100{font-weight: 100 !important;}
.fw-200{font-weight: 200 !important;}
.fw-300{font-weight: 300 !important;}
.fw-400{font-weight: 400 !important;}
.fw-500{font-weight: 500 !important;}
.fw-600{font-weight: 600 !important;}
.fw-700{font-weight: 700 !important;}
.fw-800{font-weight: 800 !important;}
.fw-900{font-weight: 900 !important;}

.br-5{border-radius: 5px;}
.br-10{border-radius: 10px;}
.br-15{border-radius: 15px;}
.br-20{border-radius: 20px;}

.border-1{border-width: 1px;}
.border-2{border-width: 2px;}
.border-3{border-width: 3px;}
.border-4{border-width: 4px;}
.border-5{border-width: 5px;}

.trans-25{transition: all .25s;}

.disabled{
    pointer-events: none;
    cursor: not-allowed;
}

.w-20{width: 20px;}
.w-32{width: 32px;}
.w-42{width: 42px;}
.w-48{width: 48px;}
.img48w{width: 48px;}

.rotate-180{
    transform: rotate(180deg);
}

.va-m{vertical-align: middle;}
/*.va-ih{vertical-align: inherit;}*/

.ai-unset{align-items: unset;}

.zi-1{z-index: 1;}
.zi--1{z-index: -1;}



/* INPUTS */
::-moz-placeholder{
	font-size: 12px;
	font-weight: 300;
}
:-moz-placeholder{
	font-size: 12px;
	font-weight: 300;
}
:-ms-input-placeholder{
	font-size: 12px;
	font-weight: 300;
}
::-webkit-input-placeholder{
	font-size: 12px;
	font-weight: 300;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

.brn{
    border-radius: 10px !important;
}
.sp-menu{
    position: sticky;
    top: 130px;
}
.sp-menu .user-image{
    display: block;
    background-color: rgba(33,113,243,.04);
    margin: 0 auto;
    border-radius: 50%;
    width: 128px;
    height: 128px;
}
.sp-menu li a{
    display: block;
    height: 54px;
    padding: 15px 4px;
    text-decoration: none;
}
.sp-menu li a:hover,
.sp-menu li a.active{
    color: rgb(33,113,243);
    background-color: rgba(33,113,243,.04);
}
.sp-menu li a img{
    opacity: .75;
}
.sp-menu li a:hover img,
.sp-menu li a.active img{
    opacity: 1;
    filter: invert(37%) sepia(94%) saturate(4126%) hue-rotate(210deg) brightness(101%) contrast(91%);
}
.sp-menu li i{
    margin: 0 5px;
}

.tab-section ul{
    list-style:disc;
    padding-inline-start: 40px;
}

body.ltr .pl-0, 
body.ltr .px-0{
    padding-right: 15px!important;
    padding-left: 0!important;
}


/*ASLIDE*/
.aslides{
    /*display: flex;*/
    white-space: nowrap;
    transition: all .25s;
    overflow: hidden;
    padding: 0 60px;
}
.aslides .aslide{
    display: inline-block;
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 6px 10px -5px rgb(0,0,0, .5);
    transition: all .5s;
}
.aslides .aslide img{
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}



/* AAGALLERY */
.aa-gallery{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 9999;
}
.aa-gallery .aa-gallery-wrapper{
    position: absolute;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    background-color: #fff;
    overflow: hidden;
}
.aa-gallery .aa-gallery-thumbnails-wrapper{
    max-width: 120px;
}
.aa-gallery .aa-gallery-thumbnails{
    position: absolute;
    height: calc(100% - 36px);
    overflow-y: auto;
    margin: 10px;
}
.aa-gallery .aa-gallery-thumbnail{
    width: 76px;
    height: 76px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ddd;
    margin: 5px;
}
.aa-gallery .aa-gallery-thumbnail.selected{
    box-shadow: 0 0 0 2px #033e3f;
}
.aa-gallery .aa-gallery-thumbnail img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.aa-gallery .aa-gallery-image-wrapper{
}
.aa-gallery .aa-gallery-image{
    padding: 10px;
}
.aa-gallery .aa-gallery-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.aa-gallery-close{
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    width: 26px;
    height: 26px;
}
.aa-gallery-close:hover{
    background-color: rgba(255,0,0,.2);
}
/* \AAGALLERY */


/* V2 */
.custom-scrollbar::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.05); 
    background-color: rgba(0,0,0,0.05);
    border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar{
    width: 4px;
    background-color: #F5F5F5;
}
.custom-scrollbar::-webkit-scrollbar-thumb{
    border-radius: 10px;
    background-color: #666;
}

/* APP_USER *******************************************************************************  */
body{
    background: #f8f9fa;
}
body.mobile{
    background: #fff;
}
.of-h{
    overflow: hidden;
}
.c{
    max-width: 1200px;
    margin: 0 auto;
}
.df{
    display: flex;
}
.sec{
    background: #fff;
    border-radius: 5px;
    box-shadow: 0px 4px 5px rgb(0,0,0,.05);
    padding: .4rem;
}
.header{
    background: #fff;
    height: 120px;
    z-index: 99;
    box-shadow: 0px 1px 5px rgba(0,0,0,.15);
}
body.mobile .header{
    box-shadow: 0 0 0 transparent;
}
body.mobile .header.scrolled{
    box-shadow: 0 0 8px rgba(0,0,0,.1);
}
body.fixed-header .header{
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}
body.fixed-header .sbody{
    margin-top: 120px;
}
.header-wrapper{
    display: flex;
    align-items: center;
    height: 80px;
}
.header .nav-link{
/*    font-size: 14px;*/
}
.header .rp{
    border: 2px solid;
    border-radius: .5rem;
    padding: .35rem .85rem;
}

.header .tmenu{
    height: 40px;
    background: #f7f7f7;
    border-bottom: 1px solid #ccc;
}
.header .tmenu .icon{
    vertical-align: middle;
    font-size: 20px;
    margin: 2px;
}
.main-menu{
    position: absolute;
    width: calc(100% - 20px);
    border-radius: 0 0 5px 5px;
    box-shadow: 0 3px 5px rgba(0,0,0,.25);
    overflow: hidden;
}
.main-menu .hover-menu-content-wrapper > li{
    width: 220px;
    background-color: #f7f7f7;
}
.main-menu .hover-menu-content-wrapper > li:hover{
    color: #ef394e;
    background: #f9f9f9;
}
.main-menu .hover-menu-content-wrapper > li:hover .categories-img{
    filter: grayscale(0);
}
.hovered-menu{
    color: #ef394e !important;
    background: #f9f9f9;
}

.main-menu .hover-menu-content-wrapper > li:hover .categories-img{
    opacity: 1
}

.slider{
    width: 100%;
    height: 360px;
}

.products .swiper-slide{
    text-decoration: none;
    background: #fff;
    position: relative;
    width: 228px;
    height: 340px;
    border: 1px solid #ebebeb;
}
.products .stars{
    position: absolute;
    width: 100%;
    bottom: 8px;
}
.products .stars > div{
    display: inline-block;
}
.products .stars .liked{
    float: left;
}
.products .swiper-button-next,
.products .swiper-button-prev{
    background: #fff;
    width: 50px;
    height: 50px;
    top: calc(50% - 15px);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,.25);
}
.swiper-button-prev:after, .swiper-button-next:after{
    font-size: 20px;
    font-weight: 600;
    color: #666;
}

.ext .ext-sec{
    height: 220px;
    border-radius: 15px;
}
.ext .ext-req{
    /*
    background: rgb(117,13,255);
    background: -moz-linear-gradient(333deg, rgba(117,13,255,1) 0%, rgba(104,0,242,1) 100%);
    background: -webkit-linear-gradient(333deg, rgba(117,13,255,1) 0%, rgba(104,0,242,1) 100%);
    background: linear-gradient(333deg, rgba(117,13,255,1) 0%, rgba(104,0,242,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#750dff",endColorstr="#6800f2",GradientType=1);
    */
    background: rgb(255,44,66);
}
.ext .ext-help{
    background: rgb(37,42,65);
    /*
    background: -moz-linear-gradient(333deg, rgba(37,42,65,1) 0%, rgba(50,55,77,1) 100%);
    background: -webkit-linear-gradient(333deg, rgba(37,42,65,1) 0%, rgba(50,55,77,1) 100%);
    background: linear-gradient(333deg, rgba(37,42,65,1) 0%, rgba(50,55,77,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#252a41",endColorstr="#32374d",GradientType=1);
    */
}

.blogs{
    text-decoration: none;
}
.blogs .swiper-slide{
    width: 384px;
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
}
.blogs .blog-text{
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
    background: -moz-linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 35%);
    background: -webkit-linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 35%);
    background: linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,0) 35%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.blogs .blog-text span{
    position: absolute;
    bottom: 0;
    padding: 10px;
    color: #fff;
    text-shadow: 1px 1px rgba(0,0,0,.8);
}
.blogs img{
    width: 100%;
    height: 100%;
}

.qa{
    background: #eee;
    background: repeating-linear-gradient(135deg, #fff, #fff 5px, #eaeaea 5px, #eaeaea 10px);
}

.suppliers .swiper-slide{
    background: #fff;
    width: 160px;
    height: 160px;
    border: 1px solid #ebebeb;
    border-radius: 5px;
    overflow: hidden;
}

footer{
    background: #fff;
}
footer .footer-links a{
    color: #000;
}
footer .footer-links ul li{
    margin-top: 7px;
}

.loader{
    margin: 6px 0 0 6px;
    border: 2px solid rgba(33,113,243,.2);
    border-top: 2px solid #2171f3;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin .5s linear infinite;
    z-index: 1;
}
@keyframes spin{
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* \APP_USER *******************************************************************************  */

/* POOR *******************************************************************************  */
body{
/*    background-color: #F4F4F4 !important;*/
}
.sec-pox{
    background-color: transparent;
    box-shadow: none;
    margin-top: 80px;
}
.pox-icons{
    max-width: 48px;
    filter: drop-shadow(1px 1px 1px #fff);
}
.pox-icons2{
    position: absolute;
    z-index: -1;
    opacity: .25;
    margin: 8px -8px;
    filter: grayscale(1);
}
.text-gray-pox{
    color: #676767;
}
.tits-pox{
    color: #060606;
    font-size: 25px;
}
.tits-border1-pox{
    width:80px; 
    height:5px; 
    border-radius:10px;
    background-color:#2157A7; 
    display:inline-block;
    margin-left:5px;
}
.tits-border2-pox{
    width:12px; 
    height:5px; 
    border-radius:10px;
    background-color:#2157A7; 
    display:inline-block;
}
.swiper-slide-pox{
    border-radius: 12px;
    border: none;
    box-shadow: 0 24px 24px rgba(0,0,0,0.06);
}
.product-img-pox{
    border-radius: 12px 12px 0 0;
}
.product-name-pox{
    color: #000 !important;
    font-weight: 600 !important;
}
.gray-pox{
    color: #656565 !important;
}
.cont-tit-pox{
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 30px;
}
.ext-req-pox{
/*    background: linear-gradient(251.13deg, rgba(117, 13, 255, 0.8) 3.43%, rgba(117, 13, 255, 0.51) 99.22%) !important;*/
    height: auto !important;
    margin-bottom: 50px;
}
.ext-help-pox{
/*    background: linear-gradient(250.63deg, #0D1116 2.74%, #263D60 100%) !important;*/
    height: auto !important;
    margin-bottom: 50px;
    position: relative;
}
.ext-reg-pox{
    background: rgb(148,58,255) !important;
    height: auto !important;
    margin-bottom: 50px;
    position: relative;
}
.icon-help-pox img{
    position: absolute;
    top: 5px;
    left: 10px;
    width: 85px;
    z-index: 2;
}
.icon2-help-pox img{
    position: absolute;
    top: -10px;
    left: -15px;
    width: 50px;
    z-index: 1;
}
.icon3-help-pox img{
    position: absolute;
    top: 55px;
    left: 78px;
    width: 20px;
    z-index: 3;
}
/* \POOR *******************************************************************************  */

.modal-content{
    border: 0;
    box-shadow: 0px 10px 20px -5px rgb(0,0,0,.5);
}

/*  PAGES  */
/* MASTER */
.rpp{
    width: 100%;
    border: 2px solid #ff2c42 ;
    border-radius: .5rem;
    padding: 0.6rem 0.85rem;
    background-color: #ff2c42 ;
    color: #fff;
    transition: all .25s;
}
.rpp.rpp-sm{
    border: 1px solid #ff2c42;
    border-radius: .25rem;
    padding: .2rem .5rem;
    background-color: transparent;
    color: #ff2c42;
    transition: all .25s;
}
.rpp:hover{
    color: #fff;
    box-shadow: 0 3px 5px 2px rgba(249,0,108,.15);
}
.rpp-sm:hover{
    color: #ff2c42;
    box-shadow: 0 3px 5px 2px rgba(249,0,108,.15);
}

#search{
    min-width: 400px;
    position: relative;
}
#search input[name="search"]{
    background: #f2f2f2;
    border: 0;
    padding: .65rem 3rem;
}
#search button{
    position: absolute;
    top: 0;
    border: 0;
    opacity: .5;
    padding: 10px;
}
#search button:hover{
    opacity: 1;
}

.cart-count{
    display: inline-block;
    padding: 0 5px;
    height: 14px;
    color: #fff;
    background: #f90000;
    font-size: 10px;
    border-radius: 50px;
    text-align: center;
}

/* INCLUDE-CATEGORIES */
#categories-wrapper{
    position: relative;
    max-height: calc(100vh - 200px);
}
#categories-wrapper a{
    text-decoration: none;
}
#categories-wrapper > li > a{
    width: 220px;
    background: rgba(33,113,243,.07);
}
#categories-wrapper > li:hover > a{
    color: rgb(33,113,243);
    background: rgba(33,113,243,.1);
    background: #fff;
}
#categories-wrapper > li:hover .categories-img{
    filter: invert(37%) sepia(94%) saturate(4126%) hue-rotate(210deg) brightness(101%) contrast(91%);
    opacity: 1;
}
#categories-wrapper .categories-sub{
}
#categories-wrapper .categories-sub[data-lvl="1"]{
    display: none;
    position: absolute;
    margin-right: 220px;
    overflow-x: hidden;
    overflow-y: auto;
    width: calc(100% - 220px);
    height: 100%;
    top: 0;
    direction: ltr;
}
body.ltr #categories-wrapper .categories-sub[data-lvl="1"]{
    direction: rtl;
}
body.ltr #categories-wrapper .categories-sub[data-lvl="1"]{
    margin-right: 0;
    margin-left: 220px;
}
#categories-wrapper .categories-sub[data-lvl="1"] > ul{
    column-count: 3;
    direction: rtl;
}
body.ltr #categories-wrapper .categories-sub[data-lvl="1"] > ul{
    direction: ltr;
}
#categories-wrapper .categories-sub[data-lvl="1"] > ul > .categories-item a{
    color: #000;
    font-weight: 600;
}
#categories-wrapper .categories-item a:hover{
    color: #2171f3!important;
}
#categories-wrapper .categories-sub[data-lvl="2"] > ul > .categories-item a{
    color: #666;
    font-weight: 300;
    padding: .3rem .5rem;
}
#categories-wrapper .categories-sub[data-lvl="2"]{
    padding-right: 10px;
}
.categories-item:hover > .categories-sub{
    display: block!important;
}
.categories-img-wrapper{
    max-width: 38px;
    padding: 0 14px 0 0;
}
body.ltr .categories-img-wrapper{
    padding: 0 0 0 14px;
}
.categories-img{
    width: 24px;
    margin: 0 5px;
    color: red;
    opacity: .75;
}

/* HOME */
.product-img-wrapper{
    height: 160px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eee;
    border-radius: 12px 12px 0 0;
}
.product-img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-fit: cover;

    position: absolute;
    top: 0;
    left: 0;    
}
.product-supplier{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-name{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-description{
    height: 54px;
    overflow: hidden;
}

/* PROFILE-SUPPLIERS */
#suppliers a{
    text-decoration: none;
}

/* ABOUT */
.sp-img-banner{
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: .5rem;
}

/* PLANS */
#plans {
    box-shadow: 0 10px 28px -15px rgb(0 0 0 / 15%);
    margin: 40px auto 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    border: 0 none;
}
.price-table tr:not(:last-child):not(:first-child) {
    border-bottom: 1px dashed rgba(0, 0, 0, 0.125);
}
.price-table tr td {
    border-right: 1px solid rgba(0, 0, 0, 0.2);
    padding: 14px 10px;
    font-size: 14px;
}
.price-table tr td:first-child {
    max-width: 260px;
    border-right: 0 none;
}
.price-table tr td:not(:first-child) {
    text-align: center;
}
.price-table tr:nth-child(even) {
    background-color: #FFFFFF;
}
.price-table .fa-check {
    color: #5336ca;
}
.price-table .fa-times {
    color: #D8D6E3;
}
.price-table tr.price-table-head td {
    font-size: 12px;
    font-weight: 100;
    text-transform: uppercase;
    color: #000;
}
.price-table tr.price-table-head td:first-child {
    border-bottom: 0px solid #fff;
}
.price-table td.price {
    color: #011abc;
    padding: 16px 24px;
    font-size: 20px;
    font-weight: 500;
}
.price-table td.price a {
    background-color: rgb(33, 113, 243);
    color: #fff;
    padding: 10px 32px;
    margin: 16px 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border-radius: .35rem;
}
.price-table td.price-table-popular {
    border-top: 3px solid #5336ca;
    color: #5336ca;
    text-transform: uppercase;
    font-size: 12px;
    padding: 12px 48px;
    font-weight: 700;
}
.price-table .price-blank {
    background-color: #fafafa;
    border: 0 none;
}
.price-table svg {
    width: 90px;
    fill: #5336ca;
}
.fs-14.text-gray{
    color: #666;
    font-weight: 100;
    margin-top: 10px;
}
.price .prc span{
    position: absolute;
    font-size: 12px;
    font-weight: 100;
    color: #000;
    background: #eee;
    border-radius: 15px;
    padding: 1px 8px;
    margin-top: -7px;
}

/* CATEGORIES INDEX */
#categories-wrapper1 a{
    text-decoration: none;
}
#categories-wrapper1 .category{
    border-radius: 3px;
    cursor: pointer;
    padding: 10px 0 20px;
    transition: all .25s;
}
#categories-wrapper1 .category:hover{
    transform: scale(1.1);
}
#categories-wrapper1 .category img{
    width: 48px;
}
#categories-wrapper1 .category .category-count{
    background-color: #f8f9fa;
}
#categories-wrapper1 .category img, #categories-wrapper1 .category div{
    transition: all .15s;
}
#categories-wrapper1 .category-image-wrapper{
    overflow: hidden;
}
#categories-wrapper1 .category-image-wrapper img{
  transform: translateY(-1000px);
}

/* CATEGORIES SHOW */
#products a{
    text-decoration: none;
}
.product{
    position: relative;
    background-color: #fff;
    border: 1px solid #eaeaea;
    cursor: pointer;
    transition: all .15s;
    min-height: 400px;
    height: 100%;
}
.product .desc{
    font-size: 12px;
    color: #666;
    margin: 1rem 0 2.5rem;
    font-weight: 100;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-height: 56px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.product:hover{
    border: 1px solid #666;
    box-shadow: inset 0px 0px 2px #000;
    transform: scale(1.05);
    z-index: 1;
}
.prd-more{
    opacity: 0;
    transition: all .25s;
}
.product:hover .prd-more{
    opacity: 1;
}
.product img{
    margin-top: 10px;
    width: 100%;
    height: 180px;
    object-fit: contain;
}
.product img, .product div{
    transition: all .15s;
}
.owl-carouselX .item{
    height: 38px;
    text-align: center;
    display: inline-block;
    margin: 2px;
}
.owl-carouselX .item a{
    background-color: rgba(33,113,243,.1);
    color: #0a3f95;
    border-radius: 5px;
    display: block;
    padding: 0 18px;
    height: 100%;
    text-decoration: none;
}
.owl-carouselX .item a:hover{
    background-color: rgba(33,113,243,.15);
}
.owl-carouselX .item h2{
    font-size: 14px;
    font-weight: 300;
    top: 50%;
    position: relative;
    transform: translateY(-50%);
}

.filter{
    font-weight: 100;
    border-bottom: 1px solid #e7e7e7;
}
.filter-wrapper{
    padding: .75rem;
    padding-left: .25rem;
    cursor: pointer;
}
.filter.open .filter-wrapper,
.filter:hover .filter-wrapper{
    background-color: #f2f2f2;
}
.filter-values{
    display: none;
    background-color: #f9f9f9;
}
.filter.open .filter-exp img{
    transform: rotate(180deg);
}
.filter.open .filter-values{
    display: block;
}
.filter-name{
    display: inline-block;
}
.filter-exp{
    float: left;
    opacity: .5;
}
.filter-exp img{
    transition: all .25s;
}
.filter-value{
    border-bottom: 1px solid #dfdfdf;
/*    cursor: pointer;*/
}
.filter-value .custom-control{
    padding-right: 0;
}
.filter-value .custom-control-label{
    display: block;
    padding: .75rem 2.5rem .75rem .75rem;
    cursor: pointer;
}
.filter-value .custom-control-label::before,
.filter-value .custom-control-label::after{
    top: 50%;
    transform: translateY(-50%);
    right: .75rem;
}
.filter-value .custom-control-label::before{
    width: 1rem;
    height: 1rem;
    border-radius: .15rem;
    border: 2px solid #345;
    box-shadow: 0 0 0 0 rgba(0,0,0,0) !important;
}
.filter-value .custom-control-input:checked~.custom-control-label::before{
    background-color: #345;
    border-color: #345;
}

/* MODAL AUTH */
@media (min-width: 576px){
    .modal-sm1{
        max-width: 400px;
    }
}

/* MODAL INQUIRY */
@media (min-width: 992px){
    .modal-inquiry-x{
        max-width: 900px;
    }
}
#a1666{
    background: #000;
    width: 100%;
    position: absolute;
    left: -1px;
    top: -80px;
    height: calc(100% + 104px);
    background-image: url('/assets/media/modals/inquiry.jpg');
    background-size: 100% 100%;
}
#modal-inquiry-categories-back{
    display: none;
    padding: 10px;
    border-bottom: 1px solid #777;
    cursor: pointer;
    background: rgba(33,113,243,.07);
    color: rgb(33,113,243);
    font-size: 14px;
}
#modal-inquiry-categories-back img{
    width: 20px;
    filter: invert(37%) sepia(94%) saturate(4126%) hue-rotate(210deg) brightness(101%) contrast(91%);
}
#modal-inquiry-categories-back.show{
    display: block;
}
#modal-inquiry-categories ul{
    display: none;
}
#modal-inquiry-categories ul.show{
    display: block;
}

#modal-inquiry-categories li{
    position: relative;
    font-size: 14px;
    padding: 12px;
    cursor: pointer;
}
#modal-inquiry-categories li:not(:last-child){
    border-bottom: 1px solid #ccc;
}
#modal-inquiry-categories-back:hover,
#modal-inquiry-categories li:hover{
    background: #f2f2f2;
}
#modal-inquiry-categories li:hover{
    color: #000;
}
#modal-inquiry-categories li img{
    margin-left: 10px;
    opacity: .7;
}
#modal-inquiry-categories li:hover img{
    opacity: 1;
}
#modal-inquiry-categories li div{
    display: inline-block;
    max-width: calc(100% - 50px);
}
#modal-inquiry-categories li.hc div::after{
    content: '';
    padding: 12px;
    background: url('/assets/media/icons/expand_more_FILL0_wght400_GRAD0_opsz24.svg') no-repeat 0;
    margin: 0 3px;
    opacity: .25;
}
#modal-inquiry-categories li:hover div::after{
    opacity: 1;
}
#modal-inquiry-categories li span{
    display: none;
    position: absolute;
    top: 0;
    left: 0px;
    padding: 14px;
    height: 100%;
    font-size: 12px;
    border-right: 1px solid #ddd;
    color: rgb(33,113,243);
}
#modal-inquiry-categories li.hc span{
    display: block;
}
#modal-inquiry-categories li span:hover{
    color: #fff;
    background: rgb(33,113,243);
}

/* PROFILE */
.list-group-item.active{
    color: unset;
    background-color: rgba(33,113,243,.07);
    border-color: rgba(0,0,0,.125);
}
.image-preview-input{
    width: 0px;
    height: 0px;
}
.zig-zag{
    position: relative;
    height: 18px;
    margin: -44px 0 22px;
}
.zig-zag:before, .zig-zag:after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
}
.zig-zag:before{
    height: 40px;
    top: 110%;
    background: linear-gradient(-135deg, #999 8px, transparent 0) 0 8px, linear-gradient(135deg, #999 8px, transparent 0) 0 8px;
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 16px 16px;
}
.zig-zag:after{
    height: 16px;
    top: 100%;
    background: linear-gradient(-135deg, #fff 8px, transparent 0) 0 8px, linear-gradient(135deg, #fff 8px, transparent 0) 0 8px;
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 16px 16px;
}

.collapse-btn{
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 5px;
    display: inline-block;
}
.collapse-btn.collapsed{
}
.collapse-btn img{
    transform: rotate(180deg);
}
.collapse-btn.collapsed img{
    transform: rotate(0deg);
}
.collapse-btn:before,
.collapse-btn:after{
    content: '..........';
    color: #666;
    letter-spacing: 3px;
    font-size: 14px;
    font-weight: 100;
}
.collapse-btn:hover{
    background-color: #eee;
}

/* AXIOS LOADING  */
.axios-loading{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0,0,0, .35);
    z-index: 9999;
}
.axios-loading .axios-loading-wrapper{
    position: relative;
    width: 50%;
    min-width: 350px;
    max-width: 500px;
    margin: 20vh auto 0;
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 0px 10px 10px -5px rgb(0,0,0,.25);
}
.axios-loading .loader-wrapper{
    margin: 0 20px;
    display: inline-block;
}
.axios-loading-message{
    display: inline-block;
    font-size: 18px;
}
.axios-loading-wrapper .loader{
    width: 36px;
    height: 36px;
    border-width: 5px;
}
/* \AXIOS LOADING  */

.supplier-img{
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 2px;
    border: 1px solid #ccc;
}

/* IHP */
.image-hover-preview{
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border: 1px dashed #aaa;
    border-radius: 5px;
    box-shadow: 0px 8px 12px -10px;
    overflow: hidden;
    z-index: 9999;
}
.image-hover-preview img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* \IHP */