
@import url('https://fonts.googleapis.com/earlyaccess/droidarabickufi.css');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {

    font-family: "GESSTextLight-Light";

    font-style: normal;

    font-weight: normal;

    src: local("GESSTextLight-Light"), url("GESSTextLight-Light.eot?#iefix") format("embedded-opentype"), url("GESSTextLight-Light.woff") format("woff"), url("GESSTextLight-Light.ttf") format("truetype"), url("GESSTextLight-Light.svg#GESSTextLight-Light") format("svg");

}
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #502c7e;
}

a:hover {
  color: #ea6981;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
}
input, a{
	outline: none;
}
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  transition: 0.5s;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #e43c5c;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top:hover {
  bottom: 19px;
}


.root{
 height: 100vh;
}
.app{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/*--------------------------------------------------------------
# left section
--------------------------------------------------------------*/

.left-section{
      float: left;
      max-width: 33.3%;
      background-color: #d4d4d494;
      position: fixed;
      width: 33.3%;
      /*height: 100vh; */
      overflow: scroll;
	position: relative;
      /* background: #fff; */
}


/* Hide scrollbar for Chrome, Safari and Opera */
.left-section::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.left-section {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}





/*--------------------------------------------------------------
# right section
--------------------------------------------------------------*/

.right-section{
    float: left;
    text-align: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 33.3%;
}




@media (max-width: 1024px) {

  .right-nav, #header .logo{
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}








/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 0;
  width: 76%;
  margin-left: 33.3%;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  margin-right: 140px;
  padding: 0;
  margin-left: 25px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 175px;
}

#header.header-scrolled, #header.header-inner-pages {
  /* background: #fff; */
  /* box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); */
  /* padding: 12px 0; */
}

#header.header-scrolled .logo a, #header.header-inner-pages .logo a {
  color: #493c3e;
}

@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */


.nav-menu .pull-left{
    float: left;
}
.nav-menu .pull-right{
    float: right;
    margin-left: 100px;
}
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 20px 0 10px 18px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 13px;
  padding: 0 4px;
  letter-spacing: 0.4px;
  font-family: "Poppins", sans-serif;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #e43c5c;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu .active > a:before {
  visibility: visible;
  transform: scaleX(1);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.left-menu ul li:first-child {
    margin: 0 0 0 16px;
}
.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #493c3e;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #e43c5c;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 20px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

.header-scrolled .nav-menu > ul > li > a, .header-inner-pages .nav-menu > ul > li > a {
  /* color: #493c3e; */
}


.right-nav{
    float: right;
    list-style: none;
    margin-top: 10px;
    margin-left: 100px;
}
.right-nav li{
    float: left;
    margin: 10px;
}
.right-nav li a{
    color: #fff;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  left: 0px;
  top: 15px;
  z-index: 100000;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  color: #fff;
}

.sticky .mobile-nav-toggle i {
  color: #000;
}

.mobile-nav {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 10000;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  /* border-radius: 10px; */
  padding: 60px 0;
}

.mobile-nav {
  margin: 0 auto;
  padding: 3em 1.5em;
  list-style: none;
  width: 100%;
  height: 100vh;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #493c3e;
  padding: 10px 0px;
  font-weight: 500;
  font-size:12px;
  outline: none;
  border-bottom: 1px solid #efefef;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #e43c5c;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 20px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(45, 37, 38, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #291e1e;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#hero .hero-text{
        position: absolute;
        bottom: 20px;
        color: #fff;
        left: 10px;
        width: 100%;
}

.copyright{
    float: left;
    margin-left: 50px;
}

.logo-footer{
    float: right;
    width: 80px;
    margin-right: 50px;
}
.logo-footer img{
    max-width: 100%;
}




@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h3 {
    font-size: 22px;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}




/*--------------------------------------------------------------
# Main page
--------------------------------------------------------------*/



.section-contents{
    float: left;
    width: 100%;
     background: #fff;
    margin-bottom: 10px;
    padding: 0px;

}

.heg-100{
	height: 100%;
}

.top-area-buttons{
    text-align: center;
    /* margin-top: 20px; */
    float: left;
    width: 100%;
    padding: 0 10px;
}
.top-area-buttons a{
    border: solid 1px #f5f5f5;
    color: #502c7e;
    text-align: center;
    padding: 6px 0px;
    border-radius: 10px;
    margin: 10px;
    font-weight: normal;
    width: 45%;
    font-size: 14px;
    float: left;
}

.top-area-buttons a:hover{
    background:#502c7e;
    color: #fff;
   border: solid 1px #7b4844;
}

.top-area-buttons .active{
    background:#502c7e;
    color: #fff;
    border: solid 1px #7b4844;
}

.search-bar {
    float: left;
    width: 100%;
    padding: 0 10px 0 5px;
    margin: 0px auto 15px;
}

.search-bar .form-control, .search-bar .btn-outline-secondary{
    background: #f5f5f5;
    font-size: 15px;
    border: none !important;
}

.search-bar .btn-outline-secondary:hover{
    color: #000;
}

.card-body {
    padding: 1.25rem 0;
}
.left-menu{
    float: left;
    margin: 5px auto;
    width: 100%;
    text-align: left;
}
.left-menu ul{
    list-style: none;
    float: left;
    padding: 0px 0px 10px;
    margin: 0;
}
.left-menu ul li{
    float: left;
    margin: 0 15px;
}

.arabic .left-menu ul li{
    float: right;
}
.left-menu ul li a{
  color:#6db4d2;
  padding-bottom: 2px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 12px;
}
.left-menu ul li a:hover{
  color:#502c7e;
  border-bottom:solid 2px #502c7e;
}

.left-menu ul li a.active{
  color:#502c7e;
  border-bottom:solid 2px #502c7e;
}

.logo-mobile{
    display: none;
}



/*--------------------------------------------------------------
# Accordion
--------------------------------------------------------------*/



#main #menu-item .card {
  border: 0;border-bottom: solid 1px rgba(82, 82, 82, 0.1);
}

#main #menu-item .card .card-header {
  border: 0;
 background: #fff !important;
  border-radius: 2px;
  padding: 0;
}

#main #menu-item .card .card-header .btn-header-link {
  color: #fff;
  display: block;
  text-align: left;
  /* background: #ffffff; */
  color: #000000;
  padding: 15px 16px  10px;
  font-size: 15px;
  border-bottom: solid 1px rgba(82, 82, 82, 0.1);
  text-transform: none;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.2px;
  margin: 0 0px;
  /* border-top-color: rgba(82, 82, 82, 0.1); */
}

#main #menu-item .card .card-header .btn-header-link:after {
  content: "\f106";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  float: right;
  margin-right: 5px;
}

#main #menu-item .card .card-header .btn-header-link.collapsed {
  /* background: #ffffff; */
  color: #502c7e !important;
  margin: 0;
  font-size: 17px;
}
#main #menu-item .card .border-warning{
	border:1px solid #dee2e6!important}
#main #menu-item .card .card-header .btn-header-link.collapsed:after {
  content: "\f107";
}
.fix_bott {
    position: fixed;
    bottom: 0;
    left:0;
    max-width: 33.3%;
    width: 33.3%;
     z-index:1000;
}
#main #menu-item .card .collapsing {
  background: #ffffff;
  line-height: 30px;
}

#main #menu-item .card .collapse {
  border: 0;
}

#main #menu-item .card .collapse.show {
  /* background: #ffffff; */
  line-height: 30px;
  color: #222;
}



.menu-desc{
  padding-right:0
}

.menu-desc h4{
    font-size: 18px;
    text-transform: uppercase;
}

.menu-desc p{
    font-size: 13px;
    line-height: 16px;
}

.menu-desc a{
    width: 100%;
    color: #a26809;
    /* font-size: 15px; */
    /* font-size: 13px; */
}

.btn-buy{
    border-radius: 4px;
    color: rgb(0, 0, 0);
    background: none;
    font-size: 13px;
    letter-spacing: -0.1px;
    line-height: 1.23;
    padding: 10px 8px;
    min-height: 32px;
    margin-top: 4px;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    touch-action: manipulation;
    transition: all 0.2s ease-in 0s;
    border: 1px solid;
    user-select: none;
}
.addPsHome a{
    border-radius: 4px;
    color: rgb(0, 0, 0);
    background: none;
    font-size: 13px;
    letter-spacing: -0.1px;
    line-height: 1.23;
    padding: 8px 8px;
    min-height: 32px;
    margin-top: 4px;
    cursor: pointer;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    touch-action: manipulation;
    transition: all 0.2s ease-in 0s;
    border: 1px solid;
    user-select: none;
}


.menu-img{
 padding: 10px 10px 0px 0px;
}
.menu-img img{
    max-width: 100%;
}

.card-body .row{
    /* margin-bottom: 25px; */
}


.start-order{
    text-align: center;
    margin: 20px 20px;
}
.mobile-nav li {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    width: 90%;
}

ul.pull-left {
    width: 100%;
    margin-top: 0px;
    padding: 0 !important;
    float: left;
    margin-bottom: 50px;
}

.start-order .order-btn{
    background: #502c7e;
    border-radius: 4px;
    color: #fff;
    border: none;
    width: 100%;
    float: left;
    margin-bottom: 10px;
    /* font-size: 14px; */
    padding: 10px;
    font-size: 15px;
    font-weight: 600;
    position: relative;
}
.start-order .order-btn a{
	color:#000;
	}
.start-order .order-btn:hover{
    background: #6db4d2;
    color: #fff;
}
.start-order .order-btn:hover a{
	 background: #83302b;
    color: #fff;}
.arabic .cnl{
  margin-right:100px;
}
.cnl{
  margin-left:100px;
}
modal-footer .btn-danger {
	background: #83302b;
    color: #fff;
	}
.img-responsive{
    max-width:100%;
}
.menu-banner{
    width: 100%;
    padding: 10px;
    background: url(../img/products/product-banner1.jpg) no-repeat;
    background-size: cover;
    height: 300px;
    /* margin-bottom: 20px; */
}
h5.float-left {
    width: 75%;
}
.back-btn{
    background: none;
    color: #000;
    font-size: 30px;
    border: none;
    padding-bottom: 0px;
        position: absolute;
    top: 0;
    left: 0;
}

.menu-desc{
    padding: 0px 20px 0px 16px;
}

.menu-desc h4{
    font-weight: normal;
    font-size: 15px;
    color: #000;
    font-weight: 400;
    line-height: 1.33;
}
.menu-desc p{
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.23;
    color: rgb(97, 97, 97);
}


.section-contents .title{font-weight: bold;font-size: 16px;color: #000;width: 100%;padding: 9px 15px 0;}

.price{
   padding: 15px 20px 15px 20px;
}
.price h4{font-weight: bold;font-size: 16px;color: #000;margin-bottom: 2px;}
.price h6{
    color: #846b32;
    font-size: 13px;
}
.price-tag{
    padding: 0 20px;
}
.arabic .price-tag h5{
	text-align:center;}
.price-tag h5{
   border-radius: 4px;
   color: rgb(0, 0, 0);
   /* background-color: rgb(255, 255, 255); */
   font-size: 13px;
   letter-spacing: -0.1px;
   line-height: 1.23;
   padding: 8px 8px;
   min-height: 32px;
   margin-top: 0px;
   -webkit-box-align: center;
   align-items: center;
   position: relative;
   font-stretch: normal;
   font-style: normal;
   font-weight: 600;
   text-decoration: none;
   text-align: center;
   border: 1px solid;
}

.order-items{
   padding: 0px 15px;
}
.order-items h4{
    font-size: 14px;
    color: #000;
    font-weight: bold;
}
.order-items h6{
    color: #502c7e;
    font-size: 15px;
    font-weight: bold;
}
.promo_box {
    padding: 10px 15px;
    width: 100%;
}

.promo_box input {
    width: 75%;
    float: left;
    font-size: 15px;
    border: none;
    color: #11111178;
    border-bottom: 1px solid #e6e6e6;
    border-radius: 0;
    margin-right: 5%;
}

.promo_box button {
    width: 100%;
}
.order-price{
    text-align: center
}
.order-price h5{
    font-size: 12px;
    font-weight: bold;
    padding-bottom: 4px;
    color: #000;
}
.remove-tag{
   border-radius: 4px;
   color: rgb(0, 0, 0);
   background-color: rgb(255, 255, 255);
   font-size: 13px;
   letter-spacing: -0.1px;
   line-height: 1.23;
   padding: 8px 16px;
   min-height: 32px;
       cursor: pointer;
   margin-top: 16px;
   display: inline-block;
   -webkit-box-align: center;
   align-items: center;
   position: relative;
   font-stretch: normal;
   font-style: normal;
   font-weight: 600;
   text-decoration: none;
   text-align: center;
   border: 1px solid;
}

.review-orders{
    border-bottom: solid 1px #ccc;
    margin: 0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}


.size{
  padding: 0px 0px 0px 20px;
}
.arabic .size{
  padding: 0px 20px 0px 0px;
}
.instruction input{
    border: none;
	width: 100%;
    border-bottom: solid 1px #ccc;
}

.qty{
    text-align: center;
    padding-bottom: 10px;
}

.qty .count {
    color: #000;
    display: inline-block;
    vertical-align: top;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.27;
    padding: 0px 2px;
    m: 65px;
    min-width: 60px;
    text-align: center;
}
.qty .plus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    color: #777070;
    FONT-WEIGHT: 200;
    height: 20px;
    width: 20px;
    margin-top: 5px;
    font: 19px/1 Arial,sans-serif;
    text-align: center;
    border-radius: 50%;
    background-clip: padding-box;
    background: none!important;
    border: solid 1px #bdbaba;
    line-height: 19px;
    }
.qty .minus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    color: #777070;
    width: 20px;
    height: 20px;
    margin-top: 5px;
    /* line-height: 50px; */
    font: 30px/1 Arial,sans-serif;
    text-align: center;
    border-radius: 50%;
    background-clip: padding-box;
    background: none!important;
    border: solid 1px #bdbaba;
    line-height: 14px;
}

.minus:hover{
      border-color:#7c458a;
}
.plus:hover{
       border-color:#7c458a;
}
/*Prevent text selection*/
span{
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
input{
    border: 0;
    width: 2%;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input:disabled{
    background-color:white;
}

.checkout-top{
      background: #fff;
      padding: 20px 0;
      padding-bottom: 20px;
      float: left;
      width: 100%;
      line-height: 25px;
}


.checkout-top .back-btn{
    padding: 15px 0px 0 20px;
    color: #502c7e;
    font-size: 25px;
    border: none;
    float: left;
}


.arabic .checkout-top h3{
	text-align:center !important;}
.checkout-top h3{
        font-size: 17px;
        color:#502c7e;
        padding-bottom: 0px;
        font-weight: 600;
        padding-right: 30px;
        margin: 0;
        text-align: center;
}

.arabic .checkout-top h3 {

        padding-right: 55px;
	}
.col-md-12.instruction {
    padding: 20px 20px;
}

.steps {
    /* position: absolute; */
    /* top: 0px; */
    float: left;
    /* z-index: 3000; */
    /* background-color: rgb(255, 255, 255); */
    display: flex;
    height: 10px;
    width: 100%;
    margin: 13px 0;
}
.step1 {
    flex: 1 1 0%;
    background-color: #7c4844;
    margin: 0px 2px;
    font-size:12px;
    text-align:center;
    transition: background-color 250ms ease 0s;
}
.step1:last-of-type {
    margin: 0px 0px 0px 0px;
}

.arabic .step1:last-of-type {
    margin: 0px 15px 0px 0px;
}

.step1 {
    flex: 1 1 0%;
    background-color: #502c7e;
    margin: 0px 15px 0px 0px;
    transition: background-color 250ms ease 0s;
}
.step2 {
    flex: 1 1 0%;
    background-color: rgb(219, 219, 219);
    margin: 0px 2px;font-size:12px;text-align:center;
    transition: background-color 250ms ease 0s;
}
.step2 {
    flex: 1 1 0%;
    background-color: rgb(219, 219, 219);
    margin: 0px 15px 0px 0px;
    transition: background-color 250ms ease 0s;
}
.step2:last-of-type {
    margin: 0px 0px 0px 2px;
}
.arabic .step2:last-of-type {
    margin: 0px 15px 0px 2px;
}
.contact-info{
    padding: 0 20px;
}
.contact-info input{
    border:none;
    border-bottom:solid 1px #ccc;
    background: none;
    font-size: 16px;
    padding: 10px 0px;

    width: 100%;
}

.payment-method{
    text-align: center;
    margin-top: 25px;
}

.payment-method h4{
    color:#000;
    padding-top: 22px;
    font-size: 22px;
    font-weight: 400;
}
.arabic .payment-method h4{
	text-align:center !important;}
.payment-method p{
    color: #121212;
    margin-left: 25px;
    font-size: 15px;
}
.payment-method span{
    margin-left: 10px;
    color: #333;
    border: solid 1px #ccc;
    border-radius: 50px;
    padding: 2px;
    line-height:1;
    width: 25px;
    right: 0;
    height: 25px;
    position: absolute;
    margin-right: 23px;
}
.payment-method span a{
  color:#8a8a8a;
  font-size:13px
}

.payment-badge{
    background: #f2ecec;
    border-radius: 10px;
    color: #121212;
    padding: 10px 30px;
    width: 91%;
    font-size: 13px;
    margin: 40px 20px 20px !important;
}
.payment-badge img{
    max-width: 100%;
    margin-top: 5px;
}

.payment-via{
    margin: 10px 15px !important;
}
.payment-via .col-md-6 , .payment-via .col-md-4 {
    padding: 0;
}
.payment-option{
   text-align: center;
   border: solid 1px #ccc;
   padding: 10px;
   border-radius: 15px;
   color: #0c2c6f;
   margin-right: 4px;
   max-width: 96%;
   margin: 0 auto;
   display: block;
}
.payment-option:hover{
   border:solid 1px #ff0000;
}
.payment-via .active{
     border:solid 1px #ff0000;
}
.payment-option img{
  max-width:100%;margin-bottom:10px;
}
.payment-option h5{
  font-size:13px;
  font-weight: normal;

  margin: 0;
}

.payment-option p{
    font-size: 14px;
}

.card-option{
    margin: 0px;
    padding: 0;
}
.submit{
    float: right;
    border-radius: 4px;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    font-size: 13px;
    letter-spacing: -0.1px;
    line-height: 1.23;
    padding: 8px 21px;
    min-height: 32px;
    margin-top: 16px;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    text-decoration: auto;
    text-align: center;
    border: 1px solid;
    margin-right: 30px;
    text-transform: uppercase;
}
.confirm-order{
    padding: 20px 5px 0 0;
    border-color: rgb(245, 245, 245) !important;
}
.confirm-order h4{
    font-weight: 400;
    font-size: 15px;
    color: #000;
    line-height: 1.33;
    text-transform: uppercase;
    margin-bottom: 0;
}
.confirm-order h4 a{
  color: #000;
}
.right-arrow-btn{
    float: right;
    background: none;
    border:none;
    color:#6b112a;
    font-size: 13px;
}
.right-arrow-btn i{
    font-size: 16px;
    margin-left: 10px;
    color:#000;
}

.right-arrow-btn2{
    float: right;
    background: none;
    border:none;
        text-align: right;
    color:#502c7e;
    font-size: 15px;
    font-weight: 400;
	padding:0px;
}
.confirm-order .col-md-7, .confirm-order .col-md-6{
	padding-right: 0px;}
.confirm-order .col-md-4{
	padding-left: 15px;}
.confirm-order .col-1 {
	max-width: 6.333333%}

.right-arrow-btn2 i{
    font-size: 16px;
    margin-left: 10px;
    color:#502c7e;
    /* font-weight: normal; */
}

.right-arrow-btn3{
    float: right;
    background: solid 1px #ccc;
    border:none;
    color:#333;
    color:#333;
    font-size: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.price-area {
    padding-left: 0;
    padding-right: 20px;
}


.order-item{
    padding: 15px 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: solid 1px #ccc;
}
.order-item h5, .review-orders h5{
    color: #502c7e;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 5px;
}
.order-item h5 span{
    color: #ff0000;
        margin-right: 5px;

}
.price-area h4{
    font-size: 15px;
    font-weight: 400;
    float: right;
    color: #000;
    width: 100%;
    text-align: right;
}
.price-area p{
    float: right;
    font-size: 12px;
    margin-bottom: 0;
}

.pickup-info{
    padding: 20px 5px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    width: 100%;
    border-bottom: solid 1px #ccc;
}
.pickup-info h5{
    color: #333;
    text-transform: none;
    font-size: 15px;
    font-weight: 400;
}
.arabic .pickup-info h5{
	direction:ltr;
	font-family:'GESSTextLight-Light', Arial, sans-serif;
	}
.pickup-info h5 img{
    max-width: 20px;
    margin-right: 5px;
    float: left;
    margin-bottom: 20px;
}
.pickup-info p{
    margin-left: 40px;
}
.fl{
    margin-left: -1px;
    float: right;}
.payment-info{
     padding: 10px 20px;
     padding-bottom: 5px;
     margin-bottom: 10px;
}
.payment-info h5{
    color: #0c2c6f;
    font-weight: 400;
    font-size: 15px;
}
.payment-info h5 span{
    color: #333;
}
.total{
     padding: 40px 5px 0;
     padding-bottom: 5px;
     margin-bottom: 10px;
}
.total h5{
    font-size: 17px;
    font-weight: 600;
    color:#000;
}
.row{
	margin-left: 0;
	margin-right: 0;
}
.total h4{
      font-size: 17px;
      font-weight: 600;
      color:#000;
      float: right;
}
.delivery-area{
    list-style: none;
    margin: 0;
    padding: 0;
}
.delivery-area #mbl{
    display:none !important;
}
.delivery-area li a{
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.33;
    margin-left: 16px;
    margin-right: 16px;
    letter-spacing: -0.2px;
    /* width: 93%; */
    display: block;
    border-bottom: solid 1px rgba(82, 82, 82, 0.1);
    /* float: left; */
}
.delivery-area li a{
    color: #111;
}
.delivery-area li a:hover{
    color:#502c7e;
}

.status h4{
    font-size: 16px;
    font-weight: bold;
    color: #000;
}
.status p{
  color:#333;
}
.status h5{
  color:#502c7e;
  font-size:16px;
  font-weight:bold;
}
.noted{
	line-height:1;
}
.success{
    text-align: center;
    padding: 15px 0 0;
}
.succes img{
    max-width: 100%;
}

.success h3{
    color: #502c7e;
    padding: 25px 0 0;
}
.arabic .success h3{
	text-align:center !important;}

.code-area{
    border: solid 1px #6b112a;
    width: 80%;
    text-align: center;
    margin: 0 auto;
    padding: 10px;
    border-radius: 25px;
    padding-top: 15px;
    margin-bottom:10px;
}
.code-area h5{
    text-transform: uppercase;
    font-size: 16px;
}
.code-area span{
  color:#6b112a;
  font-weight:bold;
}
.view-reciept{
    text-align: center;
    width: 100%;
    margin: 20px auto;
    padding: 0 5px;
}
.view-reciept a{
    border:solid 1px #502c7e;
    padding: 10px 40px;
    border-radius: 20px;
    color: #282828;
    width: 100%;
    float: left;
}
.view-reciept a:hover{
  color:#fff;
  background:#502c7e;
  border-color:#6db4d2;
}


/*-----Tabs----*/

.card {
    /* background-color: #ffffff; */
    border: 1px solid rgba(0, 34, 51, 0.1);
    /* box-shadow: 2px 4px 10px 0 rgba(0, 34, 51, 0.05), 2px 4px 10px 0 rgba(0, 34, 51, 0.05); */
    /* border-radius: 0.15rem; */
}

/* Tabs Card */

.tab-card {
  border: 0px solid #eee;
}

.tab-card-header {
  background:none;
	padding: 0;
}
/* Default mode */
.tab-card-header > .nav-tabs {
  border: none;
  margin: 0px;
}
.tab-card-header > .nav-tabs > li {
  margin-right: 2px;
  width: 24.3%;
}
.tab-card-header > .nav-tabs > li > a {
  border: 0;
  border-bottom:2px solid transparent;
  margin-right: 0;
  color: #737373;
  padding: 10px 0;

  text-align: center;
  font-size: 13px;

}
.badge-dark {
    color: #343a40;
    background-color: #fff;
    float: left;
    padding: 10px 0px;
    position: absolute;
    top: 6px;
    left: 6px;
    width: 30px;
    height: 30px;
}
.tab-card-header > .nav-tabs > li > a.show {
    border-bottom:2px solid #007bff;
    color: #007bff;
}
.tab-card-header > .nav-tabs > li > a:hover {
    color:#593163;
}

.tab-card-header > .tab-content {
  padding-bottom: 0;
}

.tab-card-header > .nav-tabs > li > a span{
    font-weight: bold;font-size: 14px;
}

.tab-card-header > .nav-tabs .nav-link.active {
    color: #495057;
    /* padding: 20px; */
    background-color: #f2ecec;
    border-color: #dee2e6 #dee2e6 #dee2e6;
}
.pt-30{
	padding-top: 32px;
	padding-bottom: 30px;
}
.order-item h6 {
    font-size: 12px;
}.contact-info label {
    font-size: 12px;
    margin: 0;
}

 /*--Floating label--*/

.floating {
  margin-bottom: 10px;
  background-color: var(--field__background);
  transition: background-color 0.2s ease;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.floating:hover,
.floating:focus-within {
  background-color: var(--field__background--hover);
}

.floating__input {
  padding: 1.7rem 1rem 0.6rem;
  font-size: 1rem;
  border-bottom: 0.1rem solid var(--input__border);
  transition: border-color 0.2s ease;
  caret-color: var(--color__accent);
}

.floating:hover .floating__input {
  border-color: var(--input__border--hover);
}

.floating__input::placeholder {
  color: rgba(0, 0, 0, 0);
}

.floating__label {
  display: block;
  position: relative;
  max-height: 0;
  font-weight: 500;
  pointer-events: none;
}

.floating__label::before {
  color: var(--label__color);
  content: attr(data-content);
  display: inline-block;
  filter: blur(0);
  backface-visibility: hidden;
  transform-origin: left top;
  transition: transform 0.2s ease;
  left: 1rem;
  position: relative;
}

.floating__label::after {
  bottom: 1rem;
  content: "";
  height: 0.1rem;
  position: absolute;
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
  opacity: 0;
  left: 0;
  top: 100%;
  margin-top: -0.1rem;
  transform: scale3d(0, 1, 1);
  width: 100%;
  background-color: var(--color__accent);
}

.floating__input:focus + .floating__label::after {
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

.floating__input:placeholder-shown + .floating__label::before {
  transform: translate3d( -1rem, -1.5rem, -2rem) scale3d(1, 1, 1);
}

.floating__label::before,
.floating__input:focus + .floating__label::before {
  transform: translate3d( -1rem, -3.3rem, 0) scale3d(0.82, 0.82, 1);
}

.floating__input:focus + .floating__label::before {
  color: var(--color__accent);
}

.hidden--visually {
  border: 0;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}





.radio_div {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 30px;
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radio_div input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: -3px;
  left: 0;
  height: 25px;
  width: 25px;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio_div:hover input ~ .checkmark {
  background-color: #ffffff;
  border: 1px solid #502c7e;
}

/* When the radio button is checked, add a blue background */
.radio_div input:checked ~ .checkmark {
  background-color: #502c7e;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio_div input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio_div .checkmark:after {
 	top: 8px;
 	left: 8px;
 	width: 8px;
 	height: 8px;
 	border-radius: 50%;
 	background: white;
}

.confirm-order p {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.23;
    padding-top: 4px;
    color: rgb(143, 143, 148);
}

.order-items .minus, .order-items .plus {
    /* width: 40px; */
    /* height: 40px; */
    /* line-height: 18px; */
    /* font-size: 16px; */
}
.logo-mobile-img {
    width: 25%;
    /* float: left; */
    padding: 0px;
    margin: 0 auto;
}

.logo-mobile-img img {
    max-width: 100%;
}

.logo-header {
    width: 70%;
    float: left;
    padding: 20px 20px 20px 0px;
}

.logo-header h4 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 20px !important;
    margin-bottom: 0;
}
.payment-badge p {
    margin: 0;
}
.logo-header p {
    font-size: 12px;
}
.order-items  .count {
    font-size: 15px;
    /* padding: 0; */
    /* line-height: 20px; */
}.menu-desc h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.41;
}
.row.status {
    padding: 0 5px;
    background: #fff;
}
.pickup-info h5 span {
    /* float: left; */
    width: 80%;
    font-size: 13px;
    display: inline-block;
}.input-group-append button {
    font-size: 13px;
    font-weight: 600;
}
.instruction .floating__input:placeholder-shown + .floating__label::before{
    transform: translate3d( -1rem, -2.5rem, -2rem) scale3d(1, 1, 1);
}
.custom-radio {
    padding: 0;
    margin-top: 10px;
}
.instruction .floating__label::before {
    transform: translate3d( -1rem, -3.8rem, 0) scale3d(0.82, 0.82, 1);
}.review-orders .count {
    font-size: 15px;
    font-weight: 400;
}
.black{
	color: #080505 !important;
    font-weight: 800 !important;
}
nav.nav-menu h3, .nav-menu .pickup-info {
    display: none;
}
.mobile-nav h3 {
    font-size: 19px;
    font-weight: 600;
    color: #000;
}
.mobile-nav .pickup-info h5 img{
	margin-bottom:  0
}
.mobile-nav .pickup-info{
	border: none !important;
}
.ltr-1kinkp4{
    font-size: 13px;
font-weight: 400;
line-height: 1.23;

margin-top: 8px;
color: rgb(162, 104, 9);
}
#modal-root{
	display: none;
}
div#modal-root_menu {
    position: absolute;
    width: 100%;
       visibility: hidden;
}
#modal-root_menu
.ltr-td43i7{
 position: fixed;
 padding: 0;
}
.ltr-1fao8v9 {
    border-radius: 4px;
    color:#060000;
    background-color: #502c7e;
    font-size: 15px;

    line-height: 1.27;
    min-height: 48px;
    padding: 14px 16px;
    margin-top: 24px;
    margin-bottom: 24px;
    cursor: pointer;
    display: flex;

    text-align: center;
    position: relative;
    font-stretch: normal;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;

    border: none;
    user-select: none;
    width: 100%;

}
.ltr-6g2tar {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.23;
    /* letter-spacing: -0.1px; */
    color: rgb(0, 0, 0);
    font-weight: 600;
    /* overflow-wrap: break-word; */
    /* word-break: break-word; */
    /* hyphens: auto; */
}
.ltr-1ppit5n {
    font-size: 13px;
    font-weight: 600 !important;
    line-height: 1.23;
    letter-spacing: -0.1px;
    /*overflow-wrap: break-word;
     word-break: break-word; */
    hyphens: auto;
    border: none !important;
    display: inline;
    /* background: transparent; */
    cursor: pointer;
    /* appearance: none; */
    display: inline !important;


    transition: all 0.2s ease-in 0s;
    padding: 0px;
    margin-left: 8px;
    color: rgb(39, 108, 169) !important;
}

.ltr-uf4fm0 {
    height: 100%;
    left: 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 5000;
    background-color: rgba(4, 4, 15, 0.4);
}
.ltr-td43i7 {
    bottom: 0px;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    justify-content: space-between;
    margin-top: 0px;
    padding: 16px;
    position: fixed;
    width: 33%;
    z-index: 700000;
    background-color: rgb(255, 255, 255);
}
.arabic .ltr-1i60a19{
	float:right;}
.ltr-1i60a19 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.41;
    /*-webkit-letter-spacing: -0.4px;
    -moz-letter-spacing: -0.4px;
    -ms-letter-spacing: -0.4px;
     letter-spacing: -0.4px; */
    color: #000000;
    /* overflow-wrap: break-word; */
    /* word-wrap: break-word; */
    /* word-break: break-all; */
    /* word-break: break-word;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;*/
    float: left;
     /*-ms-hyphens: auto;
    hyphens: auto; */
}
.arabic ..ltr-xebk8g{
	float: left;}
.ltr-xebk8g {
    font-size: 32px;
    height: 32px;
    float: right;
    display: inline-flex;
    cursor: pointer;
    text-align: center;
    background-color: transparent;

    border: none;
    font-stretch: normal;
    font-style: normal;

    padding: 0px;
    /* touch-action: manipulation; */
    line-height: 0;
    color: rgb(153, 153, 153) !important;
}
.ltr-fbhkei {
    float: left;
    padding: 10px;
    width: 17%;
    border-right: 1px solid #ccc;
}
.delivery-area li a span {
    float: right;
}
.ltr-fqlc3i {
    float: left;
    width: 80%;
    padding: 10px;
    font-size: 16px;
}button.ez1ieiq2 {
    width: 100%;
    margin-top: 10px;
    background: no-repeat;
    border: 1px solid #ccc;
}div#modal-root_menu .ltr-1lid4ux {
    padding: 20px 20px 0px;
    border-bottom: 1px solid #cccccc3d;
}.menu-desc h4 a {
    color: #000;
}
.section-contents.home h4, .review_order .confirm-order h4 {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.41;
    text-transform: none;
}
.review_order .qty .minus,.review_order  .qty .plus{
        width: 30px;
    height: 30px;
    line-height: 23px;
}
.no-border{
    border:none !important;
}
.review_order  .qty .plus{

    line-height: 30px;
}
.btn-buy {
    min-width: 100px;
    text-align: center;
    display: inline-block;
}
.addPsHome{display: inline-block;}
.confirm-order p.ltr-1fsw27x
{font-size: 15px;
font-weight: 400;
line-height: 1.33;
/* letter-spacing: -0.2px; */
color: #000;
padding-top: 16px;

}
.main_cart .p_tot_price p{
    margin-bottom:0 !important;
}
.ltr-1wdmg0f.e6q2xso0.catlister {
    overflow-x: hidden;
    height: auto;
    float: left;
    top: 0;
    overflow-y: scroll;
}
.clear {
    clear: both;
}
.green{
    color: #4caf50;
}
.review-orders .btn-warning{
    background: none;
    border: none;
    padding-left:0;
        /*cursor: none !important;*/
}
.review-orders .btn-danger{
    background: none;
    border-color: #ccc;
        color: #000;
        font-size:15px;
}
ul.mob_lang {
    display: none;

}.sticky ul.mob_lang li {
    padding-top: 5px;
}
 .clearfix{
     clear:both;
 }
.arabic .sticky .mob_lang{
	 padding: 5px 0px 10px 10px !important;
	}
    .sticky .mob_lang {
  position: fixed  !important;
  top: 0 !important;
  width: 100% !important;
  background: #fff;
  padding: 5px 10px 10px 0px !important;
  z-index: 10;
  border-bottom: 1px solid #ccc;
}
 .mob_logo{
     display:none;
 }
 .select_lann {
        color: #fff;
    font-size: 15px;
    text-align: right;
    min-width: 25px;
    padding-top: 0;
}
.pickup-info h5 a {
    padding: 0px 0px 20px 0px;
}
#select_language {
    margin: 10px;
    background: none;
    color: #fff;
    border: none;
}

.arabic .right-arrow-btn2 {
    float: left;
	direction:ltr;
}


.arabic,.arabic h1,.arabic h2,.arabic h3,.arabic h4,.arabic h5,.arabic h6 {
    font-family: 'Droid Arabic Kufi'  !important;
	text-align:right;

}
.arabic .payment-option h5 {
    text-align:center !important;
}
.arabic .confirm-order .col-md-4 {padding-right: 15px !important;}
.arabic .fl{
margin-left: -1px;
    float: left;}

.arabic  #main #menu-item .card .card-header .btn-header-link{
    text-align: right;
}
.arabic  #main #menu-item .card .card-header .btn-header-link:after{
    float: left;
}
.arabic  .left-menu ul{
        float: right;
    padding-right: 15px;
}
.arabic .menuscroll {
    right: 15px;
    left: inherit;
    top: 18px;
}
.arabic ul.mob_lang li {
    float: left;
}
.arabic ul.mob_lang li {
    float: left;
}
.arabic .pickup-info h5 img{
     float: right;
     margin-left: 15px;
}
.arabic  .checkout-top .back-btn{
    float: right;
    right: 15px;
    top: 15px;
    width: 20px;
    transform: rotate(180deg);
}
.arabic .radio_div{
    padding-right: 40px;
	font-family:'GESSTextLight-Light', Arial, sans-serif;
}
.arabic .checkmark{
        right: 0;
            left: inherit;
}
 .arabic .fa-chevron-right{
     float: right;
    margin-left: 10px;
 }
 .fa-chevron-right{
	 float: right;
    padding-right: 5px;
	margin-top:5px;}
  .arabic  .total h4{
      float: left !important;
 }

.arabic .sticky .mob_logo {
    width:95px;
}
   .arabic .logo-mobile-img{
      /* float: right !important;
 */  }
/* .arabic .qty{
         text-align: right !important;
 }*/

.arabic .fa-chevron-right:before {
    content: "\f053";
}
 .custom-map-control-button {
    padding: 5px 15px;
    margin: 5px;
    border: none;
    font-size: 13px;
    border-radius: 30px;
    background: #f9ca33;
}
.p_tot_price h5{
    text-transform:initial;
}
.color-blue{
    color:#009688;
}
.date_box{
    border-right:1px solid #ccc;
    padding:20px 10px;
    font-size:14px;
    text-align:center;
}

.arabic .date_box{
    border-left:1px solid #ccc;
}
.arabic .delivery-area li a span {
    float: left;
}
.money b{
    color:#ff0000;
   font-weight:normal;
   font-size:15px;
}
ul.p_tot_price {
    list-style: none;
}
.date_box span{
   font-size:18px;
}
.arabic .carousel-control-prev{
    left: 0 !important;
    right: inherit;
}
.arabic .carousel-item.active{
	float:left !important;
	margin-right:-100% !important;
	margin-left:inherit !important;
	}
	.arabic .carousel-control-prev span.carousel-control-prev-icon {
    transform: rotate(180deg) !important;
}
.arabic .carousel-control-next span.carousel-control-next-icon {
    transform: rotate(180deg) !important;
}