body {
  font-family: Neo !important;
  position: relative;
  text-align: right;
  direction: rtl;
}
@font-face {
  font-family: Neo;
  src: url(../css/NeoSansArabic.ttf);
}
@font-face {
  font-family: Nunito;
  src: url(../css/Nunito-Regular.ttf);
}
body::-webkit-scrollbar {
  width: 9px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: #eee;
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: var(--mainColor); /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid #cccccc6e; /* creates padding around scroll thumb */
}
.item-data-wrapp::-webkit-scrollbar {
  width: 2px; /* width of the entire scrollbar */
}

.item-data-wrapp::-webkit-scrollbar-track {
  background: #eee;
  /* color of the tracking area */
}

.item-data-wrapp::-webkit-scrollbar-thumb {
  background-color: #ddd; /* color of the scroll thumb */
  border-radius: 20px; /* roundness of the scroll thumb */
  border: 3px solid #cccccc6e; /* creates padding around scroll thumb */
}
/* custom */
:root {
  --mainColor: #d92026;
  --subColor: #5DBA46;
}
button:focus {
  outline: none !important;
  box-shadow: none !important;
}
a:hover {
  text-decoration: none;
}
.pd {
  padding: 40px 0;
}
.titles {font-size: 24px;display: none;}
.title {color: var(--mainColor);font-weight: bold;}
.globe {font-family: Nunito !important;}
.loader {
    margin: auto;
    border: 16px solid #f3f3f3;
    border-top: 16px solid var(--subColor);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: none;
    animation: spin 2s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
select {
  cursor: pointer;
  appearance: none;
  background-image: url(../images/arrow.png) !important;
  background-repeat: no-repeat;
  background-size: 10px 10px;
  background-position: left 14px center;
  height: 38px !important;
  color: #777 !important;
}
.success {
  padding: 20px;
  box-shadow: 0px 0px 4px 0px #ddd;
  border-radius: 5px;
  width: 300px;
  margin: auto;
  background-color: #fff;
  text-align: center;
  margin-bottom: 15px;
}
.success h4 , #verification h4 , #ForgetModal {text-align: center !important;}
.success img {width: 60px;margin-bottom: 20px;}
.item-data-wrapp {
  height: 170px;
  overflow-y: scroll;
  overflow-x: hidden;
}
  .holder h4 {
    text-align: center;
  }

  .holder form {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 2px 7px 0px #ddd;
    border-radius: 5px;
    width: 50%;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 12px;
  }

  .holder form a {
    cursor: pointer;
    display: block;
  }

  .holder form label {
    /* display: block; */
    color: var(--mainColor);
  }

  .holder form button {
    background-color: var(--mainColor);
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 6px 22px 6px;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .holder form i {
    color: var(--mainColor);
  }

  .line-height {line-height: 1.6em;}
  .bg-light0 {background-color: #fbfbfb8a;}
  .text-sm {font-size: small;}
  .text-xm {font-size: x-small;}
  .text-m {font-size: medium;}
  .text-lg {font-size: large;}
  .text-color {color: var(--mainColor);}
  .text-color1 {color: var(--subColor);}

  #verification input {
    width: 40px;
    height: 40px;
    display: inline-block;
    margin: 20px 2px 5px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #888;
  }

  #ForgetModal img {
    width: 63px;
    margin: 0px auto 20px;
  }
/* navbar */
.navbar {
  border-bottom: 1px solid #d92026;
  background-color: #fff;
  transition: all .3s ease-in-out;
  margin-top: -10px;
}
.navbar .navbar-brand img {width: 75px;border-radius: 50%;}
.navbar-brand p {color: var(--mainColor);font-weight: bold;}
.navbar .nav-link {color: #ffffff;font-size: 14px;transition: all .3s ease-in-out;}
.navbar .nav-link:hover {color: var(--subColor);}
.navbar .nav-user {padding-top: 8px;}
.navbar form {
  width: 600px !important;
  border-radius: 25px;
  height: 48px;
 
}
.navbar form input {
  width: 87% !important;
  border: none;
  margin-right: 8px;
}
.navbar form input:focus {box-shadow: none;outline: none;}
.navbar .call {
  margin: 2px;
  background-color: var(--mainColor);
  border-radius: 25px;
  border: 1px solid var(--mainColor);
}
.call a {color: #fff !important;font-size: 14px !important;padding-top: 10px;}
.navbar form {position: relative;}
.navbar form button {
  position: absolute;
  left: 10px;
  top: 6px;
  box-shadow: unset;
  color: #ffffff;
}
.navbar .dropdown a {color: var(--mainColor);font-size: 13px;}
.myAcc {text-align: right;}
.myAccount label {
  display: block;
  text-align: right;
  margin: 10px 0;
}
/* bottom nav */
.bottom-nav .bt-ul {margin-bottom: 0px;padding: 0;text-align: center;display: flex;}
.bottom-nav .bt-ul li {
  display: inline-block;
  transition: all .3s ease-in-out;
  border-top: 2px solid transparent;
  text-align: center;
  background-color: #f8f9fa;
  margin-left: 3px;
  margin-bottom: 6px;
    cursor: text;
    width: 100%;
    padding: 6px 8px;
}
.bottom-nav .bt-ul li:hover {border-top: 2px solid var(--subColor);}
.bottom-nav .bt-ul li img {
  width: 25px;
  display: block;
  margin: 6px auto;
}
.bottom-nav .bt-ul li a {
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  transition: all .3s ease-in-out;
  position: relative;
}
.bottom-nav .bt-ul li:hover a {color: var(--subColor);}
.mega-menu {
  height: 80vh;
  overflow-y: scroll;
  position: absolute;
  bottom: unset;
  left: 0;
  background-color: #fdfdfd;
  padding: 20px;
  width: 100%;
  z-index: 88;
  box-shadow: 0px 4px 4px #3333331f;
}
.mega-menu b {color: var(--mainColor);display: block;text-align: right;}
.mega-menu b i {font-size: x-small;}
.mega-menu img {width: 100% !important;}
.sub-link {margin-top: 8px;text-align: right;}
.web_en .sub-link {margin-top: 8px;text-align: left !important;}
.sub-link a {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  color: #888 !important;
  font-size: 14px !important;
  margin-top: 2px;
}
.slider {margin:0px auto 20px auto}
.slider .owl-carousel img {height: 350px;}
.slider a.dis img {height: auto;margin-bottom: 12px;border-radius: 5px;}
.slider .owl-carousel .owl-next {
  left: -50px;
}
.slider .owl-carousel .owl-nav button {
  position: absolute;
  top: 30%;
  width: 30px;
  height: 30px;
  top: 43%;
  font-size: 11px;
  border-radius: 50% !important;
  color: #fff !important;
  text-align: center;
  background-color: #d9202670 !important;
} 
.slider .owl-carousel button:hover {background: none;}
.slider .owl-carousel .owl-prev {
  right: 20px;
}
.slider .owl-carousel .owl-next {
  left: 20px;
}
/* free */
.free {
  background-color: var(--mainColor);
  color: #fff;
  padding: 25px 0px 15px;
}
.free h4 {
  font-weight: bold;
  text-transform: uppercase;
}
.banks img {
  width: auto;
    margin-top: 16px;
    height: 75px;
}
.banks ul {padding: 0;}
.banks ul li {display: inline-block;margin: 20px 12px;}
.banner {background-color: var(--mainColor);font-weight: bold;text-transform: uppercase;padding: 15px 0px;}
.banner img {width: 130px;display: inline-block;margin-top: 10px;}
.banner h4 {
  border-radius: 11px;
  background-color: #d92026;
  display: inline-block;
  padding: 10px 43px;
  font-size: 44px;
  margin-bottom: 0;
}
.banner strong {
  display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 25px 0 27px 25px;
    padding: 5px 13px;
    margin-top: 10px;
}
.banner h5 {margin-top: 20px;font-weight: bold;}
.banner h4 , .banner h5 {color: #fff;}
/* products */
.productDetails .data h3 
{
  text-align: right;
    font-size: 15px;
    color: #777;
    line-height: 1.8em;
    margin-top: 12px;
}
.productss .item {
  overflow: hidden;
  padding: 0px 10px 10px;
  margin: 20px 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  position: relative;
  transition: all .9s ease-in-out;
}
.productss .item img {
  width: 70%;
  border: none;
  height: 100px;
  margin: 35px 30px 5px 0px !important;
  display: block;
}
.productss .owl-carousel .owl-nav button {
 display: none;
} 
.products .item , .product-item {
  overflow: hidden;
  padding: 0px 20px 20px;
  margin: 10px 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  position: relative;
  transition: all .9s ease-in-out;
  min-height: 386px;
}

.products .item .price , .product-item .price {
  text-align: center;
  color: #dc3545;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  margin-top: 4px;
}
.item .price del , .product-item .price del {
  display: block;
  color: #aaa;
  font-size: 13px;
  text-align: right;
}
.discount {
  display: inline-block;
    color: #fff;
    padding: 4px 16px;
    border-radius: 3px;
    position: absolute;
    left: 6px;
    top: 6px;
    z-index: 8;
    font-weight: bold;
    font-size: 13px;
}
.products .item::before , .product-item::before {
  position: absolute;
  left: -320px;
  top: 0;
  width: 150%;
  height: 30%;
  transition: all .9s ease-in-out;
  content: '';
  background-color: rgba(255, 255, 255,.5);
  box-shadow: inset 0px 0px 30px rgba(255, 255, 255, 0.411);
  transform: rotate(-45deg);
  z-index: 5;
}
.products .item:hover::before , .product-item:hover::before {
  left:200px;
  top: 260px;
  width: 200%;
}
.products .item img , .product-item img {width: auto !important;border: none;height: 162px;margin: 0 auto !important;display: block;}
.products .item b , .product-item b {
  color: #4a4a4b;
    display: block;
    font-weight: normal;
    font-size: 13px;
    text-overflow: ellipsis !important;
    line-height: 1.3rem !important;
    max-height: 5rem !important;
    overflow: hidden !important;
    word-wrap: break-word !important;
    height: 4rem !important;
    white-space: inherit !important;
}
.products .item p , .product-item p {
  line-height: 1.7em;
  color: #777;
  font-size: 14px;
  margin: 6px 0px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
          line-clamp: 1; 
  -webkit-box-orient: vertical;
}

.products .owl-carousel .owl-nav {display: block;}
.products .owl-carousel .owl-nav button {
  position: absolute;
  top: 30%;
  width: 30px;
  height: 30px;
  top: 40%;
  border-radius: 50% !important;
  color: #fff !important;
  text-align: center;
  background-color: var(--mainColor) !important;
} 
.products .owl-carousel button:hover {background: none;}
.products .owl-carousel .owl-prev {
  right: -50px;
}
.products .owl-carousel .owl-next{
  left: -50px;
}
.add-to-cart {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--subColor);
  color: #fff !important;
  border-radius: 25px;
  text-align: center;
  font-size: 13px;
  border: none;
  box-shadow: 0px 2px 4px 0px #aaa;
  /* float: left; */
}
.place-btn {text-align: left;}
.products .owl-carousel .add-to-cart {float: left;}
.add-to-cart a {color: #fff !important;}
.add-to-cart i {font-size: 10px;}
.add-to-cart:hover {background-color: var(--subColor) !important;color: #fff;}
.stars {padding: 0;margin: 5px 0;}
.stars li {font-size: 15px;color: gold;display: inline-block;}
.filter-options {margin-bottom: 20px;}
.filter-options #accordion .card:last-child {display: none;}
.filter-options b {
  display: block;
  margin-bottom: 12px;
  font-size: 18px;
}
.filter-options .card {border-radius: unset;box-shadow: none;}
.filter-options .card-header {
  cursor: pointer;
  padding: 0px;
}
.filter-options .card-header .btn-link {
  color: var(--mainColor);
  text-decoration: none;
  font-weight: bold;
  display: block;
  width: 100%;
  text-align: right;
  box-shadow: none;
}
.filter-options .card-header i {
  position: absolute;
  left: 12px;
  top: 14px;
}
.filter-options .card-body {
  padding: 10px;
}
.filter-options .card-body label {display: block;margin-bottom: 10px;cursor: pointer;}
.sort-by {text-align: right;}
.sort-by select {
  display: inline-block;
  width: 150px;
  margin-left: 12px;
}
.view button {
  background-color: #fbfbfb;
  color: var(--subColor);
  box-shadow: none;
}
#list {display: none;}
.breadcrumb {
  background-color: #fdfdfd;
  box-shadow: 0px 2px 4px 0px #eee;
  border: 1px solid #ddd;
}
.breadcrumb li a {color: #4a4a4b;font-size: 14px;font-weight: bold;}
.breadcrumb li.active {color: var(--subColor);font-size: 14px;padding-top: 3px;}
.range-slider {
	margin: auto;
	text-align: center;
	position: relative;
}

.range-slider svg,
.range-slider input[type=range] {
	position: absolute;
	left: 0;
	bottom: 0;
}

.range-slider input[type=number] {
	border: 1px solid #ddd;
	text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.range-slider input[type=number]::-webkit-outer-spin-button,
.range-slider input[type=number]::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.range-slider input[type=number]:invalid,
.range-slider input[type=number]:out-of-range {
	border: 2px solid #ff6347;
}

.range-slider input[type=range] {
	-webkit-appearance: none;
	width: 100%;
}

.range-slider input[type=range]:focus {
	outline: none;
}

.range-slider input[type=range]:focus::-webkit-slider-runnable-track {
	background: #2497e3;
}

.range-slider input[type=range]:focus::-ms-fill-lower {
	background: #2497e3;
}

.range-slider input[type=range]:focus::-ms-fill-upper {
	background: #2497e3;
}

.range-slider input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: #2497e3;
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}

.range-slider input[type=range]::-webkit-slider-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid #2497e3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -7px;
}

.range-slider input[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: #2497e3;
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}

.range-slider input[type=range]::-moz-range-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid #2497e3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
}

.range-slider input[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	cursor: pointer;
	animate: 0.2s;
	background: transparent;
	border-color: transparent;
	color: transparent;
}

.range-slider input[type=range]::-ms-fill-lower,
.range-slider input[type=range]::-ms-fill-upper {
	background: #2497e3;
	border-radius: 1px;
	box-shadow: none;
	border: 0;
}

.range-slider input[type=range]::-ms-thumb {
	z-index: 2;
	position: relative;
	box-shadow: 0px 0px 0px #000;
	border: 1px solid #2497e3;
	height: 18px;
	width: 18px;
	border-radius: 25px;
	background: #a1d0ff;
	cursor: pointer;
}
/* fixed social */
.fixed-social {
  position: fixed;
  top: 40%;
  left: 3px;
  border-radius: 5px;
  z-index: 333;
}
.fixed-social a {
  display: block;
  cursor: pointer;
  height: 30px;
  width: 30px;
  text-align: center;
  padding-top: 0.1em;
  margin: 3px 0px;
  border-radius: 7px;
}
.fixed-social a:nth-child(1) {background-color: #e1306c;}
.fixed-social a:nth-child(2) {background-color: #0084ff;}
.fixed-social a:nth-child(3) {background-color: #319b36;}
.fixed-social a img {width: 20px;height: 20px;}

/* brands */
.brands {background-color: #fbfbfb;}
.brands .item img {margin: 20px auto;}

/* ads */
.ads img {width: 100%;height: auto;margin: 10px 0px;border-radius: 4px;}

/* main */
.main img {width: 100%;}
.main h4 a {color: #4a4a4b;font-weight: bold;font-size: 18px;}
.main h4 {color: #4a4a4b;font-weight: bold;font-size: 18px;}
.main p {line-height: 1.6em;}
.main-link a {
  margin: 3px 0px;
  display: block;
  color: #4a4a4b;
  font-size: 14px;
}
.main-link a i {font-size: x-small;}
.view-more {color: var(--mainColor);font-weight: bold;margin-bottom: 25px;display: inline-block;font-size: 14px;}
.view-more i {font-size: x-small;}
.main .borderr {
  margin-bottom: 12px;
  border-right: 1px solid #eee;
}
#contactUs {
  padding: 10px;
  background-color: #eee;    
}
#contactUs label , #contactUs input , #contactUs textarea {
  margin-bottom: 10px;  
}
#contactUs button {background-color: var(--mainColor);color: #fff;}
/* footer */
footer {
  background-color: var(--mainColor);
}
.scroll_up {
  display: inline-block;
  position: fixed;
  cursor: pointer;
  bottom: 70px;
  left: 46px;
  z-index: 4444;
  display: none;
  height: 42px;
  width: 42px;
  background-color: var(--subColor);
  text-align: center;
  border-radius: 50%;
  padding-top: 7px;
  display: none;
  box-shadow: 0px 3px 4px #3333332f;
}
.scroll_up img {
  width: 24px;
}
.social a {
  cursor: pointer;
  height: 30px;
  width: 30px;
  text-align: center;
  padding-top: 0.1em;
  margin: 3px 0px;
  border-radius: 7px;
  display: inline-block;
  margin-bottom: 10px;
}
.social a:nth-child(1) {background-color: #e1306c;}
.social a:nth-child(2) {background-color: #0084ff;}
.social a:nth-child(3) {background-color: #319b36;}
.social a img {width: 20px;height: 20px;}
.payment img {
  width: 40px;
    background-color: #fff;
    height: 32px;
    border-radius: 2px;
    margin-top: 7px;
    padding: 3px;
}
footer h5 {font-weight: bold;font-size: 17px;color: #fff;}
footer h5 i {font-size: small;}
footer b ,
.links a {display: block;color: #fff;margin-bottom: 10px;}
.subscribe input {
  width: 70%;
  display: inline-block;
  margin-bottom: 10px;
}
.subscribe button {
  background-color: #fff;
    color: var(--mainColor);
    font-weight: bold;
    display: inline-block;
    height: 38px;
    border: #007bff 1px solid;
    border-radius: 4px;
    cursor: pointer;
}
@media(max-width:768px) {
  .navbar form {width: auto !important;}
  .navbar .nav-user {padding-top: 0px;}
  .navbar form button {top: -3px;}
  .navbar .call {
    margin: 2px;
    width: 150px;
    text-align: center;
  }
  .bottom-nav .bt-ul {
    display: flex;
    overflow-x: scroll;
}
.bottom-nav .bt-ul li {
  padding: 0px 17px 6px;
  margin-bottom: 4px;
}
.scroll_up {left: 10px;}
.free h4 {margin-left: 0;}
.products .owl-carousel .owl-nav button {display: none;}
.footer {padding: 40px 0px;}
.slider .owl-carousel img {
  height: 220px;
}
.slider a.dis img {
  height: auto;
}
.slider .owl-carousel .owl-nav button {display: none;}
.banks img {height: 36px;}
.products .item, .product-item {padding: 0px 13px 20px;}
.products .item::before, .product-item::before {display: none;}
.cart-items {
  left: 14px !important;
  right: 12px;
  width: auto !important;
}
}
@media(max-width:414px) {
  .banner .express , .banner h5 {text-align: center;}
  footer h5 {margin: 20px 0px;}
  .brands .item img {width: 63%;}
  .coll-flex .product-item {display: block !important;margin: 7px 0px !important;}
  .coll-flex .effect {
      width: 50%;
      margin: auto !important;
  }
  .coll-flex .product-item > a {display: block !important;}
  #signin , #SIGNUP {width: auto !important;}
  #checkPromo .col-md-8 div {display: block !important;margin: 0;}
  #checkPromo #promo {display: block !important;width: 100%;}
  .shopping-bag .checkout input[type="submit"] {width: 100%;margin-top: 5px;}
}


.pay {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 0px 4px 0px #ddd;
  margin: 20px auto;
  padding: 20px;
  width: 500px;
  text-align: center;
}
.pay img {width: 80px;margin-bottom: 20px;}
.success-section img {width: 160px;}
.pay h5 {color:#085c9b;}