/*-- Fonts, variable and abstracts -- */
/*-- fonts -- */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*-- variable -- */
/*-- mixin -- */
/*-- Reset css styles  -- */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* -- Common elements -- */
html {
  scroll-behavior: smooth;
  margin-right: 0 !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif !important;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: normal;
  color: #1a1a1a;
  background-color: #ffffff;
}

img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
  transition: all 0.6s ease;
}

ul,
li {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.container {
  max-width: 1360px;
}

/* -- form style -- */
textarea,
input[type=text],
input[type=password],
input[type=date],
input[type=month],
input[type=time],
input[type=week],
input[type=datetime],
input[type=number],
input[type=email],
input[type=url],
input[type=search],
input[type=tel],
input[type=color] {
  font-family: "Roboto", sans-serif;
  border: 1px solid rgba(221, 221, 221, 0.3647058824);
  outline: 0;
  box-shadow: none;
  font-size: 14px;
  line-height: 24px;
  border-radius: 3px;
  padding: 12px 18px;
  width: 100%;
  background: #ffffff;
  color: #1a1a1a;
  font-weight: normal;
}
textarea:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=datetime]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=color]:focus {
  border-color: rgba(221, 221, 221, 0.3647058824);
}
textarea::-moz-placeholder, input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=datetime]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=color]::-moz-placeholder {
  color: #1a1a1a;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
textarea::placeholder,
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=datetime]::placeholder,
input[type=number]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=color]::placeholder {
  color: #1a1a1a;
  transition: all 0.3s ease;
}

textarea {
  min-height: 120px;
  resize: none;
}

/* -- Placeholder color -- */
::-webkit-input-placeholder {
  color: #1a1a1a;
}

:-moz-placeholder {
  color: #1a1a1a;
}

::-moz-placeholder {
  color: #1a1a1a;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #1a1a1a;
}

/* -- Typography setting -- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
  text-rendering: optimizeLegibility;
  color: #1a1a1a;
  font-weight: bold;
}

h1 {
  font-size: 80px;
  line-height: 1.1em;
}

h2 {
  font-size: 68px;
  line-height: 1.2em;
}

h3 {
  font-size: 56px;
  line-height: 1.3em;
}

h4 {
  font-size: 42px;
  line-height: 1.4em;
}

h5 {
  font-size: 28px;
  line-height: 1.5em;
}

h6 {
  font-size: 20px;
  line-height: 1.6em;
}

p {
  line-height: 1.4em;
}

b,
strong {
  font-weight: bolder;
}

video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  color: #1a1a1a;
}
a:focus, a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
  outline: 0;
}

label {
  font-weight: bold;
}

.link {
  transition: all 0.3s ease;
}
.link:hover {
  color: #C84995;
}

.border-line {
  border: 1px solid rgba(221, 221, 221, 0.3647058824);
}

.border-line-black {
  border: 1px solid #000000;
}

.border-line-bottom {
  border-bottom: 1px solid rgba(221, 221, 221, 0.3647058824);
}

.no-line {
  border: 0 !important;
}

/* -- radius --*/
.radius-8 {
  border-radius: 8px;
}

.radius-24 {
  border-radius: 24px;
}

.radius-32 {
  border-radius: 32px;
}

.radius-56 {
  border-radius: 56px;
}

.rounded-full {
  border-radius: 999px;
}

.overflow-hidden {
  overflow: hidden;
}

.none {
  display: none;
}

.padding-y {
  padding-top: 70px;
  padding-bottom: 70px;
}

.padding-top {
  padding-top: 70px;
}

.padding-bottom {
  padding-bottom: 70px;
}

.padding-x {
  padding-left: 70px;
  padding-right: 70px;
}

.padding-left {
  padding-left: 70px;
}

.padding-right {
  padding-right: 70px;
}

/* -- text-size -- */
.text-size-1 {
  font-size: 12px;
}

.text-size-2 {
  font-size: 14px;
}

.text-size-3 {
  font-size: 16px;
}

.text-size-4 {
  font-size: 18px;
}

.text-size-5 {
  font-size: 20px;
}

.text-size-6 {
  font-size: 24px;
}

.text-size-7 {
  font-size: 28px;
}

.text-size-8 {
  font-size: 32px;
}

.text-size-9 {
  font-size: 38px;
}

.text-size-10 {
  font-size: 40px;
}

.text-size-11 {
  font-size: 48px;
}

.text-size-12 {
  font-size: 56px;
}

.text-size-13 {
  font-size: 64px;
}

.text-size-14 {
  font-size: 96px;
}

/*-- Woocommerce styles -- */
/******************* HEADER START *******************/
/* Start Wooprex Header & Light header */
header.wooprex-header-section {
  position: relative;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  transition: top 0.6s, background 0.4s, box-shadow 0.4s, padding 0.3s;
}
header.wooprex-header-section.sticky {
  position: fixed !important;
  top: 0px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
  -webkit-animation: 0.95s ease 0s normal forwards 1 running stickyAnimation;
}

@keyframes stickyAnimation {
  0% {
    margin-top: -150px;
  }
  100% {
    margin-top: 0;
  }
}
/* Wooprex menu css that applies to all section */
header.wooprex-header-section .header-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
header.wooprex-header-section .header-main .header-right {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
header.wooprex-header-section .header-main .header-right .header-text span {
  background-color: #C84995;
  padding: 25px 40px;
  color: #ffffff;
  display: block;
  text-align: center;
}

/* Start desktop menu */
.wooprex-desktop-menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.wooprex-desktop-menu ul.box-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 45px;
  flex-wrap: wrap;
}
.wooprex-desktop-menu ul.box-nav li.menu-item {
  position: relative;
}
.wooprex-desktop-menu ul.box-nav li.menu-item a.item-link {
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 20px 0px;
  position: relative;
  font-weight: 400;
  transition: all 0.3s ease;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 12px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item.current-menu-item > a.item-link {
  font-weight: 600;
  color: #1a1a1a;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover a.item-link {
  color: #C84995;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover a.item-link i {
  transform: rotate(180deg);
}
.wooprex-desktop-menu ul.box-nav li.menu-item > ul.sub-menu {
  left: 0px;
  top: 60px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu {
  position: absolute;
  width: 250px;
  padding: 20px 0px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  background-color: #ffffff;
  box-shadow: 0px 14px 28px 0px rgba(6, 23, 106, 0.0784313725);
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li {
  padding: 8px 15px;
  position: relative;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.sub-menu-link {
  color: #C84995;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li.current-menu-item > a.sub-menu-link {
  color: #1a1a1a;
  font-weight: 600;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li.current-menu-item > a.sub-menu-link:before {
  opacity: 1;
  visibility: visible;
  height: 15px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link {
  padding: 0px 25px;
  display: block;
  color: #1a1a1a;
  text-transform: capitalize;
  font-size: 16px;
  position: relative;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link i {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  background-color: #1a1a1a;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  height: 0px;
  width: 4px;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li > ul.sub-menu {
  right: -220px;
  top: 0;
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.sub-menu-link i {
  transform: rotate(180deg);
}
.wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > ul.sub-menu {
  right: -250px;
  opacity: 1;
  visibility: visible;
}
.wooprex-desktop-menu ul.box-nav li.menu-item:hover > ul.sub-menu {
  opacity: 1;
  visibility: visible;
}

/* Start mobile menu */
.wooprex-mobile-menu {
  width: 350px;
  max-width: 100%;
  height: 100%;
  background-color: #ffffff;
  position: fixed;
  left: 0%;
  transform: translateX(-110%);
  top: 0;
  padding-top: 30px;
  box-shadow: 0px 0px 5px 0px rgba(6, 23, 106, 0.0784313725);
  transition: all 0.6s ease;
  overflow-y: auto;
  z-index: 999;
}
.wooprex-mobile-menu ul.box-nav {
  margin-top: 60px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item {
  padding: 0px 20px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item:hover > a.item-link {
  color: #C84995;
}
.wooprex-mobile-menu ul.box-nav li.menu-item.current-menu-item > a.item-link {
  color: #1a1a1a;
  font-weight: 600;
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link {
  padding: 18px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1a1a1a;
  transition: all 0.3s ease;
  gap: 5px;
  font-weight: 400;
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  transform: rotate(-90deg);
}
.wooprex-mobile-menu ul.box-nav li.menu-item a.item-link.link-active i {
  transform: rotate(0deg);
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu {
  padding-bottom: 10px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li {
  padding: 0px 10px;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li:hover > a.sub-menu-link {
  color: #C84995;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li.current-menu-item > a.sub-menu-link {
  color: #1a1a1a;
  font-weight: 600;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0px;
  color: #1a1a1a;
  font-weight: 500;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link i {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
.wooprex-mobile-menu ul.box-nav li.menu-item ul.sub-menu li a.sub-menu-link.link-active i {
  transform: rotate(0deg);
}
.wooprex-mobile-menu.show {
  transform: translateX(0%);
}

.wooprex-mobile-menu-bar {
  cursor: pointer;
  display: none;
}
.wooprex-mobile-menu-bar i {
  font-size: 36px;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-bar-close {
  position: absolute;
  right: 0;
  margin-right: 15px;
  cursor: pointer;
}
.mobile-menu-bar-close i {
  font-size: 30px;
  color: #1a1a1a;
}
.mobile-menu-bar-close:hover i {
  color: #C84995;
}

/******************* HEADER END *******************/
.wooprex-btn {
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  color: #ffffff;
  border-radius: 56px;
  background-color: #C84995;
  border: 1px solid #C84995;
  padding: 0px 50px;
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.2em;
  transition: all 0.3s ease;
}
.wooprex-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.wooprex-btn:hover {
  background-color: transparent;
  color: #C84995;
}
.wooprex-btn.outline {
  background-color: transparent;
  border-color: #C84995;
  color: #C84995;
}
.wooprex-btn.outline:hover {
  background-color: #C84995;
  color: #ffffff;
}

.sc-breadcrumb-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  position: relative;
}
.sc-breadcrumb-section:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4196078431);
  z-index: 1;
}
.sc-breadcrumb-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.sc-breadcrumb-section h1 {
  z-index: 2;
  font-size: 45px;
  text-transform: uppercase;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sc-dialogbox {
  transition: all 0.6s ease;
}
.sc-dialogbox.show {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease;
}
.sc-dialogbox.hidden {
  transform: scale(0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}

.sc-dialog-close {
  cursor: pointer;
}

.sc-count .elementor-widget-container {
  width: 90px !important;
  height: 90px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #C84995;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  background-color: #ffffff;
}
.sc-count .elementor-widget-container::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 84px;
  width: 8px;
  height: 8px;
  background-color: #C84995;
  z-index: 1;
  border-radius: 50%;
}
.sc-count .elementor-widget-container::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -5px;
  width: 8px;
  height: 8px;
  background-color: #C84995;
  z-index: 1;
  border-radius: 50%;
}
.sc-count .elementor-widget-container .elementor-heading-title {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #C84995;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sc-count .elementor-widget-container .elementor-heading-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 83px;
  width: 200px;
  border-bottom: 1px solid #C84995;
}
.sc-count.last .elementor-widget-container .elementor-heading-title::after {
  display: none;
}
.sc-count.last .elementor-widget-container::before {
  display: none;
}
.sc-count.first .elementor-widget-container::after {
  display: none;
}

/* Foood Section */
.color-box {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}
.color-box.gray {
  background-color: #dbd9d9;
}
.color-box.gold {
  background-color: #fac19c;
}
.color-box.green {
  background-color: #b1e3b4;
}
.color-box.white {
  background-color: #ffffff;
}

.sc-food-top .row {
  row-gap: 12px;
}
.sc-food-top select {
  width: 100%;
  padding: 10px 20px;
  border-radius: 32px;
  background-size: 20px;
  cursor: pointer;
}
.sc-food-top select:focus {
  outline: none;
}
.sc-food-top .search-wrapper {
  position: relative;
}
.sc-food-top .search-wrapper input[type=text] {
  padding: 10px 30px 10px 60px;
  border-radius: 32px;
  background-color: #887a84;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
}
.sc-food-top .search-wrapper input[type=text]::-moz-placeholder {
  color: #ffffff;
}
.sc-food-top .search-wrapper input[type=text]::placeholder {
  color: #ffffff;
}
.sc-food-top .search-wrapper input[type=submit] {
  background-image: url(../assets/svg/search-interface-symbol.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
  width: 30px;
  background-color: transparent;
  border: none;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.sc-food-top .wooprex-btn {
  width: 100%;
}
.sc-food-top .filter-color {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.sc-food-top .filter-color h5 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}
.sc-food-top .filter-color.barrier {
  justify-content: flex-end;
}

.sc-food-wrapper {
  margin-top: 80px;
}
.sc-food-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

/* FOod item */
.sc-food-item {
  overflow: hidden;
  border-radius: 24px;
  width: 31%;
  background-color: #ffffff;
  border: 1px solid rgb(122, 122, 122);
}
.sc-food-item .food-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.sc-food-item .food-image:before {
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3882352941);
  z-index: 1;
}
.sc-food-item .food-image .thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sc-food-item .food-image .leaf {
  top: 15px;
}
.sc-food-item .food-image .cap {
  bottom: 15px;
}
.sc-food-item .food-image .leaf,
.sc-food-item .food-image .cap {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
  z-index: 2;
}
.sc-food-item .food-image .leaf img,
.sc-food-item .food-image .cap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sc-food-item .food-image .title-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 15px;
  z-index: 2;
}
.sc-food-item .food-image .title-wrapper h3 {
  font-weight: 600;
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}
.sc-food-item .food-image .title-wrapper h3 a {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}
.sc-food-item .food-image .title-wrapper p {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.sc-food-item .food-image .title-wrapper p i {
  font-size: 24px;
}
.sc-food-item .food-description {
  padding: 15px;
}
.sc-food-item .food-description .description-top {
  margin-bottom: 15px;
  overflow: auto;
}
.sc-food-item .food-description table {
  width: 100%;
}
.sc-food-item .food-description table th {
  color: #C84995;
  text-align: center;
}
.sc-food-item .food-description table th:not(:first-child) {
  border-right: 1.5px solid #d9d9d9;
}
.sc-food-item .food-description table th:last-child {
  border-right: none;
}
.sc-food-item .food-description table td {
  padding: 5px;
  vertical-align: middle;
}
.sc-food-item .food-description table td:not(:first-child) {
  text-align: center;
  border-right: 1.5px solid #d9d9d9;
}
.sc-food-item .food-description table td:last-child {
  border-right: none;
}
.sc-food-item .food-description table td h5 {
  font-size: 16px;
}
.sc-food-item .food-description table td .color-box {
  margin: 0 auto;
}
.sc-food-item .food-description .sc-button-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}
.sc-food-item .food-description .sc-button-wrapper .wooprex-btn {
  height: 40px;
  font-weight: 600;
  width: 38%;
}
.sc-food-item .food-description .sc-button-wrapper .wooprex-btn:not(.outline) {
  min-width: auto;
  width: 60%;
}
.sc-food-item:hover .food-image .thumbnail {
  transform: scale(1.05);
}

/* Sidebar */
.sc-sidebar {
  max-width: 420px;
}
.sc-sidebar .sidebar-title {
  font-size: 24px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 15px;
}
.sc-sidebar .sc-sidebar-archive {
  margin-top: 25px;
}
.sc-sidebar .sc-sidebar-archive:first-child {
  margin-top: 0;
}
.sc-sidebar .sc-sidebar-archive .widget {
  border: 2px solid #d9d9d9;
  padding: 20px 20px;
}
.sc-sidebar .sc-sidebar-archive .sc-contact ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.sc-sidebar .sc-sidebar-archive .sc-contact ul li {
  font-size: 15px;
  line-height: 1.4em;
}
.sc-sidebar .sc-sidebar-archive .sc-contact ul li a {
  color: #1a1a1a;
}
.sc-sidebar .sc-sidebar-archive .sc-contact ul li a.color-link {
  color: #007acc;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li {
  width: 100%;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 15px;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a .restaurant-image {
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a .restaurant-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a .restaurant-description {
  width: 60%;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a .restaurant-description h3 {
  color: #007acc;
  font-size: 15px;
  font-weight: 400;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a .restaurant-description h5 {
  font-size: 14px;
  font-weight: 400;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a .restaurant-description p {
  font-size: 14px;
  color: #5e70c2;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a .restaurant-description span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
}
.sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a .restaurant-description span i {
  font-size: 12px;
  color: #5e70c2;
}

/* Deals details */
.sc-single-deals-section > .row {
  row-gap: 40px;
}

.sc-deals-details .header-section .title {
  border-bottom: 2px solid #d9d9d9;
  font-size: 25px;
  font-weight: 400;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.sc-deals-details .info-section {
  margin-top: 35px;
}
.sc-deals-details .info-section .title {
  border-bottom: 2px solid #d9d9d9;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 15px;
}
.sc-deals-details .info-section ul li {
  padding: 20px 0px 15px 0px;
  border-bottom: 2px solid #d9d9d9;
}
.sc-deals-details .info-section ul li .col-6 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sc-deals-details .info-section ul li h5 {
  font-size: 16px;
  font-weight: 400;
  overflow-wrap: anywhere;
}
.sc-deals-details .menu-section {
  margin-top: 50px;
}
.sc-deals-details .menu-section .title {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: center;
}
.sc-deals-details .menu-section .menu-wrapper {
  border: 2px solid #d9d9d9;
  padding: 40px 100px;
  text-align: center;
}
.sc-deals-details .menu-section .menu-wrapper h3 {
  font-size: 16px;
  margin-bottom: 35px;
  font-weight: 700;
}
.sc-deals-details .menu-section .menu-wrapper ul {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.sc-deals-details .menu-section .menu-wrapper ul li {
  line-height: 1.4em;
  font-weight: 500;
}
.sc-deals-details .menu-section .menu-wrapper .lunch-section {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid #d9d9d9;
}
.sc-deals-details .sc-button-wrapper {
  margin-top: 35px;
}
.sc-deals-details .sc-button-wrapper .wooprex-btn {
  width: 100%;
  padding: 40px;
  font-size: 24px;
}

.calendar-box {
  background-color: #ffffff;
  box-shadow: 0px 0px 30px 0px rgba(6, 23, 106, 0.0784313725);
  padding: 30px 20px;
  max-width: 400px;
  margin: 0 auto;
}
.calendar-box .title {
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 35px;
}
.calendar-box .sc-calendar {
  min-height: 300px;
}

#sc-accordion svg {
  height: auto !important;
  width: auto !important;
}

.footer-section {
  padding: 30px 10px 50px 10px;
  background-color: #392132;
}
.footer-section .row {
  row-gap: 25px;
}
.footer-section .footer-top {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 2px solid #673e57;
}
.footer-section .footer-top .footer-item {
  height: 100%;
  display: flex;
  align-items: center;
}
.footer-section .footer-top .footer-item p {
  color: #ffffff;
  font-size: 25px;
  max-width: 385px;
  font-weight: 400;
}
.footer-section .footer-top .footer-item #scform {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin: 0 !important;
}
.footer-section .footer-top .footer-item #scform input[type=email] {
  background-color: #887a84;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 16px;
  height: 48px;
  padding: 0px 30px;
}
.footer-section .footer-top .footer-item #scform input[type=email]::-moz-placeholder {
  color: #ffffff;
}
.footer-section .footer-top .footer-item #scform input[type=email]::placeholder {
  color: #ffffff;
}
.footer-section .footer-top .footer-item #scform .wooprex-btn {
  min-width: auto;
  padding: 0px 20px;
  width: 32%;
}
.footer-section .footer-bottom .footer-item p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
}
.footer-section .footer-bottom .footer-item #menu-footer-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-section .footer-bottom .footer-item #menu-footer-menu li a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: underline;
  font-weight: 300;
}
.footer-section .footer-bottom .footer-item #menu-footer-menu li a:hover {
  color: #C84995;
  text-decoration: none;
}

h4.deals-calendar-date {
  font-size: 21px;
}

.deal--header h2 {
  font-size: 30px;
}

div#load-more-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

li.no-deals-found {
  color: #fff;
}

.sc-food-item .food-image .cap {
  background-color: #cdcdcd;
  border-radius: 100%;
}

.leaf img {
  border-radius: 5px !important;
}

.sc-food-item .food-image .leaf,
.sc-food-item .food-image .cap {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sc-breadcrumb-section h1 {
  text-align: center;
}

a.wooprex-btn.gray-btn {
  background-color: #dbd9d9;
  border: 1px solid #dbd9d9;
  color: #212121;
}

a.wooprex-btn.gray-btn:hover {
  background-color: transparent;
  border: 1px solid #dbd9d9;
  color: #919191;
}

/* Calendar */
.sc-calendar-breadcrumb-section {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.sc-calendar-breadcrumb-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sc-calendar-breadcrumb-section .breadcrumb-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0px 20px;
  text-align: center;
  z-index: 9;
}
.sc-calendar-breadcrumb-section .breadcrumb-text h1 {
  color: #fff;
  font-size: 40px;
}
.sc-calendar-breadcrumb-section .breadcrumb-text p a {
  color: #fff;
  text-decoration: underline;
  font-size: 18px;
  padding-top: 10px;
}

.sc-logout {
  position: absolute;
  top: 30px;
  z-index: 9;
  right: 60px;
}
.sc-logout a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

.sc-calendar-body,
.sc-calendar-details-body {
  min-height: 600px;
  padding: 40px 20px;
}

.select-section form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto;
}
.select-section form select {
  width: 250px;
  background-size: 14px;
  cursor: pointer;
  border: 2px solid #d9d9d9;
}
.select-section form select,
.select-section form input[type=submit] {
  padding: 12px 25px;
  outline: none;
  font-size: 16px;
  border-radius: 32px;
}
.select-section form input[type=submit] {
  background-color: #c84995;
  border: 1px solid #c84995;
  transition: 0.3s;
  color: #fff;
  width: 130px;
}
.select-section form input[type=submit]:hover {
  background-color: transparent;
  color: #c84995;
}

.calendar-item-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  margin-top: 30px;
}

.calendar-item a {
  background-color: #eee;
  padding: 30px;
  transition: 0.3s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 15px;
  overflow: hidden;
}
.calendar-item a .title {
  font-size: 18px;
  color: #c84995;
  font-weight: 700;
}
.calendar-item a p {
  transition: 0.3s;
  color: #999;
  font-weight: 500;
}
.calendar-item a:focus p {
  color: red;
}
.calendar-item:hover a {
  background-color: #cbcbcb;
}

.restaurant-table {
  margin-top: 40px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
  padding-bottom: 60px;
}
.restaurant-table h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
.restaurant-table .table-wrapper {
  overflow: auto;
}
.restaurant-table .table-wrapper table {
  margin-top: 20px;
  width: 100%;
}
.restaurant-table .table-wrapper table thead {
  background-color: #c84995;
  color: #fff;
}
.restaurant-table .table-wrapper table td:last-child {
  font-weight: 700;
}
.restaurant-table .table-wrapper table th {
  font-weight: 700;
}
.restaurant-table .table-wrapper table td,
.restaurant-table .table-wrapper table th {
  border: 1px solid #dddddd;
  padding: 10px;
}
.restaurant-table .table-wrapper table tbody tr:nth-child(even) {
  background-color: #f8f8f8;
}

/* calendar details */
.booking-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}
.booking-details .title {
  font-size: 24px;
  font-weight: 700;
}
.booking-details h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.booking-details input[type=submit] {
  background-color: #c84995;
  border: 1px solid #c84995;
  transition: 0.3s;
  color: #fff;
  padding: 12px 35px;
  outline: none;
  font-size: 16px;
  border-radius: 32px;
}
.booking-details input[type=submit]:hover {
  background-color: transparent;
  color: #c84995;
}

.customer-table {
  margin-top: 40px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}
.customer-table h3 {
  font-size: 18px;
  font-weight: 500;
}
.customer-table h3 a {
  text-decoration: underline;
}
.customer-table h3 a:hover {
  text-decoration: none;
}
.customer-table .table-wrapper {
  overflow: auto;
}
.customer-table .table-wrapper table {
  margin-top: 20px;
  width: 100%;
}
.customer-table .table-wrapper table thead {
  background-color: #c84995;
  color: #fff;
}
.customer-table .table-wrapper table td:last-child {
  font-weight: 700;
}
.customer-table .table-wrapper table th {
  font-weight: 700;
}
.customer-table .table-wrapper table td,
.customer-table .table-wrapper table th {
  border: 1px solid #dddddd;
  padding: 10px;
}
.customer-table .table-wrapper table tbody tr:nth-child(even) {
  background-color: #eee;
}

.scbtnprint {
  border: 1px solid #fff;
  padding: 6px 25px;
  background-color: #fff;
  color: #000;
  margin-top: 20px;
}
.scbtnprint img {
  width: 30px;
}

@media only screen and (max-width: 575px) {
  .sc-calendar-breadcrumb-section .breadcrumb-text h1 {
    font-size: 28px;
  }
  .sc-logout {
    top: 20px;
    right: 20px;
  }
  .select-section select,
  .select-section input[type=submit] {
    width: 100%;
  }
  .calendar-item a {
    padding: 15px;
  }
  .calendar-item a p {
    font-size: 15px;
  }
}
.sc-calendar-breadcrumb-section::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.37);
  content: "";
  z-index: 1;
}

/*-- Responsive styles -- */
/* -- Wooprex - Media Queries -- */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-section .footer-bottom .footer-item #menu-footer-menu {
    gap: 30px;
  }
}
@media only screen and (max-width: 1199px) {
  .padding-x {
    padding-left: 20px;
    padding-right: 20px;
  }
  .padding-left {
    padding-left: 20px;
  }
  .padding-right {
    padding-right: 20px;
  }
  .sc-count .elementor-widget-container .elementor-heading-title::after {
    width: 150px;
  }
  .sc-food-wrapper ul {
    gap: 30px;
  }
  .sc-deals-details .sc-button-wrapper .wooprex-btn {
    padding: 35px;
    font-size: 22px;
  }
  .sc-sidebar .sc-sidebar-archive .sc-recent-restaurants ul li a .restaurant-image {
    width: 50px;
    height: 50px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item a.item-link {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-logo .logo {
    max-width: 200px;
  }
  .wooprex-desktop-menu ul.box-nav {
    gap: 32px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li > ul.sub-menu {
    right: inherit;
    left: -220px;
  }
  .wooprex-desktop-menu ul.box-nav li.menu-item ul.sub-menu li:hover > ul.sub-menu {
    left: -250px;
  }
  .footer-section .footer-top .footer-item p {
    font-size: 23px;
  }
  .footer-section .footer-bottom .footer-item #menu-footer-menu {
    gap: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .wooprex-mobile-menu ul.box-nav li.menu-item a.item-link {
    font-size: 20px;
  }
  .padding-y {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .padding-top {
    padding-top: 80px;
  }
  .padding-bottom {
    padding-bottom: 80px;
  }
  header.wooprex-header-section {
    padding-left: 20px;
  }
  header.wooprex-header-section .header-main {
    justify-content: space-between;
  }
  .wooprex-desktop-menu {
    display: none;
  }
  .wooprex-mobile-menu-bar {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sc-food-top .filter-color.barrier {
    justify-content: flex-start;
  }
  .sc-breadcrumb-section {
    height: 270px;
  }
  .sc-deals-details .sc-button-wrapper .wooprex-btn {
    padding: 30px;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .sc-food-item {
    width: 47%;
  }
  /*********************** FOOTER **************/
  .footer-section .footer-top .footer-item p {
    font-size: 18px;
  }
  .footer-section .footer-bottom .footer-item p {
    font-size: 15px;
  }
  .footer-section .footer-bottom .footer-item #menu-footer-menu {
    gap: 20px;
  }
  .footer-section .footer-bottom .footer-item #menu-footer-menu li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .padding-y {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .padding-top {
    padding-top: 50px;
  }
  .padding-bottom {
    padding-bottom: 50px;
  }
  header.wooprex-header-section .header-main .header-right .header-text span {
    padding: 20px 35px;
    font-size: 14px;
  }
  .sc-count .elementor-widget-container::before, .sc-count .elementor-widget-container::after {
    display: none;
  }
  .sc-count .elementor-widget-container .elementor-heading-title::after {
    display: none;
  }
  .sc-food-wrapper {
    margin-top: 40px;
  }
  .sc-food-top .filter-color.barrier {
    justify-content: flex-start;
  }
  .sc-food-item {
    width: 100%;
    max-width: 340px;
  }
  .sc-breadcrumb-section {
    height: 230px;
  }
  .sc-breadcrumb-section h1 {
    font-size: 35px;
  }
  .sc-deals-details .menu-section .menu-wrapper {
    padding: 40px 70px;
  }
  .footer-section {
    padding-bottom: 40px;
  }
  .footer-section .footer-top {
    margin-bottom: 40px;
  }
  .footer-section .footer-top .footer-item p {
    font-size: 18px;
  }
  .footer-section .footer-top .footer-item form {
    flex-wrap: wrap;
  }
  .footer-section .footer-top .footer-item form input[type=email],
  .footer-section .footer-top .footer-item form .wooprex-btn {
    width: 100%;
  }
  .footer-section .footer-bottom .footer-item p {
    font-size: 15px;
    text-align: center;
  }
  .footer-section .footer-bottom .footer-item #menu-footer-menu {
    gap: 20px;
    justify-content: center;
  }
  .footer-section .footer-bottom .footer-item #menu-footer-menu li a {
    font-size: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /*********************** FOOTER **************/
}
@media only screen and (max-width: 575px) {
  header.wooprex-header-section .header-main .header-right .header-text span {
    padding: 15px 25px;
  }
  .sc-food-item .food-image {
    height: 200px;
  }
  .sc-food-item .food-image .title-wrapper h3 a {
    font-size: 20px;
  }
  .sc-food-item .food-description .sc-button-wrapper .wooprex-btn {
    padding: 0;
  }
  .sc-food-top select {
    background-size: 14px;
    font-size: 14px;
  }
  /* deals details */
  .sc-deals-details .menu-section .menu-wrapper {
    padding: 40px 20px;
  }
  .sc-deals-details .sc-button-wrapper .wooprex-btn {
    padding: 20px;
    font-size: 16px;
  }
  .footer-section .footer-top .footer-item p {
    text-align: center;
    margin: 0 auto;
  }
  #deal-booking.active-deals-booking form .half,
  #deal-booking.active-deals-booking form .full,
  #deal-booking.active-deals-booking form .tos {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .sc-breadcrumb-section h1 {
    font-size: 31px;
    min-width: 300px;
  }
}/*# sourceMappingURL=styles.css.map */