/* @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,800;1,300;1,400&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;800:900;800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
  --brand-orange: #FF7A00;
  --brand-orange2: #F2994A;
  --brand-blue: #457B9D;
  --brand-greenish: #A8DADC;
  --brand-gray: #D4D4D4;
  --brand-gray-border: 2px solid #D4D4D4;
  --brand-darkblue: #275877;
}

/* ------------------------------------------------------------------
[Table of contents]

1.  Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Hero Section
5.  Service Section
6.  Categories Section
7.  Featured Section
8.  Latest Product Section
9.  Contact
10.  Footer Style
------------------------------------------------------------------- */
/* ---------------------------------------- */
/* Template default CSS
/*---------------------------------------- */
html,
body {
  /* height: 100%; */
  /*font-family: "Cairo", sans-serif;*/
  font-family: "Raleway", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  /* display: grid;  */
  /*Transforme la balise body en contenur grid*/
  /* grid-template-rows: auto 1fr auto;  */
  /*d fini la hauteur que les lignes
de la grille doivent occuper. Auto correspond   la hauteur par d faut de
la ligne (en fonction de ce qu'il y a dedans donc). Fr (fraction) permet
d'occuper l'espace restant*/

  /* height: 100vh; */
  /*vh (pour viewport height) permet de s'assurer que le
body fera bien toute la hauteur de la surface d'affichage du navigateur*/
}

body {
  padding-top: 80px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #457B9D;
  font-weight: 800;
  font-family: "Raleway", sans-serif;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 16px;
  font-family: "Raleway", sans-serif;
  color: #6f6f6f;
  font-weight: 400;
  line-height: 18px;
  margin: 0 0 15px 0;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

/* .btn{
    border-radius: 0;
} */

/* ---------------------
  Helper CSS
----------------------- */
.section-title {
  margin-bottom: 10px;
  text-align: center;
}

.section-title h2 {
  color: #1c1c1c;
  font-weight: 700;
  position: relative;
}

.section-title h2:after {
  position: absolute;
  left: 0;
  bottom: -15px;
  right: 0;
  height: 4px;
  width: 80px;
  background: #ffc107;
  content: "";
  margin: 0 auto;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

/* buttons */
.primary-btn {
  display: inline-block;
  font-size: 14px;
  padding: 10px 28px 10px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  background: #ffc107;
  letter-spacing: 2px;
}

.site-btn {
  font-size: 14px;
  color: #ffffff;
  color: var(--brand-orange);
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  padding: 13px 15px 12px;
  /* background: #87CEEB //#ffc107; */
  background-color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;

}

/* Preloder */
#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  display:none;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }

  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }

  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

/* ---------------------
  Header
----------------------- */
.header__top {
  border-bottom: 1px solid #f5f5f5;
}

.header__top__left {
  padding: 10px 0 13px;
}

.header__top__left ul li {
  font-size: 14px;
  color: #1c1c1c;
  display: inline-block;
  margin-right: 45px;
  position: relative;
}

.header__top__left ul li:after {
  position: absolute;
  right: -25px;
  top: 1px;
  height: 20px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

.header__top__left ul li:last-child {
  margin-right: 0;
}

.header__top__left ul li:last-child:after {
  display: none;
}

.header__top__left ul li i {
  color: #252525;
  margin-right: 5px;
}

.header__top__right {
  text-align: right;
  padding: 10px 0 13px;
}

.header__top__right__social {
  position: relative;
  display: inline-block;
  margin-right: 35px;
}

.header__top__right__social:after {
  position: absolute;
  right: -20px;
  top: 1px;
  height: 20px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

.header__top__right__social a {
  font-size: 14px;
  display: inline-block;
  color: #1c1c1c;
  margin-right: 20px;
}

.header__top__right__social a:last-child {
  margin-right: 0;
}

.header__top__right__language {
  position: relative;
  display: inline-block;
  margin-right: 40px;
  cursor: pointer;
}

.header__top__right__language:hover ul {
  top: 23px;
  opacity: 1;
  visibility: visible;
}

.header__top__right__language:after {
  position: absolute;
  right: -21px;
  top: 1px;
  height: 20px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

.header__top__right__language img {
  margin-right: 6px;
}

.header__top__right__language div {
  font-size: 14px;
  color: #1c1c1c;
  display: inline-block;
  margin-right: 4px;
}

.header__top__right__language span {
  font-size: 14px;
  color: #1c1c1c;
  position: relative;
  top: 2px;
}

.header__top__right__language ul {
  background: #222222;
  width: 100px;
  text-align: left;
  padding: 5px 0;
  position: absolute;
  left: 0;
  top: 43px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.header__top__right__language ul li {
  list-style: none;
}

.header__top__right__language ul li a {
  font-size: 14px;
  color: #ffffff;
  padding: 5px 10px;
}

.header__top__right__auth {
  display: inline-block;
}

.header__top__right__auth a {
  display: block;
  font-size: 14px;
  color: #1c1c1c;
}

.header__top__right__auth a i {
  margin-right: 6px;
}

.brand-logo {
  max-width: 44px;
  height: auto;
}

/* @media (min-width: 576px) { */
/* .brand-logo{
        max-height: 40px;
        width:auto;
    } */
/* } */
/* @media (min-width: 992px){
    .brand-logo{
        max-height: 46px;
        width:auto;
    }
} */


.header__logo {
  padding: 15px 0;
  /* background: #457B9D; */
}

.header__logo a {
  display: inline-block;
}

.header__menu {
  font-family: 'Raleway', Arial, sans-serif;
  padding: 20px 0;
  padding-top: 30px;
}

.header__menu ul li {
  list-style: none;
  display: inline-block;
  margin-right: 50px;
  position: relative;
}

.header__menu ul li .header__menu__dropdown {
  position: absolute;
  left: 0;
  top: 50px;
  background: #222222;
  width: 180px;
  z-index: 9;
  padding: 5px 0;
  -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;
  visibility: hidden;
}

.header__menu ul li .header__menu__dropdown li {
  margin-right: 0;
  display: block;
}

.header__menu ul li .header__menu__dropdown li:hover>a {
  color: #ffc107;
}

.header__menu ul li .header__menu__dropdown li a {
  text-transform: capitalize;
  color: #ffffff;
  font-weight: 400;
  padding: 5px 15px;
}

.header__menu ul li.active a,
.header__menu ul li.active a.nav-link,
.header__menu ul li.active a.nav-link:hover,
.header__menu ul li.active a.nav-link:visited {
  color: #F2994A
    /*#ffc107*/
  ;
  /* #ffc107*/
  /*background: white !important; */
}

.header__menu ul li.active a.dropdown-item,
.header__menu ul li.active a.dropdown-item:visited,
.header__menu ul li a.dropdown-item,
.header__menu ul li a.dropdown-item:visited {
  color: #2F353A;
  /* #ffc107*/
  /*background: white !important;*/
  font-size: 13px;
  line-height: 30px;
  margin-top: 0px;
  padding: 5px;
  text-transform: upercase;
  letter-spacing: inherit;
  font-weight: bold;
  letter-spacing: 1px;
}

.header__menu ul li.active a.dropdown-item:hover,
.header__menu ul li a.dropdown-item:hover {
  color: #F2994A
    /*#FFC107*/
  ;
  /* #ffc107*/
  /*background: white !important;*/
  font-size: 13px;
  padding-left: 10px !important;
  margin-top: 0px;
  padding: 5px;
  text-transform: uppercase;
  letter-spacing: inherit;
  font-weight: bold;
  letter-spacing: 1px;
}

.header__menu ul li.active a:hover,
.header__menu ul li.active a.nav-link:hover {
  color: #F2994A
    /*#ffc107*/
  ;
  /* #ffc107*/
  /*background: white !important;   */
  font-weight: bold;
}

.dropdown .show {
  border: 1px solid #EAEAED;
}

.header__menu ul li:hover .header__menu__dropdown {
  top: 30px;
  opacity: 1;
  visibility: visible;
}

.header__menu ul li:hover>a {
  text-decoration: none;
  color: #4C4C4C;
  /*border-bottom: 1px solid #F2994A /*#FFC107*/
  /*#808080*/
  ;
  */
}

.header__menu ul li.active:hover>a {
  /*border-bottom: 1px solid #F2994A /*#FFC107*/
  ;
  */
}

.header__menu ul li:last-child {
  margin-right: 0;
}

.header__menu ul li.dropdown a {
  padding-left: 10px;
  padding-right: 10px;
}

.header__menu ul li a {
  font-size: 12px;
  /*calc(6px + .9vw)*/
  color:
    /*#6E7982*/
    #8A96A0
    /*#808080*/
    /*#EAEAED*/
    /*#686262*/
  ;
  /*#252525*/
  /*background: white;*/
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 1px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  padding: 0px 0px;
  display: block;
  margin-top: 5px;
  border-bottom: 1px solid transparent;

}

.navbar-nav .nav-link:focus,
.navbar-nav .nav-link {
  color: white;
}

.navbar-nav .nav-link:hover {
  color: white;

}

@media screen and (min-width: 320px) {
  .header__menu ul li a {
    font-size: calc(12px + 6 * ((100vw - 320px) / 680));
  }

  .app-header {
    height: 70px;
  }
}

@media screen and (min-width: 1200px) {
  .header__menu ul li a {
    font-size: 18px;
  }

  .app-header {
    height: 60px;
  }
}

.header__cart {
  text-align: right;
  padding: 24px 0;
}

.header__cart ul {
  display: inline-block;
  margin-right: 25px;
}

.header__cart ul li {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.header__cart ul li:last-child {
  margin-right: 0;
}

.header__cart ul li a {
  position: relative;
}

.header__cart ul li a i {
  font-size: 18px;
  color: #1c1c1c;
}

.header__cart ul li a span {
  height: 13px;
  width: 13px;
  background: #ffc107;
  font-size: 10px;
  color: #ffffff;
  line-height: 13px;
  text-align: center;
  font-weight: 700;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  right: -12px;
}

.header__cart .header__cart__price {
  font-size: 14px;
  color: #6f6f6f;
  display: inline-block;
}

.header__cart .header__cart__price span {
  color: #252525;
  font-weight: 700;
}

.humberger__menu__wrapper {
  display: none;
}

.humberger__open {
  display: none;
}


/* ---------------------
  Hero
----------------------- */
.hero {
  padding-bottom: 50px;
}

.hero.hero-normal {
  padding-bottom: 0px;
}

.hero.hero-normal .hero__categories {
  position: relative;
}

.hero.hero-normal .hero__categories {
  /* display: none; */
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  background: #ffffff;
}

@media(max-width:990px) {
  .hero.hero-normal .hero__categories {
    top: 28px;
    width: calc(100% - 0px);
    /*calc(100% - 30px)*/
    margin-left: 0px;
    /*15px*/
  }
}


.hero.hero-normal .hero__search {
  margin-bottom: 0;
}

.hero__categories__all {
  /*background: #262A2E #ffc107*/
  ;
  background: #D1DCE5
    /*#B6C6D4 #E5ECF2*/
    /*#F0F3F5*/
  ;
  /*background: url('../img/backgshop3.png') ;*/
  position: relative;
  /* padding: 16px 25px 10px 40px;*/
  cursor: pointer;
  /* border-bottom: 1px solid #E6E8EA;*/
  /*font-weight: 600;*/
  color: #2F353A;

}

.hero__categories__all:HOVER {
  color: #2F353A;
  background: #BCCBD8
    /*#A7B3BD*/
  ;
}

.hero__categories__all i {
  font-size: 0.9rem;
  color: black;
  margin-right: 5px;
}

.hero__categories__all span {
  font-size: 0.9rem;
  /*font-family: 'Open Sans', sans-serif;*/
  letter-spacing: -1px;
  font-weight: 500;
  letter-spacing: 0.01rem !important;
}


.hero__categories__all:after {
  position: absolute;
  right: 18px;
  top: 25px;
  content: "3";
  font-family: "ElegantIcons";
  font-size: 22px;
  color: black;

}

.hero__categories ul {
  border: 1px solid #ebebeb;
  padding-left: 0px;
  padding-top: 2px;
  padding-bottom: 2px;
  min-height: 100px;
  max-height: 300px;
  overflow: hidden;
  /*background: #F8F9FA;*/
  background: #E5ECF2
    /*#B6C6D4*/
  ;
  font-weight: 600;
}

.hero__categories ul li {
  list-style: none;
}

.hero__categories ul li a {
  font-size: 0.875rem;
  color: #1c1c1c;
  line-height: 25px;
  display: block;
  padding-left: 20px;
}

.hero__categories ul li:hover {
  font-weight: 600;

  background: white;
}

.hero__categories ul li a:hover {
  color: #007BFF
    /*#F2994A*/
    /*#FFC107*/
     !important;
}

.hero__search {
  /* overflow: hidden; */
  margin-bottom: 30px;
}

.hero__search__form {
  /*min-width: 540px;*/
  /* height: 50px; */
  border: 0px solid #ebebeb;
  position: relative;
  /*margin-left: 40px;*/
}

.hero__search__form form .hero__search__categories {
  width: 30%;
  float: left;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 700;
  padding-left: 18px;
  padding-top: 11px;
  position: relative;
}

.hero__search__form form .hero__search__categories:after {
  position: absolute;
  right: 0;
  top: 14px;
  height: 20px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

.hero__search__form form .hero__search__categories span {
  position: absolute;
  right: 14px;
  top: 14px;
}

.hero__search__form form input,
.hero__search__form form select {
  border: none;
  height: 48px;
  font-size: 16px;
  color: #b2b2b2;
  padding-left: 20px;
}

/*****************/












/************************/

.hero__search__form form input {
  /*width: 200px;*/
  /*70%*/
}

.hero__search__form form .nice-select {
  border: none;
  height: 45px;
  line-height: 45px;
}

.hero__search__form form input::placeholder {
  color: #b2b2b2;
}

.hero__search__form form button {
  position: absolute;
  right: 0;
  top: -1px;
  height: 50px;
}

.hero__search__phone {
  float: right;
}

.hero__search__phone__icon {
  font-size: 18px;
  color: #ffc107;
  height: 50px;
  width: 50px;
  background: #f5f5f5;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  float: left;
  margin-right: 20px;
}

.hero__search__phone__text {
  overflow: hidden;
}

.hero__search__phone__text h5 {
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 5px;
}

.hero__search__phone__text span {
  font-size: 14px;
  color: #6f6f6f;
}

.hero__item {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  padding-left: 75px;
}

.hero__text span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ffc107;
}

.hero__text h2 {
  font-size: 46px;
  color: #252525;
  line-height: 52px;
  font-weight: 700;
  margin: 10px 0;
}

.hero__text p {
  margin-bottom: 35px;
}

/* ---------------------
  Categories
----------------------- */
.categories__item {
  height: 270px;
  position: relative;
}

.categories__item h5 {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 20px;
  bottom: 20px;
  text-align: center;
}

.categories__item h5 a {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 0 10px;
  background: #ffffff;
  display: block;
}

.categories__slider .col-lg-3 {
  max-width: 100%;
}


.categories__slider.owl-carousel .owl-nav button {
  font-size: 50pt;
  color: #87CEEB;
  height: 70px;
  width: 50px;
  line-height: 70px;
  text-align: center;
  border: 0px solid #ebebeb;
  position: absolute;
  /* left: -25px; */
  top: 50%;
  -webkit-transform: translateY(-35px);
  background: transparent;
  font-weight: bold;
}

.categories__slider.owl-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.2)
}

.categories__slider.owl-carousel .owl-nav button.owl-next {
  left: auto;
  right: 0px;
}

/* ---------------------
  Featured
----------------------- */
.featured {
  padding-top: 80px;
  padding-bottom: 40px;
}

.featured__controls {
  text-align: center;
  margin-bottom: 50px;
}

.featured__controls ul li {
  list-style: none;
  font-size: 18px;
  color: #1c1c1c;
  display: inline-block;
  margin-right: 25px;
  position: relative;
  cursor: pointer;
}

.featured__controls ul li.active:after {
  opacity: 1;
}

.featured__controls ul li:after {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #ffc107;
  content: "";
  opacity: 0;
}

.featured__controls ul li:last-child {
  margin-right: 0;
}

.featured__item {
  margin-bottom: 50px;
}

.featured__item:hover .featured__item__pic .featured__item__pic__hover {
  bottom: 20px;
}

.featured__item__pic {
  height: 270px;
  position: relative;
  overflow: hidden;
  background-position: center center;
}

.featured__item__pic__hover {
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  text-align: center;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.featured__item__pic__hover li {
  list-style: none;
  display: inline-block;
  margin-right: 6px;
}

.featured__item__pic__hover li:last-child {
  margin-right: 0;
}

.featured__item__pic__hover li:hover a {
  background: #ffc107;
  border-color: #ffc107;
}

.featured__item__pic__hover li:hover a i {
  color: #ffffff;
  transform: rotate(360deg);
}

.featured__item__pic__hover li a {
  font-size: 16px;
  color: #1c1c1c;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  background: #ffffff;
  display: block;
  border-radius: 50%;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.featured__item__pic__hover li a i {
  position: relative;
  transform: rotate(0);
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.featured__item__text {
  text-align: center;
  padding-top: 15px;
}

.featured__item__text h6 {
  margin-bottom: 10px;
}

.featured__item__text h6 a {
  color: #252525;
}

.featured__item__text h5 {
  color: #252525;
  font-weight: 700;
}

/* ---------------------
  Latest Product
----------------------- */
.latest-product {
  padding-top: 80px;
  padding-bottom: 0;
}

.latest-product__text h4 {
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 45px;
}

.latest-product__slider.owl-carousel .owl-nav {
  position: absolute;
  right: 20px;
  top: -75px;
}

.latest-product__slider.owl-carousel .owl-nav button {
  height: 30px;
  width: 30px;
  background: #F3F6FA;
  border: 1px solid #e6e6e6;
  font-size: 14px;
  color: #636363;
  margin-right: 10px;
  line-height: 30px;
  text-align: center;
}

.latest-product__slider.owl-carousel .owl-nav button span {
  font-weight: 700;
}

.latest-product__slider.owl-carousel .owl-nav button:last-child {
  margin-right: 0;
}

.latest-product__item {
  margin-bottom: 20px;
  overflow: hidden;
  display: block;
}

.latest-product__item__pic {
  float: left;
  margin-right: 26px;
}

.latest-product__item__pic img {
  height: 110px;
  width: 110px;
}

.latest-product__item__text {
  overflow: hidden;
  padding-top: 10px;
}

.latest-product__item__text h6 {
  color: #252525;
  margin-bottom: 8px;
}

.latest-product__item__text span {
  font-size: 18px;
  display: block;
  color: #252525;
  font-weight: 700;
}

/* ---------------------
  Form BLog
----------------------- */
.from-blog {
  padding-top: 50px;
  padding-bottom: 50px;
}

.from-blog .blog__item {
  margin-bottom: 30px;
}

.from-blog__title {
  margin-bottom: 70px;
}

/* ---------------------
  Breadcrumb
----------------------- */
.breadcrumb-section {
  display: flex;
  align-items: center;
  padding: 45px 0 40px;
}

.breadcrumb__text h2 {
  font-size: 46px;
  color: #ffffff;
  font-weight: 700;
}

.breadcrumb__option a {
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  margin-right: 20px;
  position: relative;
}

.breadcrumb__option a:after {
  position: absolute;
  right: -12px;
  top: 13px;
  height: 1px;
  width: 10px;
  background: #ffffff;
  content: "";
}

.breadcrumb__option span {
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
}

/* ---------------------
  Sidebar
----------------------- */
@media(max-width:992px) {

  /**/
  .sidebar.filters {
    position: absolute;
    left: -100%;
    transition: left 0.3s;
    background: white;
    width: 100%;
    padding: 15px 30px;
    z-index: 1;
    top: 50px;
  }

  .sidebar.filters.active {
    left: 0;
    top: 50px;
  }

  /* .filter_pos_cust {position: absolute;top: 130px;right: 10px;z-index: 1000000;}*/
}

.sidebar__item {
  margin-top: 0px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  /*border-bottom:1px solid #ededed;*/

  padding-left: 5px;
  font-size: 1em;
  background: #D1DCE5;
}

.sidebar__item.sidebar__item__color--option {
  overflow: hidden;
}

.sidebar__item h4 {

  margin-bottom: 5px;
  font-size: 0.875rem;
  /*background: #505061;*/
  /*#87CEEB*/
  padding: 5px;
  width: 100%;
  margin: 0px;
  margin-left: -5px;
  text-transform: uppercase;
  color: #457B9D;
  /*#1c1c1c*/
  font-weight: 600;
  font-family: arial;
}

.sidebar__item ul li {
  list-style: none;
  font-size: 0.875rem;
}

.sidebar__item ul li a {
  font-size: 16px;
  color: #1c1c1c;
  line-height: 39px;
  display: block;
}

.sidebar__item .latest-product__text {
  position: relative;
}

.sidebar__item .latest-product__text h4 {
  margin-bottom: 45px;
}

.sidebar__item .latest-product__text .owl-carousel .owl-nav {
  right: 0;
}

.price-range-wrap .range-slider {
  margin-top: 20px;
}

.price-range-wrap .range-slider .price-input {
  position: relative;
}

.price-range-wrap .range-slider .price-input:after {
  position: absolute;
  left: 80px;
  top: 13px;
  height: 1px;
  width: 20px;
  background: #dd2222;
  content: "";
}

.price-range-wrap .range-slider .price-input input {
  font-size: 16px;
  color: #dd2222;
  font-weight: 700;
  max-width: 49%;
  border: none;
  display: inline-block;
}

.price-range-wrap .price-range {
  border-radius: 0;
}

.price-range-wrap .price-range.ui-widget-content {
  border: none;
  background: #ebebeb;
  height: 5px;
}

.price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
  height: 13px;
  width: 13px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  cursor: pointer;
}

.price-range-wrap .price-range .ui-slider-range {
  background: #dd2222;
  border-radius: 0;
}

.price-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
  background: #dd2222;
}

.sidebar__item__color {
  float: left;
  width: 40%;
}

.sidebar__item__color.sidebar__item__color--white label:after {
  border: 2px solid #333333;
  background: transparent;
}

.sidebar__item__color.sidebar__item__color--gray label:after {
  background: #E9A625;
}

.sidebar__item__color.sidebar__item__color--red label:after {
  background: #D62D2D;
}

.sidebar__item__color.sidebar__item__color--black label:after {
  background: #252525;
}

.sidebar__item__color.sidebar__item__color--blue label:after {
  background: #249BC8;
}

.sidebar__item__color.sidebar__item__color--green label:after {
  background: #3CC032;
}

.sidebar__item__color label {
  font-size: 16px;
  color: #333333;
  position: relative;
  padding-left: 32px;
  cursor: pointer;
}

.sidebar__item__color label input {
  position: absolute;
  visibility: hidden;
}

.sidebar__item__color label:after {
  position: absolute;
  left: 0;
  top: 5px;
  height: 14px;
  width: 14px;
  background: #222;
  content: "";
  border-radius: 50%;
}

.sidebar__item__size {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 10px;
}

.sidebar__item__size label {
  font-size: 12px;
  color: #6f6f6f;
  display: inline-block;
  padding: 8px 25px 6px;
  background: #f5f5f5;
  cursor: pointer;
  margin-bottom: 0;
}

.sidebar__item__size label input {
  position: absolute;
  visibility: hidden;
}

/* ---------------------
  Shop Grid
----------------------- */
.product {
  padding-top: 80px;
  padding-bottom: 0px;
  /*80px*/
}

.product__discount {
  padding-bottom: 50px;
}

.product__discount__title {
  text-align: left;
  margin-bottom: 65px;
}

.product__discount__title h2 {
  display: inline-block;
}

.product__discount__title h2:after {
  margin: 0;
  width: 100%;
}

.product__discount__item:hover .product__discount__item__pic .product__item__pic__hover {
  bottom: 20px;
}

.product__discount__item__pic {
  height: 270px;
  position: relative;
  overflow: hidden;
}

.product__discount__item__pic .product__discount__percent {
  height: 45px;
  width: 45px;
  background: #dd2222;
  border-radius: 50%;
  font-size: 14px;
  color: #ffffff;
  line-height: 45px;
  text-align: center;
  position: absolute;
  left: 15px;
  top: 15px;
}

.product__item__pic__hover {
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  text-align: center;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.product__item__pic__hover li {
  list-style: none;
  display: inline-block;
  margin-right: 6px;
}

.product__item__pic__hover li:last-child {
  margin-right: 0;
}

.product__item__pic__hover li:hover a {
  background: #ffc107;
  border-color: #ffc107;
}

.product__item__pic__hover li:hover a i {
  color: #ffffff;
  transform: rotate(360deg);
}

.product__item__pic__hover li a {
  font-size: 16px;
  color: #1c1c1c;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  background: #ffffff;
  display: block;
  border-radius: 50%;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.product__item__pic__hover li a i {
  position: relative;
  transform: rotate(0);
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.product__discount__item__text {
  text-align: center;
  padding-top: 20px;
}

.product__discount__item__text span {
  font-size: 14px;
  color: #b2b2b2;
  display: block;
  margin-bottom: 4px;
}

.product__discount__item__text h5 {
  margin-bottom: 6px;
}

.product__discount__item__text h5 a {
  color: #1c1c1c;
}

.product__discount__item__text .product__item__price {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
}

.product__discount__item__text .product__item__price span {
  display: inline-block;
  font-weight: 400;
  text-decoration: line-through;
  margin-left: 10px;
}

.product__discount__slider .col-lg-4 {
  max-width: 100%;
}

.product__discount__slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.product__discount__slider.owl-carousel .owl-dots button {
  height: 12px;
  width: 12px;
  border: 1px solid #b2b2b2;
  border-radius: 50%;
  margin-right: 12px;
}

.product__discount__slider.owl-carousel .owl-dots button.active {
  background: #707070;
  border-color: #6f6f6f;
}

.product__discount__slider.owl-carousel .owl-dots button:last-child {
  margin-right: 0;
}

.item-box {
  padding: 1.5em;
  border: 2px solid #E5ECF2;
  transition: border-color 0.3s;
  margin-bottom: 10px;
}

.ratings .checked {
  color: orange;
}

.card-box-cust {
  border: 1px solid white
    /*rgba(0,0,0,.125)*/
  ;
}

.card-box-cust:hover {
  border: 1px solid #87CEEB;
}

.card-box-cust2 {
  border: 2px solid #D4D4D4
    /*#DFDFDF*/
    /*#EAEAED*/
    /*#EBEBEB*/
  ;
  position: relative;
  height: 465px;
  overflow: hidden;
  border-radius: 5px;
}

.card-box-cust2:hover {
  border: 2px solid var(--brand-blue)
    /*#87CEEB*/
    /*#D0CECE*/
    /*rgba(0,0,0,.125)*/
  ;
}

.card-box-cust2:hover h4 {
  color: blue;
}


.filter__item {
  /*padding-top: 45px;*/
  /*border-top: 1px solid #ebebeb;*/
  padding-bottom: 0px;
}

.filter__sort {
  margin-bottom: 15px;
}

.filter__sort span {
  font-size: 1.1rem;
  color: #6f6f6f;
  display: inline-block;
}

.filter__sort .nice-select {
  background-color: #fff;
  border-radius: 0;
  border: none;
  display: inline-block;
  float: none;
  height: 0;
  line-height: 0;
  padding-left: 18px;
  padding-right: 30px;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 700;
  cursor: pointer;
}

.filter__sort .nice-select span {
  color: #1c1c1c;
}

.filter__sort .nice-select:after {
  border-bottom: 1.5px solid #1c1c1c;
  border-right: 1.5px solid #1c1c1c;
  height: 8px;
  margin-top: 0;
  right: 16px;
  width: 8px;
  top: -5px;
}

.filter__sort .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

.filter__sort .nice-select .list {
  border-radius: 0;
  margin-top: 0;
  top: 15px;
}

.filter__sort .nice-select .option {
  line-height: 30px;
  min-height: 30px;
}

.filter__found {
  text-align: center;
  margin-bottom: 15px;
}

.filter__found h6 {
  font-size: 16px;
  color: #b2b2b2;
}

.filter__found h6 span {
  color: #1c1c1c;
  font-weight: 700;
  margin-right: 5px;
}

.filter__option {
  text-align: right;
  margin-bottom: 15px;
}

.filter__option span {
  font-size: 24px;
  color: #b2b2b2;
  margin-right: 10px;
  cursor: pointer;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.filter__option span:last-child {
  margin: 0;
}

.filter__option span:hover {
  color: #ffc107;
}

.product__item {
  margin-bottom: 50px;
}

.product__item:hover .product__item__pic .product__item__pic__hover {
  bottom: 20px;
}

.product__item__pic {
  height: 270px;
  position: relative;
  overflow: hidden;
}

.product__item__pic__hover {
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  text-align: center;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.product__item__pic__hover li {
  list-style: none;
  display: inline-block;
  margin-right: 6px;
}

.product__item__pic__hover li:last-child {
  margin-right: 0;
}

.product__item__pic__hover li:hover a {
  background: #ffc107;
  border-color: #ffc107;
}

.product__item__pic__hover li:hover a i {
  color: #ffffff;
  transform: rotate(360deg);
}

.product__item__pic__hover li a {
  font-size: 16px;
  color: #1c1c1c;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  background: #ffffff;
  display: block;
  border-radius: 50%;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

.product__item__pic__hover li a i {
  position: relative;
  transform: rotate(0);
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.product__item__text {
  text-align: center;
  padding-top: 15px;
}

.product__item__text h6 {
  margin-bottom: 10px;
}

.product__item__text h6 a {
  color: #252525;
}

.product__item__text h5 {
  color: #252525;
  font-weight: 700;
}

.product__pagination,
.blog__pagination {
  padding-top: 10px;
  text-align: center;
}

.product__pagination a,
.blog__pagination a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #b2b2b2;
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  margin-right: 16px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  border-radius: 4px;
}


.product__pagination a,
.blog__pagination a {
  background: white;
}

.product__pagination a:hover,
.blog__pagination a:hover {
  background: #87CEEB
    /*#F2994A*/
    /*#ffc107*/
  ;
  border-color: #87CEEB
    /*#F2994A*/
    /*#ffc107*/
  ;
  color: #ffffff;
}

.product__pagination a.selected,
.blog__pagination a.selected {
  background: #87CEEB
    /*#F2994A*/
    /*#ffc107*/
  ;
  border-color: #87CEEB
    /*#F2994A*/
    /*#ffc107*/
  ;
  color: #ffffff;
}

.product__pagination a:last-child,
.blog__pagination a:last-child {
  margin-right: 0;
}

/* ---------------------
  Shop Details
----------------------- */
.product-details {
  padding-top: 80px;
}

.product__details__pic__item {
  margin-bottom: 20px;
}

.product__details__pic__item img {
  min-width: 100%;
}

.product__details__pic__slider img {
  cursor: pointer;
}

.product__details__pic__slider.owl-carousel .owl-item img {
  width: auto;
}

.product__details__text h3 {
  color: #252525;
  font-weight: 700;
  margin-bottom: 16px;
}

.product__details__text .product__details__rating {
  font-size: 14px;
  margin-bottom: 12px;
}

.product__details__text .product__details__rating i {
  margin-right: -2px;
  color: #EDBB0E;
}

.product__details__text .product__details__rating span {
  color: #dd2222;
  margin-left: 4px;
}

.product__details__text .product__details__price {
  font-size: 30px;
  color: #dd2222;
  font-weight: 600;
  margin-bottom: 15px;
}

.product__details__text p {
  margin-bottom: 45px;
}

.product__details__text .primary-btn {
  padding: 16px 28px 14px;
  margin-right: 6px;
  margin-bottom: 5px;
}

.product__details__text .heart-icon {
  display: inline-block;
  font-size: 16px;
  color: #6f6f6f;
  padding: 13px 16px 13px;
  background: #f5f5f5;
}

.product__details__text ul {
  border-top: 1px solid #ebebeb;
  padding-top: 40px;
  margin-top: 50px;
}

.product__details__text ul li {
  font-size: 16px;
  color: #1c1c1c;
  list-style: none;
  line-height: 36px;
}

.product__details__text ul li b {
  font-weight: 700;
  width: 170px;
  display: inline-block;
}

.product__details__text ul li span samp {
  color: #dd2222;
}

.product__details__text ul li .share {
  display: inline-block;
}

.product__details__text ul li .share a {
  display: inline-block;
  font-size: 15px;
  color: #1c1c1c;
  margin-right: 25px;
}

.product__details__text ul li .share a:last-child {
  margin-right: 0;
}

.product__details__quantity {
  display: inline-block;
  margin-right: 6px;
}

.pro-qty {
  width: 140px;
  height: 50px;
  display: inline-block;
  position: relative;
  text-align: center;
  background: #f5f5f5;
  margin-bottom: 5px;
}

.pro-qty input {
  height: 100%;
  width: 100%;
  font-size: 16px;
  color: #6f6f6f;
  width: 50px;
  border: none;
  background: #f5f5f5;
  text-align: center;
}

.pro-qty .qtybtn {
  width: 35px;
  font-size: 16px;
  color: #6f6f6f;
  cursor: pointer;
  display: inline-block;
}

.product__details__tab {
  padding-top: 85px;
}

.product__details__tab .nav-tabs {
  border-bottom: none;
  justify-content: center;
  position: relative;
}

.product__details__tab .nav-tabs:before {
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 370px;
  background: #ebebeb;
  content: "";
}

.product__details__tab .nav-tabs:after {
  position: absolute;
  right: 0;
  top: 12px;
  height: 1px;
  width: 370px;
  background: #ebebeb;
  content: "";
}

.product__details__tab .nav-tabs li {
  margin-bottom: 0;
  margin-right: 65px;
}

.product__details__tab .nav-tabs li:last-child {
  margin-right: 0;
}

.product__details__tab .nav-tabs li a {
  font-size: 16px;
  color: #999999;
  font-weight: 700;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  padding: 0;
}

.product__details__tab .product__details__tab__desc {
  padding-top: 44px;
}

.product__details__tab .product__details__tab__desc h6 {
  font-weight: 700;
  color: #333333;
  margin-bottom: 26px;
}

.product__details__tab .product__details__tab__desc p {
  color: #666666;
}

/* ---------------------
  Shop Details
----------------------- */
.related-product {
  padding-bottom: 30px;
}

.related__product__title {
  margin-bottom: 70px;
}

/* ---------------------
  Shop Cart
----------------------- */
.shoping-cart {
  padding-top: 80px;
  padding-bottom: 80px;
}

.shoping__cart__table {
  margin-bottom: 30px;
}

.shoping__cart__table table {
  width: 100%;
  text-align: center;
}

.shoping__cart__table table thead tr {
  border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table thead th {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  padding-bottom: 20px;
}

.shoping__cart__table table thead th.shoping__product {
  text-align: left;
}

.shoping__cart__table table tbody tr td {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
}

.shoping__cart__table table tbody tr td.shoping__cart__item {
  width: 630px;
  text-align: left;
}

.shoping__cart__table table tbody tr td.shoping__cart__item img {
  display: inline-block;
  margin-right: 25px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item h5 {
  color: #1c1c1c;
  display: inline-block;
}

.shoping__cart__table table tbody tr td.shoping__cart__price {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  width: 100px;
}

.shoping__cart__table table tbody tr td.shoping__cart__total {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  width: 110px;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close {
  text-align: right;
}

.shoping__cart__table table tbody tr td.shoping__cart__item__close span {
  font-size: 24px;
  color: #b2b2b2;
  cursor: pointer;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity {
  width: 225px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty {
  width: 120px;
  height: 40px;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input {
  color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input::placeholder {
  color: #1c1c1c;
}

.shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty .qtybtn {
  width: 15px;
}

.primary-btn.cart-btn {
  color: #6f6f6f;
  padding: 14px 30px 12px;
  background: #f5f5f5;
}

.primary-btn.cart-btn span {
  font-size: 14px;
}

.primary-btn.cart-btn.cart-btn-right {
  float: right;
}

.shoping__discount {
  margin-top: 45px;
}

.shoping__discount h5 {
  font-size: 20px;
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 25px;
}

.shoping__discount form input {
  width: 255px;
  height: 46px;
  border: 1px solid #cccccc;
  font-size: 16px;
  color: #b2b2b2;
  text-align: center;
  display: inline-block;
  margin-right: 15px;
}

.shoping__discount form input::placeholder {
  color: #b2b2b2;
}

.shoping__discount form button {
  padding: 15px 30px 11px;
  font-size: 12px;
  letter-spacing: 4px;
  background: #6f6f6f;
}

.shoping__checkout {
  background: #f5f5f5;
  padding: 30px;
  padding-top: 20px;
  margin-top: 50px;
}

.shoping__checkout h5 {
  color: #1c1c1c;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 28px;
}

.shoping__checkout ul {
  margin-bottom: 28px;
}

.shoping__checkout ul li {
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 700;
  list-style: none;
  overflow: hidden;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 13px;
  margin-bottom: 18px;
}

.shoping__checkout ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.shoping__checkout ul li span {
  font-size: 18px;
  color: #dd2222;
  float: right;
}

.shoping__checkout .primary-btn {
  display: block;
  text-align: center;
}

/* ---------------------
  Checkout
----------------------- */
.checkout {
  padding-top: 80px;
  padding-bottom: 60px;
}

.checkout h6 {
  color: #999999;
  text-align: center;
  background: #f5f5f5;
  border-top: 1px solid #6AB963;
  padding: 12px 0 12px;
  margin-bottom: 75px;
}

.checkout h6 span {
  font-size: 16px;
  color: #6AB963;
  margin-right: 5px;
}

.checkout h6 a {
  text-decoration: underline;
  color: #999999;
}

.checkout__form h4 {
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.checkout__form p {
  column-rule: #b2b2b2;
}

.checkout__input {
  margin-bottom: 24px;
}

.checkout__input p {
  color: #1c1c1c;
  margin-bottom: 20px;
}

.checkout__input p span {
  color: #dd2222;
}

.checkout__input input {
  width: 100%;
  height: 46px;
  border: 1px solid #ebebeb;
  padding-left: 20px;
  font-size: 16px;
  color: #b2b2b2;
  border-radius: 4px;
}

.checkout__input input.checkout__input__add {
  margin-bottom: 20px;
}

.checkout__input input::placeholder {
  color: #b2b2b2;
}

.checkout__input__checkbox {
  margin-bottom: 10px;
}

.checkout__input__checkbox label {
  position: relative;
  font-size: 16px;
  color: #1c1c1c;
  padding-left: 40px;
  cursor: pointer;
}

.checkout__input__checkbox label input {
  position: absolute;
  visibility: hidden;
}

.checkout__input__checkbox label input:checked~.checkmark {
  background: #ffc107;
  border-color: #ffc107;
}

.checkout__input__checkbox label input:checked~.checkmark:after {
  opacity: 1;
}

.checkout__input__checkbox label .checkmark {
  position: absolute;
  left: 0;
  top: 4px;
  height: 16px;
  width: 14px;
  border: 1px solid #a6a6a6;
  content: "";
  border-radius: 4px;
}

.checkout__input__checkbox label .checkmark:after {
  position: absolute;
  left: 1px;
  top: 1px;
  width: 10px;
  height: 8px;
  border: solid white;
  border-width: 3px 3px 0px 0px;
  -webkit-transform: rotate(127deg);
  -ms-transform: rotate(127deg);
  transform: rotate(127deg);
  content: "";
  opacity: 0;
}

.checkout__order {
  background: #f5f5f5;
  padding: 40px;
  padding-top: 30px;
}

.checkout__order h4 {
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.checkout__order .checkout__order__products {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 10px;
}

.checkout__order .checkout__order__products span {
  float: right;
}

.checkout__order ul {
  margin-bottom: 12px;
}

.checkout__order ul li {
  font-size: 16px;
  color: #6f6f6f;
  line-height: 40px;
  list-style: none;
}

.checkout__order ul li span {
  font-weight: 700;
  float: right;
}

.checkout__order .checkout__order__subtotal {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  padding-bottom: 15px;
  margin-bottom: 15px;
  padding-top: 15px;
}

.checkout__order .checkout__order__subtotal span {
  float: right;
}

.checkout__order .checkout__input__checkbox label {
  padding-left: 20px;
}

.checkout__order .checkout__order__total {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

.checkout__order .checkout__order__total span {
  float: right;
  color: #dd2222;
}

.checkout__order button {
  font-size: 18px;
  letter-spacing: 2px;
  width: 100%;
  margin-top: 10px;
}

/* ---------------------
  Blog
----------------------- */
.blog__item {
  margin-bottom: 60px;
}

.blog__item__pic img {
  min-width: 100%;
}

.blog__item__text {
  padding-top: 25px;
}

.blog__item__text ul {
  margin-bottom: 15px;
}

.blog__item__text ul li {
  font-size: 16px;
  color: #b2b2b2;
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.blog__item__text ul li:last-child {
  margin-right: 0;
}

.blog__item__text h5 {
  margin-bottom: 12px;
}

.blog__item__text h5 a {
  font-size: 20px;
  color: #1c1c1c;
  font-weight: 700;
}

.blog__item__text p {
  margin-bottom: 25px;
}

.blog__item__text .blog__btn {
  display: inline-block;
  font-size: 14px;
  color: #1c1c1c;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #b2b2b2;
  padding: 14px 20px 12px;
  border-radius: 25px;
}

.blog__item__text .blog__btn span {
  position: relative;
  top: 1px;
  margin-left: 5px;
}

.blog__pagination {
  padding-top: 5px;
  position: relative;
}

.blog__pagination:before {
  position: absolute;
  left: 0;
  top: -29px;
  height: 1px;
  width: 100%;
  background: #000000;
  opacity: 0.1;
  content: "";
}

/* ---------------------
  Blog Sidebar
----------------------- */
.blog__sidebar {
  padding-top: 50px;
}

.blog__sidebar__item {
  margin-bottom: 50px;
}

.blog__sidebar__item h4 {
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 25px;
}

.blog__sidebar__item ul li {
  list-style: none;
}

.blog__sidebar__item ul li a {
  font-size: 16px;
  color: #666666;
  line-height: 48px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.blog__sidebar__item ul li a:hover {
  color: #ffc107;
}

.blog__sidebar__search {
  margin-bottom: 50px;
}

.blog__sidebar__search form {
  position: relative;
}

.blog__sidebar__search form input {
  width: 100%;
  height: 46px;
  font-size: 16px;
  color: #6f6f6f;
  padding-left: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 20px;
}

.blog__sidebar__search form input::placeholder {
  color: #6f6f6f;
}

.blog__sidebar__search form button {
  font-size: 16px;
  color: #6f6f6f;
  background: transparent;
  border: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0px 18px;
}

.blog__sidebar__recent .blog__sidebar__recent__item {
  display: block;
}

.blog__sidebar__recent .blog__sidebar__recent__item:last-child {
  margin-bottom: 0;
}

.blog__sidebar__recent__item {
  overflow: hidden;
  margin-bottom: 20px;
}

.blog__sidebar__recent__item__pic {
  float: left;
  margin-right: 20px;
}

.blog__sidebar__recent__item__text {
  overflow: hidden;
}

.blog__sidebar__recent__item__text h6 {
  font-weight: 700;
  color: #333333;
  line-height: 20px;
  margin-bottom: 5px;
}

.blog__sidebar__recent__item__text span {
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;
}

.blog__sidebar__item__tags a {
  font-size: 16px;
  color: #6f6f6f;
  background: #f5f5f5;
  display: inline-block;
  padding: 7px 26px 5px;
  margin-right: 6px;
  margin-bottom: 10px;
}

/* ---------------------
  Blog Details Hero
----------------------- */
.blog-details-hero {
  height: 350px;
  display: flex;
  align-items: center;
}

.blog__details__hero__text {
  text-align: center;
}

.blog__details__hero__text h2 {
  font-size: 46px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog__details__hero__text ul li {
  font-size: 16px;
  color: #ffffff;
  list-style: none;
  display: inline-block;
  margin-right: 45px;
  position: relative;
}

.blog__details__hero__text ul li:after {
  position: absolute;
  right: -26px;
  top: 0;
  content: "|";
}

.blog__details__hero__text ul li:last-child {
  margin-right: 0;
}

.blog__details__hero__text ul li:last-child:after {
  display: none;
}

/* ---------------------
  Blog Details
----------------------- */
.related-blog {
  padding-top: 70px;
  padding-bottom: 10px;
}

.related-blog-title {
  margin-bottom: 70px;
}

.blog-details {
  padding-bottom: 75px;
  border-bottom: 1px solid #e1e1e1;
}

.blog__details__text {
  margin-bottom: 45px;
}

.blog__details__text img {
  margin-bottom: 30px;
}

.blog__details__text p {
  font-size: 18px;
  line-height: 30px;
}

.blog__details__text h3 {
  color: #333333;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}

.blog__details__author__pic {
  float: left;
  margin-right: 15px;
}

.blog__details__author__pic img {
  height: 92px;
  width: 92px;
  border-radius: 50%;
}

.blog__details__author__text {
  overflow: hidden;
  padding-top: 30px;
}

.blog__details__author__text h6 {
  color: #1c1c1c;
  font-weight: 700;
}

.blog__details__author__text span {
  font-size: 16px;
  color: #6f6f6f;
}

.blog__details__widget ul {
  margin-bottom: 5px;
}

.blog__details__widget ul li {
  font-size: 16px;
  color: #6f6f6f;
  list-style: none;
  line-height: 30px;
}

.blog__details__widget ul li span {
  color: #1c1c1c;
  font-weight: 700;
}

.blog__details__widget .blog__details__social a {
  display: inline-block;
  font-size: 20px;
  color: #6f6f6f;
  margin-right: 24px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

.blog__details__widget .blog__details__social a:hover {
  color: #ffc107;
}

.blog__details__widget .blog__details__social a:last-child {
  margin-right: 0;
}



/* ---------------------
  Footer
----------------------- */
.footer {
  background: #D1DCE5
    /*#2F353A*/
    /*#F3F6FA*/
  ;
  padding-top: 20px !important;
  padding-bottom: 0;
  font-size: 0.8rem !important;
}

.footer__about {
  margin-bottom: 30px;
}

.footer__about ul li {
  font-size: 16px;
  color: #1c1c1c;
  line-height: 36px;
  list-style: none;
}

.footer__about__logo {
  margin-bottom: 15px;
}

.footer__about__logo a {
  display: inline-block;
}

.footer__widget {
  margin-bottom: 30px;
  overflow: hidden;
}

.footer__widget h6 {
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer__widget ul {
  width: 50%;
  float: left;
}

.footer__widget ul li {
  list-style: none;
}

.footer__widget ul li a {
  color: #1c1c1c;
  font-size: 14px;
  line-height: 32px;
}

.footer__widget p {
  font-size: 14px;
  color: #1c1c1c;
  margin-bottom: 30px;
}

.footer__widget form {
  position: relative;
  margin-bottom: 30px;
}

.footer__widget form input {
  width: 100%;
  font-size: 16px;
  padding-left: 20px;
  color: #1c1c1c;
  height: 46px;
  border: 1px solid #ededed;
}

.footer__widget form input::placeholder {
  color: #1c1c1c;
}

.footer__widget form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 26px;
  height: 100%;
}

.footer__widget .footer__widget__social a {
  display: inline-block;
  height: 41px;
  width: 41px;
  font-size: 16px;
  color: #404040;
  border: 1px solid #ededed;
  border-radius: 50%;
  line-height: 38px;
  text-align: center;
  background: #ffffff;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  margin-right: 10px;
}

.footer__widget .footer__widget__social a:last-child {
  margin-right: 0;
}

.footer__widget .footer__widget__social a:hover {
  background: #ffc107;
  color: #ffffff;
  border-color: #ffffff;
}

.footer__copyright {
  border-top: 1px solid #ebebeb;
  padding: 15px 0;
  overflow: hidden;
  margin-top: 20px;
}

.footer__copyright__text {
  font-size: 14px;
  color: #1c1c1c;
  float: left;
  line-height: 25px;
}

.footer__copyright__payment {
  float: right;
}

/* ---------------------
  Contact
----------------------- */
.contact {
  padding-top: 80px;
  padding-bottom: 50px;
}

.contact__widget {
  margin-bottom: 30px;
}

.contact__widget span {
  font-size: 36px;
  color: #ffc107;
}

.contact__widget h4 {
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 18px;
}

.contact__widget p {
  color: #666666;
  margin-bottom: 0;
}

/* ---------------------
  Map
----------------------- */
.map {
  height: 500px;
  position: relative;
}

.map iframe {
  width: 100%;
}

.map .map-inside {
  position: absolute;
  left: 50%;
  top: 160px;
  -webkit-transform: translateX(-175px);
  -ms-transform: translateX(-175px);
  transform: translateX(-175px);
}

.map .map-inside i {
  font-size: 48px;
  color: #ffc107;
  position: absolute;
  bottom: -75px;
  left: 50%;
  -webkit-transform: translateX(-18px);
  -ms-transform: translateX(-18px);
  transform: translateX(-18px);
}

.map .map-inside .inside-widget {
  width: 350px;
  background: #ffffff;
  text-align: center;
  padding: 23px 0;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
  box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
}

.map .map-inside .inside-widget:after {
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-6px);
  -ms-transform: translateX(-6px);
  transform: translateX(-6px);
  border: 12px solid transparent;
  border-top: 30px solid #ffffff;
  content: "";
  z-index: -1;
}

.map .map-inside .inside-widget h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 4px;
}

.map .map-inside .inside-widget ul li {
  list-style: none;
  font-size: 16px;
  color: #666666;
  line-height: 26px;
}

/* ---------------------
  Contact Form
----------------------- */
.contact__form__title {
  margin-bottom: 50px;
  text-align: center;
}

.contact__form__title h2 {
  color: #1c1c1c;
  font-weight: 700;
}

.contact-form {
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-form form input {
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #6f6f6f;
  padding-left: 20px;
  margin-bottom: 30px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
}

.contact-form form input::placeholder {
  color: #6f6f6f;
}

.contact-form form textarea {
  width: 100%;
  height: 150px;
  font-size: 16px;
  color: #6f6f6f;
  padding-left: 20px;
  margin-bottom: 24px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding-top: 12px;
  resize: none;
}

.contact-form form textarea::placeholder {
  color: #6f6f6f;
}

.contact-form form button {
  font-size: 18px;
  letter-spacing: 2px;
}

/* --------------------------------- Responsive Media Quaries ----------------------------- */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1000px) {

  /*max-width: 1199px*/
  .header__menu ul li {
    margin-right: 45px;
  }

  .hero__search__form {}

  .hero__categories__all {
    padding: 10px 25px 10px 20px;
  }

  .hero__categories ul {
    padding-left: 20px;
  }

  .latest-product__slider.owl-carousel .owl-nav {
    right: 0;
  }

  .product__details__tab .nav-tabs:before {
    width: 265px;
  }

  .product__details__tab .nav-tabs:after {
    width: 265px;
  }

  .shoping__discount form input {
    width: 240px;
  }
}

/* Tablet Device = 768px */
@media only screen and (min-width: 760px) and (max-width: 1279px) {

  .hero__search__form {
    width: 600px !important;
  }

  #headersearchon {
    min-width: 130px !important;
    ;
    /* max-width: 130px !important; */
    margin-right: 0px !important;
  }

  #headerpostalcode {
    min-width: 110px !important;
    ;
    /* max-width: 110px !important; */
    margin-right: 0px !important;
  }

}

@media (max-width: 991px) {
  .header__menu {
    display: none !important;
  }

  @media only screen and (min-width: 760px) and (max-width: 991px) {
    .hero__categories {
      margin-bottom: 30px;
    }

    .categories__slider.owl-carousel .owl-nav button {
      left: -20px;
    }

    .categories__slider.owl-carousel .owl-nav button.owl-next {
      right: -20px;
    }

    .filter__sort .nice-select {
      padding-left: 5px;
      padding-right: 28px;
    }

    .product__details__quantity {
      margin-bottom: 10px;
    }

    .product__details__text .primary-btn {
      margin-bottom: 10px;
    }

    .product__details__tab .nav-tabs:before {
      width: 150px;
    }

    .product__details__tab .nav-tabs:after {
      width: 150px;
    }

    .blog__details__author {
      overflow: hidden;
      margin-bottom: 25px;
    }

    .humberger__open {
      display: block;
      font-size: 22px;
      color: #1c1c1c;
      height: 35px;
      width: 35px;
      line-height: 33px;
      text-align: center;
      border: 1px solid #1c1c1c;
      cursor: pointer;
      position: absolute;
      right: 15px;
      top: 22px;
    }

    .header .container {
      position: relative;
    }

    .humberger__menu__wrapper {
      width: 300px;
      background: #ffffff;
      position: fixed;
      left: -300px;
      top: 0;
      height: 100%;
      overflow-y: auto;
      z-index: 99;
      padding: 30px;
      padding-top: 50px;
      opacity: 0;
      display: block;
      -webkit-transition: all, 0.6s;
      -moz-transition: all, 0.6s;
      -ms-transition: all, 0.6s;
      -o-transition: all, 0.6s;
      transition: all, 0.6s;
    }

    .humberger__menu__wrapper.show__humberger__menu__wrapper {
      opacity: 1;
      left: 0;
    }

    .humberger__menu__logo {
      margin-bottom: 30px;
    }

    .humberger__menu__logo a {
      display: inline-block;
    }

    .humberger__menu__contact {
      padding: 10px 0 13px;
    }

    .humberger__menu__contact ul li {
      font-size: 14px;
      color: #1c1c1c;
      position: relative;
      line-height: 30px;
      list-style: none;
    }

    .humberger__menu__contact ul li i {
      color: #252525;
      margin-right: 5px;
    }

    .humberger__menu__cart ul {
      display: inline-block;
      margin-right: 25px;
    }

    .humberger__menu__cart ul li {
      list-style: none;
      display: inline-block;
      margin-right: 15px;
    }

    .humberger__menu__cart ul li:last-child {
      margin-right: 0;
    }

    .humberger__menu__cart ul li a {
      position: relative;
    }

    .humberger__menu__cart ul li a i {
      font-size: 18px;
      color: #1c1c1c;
    }

    .humberger__menu__cart ul li a span {
      height: 13px;
      width: 13px;
      background: #ffc107;
      font-size: 10px;
      color: #ffffff;
      line-height: 13px;
      text-align: center;
      font-weight: 700;
      display: inline-block;
      border-radius: 50%;
      position: absolute;
      top: 0;
      right: -12px;
    }

    .humberger__menu__cart .header__cart__price {
      font-size: 14px;
      color: #6f6f6f;
      display: inline-block;
    }

    .humberger__menu__cart .header__cart__price span {
      color: #252525;
      font-weight: 700;
    }

    .humberger__menu__cart {
      margin-bottom: 25px;
    }

    .humberger__menu__widget {
      margin-bottom: 20px;
    }

    .humberger__menu__widget .header__top__right__language {
      margin-right: 20px;
    }

    .humberger__menu__nav {
      display: none;
    }

    .humberger__menu__wrapper .header__top__right__social {
      display: block;
      margin-right: 0;
      margin-bottom: 20px;
    }

    .humberger__menu__wrapper .slicknav_btn {
      display: none;
    }

    .humberger__menu__wrapper .slicknav_nav .slicknav_item a {
      border-bottom: none !important;
    }

    .humberger__menu__wrapper .slicknav_nav {
      display: block !important;
    }

    .humberger__menu__wrapper .slicknav_menu {
      background: transparent;
      padding: 0;
      margin-bottom: 30px;
    }

    .humberger__menu__wrapper .slicknav_nav ul {
      margin: 0;
    }

    .humberger__menu__wrapper .slicknav_nav a {
      color: #1c1c1c;
      font-size: 16px;
      font-weight: 600;
      margin: 0;
      border-bottom: 1px solid #e1e1e1;
    }

    .humberger__menu__wrapper .slicknav_nav a:hover {
      -webkit-border-radius: 0;
      border-radius: 0;
      background: transparent;
      color: #ffc107;
    }

    .humberger__menu__wrapper .slicknav_nav .slicknav_row,
    mberger__menu__wrapper .slicknav_nav a {
      padding: 8px 0;
    }

    .humberger__menu__overlay {
      position: fixed;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.5);
      content: "";
      z-index: 98;
      visibility: hidden;
      -webkit-transition: all, 0.6s;
      -moz-transition: all, 0.6s;
      -ms-transition: all, 0.6s;
      -o-transition: all, 0.6s;
      transition: all, 0.6s;
    }

    .humberger__menu__overlay.active {
      visibility: visible;
    }

    .header__top {
      display: none;
    }

    .header__menu {
      display: none;
    }

    .header__cart {
      text-align: center;
      padding: 10px 0 24px;
    }

    .over_hid {
      overflow: hidden;
    }
  }

  /* Wide Mobile = 480px */
  @media (max-width: 759px) {
    .hero__categories {
      margin-bottom: 30px;
    }

    .hero__search {
      margin-bottom: 30px;
    }

    /*.hero__search__form {
        width: 310px !important;
        background: red;
        position: absolute; top: 50px; left: 50px;
    }*/

    #headersearchon {
      min-width: 130px !important;
      /* max-width: 130px !important; */
      margin-right: 0px !important;
    }

    #headerpostalcode {
      min-width: 90px !important;
      /* max-width: 90px !important; */
      margin-right: 0px !important;
    }

  }

  .hero__search__form form input {
    width: 100%;
  }

  .hero__search__form form .hero__search__categories {
    display: none;
  }

  .hero__search__phone {
    float: left;
    margin-top: 30px;
  }

  .categories__slider.owl-carousel .owl-nav {
    text-align: center;
    margin-top: 40px;
  }

  .categories__slider.owl-carousel .owl-nav button {
    position: relative;
    left: 0;
    top: 0;
    -webkit-transform: translateY(0);
  }

  .categories__slider.owl-carousel .owl-nav button.owl-next {
    right: -10px;
  }

  .footer__copyright {
    text-align: center;
  }

  .footer__copyright__text {
    float: none;
    margin-bottom: 25px;
  }

  .footer__copyright__payment {
    float: none;
  }

  .filter__item {
    text-align: center;
  }

  .filter__option {
    text-align: center;
  }

  .product__details__pic {
    margin-bottom: 40px;
  }

  .product__details__tab .nav-tabs:before {
    display: none;
  }

  .product__details__tab .nav-tabs:after {
    display: none;
  }

  .shoping__cart__table {
    overflow-y: auto;
  }

  .shoping__discount form input {
    margin-bottom: 15px;
  }

  .blog__details__author {
    overflow: hidden;
    margin-bottom: 25px;
  }

  .humberger__open {
    display: block;
    font-size: 22px;
    color: #1c1c1c;
    height: 35px;
    width: 35px;
    line-height: 33px;
    text-align: center;
    border: 1px solid #1c1c1c;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 15px;
  }

  .header .container {
    position: relative;
  }

  .humberger__menu__wrapper {
    width: 300px;
    background: #ffffff;
    position: fixed;
    left: -300px;
    top: 0;
    height: 100%;
    overflow-y: auto;
    z-index: 99;
    padding: 30px;
    padding-top: 50px;
    opacity: 0;
    display: block;
    -webkit-transition: all, 0.6s;
    -moz-transition: all, 0.6s;
    -ms-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
  }

  .humberger__menu__wrapper.show__humberger__menu__wrapper {
    opacity: 1;
    left: 0;
  }

  .humberger__menu__logo {
    margin-bottom: 30px;
  }

  .humberger__menu__logo a {
    display: inline-block;
  }

  .humberger__menu__contact {
    padding: 10px 0 13px;
  }

  .humberger__menu__contact ul li {
    font-size: 14px;
    color: #1c1c1c;
    position: relative;
    line-height: 30px;
    list-style: none;
  }

  .humberger__menu__contact ul li i {
    color: #252525;
    margin-right: 5px;
  }

  .humberger__menu__cart ul {
    display: inline-block;
    margin-right: 25px;
  }

  .humberger__menu__cart ul li {
    list-style: none;
    display: inline-block;
    margin-right: 15px;
  }

  .humberger__menu__cart ul li:last-child {
    margin-right: 0;
  }

  .humberger__menu__cart ul li a {
    position: relative;
  }

  .humberger__menu__cart ul li a i {
    font-size: 18px;
    color: #1c1c1c;
  }

  .humberger__menu__cart ul li a span {
    height: 13px;
    width: 13px;
    background: #ffc107;
    font-size: 10px;
    color: #ffffff;
    line-height: 13px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: -12px;
  }

  .humberger__menu__cart .header__cart__price {
    font-size: 14px;
    color: #6f6f6f;
    display: inline-block;
  }

  .humberger__menu__cart .header__cart__price span {
    color: #252525;
    font-weight: 700;
  }

  .humberger__menu__cart {
    margin-bottom: 25px;
  }

  .humberger__menu__widget {
    margin-bottom: 20px;
  }

  .humberger__menu__widget .header__top__right__language {
    margin-right: 20px;
  }

  .humberger__menu__nav {
    display: none;
  }

  .humberger__menu__wrapper .header__top__right__social {
    display: block;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .humberger__menu__wrapper .slicknav_btn {
    display: none;
  }

  .humberger__menu__wrapper .slicknav_nav .slicknav_item a {
    border-bottom: none !important;
  }

  .humberger__menu__wrapper .slicknav_nav {
    display: block !important;
  }

  .humberger__menu__wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }

  .humberger__menu__wrapper .slicknav_nav ul {
    margin: 0;
  }

  .humberger__menu__wrapper .slicknav_nav a {
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    border-bottom: 1px solid #e1e1e1;
  }

  .humberger__menu__wrapper .slicknav_nav a:hover {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: transparent;
    color: #ffc107;
  }

  .humberger__menu__wrapper .slicknav_nav .slicknav_row,
  mberger__menu__wrapper .slicknav_nav a {
    padding: 8px 0;
  }

  .humberger__menu__overlay {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    z-index: 98;
    visibility: hidden;
    -webkit-transition: all, 0.6s;
    -moz-transition: all, 0.6s;
    -ms-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
  }

  .humberger__menu__overlay.active {
    visibility: visible;
  }

  .header__top {
    display: none;
  }

  .header__menu {
    /*   display: none;*/
  }

  .header__cart {
    text-align: center;
    padding: 10px 0 24px;
  }

  .over_hid {
    overflow: hidden;
  }
}

/* Small Device = 320px */
@media only screen and (max-width: 479px) {
  .hero__search__form form .hero__search__categories {
    display: none;
  }

  .featured__controls ul li {
    margin-bottom: 10px;
  }

  .product__details__text ul li b {
    width: 100px;
  }

  .product__details__tab .nav-tabs li {
    margin-right: 20px;
  }

  .shoping__cart__btns {
    text-align: center;
  }

  .primary-btn.cart-btn.cart-btn-right {
    float: none;
    margin-top: 10px;
  }

  .shoping__checkout .primary-btn {
    display: block;
    text-align: center;
    padding: 10px 15px 10px;
  }

  .map .map-inside {
    -webkit-transform: translateX(-125px);
    -ms-transform: translateX(-125px);
    transform: translateX(-125px);
  }

  .map .map-inside .inside-widget {
    width: 250px;
  }

  .product__details__tab .nav-tabs li {
    margin-right: 15px;
  }

  .shoping__discount form input {
    width: 100%;
  }

  .checkout__order {
    padding: 20px;
  }

  .blog__details__hero__text h2 {
    font-size: 24px;
  }
}

.hero__search>ul {
  position: absolute;
  left: 0;
  top: 100%;
}

.owl-item {
  float: left;
  min-height: 285px !important;
}

.owl-stage-outer {
  overflow: hidden;
}

.owl-theme .owl-nav [class*=owl-] {
  background: gray;
  border: none;
}

.owl-theme .owl-dots .owl-dot {
  background: none;
  border: none;
}

.category__wrapper {
  border-bottom: 2px solid white;
}

@media only screen and (max-width: 786px) {
  .category__wrapper {
    display: none;
  }

  .header__cart {
    display: none;
  }
}


/* h1 {
	font-size: 26px;
	font-weight: 400;
	color: #3e3e3e;
	line-height: 31px;} */

.required {
  color: #DF280A;
  margin-left: 10px;
  margin-right: 20px;
  min-width: 20px;
}

.help {
  color: #0090E3;
  margin-left: 10px;
  margin-right: 20px;
  min-width: 20px;
}


/*******************/
.desctext,
.desctextOn {
  font-family: arial;
}

.desctext {
  font-size: 8pt;
  text-align: center;
}

.desctextOn {
  padding-top: 10px;
  font-weight: normal;
  color: #52882E
    /*#28A745*/
  ;
  padding-bottom: 10px;
  /*border-bottom: 3px solid #28A745;*/
  min-height: 70px;
}



#myfrm .form-group,
#myfrm input,
#myfrm select {
  font-size: 95%;
}

#myfrm .form-group {
  padding-left: 10px;
}

.card-cust {
  background: #E5ECF2
    /*#EAECEE*/
     !important;
  border: 0px;
  padding-top: 10px !important;
}

.col-log-cust {
  min-width: 220px;
  width: 240px;
  padding-top: 0px;
}

@media(max-width:960px) {
  .col-log-cust {
    min-width: 220px;
    width: 240px;
    padding-top: 60px;
  }
}

.badge-success-cust1 {
  background: #89C764;
  padding-top: 28px;
}

.badge-success-cust {
  background: #404040;
  padding-top: 28px;
}

.badgecircle {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  font-family: arial;
}

.alert-success-cust {
  background: transparent;
  color: #008000;
  border: 0px;
  font-size: 1rem !important;
}

.text-help {
  color: #007BFF;
  font-size: 10pt;
}

.badge-text-cust {
  background: white;
  color: #404040;
  border: 1px solid #E2DEDE;
  padding: 10px;
}

.text-cust {
  color: #404040;
  font-size: 10pt;
}

/*Home page - city hall*/
.btn-outline-cityh_cust {
  color: #8DAD2B;
  background-color: #fff;
  border-color: #C1DD6B;
}

.btn-outline-cityh_cust:hover {
  color: #fff;
  background-color: #A6CD3A;
  border-color: #C1DD6B;
}

.btn-cityh_cust {
  color: #fff;
  background-color: #A6CD3A;
  border-color: #C1DD6B;
}

.btn-cityh_cust:hover {
  color: #fff;
  background-color: #8DAD2B;
  border-color: #C1DD6B;
}

/*Home page - seller*/
.btn-outline-sell_cust {
  color: #26A0DA;
  background-color: #fff;
  border-color: #68BFE8;
}

.btn-outline-sell_cust:hover {
  color: #fff;
  background-color: #26A0DA;
  border-color: #68BFE8;
}

.btn-sell_cust {
  color: #fff;
  background-color: #26A0DA;
  ;
  border-color: #68BFE8;
}

.btn-sell_cust:hover {
  color: #fff;
  background-color: #2188B7;
  border-color: #68BFE8;
}

/*Home page - visit shop*/
.btn-outline-vshop_cust,
.btn-outline-vshop_cust:visited,
.btn-outline-vshop_cust:focus {
  color: #fff;

  background-color: #ED9409;
  border-color: #E8A004;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}

.btn-outline-vshop_cust:hover {
  color: white
    /*#26A0DA*/
  ;
  background-color: #FFB701
    /*#FFCF69*/
    /*#87CEEB*/
    /*#26A0DA*/
  ;
  border-color: #FFB701
    /*#68BFE8*/
  ;
}


/***to manage with my.css****/
.card-custgest {
  cursor: pointer;
  min-height: 200px;
  min-width: 200px;
  padding: 0px;
  border: 1px solid #EAEAED
    /*#F5F5F5*/
  ;
  background: white;
}

.card-custgest:hover {
  border: 1px solid #BCD3DC
    /*rgba(0,0,0,.125)*/
  ;
  padding: 0px;
}

.imgcard {
  width: 100%;
  padding-top: 40px;
  min-height: 130px;
  height: 130px;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #65A5D3
    /*#DA4C8F*/
  ;
  font-size: 16pt;
  color: white;
  text-align: center;
  padding-top: 15px;
  margin-top: 10px;
}

.circlelg {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #65A5D3
    /*#DA4C8F*/
  ;
  font-size: 16pt;
  color: white;
  text-align: center;
  padding-top: 15px;
  margin-top: 10px;
}



.h-form {
  font-size: 14pt;
}

.text-help {
  color: #007BFF;
}

.t-h-pad {
  padding-bottom: 10px;
  padding-bottom: 10px;
}

.text-help-link:link,
.text-help-link:visited,
.text-help-link:active {
  color: #007BFF;
  text-decoration: underline;
}

.text-help-link:hover {
  color: #0A62BC;
  text-decoration: underline;
  cursor: pointer;
}


.puceg {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: green
    /*#DA4C8F*/
  ;

}

.jumbotron-cust {
  padding: 10px;
}

}


.card-textcust:link,
.card-textcust:visited,
.card-textcust:active {
  color: white;
  font-size: 0.8rem;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 0px;
  margin-right: 0px;
}

.card-textcust:hover {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

.card-titlecust {
  padding-top: 20px;
  font-size: 1.2rem;
  min-height: 70px;
  /*font-weight: 600;*/
}

.card-titlecust2 {
  padding-top: 10px;
  font-size: 11pt;
}

.card-titlecustcth {
  padding-top: 10px;
  font-size: 1.2rem;
  min-height: 100px;
}

/***/

.nice-select {
  /*background: #EAEAED;*/
  color: #2F353A;
}



#cntrySelectDiv .nice-select {
  background: transparent;
}

#cntrySelectDiv>div.nice-select {
  border: none !important;
  color: black;
}

#cntrySelectDiv .current {
  color: white;
}

.rate-cust .current {
  color: #FFC107 !important;
  font-weight: normal;
}

.selected .focus {
  font-weight: normal !important;
}

.filter__sort .nice-select .option.selected {
  font-weight: normal;
  color: #FFC107 !important;
}

.badge-light-cat-cust {
  font-weight: normal;
  background: #E5ECF2
    /*#B0C1D0*/
    /*#D5EEF9*/
    /*#EAEAED*/
  ;
  margin: 2px;
  font-size: 0.70rem;
  color: #457B9D
    /*#474F57*/
    /*#51575D*/
    /*#457B9D*/
  ;
  border-radius: 0.5rem;
}

.badge-light-cat-cust2 {
  font-weight: 500;
  background: #EAEAED;
  margin: 2px;
  font-size: 14px;
  padding: 7px;
}

.badge-light-cat-cust3 {
  font-weight: 500;
  background: white;
  margin: 2px;
  font-size: 0.975rem;
  padding: 7px;
  text-decoration: none;
  border-radius: 0.5rem;
}

.badge-light-cat-cust3:HOVER {
  background: white !important;
  color: #007BFF !important;
  text-decoration: underline !important;
}

.badge-light-cat-cust4 {
  font-weight: 600;
  background: #D1DCE5;
  margin: 2px;
  margin-bottom: 10px;
  font-size: 0.975rem;
  padding: 8px;
  text-decoration: none;
  color: #457B9D !important;
  font-family: arial;
  border-radius: 0.5rem;
}

.badge-light-cat-cust4:HOVER {
  background: #D1DCE5 !important;
  text-decoration: underline !important;
  color: #457B9D !important;
  padding: 8px;
}

.lead {
  font-size: 1.1rem;
  font-weight: 300;
}

.nice-select {
  /*width: 145px !important;max-width: 145px !important;*/
  /* font-size: 16px;

    padding-left: 5px;
    padding-right: 20px; */
  color: white;
  background: transparent;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}

.nice-select .option {
  color: #727272;
}

.nice-select .option:hover {
  color: black;
}

select.langSelect {
  /* font-size: 14px;
    background: transparent;
    color: white;
    border: none; */
}

.input-group-cust {
  background: white !important;
  min-width: 400px !important;
}



.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.breadcrumb {
  border-bottom: 0px solid #c8ced3;
  background: #87CEEB;
  /*background: url('../img/backgshop3.png');*/
}


.breadcrumb a,
.breadcrumb li {
  font-weight: bold;
  color: white;
}


.sidebar .nav-link.active {
  color: #87CEEB;
  background: black;
  font-weight: bold;
}

.h-circle {
  height: 50px;
  padding-top: 30px;
  padding-left: 10px;
  margin-top: -10px;
  font-size: 20pt;
}



.img-cust-offon {
  min-height: 120px;
  max-height: 120px;
  width: 90%;
  /*max-width: 180px;*/
  margin-bottom: 10px;
  background: #F8F9FA;
}

/*.card-box-cust2:hover .img-cust-offon {height: 105px;}*/

/*Product list - Details*/
.btn-outline-vshop_cust2,
.btn-outline-vshop_cust2:visited,
.btn-outline-vshop_cust2:focus {
  color: #fff;
  background-color: #FFB701
    /*#FFCF69*/
    /*#87CEEB*/
    /*#26A0DA*/
  ;
  border-color: #FFB701
    /*#68BFE8*/
  ;
  width: 100%;
  padding: 5px;
  padding-top: 0px;
  font-size: 20px;
  font-weight: normal;
  width: 30px;
  height: 30px;
  border-radius: 25px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.btn-outline-vshop_cust2:hover {
  color: white
    /*#26A0DA*/
  ;
  background-color: #ED9409;
  border-color: #E8A004;
}

.btn-outline-vshop_cust3,
.btn-outline-vshop_cust3:visited,
.btn-outline-vshop_cust3:focus {
  color: #fff;
  background-color: #87CEEB
    /*#FFCF69*/
    /*#87CEEB*/
    /*#26A0DA*/
  ;
  border-color: #6BC1E5
    /*#68BFE8*/
  ;
  width: 100%;
  padding-top: 3px;
  padding-left: 7px;
  font-size: 14px;
  font-weight: normal;
  width: 30px;
  height: 30px;
  border-radius: 25px;
  position: absolute;
  top: 5px;
  right: 5px;
}

.btn-outline-vshop_cust3:hover {
  color: white
    /*#26A0DA*/
  ;
  background-color: #56B6DE;
  border-color: #56B6DE;
}



.btn-outline-vshop_cust2,
.btn-outline-vshop_cust3 {
  display: none;
}

.card-box-cust:hover .btn-outline-vshop_cust2,
.card-box-cust:hover .btn-outline-vshop_cust3,
.card-box-cust2:hover .btn-outline-vshop_cust2,
.card-box-cust2:hover .btn-outline-vshop_cust3 {
  display: block;
}

/*** effet zoom ***/
.wprock-img-zoom-hover .wprock-img-zoom {
  overflow: hidden;
  position: relative;
}

.wprock-img-zoom-hover .wprock-img-zoom div {
  max-width: 100%;
  -moz-transition: all 0.9s;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}

.wprock-img-zoom-hover .wprock-img-zoom * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.wprock-img-zoom-hover:hover .wprock-img-zoom div {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/**************************/
.featureson,
.featuresoff {
  text-align: left;
  margin-bottom: 0px;
}

.featureson {
  color: #212529;
}

.featuresoff {
  color: #989FA4;
}

.featureson svg,
.featuresoff svg {
  margin-top: 5px;
}

.link-cust:hover {
  text-decoration: underline;
  color: black !important;
}

.nice-select-cust {
  background: transparent !important;
  font-size: .875rem !important;
  color: #007BFF;
  border: 0px;
  margin-left: 5px;
  padding-top: 0px;
  height: 25px;
  line-height: 20px;
}

.nice-select-cust2 {
  background: white !important;
}

.nice-select-cust .option {
  color: #212529 !important;
}

/*.nice-select-cust .option {color: red !important;}*/

#orderby .nice-select {
  background: red !important;
}

/*linear-gradient(to bottom, #0b4ea2, #05346f)*/

a.badge-light {
  color: #505061;
}

.card-header:HOVER .btn-cust-prod {
  border: 1px solid #F2994A
    /*#007BFF*/
  ;
  color: white;
  background: #F2994A
    /*#457B9D*/
    /*#007BFF*/
  ;

  /*background-image: linear-gradient(to bottom right, #F7C293, #F2994A);*/
}

.btn-cust-prod {
  font-size: 0.8rem;
  border: 1px solid white
    /*#007BFF*/
  ;
  color: #F2994A
    /*#6EA1C2*/
  ;
  background: white
    /*#007BFF*/
  ;
  margin-bottom: 5px;
  margin-right: 10px !important;
}

.card-box-cust2:HOVER .btn-cust-prod:HOVER,
.card-header:HOVER .btn-cust-prod:HOVER {
  color: white
    /*#6EA1C2*/
  ;
  background: #EF8323
    /*#007BFF*/
  ;
  border: 1px solid #DC771E;
}

.btn-primary-cust2 {
  background: #457B9D;
  color: white;
  border: 1px solid #457B9D;
  font-weight: bold;
}

.btn-primary-cust2:HOVER {
  background: #3C627A;
  color: white;
  border: 1px solid #3C627A;
}



.btn-cust2-prod {
  border: 1px solid white
    /*#ccc*/
  ;
  color: #6f6f6f;
  background: white;
  /*background-image: linear-gradient(to bottom right, #E5ECF2, white, #E5ECF2);*/
}

.btn-cust2-prod:HOVER {
  border: 1px solid #6EA1C2;
  color: #007BFF;
}

.btn-cust2-fav {
  border: 0px solid white
    /*#ccc*/
  ;
  color: #6f6f6f;
  background: transparent;
  /*background-image: linear-gradient(to bottom right, #E5ECF2, white, #E5ECF2);*/
}

.btn-cust2-fav:HOVER {
  border: 0px solid #6EA1C2;
  color: #007BFF;
  background: white;
}

.btn-cust2-sell {
  border: 1px solid white
    /*#ccc*/
  ;
  color: #6f6f6f;
  background: white;
  /*background-image: linear-gradient(to bottom right, #E5ECF2, white, #E5ECF2);*/
}

.btn-cust2-sell:HOVER {
  border: 1px solid #6EA1C2;
  color: #007BFF;
}

.btn-cust-samp {
  font-size: 0.9rem;
  border: 1px solid #457B9D;
  color: #457B9D;
  background: white;
  margin-bottom: 5px;
  margin-right: 3px !important;
}

.btn-cust-samp:HOVER {
  border: 1px solid #457B9D
    /*#007BFF*/
  ;
  color: white;
  background: #457B9D
    /*#007BFF*/
  ;
}

.newshophome {}

.filtermobcust {
  padding-left: 10px;
  padding-right: 10px;
}

.form-control-cust {
  font-size: 0.9rem !important;
  margin-top: 2px;
  /*padding-right: 20px;*/
  border: 1px solid #EAEAED;
}

.form-control-cust:HOVER {
  border: 1px solid #87CEEB;
}

.navbar-cust {
  /* padding: 0px !important; */
  /* padding-bottom: 0px !important; */
  min-height: 70px;
}

/*pwa*/
.pwa-cust {
  color: white;
  cursor: pointer;
  margin-top: 0px;
  margin-right: 15px;
}

.pwa-cust:HOVER {
  text-decoration: underline;
}

.pwa-cust svg {
  margin-right: 3px;
}

/*footer*/
.foot-cust {
  color: #505050;
  font-size: 0.775rem;
}

.link-foot-cust {
  color: #505050;
  text-decoration: none;
  font-weight: 700;
}

.link-foot-cust:HOVER {
  color: black;
  text-decoration: underline;
}

.link-foot-cust2 {
  color: #505050;
  text-decoration: underline;
}

.link-foot-cust2:HOVER {
  color: black;
  text-decoration: underline;
}

#headersearchon {
  min-width: 25em !important;
  /* max-width: 270px; */
  border: none;
  font-size: 16px;
  /* margin-top: 4px; */
  /* padding-left: 0.3rem; */
  padding-right: 0.1rem;
  margin-left: 2px !important;
  margin-right: 7px !important;
}

#headerpostalcode {
  min-width: 120px;
  /* max-width: 120px; */
  border: none;
  font-size: 16px;
  /* margin-top: 4px; */
  /* padding-left: 0.1rem; */
  padding-right: 0.1rem;
  margin-right: 7px !important;
}

.nav-link-cust {
  margin-right: 10px;
}

.dropdown-cust .show {
  border: 0px;
}
.dropdown-menu.dropdown-menu-cust.dropdown-menu-right.pt-2.show {
    overflow: auto;
}

@media (max-width: 719px) {
	.dropdown-menu.dropdown-menu-cust.dropdown-menu-right.pt-2.show {
		font-size: 0.95rem !important;
		max-height: 65vh;
	}
}

.dropdown-menu-cust {
  /* background: #2F353A; */
  padding-top: 0px;
  padding-bottom: 0px;
}

#dropdownMenuButton {
  border-radius: 4px 0 0 4px;
}

#dropdownMenuButton[aria-expanded=true] {
  border-radius: 4px 0 0 0;

}

#dropdown-menu-cust {
  padding: .25rem .5rem;
  padding-left: 12px;
  margin: 0;
  top: 100%;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 10px 10px 0 rgb(0 0 0 / 10%);
  border: 0
}

@media (max-width: 719px) {
.dropdown-item-cust {
	font-size: 0.95rem !important;
	line-height: inherit;
}
}

@media (min-width: 720px) {
.dropdown-item-cust {
	font-size: 0.85rem !important;
	line-height: inherit;
}
}

.dropdown-item-cust:HOVER {
background: inherit;
color:#F2994A !important;
}

a.dropdown-item-cust span {
  border-bottom: 1px solid white;
  font-size: 1rem;
}

a.dropdown-item-cust span:HOVER {
  border-bottom: 1px solid #F2994A;
  font-size: 1rem;
}


.resp-text {
  display: none;
}

.resp-hidetext {
  display: inline;
}

.col-form-label-cust {
  font-weight: normal;
  color: #212529;
  text-align: right;
}

.col-form-label-cust2 {
  font-weight: 600;
  color: #212529;
  font-family: arial;
}


.lab-cust {
  padding: 0px;
  margin: 0px;
  cursor: pointer;
}



.footer-position-cust {
  /* position: fixed; bottom: 0px; left: 0px; right: 0px;height: 50px !important;z-index: 1; */
  background: #D1DCE5;
}

.body-position-cust {
  /* padding-bottom: 80px !important; */
  background: #F8F9FA;
}


.h-bg-title {
  font-size: 2em;
  font-weight: 600;
  color: #ED9409;
}

.h-bg-title2 {
  font-size: 2em;
  font-weight: 600;
}


.dropdown-menu-title {
  /* color: white; */
  padding-left: 10px;
  padding-top: 20px;
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-outline-dark-cust {
  background: white;
  font-weight: bold;
  padding-left: 20px;
  margin-left: 10px;
  padding-right: 20px;
  font-size: 1rem;
}

.btn-outline-dark-cust:HOVER {
  background: white;
  color: #F2994A;
}

.nav-rightcust {
  margin-right: 30px;
}

.nav-leftcust {
  margin-left: 0px;
}

.nav-topcust {
  margin-top: 10px;
}

.h-phead-cust {
  font-size: 2em;
  font-weight: normal;
  color: orange;
  font-family: "Raleway", sans-serif;
  margin-top: 30px;
  margin-bottom: 20px;
}

.padding-cust {
  padding-top: 10px;
}

.padding-custh {
  padding-top: 0px;
}


.myhome-cust {
  margin-top: 50px;
  z-index: 9 !important;
  /*position: relative;*/
}

.topmyhome-cust {
  margin-top: 40px;
}

.htopmyhome {
  text-align: center;
  /* color: white  */
  /*#6E95AE #585D70*/
  ;

  /* font-weight: 500; */
  /* font-size: 1.3rem; */
  /* font-family: 'Open Sans', sans-serif; */
  /* letter-spacing: 0.5px; */
  margin-bottom: 20px;
}


.rowcathome {
  /* color: white; */
  border: 2px solid #D4D4D4;
  background: white;
  border-radius: 10px;
  /* margin: 10px !important; */
  margin-top: 0px;
  padding: 20px;
}



.form-label-cust {
  font-family: arial;
  font-weight: 600;
  color: #457B9D;
  font-family: arial;
}

.form-label-sugg-cust {
  margin-top: 75px;
}

.h1-p-cust {
  font-family: arial;
  color: white
    /*#73818F*/
  ;
  font-weight: 600;
  padding-left: 10px;
}


.logohead {
  color: #87CEEB;
  font-weight: 600;
  font-family: Comic sans MS;
  font-size: 30pt;
  padding: 0px;
  margin: 0px;
  margin-left: 20px;
}

.rowcathref-cust {
  width: 700px;
  max-height: 500px;
  font-size: 0.875rem;
  overflow: auto;
}

.cathref-cust {
  /* margin-left: 5px; */
  margin-bottom: 5px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-weight: 500;
  color: #727272;
}

.cathref-cust:HOVER {
  text-decoration: underline;
  cursor: pointer;
}

.cercle {
  position: absolute;
  z-index: 0 !important;
  opacity: 1;
  margin: 0px;
  background-color: #D1DCE5
    /*#A2D0E3*/
  ;
  border: 0px;
  border-radius: 50%;
  height: 1000px;
  width: 1000px;
  top: -750px;
  left: 0px;
}

.cercle2 {
  position: absolute;
  z-index: 0 !important;
  opacity: 0.7;
  margin: 0px;
  background-color: #A2D0E3;
  border: 0px;

}

.cercle {
  border-radius: 50%;
  height: 1000px;
  width: 1000px;
  top: -750px;
  left: 0px;
}

.cercle2 {
  border-radius: 50%;
  height: 500px;
  width: 500px;
  top: -20%;
  right: 0px;
}


.hometext {
  font-size: 1.5rem;
  width: 95%;
  padding-top: 50px;
  color: #457B9D;
}

.hometext2 {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #212529;
  text-align: justify;
}

/* .homebloc {margin-top: 50px !important;}	 */

.btn-primaryh-cust {
  background: #F8F9FA;
  border: 1px solid #457B9D;
  color: #457B9D
    /*#212529*/
    /*#457B9D*/
  ;
  font-weight: 700;
  font-family: Raleway, arial, sans-serif;
  font-size: 1.1rem;
}

.btn-primaryh-cust:HOVER {
  background: var(--brand-orange);
  color: white
}

.btn-primaryh2-cust {
  background: white;
  border: 1px solid #457B9D;
  color: #457B9D
    /*#212529*/
    /*#457B9D*/
  ;
  font-weight: 600;
  font-family: arial;
  font-size: 1.1rem;
}

.btn-primaryh2-cust:HOVER {
  background: #87CEEB;
  border: 1px solid #87CEEB;
  color: white;
}


.btn-link-cust {
  color: white;
}

.btn-link-cust:HOVER {
  color: white;
}

.btn-linksm-cust {
  color: white;
  font-size: 0.75rem;
}

.btn-linksm-cust:HOVER {
  color: white;
  font-size: 0.75rem;
}

.btn-linkmd-cust {
  /* color: white; */
  transition: color 500ms;
  font-weight: 600;
  font-size: 0.875rem;
  width: 100%;
}

.btn-linkmd-cust:HOVER {
  color: black;
  font-size: 0.875rem;
  text-decoration: underline;
}



/*.btn-linkmd-cust span {padding: 10px;width: 100%;}
.btn-linkmd-cust:HOVER span {background: white;border-radius: 50%; }*/

.cadrelinkmd {
  /*padding-bottom: 10px;*/
}

.navbar-brand-cust {
  padding-top: 0px;
  margin-top: -20px !important;
}

.position-cust {
  float: right !important;
  padding-right: 50px;
}

.navbarmobile-cust {}

.card-footer-cust {
  /*background-image: linear-gradient(to bottom right, white, #D1DCE5);*/
  background: #E5ECF2;
  position: relative;
  padding: 0px;
  border: 2px solid white;
  text-align: center;
  height: 170px;
}

.card-footer-cust2 {
  /*background-image: linear-gradient(to bottom right, white, #D1DCE5);*/
  /* background: #E5ECF2; */
  padding: 0px;
  border-top: 0px;
  text-align: center;
  height: 90px;
}

.card-footer-cust3 {
  /*background-image: linear-gradient(to bottom, white, #D1DCE5); padding: 0px;border-top: 0px;text-align: center;height: 170px;*/
}

/* .card-box-cust2:HOVER .card-footer-cust {background: #EEF6FC;} */
/* .card-box-cust2:HOVER .card-footer-cust2 {background: #EEF6FC;} */

a .card-title-cust {
  font-size: 16px;
  color: #457B9D
    /*#F2994A*/
     !important;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  font-family: arial;
}

a:HOVER .card-title-cust {
  font-size: 16px;
  color: #457B9D
    /*#F2994A*/
  ;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  font-family: arial;
  text-decoration: underline;
}

.sellerlink {
  cursor: pointer;
}

.card-footer-cust:HOVER .sellerlink {
  /*text-decoration: underline;*/
}

.card-footer-cust .sellerlink {
  text-decoration: none;
}

.col-form-label-cust {
  font-weight: bold !important;
  color: #212529;
  text-align: right;
  font-family: arial;
}

.card-help-cust {
  background: #E5ECF2;
  border: 0px;
}

.padding-custr {
  padding-top: 100px !important;
}

.invalid-feedback-cust {
  color: #FFC0C0;
  padding-left: 10px;
}

.h-form2 {
  font-weight: 600;
  background: #457B9D;
  color: white;
  text-transform: uppercase;
  font-size: 0.975rem;
  padding: 5px;
  padding-left: 5px;
  padding-left: 10px;
  margin-bottom: 10px;
  font-family: arial;

}

.bg-light-cust {
  background-color: #E5ECF2 !important;
  padding: 1rem 1rem !important;
  padding-left: 1rem;
}

.form-control[readonly],
.form-control:disabled,
.readonly-cust {
  color: #212529 !important;
  background: #D1DCE5 !important;
}

.readonly-cust {
  height: 30px;
  padding: 5px;
}

.filterinputcust {
  padding-left: 2px;
}

.h4-cust {
  color: #457B9D;
}


.nav-link-info {
  border: 0px !important;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center !important;
}

.nav-link-info.active {
  border: 0px !important;
  color: #457B9D !important;
  background: transparent !important;
}

.infocircle {
  width: 130px;
  height: 130px;
  border-radius: 65px;
  border: 1px solid black;
  padding-top: 10px;
  text-align: center;
  margin: 2px;
}

.nav-link-info.active .infocircle {
  border: 3px solid #457B9D;
  background: white;
}

.nav-link-info .infocircle {
  border: 3px solid #D5DBE1;
  background: white;
}

.nav-link-info svg {
  margin-bottom: 5px;
}

a.nav-link-info {
  color: #8A96A0 !important;
}

a.nav-link-info:HOVER {
  color: #457B9D !important;
}

.nav .nav-tabs .row a {
  text-align: center;
}

.navshopsite {
  background: #92C8DF;
  height: 100px;
}

.h4info {
  color: white
    /*#212529*/
  ;
  font-family: arial;
  font-size: 2rem !important;
}

.btn-outline-dark-icust {
  background: white;
  border: 0px;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-outline-primary-icust {
  background: #F2994A;
  color: white;
  border: 0px;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-outline-primary-icust:HOVER {
  background: #EF8323;
  color: white;
}

.border-success-cust {
  border: 5px solid #2F353A;
}

.btn-secondarynav-cust {
  border: 0px;
}

.btn-secondarynav-cust svg {
  color: #2F353A !important;
}

.btn-secondarynav-cust:HOVER {
  background: #457B9D !important;
  color: white;
}

.btn-secondarynav-cust .svg-cust:HOVER {
  color: white !important;
}

.prodlist {
  border-bottom: 2px solid #F2994A;
  background: red;
}

.badgecat-cust {
  font-size: 0.7rem;
  /* text-transform: uppercase; */
  font-weight: 600;
  padding: 5px;
  margin: 1px;
  background: #d2f3f4;
  color: black;
}

/*chatpop.css*/
#__msgEmbed {
  border: none;
  z-index: 999998;
  transform: translateZ(0px);
  position: fixed;
  transition: opacity 250ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s, top, bottom;
  opacity: 1;
  color: white;
  width: 180px;
  text-align: center;
  height: 48px;
  border-radius: 5px;
  padding: 2px 5px;
  box-shadow: 0 0px 3px #7d7c7c;
  border-top: 2px solid #000000;
  background-color: #053776;
  background: linear-gradient(to bottom, #0b4ea2, #05346f);
  min-height: 45px;
  margin: 15px 15px;
  right: 0px;
  bottom: 0px;
}


@media (max-width: 1279px) {}





@media (min-width: 1280px) {}




@media (max-width: 1140px) {
  .butprodcust {
    height: 50px;
  }
}


@media (max-width: 990px) {
  .resp-text {
    display: inline;
  }

  .resp-hidetext {
    display: none;
  }

  .nav-link-cust {
    /* background: black; */
    line-height: 40px;
    padding-left: 10px !important;
    /* border-bottom: 1px solid #4F5459; */
    padding-right: 10px;
    margin-right: 0px;
  }

  .catbloccust {
    margin-top: -40px;
  }

  .col-form-label-cust {
    text-align: left;
  }

  .nav-leftcust {
    margin-left: 0px;
  }

  .dropdown-menu-title {
    color: white;
    padding-left: 10px;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    font-weight: 600;
    font-size: 1rem;
  }

  .nav-topcust {
    margin-top: 0px;
  }

  .padding-cust {
    padding-top: 60px;
  }

  .padding-custh {
    padding-top: 50px !important;
  }

  .padding-custr {
    padding-top: 120px !important;
  }

  .padding-custf {
    padding-top: 50px !important;
  }

  .form-label-sugg-cust {
    margin-top: 100px;
  }

  .cercle {
    border-radius: 50%;
    height: 800px;
    width: 800px;
    top: -550px;
    left: 0px;
  }

  .cercle2 {
    border-radius: 50%;
    height: 500px;
    width: 500px;
    top: -10%;
    right: 0px;
  }

  .position-cust {
    float: left !important;
  }
}

@media (max-width: 800px) {
  .hero__search__form {
    width: 500px !important;
  }

  .catbloccust {
    margin-top: -40px;
  }

  .catbloccust2 {
    margin-top: -300px;
  }

  .card-box-cust2 {}

  .filters {
    margin-top: 30px;
  }

  .filtermobcust {
    padding-left: 5px;
  }

  .form-control-cust {
    font-size: 0.9rem !important;
  }

  .rowhcust {
    margin-top: -60px;
  }

  .rowpcust {
    margin-top: -15px;
  }

  .hometext {
    font-size: 1.3rem;
    padding-bottom: 20px;
    width: 100%;
    padding-top: 0px;
  }

  .padding-custh {
    padding-top: 90px !important;
  }

  .padding-custr {
    padding-top: 140px !important;
  }

  .padding-custf {
    padding-top: 50px !important;
  }

  .homebloc {
    margin-top: 10px !important;
  }
}


@media (max-width: 1023px) {

  /*.hero__search {margin-left: -25px !important; }*/
  .hometext {
    font-size: 1.2rem;
    padding-bottom: 20px;
    width: 100%;
  }

  .hometext2 {
    font-size: 1rem;
    margin-top: 10px;
    color: #212529;
  }

  .newshophome {
    padding-top: 101px;
  }

  /*.catbloccust {margin-top: -40px;}*/
  /*.rowhcust{margin-top: -105px;}*/

}






@media (min-width: 1680px) {

  .hero__search__form {
    /* min-width: 650px; */
    /* margin-left: 100px;        */
    /* margin-right: 50px; */
  }


  .cercle {
    border-radius: 50%;
    height: 1480px;
    width: 1480px;
    top: -1220px;
    left: 0px;
  }

  .cercle2 {
    border-radius: 50%;
    height: 600px;
    width: 600px;
    top: -23%;
    right: 10%;
  }


}

@media (min-width: 1920px) {



  .cercle {
    border-radius: 50%;
    height: 1680px;
    width: 1680px;
    top: -1400px;
    left: 0px;
  }

  .cercle2 {
    border-radius: 50%;
    height: 600px;
    width: 600px;
    top: -23%;
    right: 15%;
  }


}

@media (max-width: 500px) {
  .footer-position-cust {
    position: relative;
    /* height: 140px !important; */
    /* background: #D1DCE5;  */
  }

  .body-position-cust {
    /* padding-bottom: 0px !important; */
    background: #F8F9FA;
  }

  #headersearchon {
    min-width: 115px !important;
    /* max-width: 115px !important; */
    margin-right: 0px !important;
  }

  #headerpostalcode {
    /* border: 1px solid #c1c1c1 !important; */
    /* margin: 0 9px !important; */
    /* border-radius: 4px !important; */
    margin-bottom: 12px !important;
  }

  .hero__search__form {
    min-width: 370px;
    /*340px*/
    margin-left: -5px;
    min-height: 80px;
    margin-top: 0px;
  }

  .logohead {
    color: #87CEEB;
    font-weight: 600;
    font-family: Comic sans MS;
    font-size: 25pt;
    padding: 0px;
    margin: 0px;
    margin-left: 5px;
  }

  .rowcathref-cust {
    width: 400px !important;
    max-height: 500px;
    font-size: 0.875rem;
    overflow-y: auto;
  }

  /* .padding-custh {padding-top: 160px !important;}*/
  .padding-custr {
    padding-top: 210px !important;
  }

  .padding-custf {
    padding-top: 100px !important;
  }

  .padding-cust {
    padding-top: 120px !important;
  }

  .cercle {
    border-radius: 50%;
    height: 360px !important;
    width: 360px !important;
    top: -100px !important;
    left: 5% !important;
  }

  .cercle2 {
    border-radius: 50%;
    height: 150px !important;
    width: 150px !important;
    top: 150px !important;
    right: 10% !important;
  }

  .homebloc {
    margin-top: -10px !important;
  }

  .navbar-brand-cust {
    margin-top: 0px !important;
  }

  .navbarmobile-cust {
    margin-top: -15px;
  }

  .topmyhome-cust {
    margin-top: 100px;
  }

  .butprodcust {
    height: 40px;
  }
}


.ig_highlight {
  font-size: 1.0em;
  font-weight: bold;
  color: #F2994A;
}

.navbar-nav #dropdown-menu-cust {
  position: absolute !important
}

.blocset {
  background: #DEE8F0;
  padding: 5px;
  margin-top: 10px;
}

.table .thead-dark th {
  color: white
    /*#e4e5e6*/
  ;
  background-color: #457B9D
    /*#AAAAB6*/
    /*#CECEDA*/
    /*#505061*/
  ;
  border-color: #457B9D
    /*#AAAAB6*/
    /*#CECEDA*/
    /*#505061*/
  ;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-light-cat-cust5 {
  font-weight: 600;
  background: #68C0E4;
  margin: 2px;
  margin-bottom: 10px;
  font-size: 0.975rem;
  padding: 8px;
  text-decoration: none;
  color: white !important;
  font-family: arial;
  border-radius: 0.5rem;
  border: 0px;
}

.badge-light-cat-cust5:HOVER {
  cursor: pointer;
  background: #F2994A !important;
  text-decoration: none !important;
  color: white !important;
  padding: 8px;
  border: 0px;
}

.control-label-cust {
  font-weight: 600;
  color: #457B9D;
}

.label-order {
  min-height: 48px;
  font-weight: bold;
}

#navbarSupportedContent>ul>* {
  margin-left: 20px;
}

#headersearchtype {
  /* background-color:#efefef; */
  /* padding-left: 12px !important; */
}

.rounded-top {
  border-radius: 4px 4px 0 0 !important;
}

@media (max-width: 1200px) {
  .location.where {
    width: 100%;
  }

  .search-setting-toggle {
    display: block;
  }

  #search-form,
  #search-form>.input-group {
    width: 100%;
  }

  #navbarSupportedContent>ul>* {
    margin-left: 20px;
  }
}


/***********************************************************************************/
/***********************************************************************************/
[dir=rtl] {
  /* ------------------------------------------------------------------
  [Table of contents]

  1.  Template default CSS
  	1.1	Variables
  	1.2	Mixins
  	1.3	Flexbox
  	1.4	Reset
  2.  Helper Css
  3.  Header Section
  4.  Hero Section
  5.  Service Section
  6.  Categories Section
  7.  Featured Section
  8.  Latest Product Section
  9.  Contact
  10.  Footer Style
  ------------------------------------------------------------------- */
  /* ---------------------------------------- */
  /* Template default CSS
  /*---------------------------------------- */
  /* .btn{
      border-radius: 0;
  } */
  /* ---------------------
    Helper CSS
  ----------------------- */
  /* buttons */
  /* Preloder */
  /* ---------------------
    Header
  ----------------------- */
  /* @media (min-width: 576px) { */
  /* .brand-logo{
      max-height: 40px;
      width:auto;
  } */
  /* } */
  /* @media (min-width: 992px){
      .brand-logo{
          max-height: 46px;
          width:auto;
      }
  } */
  /* ---------------------
    Hero
  ----------------------- */
  /*****************/
  /************************/
  /* ---------------------
    Categories
  ----------------------- */
  /* ---------------------
    Featured
  ----------------------- */
  /* ---------------------
    Latest Product
  ----------------------- */
  /* ---------------------
    Form BLog
  ----------------------- */
  /* ---------------------
    Breadcrumb
  ----------------------- */
  /* ---------------------
    Sidebar
  ----------------------- */
  /* ---------------------
    Shop Grid
  ----------------------- */
  /* ---------------------
    Shop Details
  ----------------------- */
  /* ---------------------
    Shop Details
  ----------------------- */
  /* ---------------------
    Shop Cart
  ----------------------- */
  /* ---------------------
    Checkout
  ----------------------- */
  /* ---------------------
    Blog
  ----------------------- */
  /* ---------------------
    Blog Sidebar
  ----------------------- */
  /* ---------------------
    Blog Details Hero
  ----------------------- */
  /* ---------------------
    Blog Details
  ----------------------- */
  /* ---------------------
    Footer
  ----------------------- */
  /* ---------------------
    Contact
  ----------------------- */
  /* ---------------------
    Map
  ----------------------- */
  /* ---------------------
    Contact Form
  ----------------------- */
  /* --------------------------------- Responsive Media Quaries ----------------------------- */
  /* Medium Device = 1200px */
  /* Tablet Device = 768px */
  /* Small Device = 320px */
  /* h1 {
  	font-size: 26px;
  	font-weight: 400;
  	color: #3e3e3e;
  	line-height: 31px;} */
  /*******************/
  /*Home page - city hall*/
  /*Home page - seller*/
  /*Home page - visit shop*/
  /***to manage with my.css****/
  /***/
  /*.card-box-cust2:hover .img-cust-offon {height: 105px;}*/
  /*Product list - Details*/
  /*** effet zoom ***/
  /**************************/
  /*.nice-select-cust .option {color: red !important;}*/
  /*linear-gradient(to bottom, #0b4ea2, #05346f)*/
  /*pwa*/
  /*footer*/
  /* .homebloc {margin-top: 50px !important;}	 */
  /*.btn-linkmd-cust span {padding: 10px;width: 100%;}
  .btn-linkmd-cust:HOVER span {background: white;border-radius: 50%; }*/
  /* .card-box-cust2:HOVER .card-footer-cust {background: #EEF6FC;} */
  /* .card-box-cust2:HOVER .card-footer-cust2 {background: #EEF6FC;} */
  /*chatpop.css*/
}

[dir=rtl] :root {
  --brand-orange: #FF7A00;
  --brand-orange2: #F2994A;
  --brand-blue: #457B9D;
  --brand-greenish: #A8DADC;
  --brand-gray: #D4D4D4;
  --brand-gray-border: 2px solid #D4D4D4;
}

[dir=rtl] html,
[dir=rtl] body {
  /* height: 100%; */
  /*font-family: "Cairo", sans-serif;*/
  font-family: "Tajwal", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  /* display: grid;  */
  /*Transforme la balise body en contenur grid*/
  /* grid-template-rows: auto 1fr auto;  */
  /*d fini la hauteur que les lignes
  de la grille doivent occuper. Auto correspond   la hauteur par d faut de
  la ligne (en fonction de ce qu'il y a dedans donc). Fr (fraction) permet
  d'occuper l'espace restant*/
  /* height: 100vh; */
  /*vh (pour viewport height) permet de s'assurer que le
  body fera bien toute la hauteur de la surface d'affichage du navigateur*/
}

[dir=rtl] body {
  padding-top: 80px;
}

[dir=rtl] h1,
[dir=rtl] h2,
[dir=rtl] h3,
[dir=rtl] h4,
[dir=rtl] h5,
[dir=rtl] h6 {
  margin: 0;
  color: #457B9D;
  font-weight: 700;
  font-family: "Tajwal", sans-serif;
}

[dir=rtl] h1 {
  font-size: 70px;
}

[dir=rtl] h2 {
  font-size: 36px;
}

[dir=rtl] h3 {
  font-size: 30px;
}

[dir=rtl] h4 {
  font-size: 24px;
}

[dir=rtl] h5 {
  font-size: 18px;
}

[dir=rtl] h6 {
  font-size: 16px;
}

[dir=rtl] p {
  font-size: 16px;
  font-family: "Tajwal", sans-serif;
  color: #6f6f6f;
  font-weight: 400;
  line-height: 18px;
  margin: 0 0 15px 0;
}

[dir=rtl] img {
  max-width: 100%;
}

[dir=rtl] input:focus,
[dir=rtl] select:focus,
[dir=rtl] button:focus,
[dir=rtl] textarea:focus {
  outline: none;
}

[dir=rtl] a:hover,
[dir=rtl] a:focus {
  text-decoration: none;
  outline: none;
}

[dir=rtl] ul,
[dir=rtl] ol {
  padding: 0;
  margin: 0;
}

[dir=rtl] .section-title {
  margin-bottom: 10px;
  text-align: center;
}

[dir=rtl] .section-title h2 {
  color: #1c1c1c;
  font-weight: 700;
  position: relative;
}

[dir=rtl] .section-title h2:after {
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 4px;
  width: 80px;
  background: #ffc107;
  content: "";
  margin: 0 auto;
}

[dir=rtl] .set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

[dir=rtl] .spad {
  padding-top: 100px;
  padding-bottom: 100px;
}

[dir=rtl] .text-white h1,
[dir=rtl] .text-white h2,
[dir=rtl] .text-white h3,
[dir=rtl] .text-white h4,
[dir=rtl] .text-white h5,
[dir=rtl] .text-white h6,
[dir=rtl] .text-white p,
[dir=rtl] .text-white span,
[dir=rtl] .text-white li,
[dir=rtl] .text-white a {
  color: #fff;
}

[dir=rtl] .primary-btn {
  display: inline-block;
  font-size: 14px;
  padding: 10px 28px 10px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  background: #ffc107;
  letter-spacing: 2px;
}

[dir=rtl] .site-btn {
  font-size: 14px;
  color: #ffffff;
  color: var(--brand-orange);
  font-weight: 800;
  text-transform: uppercase;
  display: inline-block;
  padding: 13px 15px 12px;
  /* background: #87CEEB //#ffc107; */
  background-color: #fff;
  border: none;
  border-radius: 4px 0 0 4px;
}

[dir=rtl] #preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 999999;
}

[dir=rtl] .loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 50%;
  margin-top: -13px;
  margin-right: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-right-color: transparent;
  }

  50% {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    border: 4px solid #673ab7;
    border-right-color: transparent;
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
    border: 4px solid #f44336;
    border-right-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-right-color: transparent;
  }

  50% {
    -webkit-transform: rotate(-180deg);
    border: 4px solid #673ab7;
    border-right-color: transparent;
  }

  100% {
    -webkit-transform: rotate(-360deg);
    border: 4px solid #f44336;
    border-right-color: transparent;
  }
}

[dir=rtl] .header__top {
  border-bottom: 1px solid #f5f5f5;
}

[dir=rtl] .header__top__left {
  padding: 10px 0 13px;
}

[dir=rtl] .header__top__left ul li {
  font-size: 14px;
  color: #1c1c1c;
  display: inline-block;
  margin-left: 45px;
  position: relative;
}

[dir=rtl] .header__top__left ul li:after {
  position: absolute;
  left: -25px;
  top: 1px;
  height: 20px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

[dir=rtl] .header__top__left ul li:last-child {
  margin-left: 0;
}

[dir=rtl] .header__top__left ul li:last-child:after {
  display: none;
}

[dir=rtl] .header__top__left ul li i {
  color: #252525;
  margin-left: 5px;
}

[dir=rtl] .header__top__right {
  text-align: left;
  padding: 10px 0 13px;
}

[dir=rtl] .header__top__right__social {
  position: relative;
  display: inline-block;
  margin-left: 35px;
}

[dir=rtl] .header__top__right__social:after {
  position: absolute;
  left: -20px;
  top: 1px;
  height: 20px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

[dir=rtl] .header__top__right__social a {
  font-size: 14px;
  display: inline-block;
  color: #1c1c1c;
  margin-left: 20px;
}

[dir=rtl] .header__top__right__social a:last-child {
  margin-left: 0;
}

[dir=rtl] .header__top__right__language {
  position: relative;
  display: inline-block;
  margin-left: 40px;
  cursor: pointer;
}

[dir=rtl] .header__top__right__language:hover ul {
  top: 23px;
  opacity: 1;
  visibility: visible;
}

[dir=rtl] .header__top__right__language:after {
  position: absolute;
  left: -21px;
  top: 1px;
  height: 20px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

[dir=rtl] .header__top__right__language img {
  margin-left: 6px;
}

[dir=rtl] .header__top__right__language div {
  font-size: 14px;
  color: #1c1c1c;
  display: inline-block;
  margin-left: 4px;
}

[dir=rtl] .header__top__right__language span {
  font-size: 14px;
  color: #1c1c1c;
  position: relative;
  top: 2px;
}

[dir=rtl] .header__top__right__language ul {
  background: #222222;
  width: 100px;
  text-align: right;
  padding: 5px 0;
  position: absolute;
  right: 0;
  top: 43px;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

[dir=rtl] .header__top__right__language ul li {
  list-style: none;
}

[dir=rtl] .header__top__right__language ul li a {
  font-size: 14px;
  color: #ffffff;
  padding: 5px 10px;
}

[dir=rtl] .header__top__right__auth {
  display: inline-block;
}

[dir=rtl] .header__top__right__auth a {
  display: block;
  font-size: 14px;
  color: #1c1c1c;
}

[dir=rtl] .header__top__right__auth a i {
  margin-left: 6px;
}

[dir=rtl] .brand-logo {
  max-width: 44px;
  height: auto;
}

[dir=rtl] .header__logo {
  padding: 15px 0;
  /* background: #457B9D; */
}

[dir=rtl] .header__logo a {
  display: inline-block;
}

[dir=rtl] .header__menu {
  font-family: "Tajwal", sans-serif;
  padding: 20px 0;
  padding-top: 30px;
}

[dir=rtl] .header__menu ul li {
  list-style: none;
  display: inline-block;
  margin-left: 50px;
  position: relative;
}

[dir=rtl] .header__menu ul li .header__menu__dropdown {
  position: absolute;
  right: 0;
  top: 50px;
  background: #222222;
  width: 180px;
  z-index: 9;
  padding: 5px 0;
  -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;
  visibility: hidden;
}

[dir=rtl] .header__menu ul li .header__menu__dropdown li {
  margin-left: 0;
  display: block;
}

[dir=rtl] .header__menu ul li .header__menu__dropdown li:hover>a {
  color: #ffc107;
}

[dir=rtl] .header__menu ul li .header__menu__dropdown li a {
  text-transform: capitalize;
  color: #ffffff;
  font-weight: 400;
  padding: 5px 15px;
}

[dir=rtl] .header__menu ul li.active a,
[dir=rtl] .header__menu ul li.active a.nav-link,
[dir=rtl] .header__menu ul li.active a.nav-link:hover,
[dir=rtl] .header__menu ul li.active a.nav-link:visited {
  color: #F2994A;
  /* #ffc107*/
  /*background: white !important; */
}

[dir=rtl] .header__menu ul li.active a.dropdown-item,
[dir=rtl] .header__menu ul li.active a.dropdown-item:visited,
[dir=rtl] .header__menu ul li a.dropdown-item,
[dir=rtl] .header__menu ul li a.dropdown-item:visited {
  color: #2F353A;
  /* #ffc107*/
  /*background: white !important;*/
  font-size: 13px;
  line-height: 30px;
  margin-top: 0px;
  padding: 5px;
  text-transform: upercase;
  letter-spacing: inherit;
  font-weight: bold;
  letter-spacing: 1px;
}

[dir=rtl] .header__menu ul li.active a.dropdown-item:hover,
[dir=rtl] .header__menu ul li a.dropdown-item:hover {
  color: #F2994A;
  /* #ffc107*/
  /*background: white !important;*/
  font-size: 13px;
  padding-right: 10px !important;
  margin-top: 0px;
  padding: 5px;
  text-transform: uppercase;
  letter-spacing: inherit;
  font-weight: bold;
  letter-spacing: 1px;
}

[dir=rtl] .header__menu ul li.active a:hover,
[dir=rtl] .header__menu ul li.active a.nav-link:hover {
  color: #F2994A;
  /* #ffc107*/
  /*background: white !important;   */
  font-weight: bold;
}

[dir=rtl] .dropdown .show {
  border: 1px solid #EAEAED;
}

[dir=rtl] .header__menu ul li:hover .header__menu__dropdown {
  top: 30px;
  opacity: 1;
  visibility: visible;
}

[dir=rtl] .header__menu ul li:hover>a {
  text-decoration: none;
  color: #4C4C4C;
}

[dir=rtl] .header__menu ul li:last-child {
  margin-left: 0;
}

[dir=rtl] .header__menu ul li.dropdown a {
  padding-right: 10px;
  padding-left: 10px;
}

[dir=rtl] .header__menu ul li a {
  font-size: 12px;
  /*calc(6px + .9vw)*/
  color: #8A96A0;
  /*#252525*/
  /*background: white;*/
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 1px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  padding: 0px 0px;
  display: block;
  margin-top: 5px;
  border-bottom: 1px solid transparent;
}

[dir=rtl] .navbar-nav .nav-link:focus,
[dir=rtl] .navbar-nav .nav-link {
  color: white;
}

[dir=rtl] .navbar-nav .nav-link:hover {
  color: white;
}

@media screen and (min-width: 320px) {
  [dir=rtl] .header__menu ul li a {
    font-size: calc(12px + 6 * (100vw - 320px) / 680);
  }

  [dir=rtl] .app-header {
    height: 70px;
  }
}

@media screen and (min-width: 1200px) {
  [dir=rtl] .header__menu ul li a {
    font-size: 18px;
  }

  [dir=rtl] .app-header {
    height: 60px;
  }
}

[dir=rtl] .header__cart {
  text-align: left;
  padding: 24px 0;
}

[dir=rtl] .header__cart ul {
  display: inline-block;
  margin-left: 25px;
}

[dir=rtl] .header__cart ul li {
  list-style: none;
  display: inline-block;
  margin-left: 15px;
}

[dir=rtl] .header__cart ul li:last-child {
  margin-left: 0;
}

[dir=rtl] .header__cart ul li a {
  position: relative;
}

[dir=rtl] .header__cart ul li a i {
  font-size: 18px;
  color: #1c1c1c;
}

[dir=rtl] .header__cart ul li a span {
  height: 13px;
  width: 13px;
  background: #ffc107;
  font-size: 10px;
  color: #ffffff;
  line-height: 13px;
  text-align: center;
  font-weight: 700;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: -12px;
}

[dir=rtl] .header__cart .header__cart__price {
  font-size: 14px;
  color: #6f6f6f;
  display: inline-block;
}

[dir=rtl] .header__cart .header__cart__price span {
  color: #252525;
  font-weight: 700;
}

[dir=rtl] .humberger__menu__wrapper {
  display: none;
}

[dir=rtl] .humberger__open {
  display: none;
}

[dir=rtl] .hero {
  padding-bottom: 50px;
}

[dir=rtl] .hero.hero-normal {
  padding-bottom: 0px;
}

[dir=rtl] .hero.hero-normal .hero__categories {
  position: relative;
}

[dir=rtl] .hero.hero-normal .hero__categories {
  /* display: none; */
  position: absolute;
  right: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  background: #ffffff;
}

@media (max-width: 990px) {
  [dir=rtl] .hero.hero-normal .hero__categories {
    top: 28px;
    width: calc(100% - 0px);
    /*calc(100% - 30px)*/
    margin-right: 0px;
    /*15px*/
  }
}

[dir=rtl] .hero.hero-normal .hero__search {
  margin-bottom: 0;
}

[dir=rtl] .hero__categories__all {
  /*background: #262A2E #ffc107*/
  background: #D1DCE5;
  /*background: url('../img/backgshop3.png') ;*/
  position: relative;
  /* padding: 16px 25px 10px 40px;*/
  cursor: pointer;
  /* border-bottom: 1px solid #E6E8EA;*/
  /*font-weight: 600;*/
  color: #2F353A;
}

[dir=rtl] .hero__categories__all:HOVER {
  color: #2F353A;
  background: #BCCBD8;
}

[dir=rtl] .hero__categories__all i {
  font-size: 0.9rem;
  color: black;
  margin-left: 5px;
}

[dir=rtl] .hero__categories__all span {
  font-size: 0.9rem;
  /*font-family: 'Open Sans', sans-serif;*/
  letter-spacing: -1px;
  font-weight: 500;
  letter-spacing: 0.01rem !important;
}

[dir=rtl] .hero__categories__all:after {
  position: absolute;
  left: 18px;
  top: 25px;
  content: "3";
  font-family: "ElegantIcons";
  font-size: 22px;
  color: black;
}

[dir=rtl] .hero__categories ul {
  border: 1px solid #ebebeb;
  padding-right: 0px;
  padding-top: 2px;
  padding-bottom: 2px;
  min-height: 100px;
  max-height: 300px;
  overflow: hidden;
  /*background: #F8F9FA;*/
  background: #E5ECF2;
  font-weight: 600;
}

[dir=rtl] .hero__categories ul li {
  list-style: none;
}

[dir=rtl] .hero__categories ul li a {
  font-size: 0.875rem;
  color: #1c1c1c;
  line-height: 25px;
  display: block;
  padding-right: 20px;
}

[dir=rtl] .hero__categories ul li:hover {
  font-weight: 600;
  background: white;
}

[dir=rtl] .hero__categories ul li a:hover {
  color: #007BFF !important;
}

[dir=rtl] .hero__search {
  /* overflow: hidden; */
  margin-bottom: 30px;
}

[dir=rtl] .hero__search__form {
  /*min-width: 540px;*/
  /* height: 50px; */
  border: 0px solid #ebebeb;
  position: relative;
  /*margin-left: 40px;*/
}

[dir=rtl] .hero__search__form form .hero__search__categories {
  width: 30%;
  float: right;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 700;
  padding-right: 18px;
  padding-top: 11px;
  position: relative;
}

[dir=rtl] .hero__search__form form .hero__search__categories:after {
  position: absolute;
  left: 0;
  top: 14px;
  height: 20px;
  width: 1px;
  background: #000000;
  opacity: 0.1;
  content: "";
}

[dir=rtl] .hero__search__form form .hero__search__categories span {
  position: absolute;
  left: 14px;
  top: 14px;
}

[dir=rtl] .hero__search__form form input,
[dir=rtl] .hero__search__form form select {
  border: none;
  height: 48px;
  font-size: 16px;
  color: #b2b2b2;
  padding-right: 20px;
}

[dir=rtl] .hero__search__form form input {
  /*width: 200px;*/
  /*70%*/
}

[dir=rtl] .hero__search__form form .nice-select {
  border: none;
  height: 45px;
  line-height: 45px;
}

[dir=rtl] .hero__search__form form input::placeholder {
  color: #b2b2b2;
}

[dir=rtl] .hero__search__form form button {
  position: absolute;
  left: 0;
  top: -1px;
  height: 50px;
}

[dir=rtl] .hero__search__phone {
  float: left;
}

[dir=rtl] .hero__search__phone__icon {
  font-size: 18px;
  color: #ffc107;
  height: 50px;
  width: 50px;
  background: #f5f5f5;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  float: right;
  margin-left: 20px;
}

[dir=rtl] .hero__search__phone__text {
  overflow: hidden;
}

[dir=rtl] .hero__search__phone__text h5 {
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 5px;
}

[dir=rtl] .hero__search__phone__text span {
  font-size: 14px;
  color: #6f6f6f;
}

[dir=rtl] .hero__item {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  padding-right: 75px;
}

[dir=rtl] .hero__text span {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  color: #ffc107;
}

[dir=rtl] .hero__text h2 {
  font-size: 46px;
  color: #252525;
  line-height: 52px;
  font-weight: 700;
  margin: 10px 0;
}

[dir=rtl] .hero__text p {
  margin-bottom: 35px;
}

[dir=rtl] .categories__item {
  height: 270px;
  position: relative;
}

[dir=rtl] .categories__item h5 {
  position: absolute;
  right: 0;
  width: 100%;
  padding: 0 20px;
  bottom: 20px;
  text-align: center;
}

[dir=rtl] .categories__item h5 a {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 0 10px;
  background: #ffffff;
  display: block;
}

[dir=rtl] .categories__slider .col-lg-3 {
  max-width: 100%;
}

[dir=rtl] .categories__slider.owl-carousel .owl-nav button {
  font-size: 50pt;
  color: #87CEEB;
  height: 70px;
  width: 50px;
  line-height: 70px;
  text-align: center;
  border: 0px solid #ebebeb;
  position: absolute;
  /* left: -25px; */
  top: 50%;
  -webkit-transform: translateY(-35px);
  background: transparent;
  font-weight: bold;
}

[dir=rtl] .categories__slider.owl-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.2);
}

[dir=rtl] .categories__slider.owl-carousel .owl-nav button.owl-next {
  right: auto;
  left: 0px;
}

[dir=rtl] .featured {
  padding-top: 80px;
  padding-bottom: 40px;
}

[dir=rtl] .featured__controls {
  text-align: center;
  margin-bottom: 50px;
}

[dir=rtl] .featured__controls ul li {
  list-style: none;
  font-size: 18px;
  color: #1c1c1c;
  display: inline-block;
  margin-left: 25px;
  position: relative;
  cursor: pointer;
}

[dir=rtl] .featured__controls ul li.active:after {
  opacity: 1;
}

[dir=rtl] .featured__controls ul li:after {
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #ffc107;
  content: "";
  opacity: 0;
}

[dir=rtl] .featured__controls ul li:last-child {
  margin-left: 0;
}

[dir=rtl] .featured__item {
  margin-bottom: 50px;
}

[dir=rtl] .featured__item:hover .featured__item__pic .featured__item__pic__hover {
  bottom: 20px;
}

[dir=rtl] .featured__item__pic {
  height: 270px;
  position: relative;
  overflow: hidden;
  background-position: center center;
}

[dir=rtl] .featured__item__pic__hover {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 100%;
  text-align: center;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

[dir=rtl] .featured__item__pic__hover li {
  list-style: none;
  display: inline-block;
  margin-left: 6px;
}

[dir=rtl] .featured__item__pic__hover li:last-child {
  margin-left: 0;
}

[dir=rtl] .featured__item__pic__hover li:hover a {
  background: #ffc107;
  border-color: #ffc107;
}

[dir=rtl] .featured__item__pic__hover li:hover a i {
  color: #ffffff;
  transform: rotate(-360deg);
}

[dir=rtl] .featured__item__pic__hover li a {
  font-size: 16px;
  color: #1c1c1c;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  background: #ffffff;
  display: block;
  border-radius: 50%;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

[dir=rtl] .featured__item__pic__hover li a i {
  position: relative;
  transform: rotate(0);
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

[dir=rtl] .featured__item__text {
  text-align: center;
  padding-top: 15px;
}

[dir=rtl] .featured__item__text h6 {
  margin-bottom: 10px;
}

[dir=rtl] .featured__item__text h6 a {
  color: #252525;
}

[dir=rtl] .featured__item__text h5 {
  color: #252525;
  font-weight: 700;
}

[dir=rtl] .latest-product {
  padding-top: 80px;
  padding-bottom: 0;
}

[dir=rtl] .latest-product__text h4 {
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 45px;
}

[dir=rtl] .latest-product__slider.owl-carousel .owl-nav {
  position: absolute;
  left: 20px;
  top: -75px;
}

[dir=rtl] .latest-product__slider.owl-carousel .owl-nav button {
  height: 30px;
  width: 30px;
  background: #F3F6FA;
  border: 1px solid #e6e6e6;
  font-size: 14px;
  color: #636363;
  margin-left: 10px;
  line-height: 30px;
  text-align: center;
}

[dir=rtl] .latest-product__slider.owl-carousel .owl-nav button span {
  font-weight: 700;
}

[dir=rtl] .latest-product__slider.owl-carousel .owl-nav button:last-child {
  margin-left: 0;
}

[dir=rtl] .latest-product__item {
  margin-bottom: 20px;
  overflow: hidden;
  display: block;
}

[dir=rtl] .latest-product__item__pic {
  float: right;
  margin-left: 26px;
}

[dir=rtl] .latest-product__item__pic img {
  height: 110px;
  width: 110px;
}

[dir=rtl] .latest-product__item__text {
  overflow: hidden;
  padding-top: 10px;
}

[dir=rtl] .latest-product__item__text h6 {
  color: #252525;
  margin-bottom: 8px;
}

[dir=rtl] .latest-product__item__text span {
  font-size: 18px;
  display: block;
  color: #252525;
  font-weight: 700;
}

[dir=rtl] .from-blog {
  padding-top: 50px;
  padding-bottom: 50px;
}

[dir=rtl] .from-blog .blog__item {
  margin-bottom: 30px;
}

[dir=rtl] .from-blog__title {
  margin-bottom: 70px;
}

[dir=rtl] .breadcrumb-section {
  display: flex;
  align-items: center;
  padding: 45px 0 40px;
}

[dir=rtl] .breadcrumb__text h2 {
  font-size: 46px;
  color: #ffffff;
  font-weight: 700;
}

[dir=rtl] .breadcrumb__option a {
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  margin-left: 20px;
  position: relative;
}

[dir=rtl] .breadcrumb__option a:after {
  position: absolute;
  left: -12px;
  top: 13px;
  height: 1px;
  width: 10px;
  background: #ffffff;
  content: "";
}

[dir=rtl] .breadcrumb__option span {
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
}

@media (max-width: 768px) {
  [dir=rtl] {
    /**/
    /* .filter_pos_cust {position: absolute;top: 130px;right: 10px;z-index: 1000000;}*/
  }

  [dir=rtl] .sidebar.filters {
    position: absolute;
    right: -100%;
    transition: right 0.3s;
    background: white;
    width: 100%;
    padding: 15px 30px;
    z-index: 1;
    top: 50px;
  }

  [dir=rtl] .sidebar.filters.active {
    right: 0;
    top: 50px;
  }
}

[dir=rtl] .sidebar__item {
  margin-top: 0px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  /*border-bottom:1px solid #ededed;*/
  padding-right: 5px;
  font-size: 1em;
  background: #D1DCE5;
}

[dir=rtl] .sidebar__item.sidebar__item__color--option {
  overflow: hidden;
}

[dir=rtl] .sidebar__item h4 {
  margin-bottom: 5px;
  font-size: 0.875rem;
  /*background: #505061;*/
  /*#87CEEB*/
  padding: 5px;
  width: 100%;
  margin: 0px;
  margin-right: -5px;
  text-transform: uppercase;
  color: #457B9D;
  /*#1c1c1c*/
  font-weight: 600;
  font-family: arial;
}

[dir=rtl] .sidebar__item ul li {
  list-style: none;
  font-size: 0.875rem;
}

[dir=rtl] .sidebar__item ul li a {
  font-size: 16px;
  color: #1c1c1c;
  line-height: 39px;
  display: block;
}

[dir=rtl] .sidebar__item .latest-product__text {
  position: relative;
}

[dir=rtl] .sidebar__item .latest-product__text h4 {
  margin-bottom: 45px;
}

[dir=rtl] .sidebar__item .latest-product__text .owl-carousel .owl-nav {
  left: 0;
}

[dir=rtl] .price-range-wrap .range-slider {
  margin-top: 20px;
}

[dir=rtl] .price-range-wrap .range-slider .price-input {
  position: relative;
}

[dir=rtl] .price-range-wrap .range-slider .price-input:after {
  position: absolute;
  right: 80px;
  top: 13px;
  height: 1px;
  width: 20px;
  background: #dd2222;
  content: "";
}

[dir=rtl] .price-range-wrap .range-slider .price-input input {
  font-size: 16px;
  color: #dd2222;
  font-weight: 700;
  max-width: 49%;
  border: none;
  display: inline-block;
}

[dir=rtl] .price-range-wrap .price-range {
  border-radius: 0;
}

[dir=rtl] .price-range-wrap .price-range.ui-widget-content {
  border: none;
  background: #ebebeb;
  height: 5px;
}

[dir=rtl] .price-range-wrap .price-range.ui-widget-content .ui-slider-handle {
  height: 13px;
  width: 13px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  cursor: pointer;
}

[dir=rtl] .price-range-wrap .price-range .ui-slider-range {
  background: #dd2222;
  border-radius: 0;
}

[dir=rtl] .price-range-wrap .price-range .ui-slider-range.ui-corner-all.ui-widget-header:last-child {
  background: #dd2222;
}

[dir=rtl] .sidebar__item__color {
  float: right;
  width: 40%;
}

[dir=rtl] .sidebar__item__color.sidebar__item__color--white label:after {
  border: 2px solid #333333;
  background: transparent;
}

[dir=rtl] .sidebar__item__color.sidebar__item__color--gray label:after {
  background: #E9A625;
}

[dir=rtl] .sidebar__item__color.sidebar__item__color--red label:after {
  background: #D62D2D;
}

[dir=rtl] .sidebar__item__color.sidebar__item__color--black label:after {
  background: #252525;
}

[dir=rtl] .sidebar__item__color.sidebar__item__color--blue label:after {
  background: #249BC8;
}

[dir=rtl] .sidebar__item__color.sidebar__item__color--green label:after {
  background: #3CC032;
}

[dir=rtl] .sidebar__item__color label {
  font-size: 16px;
  color: #333333;
  position: relative;
  padding-right: 32px;
  cursor: pointer;
}

[dir=rtl] .sidebar__item__color label input {
  position: absolute;
  visibility: hidden;
}

[dir=rtl] .sidebar__item__color label:after {
  position: absolute;
  right: 0;
  top: 5px;
  height: 14px;
  width: 14px;
  background: #222;
  content: "";
  border-radius: 50%;
}

[dir=rtl] .sidebar__item__size {
  display: inline-block;
  margin-left: 16px;
  margin-bottom: 10px;
}

[dir=rtl] .sidebar__item__size label {
  font-size: 12px;
  color: #6f6f6f;
  display: inline-block;
  padding: 8px 25px 6px;
  background: #f5f5f5;
  cursor: pointer;
  margin-bottom: 0;
}

[dir=rtl] .sidebar__item__size label input {
  position: absolute;
  visibility: hidden;
}

[dir=rtl] .product {
  padding-top: 80px;
  padding-bottom: 0px;
  /*80px*/
}

[dir=rtl] .product__discount {
  padding-bottom: 50px;
}

[dir=rtl] .product__discount__title {
  text-align: right;
  margin-bottom: 65px;
}

[dir=rtl] .product__discount__title h2 {
  display: inline-block;
}

[dir=rtl] .product__discount__title h2:after {
  margin: 0;
  width: 100%;
}

[dir=rtl] .product__discount__item:hover .product__discount__item__pic .product__item__pic__hover {
  bottom: 20px;
}

[dir=rtl] .product__discount__item__pic {
  height: 270px;
  position: relative;
  overflow: hidden;
}

[dir=rtl] .product__discount__item__pic .product__discount__percent {
  height: 45px;
  width: 45px;
  background: #dd2222;
  border-radius: 50%;
  font-size: 14px;
  color: #ffffff;
  line-height: 45px;
  text-align: center;
  position: absolute;
  right: 15px;
  top: 15px;
}

[dir=rtl] .product__item__pic__hover {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 100%;
  text-align: center;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

[dir=rtl] .product__item__pic__hover li {
  list-style: none;
  display: inline-block;
  margin-left: 6px;
}

[dir=rtl] .product__item__pic__hover li:last-child {
  margin-left: 0;
}

[dir=rtl] .product__item__pic__hover li:hover a {
  background: #ffc107;
  border-color: #ffc107;
}

[dir=rtl] .product__item__pic__hover li:hover a i {
  color: #ffffff;
  transform: rotate(-360deg);
}

[dir=rtl] .product__item__pic__hover li a {
  font-size: 16px;
  color: #1c1c1c;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  background: #ffffff;
  display: block;
  border-radius: 50%;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

[dir=rtl] .product__item__pic__hover li a i {
  position: relative;
  transform: rotate(0);
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

[dir=rtl] .product__discount__item__text {
  text-align: center;
  padding-top: 20px;
}

[dir=rtl] .product__discount__item__text span {
  font-size: 14px;
  color: #b2b2b2;
  display: block;
  margin-bottom: 4px;
}

[dir=rtl] .product__discount__item__text h5 {
  margin-bottom: 6px;
}

[dir=rtl] .product__discount__item__text h5 a {
  color: #1c1c1c;
}

[dir=rtl] .product__discount__item__text .product__item__price {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
}

[dir=rtl] .product__discount__item__text .product__item__price span {
  display: inline-block;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 10px;
}

[dir=rtl] .product__discount__slider .col-lg-4 {
  max-width: 100%;
}

[dir=rtl] .product__discount__slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 30px;
}

[dir=rtl] .product__discount__slider.owl-carousel .owl-dots button {
  height: 12px;
  width: 12px;
  border: 1px solid #b2b2b2;
  border-radius: 50%;
  margin-left: 12px;
}

[dir=rtl] .product__discount__slider.owl-carousel .owl-dots button.active {
  background: #707070;
  border-color: #6f6f6f;
}

[dir=rtl] .product__discount__slider.owl-carousel .owl-dots button:last-child {
  margin-left: 0;
}

[dir=rtl] .item-box {
  padding: 1.5em;
  border: 2px solid #E5ECF2;
  transition: border-color 0.3s;
  margin-bottom: 10px;
}

[dir=rtl] .ratings .checked {
  color: orange;
}

[dir=rtl] .card-box-cust {
  border: 1px solid white;
}

[dir=rtl] .card-box-cust:hover {
  border: 1px solid #87CEEB;
}

[dir=rtl] .card-box-cust2 {
  border: 2px solid #D4D4D4;
  position: relative;
  height: 465px;
  overflow: hidden;
  border-radius: 5px;
}

[dir=rtl] .card-box-cust2:hover {
  border: 2px solid var(--brand-blue);
}

[dir=rtl] .card-box-cust2:hover h4 {
  color: blue;
}

[dir=rtl] .filter__item {
  /*padding-top: 45px;*/
  /*border-top: 1px solid #ebebeb;*/
  padding-bottom: 0px;
}

[dir=rtl] .filter__sort {
  margin-bottom: 15px;
}

[dir=rtl] .filter__sort span {
  font-size: 1.1rem;
  color: #6f6f6f;
  display: inline-block;
}

[dir=rtl] .filter__sort .nice-select {
  background-color: #fff;
  border-radius: 0;
  border: none;
  display: inline-block;
  float: none;
  height: 0;
  line-height: 0;
  padding-right: 18px;
  padding-left: 30px;
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 700;
  cursor: pointer;
}

[dir=rtl] .filter__sort .nice-select span {
  color: #1c1c1c;
}

[dir=rtl] .filter__sort .nice-select:after {
  border-bottom: 1.5px solid #1c1c1c;
  border-left: 1.5px solid #1c1c1c;
  height: 8px;
  margin-top: 0;
  left: 16px;
  width: 8px;
  top: -5px;
}

[dir=rtl] .filter__sort .nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}

[dir=rtl] .filter__sort .nice-select .list {
  border-radius: 0;
  margin-top: 0;
  top: 15px;
}

[dir=rtl] .filter__sort .nice-select .option {
  line-height: 30px;
  min-height: 30px;
}

[dir=rtl] .filter__found {
  text-align: center;
  margin-bottom: 15px;
}

[dir=rtl] .filter__found h6 {
  font-size: 16px;
  color: #b2b2b2;
}

[dir=rtl] .filter__found h6 span {
  color: #1c1c1c;
  font-weight: 700;
  margin-left: 5px;
}

[dir=rtl] .filter__option {
  text-align: left;
  margin-bottom: 15px;
}

[dir=rtl] .filter__option span {
  font-size: 24px;
  color: #b2b2b2;
  margin-left: 10px;
  cursor: pointer;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

[dir=rtl] .filter__option span:last-child {
  margin: 0;
}

[dir=rtl] .filter__option span:hover {
  color: #ffc107;
}

[dir=rtl] .product__item {
  margin-bottom: 50px;
}

[dir=rtl] .product__item:hover .product__item__pic .product__item__pic__hover {
  bottom: 20px;
}

[dir=rtl] .product__item__pic {
  height: 270px;
  position: relative;
  overflow: hidden;
}

[dir=rtl] .product__item__pic__hover {
  position: absolute;
  right: 0;
  bottom: -50px;
  width: 100%;
  text-align: center;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

[dir=rtl] .product__item__pic__hover li {
  list-style: none;
  display: inline-block;
  margin-left: 6px;
}

[dir=rtl] .product__item__pic__hover li:last-child {
  margin-left: 0;
}

[dir=rtl] .product__item__pic__hover li:hover a {
  background: #ffc107;
  border-color: #ffc107;
}

[dir=rtl] .product__item__pic__hover li:hover a i {
  color: #ffffff;
  transform: rotate(-360deg);
}

[dir=rtl] .product__item__pic__hover li a {
  font-size: 16px;
  color: #1c1c1c;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid #ebebeb;
  background: #ffffff;
  display: block;
  border-radius: 50%;
  -webkit-transition: all, 0.5s;
  -moz-transition: all, 0.5s;
  -ms-transition: all, 0.5s;
  -o-transition: all, 0.5s;
  transition: all, 0.5s;
}

[dir=rtl] .product__item__pic__hover li a i {
  position: relative;
  transform: rotate(0);
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

[dir=rtl] .product__item__text {
  text-align: center;
  padding-top: 15px;
}

[dir=rtl] .product__item__text h6 {
  margin-bottom: 10px;
}

[dir=rtl] .product__item__text h6 a {
  color: #252525;
}

[dir=rtl] .product__item__text h5 {
  color: #252525;
  font-weight: 700;
}

[dir=rtl] .product__pagination,
[dir=rtl] .blog__pagination {
  padding-top: 10px;
  text-align: center;
}

[dir=rtl] .product__pagination a,
[dir=rtl] .blog__pagination a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #b2b2b2;
  font-size: 14px;
  color: #b2b2b2;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  margin-left: 16px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  border-radius: 4px;
}

[dir=rtl] .product__pagination a,
[dir=rtl] .blog__pagination a {
  background: white;
}

[dir=rtl] .product__pagination a:hover,
[dir=rtl] .blog__pagination a:hover {
  background: #87CEEB;
  border-color: #87CEEB;
  color: #ffffff;
}

[dir=rtl] .product__pagination a.selected,
[dir=rtl] .blog__pagination a.selected {
  background: #87CEEB;
  border-color: #87CEEB;
  color: #ffffff;
}

[dir=rtl] .product__pagination a:last-child,
[dir=rtl] .blog__pagination a:last-child {
  margin-left: 0;
}

[dir=rtl] .product-details {
  padding-top: 80px;
}

[dir=rtl] .product__details__pic__item {
  margin-bottom: 20px;
}

[dir=rtl] .product__details__pic__item img {
  min-width: 100%;
}

[dir=rtl] .product__details__pic__slider img {
  cursor: pointer;
}

[dir=rtl] .product__details__pic__slider.owl-carousel .owl-item img {
  width: auto;
}

[dir=rtl] .product__details__text h3 {
  color: #252525;
  font-weight: 700;
  margin-bottom: 16px;
}

[dir=rtl] .product__details__text .product__details__rating {
  font-size: 14px;
  margin-bottom: 12px;
}

[dir=rtl] .product__details__text .product__details__rating i {
  margin-left: -2px;
  color: #EDBB0E;
}

[dir=rtl] .product__details__text .product__details__rating span {
  color: #dd2222;
  margin-right: 4px;
}

[dir=rtl] .product__details__text .product__details__price {
  font-size: 30px;
  color: #dd2222;
  font-weight: 600;
  margin-bottom: 15px;
}

[dir=rtl] .product__details__text p {
  margin-bottom: 45px;
}

[dir=rtl] .product__details__text .primary-btn {
  padding: 16px 28px 14px;
  margin-left: 6px;
  margin-bottom: 5px;
}

[dir=rtl] .product__details__text .heart-icon {
  display: inline-block;
  font-size: 16px;
  color: #6f6f6f;
  padding: 13px 16px 13px;
  background: #f5f5f5;
}

[dir=rtl] .product__details__text ul {
  border-top: 1px solid #ebebeb;
  padding-top: 40px;
  margin-top: 50px;
}

[dir=rtl] .product__details__text ul li {
  font-size: 16px;
  color: #1c1c1c;
  list-style: none;
  line-height: 36px;
}

[dir=rtl] .product__details__text ul li b {
  font-weight: 700;
  width: 170px;
  display: inline-block;
}

[dir=rtl] .product__details__text ul li span samp {
  color: #dd2222;
}

[dir=rtl] .product__details__text ul li .share {
  display: inline-block;
}

[dir=rtl] .product__details__text ul li .share a {
  display: inline-block;
  font-size: 15px;
  color: #1c1c1c;
  margin-left: 25px;
}

[dir=rtl] .product__details__text ul li .share a:last-child {
  margin-left: 0;
}

[dir=rtl] .product__details__quantity {
  display: inline-block;
  margin-left: 6px;
}

[dir=rtl] .pro-qty {
  width: 140px;
  height: 50px;
  display: inline-block;
  position: relative;
  text-align: center;
  background: #f5f5f5;
  margin-bottom: 5px;
}

[dir=rtl] .pro-qty input {
  height: 100%;
  width: 100%;
  font-size: 16px;
  color: #6f6f6f;
  width: 50px;
  border: none;
  background: #f5f5f5;
  text-align: center;
}

[dir=rtl] .pro-qty .qtybtn {
  width: 35px;
  font-size: 16px;
  color: #6f6f6f;
  cursor: pointer;
  display: inline-block;
}

[dir=rtl] .product__details__tab {
  padding-top: 85px;
}

[dir=rtl] .product__details__tab .nav-tabs {
  border-bottom: none;
  justify-content: center;
  position: relative;
}

[dir=rtl] .product__details__tab .nav-tabs:before {
  position: absolute;
  right: 0;
  top: 12px;
  height: 1px;
  width: 370px;
  background: #ebebeb;
  content: "";
}

[dir=rtl] .product__details__tab .nav-tabs:after {
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 370px;
  background: #ebebeb;
  content: "";
}

[dir=rtl] .product__details__tab .nav-tabs li {
  margin-bottom: 0;
  margin-left: 65px;
}

[dir=rtl] .product__details__tab .nav-tabs li:last-child {
  margin-left: 0;
}

[dir=rtl] .product__details__tab .nav-tabs li a {
  font-size: 16px;
  color: #999999;
  font-weight: 700;
  border: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  padding: 0;
}

[dir=rtl] .product__details__tab .product__details__tab__desc {
  padding-top: 44px;
}

[dir=rtl] .product__details__tab .product__details__tab__desc h6 {
  font-weight: 700;
  color: #333333;
  margin-bottom: 26px;
}

[dir=rtl] .product__details__tab .product__details__tab__desc p {
  color: #666666;
}

[dir=rtl] .related-product {
  padding-bottom: 30px;
}

[dir=rtl] .related__product__title {
  margin-bottom: 70px;
}

[dir=rtl] .shoping-cart {
  padding-top: 80px;
  padding-bottom: 80px;
}

[dir=rtl] .shoping__cart__table {
  margin-bottom: 30px;
}

[dir=rtl] .shoping__cart__table table {
  width: 100%;
  text-align: center;
}

[dir=rtl] .shoping__cart__table table thead tr {
  border-bottom: 1px solid #ebebeb;
}

[dir=rtl] .shoping__cart__table table thead th {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  padding-bottom: 20px;
}

[dir=rtl] .shoping__cart__table table thead th.shoping__product {
  text-align: right;
}

[dir=rtl] .shoping__cart__table table tbody tr td {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ebebeb;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__item {
  width: 630px;
  text-align: right;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__item img {
  display: inline-block;
  margin-left: 25px;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__item h5 {
  color: #1c1c1c;
  display: inline-block;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__price {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  width: 100px;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__total {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  width: 110px;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__item__close {
  text-align: left;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__item__close span {
  font-size: 24px;
  color: #b2b2b2;
  cursor: pointer;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__quantity {
  width: 225px;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty {
  width: 120px;
  height: 40px;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input {
  color: #1c1c1c;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty input::placeholder {
  color: #1c1c1c;
}

[dir=rtl] .shoping__cart__table table tbody tr td.shoping__cart__quantity .pro-qty .qtybtn {
  width: 15px;
}

[dir=rtl] .primary-btn.cart-btn {
  color: #6f6f6f;
  padding: 14px 30px 12px;
  background: #f5f5f5;
}

[dir=rtl] .primary-btn.cart-btn span {
  font-size: 14px;
}

[dir=rtl] .primary-btn.cart-btn.cart-btn-right {
  float: left;
}

[dir=rtl] .shoping__discount {
  margin-top: 45px;
}

[dir=rtl] .shoping__discount h5 {
  font-size: 20px;
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 25px;
}

[dir=rtl] .shoping__discount form input {
  width: 255px;
  height: 46px;
  border: 1px solid #cccccc;
  font-size: 16px;
  color: #b2b2b2;
  text-align: center;
  display: inline-block;
  margin-left: 15px;
}

[dir=rtl] .shoping__discount form input::placeholder {
  color: #b2b2b2;
}

[dir=rtl] .shoping__discount form button {
  padding: 15px 30px 11px;
  font-size: 12px;
  letter-spacing: 4px;
  background: #6f6f6f;
}

[dir=rtl] .shoping__checkout {
  background: #f5f5f5;
  padding: 30px;
  padding-top: 20px;
  margin-top: 50px;
}

[dir=rtl] .shoping__checkout h5 {
  color: #1c1c1c;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 28px;
}

[dir=rtl] .shoping__checkout ul {
  margin-bottom: 28px;
}

[dir=rtl] .shoping__checkout ul li {
  font-size: 16px;
  color: #1c1c1c;
  font-weight: 700;
  list-style: none;
  overflow: hidden;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 13px;
  margin-bottom: 18px;
}

[dir=rtl] .shoping__checkout ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

[dir=rtl] .shoping__checkout ul li span {
  font-size: 18px;
  color: #dd2222;
  float: left;
}

[dir=rtl] .shoping__checkout .primary-btn {
  display: block;
  text-align: center;
}

[dir=rtl] .checkout {
  padding-top: 80px;
  padding-bottom: 60px;
}

[dir=rtl] .checkout h6 {
  color: #999999;
  text-align: center;
  background: #f5f5f5;
  border-top: 1px solid #6AB963;
  padding: 12px 0 12px;
  margin-bottom: 75px;
}

[dir=rtl] .checkout h6 span {
  font-size: 16px;
  color: #6AB963;
  margin-left: 5px;
}

[dir=rtl] .checkout h6 a {
  text-decoration: underline;
  color: #999999;
}

[dir=rtl] .checkout__form h4 {
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
  margin-bottom: 25px;
}

[dir=rtl] .checkout__form p {
  column-rule: #b2b2b2;
}

[dir=rtl] .checkout__input {
  margin-bottom: 24px;
}

[dir=rtl] .checkout__input p {
  color: #1c1c1c;
  margin-bottom: 20px;
}

[dir=rtl] .checkout__input p span {
  color: #dd2222;
}

[dir=rtl] .checkout__input input {
  width: 100%;
  height: 46px;
  border: 1px solid #ebebeb;
  padding-right: 20px;
  font-size: 16px;
  color: #b2b2b2;
  border-radius: 4px;
}

[dir=rtl] .checkout__input input.checkout__input__add {
  margin-bottom: 20px;
}

[dir=rtl] .checkout__input input::placeholder {
  color: #b2b2b2;
}

[dir=rtl] .checkout__input__checkbox {
  margin-bottom: 10px;
}

[dir=rtl] .checkout__input__checkbox label {
  position: relative;
  font-size: 16px;
  color: #1c1c1c;
  padding-right: 40px;
  cursor: pointer;
}

[dir=rtl] .checkout__input__checkbox label input {
  position: absolute;
  visibility: hidden;
}

[dir=rtl] .checkout__input__checkbox label input:checked~.checkmark {
  background: #ffc107;
  border-color: #ffc107;
}

[dir=rtl] .checkout__input__checkbox label input:checked~.checkmark:after {
  opacity: 1;
}

[dir=rtl] .checkout__input__checkbox label .checkmark {
  position: absolute;
  right: 0;
  top: 4px;
  height: 16px;
  width: 14px;
  border: 1px solid #a6a6a6;
  content: "";
  border-radius: 4px;
}

[dir=rtl] .checkout__input__checkbox label .checkmark:after {
  position: absolute;
  right: 1px;
  top: 1px;
  width: 10px;
  height: 8px;
  border: solid white;
  border-width: 3px 0px 0px 3px;
  -webkit-transform: rotate(-127deg);
  -ms-transform: rotate(-127deg);
  transform: rotate(-127deg);
  content: "";
  opacity: 0;
}

[dir=rtl] .checkout__order {
  background: #f5f5f5;
  padding: 40px;
  padding-top: 30px;
}

[dir=rtl] .checkout__order h4 {
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

[dir=rtl] .checkout__order .checkout__order__products {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 10px;
}

[dir=rtl] .checkout__order .checkout__order__products span {
  float: left;
}

[dir=rtl] .checkout__order ul {
  margin-bottom: 12px;
}

[dir=rtl] .checkout__order ul li {
  font-size: 16px;
  color: #6f6f6f;
  line-height: 40px;
  list-style: none;
}

[dir=rtl] .checkout__order ul li span {
  font-weight: 700;
  float: left;
}

[dir=rtl] .checkout__order .checkout__order__subtotal {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  border-top: 1px solid #e1e1e1;
  padding-bottom: 15px;
  margin-bottom: 15px;
  padding-top: 15px;
}

[dir=rtl] .checkout__order .checkout__order__subtotal span {
  float: left;
}

[dir=rtl] .checkout__order .checkout__input__checkbox label {
  padding-right: 20px;
}

[dir=rtl] .checkout__order .checkout__order__total {
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 700;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 15px;
  margin-bottom: 25px;
}

[dir=rtl] .checkout__order .checkout__order__total span {
  float: left;
  color: #dd2222;
}

[dir=rtl] .checkout__order button {
  font-size: 18px;
  letter-spacing: 2px;
  width: 100%;
  margin-top: 10px;
}

[dir=rtl] .blog__item {
  margin-bottom: 60px;
}

[dir=rtl] .blog__item__pic img {
  min-width: 100%;
}

[dir=rtl] .blog__item__text {
  padding-top: 25px;
}

[dir=rtl] .blog__item__text ul {
  margin-bottom: 15px;
}

[dir=rtl] .blog__item__text ul li {
  font-size: 16px;
  color: #b2b2b2;
  list-style: none;
  display: inline-block;
  margin-left: 15px;
}

[dir=rtl] .blog__item__text ul li:last-child {
  margin-left: 0;
}

[dir=rtl] .blog__item__text h5 {
  margin-bottom: 12px;
}

[dir=rtl] .blog__item__text h5 a {
  font-size: 20px;
  color: #1c1c1c;
  font-weight: 700;
}

[dir=rtl] .blog__item__text p {
  margin-bottom: 25px;
}

[dir=rtl] .blog__item__text .blog__btn {
  display: inline-block;
  font-size: 14px;
  color: #1c1c1c;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #b2b2b2;
  padding: 14px 20px 12px;
  border-radius: 25px;
}

[dir=rtl] .blog__item__text .blog__btn span {
  position: relative;
  top: 1px;
  margin-right: 5px;
}

[dir=rtl] .blog__pagination {
  padding-top: 5px;
  position: relative;
}

[dir=rtl] .blog__pagination:before {
  position: absolute;
  right: 0;
  top: -29px;
  height: 1px;
  width: 100%;
  background: #000000;
  opacity: 0.1;
  content: "";
}

[dir=rtl] .blog__sidebar {
  padding-top: 50px;
}

[dir=rtl] .blog__sidebar__item {
  margin-bottom: 50px;
}

[dir=rtl] .blog__sidebar__item h4 {
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 25px;
}

[dir=rtl] .blog__sidebar__item ul li {
  list-style: none;
}

[dir=rtl] .blog__sidebar__item ul li a {
  font-size: 16px;
  color: #666666;
  line-height: 48px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

[dir=rtl] .blog__sidebar__item ul li a:hover {
  color: #ffc107;
}

[dir=rtl] .blog__sidebar__search {
  margin-bottom: 50px;
}

[dir=rtl] .blog__sidebar__search form {
  position: relative;
}

[dir=rtl] .blog__sidebar__search form input {
  width: 100%;
  height: 46px;
  font-size: 16px;
  color: #6f6f6f;
  padding-right: 15px;
  border: 1px solid #e1e1e1;
  border-radius: 20px;
}

[dir=rtl] .blog__sidebar__search form input::placeholder {
  color: #6f6f6f;
}

[dir=rtl] .blog__sidebar__search form button {
  font-size: 16px;
  color: #6f6f6f;
  background: transparent;
  border: none;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  padding: 0px 18px;
}

[dir=rtl] .blog__sidebar__recent .blog__sidebar__recent__item {
  display: block;
}

[dir=rtl] .blog__sidebar__recent .blog__sidebar__recent__item:last-child {
  margin-bottom: 0;
}

[dir=rtl] .blog__sidebar__recent__item {
  overflow: hidden;
  margin-bottom: 20px;
}

[dir=rtl] .blog__sidebar__recent__item__pic {
  float: right;
  margin-left: 20px;
}

[dir=rtl] .blog__sidebar__recent__item__text {
  overflow: hidden;
}

[dir=rtl] .blog__sidebar__recent__item__text h6 {
  font-weight: 700;
  color: #333333;
  line-height: 20px;
  margin-bottom: 5px;
}

[dir=rtl] .blog__sidebar__recent__item__text span {
  font-size: 12px;
  color: #999999;
  text-transform: uppercase;
}

[dir=rtl] .blog__sidebar__item__tags a {
  font-size: 16px;
  color: #6f6f6f;
  background: #f5f5f5;
  display: inline-block;
  padding: 7px 26px 5px;
  margin-left: 6px;
  margin-bottom: 10px;
}

[dir=rtl] .blog-details-hero {
  height: 350px;
  display: flex;
  align-items: center;
}

[dir=rtl] .blog__details__hero__text {
  text-align: center;
}

[dir=rtl] .blog__details__hero__text h2 {
  font-size: 46px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 10px;
}

[dir=rtl] .blog__details__hero__text ul li {
  font-size: 16px;
  color: #ffffff;
  list-style: none;
  display: inline-block;
  margin-left: 45px;
  position: relative;
}

[dir=rtl] .blog__details__hero__text ul li:after {
  position: absolute;
  left: -26px;
  top: 0;
  content: "|";
}

[dir=rtl] .blog__details__hero__text ul li:last-child {
  margin-left: 0;
}

[dir=rtl] .blog__details__hero__text ul li:last-child:after {
  display: none;
}

[dir=rtl] .related-blog {
  padding-top: 70px;
  padding-bottom: 10px;
}

[dir=rtl] .related-blog-title {
  margin-bottom: 70px;
}

[dir=rtl] .blog-details {
  padding-bottom: 75px;
  border-bottom: 1px solid #e1e1e1;
}

[dir=rtl] .blog__details__text {
  margin-bottom: 45px;
}

[dir=rtl] .blog__details__text img {
  margin-bottom: 30px;
}

[dir=rtl] .blog__details__text p {
  font-size: 18px;
  line-height: 30px;
}

[dir=rtl] .blog__details__text h3 {
  color: #333333;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 30px;
}

[dir=rtl] .blog__details__author__pic {
  float: right;
  margin-left: 15px;
}

[dir=rtl] .blog__details__author__pic img {
  height: 92px;
  width: 92px;
  border-radius: 50%;
}

[dir=rtl] .blog__details__author__text {
  overflow: hidden;
  padding-top: 30px;
}

[dir=rtl] .blog__details__author__text h6 {
  color: #1c1c1c;
  font-weight: 700;
}

[dir=rtl] .blog__details__author__text span {
  font-size: 16px;
  color: #6f6f6f;
}

[dir=rtl] .blog__details__widget ul {
  margin-bottom: 5px;
}

[dir=rtl] .blog__details__widget ul li {
  font-size: 16px;
  color: #6f6f6f;
  list-style: none;
  line-height: 30px;
}

[dir=rtl] .blog__details__widget ul li span {
  color: #1c1c1c;
  font-weight: 700;
}

[dir=rtl] .blog__details__widget .blog__details__social a {
  display: inline-block;
  font-size: 20px;
  color: #6f6f6f;
  margin-left: 24px;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
}

[dir=rtl] .blog__details__widget .blog__details__social a:hover {
  color: #ffc107;
}

[dir=rtl] .blog__details__widget .blog__details__social a:last-child {
  margin-left: 0;
}

[dir=rtl] .footer {
  background: #D1DCE5;
  padding-top: 20px !important;
  padding-bottom: 0;
  font-size: 0.8rem !important;
}

[dir=rtl] .footer__about {
  margin-bottom: 30px;
}

[dir=rtl] .footer__about ul li {
  font-size: 16px;
  color: #1c1c1c;
  line-height: 36px;
  list-style: none;
}

[dir=rtl] .footer__about__logo {
  margin-bottom: 15px;
}

[dir=rtl] .footer__about__logo a {
  display: inline-block;
}

[dir=rtl] .footer__widget {
  margin-bottom: 30px;
  overflow: hidden;
}

[dir=rtl] .footer__widget h6 {
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 10px;
}

[dir=rtl] .footer__widget ul {
  width: 50%;
  float: right;
}

[dir=rtl] .footer__widget ul li {
  list-style: none;
}

[dir=rtl] .footer__widget ul li a {
  color: #1c1c1c;
  font-size: 14px;
  line-height: 32px;
}

[dir=rtl] .footer__widget p {
  font-size: 14px;
  color: #1c1c1c;
  margin-bottom: 30px;
}

[dir=rtl] .footer__widget form {
  position: relative;
  margin-bottom: 30px;
}

[dir=rtl] .footer__widget form input {
  width: 100%;
  font-size: 16px;
  padding-right: 20px;
  color: #1c1c1c;
  height: 46px;
  border: 1px solid #ededed;
}

[dir=rtl] .footer__widget form input::placeholder {
  color: #1c1c1c;
}

[dir=rtl] .footer__widget form button {
  position: absolute;
  left: 0;
  top: 0;
  padding: 0 26px;
  height: 100%;
}

[dir=rtl] .footer__widget .footer__widget__social a {
  display: inline-block;
  height: 41px;
  width: 41px;
  font-size: 16px;
  color: #404040;
  border: 1px solid #ededed;
  border-radius: 50%;
  line-height: 38px;
  text-align: center;
  background: #ffffff;
  -webkit-transition: all, 0.3s;
  -moz-transition: all, 0.3s;
  -ms-transition: all, 0.3s;
  -o-transition: all, 0.3s;
  transition: all, 0.3s;
  margin-left: 10px;
}

[dir=rtl] .footer__widget .footer__widget__social a:last-child {
  margin-left: 0;
}

[dir=rtl] .footer__widget .footer__widget__social a:hover {
  background: #ffc107;
  color: #ffffff;
  border-color: #ffffff;
}

[dir=rtl] .footer__copyright {
  border-top: 1px solid #ebebeb;
  padding: 15px 0;
  overflow: hidden;
  margin-top: 20px;
}

[dir=rtl] .footer__copyright__text {
  font-size: 14px;
  color: #1c1c1c;
  float: right;
  line-height: 25px;
}

[dir=rtl] .footer__copyright__payment {
  float: left;
}

[dir=rtl] .contact {
  padding-top: 80px;
  padding-bottom: 50px;
}

[dir=rtl] .contact__widget {
  margin-bottom: 30px;
}

[dir=rtl] .contact__widget span {
  font-size: 36px;
  color: #ffc107;
}

[dir=rtl] .contact__widget h4 {
  color: #1c1c1c;
  font-weight: 700;
  margin-bottom: 6px;
  margin-top: 18px;
}

[dir=rtl] .contact__widget p {
  color: #666666;
  margin-bottom: 0;
}

[dir=rtl] .map {
  height: 500px;
  position: relative;
}

[dir=rtl] .map iframe {
  width: 100%;
}

[dir=rtl] .map .map-inside {
  position: absolute;
  right: 50%;
  top: 160px;
  -webkit-transform: translateX(175px);
  -ms-transform: translateX(175px);
  transform: translateX(175px);
}

[dir=rtl] .map .map-inside i {
  font-size: 48px;
  color: #ffc107;
  position: absolute;
  bottom: -75px;
  right: 50%;
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

[dir=rtl] .map .map-inside .inside-widget {
  width: 350px;
  background: #ffffff;
  text-align: center;
  padding: 23px 0;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
  box-shadow: 0 0 20px 5px rgba(12, 7, 26, 0.15);
}

[dir=rtl] .map .map-inside .inside-widget:after {
  position: absolute;
  right: 50%;
  bottom: -30px;
  -webkit-transform: translateX(6px);
  -ms-transform: translateX(6px);
  transform: translateX(6px);
  border: 12px solid transparent;
  border-top: 30px solid #ffffff;
  content: "";
  z-index: -1;
}

[dir=rtl] .map .map-inside .inside-widget h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 4px;
}

[dir=rtl] .map .map-inside .inside-widget ul li {
  list-style: none;
  font-size: 16px;
  color: #666666;
  line-height: 26px;
}

[dir=rtl] .contact__form__title {
  margin-bottom: 50px;
  text-align: center;
}

[dir=rtl] .contact__form__title h2 {
  color: #1c1c1c;
  font-weight: 700;
}

[dir=rtl] .contact-form {
  padding-top: 80px;
  padding-bottom: 80px;
}

[dir=rtl] .contact-form form input {
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #6f6f6f;
  padding-right: 20px;
  margin-bottom: 30px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
}

[dir=rtl] .contact-form form input::placeholder {
  color: #6f6f6f;
}

[dir=rtl] .contact-form form textarea {
  width: 100%;
  height: 150px;
  font-size: 16px;
  color: #6f6f6f;
  padding-right: 20px;
  margin-bottom: 24px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  padding-top: 12px;
  resize: none;
}

[dir=rtl] .contact-form form textarea::placeholder {
  color: #6f6f6f;
}

[dir=rtl] .contact-form form button {
  font-size: 18px;
  letter-spacing: 2px;
}

@media only screen and (min-width: 1200px) {
  [dir=rtl] .container {
    max-width: 1170px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1000px) {
  [dir=rtl] {
    /*max-width: 1199px*/
  }

  [dir=rtl] .header__menu ul li {
    margin-left: 45px;
  }

  [dir=rtl] .hero__categories__all {
    padding: 10px 20px 10px 25px;
  }

  [dir=rtl] .hero__categories ul {
    padding-right: 20px;
  }

  [dir=rtl] .latest-product__slider.owl-carousel .owl-nav {
    left: 0;
  }

  [dir=rtl] .product__details__tab .nav-tabs:before {
    width: 265px;
  }

  [dir=rtl] .product__details__tab .nav-tabs:after {
    width: 265px;
  }

  [dir=rtl] .shoping__discount form input {
    width: 240px;
  }
}

@media only screen and (min-width: 760px) and (max-width: 1279px) {
  [dir=rtl] .hero__search__form {
    width: 600px !important;
  }

  [dir=rtl] #headersearchon {
    min-width: 130px !important;
    /* max-width: 130px !important; */
    margin-left: 0px !important;
  }

  [dir=rtl] #headerpostalcode {
    min-width: 110px !important;
    /* max-width: 110px !important; */
    margin-left: 0px !important;
  }
}

@media (max-width: 991px) {
  [dir=rtl] {
    /* Wide Mobile = 480px */
  }

  [dir=rtl] .header__menu {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) and (min-width: 760px) and (max-width: 991px) {
  [dir=rtl] .hero__categories {
    margin-bottom: 30px;
  }

  [dir=rtl] .categories__slider.owl-carousel .owl-nav button {
    right: -20px;
  }

  [dir=rtl] .categories__slider.owl-carousel .owl-nav button.owl-next {
    left: -20px;
  }

  [dir=rtl] .filter__sort .nice-select {
    padding-right: 5px;
    padding-left: 28px;
  }

  [dir=rtl] .product__details__quantity {
    margin-bottom: 10px;
  }

  [dir=rtl] .product__details__text .primary-btn {
    margin-bottom: 10px;
  }

  [dir=rtl] .product__details__tab .nav-tabs:before {
    width: 150px;
  }

  [dir=rtl] .product__details__tab .nav-tabs:after {
    width: 150px;
  }

  [dir=rtl] .blog__details__author {
    overflow: hidden;
    margin-bottom: 25px;
  }

  [dir=rtl] .humberger__open {
    display: block;
    font-size: 22px;
    color: #1c1c1c;
    height: 35px;
    width: 35px;
    line-height: 33px;
    text-align: center;
    border: 1px solid #1c1c1c;
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 22px;
  }

  [dir=rtl] .header .container {
    position: relative;
  }

  [dir=rtl] .humberger__menu__wrapper {
    width: 300px;
    background: #ffffff;
    position: fixed;
    right: -300px;
    top: 0;
    height: 100%;
    overflow-y: auto;
    z-index: 99;
    padding: 30px;
    padding-top: 50px;
    opacity: 0;
    display: block;
    -webkit-transition: all, 0.6s;
    -moz-transition: all, 0.6s;
    -ms-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
  }

  [dir=rtl] .humberger__menu__wrapper.show__humberger__menu__wrapper {
    opacity: 1;
    right: 0;
  }

  [dir=rtl] .humberger__menu__logo {
    margin-bottom: 30px;
  }

  [dir=rtl] .humberger__menu__logo a {
    display: inline-block;
  }

  [dir=rtl] .humberger__menu__contact {
    padding: 10px 0 13px;
  }

  [dir=rtl] .humberger__menu__contact ul li {
    font-size: 14px;
    color: #1c1c1c;
    position: relative;
    line-height: 30px;
    list-style: none;
  }

  [dir=rtl] .humberger__menu__contact ul li i {
    color: #252525;
    margin-left: 5px;
  }

  [dir=rtl] .humberger__menu__cart ul {
    display: inline-block;
    margin-left: 25px;
  }

  [dir=rtl] .humberger__menu__cart ul li {
    list-style: none;
    display: inline-block;
    margin-left: 15px;
  }

  [dir=rtl] .humberger__menu__cart ul li:last-child {
    margin-left: 0;
  }

  [dir=rtl] .humberger__menu__cart ul li a {
    position: relative;
  }

  [dir=rtl] .humberger__menu__cart ul li a i {
    font-size: 18px;
    color: #1c1c1c;
  }

  [dir=rtl] .humberger__menu__cart ul li a span {
    height: 13px;
    width: 13px;
    background: #ffc107;
    font-size: 10px;
    color: #ffffff;
    line-height: 13px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -12px;
  }

  [dir=rtl] .humberger__menu__cart .header__cart__price {
    font-size: 14px;
    color: #6f6f6f;
    display: inline-block;
  }

  [dir=rtl] .humberger__menu__cart .header__cart__price span {
    color: #252525;
    font-weight: 700;
  }

  [dir=rtl] .humberger__menu__cart {
    margin-bottom: 25px;
  }

  [dir=rtl] .humberger__menu__widget {
    margin-bottom: 20px;
  }

  [dir=rtl] .humberger__menu__widget .header__top__right__language {
    margin-left: 20px;
  }

  [dir=rtl] .humberger__menu__nav {
    display: none;
  }

  [dir=rtl] .humberger__menu__wrapper .header__top__right__social {
    display: block;
    margin-left: 0;
    margin-bottom: 20px;
  }

  [dir=rtl] .humberger__menu__wrapper .slicknav_btn {
    display: none;
  }

  [dir=rtl] .humberger__menu__wrapper .slicknav_nav .slicknav_item a {
    border-bottom: none !important;
  }

  [dir=rtl] .humberger__menu__wrapper .slicknav_nav {
    display: block !important;
  }

  [dir=rtl] .humberger__menu__wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }

  [dir=rtl] .humberger__menu__wrapper .slicknav_nav ul {
    margin: 0;
  }

  [dir=rtl] .humberger__menu__wrapper .slicknav_nav a {
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    border-bottom: 1px solid #e1e1e1;
  }

  [dir=rtl] .humberger__menu__wrapper .slicknav_nav a:hover {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: transparent;
    color: #ffc107;
  }

  [dir=rtl] .humberger__menu__wrapper .slicknav_nav .slicknav_row,
  [dir=rtl] mberger__menu__wrapper .slicknav_nav a {
    padding: 8px 0;
  }

  [dir=rtl] .humberger__menu__overlay {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    z-index: 98;
    visibility: hidden;
    -webkit-transition: all, 0.6s;
    -moz-transition: all, 0.6s;
    -ms-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
  }

  [dir=rtl] .humberger__menu__overlay.active {
    visibility: visible;
  }

  [dir=rtl] .header__top {
    display: none;
  }

  [dir=rtl] .header__menu {
    display: none;
  }

  [dir=rtl] .header__cart {
    text-align: center;
    padding: 10px 0 24px;
  }

  [dir=rtl] .over_hid {
    overflow: hidden;
  }
}

@media (max-width: 991px) and (max-width: 759px) {
  [dir=rtl] {
    /*.hero__search__form {
        width: 310px !important;
        background: red;
        position: absolute; top: 50px; left: 50px;
    }*/
  }

  [dir=rtl] .hero__categories {
    margin-bottom: 30px;
  }

  [dir=rtl] .hero__search {
    margin-bottom: 30px;
  }

  [dir=rtl] #headersearchon {
    min-width: 130px !important;
    /* max-width: 130px !important; */
    margin-left: 0px !important;
  }

  [dir=rtl] #headerpostalcode {
    min-width: 90px !important;
    /* max-width: 90px !important; */
    margin-left: 0px !important;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .hero__search__form form input {
    width: 100%;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .hero__search__form form .hero__search__categories {
    display: none;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .hero__search__phone {
    float: right;
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .categories__slider.owl-carousel .owl-nav {
    text-align: center;
    margin-top: 40px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .categories__slider.owl-carousel .owl-nav button {
    position: relative;
    right: 0;
    top: 0;
    -webkit-transform: translateY(0);
  }
}

@media (max-width: 991px) {
  [dir=rtl] .categories__slider.owl-carousel .owl-nav button.owl-next {
    left: -10px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .footer__copyright {
    text-align: center;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .footer__copyright__text {
    float: none;
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .footer__copyright__payment {
    float: none;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .filter__item {
    text-align: center;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .filter__option {
    text-align: center;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .product__details__pic {
    margin-bottom: 40px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .product__details__tab .nav-tabs:before {
    display: none;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .product__details__tab .nav-tabs:after {
    display: none;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .shoping__cart__table {
    overflow-y: auto;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .shoping__discount form input {
    margin-bottom: 15px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .blog__details__author {
    overflow: hidden;
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__open {
    display: block;
    font-size: 22px;
    color: #1c1c1c;
    height: 35px;
    width: 35px;
    line-height: 33px;
    text-align: center;
    border: 1px solid #1c1c1c;
    cursor: pointer;
    position: absolute;
    left: 15px;
    top: 15px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .header .container {
    position: relative;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper {
    width: 300px;
    background: #ffffff;
    position: fixed;
    right: -300px;
    top: 0;
    height: 100%;
    overflow-y: auto;
    z-index: 99;
    padding: 30px;
    padding-top: 50px;
    opacity: 0;
    display: block;
    -webkit-transition: all, 0.6s;
    -moz-transition: all, 0.6s;
    -ms-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper.show__humberger__menu__wrapper {
    opacity: 1;
    right: 0;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__logo {
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__logo a {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__contact {
    padding: 10px 0 13px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__contact ul li {
    font-size: 14px;
    color: #1c1c1c;
    position: relative;
    line-height: 30px;
    list-style: none;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__contact ul li i {
    color: #252525;
    margin-left: 5px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__cart ul {
    display: inline-block;
    margin-left: 25px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__cart ul li {
    list-style: none;
    display: inline-block;
    margin-left: 15px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__cart ul li:last-child {
    margin-left: 0;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__cart ul li a {
    position: relative;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__cart ul li a i {
    font-size: 18px;
    color: #1c1c1c;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__cart ul li a span {
    height: 13px;
    width: 13px;
    background: #ffc107;
    font-size: 10px;
    color: #ffffff;
    line-height: 13px;
    text-align: center;
    font-weight: 700;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -12px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__cart .header__cart__price {
    font-size: 14px;
    color: #6f6f6f;
    display: inline-block;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__cart .header__cart__price span {
    color: #252525;
    font-weight: 700;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__cart {
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__widget {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__widget .header__top__right__language {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__nav {
    display: none;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper .header__top__right__social {
    display: block;
    margin-left: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper .slicknav_btn {
    display: none;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper .slicknav_nav .slicknav_item a {
    border-bottom: none !important;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper .slicknav_nav {
    display: block !important;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper .slicknav_menu {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper .slicknav_nav ul {
    margin: 0;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper .slicknav_nav a {
    color: #1c1c1c;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    border-bottom: 1px solid #e1e1e1;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__wrapper .slicknav_nav a:hover {
    -webkit-border-radius: 0;
    border-radius: 0;
    background: transparent;
    color: #ffc107;
  }
}

@media (max-width: 991px) {

  [dir=rtl] .humberger__menu__wrapper .slicknav_nav .slicknav_row,
  [dir=rtl] mberger__menu__wrapper .slicknav_nav a {
    padding: 8px 0;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__overlay {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    content: "";
    z-index: 98;
    visibility: hidden;
    -webkit-transition: all, 0.6s;
    -moz-transition: all, 0.6s;
    -ms-transition: all, 0.6s;
    -o-transition: all, 0.6s;
    transition: all, 0.6s;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .humberger__menu__overlay.active {
    visibility: visible;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .header__top {
    display: none;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .header__menu {
    /*   display: none;*/
  }
}

@media (max-width: 991px) {
  [dir=rtl] .header__cart {
    text-align: center;
    padding: 10px 0 24px;
  }
}

@media (max-width: 991px) {
  [dir=rtl] .over_hid {
    overflow: hidden;
  }
}

@media only screen and (max-width: 479px) {
  [dir=rtl] .hero__search__form form .hero__search__categories {
    display: none;
  }

  [dir=rtl] .featured__controls ul li {
    margin-bottom: 10px;
  }

  [dir=rtl] .product__details__text ul li b {
    width: 100px;
  }

  [dir=rtl] .product__details__tab .nav-tabs li {
    margin-left: 20px;
  }

  [dir=rtl] .shoping__cart__btns {
    text-align: center;
  }

  [dir=rtl] .primary-btn.cart-btn.cart-btn-right {
    float: none;
    margin-top: 10px;
  }

  [dir=rtl] .shoping__checkout .primary-btn {
    display: block;
    text-align: center;
    padding: 10px 15px 10px;
  }

  [dir=rtl] .map .map-inside {
    -webkit-transform: translateX(125px);
    -ms-transform: translateX(125px);
    transform: translateX(125px);
  }

  [dir=rtl] .map .map-inside .inside-widget {
    width: 250px;
  }

  [dir=rtl] .product__details__tab .nav-tabs li {
    margin-left: 15px;
  }

  [dir=rtl] .shoping__discount form input {
    width: 100%;
  }

  [dir=rtl] .checkout__order {
    padding: 20px;
  }

  [dir=rtl] .blog__details__hero__text h2 {
    font-size: 24px;
  }
}

[dir=rtl] .hero__search>ul {
  position: absolute;
  right: 0;
  top: 100%;
}

[dir=rtl] .owl-item {
  float: right;
  min-height: 285px !important;
}

[dir=rtl] .owl-stage-outer {
  overflow: hidden;
}

[dir=rtl] .owl-theme .owl-nav [class*=owl-] {
  background: gray;
  border: none;
}

[dir=rtl] .owl-theme .owl-dots .owl-dot {
  background: none;
  border: none;
}

[dir=rtl] .category__wrapper {
  border-bottom: 2px solid white;
}

@media only screen and (max-width: 786px) {
  [dir=rtl] .category__wrapper {
    display: none;
  }

  [dir=rtl] .header__cart {
    display: none;
  }
}

[dir=rtl] .required {
  color: #DF280A;
  margin-right: 10px;
  margin-left: 20px;
  min-width: 20px;
}

[dir=rtl] .help {
  color: #0090E3;
  margin-right: 10px;
  margin-left: 20px;
  min-width: 20px;
}

[dir=rtl] .desctext,
[dir=rtl] .desctextOn {
  font-family: arial;
}

[dir=rtl] .desctext {
  font-size: 8pt;
  text-align: center;
}

[dir=rtl] .desctextOn {
  padding-top: 10px;
  font-weight: normal;
  color: #52882E;
  padding-bottom: 10px;
  /*border-bottom: 3px solid #28A745;*/
  min-height: 70px;
}

[dir=rtl] #myfrm .form-group,
[dir=rtl] #myfrm input,
[dir=rtl] #myfrm select {
  font-size: 95%;
}

[dir=rtl] #myfrm .form-group {
  padding-right: 10px;
}

[dir=rtl] .card-cust {
  background: #E5ECF2 !important;
  border: 0px;
  padding-top: 10px !important;
}

[dir=rtl] .col-log-cust {
  min-width: 220px;
  width: 240px;
  padding-top: 0px;
}

@media (max-width: 960px) {
  [dir=rtl] .col-log-cust {
    min-width: 220px;
    width: 240px;
    padding-top: 60px;
  }
}

[dir=rtl] .badge-success-cust1 {
  background: #89C764;
  padding-top: 28px;
}

[dir=rtl] .badge-success-cust {
  background: #404040;
  padding-top: 28px;
}

[dir=rtl] .badgecircle {
  width: 70px;
  height: 70px;
  border-radius: 35px;
  font-family: arial;
}

[dir=rtl] .alert-success-cust {
  background: transparent;
  color: #008000;
  border: 0px;
  font-size: 1rem !important;
}

[dir=rtl] .text-help {
  color: #007BFF;
  font-size: 10pt;
}

[dir=rtl] .badge-text-cust {
  background: white;
  color: #404040;
  border: 1px solid #E2DEDE;
  padding: 10px;
}

[dir=rtl] .text-cust {
  color: #404040;
  font-size: 10pt;
}

[dir=rtl] .btn-outline-cityh_cust {
  color: #8DAD2B;
  background-color: #fff;
  border-color: #C1DD6B;
}

[dir=rtl] .btn-outline-cityh_cust:hover {
  color: #fff;
  background-color: #A6CD3A;
  border-color: #C1DD6B;
}

[dir=rtl] .btn-cityh_cust {
  color: #fff;
  background-color: #A6CD3A;
  border-color: #C1DD6B;
}

[dir=rtl] .btn-cityh_cust:hover {
  color: #fff;
  background-color: #8DAD2B;
  border-color: #C1DD6B;
}

[dir=rtl] .btn-outline-sell_cust {
  color: #26A0DA;
  background-color: #fff;
  border-color: #68BFE8;
}

[dir=rtl] .btn-outline-sell_cust:hover {
  color: #fff;
  background-color: #26A0DA;
  border-color: #68BFE8;
}

[dir=rtl] .btn-sell_cust {
  color: #fff;
  background-color: #26A0DA;
  border-color: #68BFE8;
}

[dir=rtl] .btn-sell_cust:hover {
  color: #fff;
  background-color: #2188B7;
  border-color: #68BFE8;
}

[dir=rtl] .btn-outline-vshop_cust,
[dir=rtl] .btn-outline-vshop_cust:visited,
[dir=rtl] .btn-outline-vshop_cust:focus {
  color: #fff;
  background-color: #ED9409;
  border-color: #E8A004;
  width: 100%;
  font-size: 16px;
  font-weight: bold;
}

[dir=rtl] .btn-outline-vshop_cust:hover {
  color: white;
  background-color: #FFB701;
  border-color: #FFB701;
}

[dir=rtl] .card-custgest {
  cursor: pointer;
  min-height: 200px;
  min-width: 200px;
  padding: 0px;
  border: 1px solid #EAEAED;
  background: white;
}

[dir=rtl] .card-custgest:hover {
  border: 1px solid #BCD3DC;
  padding: 0px;
}

[dir=rtl] .imgcard {
  width: 100%;
  padding-top: 40px;
  min-height: 130px;
  height: 130px;
}

[dir=rtl] .circle {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #65A5D3;
  font-size: 16pt;
  color: white;
  text-align: center;
  padding-top: 15px;
  margin-top: 10px;
}

[dir=rtl] .circlelg {
  width: 80px;
  height: 80px;
  border-radius: 40px;
  background-color: #65A5D3;
  font-size: 16pt;
  color: white;
  text-align: center;
  padding-top: 15px;
  margin-top: 10px;
}

[dir=rtl] .h-form {
  font-size: 14pt;
}

[dir=rtl] .text-help {
  color: #007BFF;
}

[dir=rtl] .t-h-pad {
  padding-bottom: 10px;
  padding-bottom: 10px;
}

[dir=rtl] .text-help-link:link,
[dir=rtl] .text-help-link:visited,
[dir=rtl] .text-help-link:active {
  color: #007BFF;
  text-decoration: underline;
}

[dir=rtl] .text-help-link:hover {
  color: #0A62BC;
  text-decoration: underline;
  cursor: pointer;
}

[dir=rtl] .puceg {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background-color: green;
}

[dir=rtl] .jumbotron-cust {
  padding: 10px;
}

[dir=rtl] .card-textcust:link,
[dir=rtl] .card-textcust:visited,
[dir=rtl] .card-textcust:active {
  color: white;
  font-size: 0.8rem;
  padding-right: 0px;
  padding-left: 0px;
  margin-right: 0px;
  margin-left: 0px;
}

[dir=rtl] .card-textcust:hover {
  color: white;
  text-decoration: underline;
  cursor: pointer;
}

[dir=rtl] .card-titlecust {
  padding-top: 20px;
  font-size: 1.2rem;
  min-height: 70px;
  /*font-weight: 600;*/
}

[dir=rtl] .card-titlecust2 {
  padding-top: 10px;
  font-size: 11pt;
}

[dir=rtl] .card-titlecustcth {
  padding-top: 10px;
  font-size: 1.2rem;
  min-height: 100px;
}

[dir=rtl] .nice-select {
  /*background: #EAEAED;*/
  color: #2F353A;
}

[dir=rtl] #cntrySelectDiv .nice-select {
  background: transparent;
}

[dir=rtl] #cntrySelectDiv>div.nice-select {
  border: none !important;
  color: black;
}

[dir=rtl] #cntrySelectDiv .current {
  color: white;
}

[dir=rtl] .rate-cust .current {
  color: #FFC107 !important;
  font-weight: normal;
}

[dir=rtl] .selected .focus {
  font-weight: normal !important;
}

[dir=rtl] .filter__sort .nice-select .option.selected {
  font-weight: normal;
  color: #FFC107 !important;
}

[dir=rtl] .badge-light-cat-cust {
  font-weight: normal;
  background: #E5ECF2;
  margin: 2px;
  font-size: 0.7rem;
  color: #457B9D;
  border-radius: 0.5rem;
}

[dir=rtl] .badge-light-cat-cust2 {
  font-weight: 500;
  background: #EAEAED;
  margin: 2px;
  font-size: 14px;
  padding: 7px;
}

[dir=rtl] .badge-light-cat-cust3 {
  font-weight: 500;
  background: white;
  margin: 2px;
  font-size: 0.975rem;
  padding: 7px;
  text-decoration: none;
  border-radius: 0.5rem;
}

[dir=rtl] .badge-light-cat-cust3:HOVER {
  background: white !important;
  color: #007BFF !important;
  text-decoration: underline !important;
}

[dir=rtl] .badge-light-cat-cust4 {
  font-weight: 600;
  background: #D1DCE5;
  margin: 2px;
  margin-bottom: 10px;
  font-size: 0.975rem;
  padding: 8px;
  text-decoration: none;
  color: #457B9D !important;
  font-family: arial;
  border-radius: 0.5rem;
}

[dir=rtl] .badge-light-cat-cust4:HOVER {
  background: #D1DCE5 !important;
  text-decoration: underline !important;
  color: #457B9D !important;
  padding: 8px;
}

[dir=rtl] .lead {
  font-size: 1.1rem;
  font-weight: 300;
}

[dir=rtl] .nice-select {
  /*width: 145px !important;max-width: 145px !important;*/
  /* font-size: 16px;

  padding-left: 5px;
  padding-right: 20px; */
  color: white;
  background: transparent;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}

[dir=rtl] .nice-select .option {
  color: #727272;
}

[dir=rtl] .nice-select .option:hover {
  color: black;
}

[dir=rtl] select.langSelect {
  /* font-size: 14px;
  background: transparent;
  color: white;
  border: none; */
}

[dir=rtl] .input-group-cust {
  background: white !important;
  min-width: 400px !important;
}

[dir=rtl] .navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

[dir=rtl] .breadcrumb {
  border-bottom: 0px solid #c8ced3;
  background: #87CEEB;
  /*background: url('../img/backgshop3.png');*/
}

[dir=rtl] .breadcrumb a,
[dir=rtl] .breadcrumb li {
  font-weight: bold;
  color: white;
}

[dir=rtl] .sidebar .nav-link.active {
  color: #87CEEB;
  background: black;
  font-weight: bold;
}

[dir=rtl] .h-circle {
  height: 50px;
  padding-top: 30px;
  padding-right: 10px;
  margin-top: -10px;
  font-size: 20pt;
}

[dir=rtl] .img-cust-offon {
  min-height: 120px;
  max-height: 120px;
  width: 90%;
  /*max-width: 180px;*/
  margin-bottom: 10px;
  background: #F8F9FA;
}

[dir=rtl] .btn-outline-vshop_cust2,
[dir=rtl] .btn-outline-vshop_cust2:visited,
[dir=rtl] .btn-outline-vshop_cust2:focus {
  color: #fff;
  background-color: #FFB701;
  border-color: #FFB701;
  width: 100%;
  padding: 5px;
  padding-top: 0px;
  font-size: 20px;
  font-weight: normal;
  width: 30px;
  height: 30px;
  border-radius: 25px;
  position: absolute;
  top: 5px;
  left: 5px;
}

[dir=rtl] .btn-outline-vshop_cust2:hover {
  color: white;
  background-color: #ED9409;
  border-color: #E8A004;
}

[dir=rtl] .btn-outline-vshop_cust3,
[dir=rtl] .btn-outline-vshop_cust3:visited,
[dir=rtl] .btn-outline-vshop_cust3:focus {
  color: #fff;
  background-color: #87CEEB;
  border-color: #6BC1E5;
  width: 100%;
  padding-top: 3px;
  padding-right: 7px;
  font-size: 14px;
  font-weight: normal;
  width: 30px;
  height: 30px;
  border-radius: 25px;
  position: absolute;
  top: 5px;
  left: 5px;
}

[dir=rtl] .btn-outline-vshop_cust3:hover {
  color: white;
  background-color: #56B6DE;
  border-color: #56B6DE;
}

[dir=rtl] .btn-outline-vshop_cust2,
[dir=rtl] .btn-outline-vshop_cust3 {
  display: none;
}

[dir=rtl] .card-box-cust:hover .btn-outline-vshop_cust2,
[dir=rtl] .card-box-cust:hover .btn-outline-vshop_cust3,
[dir=rtl] .card-box-cust2:hover .btn-outline-vshop_cust2,
[dir=rtl] .card-box-cust2:hover .btn-outline-vshop_cust3 {
  display: block;
}

[dir=rtl] .wprock-img-zoom-hover .wprock-img-zoom {
  overflow: hidden;
  position: relative;
}

[dir=rtl] .wprock-img-zoom-hover .wprock-img-zoom div {
  max-width: 100%;
  -moz-transition: all 0.9s;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}

[dir=rtl] .wprock-img-zoom-hover .wprock-img-zoom * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

[dir=rtl] .wprock-img-zoom-hover:hover .wprock-img-zoom div {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

[dir=rtl] .featureson,
[dir=rtl] .featuresoff {
  text-align: right;
  margin-bottom: 0px;
}

[dir=rtl] .featureson {
  color: #212529;
}

[dir=rtl] .featuresoff {
  color: #989FA4;
}

[dir=rtl] .featureson svg,
[dir=rtl] .featuresoff svg {
  margin-top: 5px;
}

[dir=rtl] .link-cust:hover {
  text-decoration: underline;
  color: black !important;
}

[dir=rtl] .nice-select-cust {
  background: transparent !important;
  font-size: 0.875rem !important;
  color: #007BFF;
  border: 0px;
  margin-right: 5px;
  padding-top: 0px;
  height: 25px;
  line-height: 20px;
}

[dir=rtl] .nice-select-cust2 {
  background: white !important;
}

[dir=rtl] .nice-select-cust .option {
  color: #212529 !important;
}

[dir=rtl] #orderby .nice-select {
  background: red !important;
}

[dir=rtl] a.badge-light {
  color: #505061;
}

[dir=rtl] .card-box-cust2:HOVER .btn-cust-prod,
[dir=rtl] .card-header:HOVER .btn-cust-prod {
  border: 1px solid #F2994A;
  color: white;
  background: #F2994A;
  /*background-image: linear-gradient(to bottom right, #F7C293, #F2994A);*/
}

[dir=rtl] .btn-cust-prod {
  font-size: 0.8rem;
  border: 1px solid white;
  color: #F2994A;
  background: white;
  margin-bottom: 5px;
  margin-left: 10px !important;
}

[dir=rtl] .card-box-cust2:HOVER .btn-cust-prod:HOVER,
[dir=rtl] .card-header:HOVER .btn-cust-prod:HOVER {
  color: white;
  background: #EF8323;
  border: 1px solid #DC771E;
}

[dir=rtl] .btn-primary-cust2 {
  background: #457B9D;
  color: white;
  border: 1px solid #457B9D;
  font-weight: bold;
}

[dir=rtl] .btn-primary-cust2:HOVER {
  background: #3C627A;
  color: white;
  border: 1px solid #3C627A;
}

[dir=rtl] .btn-cust2-prod {
  border: 1px solid white;
  color: #6f6f6f;
  background: white;
  /*background-image: linear-gradient(to bottom right, #E5ECF2, white, #E5ECF2);*/
}

[dir=rtl] .btn-cust2-prod:HOVER {
  border: 1px solid #6EA1C2;
  color: #007BFF;
}

[dir=rtl] .btn-cust2-fav {
  border: 0px solid white;
  color: #6f6f6f;
  background: transparent;
  /*background-image: linear-gradient(to bottom right, #E5ECF2, white, #E5ECF2);*/
}

[dir=rtl] .btn-cust2-fav:HOVER {
  border: 0px solid #6EA1C2;
  color: #007BFF;
  background: white;
}

[dir=rtl] .btn-cust2-sell {
  border: 1px solid white;
  color: #6f6f6f;
  background: white;
  /*background-image: linear-gradient(to bottom right, #E5ECF2, white, #E5ECF2);*/
}

[dir=rtl] .btn-cust2-sell:HOVER {
  border: 1px solid #6EA1C2;
  color: #007BFF;
}

[dir=rtl] .btn-cust-samp {
  font-size: 0.9rem;
  border: 1px solid #457B9D;
  color: #457B9D;
  background: white;
  margin-bottom: 5px;
  margin-left: 3px !important;
}

[dir=rtl] .btn-cust-samp:HOVER {
  border: 1px solid #457B9D;
  color: white;
  background: #457B9D;
}

[dir=rtl] .filtermobcust {
  padding-right: 10px;
  padding-left: 10px;
}

[dir=rtl] .form-control-cust {
  font-size: 0.9rem !important;
  margin-top: 2px;
  /*padding-right: 20px;*/
  border: 1px solid #EAEAED;
}

[dir=rtl] .form-control-cust:HOVER {
  border: 1px solid #87CEEB;
}

[dir=rtl] .navbar-cust {
  /* padding: 0px !important; */
  /* padding-bottom: 0px !important; */
  min-height: 70px;
}

[dir=rtl] .pwa-cust {
  color: white;
  cursor: pointer;
  margin-top: 0px;
  margin-left: 15px;
}

[dir=rtl] .pwa-cust:HOVER {
  text-decoration: underline;
}

[dir=rtl] .pwa-cust svg {
  margin-left: 3px;
}

[dir=rtl] .foot-cust {
  color: #505050;
  font-size: 0.775rem;
}

[dir=rtl] .link-foot-cust {
  color: #505050;
  text-decoration: none;
  font-weight: 700;
}

[dir=rtl] .link-foot-cust:HOVER {
  color: black;
  text-decoration: underline;
}

[dir=rtl] .link-foot-cust2 {
  color: #505050;
  text-decoration: underline;
}

[dir=rtl] .link-foot-cust2:HOVER {
  color: black;
  text-decoration: underline;
}

[dir=rtl] #headersearchon {
  min-width: 25em !important;
  /* max-width: 270px; */
  border: none;
  font-size: 16px;
  /* margin-top: 4px; */
  /* padding-left: 0.3rem; */
  padding-left: 0.1rem;
  margin-right: 2px !important;
  margin-left: 7px !important;
}

[dir=rtl] #headerpostalcode {
  min-width: 120px;
  /* max-width: 120px; */
  border: none;
  font-size: 16px;
  /* margin-top: 4px; */
  /* padding-left: 0.1rem; */
  padding-left: 0.1rem;
  margin-left: 7px !important;
}

[dir=rtl] .nav-link-cust {
  margin-left: 10px;
}

[dir=rtl] .dropdown-cust .show {
  border: 0px;
}

[dir=rtl] .dropdown-menu-cust {
  /* background: #2F353A; */
  padding-top: 0px;
  padding-bottom: 0px;
}

[dir=rtl] #dropdownMenuButton {
  border-radius: 0 4px 4px 0;
}

[dir=rtl] #dropdownMenuButton[aria-expanded=true] {
  border-radius: 0 4px 0 0;
}

[dir=rtl] #dropdown-menu-cust {
  padding: 0.25rem 0.5rem;
  padding-right: 12px;
  margin: 0;
  top: 100%;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.1);
  border: 0;
}

[dir=rtl] .dropdown-item-cust {
  font-size: 0.95rem !important;
  /* color: white; */
  line-height: inherit;
}

[dir=rtl] .dropdown-item-cust:hover {
  /* color: #F2994A !important; */
  /* background: #2F353A; */
}

[dir=rtl] .resp-text {
  display: none;
}

[dir=rtl] .resp-hidetext {
  display: inline;
}

[dir=rtl] .col-form-label-cust {
  font-weight: normal;
  color: #212529;
  text-align: left;
}

[dir=rtl] .col-form-label-cust2 {
  font-weight: 600;
  color: #212529;
  font-family: arial;
}

[dir=rtl] .lab-cust {
  padding: 0px;
  margin: 0px;
  cursor: pointer;
}

[dir=rtl] .footer-position-cust {
  /* position: fixed; bottom: 0px; left: 0px; right: 0px;height: 50px !important;z-index: 1; */
  background: #D1DCE5;
}

[dir=rtl] .body-position-cust {
  /* padding-bottom: 80px !important; */
  background: #F8F9FA;
}

[dir=rtl] .h-bg-title {
  font-size: 2em;
  font-weight: 600;
  color: #ED9409;
}

[dir=rtl] .h-bg-title2 {
  font-size: 2em;
  font-weight: 600;
}

[dir=rtl] .dropdown-menu-title {
  /* color: white; */
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 10px;
  font-weight: 600;
  font-size: 1rem;
}

[dir=rtl] .btn-outline-dark-cust {
  background: white;
  font-weight: bold;
  padding-right: 20px;
  margin-right: 10px;
  padding-left: 20px;
  font-size: 1rem;
}

[dir=rtl] .btn-outline-dark-cust:HOVER {
  background: white;
  color: #F2994A;
}

[dir=rtl] a.dropdown-item-cust span {
  border-bottom: 1px solid white;
  font-size: 1rem;
}

[dir=rtl] a.dropdown-item-cust span:HOVER {
  border-bottom: 1px solid #F2994A;
  font-size: 1rem;
}

[dir=rtl] .nav-rightcust {
  margin-left: 30px;
}

[dir=rtl] .nav-leftcust {
  margin-right: 0px;
}

[dir=rtl] .nav-topcust {
  margin-top: 10px;
}

[dir=rtl] .h-phead-cust {
  font-size: 2em;
  font-weight: normal;
  color: orange;
  font-family: "Raleway", sans-serif;
  margin-top: 30px;
  margin-bottom: 20px;
}

[dir=rtl] .padding-cust {
  padding-top: 10px;
}

[dir=rtl] .padding-custh {
  padding-top: 0px;
}

[dir=rtl] .myhome-cust {
  margin-top: 50px;
  z-index: 9 !important;
  /*position: relative;*/
}

[dir=rtl] .topmyhome-cust {
  margin-top: 40px;
}

[dir=rtl] .htopmyhome {
  text-align: center;
  /* color: white  */
  /*#6E95AE #585D70*/
  /* font-weight: 500; */
  /* font-size: 1.3rem; */
  /* font-family: 'Open Sans', sans-serif; */
  /* letter-spacing: 0.5px; */
  margin-bottom: 20px;
}

[dir=rtl] .rowcathome {
  /* color: white; */
  border: 2px solid #D4D4D4;
  background: white;
  border-radius: 10px;
  /* margin: 10px !important; */
  margin-top: 0px;
  padding: 20px;
}

[dir=rtl] .form-label-cust {
  font-family: arial;
  font-weight: 600;
  color: #457B9D;
  font-family: arial;
}

[dir=rtl] .form-label-sugg-cust {
  margin-top: 75px;
}

[dir=rtl] .h1-p-cust {
  font-family: arial;
  color: white;
  font-weight: 600;
  padding-right: 10px;
}

[dir=rtl] .logohead {
  color: #87CEEB;
  font-weight: 600;
  font-family: Comic sans MS;
  font-size: 30pt;
  padding: 0px;
  margin: 0px;
  margin-right: 20px;
}

[dir=rtl] .rowcathref-cust {
  width: 700px;
  max-height: 500px;
  font-size: 0.875rem;
  overflow: auto;
}

[dir=rtl] .cathref-cust {
  /* margin-left: 5px; */
  margin-bottom: 5px;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  font-weight: 500;
  color: #727272;
}

[dir=rtl] .cathref-cust:HOVER {
  text-decoration: underline;
  cursor: pointer;
}

[dir=rtl] .cercle {
  position: absolute;
  z-index: 0 !important;
  opacity: 1;
  margin: 0px;
  background-color: #D1DCE5;
  border: 0px;
  border-radius: 50%;
  height: 1000px;
  width: 1000px;
  top: -750px;
  right: 0px;
}

[dir=rtl] .cercle2 {
  position: absolute;
  z-index: 0 !important;
  opacity: 0.7;
  margin: 0px;
  background-color: #A2D0E3;
  border: 0px;
}

[dir=rtl] .cercle {
  border-radius: 50%;
  height: 1000px;
  width: 1000px;
  top: -750px;
  right: 0px;
}

[dir=rtl] .cercle2 {
  border-radius: 50%;
  height: 500px;
  width: 500px;
  top: -20%;
  left: 0px;
}

[dir=rtl] .hometext {
  font-size: 1.5rem;
  width: 95%;
  padding-top: 50px;
  color: #457B9D;
}

[dir=rtl] .hometext2 {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #212529;
  text-align: justify;
}

[dir=rtl] .btn-primaryh-cust {
  background: #F8F9FA;
  border: 1px solid #457B9D;
  color: #457B9D;
  font-weight: 700;
  font-family: Tajwal, sans-serif;
  font-size: 1.1rem;
}

[dir=rtl] .btn-primaryh-cust:HOVER {
  background: var(--brand-orange);
  color: white;
}

[dir=rtl] .btn-primaryh2-cust {
  background: white;
  border: 1px solid #457B9D;
  color: #457B9D;
  font-weight: 600;
  font-family: arial;
  font-size: 1.1rem;
}

[dir=rtl] .btn-primaryh2-cust:HOVER {
  background: #87CEEB;
  border: 1px solid #87CEEB;
  color: white;
}

[dir=rtl] .btn-link-cust {
  color: white;
}

[dir=rtl] .btn-link-cust:HOVER {
  color: white;
}

[dir=rtl] .btn-linksm-cust {
  color: white;
  font-size: 0.75rem;
}

[dir=rtl] .btn-linksm-cust:HOVER {
  color: white;
  font-size: 0.75rem;
}

[dir=rtl] .btn-linkmd-cust {
  /* color: white; */
  transition: color 500ms;
  font-weight: 600;
  font-size: 0.875rem;
  width: 100%;
}

[dir=rtl] .btn-linkmd-cust:HOVER {
  color: black;
  font-size: 0.875rem;
  text-decoration: underline;
}

[dir=rtl] .cadrelinkmd {
  /*padding-bottom: 10px;*/
}

[dir=rtl] .navbar-brand-cust {
  padding-top: 0px;
  margin-top: -20px !important;
}

[dir=rtl] .position-cust {
  float: left !important;
  padding-left: 50px;
}

[dir=rtl] .card-footer-cust {
  /*background-image: linear-gradient(to bottom right, white, #D1DCE5);*/
  background: #E5ECF2;
  position: relative;
  padding: 0px;
  border: 2px solid white;
  text-align: center;
  height: 170px;
}

[dir=rtl] .card-footer-cust2 {
  /*background-image: linear-gradient(to bottom right, white, #D1DCE5);*/
  /* background: #E5ECF2; */
  padding: 0px;
  border-top: 0px;
  text-align: center;
  height: 90px;
}

[dir=rtl] .card-footer-cust3 {
  /*background-image: linear-gradient(to bottom, white, #D1DCE5); padding: 0px;border-top: 0px;text-align: center;height: 170px;*/
}

[dir=rtl] a .card-title-cust {
  font-size: 16px;
  color: #457B9D !important;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  font-family: arial;
}

[dir=rtl] a:HOVER .card-title-cust {
  font-size: 16px;
  color: #457B9D;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  font-family: arial;
  text-decoration: underline;
}

[dir=rtl] .sellerlink {
  cursor: pointer;
}

[dir=rtl] .card-footer-cust:HOVER .sellerlink {
  /*text-decoration: underline;*/
}

[dir=rtl] .card-footer-cust .sellerlink {
  text-decoration: none;
}

[dir=rtl] .col-form-label-cust {
  font-weight: bold !important;
  color: #212529;
  text-align: left;
  font-family: arial;
}

[dir=rtl] .card-help-cust {
  background: #E5ECF2;
  border: 0px;
}

[dir=rtl] .padding-custr {
  padding-top: 100px !important;
}

[dir=rtl] .invalid-feedback-cust {
  color: #FFC0C0;
  padding-right: 10px;
}

[dir=rtl] .h-form2 {
  font-weight: 600;
  background: #457B9D;
  color: white;
  text-transform: uppercase;
  font-size: 0.975rem;
  padding: 5px;
  padding-right: 5px;
  padding-right: 10px;
  margin-bottom: 10px;
  font-family: arial;
}

[dir=rtl] .bg-light-cust {
  background-color: #E5ECF2 !important;
  padding: 1rem 1rem !important;
  padding-right: 1rem;
}

[dir=rtl] .form-control[readonly],
[dir=rtl] .form-control:disabled,
[dir=rtl] .readonly-cust {
  color: #212529 !important;
  background: #D1DCE5 !important;
}

[dir=rtl] .readonly-cust {
  height: 30px;
  padding: 5px;
}

[dir=rtl] .filterinputcust {
  padding-right: 2px;
}

[dir=rtl] .h4-cust {
  color: #457B9D;
}

[dir=rtl] .nav-link-info {
  border: 0px !important;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  margin: 0px !important;
  padding: 0px !important;
  text-align: center !important;
}

[dir=rtl] .nav-link-info.active {
  border: 0px !important;
  color: #457B9D !important;
  background: transparent !important;
}

[dir=rtl] .infocircle {
  width: 130px;
  height: 130px;
  border-radius: 65px;
  border: 1px solid black;
  padding-top: 10px;
  text-align: center;
  margin: 2px;
}

[dir=rtl] .nav-link-info.active .infocircle {
  border: 3px solid #457B9D;
  background: white;
}

[dir=rtl] .nav-link-info .infocircle {
  border: 3px solid #D5DBE1;
  background: white;
}

[dir=rtl] .nav-link-info svg {
  margin-bottom: 5px;
}

[dir=rtl] a.nav-link-info {
  color: #8A96A0 !important;
}

[dir=rtl] a.nav-link-info:HOVER {
  color: #457B9D !important;
}

[dir=rtl] .nav .nav-tabs .row a {
  text-align: center;
}

[dir=rtl] .navshopsite {
  background: #92C8DF;
  height: 100px;
}

[dir=rtl] .h4info {
  color: white;
  font-family: arial;
  font-size: 2rem !important;
}

[dir=rtl] .btn-outline-dark-icust {
  background: white;
  border: 0px;
  font-weight: 600;
  font-size: 0.9rem;
}

[dir=rtl] .btn-outline-primary-icust {
  background: #F2994A;
  color: white;
  border: 0px;
  font-weight: 600;
  font-size: 0.9rem;
}

[dir=rtl] .btn-outline-primary-icust:HOVER {
  background: #EF8323;
  color: white;
}

[dir=rtl] .border-success-cust {
  border: 5px solid #2F353A;
}

[dir=rtl] .btn-secondarynav-cust {
  border: 0px;
}

[dir=rtl] .btn-secondarynav-cust svg {
  color: #2F353A !important;
}

[dir=rtl] .btn-secondarynav-cust:HOVER {
  background: #457B9D !important;
  color: white;
}

[dir=rtl] .btn-secondarynav-cust .svg-cust:HOVER {
  color: white !important;
}

[dir=rtl] .prodlist {
  border-bottom: 2px solid #F2994A;
  background: red;
}

[dir=rtl] .badgecat-cust {
  font-size: 0.7rem;
  /* text-transform: uppercase; */
  font-weight: 600;
  padding: 5px;
  margin: 1px;
  background: #d2f3f4;
  color: black;
}

[dir=rtl] #__msgEmbed {
  border: none;
  z-index: 999998;
  transform: translateZ(0px);
  position: fixed;
  transition: opacity 250ms cubic-bezier(0.645, 0.045, 0.355, 1) 0s, top, bottom;
  opacity: 1;
  color: white;
  width: 180px;
  text-align: center;
  height: 48px;
  border-radius: 5px;
  padding: 2px 5px;
  box-shadow: 0 0px 3px #7d7c7c;
  border-top: 2px solid #000000;
  background-color: #053776;
  background: linear-gradient(to bottom, #0b4ea2, #05346f);
  min-height: 45px;
  margin: 15px 15px;
  left: 0px;
  bottom: 0px;
}

@media (max-width: 1140px) {
  [dir=rtl] .butprodcust {
    height: 50px;
  }
}

@media (max-width: 990px) {
  [dir=rtl] .resp-text {
    display: inline;
  }

  [dir=rtl] .resp-hidetext {
    display: none;
  }

  [dir=rtl] .nav-link-cust {
    /* background: black; */
    line-height: 40px;
    padding-right: 10px !important;
    /* border-bottom: 1px solid #4F5459; */
    padding-left: 10px;
    margin-left: 0px;
  }

  [dir=rtl] .catbloccust {
    margin-top: -40px;
  }

  [dir=rtl] .col-form-label-cust {
    text-align: right;
  }

  [dir=rtl] .nav-leftcust {
    margin-right: 0px;
  }

  [dir=rtl] .dropdown-menu-title {
    color: white;
    padding-right: 10px;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    font-weight: 600;
    font-size: 1rem;
  }

  [dir=rtl] .nav-topcust {
    margin-top: 0px;
  }

  [dir=rtl] .padding-cust {
    padding-top: 60px;
  }

  [dir=rtl] .padding-custh {
    padding-top: 50px !important;
  }

  [dir=rtl] .padding-custr {
    padding-top: 120px !important;
  }

  [dir=rtl] .padding-custf {
    padding-top: 50px !important;
  }

  [dir=rtl] .form-label-sugg-cust {
    margin-top: 100px;
  }

  [dir=rtl] .cercle {
    border-radius: 50%;
    height: 800px;
    width: 800px;
    top: -550px;
    right: 0px;
  }

  [dir=rtl] .cercle2 {
    border-radius: 50%;
    height: 500px;
    width: 500px;
    top: -10%;
    left: 0px;
  }

  [dir=rtl] .position-cust {
    float: right !important;
  }
}

@media (max-width: 800px) {
  [dir=rtl] .hero__search__form {
    width: 500px !important;
  }

  [dir=rtl] .catbloccust {
    margin-top: -40px;
  }

  [dir=rtl] .catbloccust2 {
    margin-top: -300px;
  }

  [dir=rtl] .filters {
    margin-top: 30px;
  }

  [dir=rtl] .filtermobcust {
    padding-right: 5px;
  }

  [dir=rtl] .form-control-cust {
    font-size: 0.9rem !important;
  }

  [dir=rtl] .rowhcust {
    margin-top: -60px;
  }

  [dir=rtl] .rowpcust {
    margin-top: -15px;
  }

  [dir=rtl] .dropdown-item-cust:HOVER {
    color: #F2994A !important;
    background: inherit;
  }

  [dir=rtl] .hometext {
    font-size: 1.3rem;
    padding-bottom: 20px;
    width: 100%;
    padding-top: 0px;
  }

  [dir=rtl] .padding-custh {
    padding-top: 90px !important;
  }

  [dir=rtl] .padding-custr {
    padding-top: 140px !important;
  }

  [dir=rtl] .padding-custf {
    padding-top: 50px !important;
  }

  [dir=rtl] .homebloc {
    margin-top: 10px !important;
  }
}

@media (max-width: 1023px) {
  [dir=rtl] {
    /*.hero__search {margin-left: -25px !important; }*/
    /*.catbloccust {margin-top: -40px;}*/
    /*.rowhcust{margin-top: -105px;}*/
  }

  [dir=rtl] .hometext {
    font-size: 1.2rem;
    padding-bottom: 20px;
    width: 100%;
  }

  [dir=rtl] .hometext2 {
    font-size: 1rem;
    margin-top: 10px;
    color: #212529;
  }

  [dir=rtl] .newshophome {
    padding-top: 101px;
  }
}

@media (min-width: 1680px) {
  [dir=rtl] .hero__search__form {
    /* min-width: 650px; */
    /* margin-left: 100px;        */
    /* margin-right: 50px; */
  }

  [dir=rtl] .cercle {
    border-radius: 50%;
    height: 1480px;
    width: 1480px;
    top: -1220px;
    right: 0px;
  }

  [dir=rtl] .cercle2 {
    border-radius: 50%;
    height: 600px;
    width: 600px;
    top: -23%;
    left: 10%;
  }
}

@media (min-width: 1920px) {
  [dir=rtl] .cercle {
    border-radius: 50%;
    height: 1680px;
    width: 1680px;
    top: -1400px;
    right: 0px;
  }

  [dir=rtl] .cercle2 {
    border-radius: 50%;
    height: 600px;
    width: 600px;
    top: -23%;
    left: 15%;
  }
}

@media (max-width: 500px) {
  [dir=rtl] {
    /* .padding-custh {padding-top: 160px !important;}*/
  }

  [dir=rtl] .footer-position-cust {
    position: relative;
    /* height: 140px !important; */
    background: #D1DCE5;
  }

  [dir=rtl] .body-position-cust {
    padding-bottom: 0px !important;
    background: #F8F9FA;
  }

  [dir=rtl] #headersearchon {
    min-width: 115px !important;
    /* max-width: 115px !important; */
    margin-left: 0px !important;
  }

  [dir=rtl] #headerpostalcode {
    /* border: 1px solid #c1c1c1 !important; */
    /* margin: 0 9px !important; */
    /* border-radius: 4px !important; */
    margin-bottom: 12px !important;
  }

  [dir=rtl] .hero__search__form {
    min-width: 370px;
    /*340px*/
    margin-right: -5px;
    min-height: 80px;
    margin-top: 0px;
  }

  [dir=rtl] .logohead {
    color: #87CEEB;
    font-weight: 600;
    font-family: Comic sans MS;
    font-size: 25pt;
    padding: 0px;
    margin: 0px;
    margin-right: 5px;
  }

  [dir=rtl] .rowcathref-cust {
    width: 400px !important;
    max-height: 500px;
    font-size: 0.875rem;
    overflow-y: auto;
  }

  [dir=rtl] .padding-custr {
    padding-top: 210px !important;
  }

  [dir=rtl] .padding-custf {
    padding-top: 100px !important;
  }

  [dir=rtl] .padding-cust {
    padding-top: 120px !important;
  }

  [dir=rtl] .cercle {
    border-radius: 50%;
    height: 360px !important;
    width: 360px !important;
    top: -100px !important;
    right: 5% !important;
  }

  [dir=rtl] .cercle2 {
    border-radius: 50%;
    height: 150px !important;
    width: 150px !important;
    top: 150px !important;
    left: 10% !important;
  }

  [dir=rtl] .homebloc {
    margin-top: -10px !important;
  }

  [dir=rtl] .navbar-brand-cust {
    margin-top: 0px !important;
  }

  [dir=rtl] .navbarmobile-cust {
    margin-top: -15px;
  }

  [dir=rtl] .topmyhome-cust {
    margin-top: 100px;
  }

  [dir=rtl] .butprodcust {
    height: 40px;
  }
}

[dir=rtl] .ig_highlight {
  font-size: 1em;
  font-weight: bold;
  color: #F2994A;
}

[dir=rtl] .navbar-nav #dropdown-menu-cust {
  position: absolute !important;
}

[dir=rtl] .blocset {
  background: #DEE8F0;
  padding: 5px;
  margin-top: 10px;
}

[dir=rtl] .table .thead-dark th {
  color: white;
  background-color: #457B9D;
  border-color: #457B9D;
  font-weight: 600;
  text-transform: uppercase;
}

[dir=rtl] .badge-light-cat-cust5 {
  font-weight: 600;
  background: #68C0E4;
  margin: 2px;
  margin-bottom: 10px;
  font-size: 0.975rem;
  padding: 8px;
  text-decoration: none;
  color: white !important;
  font-family: arial;
  border-radius: 0.5rem;
  border: 0px;
}

[dir=rtl] .badge-light-cat-cust5:HOVER {
  cursor: pointer;
  background: #F2994A !important;
  text-decoration: none !important;
  color: white !important;
  padding: 8px;
  border: 0px;
}

[dir=rtl] .control-label-cust {
  font-weight: 600;
  color: #457B9D;
}

[dir=rtl] .label-order {
  min-height: 48px;
  font-weight: bold;
}

[dir=rtl] #navbarSupportedContent>ul>* {
  margin-left: unset;
  margin-right: 20px;
}

[dir=rtl] #headersearchtype {
  /* background-color:#efefef; */
  /* padding-left: 12px !important; */
}

[dir=rtl] .rounded-top {
  border-radius: 4px 4px 0 0 !important;
}

@media (max-width: 1200px) {
  [dir=rtl] .location.where {
    width: 100%;
  }

  [dir=rtl] .search-setting-toggle {
    display: block;
  }

  [dir=rtl] #search-form,
  [dir=rtl] #search-form>.input-group {
    width: 100%;
  }

  [dir=rtl] #navbarSupportedContent>ul>* {
    margin-left: unset;
    margin-right: 20px;
  }
}

[dir=rtl] div#navbarSupportedContent>ul>li:last-child {
  margin-left: 0;
}

@media (min-width: 720px) {
	.dropdown-menu-right {
		padding: 10px;
	}
}

.search-filter-card-header {
	padding: 8px !important;
}

.search-filter-list-group-item {
	padding: 8px !important;
}

.badge-promo {
  color: #fff;
  border-radius: 5px;
  font-size: 0.8em;
  font-weight: normal;
  padding:1px 6px;
  background-color: var(--brand-darkblue);
}

.h_page_cust_prod {
	margin-top:30px;
}