@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --baseFont: "Merriweather Sans", sans-serif;
  --primary: #DB8E09;
  --primary2: #CE870D;
  --primary3: #B37304;
  --primaryDarkbg: #202020;
  --primaryOverlay: #0E0D0C;
  --white: #FFFFFF;
  --dark: #202020;
  --bodyBg: #0E0D0C;
  --darkBg: #0E0D0C;
  --darkBg2: #202020;
  --error: #ff5151;
  --fbColor: #1877F2;
  --googleColor: #5F6368;
  --transition: 400ms ease-in-out 0s;
}
body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  font-family: var(--baseFont);
  background-color: var(--bodyBg);
  font-weight: 300;
}
a, a:hover {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-style: italic;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--white);
}
p {
  opacity: 0.8;
  color: var(--white);
}

/* Btn Style One */
.btn {
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  overflow: hidden;
  padding: 14px 35px;
  position: relative;
  text-align: center;
  transition: all .8s ease 0s;
  vertical-align: top;
  display: inline-block;
  text-transform: capitalize;
  border: 2px solid var(--primary);
}
.btn:hover {
  background-color: var(--dark);
}
.btn:before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: -200%;
  left: 50%;
  background: var(--dark);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  transition-duration: .8s;
  transition: var(--transition);
  z-index: 1;
}
.btn:hover:before{
  top: -50%;
}
.btn .btn-wrap {
  /* display: inline-block; */
  /* float: left; */
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn .btn-wrap .text-one {
  position: relative;
  transition: all .3s ease;
  -o-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btn:hover .btn-wrap  .text-one:first-child{
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
}
.btn .btn-wrap .text-two {
  color: var(--white);
  display: block;
  position: absolute;
  top: 100%;
  transition: all .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btn:hover .btn-wrap .text-two {
  color: var(--white);
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}


.btnPrimary {
  background: var(--primary);
  color: var(--white);
}
.btnPrimary:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btnPrimary:hover .btn-wrap .text-two{
  color: var(--white);
}
.btnPrimary .btn-wrap .text-one {
  color: var(--white);
}
.btnPrimary:before {
  background: var(--dark);
}

.btnOutline {
  background: var(--dark);
  color: var(--primary);
}
.btnOutline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btnOutline:before {
  background: var(--primary);
}
.btnOutline .btn-wrap .text-one {
  color: var(--primary);
}
.btnOutline .btn-wrap .text-two {
  color: var(--primary);
}
.btnOutline:hover .btn-wrap .text-two {
  color: var(--white);
}

/* Btn Style One */

/* custom */
.sectionSpace {
  padding: 120px 0;
}

.primaryBg {
  background-color: var(--primary);
}
.primaryBg2 {
  background-color: var(--primary2);
}
.primaryBg3 {
  background-color: var(--primary3);
}
.darkBg2 {
  background-color: var(--darkBg2);
}
.primaryDarkbg {
  background-color: var(--primaryDarkbg);
}
.textPrimary {
  color: var(--primary);
}

.xlTitle {
	font-size: 70px;
	line-height: 1.2;
}
.lgTitle {
	font-size: 50px;
	line-height: 1.2;
}
.mdTitle {
	font-size: 30px;
	line-height: 1.2;
}
.smTitle {
	font-size: 24px;
	line-height: 1.2;
}
.subTitle {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}

.centerTitle {
  margin: 0 auto;
  max-width: 860px;
  text-align: center;
}
.mdContainer {
  max-width: 860px;
  margin: 0 auto;
}

.zoom-in-zoom-out {
  width: 55px;
  height: 3px;
  background: var(--primary);
  animation: zoom-in-zoom-out 2s ease-out infinite;
  margin: 15px auto;
}
@keyframes zoom-in-zoom-out {
  0% {
      transform: scale(0.3);
  }
  100% {
      transform: scale(1.1);
  }
}
/* custom */

/***** hamburger css start ********/

.nav-toggler{
  position: relative;
  float: left;
  left: 0;
  top: 0;
  padding: 0;
  display: none;
}
.nav-toggler a {
  position: relative;
  width: 30px;
  height: 20px;
  line-height: 20px;
  background: none;
  color: #e1e1e1;
  font-size: var(--font-16);
  margin: 0px;
  border-radius: 0px;
  outline: none !important;
  display: block;
}
.nav-toggler{
  display:block;
}
.hamburger {
  display: flex;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  cursor: pointer;
  padding-top: 5px;
  padding-bottom: 5px;
}
.hamburger span {
  /* align-self: flex-end; */
  height: 2px;
  width: 83.33333333%;
  background: #ffffff;
  transition: all 400ms ease-in-out;
}
.hamburger .meat {
  width: 100%;
  transition: all 200ms ease-in-out;
}
.hamburger .bottom-bun {
  width: 58.33333333%;
  transition: all 100ms ease-in-out;
}
.hamburger:hover span {
  width: 100%;
}
html:not(.body-menu-opened) .hamburger .top-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 200ms;
}
html:not(.body-menu-opened) .hamburger .meat {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 400ms;
}
html:not(.body-menu-opened) .hamburger .bottom-bun {
  -webkit-animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
    animation: burger-hover 1s infinite ease-in-out alternate forwards 600ms;
}
@-webkit-keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}
@keyframes burger-hover {
  0% {
    width: 100%;
  }
  50% {
    width: 50%;
  }
  100% {
    width: 100%;
  }
}

/***** hamburger css end ********/


/* Header */
header.headerSection {
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: var(--darkBg);
  color: var(--white);
  padding: 15px 0;
}
.menuColMain {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: 370px;
  color: var(--white);
  background-color: var(--darkBg);
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition);
  transform: translateX(-200%);
  padding: 85px 20px 50px;
  overflow-y: auto;
  z-index: 99;
}
.actNav .menuColMain {
  transform: translateX(0);
}
.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition);
  z-index: 9;
  background-color: var(--darkBg2);
}
.actNav .menuBackDrop {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  opacity: 0.9;
}
.closeIcon {
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  height: 30px;
  line-height: 24px;
  position: absolute;
  right: 30px;
  text-align: center;
  top: 30px;
  width: 30px;
  padding: 8px;
  transition: var(--transition);
}
.closeIcon:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.closeIcon > svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo svg, .sidebarLogo svg {
  max-width: 100%;
  height: auto;
}
.sidebarLogo {
  margin-bottom: 40px;
  text-align: center;
}
.sidebarLogo a {
  display: inline-block;
  max-width: 160px;
}
.headerLeftOption {
  width: 302px;
}
.logo {
  --logo-height: 50px;
  height: var(--logo-height);
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
.navItems {
  border-top: 1px solid rgba(255,255,255,0.2);
  position: relative;
}
.navItems li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: block;
  position: relative;
}
.navItems a {
  color: var(--white);
  display: block;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 12px;
  padding-top: 12px;
  position: relative;
  transition: all .3s ease;
  -moz-transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}
.navItems a.active, .navItems a:hover {
  color: var(--primary);
  padding-left: 20px;
}
.navItems a:before {
  border: 1px solid var(--primary);
  content: "";
  height: 8px;
  left: 0;
  margin-top: -4px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .3s ease;
  visibility: hidden;
  width: 8px;
}
.navItems a.active::before, .navItems a:hover::before {
  opacity: 1;
  visibility: visible;
}
.sidebarContent {
  padding: 20px;
  margin-top: 50px;
}
.vsContent {
  padding: 15px 0;
}
.addressLink li {
  opacity: 0.8;
  padding-top: 10px;
}
.userLogin {
  position: relative;
}
.userLogin .dropMenu {
	position: absolute;
	top: 100%;
	background: var(--darkBg);
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.9);
	width: 210px;
	text-align: left;
	right: 0;
	display: none;
	z-index: 9;
	padding: 6px 0;
	border-radius: 8px;
}
.userLogin > a {
	padding: 8px 16px 8px 0;
	display: flex;
	align-items: center;
	column-gap: 6px;
	position: relative;
}
.userLogin > a::before {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
	background-size: contain;
	background-repeat: no-repeat;
}
.userLogin .userName {
  font-size: 16px;
  font-weight: 500;
}
.userLogin .dropMenu a {
	padding: 8px 14px;
	display: block;
	color: var(--white);
	font-size: 14px;
  line-height: 1.2;
	font-weight: normal;
  transition: padding-left var(--transition), background-color var(--transition);
}
.userLogin .dropMenu a:hover {
	background-color: rgba(255, 255, 255, 0.03);
	padding-left: 20px;
}

.headerRightOption {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.hrLinksCol {
  width: 54px;
  height: 54px;
  position: relative;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: var(--transition);
}
.hrLinksCol::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: var(--primary);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition);
}
.hrLinksCol:hover::before {
  transform: scale(1);
}
.hrLinksCol svg {
  display: block;
  position: relative;
  color: var(--primary);
  transition: var(--transition);
}
.hrLinksCol:hover svg {
  color: var(--white);
}
.cartCount {
  color: var(--dark);
  background-color: var(--primary);
  font-size: 10px;
  padding: 2px;
  position: absolute;
  top: 8px;
  right: 8px;
  line-height: 1;
  border-radius: 10px;
  min-width: 14px;
  text-align: center;
  font-weight: 600;
  border: 1px solid var(--dark);
}
/* Header */

/* Banner */
.bannerSection {
  position: relative;
  background-image: url("../images/banner-img.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0px 220px;
  background-position: center center;
}
.bannerSection::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 50%,rgba(0,0,0,1) 100%);
}
.bannerInner {
  position: relative;
}
.bannerContent {
  margin-top: 100px;
  margin-left: -140px;
}
.bannerCol {
  padding-left: 15px;
}
.bannerCol > p {
  font-size: 18px;
  font-weight: 400;
  opacity: 1;
  padding-top: 15px;
}
.bannerIcon {
  width: 100px;
  height: 100px;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border-radius: 50%;
  margin-top: 10px;
  color: var(--primary);
}
.bannerBtns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
}
.reserveBtn {
  --size: 120px;
  bottom: 130px;
  width: var(--size);
  height: var(--size);
  position: absolute;
  right: 50px;
  z-index: 10;
}
.reserveBtn a {
  background: var(--primary);
  color: var(--white);
  width: var(--size);
  height: var(--size);
  padding: 10px;
  position: relative;
  text-align: center;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.reserveBtn:before {
  border: 1px solid var(--primary);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 100%;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-name: rotateme;
  animation-timing-function: linear;
}
@keyframes rotateme {
  0% {
    transform: rotate(0deg);
    opacity: 1;
  }

50% {
    transform: rotate(180deg);
  }
100% {
    transform: rotate(360deg);
    opacity: 1;
  }
}

/* Banner */

/* Card */
.cardSection {
  margin-top: -70px;
}
.cStyle1 {
  height: 100%;
  padding: 40px 30px;
  position: relative;
  transition: 0.6s ease-in-out;
}
.cStyle1Inner {
  transform: translateY(0px);
  transition: 0.6s ease-in-out;
}
.cStyle1:hover .cStyle1Inner{
  transform: translateY(-8px);
  transition: 0.6s ease-in-out;
}
.cStyle1:hover {
  background-color: var(--dark);
}
.cStyle1Img {
  margin-bottom: 20px;
}
.cStyle1 h4 {
  padding-bottom: 15px;
}
/* Card */

/* About */
.aboutContent {
  padding-right: 50px;
}
.aboutImgStyle {
  border-radius: 200px;
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.aboutImgRight {
  margin-top: 50px;
}
/* About */

/* Chef Suggest */
.suggestionCard {
  --imgSize: 380px;
}
.suggestColLeft {
  padding: 40px;
  text-align: center;
  min-height: var(--imgSize);
  display: flex;
  align-items: center;
  justify-content: center;
}
.suggestionContentCol {
  max-width: 415px;
  margin: 0 auto;
}
.suggestionContentCol > p {
  margin: 0;
  padding-top: 15px;
}
.suggestionImgCol {
  min-height: var(--imgSize);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.suggestionImgCol:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.suggestionImgCol:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.suggestionImgCol img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  object-position: center;
}
.chefImg {
  position: relative;
  height: 100%;
}
.chefImg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  object-position: center top;
}
.chefContent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 40px;
  background-color: rgba(32, 32, 32,0.8);
}
/* Chef Suggest */

/* Menu */
.filterTrigger {
  color: var(--white);
  font-size: 20px;
  line-height: normal;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 700;
  transition: color var(--transition);
}
.filterTrigger.active, .filterTrigger:hover {
  color: var(--primary);
}
.menuInnerCard {
  position: relative;
}
.menuInnerCard::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 25px;
  bottom: 10px;
  background-color: rgba(255,255,255,0.3);
  width: 1px;
}
.selectionCard {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  width: 580px;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.selectionCard:hover {
  color: var(--primary);
}
.selectionDish {
  --imgSize: 100px;
  width: var(--imgSize);
  height: var(--imgSize);
  max-width: initial;
  object-fit: cover;
  border-radius: 10px;
}
.selectionContentCol {
	width: 100%;
}
.blankLink {
	position: absolute;
  inset: 0;
  z-index: 2;
}
.dishName, .dishPrice {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  font-style: italic;
}
.dishPrice {
	white-space: nowrap;
  color: var(--primary);
}
.dishName {
  padding-right: 16px;
}
.selectionContentCol p:last-child {
	margin-bottom: 0;
}
.selectionContentCol p {
  margin-top: 15px;
}
.selectionFilterTrigger {
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 70px;
}
.selectionFilterTrigger > ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.selectionFilterTrigger > ul > li {
  position: relative;
  margin: 0 30px;
}
.selectionFilterTrigger > ul > li::before {
  content: "";
  width: 8px;
  height: 8px;
  left: 100%;
  margin-left: 26px;
  margin-top: -5px;
  position: absolute;
  top: 50%;
  border: 1px solid var(--primary);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-name: rotateme;
  animation-timing-function: linear;
}
.selectionFilterTrigger > ul > li:last-child::before {
  display: none;
}
/* Menu */

/* Reservation */
.reservationSection {
  background-image: url('../images/reservation-banner.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.reservationSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--primaryOverlay);
  opacity: 0.8;
}
.reservationSection .formStyle {
  margin-top: 50px;
}
.rightIconFld {
	position: relative;
}
.col-12{
  margin-top: 20px !important;
}
.rightIconFld > .inputFieldIcon {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0, -50%);
	pointer-events: none;
	z-index: 2;
}
.fieldIcon {
	height: auto;
	width: 22px;
  display: block;
  opacity: 0.5;
}
.formStyle .rightIconFld .form-control {
	padding-right: 50px;
}
.formStyle .rightIconFld .form-control.reservationField {
	padding-right: 15px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
input[type="date"]::-moz-calendar-picker-indicator {
  display: none;
  pointer-events: none;
}
.formStyle .form-control, .formStyle .form-select {
	padding: 15px 25px;
	border-radius: 40px;
}
.formStyle select.form-select {
  padding-right: 50px;
  background-position: right 1rem center;
}
.formStyle textarea.form-control {
    height: 120px;
    resize: none;
    border-radius: 16px;
}
.fromTheMenuImg {
  margin-right: 50px;
  min-height: 580px;
  height: 100%;
  position: relative;
}
.fromTheMenuImg img {
  height: 100%;
  width: 100%;
  border-radius: 50px;
  object-fit: cover;
  position: absolute;
  object-position: center;
}
/* Reservation */

/* Review */
.socialBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 30px;
	border-radius: 10px;
	background-color: var(--dark);
	color: var(--white);
	min-width: 200px;
	font-size: 20px;
  line-height: 1.2;
  transition: opacity 300ms ease-in-out 0s;
}
.socialBtn:hover {
  opacity: 0.8;
	color: var(--white);
}
.socialBtn.fbBtn {
	background-color: #3F5895;
}
.socialBtn.instaBtn {
	background: linear-gradient(45deg, #FD5 0%, #FF543E 50%, #C837AB 100%);
}
.socialBtn.tiktokBtn {
  background-color: #3A3A3A;
}
.gReviewRating {
  color: var(--dark);
}
.gReviewRating p {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ratingText {
	font-size: 13px;
	line-height: normal;
}

.wAuto {
  width: auto !important;
}
.easeLinear {
  transition-timing-function: linear !important;
}
.reviewSwiper .swiper-slide {
	height: auto;
  opacity: 0.4;
  transition: opacity var(--transition);
}
.reviewSwiper .swiper-slide.swiper-slide-active, .reviewSwiper .swiper-slide.swiper-slide-next {
  opacity: 1;
}
.reviewSwiper .swiper-slide .reviewCard {
  --cardsize: 578px;
  min-width: var(--cardsize);
  max-width: var(--cardsize);
}
.reviewCard {
  --imgSize: 64px;
  --cardXPadding: 30px;
  --cardYPadding: 30px;
  padding-top: calc(var(--imgSize) / 2);
  position: relative;
  height: 100%;
}
.reviewContent {
  background-color: transparent;
  border-radius: 15px;
  padding: var(--cardYPadding) var(--cardXPadding);
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.4);
}
.reviewImgCol > img {
  width: var(--imgSize);
  height: var(--imgSize);
  object-fit: cover;
  border-radius: 50%;
}
.reviewContent hr {
  margin: 10px 0;
}
.reviewContent p {
  margin-bottom: 0;
}
.reviewerName {
  font-size: 20px;
  line-height: 1.5;
}
/* Review */

/* Blog */
.cardImgMainCol {
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 30px;
}
.cardImg {
  padding-top: calc(418 / 372 * 100%);
  position: relative;
  margin-bottom: 0;
}
.cardImg img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
.cardStyle1 .dateCol > span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-weight: 700;
  font-style: italic;
  padding-left: 100px;
}
.dateCol.lineSubTitle {
	--lineWd: 80px;
}
.lineSubTitle {
  --lineSpace: 15px;
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--lineWd);
  display: inline-block;
  font-style: italic;
}
.lineSubTitle > span {
  position: relative;
}
.lineSubTitle > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-top: 1px solid var(--primary);
  width: var(--lineWd);
}
/* Blog */

/* Footer */
.footerSection {
  padding: 100px 0;
}
.footerLeftCol {
  padding-right: 50px;
}
.footerLogo {
  padding-bottom: 35px;
}
.footerLeftCol > p {
  padding-bottom: 20px;
}
.footerSection .socialMenu ul {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footerSection .socialMenu ul > li > a {
  transition: color var(--transition);
}
.footerSection .socialMenu ul > li > a:hover {
  color: var(--primary)
}
.footerTitle .zoom-in-zoom-out {
  animation: zoom-in-zoom-out2 2s ease-out infinite;
  margin: 0;
}
@keyframes zoom-in-zoom-out2 {
  0% {
    width: 10%;
  }
  100% {
    width: 20%;
  }
}
.footerCol .navItems, .footerCol .navItems li {
  border: 0;
}
.footerTitle {
  padding-bottom: 30px;
}
.footerCol .navItems li a.navItem {
  padding-bottom: 4px;
  padding-top: 4px;
}
.addressCol + .addressCol {
  margin-top: 20px;
}
.addressCol > h4 {
  font-size: 18px;
  font-weight: 400;
}
.addressLink > a {
  display: flex;
  gap: 12px;
  align-items: center;
}
.addressIcon {
  width: 26px;
  height: 26px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex: 0 0 auto;
}
.addressLink > a > span:last-child {
  font-size: 14px;
  opacity: 0.8;
}
.footerBottom {
  padding: 15px 0;
  opacity: 0.8;
  background-color: var(--darkBg2);
  font-size: 14px;
}
.powerdText {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.powerdText > span > svg {
  max-width: 120px;
}
.footerLinks {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footerLinks li + li {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  margin-left: 10px;
}
/* Footer */

/* Modal */
/* login modal */
.modalNewstyle {
  --xSpace: 30px;
  --ySpace: 30px;
}
.modalNewstyle .modal-body,
.modalNewstyle .modal-header {
  padding: var(--ySpace) var(--xSpace);
  position: relative;
}
.modalNewstyle .modal-header {
	flex-direction: column;
	row-gap: 10px;
}
.modalNewstyle .modal-header + .modal-body {
  padding-top: 10px;
  padding-bottom: calc(var(--ySpace) + 10px);
}
.modalNewstyle .modal-content {
  background-color: var(--darkBg) !important;
}
html:not([data-bs-theme="dark"]) .modalNewstyle .modal-content {
	background-color: var(--white);
}
.modalNewstyle .btn-close {
	--closeIconSize: 10px;
  --closeIconPosition: 15px;
	padding: 4px;
	width: var(--closeIconSize);
	height: var(--closeIconSize);
	position: absolute;
	right: var(--closeIconPosition);
	top: var(--closeIconPosition);
	margin: 0;
}
.modalForm {
	margin: 0 auto;
	max-width: 520px;
}
.sideLinesDivider {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.sideLinesDivider > .dividerText {
  display: inline-block;
  position: relative;
  padding: 0 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c1c5d0;
  font-weight: 600;
}
.sideLinesDivider > .dividerText::before, .sideLinesDivider > .dividerText::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 100vw;
  margin-top: -1px;
  border-top: 2px solid currentColor;
  opacity: 0.2;
}
.sideLinesDivider > .dividerText::before {
  right: 100%;
}
.sideLinesDivider > .dividerText::after {
  left: 100%;
}
.modalNewstyle .form-label {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 4px;
}
.errorMsg {
	font-size: 14px;
	color: var(--error);
	letter-spacing: 0.5px;
	font-weight: 400;
	margin: 4px 0;
	line-height: 1.2;
  display: none;
}
#resend_otp {
  transition: color var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}
#timer {
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
}
.recaptchaCol {
	border-radius: 8px;
	overflow: hidden;
  display: inline-flex;
  max-width: 100%;
}
/* Opening Hour */
.titleLbl {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
}
.openingHourModalContent {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  font-size: 14px;
}
.simpleList > li + li {
	margin-top: 8px;
}
/* Modal */

/******* Media Quary *******/
@media (min-width:576px) {
  .reviewSwiper .swiper-slide {
    width: auto !important;
  }
}
@media (min-width:768px) {
  .modal-md {
    --bs-modal-width: 600px;
  }
}
@media (min-width:768px) and (max-width:991px) {
  .modal-lg {
    --bs-modal-width: 650px;
  }
}
@media (max-width: 1600px) {
  .bannerIcon {
    width: 80px;
    height: 80px;
  }
  .bannerContent {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .xlTitle {
    font-size: 60px;
  }
  .lgTitle {
    font-size: 40px;
  }
  .mdTitle {
    font-size: 24px;
  }
  .smTitle {
    font-size: 20px;
  }
  .subTitle {
    font-size: 16px;
  }
  .logo {
    max-width: 160px;
  }
  .btn {
    padding: 12px 30px;
  }
  .selectionCard {
    width: 500px;
  }
}
@media (max-width: 1199px) {
  .hrLinksCol {
    width: 45px;
    height: 45px;
  }
  .cartCount {
    font-size: 8px;
    top: 6px;
    right: 6px;
    min-width: 12px;
  }
  .btn {
    padding: 10px 25px;
  }
  .headerLeftOption {
    width: 254px;
  }
  .bannerSection {
    padding: 80px 0px 180px;
  }
  .bannerContent {
    margin-top: 60px;
  }
  .bannerTopImg > img {
    max-width: 140px;
  }
  .sectionSpace {
    padding: 100px 0;
  }
  .aboutContent {
    padding-right: 20px;
  }
  .aboutImgStyle {
    height: 400px;
  }
  .suggestionCard {
    --imgSize: 280px;
  }
  .suggestColLeft {
    padding: 30px;
  }
  .chefContent {
    padding: 30px;
  }
  .selectionCard {
    width: 420px;
  }
  .filterTrigger {
    font-size: 18px;
  }
  .fromTheMenuImg {
    margin-right: 20px;
    min-height: 500px;
  }
  .reviewSwiper .swiper-slide .reviewCard {
    --cardsize: 480px;
  }
  .reviewCard {
    --imgSize: 60px;
    --cardXPadding: 20px;
    --cardYPadding: 20px;
  }
  .footerSection {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
  .headerLeftOption {
    width: 45px;
  }
  .sidebarContent {
    padding: 15px;
    margin-top: 20px;
  }
  .menuColMain {
    width: 320px;
    padding: 60px 10px 30px;
  }
  .closeIcon {
    width: 25px;
    height: 25px;
    right: 15px;
    top: 15px;
    padding: 5px;
  }
  .bannerSection {
    padding: 80px 0px 140px;
  }
  .bannerTopImg > img {
    max-width: 120px;
  }
  .bannerIcon {
    width: 60px;
    height: 60px;
    padding: 18px;
    margin-top: 3px;
  }
  .bannerCol {
    padding-left: 0;
  }
  .bannerCol > p {
    font-size: 16px;
  }
  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .bannerBtns {
    gap: 10px;
    margin-top: 30px;
  }
  .reserveBtn {
    --size: 110px;
  }
  .reserveBtn a {
    font-size: 14px;
  }
  .reserveBtn > a > span > img {
    max-width: 50px;
  }
  .cStyle1 {
    padding: 20px 15px;
  }
  .cStyle1Img {
    margin-bottom: 15px;
  }
  .cStyle1Img > img {
    max-width: 100%;
  }
  .cStyle1 h4 {
    padding-bottom: 10px;
  }
  .sectionSpace {
    padding: 80px 0;
  }
  .aboutImgStyle {
    height: 500px;
  }
  .xlTitle {
    font-size: 50px;
  }
  .lgTitle {
    font-size: 34px;
  }
  .mdTitle {
    font-size: 20px;
  }
  .smTitle {
    font-size: 18px;
  }
  .subTitle {
    font-size: 14px;
  }
  .suggestionCard {
    --imgSize: 200px;
  }
  .selectionFilterTrigger {
    padding: 0 0 2px;
    margin-bottom: 40px;
  }
  .selectionFilterTrigger > ul {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 20px 0;
  }
  .selectionFilterTrigger > ul > li:first-child {
    margin-left: 2px;
  }
  .selectionFilterTrigger > ul > li:last-child {
    margin-right: 2px;
  }
  .filterTrigger {
    font-size: 16px;
  }
  .selectionDish {
    --imgSize: 60px;
  }
  .menuInnerCard::before {
    display: none;
  }
  .selectionCard {
    width: 100%;
    gap: 15px;
  }
  .dishName, .dishPrice {
    font-size: 16px;
  }
  .selectionContentCol p {
    margin-top: 10px;
  }
  .aboutContent {
    padding-right: 0;
    padding-top: 30px;
  }
  .fromTheMenuImg {
    margin-right: 0;
  }
  .socialBtn {
    gap: 8px;
    padding: 12px 20px;
    min-width: 140px;
    font-size: 16px;
  }
  .socialBtn .btnIcon > img {
    max-width: 18px;
  }
  .reviewSwiper .swiper-slide .reviewCard {
    --cardsize: 400px;
  }
  .rRating > img {
    max-width: 100px;
  }
  .reviewerName {
    font-size: 16px;
    line-height: 1.2;
  }
  .reviewCard {
    --imgSize: 50px;
    --cardXPadding: 15px;
    --cardYPadding: 15px;
  }
  .reviewContent hr {
    margin: 6px 0;
  }
  .cardImgMainCol {
    padding: 10px;
    margin-bottom: 20px;
  }
  .cardStyle1 {
    margin-bottom: 20px;
    text-align: center;
  }
  .footerSection {
    padding: 60px 0 20px;
  }
  .footerLeftCol {
    padding-right: 0;
  }
  .footerLeftCol > p {
    padding-bottom: 10px;
  }
  .footerCol {
    margin-bottom: 40px;
  }
  .footerLinks {
    justify-content: end;
  }
  .powerdText {
    justify-content: center;
    margin-top: 15px;
  }
}
@media (max-width:767px) {
   .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
  .formStyle .form-control, .formStyle .form-select {
    font-size: 14px;
  }
  .xlTitle {
    font-size: 40px;
  }
  .lgTitle {
    font-size: 30px;
  }
  .bannerSection {
    padding: 60px 0px 100px;
  }
  .bannerContent {
    margin-top: 40px;
  }
  .bannerInner {
    text-align: center;
  }
  .bannerTopImg > img {
    max-width: 80px;
  }
  .bannerBtns {
    justify-content: center;
  }
  .cardSection {
    margin-top: -40px;
  }
  .cStyle1 {
    text-align: center;
  }
  .aboutImgStyle {
    height: 400px;
  }
  .suggestionCard {
    display: flex;
    flex-wrap: wrap;
  }
  .chefImg img {
    position: static;
    aspect-ratio: 1 / 1.2;
  }
  .suggestColLeft {
    flex: 0 0 auto;
    width: 50%;
  }
  .suggestionImgCol {
    min-height: 100%;
    flex: 0 0 auto;
    width: 50%;
    height: auto;
  }
  .suggestionImgCol img {
    position: static;
  }
  .footerLeftCol {
    text-align: center;
    margin-bottom: 30px;
  }
  .footerSection .socialMenu ul {
    justify-content: center;
  }
  .footerCol {
    text-align: center;
  }
  .footerTitle .zoom-in-zoom-out {
    margin: 0 auto;
  }
  .footerCol .navItems li a.navItem {
    display: inline-block;
  }
  .addressLink > a {
    justify-content: center;
  }
  .footerBottom {
    text-align: center;
  }
  .footerLinks {
    justify-content: center;
  }
  .powerdText {
    margin-top: 10px;
  }
}
@media (max-width:575px) {
  .btn {
    padding: 10px 15px;
  }
  .sectionSpace {
    padding: 60px 0;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
  .aboutImgStyle {
    height: 330px;
  }
  .suggestionCard {
    display: block;
  }
  .suggestColLeft, .suggestionImgCol {
    width: 100%;
  }
  .selectionFilterTrigger > ul {
    padding: 15px 0;
  }
  .selectionFilterTrigger > ul > li {
    margin: 0 25px;
  }
  .selectionFilterTrigger > ul > li::before {
    margin-left: 21px;
  }
  .filterTrigger {
    font-size: 14px;
  }
  .reviewSwiper .swiper-slide .reviewCard {
    --cardsize: 340px;
  }
  .reviewSwiper .swiper-slide {
    opacity: 1;
  }
  .fromTheMenuImg {
    min-height: 420px;
  }
}
@media (max-width:360px) {
  .menuColMain {
    width: 100%;
  }
  .aboutImgStyle {
    height: 280px;
  }
  .modalNewstyle .rightIconFld > .inputFieldIcon {
    right: 14px;
  }
  .formStyle .rightIconFld .form-control {
    padding-right: 40px;
  }
  .formStyle .form-control {
    font-size: 14px;
  }
  .inputFieldIcon {
    height: auto;
    width: 20px;
  }
  .modalNewstyle#reservationModal {
    --xSpace: 10px;
  }
}
/* custom css for theme 15 */
#loginModal .modal-header button, #registerModal .modal-header button{
  margin-right: -550px;
  margin-top: -70px;
}
#bookTable .modal-header button{
  margin-right: -750px;
  margin-top: -100px;
}
#openinghours .modal-header button{
  margin-right: -750px;
  margin-top: -70px;
}
#loginModal label,
#registerModal label {
  color: var(--white) !important;
}
#forgotPasswordModal .formStyle .rightIconFld > .fldIcon {
    position: absolute;
    right: 20px;
    top: 50%;
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    pointer-events: none;
}
#forgotPasswordModal .formStyle .labelStyle {
  text-align: center !important;
}
#otpVerifyModal .form-group {
  margin-bottom: 10px;
}
#otpVerifyModal .modal-content {
  padding-bottom: 20px;
}
h4#registerModalLabel, h4#loginModalLabel {
    color: var(--white);
}
label .form-check-label {
  color: var(--white);
}
.modalNewstyle .text-center .fw-medium {
    color: var(--white);
}
.parsley-errors-list {
    margin: 10px 0 3px;
}
#openinghours .titleLbl.mb-2 {
    color: var(--white);
}
.socialMenu {
    justify-content: flex-start;
    display: flex;
}
.headerSection .logo {
  margin-left: 160px;
}
@media (max-width:565px) {
  #loginModal .modal-header button, #registerModal .modal-header button {
      margin-right: -300px !important;
      margin-top: -50px !important;
  }
  #bookTable .modal-header button{
    margin-right: -350px !important;
    margin-top: -80px !important;
  }
  #openinghours .modal-header button{
    margin-right: -350px !important;
    margin-top: -50px !important;
  }
  .socialMenu {
    justify-content: center;
    display: flex;
  }
  .headerSection .logo {
    margin-left: 60px;
  }
}

/* Mobile Cart footer section CSS */
.mobile_footer_tape {
  position: relative;
  z-index: 999;
  display: none;
  color: #1B2126;
}
.mobile_footer_tape .pageContent {
  padding: 0;
  position: relative;
}
@media (max-width: 1199px) {
  .mobile_footer_tape {
    display: block;
  }
  .mobile_footer_tape .sidebarright {
    position: fixed;
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    background-color: transparent;
    z-index: 11;
    margin: 0;
    overflow-y: inherit;
    transition: all 300ms ease-in-out 0s;
    transform: translateY(200%);
  }
  .mobile_footer_tape .nwCartMain {
    background-color: #FFFFFF;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.14);
    border-radius: 30px 30px 0 0;
    padding: 15px;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle {
    position: relative;
    padding: 0 0 15px;
    border-bottom: 1px solid #E3E3E3;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -6px;
  }
  .mobile_footer_tape .nwCartMain .nwCartTitle .cartBackIcon img {
    display: block;
  }
  .mobile_footer_tape .nwCartInner {
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px 0 70px;
  }
  .mobile_footer_tape .cartCardImg {
    width: 50px;
  }
  .mobile_footer_tape .cartCardImg img {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    object-fit: cover;
  }
}
.mobile_footer_tape .nwaddDetailInner {
  margin-top: 25px;
}
.mobile_footer_tape .nwaddDetail {
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
.mobile_footer_tape .nwaddDetail h2 {
  font-size: 14px;
  margin: 0;
}
.mobile_footer_tape .nwaddDetail p {
  margin: 0 0 2px;
  font-size: 14px;
  line-height: 1.2;
  color: #130F26;
}
.mobile_footer_tape .textandwordWrap span {
  font-size: 10px;
  display: inline-block;
}
.mobile_footer_tape .sizeCol > p {
  font-size: 12px;
  margin: 0;
}
.mobile_footer_tape .edRMainCol {
  padding-top: 10px;
}
.mobile_footer_tape .rEdCol ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 500;
}
.mobile_footer_tape .rEdCol ul li + li {
  margin-left: 15px;
}
.mobile_footer_tape .rEdCol ul li span {
  display: inline-block;
  vertical-align: middle;
}
.mobile_footer_tape .rEdCol ul li span img {
  display: block;
}
.mobile_footer_tape .cart-inc-dec .quantity {
  border: 1px solid #dddddd;
  width: 84px;
  height: 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mobile_footer_tape .cart-inc-dec .quantity .minus {
  border: 0;
  background-color: transparent;
  font-size: 40px;
  line-height: 1;
  font-weight: normal;
  box-shadow: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iMiIgdmlld0JveD0iMCAwIDExIDIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHBhdGggZD0iTTAuNSAxSDEwLjUiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  height: 100%;
  width: 26px;
  flex: 0 0 auto;
  border-radius: 30px 0px 0px 30px;
  box-shadow: none;
}
.mobile_footer_tape .cart-inc-dec .quantity .qty {
  font-size: 14px;
  font-weight: 400;
  width: 25px;
  height: 100%;
  background-color: transparent;
  border: none;
  box-shadow: none;
  color: #000;
  flex: 1 0 0;
  text-align: center;
}
.mobile_footer_tape .cart-inc-dec .quantity .plus {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYgMVYxMSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+CjxwYXRoIGQ9Ik0xIDZIMTEiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4=");
  background-repeat: no-repeat;
  background-position: center center;
  font-size: 0;
  height: 100%;
  width: 26px;
  flex: 0 0 auto;
  border-radius: 0px 30px 30px 0px;
  box-shadow: none;
}
.mobile_footer_tape .addchilliSelect {
  position: relative;
  transition: all 300ms ease-in-out 0s;
}
.mobile_footer_tape a.removeStyle {
  color: #d33315;
}
.mobile_footer_tape .nwaddText h3 {
  font-size: 16px;
  color: #130F26;
  font-weight: 700;
  margin: 0;
}
.floatingCart {
  padding: 15px;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px 30px 0 0;
  z-index: 7;
}
.btn.payBtn {
  font-size: 14px;
  line-height: 1.3;
  display: inline-flex;
  padding: 20px;
}
.btn.payBtn> span {
  padding-left: 5px !important;  
}
@media (max-width: 575px) {
    .btn.payBtn> span {
        padding: 0px !important;
    }
}
@media (max-width: 1199px) {
  .cartSlide .mobile_footer_tape .sidebarright {
    transform: translateY(0%);
  }
  .p2pCol {
    padding: 20px 15px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 20px 20px 0 0;
    z-index: 9999;
  }
  .priceLgText {
    font-size: 22px;
    font-weight: bold;
  }
  html.cartSlide {
    position: relative;
    overflow: hidden;
  }
  html.cartSlide::before {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all 300ms ease-in-out 0s;
    background-color: rgba(19, 15, 38, 0.8);
    z-index: 100;
  }
}
.nwCartMain .form-row.align-items-center,
.floatingCart .form-row.align-items-center {
  display: flex !important;
}
.floatingCart .cartPrice > span,
.nwCartMain .nwaddText h3 {
  font-weight: 600;
}
.nwCartMain .nwaddDetail .form-row {
  display: flex !important;
  gap: 10px;
}
.nwCartMain .payBtn,
.floatingCart .payBtn {
  background-color: var(--primary-theme-color);
  color: white !important;
}
#custom-links {
  text-decoration: underline;
  text-decoration-color: var(--primary) !important;
  text-underline-offset: 10px;
  color: inherit;
  transition: color 0.3s ease;
}
#custom-links:hover {
  color: var(--primary) !important;
}
@media (max-width: 576px) {
#custom-links{
  color: var(--primary) !important;
}
}