/**
* 'wght' (range from 300, 400, 500, 700, 900)
**/

@font-face {
  font-family: 'Satoshi-Variable';
  src: url('../fonts/Satoshi-Variable.woff2') format('woff2'),
  url('../fonts/Satoshi-Variable.woff') format('woff'),
  url('../fonts/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
font-family: 'Satoshi-VariableItalic';
src: url('../fonts/Satoshi-VariableItalic.woff2') format('woff2'),
  url('../fonts/Satoshi-VariableItalic.woff') format('woff'),
  url('../fonts/Satoshi-VariableItalic.ttf') format('truetype');
  font-weight: 300 900;
  font-display: swap;
  font-style: italic;
}

:root {
  --baseFont: 'Satoshi-Variable';
  --black: #000;
  --text: rgba(0, 0, 0, 0.8);
  --white: #fff;
  --headingColor: #000;
  --primary: #E27B00;
  --lightBg: #F6D7B3;
  --darkBg: #000;
  --borderPrimary: #F9E5CC;
  --border: #7B6C59;
  --footerBg: #F6D7B3;
  --error: #ff5151;
  --fbColor: #1877F2;
  --googleColor: #5F6368;
  --transition: 400ms ease-in-out 0s;
}
body {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text);
  font-family: var(--baseFont);
}
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-weight: 900;
}

/*******/
.darkBg {
  --headingColor: var(--white);
  background-color: var(--darkBg);
}
.lightBg {
  background-color: var(--lightBg);
}
.sectionSpace {
	padding: 100px 0;
}
.textPrimary {
  color: var(--primary);
}
.fontTiteFont {
  font-family: var(--titleFont);
}
.xlTitle {
	font-size: 90px;
	line-height: 1.2;
}
.lgTitle {
	font-size: 50px;
	line-height: 1.2;
}
.mdTitle {
	font-size: 35px;
	line-height: 1.2;
}
.smTitle {
	font-size: 25px;
	line-height: 1.4;
}
.xsTitle {
	font-size: 20px;
	line-height: 1.2;
}
.textStyle {
  font-size: 20px;
  line-height: 1.6;
}
.colorPrimary {
  color: var(--primary);
}

/* ===== Scrollbar CSS ===== */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--dark);
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: var(--dark);
}
*::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 0px;
  border: 1px solid var(--dark);
}

/* Btn */

.btn {
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 16px 25px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  line-height: 1.2;
  border-width: 1px;
  position: relative;
  overflow: hidden;
}
.btn > span {
  position: relative;
  z-index: 2;
}
.btn::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: 2;
}
.btn:hover::before {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}
.btnPrimary {
  border-color: transparent;
	background-color: var(--primary);
	color: var(--white);
  background: linear-gradient(to right,  var(--primary) 0%,var(--primary) 50%,var(--primary) 100%);
  background-size: 200% auto;
  background-position: left top;
  transition: background-position var(--transition);
}
.btnPrimary::before {
  background-color: var(--black);
}
.btnPrimary:hover, .btnPrimary:active {
  background-position: right top;
  color: var(--white) !important;
  border-color: var(--black);
}
.btnWhiteOutline {
  border-color: var(--black);
  background-color: transparent;
  color: var(--black);
  transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}
.btnWhiteOutline:hover, .btnWhiteOutline:active {
  color: var(--white) !important;
  border-color: var(--black);
}
.btnWhiteOutline::before {
  background-color: var(--black);
}

.btnLine {
  border: 0;
  color: var(--black);
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 900;
}
.lineBtns .lineTitleAnim::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjA1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjE1Ii8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: -moz-linear-gradient(left,  rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.05) 100%);
  background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(0,0,0,0.05)), color-stop(50%,rgba(0,0,0,0.15)), color-stop(100%,rgba(0,0,0,0.05)));
  background: -webkit-linear-gradient(left,  rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.15) 50%,rgba(0,0,0,0.05) 100%);
  background: -o-linear-gradient(left,  rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.15) 50%,rgba(0,0,0,0.05) 100%);
  background: -ms-linear-gradient(left,  rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.15) 50%,rgba(0,0,0,0.05) 100%);
  background: linear-gradient(to right,  rgba(0,0,0,0.05) 0%,rgba(0,0,0,0.15) 50%,rgba(0,0,0,0.05) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0d000000', endColorstr='#0d000000',GradientType=1 );
  transition: var(--transition);
}
.lineBtns .lineTitleAnim:hover::before {
  width: 100%;
}
.btnWhiteOutline.fbBtn::before {
  background-color: var(--fbColor);
}
.btnWhiteOutline.fbBtn:hover {
	border-color: var(--fbColor);
}
.btnWhiteOutline.googleBtn::before {
  background-color: var(--googleColor);
}
.btnWhiteOutline.googleBtn:hover {
  border-color: var(--googleColor);
}
.btnSvg {
	width: 20px;
	height: auto;
	display: block;
}

/* Header */
.logo svg, .sidebarLogo svg {
  max-width: 100%;
  height: auto;
}
.sidebarLogo {
	padding: 0 0 10px;
}
.sidebarLogo a {
  display: inline-block;
  max-width: 160px;
}
.logo {
  --logo-height: 40px;
  height: var(--logo-height);
  max-width: 180px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}
.logo > a > img, .logo > a > svg {
  max-width: 100%;
  object-fit: contain;
  max-height: var(--logo-height);
}
header.headerSection {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  background-color: transparent;
  color: var(--white);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
header.headerSection.isSticky {
  background-color: var(--white);
  box-shadow: 0 10px 20px rgba(0,0,0,0.04);
  transform: translate(0, -95px);
}
.menuColMain {
  display: flex;
  justify-content: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: 20px;
}
.navItems {
  display: flex;
  column-gap: 40px;
  font-size: 18px;
}
.navItems a {
  font-weight: 500;
  color: var(--black);
  transition: color var(--transition);
}
.navItems a.active, .navItems a:hover {
  color: var(--primary);
}
.headerRightOption {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.cartCol {
  position: relative;
  display: block;
  color: var(--black);
}
.cartCol:hover {
  color: var(--black);
}
.cartIcon {
	display: block;
}
.cartCount {
  color: var(--white);
  background-color: var(--primary);
  font-size: 12px;
  padding: 2px 4px;
  position: absolute;
  top: -5px;
  right: 0;
  line-height: 1;
  border-radius: 10px;
  min-width: 16px;
  text-align: center;
  font-weight: 700;
}
.menuToggle {
  position: relative;
  width: 26px;
  height: 18px;
  margin-left: auto;
}
.menuToggle > a {
  display: block;
  width: 100%;
  height: 100%;
}
.menuToggle > a > span {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  width: 100%;
  background-color: var(--black);
  border-radius: 20px;
  transition: all 300ms ease-in-out 0s;
}
.menuToggle > a > span:nth-child(2) {
  top: 8px;
}
.menuToggle > a > span:last-child {
  bottom: 0;
  top: auto;
}
.actNav .menuToggle > a > span:nth-child(1) {
  transform: rotate(135deg);
  top: 8px;
}
.actNav .menuToggle > a > span:nth-child(2) {
  opacity: 0;
  transform: translateX(-25px);
}
.actNav .menuToggle > a > span:nth-child(3) {
  transform: rotate(-135deg);
  bottom: 8px;
}
.menuBackDrop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 800ms ease-in-out 0s;
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.7);
}
.headerSection .socialMenu .socialList a {
  color: var(--black);
}

.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;
}
.headerLeftOption {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.openTym {
  background-color: var(--black);
  font-size: 12px;
  text-transform: uppercase;
  padding: 3px 8px;
  position: relative;
}
.openTym::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0px;
  top: -14px;
  background-color: var(--black);
  height: 5px;
  width: 5px;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}
.haggingLine::before {
  content: "";
  left: calc(50% + -3px);
  top: -5px;
  background: var(--black);
  width: 20px;
  height: 1px;
  position: absolute;
  transform: rotate(45deg);
}
.haggingLine::after {
  content: "";
  right: calc(50% + -3px);
  top: -5px;
  background: var(--black);
  width: 20px;
  height: 1px;
  position: absolute;
  transform: rotate(-45deg);
}


.lineTitleAnim {
  position: relative;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  padding: 20px 0;
}
.lineTitleAnim > .lineTitle {
  position: relative;
  display: inline-block;
}
.lineTitleAnim > .lineTitle::before, .lineTitleAnim > .lineTitle::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  height: 2px;
  width: 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.6),
    transparent
  );
  transition: width 1200ms ease-in-out 100ms;
}
.lineTitleAnim > .lineTitle::before {
  top: -18px;
  left: 0;
  right: auto;
}
.aos-animate.lineTitleAnim > .lineTitle::after {
  bottom: -18px;
  left: auto;
  right: 0;
}
.aos-animate.lineTitleAnim > .lineTitle::before, .aos-animate.lineTitleAnim > .lineTitle::after {
  width: 100%;
}



.bannerStyle2 {
  position: relative;
  padding: 270px 0 220px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top:-40px;
}
.bannerStyle2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--white);
  opacity: 0.5;
}
.bannerContent {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: var(--black);
  max-width: 940px;
  margin: 0 auto;
}
.bannerLogo svg {
  color: var(--primary);
}
.lineBtns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}
.lineBtns .lineTitleAnim > .lineTitle::before {
  top: 1px;
}
.lineBtns .lineTitleAnim > .lineTitle::after {
  bottom: 0;
}
.lineBtns .lineTitleAnim {
  padding: 0;
  margin: 0;
}


/* 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);
}
html:not([data-bs-theme="dark"]) .modalNewstyle .modal-content {
	background-color: var(--white);
}
.modalNewstyle .newclose {
	--closeIconSize: 10px;
  --closeIconPosition: 15px;
	padding: 4px;
	width: var(--closeIconSize);
	height: var(--closeIconSize);
	position: absolute;
	right: var(--closeIconPosition);
	top: var(--closeIconPosition);
	margin: 0;
}
.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%;
}
.rightIconFld {
	position: relative;
}
.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 {
  font-size: 16px;
}
.formStyle .form-select, .formStyle .form-control {
	border-radius: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 20px;
	border-width: 2px;
}
.formStyle textarea.form-control {
	height: 120px;
	resize: none;
	border-radius: 16px;
}
.formStyle .form-check {
	font-size: 16px;
	font-weight: normal;
	line-height: 1.2;
	margin-bottom: 0;
	min-height: auto;
}
.formStyle .form-check .form-check-input {
	margin-top: 2px;
}
.formStyle .form-check-input:checked {
	background-color: var(--primary);
	border-color: var(--primary);
}
.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;
}

.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%;
}
.fullImgCol {
	height: 100%;
}
.fullImgCol img.fullImg {
	height: 100%;
  width: 100%;
  object-fit: cover;
}
.infoCard {
  border: 1px solid rgba(0,0,0,.1);
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.infoCardContent {
  width: 100%;
  max-width: 580px;
  text-align: center;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.simpleList > li + li {
  margin-top: 10px;
}
.icContent > p:last-child {
  margin-bottom: 0;
}



.aboutSection {
  position: relative;
  background-image: url('../images/about-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.aboutSection::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--black);
  opacity: 0.6;
}
.aboutLeftCol, .aboutRightCol {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aboutLeftCol {
  padding: 70px 60px;
}
.subTitle {
  padding-bottom: 15px;
}
.aboutLeftCol .formStyle {
  margin-top: 40px;
}
.aboutLeftCol .formStyle .lineBtns {
  margin-top: 50px;
}
.aboutRightCol {
  padding: 40px 0 40px 30px;
}


.suggestionCard {
	display: flex;
	flex-direction: column;
	row-gap: 20px;
	text-align: center;
}
.suggestionImgCol {
  position: relative;
}
.suggestionImgCol::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 10px;
  pointer-events: none;
  border: 2px solid var(--primary);
}
.suggestionImgCol img {
  aspect-ratio: 1 / 1.19;
  width: 100%;
  border-radius: 10px;
}
.suggestionContentCol h4 {
	font-size: 30px;
	font-weight: 900;
}
.suggestionContentCol p {
  margin-bottom: 0;
  line-height: 1.4;
}
.suggestionContentCol > p:not(:first-child) {
	padding-top: 8px;
}
.chefSuggestCards {
  margin-top: 0;
}


.meetSection {
  padding-top: 65px;
}
.meetBanner {
  position: relative;
}
.meetBanner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.2);
}
.textDinning {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  padding-top: 200px;
}
.textDinning::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  height: 220px;
  background-color: var(--black);
  width: 4px;
  margin: 0 auto;
  border-radius: 50px;
}
.textDinning h4 {
  font-size: 35px;
  color: var(--white);
  text-align: center;
}
.meetSection .centerTitle {
  padding-bottom: 80px;
}


.socialList {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
}
.filterTrigger {
  padding: 12px 20px;
  border-radius: 10px;
  background-color: transparent;
  color: var(--black);
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--black);
  font-size: 18px;
  line-height: normal;
  white-space: nowrap;
  transition: color 300ms ease-in-out 0s, opacity 300ms ease-in-out 0s, background-color 300ms ease-in-out 0s, border-color 300ms ease-in-out 0s;
}
.filterTrigger:not(.active) {
  opacity: 0.6;
  border-color: rgba(0, 0, 0, 0.2);
}
.filterTrigger:not(.active):hover {
	opacity: 1;
	background-color: var(--white);
	border-color: rgba(0, 0, 0, 0.6);;
}
.filterTrigger.active {
  background-color: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.centerTitle {
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
.selectionCard {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px 15px;
  background-color: var(--white);
  color: var(--black);
  border: 2px solid var(--borderPrimary);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 300ms ease-in-out 0s;
}
.selectionCard:hover {
	box-shadow: 0 6px 10px var(--borderPrimary);
}
.selectionDish {
  --imgSize: 85px;
  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;
}
.dishPrice {
	white-space: nowrap;
}
.selectionContentCol p:last-child {
	margin-bottom: 0;
}
.selectionContentCol p {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.offerSection .lineBtns {
    padding-top: 50px;
}


.slideTextSlider .swiper-slide {
  width: auto;
  flex-shrink: 0;
}
.slideTextSlider .swiper-wrapper {
  transition-timing-function: linear !important;
}
.sliderText {
  flex-shrink: 0;
  display: inline-block;
  padding: 0 30px;
}
.sliderText h2 {
  text-align: center;
  font-size: 150px;
  font-weight: 700;
  line-height: 1.4;
  font-family: 'Arial', sans-serif; /* Or your desired font */
  text-transform: uppercase;
}
.sliderText.strokeText h2 {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary); /* Outline thickness + color */
  text-stroke: 2px var(--primary);
  -webkit-font-smoothing: antialiased; /* Smoother edges */
}


.socialBtn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 16px 30px;
	border-radius: 10px;
	background-color: var(--black);
	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%);
}
.gReviewRating {
  color: var(--black);
}
.gReviewRating p {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.ratingText {
	font-size: 13px;
	line-height: normal;
}


.reviewSection {
  margin-top: -115px;
}
.reviewInner {
  padding-top: 80px;
}
.reviewSliderCol {
  padding: 80px 0 40px;
  max-width: 850px !important;
  margin: 0 auto;
}
.reviewCard {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  align-items: center;
  text-align: center;
  padding-bottom: 100px;
}
.reviewCard p {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
}
.reviewContent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.reviewImgCol {
  text-align: center;
  --imgSize: 80px;
}
.reviewImgCol > img {
  width: var(--imgSize);
  height: var(--imgSize);
  object-fit: cover;
  border-radius: 50%;
}
.reviewerName {
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
}
.reviewerDesignation {
  display: block;
  font-size: 14px;
  opacity: 0.7;
}
.quoteIcon {
  width: 100px;
  height: 100px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.element1 {
  position: absolute;
  left: 150px;
  bottom: 180px;
  max-width: 200px;
}
.element2 {
  position: absolute;
  right: 80px;
  top: 60%;
  transform: translateY(-50%);
  max-width: 200px;
}
.reviewSwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50px;
}
.reviewSwiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  background-color: var(--primary);
}
.reviewInfo {
  display: flex;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -130px;
}
.reviewText {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  padding: 20px 40px;
  gap: 15px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 34px rgba(0,0,0,0.05);
}
.reviewText > p >  span {
  text-decoration: underline;
}



.blogInner {
  padding-top: 50px;
}
.blogCard {
  background-color: var(--white);
  margin: 5px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.blogCard .cardImg {
  margin: 0;
  position: relative;
}
.blogCard .cardImg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0,0,0,0.5);
}
.blogCard .cardImg img {
	width: 100%;
	height: 475px;
	object-fit: cover;
	border-radius: 10px;
}
.blogCardContent {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blogTitle {
  margin-top: auto;
}
.blogTitle > h3 {
  color: var(--white);
}
.tagText > span {
  background-color: var(--white);
  padding: 6px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
}



.footerSection {
  background-color: var(--footerBg);
  color: var(--black);
  padding: 400px 0 50px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.footerTopImg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 730px;
  margin: 0 auto;
}
.footerTopRightImg {
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  max-width: 200px;
}
.footerTopRightImg img {
  max-width: 100%;
  height: auto;
}
.copyrightCol {
	font-size: 16px;
}
.footerLogo {
  position: relative;
  margin: 100px 0 50px;
}
.footerLogo::before {
	content: "";
	background-color: var(--border);
	position: absolute;
	height: 1px;
	left: 0;
	right: 0;
	top: 50%;
	-webkit-transform: translate(0,-50%);
	-moz-transform: translate(0,-50%);
	transform: translate(0,-50%);
	z-index: 1;
}
.footerLogo span {
	padding: 0 24px;
	background-color: var(--footerBg);
	display: inline-block;
	position: relative;
	z-index: 2;
}
.addressCol {
  border-color: var(--border);
  border-style: solid;
  border-width: 0 1px;
}
.socialMenu .socialList a {
  transition: color 300ms ease-in-out 0s;
}
.socialMenu .socialList a:hover {
	color: var(--primary);
}
.footerCol > p {
  margin: 0 auto;
  max-width: 250px;
}


/******* Media Quary *******/

@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: 1499px) {
  .xlTitle {
    font-size: 80px;
  }
  .lgTitle {
    font-size: 40px;
  }
}
@media (max-width:1399px) {
  .xlTitle {
    font-size: 70px;
  }
  .mdTitle {
    font-size: 30px;
  }
  .navItems {
    column-gap: 30px;
    font-size: 16px;
  }
  .headerRightOption {
    column-gap: 12px;
  }
  .btn {
    letter-spacing: 0.5px;
    padding: 14px 20px;
    min-width: 100px;
  }
  .bannerStyle2 {
    padding: 240px 0 180px;
  }
  .aboutLeftCol {
    padding: 50px 40px;
  }
  .sliderText h2 {
    font-size: 130px;
  }
  .filterTrigger {
    padding: 10px 18px;
    gap: 6px;
    font-size: 16px;
  }
  .reviewSection {
    margin-top: -95px;
  }
  .reviewInner {
    padding-top: 40px;
  }
  .reviewSliderCol {
    max-width: 850px;
  }
  .quoteIcon {
    width: 80px;
    height: 80px;
  }
  .reviewCard p {
    font-size: 26px;
  }
  .reviewRatting svg {
    max-width: 80px;
  }
  .reviewText {
    padding: 14px 20px;
    font-size: 18px;
  }
  .element1 {
    left: 120px;
    max-width: 180px;
  }
  .blogCard {
    margin: 5px !important;
    margin-bottom: 20px !important;
  }
  .footerSection {
    padding: 320px 0 40px;
  }
  .footerLogo {
    margin: 80px 0 30px;
  }
  .footerTopImg {
    max-width: 580px;
  }
  .footerTopRightImg {
    max-width: 140px;
  }
  .textStyle {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .xlTitle {
    font-size: 60px;
  }
  .lgTitle {
    font-size: 36px;
  }
  .smTitle {
    font-size: 20px;
  }
  body, .textStyle {
    font-size: 16px;
    line-height: 1.6;
  }
  .logo {
    max-width: 140px;
  }
  .sectionSpace {
    padding: 80px 0;
  }
  .bannerLogo svg {
    max-width: 85px;
  }
  .selectionCard {
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--borderPrimary);
  }
  .dishName, .dishPrice {
    font-size: 16px;
  }
  .selectionContentCol p {
    font-size: 14px;
  }
  .selectionDish {
    --imgSize: 60px;
  }
  .suggestionContentCol h4 {
    font-size: 24px;
  }
  .textDinning {
    padding-top: 150px;
  }
  .textDinning::before {
    height: 180px;
  }
  .socialBtn {
    padding: 12px 20px;
    min-width: 160px;
    font-size: 18px;
  }
  .element2 {
    right: 60px;
    max-width: 160px;
  }
  .tagText > span {
    padding: 4px 8px;
    font-size: 14px;
  }
  .sliderText h2 {
    font-size: 80px;
    line-height: 1.2;
  }
  .reviewSection {
    margin-top: -55px;
  }
  .reviewSliderCol {
    max-width: 850px;
    padding: 50px 0 20px;
  }
  .quoteIcon {
    width: 60px;
    height: 60px;
  }
  .reviewImgCol {
    --imgSize: 60px;
  }
  .element1 {
    left: 40px;
    bottom: 100px;
  }
  .element2 {
    right: 30px;
  }
  .element1, .element2 {
    max-width: 150px;
  }
  .reviewContent {
    gap: 15px;
  }
  .reviewCard {
    row-gap: 25px;
    padding-bottom: 70px;
  }
  .blogCard .cardImg img {
    height: 400px;
  }
  .footerTopImg {
    max-width: 440px;
  }
  .footerTopRightImg {
    max-width: 100px;
  }
  .footerSection {
    padding: 250px 0 40px;
  }
}
@media (max-width:991px) {
  header.headerSection.isSticky {
    transform: none;
  }
  .menuColMain {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    z-index: 99;
    background-color: var(--white);
    color: var(--white);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition);
    transform: translateX(-200%);
    justify-content: flex-start;
    flex-direction: column;
    padding: 20px;
    margin-top: 0;
    border-top: 0;
  }
  .actNav .menuColMain {
    transform: translateX(0);
  }
  .actNav .menuBackDrop {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
  }
  .logo {
    margin: 0;
  }
  .navItems {
    flex-direction: column;
  }
  .navItems a {
    display: block;
    padding: 10px 0;
  }
  .navItems > li + li {
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  header.headerSection {
    padding: 12px 0;
  }
  .xlTitle {
    font-size: 44px;
  }
  .mdTitle {
    font-size: 22px;
  }
  .bannerStyle2 {
    padding: 120px 0;
  }
  .bannerLogo svg {
    max-width: 65px;
    height: auto;
  }
  .bannerBtns.lineBtns {
    margin-top: 0;
  }
  .addressCol {
    border-width: 1px 0;
    padding: 30px 0;
  }
  .menuColMain .socialList {
    justify-content: start;
  }
  .aboutSection {
    overflow: hidden;
  }
  .aboutLeftCol {
    position: relative;
    padding: 50px 0;
  }
  .aboutLeftCol::before {
    content: "";
    position: absolute;
    left: -100%;
    right: 0;
    top: 0;
    bottom: 0;
    width: calc(100vw + 100%);
    background-color: var(--lightBg);
  }
  .aboutLeftCol .subTitle {
    position: relative;
  }
  .aboutRightCol {
    padding: 40px 0;
  }
  .chefSuggestCards {
    justify-content: center;
  }
  .meetSection .centerTitle {
    padding-bottom: 50px;
  }
  .textDinning h4 {
    font-size: 30px;
  }
  .textDinning {
    padding-top: 120px;
  }
  .textDinning::before {
    height: 140px;
    width: 3px;
    top: -30px;
  }
}
@media (max-width: 767px) {
  .xlTitle {
    font-size: 34px;
  }
  .lgTitle {
    font-size: 26px;
  }
  .modalNewstyle {
    --xSpace: 15px;
    --ySpace: 20px;
  }
  .meetSection {
    padding-top: 40px;
  }
  .textDinning h4 {
    font-size: 20px;
  }
  .sliderText h2 {
    font-size: 60px;
  }
  .reviewSection {
    margin-top: -44px;
  }
  .reviewInner {
    padding-top: 0;
  }
  .reviewCard p {
    font-size: 20px;
  }
  .quoteIcon {
    width: 50px;
    height: 50px;
  }
  .element1, .element2 {
    max-width: 100px;
    opacity: 0.3;
  }
  .element2 {
    right: 20px;
    top: 50%;
  }
  .element1 {
    left: 20px;
  }
  .reviewInfo {
    bottom: -110px;
  }
  .reviewText {
    padding: 10px 15px;
    gap: 10px;
    font-size: 14px;
  }
  .offerSection .lineBtns {
    padding-top: 30px;
  }
  .footerTopImg {
    max-width: 320px;
  }
  .footerTopRightImg {
    max-width: 80px;
  }
  .footerSection {
    padding: 180px 0 30px;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .xlTitle {
    font-size: 30px;
  }
  .mdTitle {
    font-size: 20px;
  }
  .btn {
    letter-spacing: 0.1px;
    padding: 14px 18px;
    min-width: 100px;
  }
  .sectionSpace {
    padding: 60px 0;
  }
  .lineBtns {
    gap: 10px;
  }
  .sliderText {
    padding: 0 20px;
  }
  .sliderText h2 {
    font-size: 50px;
  }
  .reviewCard {
    --cardXPadding: 16px;
    --cardYPadding: 16px;
  }
  .textDinning {
    padding-top: 80px;
  }
  .textDinning::before {
    height: 100px;
  }
  .footerTopRightImg {
    max-width: 80px;
    opacity: 0.2;
  }
  .footerLogo span {
    padding: 0 14px;
    background-color: var(--footerBg);
    display: inline-block;
    position: relative;
    z-index: 2;
  }
  .selectionCard {
    flex-direction: column;
    align-items: flex-start;
  }
  .formStyle .form-select, .formStyle .form-control {
    padding-left: 15px;
  }
  .reviewInfo {
    padding: 0 15px;
  }
  .reviewText {
    padding: 15px 30px;
    flex-direction: column;
    gap: 0;
  }
  .footerTopImg {
    max-width: 220px;
    opacity: 0.2;
  }
  .footerSection {
    padding: 60px 0 30px;
  }
}
@media (max-width:360px) {
  .bannerStyle2 {
    padding: 120px 0 80px;
  }
  .xlTitle {
    font-size: 28px;
  }
  .lineBtns .btn {
    padding: 10px 12px;
    min-width: 80px;
    font-size: 13px;
  }
  .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;
  }
  .textDinning {
    padding-top: 40px;
  }
  .textDinning::before {
    height: 60px;
    width: 2px;
  }
}

/* custom css for theme 15 */
#loginModal .modal-header button, #registerModal .modal-header button{
  margin-right: -500px;
  margin-top: -70px;
}
#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;
}

@media (max-width:565px) {
  #loginModal .modal-header button, #registerModal .modal-header button {
      margin-right: -300px !important;
      margin-top: -50px !important;
  }
}

/* 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;
}