@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Yeseva+One&display=swap');

body {
  font-family: "Raleway", sans-serif!important;
  font-style: normal;
  color: #fff;
  font-optical-sizing: auto;
  font-weight:600;
}
html {
  scroll-behavior: smooth;
}
p {
    font-weight: 300;
   
}
a {
  color: var(--primary-color);;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Yeseva One", serif!important;
  font-weight: 400;
  font-style: normal;
}

/*--------------------------------------------------------------
# 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(--primary-color);;
  border-bottom-color: var(--primary-color);;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@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(--primary-color);;
}

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

.back-to-top:hover {
  background: var(--primary-color);;
  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;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: var(--primary-color);
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 99;
}

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

#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}

#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(--primary-color);;
}

#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: 1px solid rgba(12, 11, 9, 0.6);
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#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 {
	transition:0.3s ease-in-out;
  max-height: 119px;
}
.header-scrolled .logo img {
    transition:0.3s ease-in-out;
    max-height: 80px!important;
}
/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
	background: none;
  font-family: 'Yeseva One';
  margin: 0 0 0 30px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 0;
  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(--primary-color);;
  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,
.navbar a:focus {
  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,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

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

.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(--primary-color);;
}

.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,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  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(--primary-color);;
}

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

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

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 110px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 85px;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: var(--primary-color);;
}

#hero h2 {
  line-height: 92px;
  color: #fff;
  margin-bottom: 10px 0 0 0;
  font-size: 56px;
}

#hero .btns {
  align-content: center!important;
  display: flex;
  margin-top: 30px;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  align-items: center;
  text-transform: uppercase;
  display: inline-flex;
  padding: 10px 30px;
  border-radius: 0;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid var(--primary-color);
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: var(--primary-color);;
  color: #fff;
}

#hero .btn-book {
  margin-left: 15px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--primary-color); 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid var(--primary-color);;
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid var(--primary-color);;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

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

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

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

  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #000;
}
#menu.section-bg {
  background-color: #fff;
}

.section-title {
  padding-bottom: 40px;
}



.section-title small {
    font-size: 12px!important;
    letter-spacing: 1px!important;
    text-transform: uppercase!important;
    color: var(--grey)!important;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);;
}
.section-title h3 {
  margin: 0;
  margin: 0;
  font-size: 40px;

  color: #fff;
}
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  position: relative;
  padding: 80px 0;
}



.about .about-img {
	text-align: center;
  position: relative;
  transition: 0.5s;
}

.about .about-img img {
  max-width: 95%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 43px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid var(--primary-color);;
  border-top: 5px solid var(--primary-color);;
  transition: 0.5s;
}

.about .about-img::after {
  position: absolute;
  right: 43px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid var(--primary-color);;
  border-bottom: 5px solid var(--primary-color);;
  transition: 0.5s;
}

.about .about-img:hover {
  transform: scale(1.03);
}

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content {
  position: relative;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);;
}

.about .content p:last-child {
  margin-bottom: 0;
}

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

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  text-align: center;
  padding: 50px 30px;
  transition: 0.5s ease-in-out;
  background: #ffffff;
}

.why-us .box span {
	transition: 0.5s ease-in-out;
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);;
}

.why-us .box h4 {
	transition: 0.5s ease-in-out;
  font-size: 24px;
  /* font-weight: 600; */
  padding: 0;
  margin: 20px 0;
  color: var(--primary-color);
}

.why-us .box p {
  color: var(--grey);
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
	transition: 0.1s all;
  background: var(--primary-color);
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
	transition: 0.5s ease-in-out;
  color: #fff;
}
section#why-us small {
    color: var(--primary-color) !important;
}
section#why-us h2 {
    color: #000;
}

section#why-us .box span img {
	transition: 0.5s ease-in-out;
    height: 41px;
}

.why-us .box:hover span img {
	transition: 0.1s all;
    filter: brightness(10);

}
/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  margin-top: -64px!important;
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  background: #0000008a;
  width: 127px;
  cursor: pointer;
  display: inline-block;
  padding: 15px 12px 10px 12px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  /* border-radius: 50px; */
  font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
  background: #fff;
  color: var(--primary-color);
}
.menu #menu-flters li:hover span,
.menu #menu-flters li.filter-active span {
  color: var(--grey);
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
    justify-content: space-between;
    margin-bottom: 25px;
  margin-top: 50px;
}

.menu .menu-img {
  width: 100px;
  float: left;
}

.menu .menu-content {
 
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #bab3a6;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
	font-size: 20px;
font-family: 'Yeseva One';
  padding-right: 10px;
  background: #fff;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: #000;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: var(--primary-color);;
}

.menu .menu-content span {
	font-size: 20px;
  background: #fff;
  position: relative;
  z-index: 3;
  padding: 0 10px 0px 0px;
  font-weight: 600;
  color: var(--primary-color);;
}
.home-menu .r-qty + select, .rs-product-box .r-qty  select  {
  border: 1px solid var(--primary-color);
  font-weight: 600;
  background: #ffffff;
  padding: 4px 7px;
  font-size: 12px;
}

.menu .menu-ingredients {
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 11px;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  color: var(--grey);
}
.menu #parallax {
	background-position-y: -200px !important;
	background-attachment:fixed!important;
    padding: 80px 0px 100px 0px;
    background: url(../img/hero-bg.jpg);
}

ul#menu-flters li span {
    letter-spacing: 1px;
    font-weight: 500;
    padding: 6px 6px 4px 6px;
    font-family: 'Raleway';
    display: block;
    font-size: 12px;
}
.atc-btn {
    float: right;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 11px;
    border: 1px solid var(--primary-color);
    color: aquamarine;
    text-align: right;
    line-height: 11px;
    align-items: center;
    padding: 6px 10px;
    color: var(--primary-color);
    display: inline-flex;
}
.atc-btn:hover {
    color: #fff;
    background: var(--primary-color);
}
/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
section#specials {
    background: #151414;
}
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  border: 0;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #fff;
  border-radius: 0;
  border-right: 2px solid var(--primary-color);;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: var(--primary-color);;
}

.specials .nav-link.active {
  color: #1a1814;
  background: var(--primary-color);;
  border-color: var(--primary-color);;
}

.specials .nav-link:hover {
  border-color: var(--primary-color);;
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #fff;
}

.specials .details p {
  color: #aaaaaa;
}

.specials .details p:last-child {
  margin-bottom: 0;
}
.details .fst-italic {
    color: var(--primary-color) !important;
}
@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
#events {
    background-blend-mode: overlay;
    background-color: #000000de;
    position: relative;
    padding: 80px 0px 100px 0px;
    background-image: url(../img/events-bg.jpg);
}


/* .events::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
 */
.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

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

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-size: 26px;
  color: var(--primary-color);;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid var(--primary-color);;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--primary-color);;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br+br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);;
  border-top-color: #1a1814;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #ffffff;
  border-color: #d5d5d5;
  color: var(--grey);
}
section#book-a-table {
    background-color: #fff0f1!important;
    background-size: 100%!important;
    background-position-y: top !important;
    background-repeat: no-repeat !important;
    background-image: url(../img/book-a-table-footer.jpg);
}
.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--primary-color);;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}



/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.tcontent{
	padding:60px 0px;
}
section#testimonials {
    padding: 0px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 160px;
}
section#testimonials .swiper-pagination {
    text-align: left;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item label {
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 10px;
	font-size: 12px;
margin: 10px 0 5px 10px;
	color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--primary-color);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  /* font-style: italic; */
  /* margin: 0 15px 0 15px; */
  padding: 0px 10px 20px 10px;
  /* background: #26231d; */
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--primary-color);;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
#gallery{background:#000; padding-bottom: 0;}
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.chefs .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

.chefs .member .social a:hover {
  color: var(--primary-color);;
}

.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--primary-color);;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  color: #000;
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "Raleway", sans-serif;
}

.contact .info p {
  font-weight: 500;
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--grey);
}

.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);;
  border-top-color: #1a1814;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #f6ffeb;
  border-color: #dddddd;
  color: var(--grey);
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary-color);;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}





@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #0c0b09;
  border-top: 1px solid #37332a;
  border-bottom: 1px solid #28251f;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 16px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "raleway", serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #28251f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--primary-color);;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  text-transform: uppercase;
  font-size: 16px;
  /* font-weight: 600; */
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--primary-color);;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--primary-color);;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #0c0b09;
  padding: 6px 10px;
  position: relative;
  /* border-radius: 50px; */
  border: 1px solid #404040;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background: #0c0b09;
  color: white;
}
.products-wrapp row:first-child .rs-mhead h2{
	margin-top: 0px;
}
.rs-mhead h2 {
    margin-top: 20px;
    margin-bottom: -28px;
    font-size: 28px;
}
.rs-cate-list ul li a:hover {
    color: var(--primary-color)!important;
}
.rs-cate-list ul li a {
    color: #000;
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: var(--primary-color);
  color: #fff;
  transition: 0.3s;
  /* border-radius: 50px; */
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #d3af71;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
.logo-box {
-webkit-box-shadow: -1px 9px 20px -17px rgba(0,0,0,0.57);
-moz-box-shadow: -1px 9px 20px -17px rgba(0,0,0,0.57);
box-shadow: -1px 9px 20px -17px rgba(0,0,0,0.57);


    background: #fff;
    top: 0;
    position: absolute;
}

a.hero-number {
    line-height: 23px;
    display: inline-block;
    color: #fff;
    padding: 0px 30px;
    font-size: 23px;
}

a.hero-number small {
    position: relative;
    top: 3px;
    color: #e0dfdf;
    /* margin-top: -3px; */
    font-weight: 400;
    font-size: 11px !important;
    display: block !important;
}
.welcome {-webkit-box-shadow: -1px 9px 32px -17px rgba(0,0,0,1);-moz-box-shadow: -1px 9px 32px -17px rgba(0,0,0,1);box-shadow: -1px 9px 32px -17px rgba(0,0,0,1);-webkit-animation: rotating 5s linear infinite;-moz-animation: rotating 5s linear infinite;-ms-animation: rotating 5s linear infinite;-o-animation: rotating 5s linear infinite;animation: rotating 5s linear infinite;top: calc(50% - 45px);display: flex;justify-content: center;align-items: center;height: 90px;text-align: center;z-index: 999;position: ABSOLUTE;font-size: 10px;color: var(--primary-color);border: 2px dotted var(--primary-color);border-radius: 100px;background: #fff;width: 90px;}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
section#menu span img {
    fill: #ccc !important;
    width: 42px;
}
.winner {
	display: flex;
	text-transform: uppercase;
	font-size: 9px;
	font-weight: 800;
	padding: 7px;
	align-items: center;
	justify-content: CENTER;
	border: 2px dotted var(--primary-color);
	border-radius: 200px;
	height: 80px;
	width: 80px;
}
small + h2 {
margin-bottom:0px;
    font-size: 40px;
    color: var(--primary-color);
}
section#about p{ color: var(--grey);}
.wsign label {
    padding: 60px 40px 10px 40px;
    text-transform: uppercase;
    display: block;
    color: #000;
}
section#why-us {
    background: var(--light-bg);
}
.cartbox {
    margin-left: 40px;
    padding: 10px;
    border: 3px solid #fff;
    position: relative;
    align-items: center;
    justify-content: center;
    border-radius: 80px;
    display: inline-flex;
    height: 38px;
    width: 38px;
    background: var(--primary-color);
}

.cartbox span {
    right: -10px;
    top: -7px;
    font-size: 11px;
    border-radius: 40pc;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    height: 20px;
    min-width: 20px;
    background: #fff;
    position: absolute;
}

.cartbox img {
    width: 22px;
}
.dropdown.user-dropdown .btn {
	padding: 0;
    border: none;
    background: transparent;
}

.dropdown.user-dropdown {
	margin-left: 20px;
    position: relative;
    z-index: 9999;
}
.dropdown.user-dropdown span {
    font-weight: 600;
    font-size: 14px;
}

.row.rs-filter-sec {
	 transition: all 0.5s;
    z-index: 1111;
}
section#rs-all-products {
    color: #000;
}
.rs-cate-list ul{padding-left:0px;}
.rs-cate-list ul li{
	list-style: none;
}
.rs-cate-list ul li a {
	display:block;
    padding: 10px 0px;
    
}
.rs-categories {
    width: 100%;
}

.rs-filter-sec {
    align-items: center;
    display: flex;
    top: 100px;
    transition: all 0.5s;
    z-index: 1111;
}

.rs-filter-sec {
    padding-bottom: 15px;
    border-bottom: 1px solid #Ccc;
}
.products-wrapp {
	scroll-margin-top: 70px;
	padding-left:20px;
    padding-top: 35px;
}
.rs-cate-list {

    margin-top: 35px;
}

.border-left{border-left:1px solid #ccc;}
.rsf-btn button, .rsf-btn a {
	justify-content:center;
	align-items:center;
	display:inline-flex;
	height:30px;
	width:100px;
	margin-left:10px;
    border: 1px solid #ccc;
    background: none;
}
.rs-filter-buttons {
    justify-content: flex-end;
}
.rs-img img {
    border-radius: 10px;
}
.rs-cate-head {
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.rs-badge {
	z-index:9;
	border-radius:3px;
    font-size: 12px;
    color: #fff;
    padding: 0px 10px;
    position: absolute;
}
.rs-bestseller{
	background: #11975f;
	top: 35px;
	left: 10px;
	
}
.rs-spicy {
    padding: 0px 5px;
    border: 1px solid red;
    top: 1px;
    background: #fff;
    color: red;
    right: 1px;
}
.rs-img{position:relative;}
.r-time {
  border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    align-items: center;
    background: #b1afaba3;
    justify-content: center;
    width: 100%;
    bottom: 40px;
    font-size: 12px;
    display: flex;
    position: absolute;
    color: #ffffff;
}


.rs-badge.rs-type {
    top: 35px;
    left: 10px;
    background: orange;
}
.rs-product-box {
    position: relative;
}
.rs-content h4 {
    font-weight: 700;
    font-family: 'Raleway' !important;
    padding: 15px 0px;
    font-size: 17px;
}
.rs-content h4 {
    font-weight: 500;
    font-family: 'Raleway' !important;
    padding: 10px 0px;
    font-size: 17px;
    margin-bottom: 0px;
}
span.rs-badge img {
    margin-right: 5px;
    width: 19px;
}

span.rs-badge.rs-ve {
	border:2px solid #cf8c0b;
    align-content: center;
    bottom: 25px;
    padding: 3px 5px;
    border-radius: 22px;
    color: #cf8c0b;
    right: 10px;
    display: flex;
    background: #fff;
}
span.rs-badge.rs-gu {
	border:2px solid #72b74c;
	display: flex;
	 align-content: center;
    font-weight: 600;
    bottom: 25px;
    padding: 3px 5px;
    border-radius: 22px;
	color: #72b74c;
    
    left: 10px;
    background: #fff;
}
.rs-atc {
	border-radius: 5px;
    color: #fff;
    text-align: center;
    /* padding: 10px; */
    padding: 5px;
    display: block;
    width: 100%;
    background: var(--primary-color);
}
.preorder .rs-atc {
    background: #e7ac07;
}

.rs-img a:hover img {
    width: 120%!important;
}

.rs-img {
    overflow: hidden;
}
span.rs-badge.rs-cate {
	display: inline-block;
	margin-bottom: 5px;
	padding-left: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #525151;
    position: relative;
}
.rs-cate.veg:before{
	border: 1px solid #2ebd59;
}
.rs-cate.veg:after{
	background: #2ebd59;
}
.rs-cate.non-veg:before{
	border: 1px solid red;
}
.rs-cate.non-veg:after{
	background: red;
}
.rs-cate.egg:before{
	border: 1px solid orange;
}
.rs-cate.egg:after{
	background: orange;
}
.rs-cate:before{
	content:'';
	position:absolute;
	width: 14px;
    height: 14px;
    box-sizing: border-box;
    border-radius: 2px;
    left: 0;
    top: 0px;
	}
.rs-cate:after {
	content:'';
	position:absolute;
    width: 6px;
    height: 6px;
    box-sizing: border-box;
    
    border-radius: 50%;
    left: 4px;
    top: 4px;
}

.rs-price {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
span.r-old-price {
	margin-left:5px;
    font-weight: 400;
    color: #b5adad;
    text-decoration: line-through;
    font-size: 20px;
}
span.r-new-price {
	line-height: 24px;
	font-size: 20px;
}
a.rs-atc.sold {
    cursor: not-allowed;
    background: #e5e5e5;
}
span.r-off {
	margin-left: 13px;
    
    text-transform: uppercase;
  
    color: #1ba7d1;
    border-radius: 3px;
    padding: 0px 5px;
    border: 1px solid #1ba7d1;
    font-size: 12px;
}
span.rs-badge.rs-cate img {
    width: 52px;
}
.rs-price {
    margin-bottom: 15px;
}
.rs-content p {
    margin-bottom: 10px;
}
.rsf-btn.rs-price button {
	font-size: 16px !important;
    font-weight: 600;
    border: 1px solid #000;
}
.rsf-btn i {
    margin-right: 3px;
}
.rsf-btn.rs-filter-btn a {
	font-size: 16px !important;
    border-color: 1px solid var(--primary-color) !important;
}
.rs-section-title h1 {
    font-size: 40px;
}
.menu-banner {
padding-top: 114px;
}
.menu-banner {
	justify-content:center;
	display:flex;
	align-items:center;
	background-position-y:-300px;
	height:250px;
	background-image: url(../img/hero-bg.jpg);

}
.row.rs-filter-sec {
    font-size: 18px;
}
.rsf-btn.rs-filter-btn a, .rsf-btn.rs-filter-btn a:hover {
    cursor: pointer;
    color: var(--primary-color);
}
.rsf-btn.rs-filter-btn {
    position: relative;
}
div#dfilter {
	display:none;
	box-shadow: 0 4px 20px 0 rgba(0,0,0,.4);
	z-index:99;
	right: 0;
    background: #fff;
    padding: 12px;
    border: 1px solid #ccc;
    width: 300px;
    top: 45px;
    position: absolute;
}
#dfilter :after {
    bottom: 100%;
    z-index: 1;
    right: 20px;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
	
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px;
}

button.apply-btn {
margin: 15px 0px 0px 0px;
    font-size: 16px;
    border: none;
    height: 35px;
    color: #fff;
    background: var(--primary-color);
    width: 100%;
}

.sfilter-row h5 {
    letter-spacing: 1px;
    color: #a5a3a3;
    font-weight: 600;
    font-family: 'Raleway'!important;
    font-size: 11px;
    text-transform: uppercase;
}

ul.ssingle li label, ul.smulti li label  {
    cursor: pointer;
    font-size: 12px;
    /* border-radius: 100px; */
    padding: 3px 10px;
    border: 1px solid #ccc;
}


ul.ssingle li, ul.smulti li {
    /* cursor: pointer; */
    display: inline-block;
    list-style: none;
}
ul.ssingle li.active label, ul.smulti li.active label {
    border-color: var(--primary-color);
    color: #fff;
    background: var(--primary-color);
}
ul.ssingle, ul.smulti {
    padding-left: 0px;
}

.sfilter {
	display:flex;
	justify-content:space-between;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 14px;
}

#dfilter .sfilter a {
    height: auto;
    font-weight: 600;
    color: orange;
    padding: 0px !important;
    font-size: 12px !important;
    border: none;
    width: auto;
}
.text-bold {
    font-weight: 800;
}

.category {
    text-transform: uppercase;
    color: #0093c4;
}

.product-title {
    font-size: 2.5rem;
}

.price-area {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.2rem;
    color: #777;
}

.old-price-discount {
    font-size: 1.2rem;
    margin-left: 10px;
}

.new-price {
    font-size: 1.5rem;
}

.custom-btn {
    text-transform: capitalize;
    background-color: #0093c4;
    color: white;
    padding: 5px 20px;
    border: none;
    border-radius: 5px;
}

.custom-btn:hover {
    background-color: #006dd9;
}

.quantity {
    margin-left: 20px;
}
.rs-cart-img .rs-img {
  justify-content: center;
  align-items: center;
  display: flex;
  border-radius: 10px;
  background: #f6f6f6;
  height: 84px;
  width: 84px !important;
}
.rs-cart-row {
    padding: 10px;
    box-shadow: 0px 1px 6px 0px #e5e4e4;
    border-bottom: 1px solid #ede9e9;
    display: flex;
}
.offcanvas-header h5 small {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
    font-family: 'Raleway';
}
.offcanvas-header {
    background: #f9f9f9;
}
.rs-cart-img .rs-img img {
    border-radius: 7px;
}
.rs-cart-img .rs-img{
	
}
.rs-cart-row {
    align-content: center;
    display: flex;
}
.rs-cart-details label {
    font-weight: 500;
    font-size: 14px;
}
.rs-cart-details {
    padding: 0px 10px;
}
.rs-cart-details label {
    font-size: 14px;
}
.rs-price-qty {
    display: flex;
}
.icon-shape {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.icon-sm {
	border:none;
	color:#fff;
	background:var(--primary-color);
    width: 1.7rem;
    height: 1.7rem;
    
}
.cart-box{background:#fff;}
.rs-price-qty .r-old-price {
    font-size: 16px;
}
.rs-price-qty .r-new-price {
    font-size: 17px;
}
.rs-cart-row {
  border-radius: 10px;
  margin-bottom: 12px;
  display: flex;
}

.cart-yml .rs-cart-row {
    border-bottom: none;
    box-shadow: none;
}
.rs-quantity input[type="number"] {
	width:50px!important;
	border-radius: 40px!important;
    background: #efecec;
    font-weight: 500;
    font-size: 15px;
    text-align: center;
}
 .rs-quantity input:focus-visible{
    outline: none;
}
.rs-quantity input[type="button"]{
	
    line-height: 23px;
    font-size: 25px;
}
.rs-quantity input[type=number]::-webkit-inner-spin-button, 
.rs-quantity input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
.cart-box a.rs-atc {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 46px;
}
.rs-cart-details label .rs-badge {
    margin-right: -9px;
    position: relative;
    top: -7px;
}

.bg-light{
	background: var(--primary-light);
}
a.rs-atc.rs-outline-btn {
    font-size: 12px;
    width: 71px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: none;
}
.cart-yml a.rs-atc.rs-outline-btn {
    font-size: 12px;
}
.cart-yml .yml-head{
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
}
.cart-yml .rs-cart-row {
    box-shadow: none;
}

.rs-pr-details {
    color: #000;
}
.rs-special ul {
    padding: 0;
}

.rs-special ul li {
    background: #f5f5f5;
    flex-flow: column;
    margin: 0;
    align-items: center;
    width: 76px;
    justify-content: center;
    border-radius: 5px;
    height: 61px;
    /* border: 1px solid #ccc; */
    text-align: center;
    display: inline-flex;
    list-style: none;
}
.rs-pr-details .rs-price span.r-new-price {
    font-size: 37px!important;
}

.rs-pr-details .rs-price span.r-old-price {
    font-size: 24px!important;
}

.rs-special ul li span {
    font-size: 10px;
    /* text-align: center; */
    display: block;
    margin-top: 4px;
}
section#ymlt {
    border-top: 1px dotted #7a7a7a;
}
.rs-special ul li img, .rs-special ul li i {
    height: 30px;
    font-size: 28px;
    width: 30px;
}
li.spicy i {
    color: #d71313;
}

.rs-pr-details .rs-price {
    margin-top: 20px;
}
.rs-pr-details .rs-btn-sec a {
    align-items: center;
    justify-content: center;
    display: flex;
    height: 42px !important;
    width: 255px;
}





 .animate {
                background: linear-gradient(to right, #189929, #4dbb60, #0ea759, #3e8337) !important;
background-size: 350% 100%!important;

            transition: all .4s ease-in-out!important;
        }

        .rs-atc:hover {
            background-position: 100% 0!important;
        }

        .rs-atc:hover {
            animation-name: flow!important;
            animation-duration: 500ms!important;
            animation-timing-function: linear!important;
        }
      @keyframes flow {
            0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100%;
  }
}


#ymlt .owl-item {
    color: #000 !important;
    padding: 10px;
}
#ymlt h2 {
    color: #000!important;
}

#rs-product-detail .lSSlideOuter.vertical {
    padding-left: 60px;
    padding-right: 0 !important;
}
#rs-product-detail ul#vertical li img {
    width: 100%!important;
}
#rs-product-detail ul#vertical li{
    height: 462px!important;
	}
.usingCss{
    width: 462px!important;
    height: 442px!important;
}


.pm-btn{  
    border-radius: 40px;
    border: none;
    color: #fff;
    background: var(--primary-color);
    width: 1.7rem;
    height: 1.7rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    vertical-align: middle;
}

.pl-num{
        border-radius: 30px;
    text-align: CENTER;
    width: 50px;
    font-weight: 500;
    border: none;
    background: #ede9e9;
  
}

.home-menu .r-old-price, .home-menu .r-off, .home-menu .r-new-price {
    display: none;
}
.home-menu .menu-item{display:flex;}
.home-menu .rs-price {
    justify-content: space-between;
}
.pl-num {
  background: #fff;
  border: 1px solid var(--primary-color);
}
.home-menu .rs-atc {
  background: #fff;
}

.atc-btn {
  color: #fff;
  background: var(--primary-color)!important;
}

.sp-img {
  border-radius: 141px;
  width: 250px;
  height: 250px;
  overflow-x: hidden;
  justify-content: center;
  align-items: center;
  padding: 0px;
  background: #ccc;
  display: flex;
}

.sp-img img {
  width: auto!important;
  
}

.hr-image {
  margin-right: 14px;
  width: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ebe9e9;
  height: 96px;
}



.rs-product-box .r-qty {
    margin-bottom: 29px;
}

.rs-products .rs-img {
    border-radius: 10px;
    align-items: CENTER;
    justify-content: center;
    display: flex;
    background: #f6f6f6;
    height: 229px;
}

.rs-btn-sec .rs-atc {
  border: none;
}

.rs-content {
  position: relative;
}

.rs-products .r-qty {
  margin-bottom: 20px;
}

.rs-products .r-qty select {
  font-weight: 600;
  font-size: 12px;
  border: 1px solid var(--primary-color);
  background: rgb(255, 255, 255);
  padding: 4px 7px;
}

.rs-products .r-qty {
  justify-content: space-between;
  display: flex;
  margin-bottom: 20px;
}

.quantity-field {
  background: #efecec;
  width: 50px !important;
  border-radius: 40px !important;
}
input#header_ItemCart_btnPlaceOrder{
align-items: center;
    justify-content: center;
    display: flex;
    height: 46px;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    font-weight: 500;
    padding: 5px;
    display: block;
    width: 100%;
    background: var(--primary-color);
    border:none;
}