* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Outfit", sans-serif; */
  font-family: "Inria Serif", serif;
  scroll-behavior: smooth;
}
html {
  scroll-behavior: smooth;
}
.preloader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color-green);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20000;
}
.pl {
  margin: auto;
  width: var(--size);
  height: var(--size);
}
.pl__drop,
.pl__drop-inner,
.pl__pan,
.pl__ring,
.pl__shadow {
  animation: pan 2s var(--ease-in-out) infinite;
}
.pl__drop {
  transform-origin: 13px 60px;
}
.pl__drop-inner {
  animation-timing-function: var(--ease-out);
}
.pl__pan {
  transform-origin: 36px 74px;
}
.pl__ring {
  animation-name: flip-ring;
}
.pl__shadow {
  animation-name: pan-shadow;
  transform-origin: 36px 124.5px;
}
/* Dark theme */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: hsl(var(--hue), 10%, 10%);
    --fg: hsl(var(--hue), 10%, 90%);
  }
}
.pl__drop--1 {
  animation-name: drop-1;
}
.pl__drop--1 .pl__drop-inner {
  animation-name: drop-1-inner;
}
.pl__drop--2 {
  animation-name: drop-2;
}
.pl__drop--2 .pl__drop-inner {
  animation-name: drop-2-inner;
}
.pl__drop--3 {
  animation-name: drop-3;
  transform-origin: 67px 72px;
}
.pl__drop--3 .pl__drop-inner {
  animation-name: drop-3-inner;
}
.pl__drop--4 {
  animation-name: drop-4;
  transform-origin: 67px 72px;
}
.pl__drop--4 .pl__drop-inner {
  animation-name: drop-4-inner;
}
.pl__drop--5 {
  animation-name: drop-5;
  transform-origin: 67px 72px;
}
.pl__drop--5 .pl__drop-inner {
  animation-name: drop-5-inner;
}
@keyframes drop-1 {
  from {
    animation-timing-function: steps(1, end);
    transform: translate(0, 0);
    visibility: hidden;
  }
  30% {
    animation-timing-function: linear;
    transform: translate(0, 0);
    visibility: visible;
  }
  50%,
  to {
    transform: translate(-6px, 0);
  }
}
@keyframes drop-1-inner {
  from,
  30% {
    fill: var(--drop-color);
    transform: translate(0, 0);
  }
  50%,
  to {
    fill: var(--drop-color-t);
    transform: translate(0, -27px);
  }
}
@keyframes drop-2 {
  from {
    animation-timing-function: steps(1, end);
    transform: translate(0, 0);
    visibility: hidden;
  }
  30% {
    animation-timing-function: linear;
    transform: translate(0, 0);
    visibility: visible;
  }
  50%,
  to {
    transform: translate(-8px, 0);
  }
}
@keyframes drop-2-inner {
  from,
  30% {
    fill: var(--drop-color);
    transform: translate(0, 0);
  }
  50%,
  to {
    fill: var(--drop-color-t);
    transform: translate(0, -9px);
  }
}
@keyframes drop-3 {
  from {
    animation-timing-function: steps(1, end);
    transform: translate(0, 0);
    visibility: hidden;
  }
  78% {
    animation-timing-function: linear;
    transform: translate(0, 0);
    visibility: visible;
  }
  98%,
  to {
    transform: translate(-24px, 0);
  }
}
@keyframes drop-3-inner {
  from,
  78% {
    fill: var(--drop-color);
    transform: translate(0, 0);
  }
  98%,
  to {
    fill: var(--drop-color-t);
    transform: translate(0, -28px);
  }
}
@keyframes drop-4 {
  from {
    animation-timing-function: steps(1, end);
    transform: translate(0, 0);
    visibility: hidden;
  }
  78% {
    animation-timing-function: linear;
    transform: translate(0, 0);
    visibility: visible;
  }
  98%,
  to {
    transform: translate(-8px, 0);
  }
}
@keyframes drop-4-inner {
  from,
  78% {
    fill: var(--drop-color);
    transform: translate(0, 0);
  }
  98%,
  to {
    fill: var(--drop-color-t);
    transform: translate(0, -36px);
  }
}
@keyframes drop-5 {
  from {
    animation-timing-function: steps(1, end);
    transform: translate(0, 0);
    visibility: hidden;
  }
  78% {
    animation-timing-function: linear;
    transform: translate(0, 0);
    visibility: visible;
  }
  98%,
  to {
    transform: translate(8px, 0);
  }
}

@keyframes drop-5-inner {
  from,
  78% {
    fill: var(--drop-color);
    transform: translate(0, 0);
  }
  98%,
  to {
    fill: var(--drop-color-t);
    transform: translate(0, -32px);
  }
}
@keyframes flip-ring {
  from,
  27% {
    animation-timing-function: var(--ease-out);
    stroke-dashoffset: 20;
    stroke-width: 4px;
  }
  53.5% {
    animation-timing-function: var(--ease-in);
    stroke-dashoffset: -100;
    stroke-width: 10px;
  }
  80%,
  to {
    stroke-dashoffset: -220;
    stroke-width: 4px;
  }
}
@keyframes pan {
  from,
  88%,
  to {
    transform: translate(0, 0) rotate(0);
  }
  20% {
    animation-timing-function: var(--ease-in);
    transform: translate(-5px, 0) rotate(-30deg);
  }
  30% {
    animation-timing-function: var(--ease-out);
    transform: translate(0, 0) rotate(20deg);
  }
  60%,
  78% {
    animation-timing-function: linear;
    transform: translate(0, 0) rotate(0);
  }
  81.33% {
    animation-timing-function: linear;
    transform: translate(0, 4px) rotate(0);
  }
  84.67% {
    animation-timing-function: linear;
    transform: translate(0, -2px) rotate(0);
  }
}
@keyframes pan-shadow {
  from,
  88%,
  to {
    fill: hsla(223, 10%, 50%, 0.2);
    transform: scaleX(1);
  }
  20% {
    animation-timing-function: var(--ease-in);
    fill: hsla(223, 10%, 50%, 0.2);
    transform: scaleX(0.77);
  }
  30% {
    animation-timing-function: var(--ease-out);
    fill: hsla(223, 10%, 50%, 0.2);
    transform: scaleX(1);
  }
  60%,
  78% {
    animation-timing-function: linear;
    fill: hsla(223, 10%, 50%, 0.2);
    transform: scaleX(1);
  }
  81.33% {
    animation-timing-function: linear;
    fill: hsla(223, 10%, 50%, 0.25);
    transform: scaleX(0.87);
  }
  84.67% {
    animation-timing-function: linear;
    fill: hsla(223, 10%, 50%, 0.225);
    transform: scaleX(1.065);
  }
}
:root {
  --primary-color-green: #283d38;
  --primary-color-white: #fffcf7;
  --primary-color-warm-white: #f5e3c7;
  --shadow-color: #f5e3c783;
  --size: 128px;
  --drop-color: hsl(38, 90%, 50%);
  --drop-color-t: hsla(223, 10%, 70%, 0); /* Transparent version */
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --ease-out: cubic-bezier(0, 0, 0.58, 1);
  --ease-in: cubic-bezier(0.42, 0, 1, 1);
}
.side-options button,
.submit-btn,
.global-btn-green-x,
.global-btn-green {
  border: none;
  border-radius: 50px;
  background-color: var(--primary-color-green);
  box-shadow: 0 0 10px var(--shadow-color);
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  color: var(--primary-color-white);
  text-align: center;
}
.global-btn-green-x {
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-options button,
.submit-btn,
.global-btn-green-x a,
.global-btn-green a {
  color: var(--primary-color-white);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, font-size 0.3s ease;
}
.side-options button:hover,
.submit-btn:hover,
.global-btn-green-x a:hover,
.global-btn-green a:hover {
  color: var(--primary-color-warm-white);
  text-decoration: none;
  font-size: 18px;
}
.btn-img {
  height: 25px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-img img {
  height: 100%;
  width: 100%;
}
.home-div {
  height: 100vh;
  background-color: var(--primary-color-white);
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #283d3800;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color-warm-white);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color-white);
}
.navbar-wrapper {
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 20px;
}
@media screen and (max-width: 1000px) {
  .navbar-wrapper {
    display: none;
  }
}
.mobile-navbar-wrapper {
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  display: none;
  transition: transform 0.3s ease-in-out;
}
@keyframes bounceOut {
  0% {
    transform: translateY(0); /* Start at the original position */
  }
  20% {
    transform: translateY(-10px); /* Move slightly up */
  }
  40% {
    transform: translateY(5px); /* Move slightly down */
  }
  100% {
    transform: translateY(100%); /* Fully hide the navbar */
  }
}
@keyframes bounceIn {
  0% {
    transform: translateY(100%); /* Start off-screen */
  }
  60% {
    transform: translateY(-15px); /* Bounce past the resting point */
  }
  80% {
    transform: translateY(5px); /* Slight bounce back */
  }
  100% {
    transform: translateY(0); /* Settle at the original position */
  }
}
.show-mobile {
  animation: bounceIn 0.5s ease-in-out forwards; /* Apply bounce-in animation */
}
.hidden-mobile {
  animation: bounceOut 0.5s ease-in-out forwards;
}
@media screen and (max-width: 1000px) {
  .mobile-navbar-wrapper {
    display: block;
  }
}
.inner-mobile-navbar {
  border-radius: 300px;
  box-shadow: 0 0 8px var(--shadow-color);
  height: 100%;
  width: 100%;
  background-color: var(--primary-color-green);
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 5px;
}
.inner-mobile-navbar a {
  text-decoration: none;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}
.inner-mobile-navbar a img {
  width: 100%;
  height: 100%;
}
.inner-navbar-wrapper {
  width: 65%;
  height: 60px;
  background-color: var(--primary-color-green);
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 100px; /* Initial state */
  box-shadow: 0 0 8px var(--shadow-color);
  transition: all 0.3s ease-in-out;
}
#cart-counter {
  background-color: none;
  color: var(--primary-color-warm-white);
  font-weight: 500;
  height: 20px;
  width: 20px;
  font-size: larger;
  margin-left: 2px;
}
.acct-positions-nav a,
.footer-wrapper-inner a,
.cart a,
.social-btn a,
.center-nav a,
.left-side-nav a {
  color: var(--primary-color-white);
  text-decoration: none;
  font-size: 16px;
  margin: 10px;
  transition: color 0.3s ease, font-size 0.3s ease;
}
.global-checkout-btn-inner a {
  text-decoration: none;
  transition: color 0.3s ease, font-size 0.3s ease;
}
.global-checkout-btn-inner a:hover {
  color: var(--primary-color-warm-white);
  text-decoration: none;
  font-size: larger;
}
.acct-positions-nav a:hover,
.footer-wrapper-inner a:hover,
.cart a:hover,
.social-btn a:hover,
.center-nav a:hover,
.left-side-nav a:hover {
  color: var(--primary-color-warm-white);
  text-decoration: none;
  font-size: larger;
}
.social-x-cart,
.right-side-nav {
  display: flex;
  align-items: center;
}
.right-side-nav {
  right: 10px;
}
.nav-line {
  height: 30px;
  width: 2px;
  border-radius: 30px;
  background-color: var(--primary-color-white);
  margin-right: 15px;
  margin-left: 5px;
}
.left-side-nav {
  position: absolute;
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
}
.left-side-nav img {
  height: 40px;
}
.center-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.right-side-nav {
  position: absolute;
  right: 55px;
  top: 50%;
  transform: translateY(-50%);
}
/* Landing Wrapper */
.landing-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: var(--primary-color-white);
}
@media screen and (max-width: 1000px) {
  .landing-wrapper {
    height: 100%;
  }
}
.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fade 30s infinite;
}
.slide img {
  position: absolute;
  right: 100px;
  top: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: translateY(-50%);
}
.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 5s;
}
.slide:nth-child(3) {
  animation-delay: 10s;
}
.slide:nth-child(4) {
  animation-delay: 15s;
}
.slide:nth-child(5) {
  animation-delay: 20s;
}
.slide:nth-child(6) {
  animation-delay: 25s;
}
@keyframes fade {
  0%,
  100% {
    opacity: 0;
  }
  16.7%,
  83.3% {
    opacity: 1;
  }
}
.inner-landing-wrapper {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.new-landing-wrapper-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.new-landing-image-div {
  height: 300px;
  border-radius: 0px;
}
.new-landing-image-div img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0px;
  transition: border-radius 0.1s ease-in-out; /* Smooth transition */
}
.new-landing-image-div img.scrolled {
  border-radius: 30px;
}
.new-landing-title h1 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.new-landing-logo img {
  height: 200px;
  width: 400px;
  object-fit: contain;
  object-position: center;
}
.new-landing-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .new-landing-wrapper {
    display: none;
  }
}
.new-gallery-wrapper {
  width: 100%;
  background-color: var(--primary-color-white);
}
.new-gallery-title {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-new-gallery-title {
  width: 85%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1000px) {
  .inner-new-gallery-title {
    width: 100%;
    padding: 9px;
  }
}
.new-landing-wrapper-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 20px;
  gap: 2px;
}
.new-landing-images {
  width: 100%;
  margin-top: 1rem;
}
@media screen and (max-width: 1000px) {
  .inner-landing-wrapper {
    height: 100%;
    width: 100%;
  }
}
.landing-content {
  width: 85%;
}
@media screen and (max-width: 1000px) {
  .landing-content {
    height: 100%;
    width: 100%;
    display: none;
  }
}
.mobile-landing-wrapper {
  height: 100%;
  width: 100%;
  background-color: var(--primary-color-green);
  padding: 10px;
  display: none;
  padding-top: 10px;
}
@media screen and (max-width: 1000px) {
  .mobile-landing-wrapper {
    display: block;
  }
}
.mobile-landing-wrapper-x {
  height: 100%;
  width: 100%;
  background-color: var(--primary-color-green);
  display: block;
}
.mobile-wrapper-welcome-hero {
  position: relative; /* Needed for absolute positioning of the carousel */
  overflow: hidden;
  width: 100%;
  height: 80vh;
  border-radius: 10px;
  display: none;
  background-color: var(--primary-color-white);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1000px) {
  .mobile-wrapper-welcome-hero {
    display: block;
  }
}
.mobile-wrapper-welcome-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
/* Swiper styles */
.swiper-container {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color-green);
  transition: transform 0.2s ease-in-out;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  transform: scale(1.1);
}
/* Pagination dots */
.swiper-pagination-bullet {
  background-color: var(--primary-color-green);
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background-color: var(--primary-color-warm-white);
  opacity: 1;
}
.logo-mobile-center {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  height: 50%;
  width: 70%;
}
.logo-mobile-center img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.mobile-content-landing {
  background-image: url(../abstract/abstract-detail.svg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  bottom: 8%;
  left: 50%;
  z-index: 10000;
  transform: translateX(-50%);
  padding: 10px 10px;
  border-radius: 20px;
  background-color: var(--primary-color-green);
  width: 95%;
  color: var(--primary-color-white);
}
.title-left-x-mobile h1 {
  font-size: large;
  color: var(--primary-color-white);
}
.title-left-x-mobile-x h2 {
  font-size: large;
  color: var(--primary-color-white);
}
.opening-hours-mobile-inner h1 {
  font-size: large;
  color: var(--primary-color-green);
  margin-bottom: 1.5rem;
}
.mobile-content-landing h1 {
  font-size: large;
  color: var(--primary-color-white);
  margin-bottom: 1.5rem;
}
.secondary-mobile-wrapper h1 {
  font-size: large;
  color: var(--primary-color-white);
}
.opening-hours-mobile-inner p {
  font-size: medium;
  color: var(--primary-color-green);
}
.secondary-mobile-wrapper p {
  font-size: medium;
  color: var(--primary-color-white);
}
.submit-btn-mobile,
.global-btn-green-x-mobile {
  border: none;
  border-radius: 50px;
  background-color: var(--primary-color-green);
  box-shadow: 0 0 10px var(--shadow-color);
  width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  color: var(--primary-color-white);
  text-align: center;
  font-size: small;
}
.global-btn-green-x-mobile-cart {
  border: none;
  border-radius: 50px;
  background-color: var(--primary-color-green);
  box-shadow: 0 0 10px var(--shadow-color);
  width: 130px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  color: var(--primary-color-white);
  text-align: center;
  font-size: small;
}
@media screen and (max-width: 1000px) {
  .global-btn-green-x-mobile-cart {
    display: block;
  }
}
.global-btn-green-x-mobile-cart a,
.submit-btn-mobile a,
.global-btn-green-x-mobile a {
  font-size: small;
  text-decoration: none;
  color: var(--primary-color-white);
}
.secondary-mobile-wrapper {
  width: 100%;
  margin-top: 1rem;
}
.menu-cats-mobile {
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.mobile-offers-slider {
  height: 100%;
  margin-bottom: 0.5rem;
}
.mobile-spacer {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .mobile-spacer {
    display: none;
  }
}
.landing-left,
.landing-right {
  height: 300px;
}
@media screen and (max-width: 1000px) {
  .landing-left,
  .landing-right {
    height: 100%;
    width: 100%;
  }
}
.landing-left {
  position: relative;
}
.landing-left img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: right;
}
.landing-left-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: start;
  width: 100%;
}
.empty-alert h1,
.block-position-info h1,
.inner-success-page-info h1,
.form-instructions p,
li,
.cart-total-calculator h1,
.menu-item-price-tag h3,
.cart-total-calculator p,
.item-name-cart p,
.cart-item-price p,
.item-pick-content h1,
.hotpick-item-image-x h1,
.menu-content-item h1,
.hot-picks-slider-info h1,
.hot-picks-title h1,
.contact-hero-title h1,
.card-x-content h1,
p,
.menu-content-inner-x h1 {
  color: var(--primary-color-green);
}
.landing-left-content h1,
.landing-left-content p {
  color: var(--primary-color-green);
}
.hot-picks-slider-info p,
.contact-hero-title p,
.menu-content-inner-x p,
.menu-content-item p,
.hotpick-item-image-x p,
.item-pick-content p,
.card-x-inner-menu-zone p,
.inner-success-page-info p,
.block-position-info p {
  color: var(--primary-color-green);
}
.empty-alert h1 {
  text-align: center;
}
.trailer-x h1,
p {
  color: var(--primary-color-white);
}
.empty-alert h1,
.inner-success-page-info h1,
.cart-total-calculator h1,
.item-pick-content h1,
.hotpick-item-image-x h1,
.hot-picks-slider-info h1,
.hot-picks-title h1,
.contact-hero-title h1,
.card-x-content h1,
.trailer-x h1,
.menu-content-inner-x h1 {
  font-weight: 400;
  font-size: larger;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .empty-alert h1 {
    font-size: larger;
  }
}
.landing-left-content h1 {
  font-weight: 600;
  font-size: 40px;
}
.landing-left-content p {
  font-weight: 500;
  font-size: medium;
  margin-bottom: 2rem;
}
.block-position-info h1 {
  font-weight: 500;
  font-size: larger;
  margin-top: 1rem;
}
.block-position-info p {
  font-weight: 500;
  font-size: medium;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.menu-content-item h1 {
  font-weight: 500;
  font-size: larger;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.inner-success-page-info p,
.form-instructions p,
li,
.cart-total-calculator p,
.item-name-cart p,
.cart-item-price p,
.item-pick-content p,
.hotpick-item-image-x p,
.hot-picks-slider-info p,
.contact-hero-title p,
.card-x-content p,
.trailer-x p,
.menu-content-inner-x p {
  font-size: medium;
  margin-bottom: 1rem;
}
.zone-name p,
.card-x-inner-menu-zone p,
.menu-content-item p {
  font-size: medium;
  font-weight: 500;
}
.cart-success-info-x span,
.price-zone-inner span,
.cart-total-calculator span,
.cart-item-price span,
.green-side-content-h-x span,
.hotpick-item-image-x span,
.hot-picks-title span,
.hero-content-menu span,
.inner-acct-gal-info span,
.inner-test-content span,
.menu-content-inner-x span {
  font-weight: 500;
}
.landing-left-content span {
  font-family: "Poiret One", sans-serif;
}
.landing-left-content-nav {
  display: flex;
  gap: 12px;
}
.opening-hours-wrapper {
  background-image: url(../images/manywraps.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(2px);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .opening-hours-wrapper {
    height: 100%;
    display: none;
  }
}
.opening-hours-wrapper-mobile {
  padding: 10px;
  background-color: var(--primary-color-green);
  display: none;
}
@media screen and (max-width: 1000px) {
  .opening-hours-wrapper-mobile {
    display: block;
  }
}
.opening-hours-mobile-inner {
  border-radius: 10px;
  padding: 10px;
  background-color: var(--primary-color-white);
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
}
.opening-hours-wrapper-x {
  background-image: url(../images/deliveryfood.jpg);
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  backdrop-filter: blur(2px);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .opening-hours-wrapper-x {
    display: none;
  }
}
.inner-oppening {
  height: 100%;
  width: 100%;
  background-color: #0000001a;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-oppening-content {
  width: 85%;
  height: 350px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .inner-oppening-content {
    width: 100%;
  }
}
.inner-menu-items-wrapper img,
.inner-oppening-content img {
  position: absolute;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.green-side {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    #283d38,
    #283d38,
    #283d38,
    #283d382c,
    #00000000
  );
  padding-left: 15.5rem;
  animation: fadeInUp 1.5s ease;
}
@media screen and (max-width: 1000px) {
  .green-side {
    display: block;
    border-radius: 0px;
    background: none;
    background-color: var(--primary-color-white);
    padding-left: 10px;
  }
}
.green-side-menu-cat {
  position: absolute;
  height: 100%;
  width: 100%;
  border-radius: 30px;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to right,
    #283d38,
    #283d38,
    #283d3800,
    #283d3800,
    #00000000
  );
  animation: fadeInUp 1.5s ease;
  box-shadow: 0 0 10px var(--shadow-color);
}
.green-side-content-menu-cat {
  bottom: 10px;
  left: 30px;
  position: absolute;
}
.green-side-delivery-icon {
  height: 300px;
  width: 350px;
  margin-left: 25px;
  position: absolute;
  right: 10rem;
}
.green-side-delivery-icon img {
  position: relative;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.cart-success-info-x li,
.verification-content p,
.loading p,
.price-zone-inner p,
.acct-zone-item p,
.custom-modal-content p,
.global-checkout-btn-inner a,
.hero-content-menu p,
.inner-acct-gal-info p,
.inner-test-content p,
.green-side-content-p-x p {
  color: var(--primary-color-white);
  font-size: medium;
}
.hero-content-menu p,
.inner-acct-gal-info p,
.inner-test-content p,
.green-side-content-p-x {
  margin-bottom: 1rem;
}
.green-side-content-p-x {
  width: 100%;
}
.error-cart-side-side-x-3 {
  width: 70%;
}
.error-cart-side-side-x-3-mobile {
  border: 1px solid red;
  margin: 10px;
  display: none;
  padding: 10px;
  border-radius: 10px;
}
@media screen and (max-width: 1000px) {
  .error-cart-side-side-x-3-mobile {
    display: block;
  }
}
.error-cart-side-side-x-3-mobile p {
  color: var(--primary-color-green);
  font-size: medium;
}
.zone-name h1 {
  color: var(--primary-color-white);
  font-weight: 500;
  font-size: larger;
}
.loading h1,
.verification-content h1,
.empty-cart-message h1,
.title-left-x-cats h1,
.hero-content-menu h1,
.inner-acct-gal-info h1,
.inner-test-content h1,
.green-side-content-h-x h1 {
  color: var(--primary-color-white);
  font-weight: 500;
  font-size: larger;
  margin-bottom: 1rem;
}

@media screen and (max-width: 1000px) {
  .green-side-content-h-x h1 {
    color: var(--primary-color-green);
    font-size: larger;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .green-side-content-p-x p {
    color: var(--primary-color-green);
    font-size: medium;
  }
  .loading h1,
  .verification-content h1 {
    color: var(--primary-color-white);
    font-size: larger;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .loading p,
  .verification-content p {
    font-size: medium;
  }
}
.menu-trailer-wrapper {
  height: 100vh;
  background-color: var(--primary-color-white);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .menu-trailer-wrapper {
    display: none;
  }
}
.menu-trailer-wrapper-mobile {
  background-color: var(--primary-color-green);
  padding: 10px;
  display: none;
}
@media screen and (max-width: 1000px) {
  .menu-trailer-wrapper-mobile {
    display: block;
  }
}
.menu-trailer-wrapper-mobile h1 {
  font-size: large;
  color: var(--primary-color-white);
  margin-bottom: 1rem;
}
.menu-trailer-wrapper-mobile p {
  font-size: medium;
  color: var(--primary-color-green);
}
.about-trailer-wrapper {
  height: 100vh;
  background-color: var(--primary-color-green);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .about-trailer-wrapper {
    display: none;
  }
}
.about-trailer-wrapper-mobile-content h1 {
  font-size: larger;
  color: var(--primary-color-white);
  margin-bottom: 1.5rem;
}
.about-trailer-wrapper-mobile {
  display: none;
  background-color: var(--primary-color-green);
  padding: 10px;
  display: none;
}
@media screen and (max-width: 1000px) {
  .about-trailer-wrapper-mobile {
    display: block;
  }
}
.small-image-about {
  height: 400px;
  position: relative;
}
.small-image-about-hue {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(
    to bottom,
    #00000000,
    #283d3800,
    #283d389f,
    #283d38
  );
}
.small-image-about img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.right-image {
  height: 100%;
  width: 30%;
  position: absolute;
  right: 0;
}
.left-image {
  height: 100%;
  width: 40%;
  position: absolute;
  left: 0;
}
.left-image img,
.right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.offer-trailer-content,
.about-trailer-content,
.menu-trailer-content {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-trailer-inner-content,
.about-trailer-inner-content,
.menu-trailer-inner-content {
  width: 85%;
}
.menu-content-inner-x {
  width: 50%;
}
.menu-content-slider {
  margin-top: 2rem;
  height: 100%;
}
.center-bolt {
  display: flex;
  align-items: start;
}
@media screen and (max-width: 1000px) {
  .center-bolt {
    padding: 0px;
  }
}
.service-cards {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}
.slider-reel {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.5s ease-in-out;
}
.slider-reel::-webkit-scrollbar {
  height: 5px;
}
.card-x-inner {
  position: relative;
  flex: 0 0 auto;
  width: 300px;
  height: 350px;
  margin-right: 15px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
}
.card-x-inner-menu-zone {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: 180px;
  margin-right: 15px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-color: var(--primary-color-white);
}
.card-x-inner-menu {
  position: relative;
  flex: 0 0 auto;
  width: 350px;
  height: 180px;
  margin-right: 15px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 20px;
  background-color: var(--primary-color-green);
}
.card-x-inner-menu-mobile {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  height: 100px;
  margin-right: 15px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
  background-color: var(--primary-color-green);
}
.card-x-outer {
  height: 100px;
  position: absolute;
  top: 500px;
  width: 100%;
}
.card-x-inner-x {
  position: relative;
  flex: 0 0 auto;
  width: 500px;
  height: 300px;
  margin-right: 15px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
}
.card-x-inner-mobile,
.card-x-inner-x-mobile {
  position: relative;
  flex: 0 0 auto;
  width: 300px;
  height: 280px;
  margin-right: 10px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.card-x-inner-x-x {
  position: relative;
  flex: 0 0 auto;
  width: 450px;
  height: 300px;
  margin-right: 15px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
}
.card-x-inner-hot-picks {
  position: relative;
  flex: 0 0 auto;
  width: 400px;
  height: 250px;
  margin-right: 15px;
  scroll-snap-align: start;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
}
@media screen and (max-width: 1000px) {
  .card-x-inner {
    width: 320px;
    height: 320px;
  }
}
.card-x-inner-x-x img,
.card-x-inner-hot-picks img,
.card-x-inner-x img,
.card-x-inner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.card-x-inner-mobile img,
.card-x-inner-x-mobile img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.card-x {
  margin-bottom: 0.5rem;
}
.bottom-left-x {
  position: absolute;
  bottom: 20px;
  left: 0px;
  width: 70%;
  background-color: var(--primary-color-white);
  padding: 8px;
}
.bottom-left-x-mobile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 10px;
  background-color: #283d3831;
  border-radius: 10px;
}
.bottom-left-x-cats {
  position: absolute;
  bottom: 20px;
  left: 0px;
  width: 70%;
  padding: 8px;
}
.bottom-left-x-cats-mobile {
  position: absolute;
  bottom: 1px;
  left: 0px;
  width: 70%;
  padding: 8px;
}
.title-left-x-cats-mobile h1 {
  color: var(--primary-color-white);
  font-size: larger;
}
.top-right-hot-picks {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 100px;
}
.top-right-hot-picks img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.title-line {
  height: 8px;
  width: 70px;
  background-color: var(--primary-color-green);
  border-radius: 20px;
}
.cart-line {
  margin-bottom: 2rem;
}
.cart-line,
.global-checkout-btn-line,
.title-line-white {
  height: 8px;
  width: 70px;
  background-color: var(--primary-color-white);
  border-radius: 20px;
}
.title-left-x h1 {
  color: var(--primary-color-green);
  font-size: larger;
  text-align: start;
  font-weight: 500;
}
.title-left-x p {
  color: var(--primary-color-green);
  font-size: medium;
  text-align: start;
  font-weight: 500;
}
.test-cards {
  position: relative;
  width: 100%;
  height: 100%;
}
.box {
  width: 270px;
  height: 300px;
  border-radius: 10px;
  position: absolute;
  box-sizing: border-box;
}
.row-scue {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: calc(100%);
  width: calc(100%);
}
.left {
  display: flex;
  align-items: center;
  justify-content: start;
  transform: translateX(-200px) translateY(120px);
  z-index: 3;
}
.left img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.left:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 30px;
  height: 100%;
  background-color: transparent;
  z-index: 2;
}
.center {
  z-index: 2;
  transform: translateX(0px) translateY(-80px);
  background-color: var(--primary-color-green);
  position: relative;
}
.center img {
  object-fit: cover;
  object-position: top;
  height: 500px;
  width: 100%;
  position: absolute;
  top: -200px;
  border-radius: 20px;
}
.right {
  background-color: #101010;
  transform: translateX(200px) translateY(60px);
  z-index: 1;
}
.right img {
  object-fit: cover;
  object-position: center;
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.right:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background-color: transparent;
  z-index: 1;
}
.test-content {
  height: 100%;
  display: flex;
  align-items: center;
}
.offer-trailer-wrapper {
  height: 100vh;
  background-color: var(--primary-color-white);
  position: relative;
}
.trailer-x {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  padding: 15px;
  background-color: var(--primary-color-green);
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
}
.trailer-x {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.gallery-wrapper {
  height: 100vh;
  background-color: var(--primary-color-green);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .gallery-wrapper {
    height: 100%;
    display: none;
  }
}
.gallery-wrapper-mobile {
  background-color: var(--primary-color-white);
  padding: 10px;
  overflow: hidden;
  display: none;
}
@media screen and (max-width: 1000px) {
  .gallery-wrapper-mobile {
    display: block;
  }
}
.gallery-wrapper-mobile-inner-content h1 {
  color: var(--primary-color-green);
  font-size: larger;
  margin-bottom: 1.5rem;
}
.gallery-wrapper-mobile-inner-content p {
  color: var(--primary-color-green);
  font-size: medium;
  margin-bottom: 1.5rem;
}
.mobile-gal-images {
  height: 250px;
  width: 100%;
  padding: 5px;
}
.mobile-gal-images img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.gallery-content-inner {
  width: 85%;
  position: absolute;
}
.acct-gal-image {
  height: 300px;
}
.acct-gal-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.acct-gal-info {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-acct-gal-info {
  width: 100%;
  padding: 2rem;
}
.connect-wrapper {
  height: 100vh;
  background-color: var(--primary-color-white);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .connect-wrapper {
    height: 100%;
    padding: 10px;
    overflow: hidden;
    background-color: var(--primary-color-green);
  }
}
.connect-wrapper-inner {
  width: 85%;
}
@media screen and (max-width: 1000px) {
  .connect-wrapper-inner {
    height: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .contact-hero-title h1 {
    font-size: larger;
    margin-bottom: 1.5rem;
    color: var(--primary-color-white);
  }
  .contact-hero-title p {
    font-size: medium;
    margin-bottom: 1.5rem;
    color: var(--primary-color-white);
  }
}
.contact-hero {
  height: 400px;
  background-color: var(--primary-color-green);
  border-radius: 30px;
}
@media screen and (max-width: 1000px) {
  .contact-hero {
    height: 250px;
    margin-bottom: 1.5rem;
  }
}
.contact-hero-inner {
  height: 100%;
  width: 100%;
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  box-shadow: 0 0 8px var(--shadow-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-hero-logo {
  height: 200px;
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .contact-hero-logo {
    height: 100px;
    width: 200px;
  }
}
.contact-hero-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.form-wrapper {
  width: 100%;
}
.form-verification-wrapper input,
.zone-link-bar input,
.form-group input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #283d3834;
  font-size: 18px;
  border-radius: 100px;
  color: var(--primary-color-green);
  margin-bottom: 1rem;
  background-color: var(--primary-color-white);
}
@media screen and (max-width: 1000px) {
  .form-verification-wrapper input,
  .zone-link-bar input,
  .form-group input {
    font-size: medium;
    border: 1px solid var(--primary-color-warm-white);
    background-color: #1010100e;
    color: var(--primary-color-green);
  }
}
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #283d3834;
  font-size: 18px;
  border-radius: 30px;
  color: var(--primary-color-green);
  margin-bottom: 1rem;
  background-color: var(--primary-color-white);
}
@media screen and (max-width: 1000px) {
  .form-group textarea {
    font-size: medium;
    border: 1px solid var(--primary-color-warm-white);
    background-color: #1010100e;
    color: var(--primary-color-green);
  }
}
@media screen and (max-width: 1000px) {
  .form-instructions p,
  li {
    font-size: medium;
  }
}
.form-verification-wrapper input:focus,
.zone-link-bar input:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: #008cba;
  outline: none;
}
.footer-wrapper {
  height: 250px;
  background-color: var(--primary-color-green);
  background-image: url(../abstract/abstract-detail-footer.svg);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .footer-wrapper {
    display: none;
  }
}
.footer-wrapper-inner {
  width: 85%;
}
.footer-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-bottom: 1px solid var(--primary-color-warm-white);
}
.footer-small-txr {
  margin-top: 1rem;
}
.legal-info-x-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .footer-nav-left,
  .legal-info-x-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    padding: 1%;
  }
}
.legal-info-x-footer p {
  color: rgba(255, 255, 255, 0.212);
  font-size: smaller;
  text-align: center;
}
.legal-info-x-footer a {
  color: rgba(255, 255, 255, 0.212);
}
.cart-decrease:hover,
.cart-increase:hover,
.global-checkout-btn:hover,
.social-btn:hover,
.cart:hover {
  transform: translateY(-3px);
  animation: bounce 0.3s ease-out;
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(-3px);
  }
}
.main-menu-wrapper {
  height: 450px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .main-menu-wrapper {
    display: none;
  }
}
.main-menu-wrapper-mobile {
  padding: 10px;
  background-color: var(--primary-color-green);
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
  display: none;
}
@media screen and (max-width: 1000px) {
  .main-menu-wrapper-mobile {
    display: block;
  }
}
.main-menu-wrapper-mobile-inner h1 {
  font-size: larger;
  color: var(--primary-color-white);
  margin-bottom: 1.5rem;
}
.main-menu-wrapper-mobile-inner p {
  font-size: medium;
  color: var(--primary-color-white);
}
.main-menu-wrapper-mobile-inner {
  display: flex;
  align-items: start;
  justify-content: end;
  flex-direction: column;
  padding: 10px;
  border: 1px solid var(--primary-color-warm-white);
  height: 250px;
  border-radius: 10px;
}
.inner-right-wallpaper {
  position: absolute;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url(../images/primarywall.jpg);
  background-size: cover;
  background-position: left;
}
.inner-positions-wallpaper {
  position: absolute;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url(../images/black-chef.jpg);
  background-size: cover;
  background-position: left;
}
.inner-dinein-wallpaper {
  position: absolute;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url(../images/dinein.jpg);
  background-size: cover;
  background-position: left;
}
.inner-gallery-wallpaper {
  position: absolute;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url(../images/pexelshotchef.jpg);
  background-size: cover;
  background-position: left;
}
.full-hero-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: absolute;
  height: 100%;
  background: linear-gradient(to right, #283d38, #283d38, #00000000);
}
.inner-full-hero-menu {
  width: 85%;
}
.hero-content-menu {
  width: 38%;
}
.hotpicks-wrapper {
  height: 58vh;
  background-color: var(--primary-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .hotpicks-wrapper {
    display: none;
  }
}
.hotpicks-wrapper-mobile {
  background-color: var(--primary-color-white);
  padding: 10px;
  display: none;
}
@media screen and (max-width: 1000px) {
  .hotpicks-wrapper-mobile {
    display: block;
  }
}
.inner-mobile-content-x-cont h1 {
  font-size: larger;
  color: var(--primary-color-green);
  margin-bottom: 1.5rem;
}
.hot-picks-slider-info-mobile p {
  margin-top: 0.5rem;
  font-size: medium;
  color: var(--primary-color-green);
}
.oven-wrapper {
  height: 100%;
  background-color: var(--primary-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .oven-wrapper {
    display: none;
  }
}
.inner-menu-categories-wrapper,
.inner-oven-wrapper,
.inner-hotpicks-wrapper {
  width: 85%;
}
.hot-picks-slider-info {
  margin-top: 1rem;
  width: 90%;
}
.menu-categories-wrapper {
  height: 40vh;
  background-color: var(--primary-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .menu-categories-wrapper {
    display: none;
  }
}
.acct-menu-items-wrapper {
  background-color: var(--primary-color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .acct-menu-items-wrapper {
    display: none;
  }
}
.acct-menu-items-wrapper-mobile {
  padding: 10px;
  background-color: var(--primary-color-white);
  display: none;
}
@media screen and (max-width: 1000px) {
  .acct-menu-items-wrapper-mobile {
    display: block;
  }
}
.menu-items-is-title {
  border-radius: 10px;
  padding: 10px;
  background-color: var(--primary-color-green);
  background-image: url(../abstract/abstract-detail.svg);
  background-size: cover;
  background-position: center;
  box-shadow: 0 5px 8px 0 var(--primary-color-green);
}
.menu-items-is-title h1 {
  font-size: larger;
  color: var(--primary-color-white);
}
.menu-items-is-title p {
  font-size: medium;
  color: var(--primary-color-white);
  margin-bottom: 1.5rem;
}
.inner-menu-items-wrapper-mobile {
  margin-bottom: 2rem;
}
.menu-items-cards-mobile {
  gap: 8px;
}
.mobile-card-button-wrapper {
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .cart_landing_zone_wrapper {
    display: none;
  }
}
.cart-zone-landing-mobile {
  background-color: var(--primary-color-white);
  display: none;
}
@media screen and (max-width: 1000px) {
  .cart-zone-landing-mobile {
    display: block;
  }
}
.inner-cart-zone-landing-mobile {
  margin-top: 1rem;
  padding: 10px;
}
.mobile-zone-items {
  height: 100%;
  background-color: var(--primary-color-green);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: end;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
  background-image: url(../abstract/abstract-detail.svg);
  background-size: cover;
  background-position: center;
}

.mobile-zone-items p {
  padding-top: 50px;
  font-size: medium;
  color: var(--primary-color-white);
}
.the-acctual-mobile-card {
  height: 100%;
  width: 100%;
  position: relative;
  border-bottom: 1px solid var(--primary-color-green);
}
.the-acctual-mobile-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.mobile-card-title p {
  color: var(--primary-color-green);
  font-size: medium;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.inner-menu-items-wrapper {
  width: 85%;
  height: 250px;
  position: relative;
}
.the-acct-menu {
  width: 85%;
  margin-top: 2rem;
  margin-bottom: 2rem;
  overflow-x: hidden;
  padding: 10px;
}
.menu-item-card {
  padding: 1rem;
  border-radius: 30px;
  background-position: center;
  background-size: cover;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-item-card:hover {
  transform: translateY(-5px); /* Slight lift effect */
  box-shadow: 0 12px 20px #283d3870; /* Darker shadow on hover */
}
.menu-content-item {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.menu-item-image {
  position: relative;
  width: 100%;
  height: 300px;
}
.menu-item-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.acct-hotpicks-inner-wrapper {
  height: 100vh;
  background-color: var(--primary-color-white);
}
@media screen and (max-width: 1000px) {
  .acct-hotpicks-inner-wrapper {
    display: none;
  }
}
.acct-hotpicks-mobile-wrapper {
  height: 100%;
  background-color: var(--primary-color-white);
  display: none;
}
@media screen and (max-width: 1000px) {
  .acct-hotpicks-mobile-wrapper {
    display: block;
  }
}
.the-actual-hotpick-mobile {
  padding: 10px;
}
.hotpick-mobile-card {
  height: 250px;
}
.hotpick-mobile-card img {
  height: 100%;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
.hotpick-mobile-content-card h1 {
  font-size: medium;
  color: var(--primary-color-green);
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.hotpick-mobile-content-card p {
  font-size: medium;
  color: var(--primary-color-green);
  margin-bottom: 1rem;
}
.landing-hotpicks {
  height: 100%;
  position: relative;
}
.landing-hotpicks-right {
  position: absolute;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url(../images/pexelshotchef.jpg);
  background-position: center;
  background-size: cover;
}
.landing-hotpicks-fullscreen {
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, #fdfaf5, #fdfaf5, #00000000);
  position: absolute;
}
.inner-landing-hotpicks-fullscreen-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
}
.hotpick-product {
  width: 85%;
  margin-top: 3rem;
}
.hotpick-item-image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.the-item-image {
  height: 350px;
  width: 350px;
  position: relative;
}
.the-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.otherhotpicks-wrapper {
  height: 100vh;
  background-color: var(--primary-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .otherhotpicks-wrapper {
    display: none;
  }
}
.otherhotpicks-wrapper-mobile {
  padding: 10px;
  background-color: var(--primary-color-white);
  display: none;
}
@media screen and (max-width: 1000px) {
  .otherhotpicks-wrapper-mobile {
    display: block;
  }
}
.otherhotpicks-wrapper-mobile-content h1 {
  color: var(--primary-color-green);
  font-size: larger;
  margin-bottom: 1rem;
}
.otherhotpicks-wrapper-mobile-content p {
  color: var(--primary-color-green);
  font-size: medium;
  margin-bottom: 1rem;
}
.the-other-mobile-hotpicks {
  border: 1px solid var(--primary-color-green);
  border-radius: 10px;
}
.other-hotpicks-inner-wrapper {
  width: 85%;
  height: 55vh;
  padding: 1rem;
  overflow: scroll;
  overflow-x: hidden;
  margin-top: 1rem;
}
.item-pick-wrapper-x-x {
  padding: 12px;
  border-radius: 20px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Add a dark shadow */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.item-pick-wrapper-x-x:hover {
  transform: translateY(-5px); /* Slight lift effect */
  box-shadow: 0 12px 20px #283d3870;
}
.item-name-cart {
  width: 600px;
}
.cart-item-price-mobile p,
.item-name-cart-mobile p {
  font-size: medium;
  color: var(--primary-color-green);
}
.item-pick {
  height: 240px;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
  position: relative;
}
.item-pick img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.the-cart-landing-wrapper,
.inner-cart-wrapper {
  position: relative;
  height: 100vh;
}
@media screen and (max-width: 1000px) {
  .inner-cart-wrapper {
    display: none;
  }
}
.inner-cart-mobile-wrapper {
  display: none;
  background-color: var(--primary-color-white);
}
@media screen and (max-width: 1000px) {
  .inner-cart-mobile-wrapper {
    display: block;
  }
}
.cart-right-image {
  width: 50%;
  height: 100%;
  right: 0;
  position: absolute;
}
.cart-right-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cart_landing_zone_inner,
.the-acct-cart-wrapper {
  background: linear-gradient(to right, #fdfaf5, #fdfaf5, #00000000);
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
}
.the-cart-items-wrapper {
  width: 85%;
  margin-top: 2rem;
}
.the-cart-items-wrapper-mobile {
  margin-top: 2rem;
}
.cart-item-list {
  height: 40vh;
  overflow: scroll;
  overflow-x: hidden;
  padding-right: 2rem;
  position: relative;
}
.inner-cart-item-list {
  border: none;
  border-bottom: 1px solid var(--primary-color-green);
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-cart-item-list-mobile {
  border: none;
  border-bottom: 1px solid var(--primary-color-green);
  margin-bottom: 1rem;
  width: 100%;
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}
.cart-item-price {
  display: flex;
  width: 200px;
}
.increament-buttons {
  display: flex;
}
.cart-decrease,
.cart-increase {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 35px;
  margin: 2px;
  background-color: var(--primary-color-green);
}
@media screen and (max-width: 1000px) {
  .cart-decrease,
  .cart-increase {
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 25px;
    margin-right: 2px;
    background-color: var(--primary-color-green);
  }
}
.cart-decrease:hover,
.cart-increase:hover {
  background-color: var(--primary-color-warm-white);
}
.cart-decrease a,
.cart-increase a {
  text-align: center;
  color: var(--primary-color-white);
  font-size: 25px;
  text-decoration: none;
}
.cart-decrease a:hover,
.cart-increase a:hover {
  color: var(--primary-color-green);
  font-size: 25px;
  text-decoration: none;
}
.global-checkout-btn {
  height: 100%;
  border-radius: 20px;
  background-color: var(--primary-color-green);
  position: relative;
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
}
.global-checkout-btn-inner {
  position: absolute;
  bottom: 20px;
  left: 20px;
}
.cart-total-calculator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2rem;
}
.global-checkout-btn-mobile-x,
.cart-total-calculator-mobile {
  height: 300px;
  padding: 10px;
}
.global-checkout-btn-inner-mobile-x {
  height: 200px;
  border-radius: 10px;
  padding: 10px;
  background-color: var(--primary-color-green);
  display: flex;
  justify-content: end;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  background-image: url(../abstract/abstract-detail.svg);
}
.global-checkout-btn-inner-mobile-x a {
  color: var(--primary-color-white);
  font-size: larger;
  text-decoration: none;
  margin-bottom: 1rem;
}
.cart-hero-amount-mobile {
  height: 100%;
  border-radius: 10px;
  padding: 10px;
  background-color: var(--primary-color-green);
  display: flex;
  justify-content: end;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  background-image: url(../abstract/abstract-detail.svg);
}
.cart-hero-amount-mobile h1 {
  color: var(--primary-color-white);
  font-size: larger;
}
.menu-item-price-tag h3 {
  font-size: 14px;
  font-weight: 500;
  border-radius: 50px;
  padding: 5px;
  text-align: center;
  width: 150px;
  background-color: var(--primary-color-warm-white);
}
.menu-item-price-tag-x-other-picks h3 {
  position: absolute;
  bottom: 2px;
  left: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color-green);
  border-radius: 50px;
  padding: 5px;
  text-align: center;
  width: 150px;
  background-color: var(--primary-color-warm-white);
}
/* Modal Background */
.custom-modal {
  display: none;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10000;
  overflow: hidden;
}
.custom-modal-content {
  position: absolute;
  top: 100px;
  right: 20px;
}
@media screen and (max-width: 1000px) {
  .custom-modal-content {
    top: 10px;
    right: 5px;
    padding: 10px;
  }
  #modal-phone-btn {
    display: none;
  }
}
.custom-modal-content-inner {
  background: var(--primary-color-green);
  padding: 20px;
  border-radius: 12px;
  width: 600px;
  box-shadow: 0 0 8px var(--shadow-color);
  animation: fadeInBounce 0.6s ease-out;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 1000px) {
  .custom-modal-content-inner {
    width: 80vw;
    padding: 10px;
  }
  .custom-modal-content-inner p {
    font-size: medium;
  }
}
.custom-modal-content p {
  text-align: start;
}
.custom-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  color: #555;
}
.custom-modal-button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
}
@keyframes fadeInBounce {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(-30px);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) translateY(10px);
  }
  70% {
    transform: scale(0.98) translateY(-5px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}
.empty-cart-message {
  height: 100%;
  background-color: var(--primary-color-green);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
}
.empty-cart-message-mobile {
  padding: 10px;
}
.empty-cart-message-mobile-inner {
  border-radius: 10px;
  height: 300px;
  margin-bottom: 1rem;
  display: flex;
  align-items: end;
  padding: 10px;
  background-color: var(--primary-color-green);
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
}
.empty-cart-message-mobile-inner h1 {
  color: var(--primary-color-white);
  font-size: larger;
}
.mobile-spacer-div {
  height: 100px;
  display: none;
}
@media screen and (max-width: 1000px) {
  .mobile-spacer-div {
    display: block;
  }
}
.empty-cart-image {
  height: 100%;
  background-image: url(../images/cartburger.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
.the_inner_zone {
  width: 85%;
  margin-top: 1rem;
}
.zone_location_wrapper {
  background-color: var(--primary-color-green);
  height: 50vh;
  padding: 0.5rem;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
}
.zone-zones-wrapper {
  height: 45vh;
  width: 100%;
  position: relative;
  overflow: scroll;
  overflow-x: hidden;
  padding: 1.5rem;
}
.price-and-btn {
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .price-and-btn {
    height: 600px;
    margin-top: 1rem;
  }
}
.price-zone-inner {
  height: 100%;
  background-color: var(--primary-color-green);
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .price-zone-inner {
    border-radius: 10px;
  }
}
.price-zone-inner p {
  position: absolute;
  bottom: 10px;
  left: 20px;
}
.price-zone {
  height: 49%;
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 1000px) {
  .price-zone {
    padding: 10px;
  }
}
.disabled-link {
  pointer-events: none;
  opacity: 0.6;
  cursor: not-allowed;
}
.inner-checkout-wrapper {
  background-color: var(--primary-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 12vh;
  padding-bottom: 12vh;
}
@media screen and (max-width: 1000px) {
  .inner-checkout-wrapper {
    display: none;
  }
}
.inner-checkout-wrapper-mobile {
  display: none;
  background-color: var(--primary-color-white);
}
@media screen and (max-width: 1000px) {
  .inner-checkout-wrapper-mobile {
    display: block;
  }
}
.the-checkout {
  width: 85%;
  margin-top: 2rem;
}
.the-checkout-mobile {
  padding: 10px;
  padding-bottom: 10rem;
  overflow: hidden;
}
.success-page {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .success-page {
    display: none;
  }
}
.success-page-mobile {
  background-color: var(--primary-color-white);
  display: none;
}
@media screen and (max-width: 1000px) {
  .success-page-mobile {
    display: block;
  }
}
.inner-success-page-mobile {
  margin-top: 1rem;
  padding: 10px;
  padding-bottom: 20vh;
}
.some-mobile-info {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--primary-color-green);
  padding: 10px;
  border-radius: 10px;
  background-image: url(../abstract/abstract-detail.svg);
  background-position: right;
  background-size: cover;
}
.some-mobile-info p {
  color: var(--primary-color-green);
  font-size: medium;
}
.some-mobile-info h1 {
  color: var(--primary-color-green);
  font-size: larger;
}
.success-page-inner-wrapper {
  position: absolute;
  background: linear-gradient(to right, #fdfaf5, #fdfaf5, #00000000);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.inner-success-page {
  width: 85%;
  margin-top: 2rem;
}
.cart-success-info-x h1 {
  color: var(--primary-color-white);
  font-size: 25px;
  font-weight: 500;
}
.cart-success-info-x p {
  color: var(--primary-color-white);
  font-size: 20px;
  font-weight: 500;
}
.cart-success-info-x {
  background-color: var(--primary-color-green);
  padding: 32px;
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  /* margin-right: 8px; */
}
.cart-success-main-wrapper {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  height: 400px;
  overflow: scroll;
  overflow-x: hidden;
  border: 1px solid var(--primary-color-green);
}
.success-btns-cart {
  display: flex;
  gap: 20px;
  margin-top: 1rem;
}
.success-btns-cart-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  width: 100%;
}
.careers-content {
  background-color: var(--primary-color-white);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .careers-content {
    display: none;
  }
}
.carreers-content-mobile {
  background-color: var(--primary-color-white);
  display: none;
}
@media screen and (max-width: 1000px) {
  .carreers-content-mobile {
    display: block;
  }
}
.inner-careers-content-view {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 1rem;
}
.careers-view-content {
  width: 92%;
  margin-top: 1rem;
}
.acct-careers-items {
  width: 92%;
  margin-top: 1rem;
  border-bottom: 1px solid var(--primary-color-green);
  padding-bottom: 1rem;
}
.acct-careers-items h1 {
  font-size: larger;
  color: var(--primary-color-green);
}
.acct-careers-items p {
  color: var(--primary-color-green);
  font-size: medium;
}
.view-nav-careers {
  padding: 8px;
  background-color: var(--primary-color-green);
  border-radius: 100px;
}
.view-nav-careers a {
  color: var(--primary-color-white);
  text-decoration: none;
  margin: 2px;
}
.inner-careers-content {
  width: 85%;
}
.acct-positions-nav {
  width: 50%;
  background-color: var(--primary-color-green);
  padding: 1%;
  margin-bottom: 2rem;
  border-radius: 300px;
}
.block-position-info {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  height: 100%;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}
.inner-acct-positions {
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: #3a3a3a;
}
.acct-positions-left {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.acct-positions-right {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
.acct-positions {
  height: 600px;
  overflow: scroll;
  overflow-x: hidden;
  padding-right: 20px;
}
.empty-alert {
  border: 1px solid var(--primary-color-green);
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 13%;
  background-image: url(../images/ColoredPatterns.svg);
}
@media screen and (max-width: 1000px) {
  .empty-alert h1 {
    font-size: larger;
  }
  .empty-alert {
    width: 95%;
    margin-top: 1rem;
  }
}
.payment-verification-wrapper {
  height: 100vh;
  background-color: var(--primary-color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../abstract/abstract-detail.svg);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 1000px) {
  .payment-verification-wrapper {
    height: 100vh;
  }
}
.inner-payment-verification {
  position: relative;
  height: 600px;
  width: 85%;
}
.loading,
.verification-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.loading p,
.verification-content p {
  text-align: center;
  margin-top: 1rem;
}
.form-verification-wrapper {
  width: 50%;
  margin-top: 1rem;
}
@media screen and (max-width: 1000px) {
  .form-verification-wrapper {
    width: 100%;
  }
}
.landing-carousel {
  width: 100%;
  height: 100%;
  padding: 0.2rem;
}
.messages {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: var(--primary-color-green);
  border-radius: 20px;
}
.messages li {
  list-style-type: none;
  color: var(--primary-color-white);
}
.dine-in-wrapper {
  background-color: var(--primary-color-white);
}
.dine-in-content {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 1rem; */
  padding-bottom: 4rem;
}
.inner-dine-in-content {
  width: 85%;
  margin-top: 2rem;
}
@media screen and (max-width: 1000px) {
  .inner-dine-in-content {
    width: 95%;
  }
}
.the-actual-items-dine {
  border-bottom: 1px solid var(--primary-color-green);
  margin-bottom: 1rem;
}
.the-actual-items-dine h1 {
  color: var(--primary-color-green);
  font-size: 25px;
  font-weight: 500px;
}
.the-actual-items-dine p {
  color: var(--primary-color-green);
  font-size: 20px;
  font-weight: 500px;
  font-style: italic;
}
@media screen and (max-width: 1000px) {
  .the-actual-items-dine h1 {
    font-size: larger;
  }
  .the-actual-items-dine p {
    font-size: medium;
  }
}
.inner-image-dine-in-title {
  margin-bottom: 1rem;
  height: 300px;
  border-radius: 10px;
  background-image: url(../images/pexelshotchef.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.inner-image-dine-in-title h1 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: var(--primary-color-white);
  font-size: 25px;
}
@media screen and (max-width: 1000px) {
  .inner-image-dine-in-title h1 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: var(--primary-color-green);
    font-size: larger;
  }
  .inner-image-dine-in-title {
    margin-bottom: 1rem;
    height: 200px;
    border-radius: 10px;
    background-image: url(../images/letssee.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
  }
}
.payment-verification-logo {
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.inner-payment-verification-logo {
  height: 100%;
  width: 350px;
}
.inner-payment-verification-logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.loading {
  position: absolute;
  left: 0;
  right: 0;
  top: 65%;
  width: 100%;
  color: var(--primary-color-white);
  margin: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.loading span {
  position: absolute;
  height: 10px;
  width: 84px;
  top: 60px;
  overflow: hidden;
}
.loading span > i {
  position: absolute;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  -webkit-animation: wait 4s infinite;
  -moz-animation: wait 4s infinite;
  -o-animation: wait 4s infinite;
  animation: wait 4s infinite;
}
.loading span > i:nth-of-type(1) {
  left: -28px;
  background: var(--primary-color-warm-white);
}
.loading span > i:nth-of-type(2) {
  left: -21px;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: var(--primary-color-warm-white);
}

@-webkit-keyframes wait {
  0% {
    left: -7px;
  }
  30% {
    left: 52px;
  }
  60% {
    left: 22px;
  }
  100% {
    left: 100px;
  }
}
@-moz-keyframes wait {
  0% {
    left: -7px;
  }
  30% {
    left: 52px;
  }
  60% {
    left: 22px;
  }
  100% {
    left: 100px;
  }
}
@-o-keyframes wait {
  0% {
    left: -7px;
  }
  30% {
    left: 52px;
  }
  60% {
    left: 22px;
  }
  100% {
    left: 100px;
  }
}
@keyframes wait {
  0% {
    left: -7px;
  }
  30% {
    left: 52px;
  }
  60% {
    left: 22px;
  }
  100% {
    left: 100px;
  }
}
.the-pdf-menu {
  padding: 10px;
}
.view-pdf,
.download-pdf {
  padding: 100px;
  background-color: var(--primary-color-green);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../abstract/abstract-detail-footer.svg);
  background-size: cover;
  background-position: center;
}
.view-pdf-content {
  margin-bottom: 1.5rem;
  width: 100%;
}
.inner-image-dine-in-title-x h1 {
  color: var(--primary-color-white);
  font-size: larger;
  text-align: center;
}
.big-error-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-color: var(--primary-color-green);
  color: var(--primary-color-white);
}
.inner-container-error {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.side-options {
  display: flex;
  gap: 8px;
}
.sides-group p {
  color: var(--primary-color-green);
}
.side-options-x button {
  background: none;
  border: none;
  border-bottom: 1px solid var(--primary-color-green);
  margin-right: 8px;
}
.add-to-cart-button {
  border: none;
  background-color: #10101000;
  color: var(--primary-color-warm-white);
}
