
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  background: var(--background-color);
  color: black !important;
}
/* :root{
  --maincolor:#d9ba85;
  --secondcolor:white;
  --color:white;
  --background:rgba(0, 0, 0, 0.85);
} */

/* :root {
  --maincolor:var(--maincolor);
  --secondcolor:rgba(0, 0, 0, 0.2);
  --color:var(--color);
} */


a {
  color: var(--maincolor);
  text-decoration: none;
}

a:hover {
  /* color: var(--maincolor); */
  color: var(--color);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Open Sans", sans-serif;
  color:black !important;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #1a1814;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: var(--maincolor);
  border-bottom-color: var(--maincolor);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid var(--maincolor);
}

.back-to-top i {
  font-size: 28px;
  color: var(--maincolor);
  line-height: 0;
}

.back-to-top:hover {
  background: var(--maincolor);
  color: #1a1814;
}

.back-to-top:hover i {
  color: #444444;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .mobile_768{
    display: none;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: var(--maincolor);
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--maincolor);
}

#topbar .languages ul a {
  color: white;
}

#topbar .languages ul li + li {
  padding-left: 10px;
}

#topbar .languages ul li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(12, 11, 9, 0.6);
  border-bottom:0.5px solid #ccc;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 0px;
}
.font_11{
  font-size: 11px;
}

#header.header-scrolled {
  /* top: 0; */
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid #37332a;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

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

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

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin: 0 0 0 15px;
  border: 2px solid var(--maincolor);
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.book-a-table-btn:hover {
  background: var(--maincolor);
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: var(--maincolor);
}

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

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--maincolor);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--maincolor);
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: var(--maincolor);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

 /* width */
 ::-webkit-scrollbar {
  width: .2rem;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: 0 0 5px grey;
          box-shadow: 0 0 5px grey;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--maincolor);
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--maincolor);
}

.search_hover{
position: relative;
}
.search_hover button{
padding: 6px 10px;
  position: absolute;
  right: -1px;
  border-radius: 5px!important;
}
.search_click{
  display: none;
}
.search_hover input{
padding: 5px;
  padding-right: 40px;
  border-radius: 10px;
  /* border: 1px solid #ccc; */
  width: 100%;
  border: 1px solid var(--maincolor);
  background: #0c0a09;
  outline: none;
  COLOR: WHITE;
}
.search_but{
position: fixed;
  top: 0px;
  right: 5px;
  left: 5px;
  letter-spacing: 5px;
  transition: width 1s linear 2s;
  display: none;
  background: #0c0a09;
  padding: 24PX;
  BORDER-RADIUS: 5PX;
  /* width: 35%; */
  z-index: 1060;
}
.position_relative{
position: relative;
}
.badge_warning{
background-color: green;
}
.abs{
position: absolute;
  top: -10px;
  right: 0;
  color: black;
}
.search_hover input:focus{
  outline:none ;
  border: 1px solid #ccc;
 
}
.dropd{
display: none;
background-color: white;
border-radius: 5px;
padding: 10px;
width: 215px;
position: absolute;
  top: 45px;
  right: 0;
}
.dropd ul li{
list-style: none;
padding-right: 20px;
padding-bottom: 5px;
padding-top: 5px;

}
.mobile_view{
display: none;
}
.ha{
display: none;
}
.d_flex{
display: flex;
}
.cart-form .cart_box{
  display: flex;
  justify-content: space-between;
  margin: 10px;
  align-items: center;
  border: 1px solid var(--maincolor);
  padding: 10px;
  position: relative;
  /* s */
}
.cart-form{
  overflow-y: scroll;
  position: relative;
}
.cart_heading{
  display: flex;
  justify-content: space-between;
  margin: 10px;
  align-items: center;
  border-bottom: 1px solid #ccc;
  text-transform: capitalize;
 
  

}
.header .cart-form {
  position: absolute;
  top: 0%;
  right: 0%;
  background: var(--bg-color-1);
  border-radius: 0.5rem;
  box-shadow: var(--box-shadow);
  width: 40rem;
  height: 100vh;
  margin-right: -500px;
  transform-origin: top right;
  display: block;
  transition: 1s all ease;
}
.cart_heading h4{
  font-weight: 600!important;
}
.cart-form .cart_box p{
  margin-bottom: 5px!important;
}
.cart_main{
  display: flex;
}
.cart-form .cart_box .cart_flex_box{
 margin: 5px;
 border: 1px solid var(--orange);
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  right: -1%;
  border: 1px solid var(--maincolor);
}
.cart-form .cart_box .cart_img{ 
  height: 100px;
  width: 100px;
  object-fit: contain;
}
.cart-form .cart_box .cart_img img{ 
  height: 100%;
  width: 100%;
}
.cart-form .cart_box .cart_product_box{
margin-left: 10px;
}
.cart-form .cart_box .cart_product_box .cart_product_name p{
  font-size: 14px;
  display: block;
  font-weight: 500;
}
.cart-form .cart_box .cart_product_box .cart_product_price p{
  font-size: 14px;
  font-weight: 500;
}
.cart-form .cart_box .cart_flex_box .cart_delete{
  cursor: pointer;
  justify-content:flex-end;
  align-items: center;
}
.cart-form .cart_total{
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  margin: 10px;
}
.cart-form .cart_total h4{
  margin: 10px;
  font-size: 18px!important;
  display: block;
  font-weight: 500;
}
.cart-form .cart_buttons{
  display: flex;
  justify-content: space-between;
  align-items: center;
 
}
.cart-form .cart_buttons a{
width: 49%;
text-align: center;
justify-content: center;
border-radius: 0px;
font-weight: 600;
border: 1px solid var(--maincolor);
  padding: 10px;
  color: var(--maincolor);
}
.cart-form .cart_buttons button:nth-child(2){
  background-color: var(--orange);
  padding: 9px;
}
/* .cart-form .cart_buttons button:nth-child(2):hover{
  color: white;
  background-color: var(--orange);
} */
.cart_sticky{
  position: sticky;
  bottom: 0%;
  left: 0%;
  right: 0%;
  background-color: rgba(0, 0, 0, 0.85);
  margin: 10px;
  padding-bottom: 20px;
}
.offcanvas{
background:rgba(0, 0, 0, 0.85);
}
.qty-changer fieldset{
display: flex;
}
.qty-changer fieldset input{
width: 20%;
}

#overlay {
  position: absolute;
  background: rgba(0,0,0,.3);
  top: 0; left: 0; right: 0; bottom: 0
}


@media (max-width: 550px) {
  #header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    width: 50%;
}

.search_click{
  display: inline-block;
}
.mobile_view {
  display: block;
  color: black;
  position: fixed;
  bottom: -2px;
  left: -5px;
  right: -3px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  /* height: 50px; */
  margin: 1px;
  padding: 1px 15px;
  background-color: var(--bg-color-1);
  text-decoration: none;
  list-style: none;
  z-index: 1000;
  background:  rgba(0, 0, 0, 0.85);
  padding-top: 6px;
}
.mobile_view li{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.mobile_view li{
text-align: center;
}
.mobile_view li:hover,
.mobile_view li:focus,
.mobile_view li.active{
border-top: 5px solid var(--maincolor);
border-radius: 10%;
font-weight: bold;
color:var(--maincolor);
}
.mobile_view li h3{
font-size: 20px;
font-weight: 600;
padding:1rem 0rem;   
}
.search_but{
position: fixed;
top: 72px;
right: 0px;
left: 9px;
transition: width 1s linear 2s;
display: none;
width: 95%;
background: #0c0a09;
padding: 5px;
border-radius: 5px;
}
.search_hover input {
padding: 5px;
padding-right: 40px;
border-radius: 10px;
border: 1px solid #ccc;
width: 100%;
}
.ha{
display: inline-block;
}
.hid{
display: none!important;
}
}
@media (max-width: 768px) {
  #header .logo {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    width: 50%;
}

.search_click{
  display: inline-block;
}
.mobile_view {
  display: block;
  color: var(--background-color);
  position: fixed;
  bottom: -2px;
  left: -1px;
  right: 0px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  /* / height: 50px; / */
  margin: 1px;
  padding: 1px 15px;
  background-color: var(--bg-color-1);
  text-decoration: none;
  list-style: none;
  z-index:1020;
  background: var(--background-color);
  padding-top: 6px;
}
.mobile_view li{
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.mobile_view li{
text-align: center;
}
.mobile_view li:hover,
.mobile_view li:focus,
.mobile_view li.active{
border-top: 5px solid var(--maincolor);
border-radius: 10%;
font-weight: bold;
color:var(--maincolor);
}
.mobile_view li h3{
font-size: 20px;
font-weight: 600;
padding:1rem 0rem;   
}
.search_but{
position: fixed;
top: 72px;
right: 0px;
left: 9px;
transition: width 1s linear 2s;
display: none;
width: 95%;
background: #0c0a09;
padding: 5px;
border-radius: 5px;
}
.search_hover input {
padding: 5px;
padding-right: 40px;
border-radius: 10px;
border: 1px solid #ccc;
width: 100%;
}
.ha{
display: inline-block;
}
.hid{
display: none!important;
}
}
