/* @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    /* --baseFont: "Outfit", sans-serif; */
    --baseFont: "Open Sans", sans-serif;
    --primary: #E94D59;
    --primaryDark: #c52432;
    --primaryLightBg: #fff3f4;
    --secondary: #FFC54E;
    --white: #FFFFFF;
    --black: #000;
    --dark: #292828;
    --grayColor: #CDCDCD;
    --borderColor: #545353;
    --tDuration: 300ms;
    --inputFocusBorder: #555;
    --inputFocusShadow: 0 0 0 .25rem rgba(233, 77, 89, 0.1);
    --mild: #FFCE69;
    --medium: #5FB847;
    --hot: #FF0000;
    --success: #5FB847;
    --bs-body-bg: var(--dark);
}

body {
    font-family: var(--baseFont);
    background-color: var(--black);
    color: var(--white);
}
ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
img {
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--dark);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: var(--dark);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 0px;
    border: 0px none var(--dark);
}


/* components */
.btn {
	padding: 14px 32px;
	border-radius: 30px;
	font-size: 18px;
	line-height: 1.1;
	font-weight: 500;
	transition: background-color var(--tDuration) ease-in-out 0s, color var(--tDuration) ease-in-out 0s;
}
.btn.smBtn {
	font-size: 14px;
	padding: 8px 15px;
	line-height: 1.2;
}
.iconBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.btnLight {
	background-color: var(--white);
	color: var(--dark);
}
.btnLight:hover {
	background-color: var(--white);
	color: var(--primary);
}
.btnPrimary {
	background-color: var(--primary);
	color: var(--white);
}
.btnPrimary:hover {
	background-color: var(--primaryDark);
	color: var(--white);
}
.btn-success {
	--bs-btn-border-color: #5FB847;
	--bs-btn-bg: #5FB847;
}


/* Typography */
.lgTitle {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}
.mdTitle {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}
.smTitle {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
}
.xsTitle {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}
.mdText {
	font-size: 20px;
}
/*  /Typography */

.primaryColor {
    color: var(--primary);
}
.successColor {
    color: var(--success)
}

/* navigation menu*/
.navStyle {
    display: flex;
    gap: 50px;
    align-items: center;
}
.navItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    line-height: 1.2;
    color: var(--white);
    transition: color var(--tDuration) ease-in-out 0s;
}
.navItem:hover, .navItem.active {
    color: var(--primary);
}
.menuBackdrop {
	position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
	background-color: var(--white);
	opacity: 0;
	pointer-events: none;
	z-index: 2;
}
/*  /navigation menu*/

/* menu toggle */
.hamburger {
    --hbWidth: 30px;
    width: var(--hbWidth);
    height: 18px;
    position: relative;
    cursor: pointer;
    z-index: 5;
}
.hamburger .bar {
    padding: 0;
    width: var(--hbWidth);
    height: 2px;
    background-color: var(--primary);
    display: block;
    border-radius: 4px;
    transition: all 0.4s ease-in-out;
    position: absolute;
}
.bar1 {
    top: 0;
}
.bar2, .bar3 {
    top: 8px;
}
.bar3 {
    right: 0;
}
.bar4 {
    bottom: 0;
}
.actNav .hamburger>.bar1 {
    transform: translateX(40px);
    background-color: transparent;
}
.actNav .hamburger>.bar2 {
    transform: rotate(45deg);
}
.actNav .hamburger>.bar3 {
    transform: rotate(-45deg);
}
.actNav .hamburger>.bar4 {
    transform: translateX(-40px);
    background-color: transparent;
}
/* /menu toggle */

/* Header user trigger  */
.hProfileTrigger {
    --imgSize: 44px;
    --arrowWd: 14px;
    display: inline-flex;
    align-items: center;
    padding-right: 24px;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
}
.profileImg {
	width: var(--imgSize);
	height: var(--imgSize);
	background-size: cover;
	border-radius: 50%;
	border: 1px solid var(--borderColor);
}
.uName {
	display: block;
	max-width: 100px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ddArrow {
	position: absolute;
	right: 0;
	top: 50%;
	width: var(--arrowWd);
	height: auto;
	transform: translateY(-50%);
}
/*  Header user trigger  */

/* Dropdown */
.dropdown-menu.ddMenuStyle {
    --bs-dropdown-item-padding-y: 5px;
    --bs-dropdown-item-padding-x: 20px;
    --bs-dropdown-link-active-color: var(--white);
    --bs-dropdown-link-active-bg: var(--primary);
    --bs-dropdown-link-hover-color: var(--primary);
    /* --bs-dropdown-link-hover-bg: var(--primaryLightBg); */
	border-radius: 20px;
	padding: 10px 0;
	overflow: hidden;
}
.ddMenuStyle .dropdown-item {
	display: flex;
	gap: 12px;
    transition: background-color var(--tDuration) ease-in-out 0s, color var(--tDuration) ease-in-out 0s;
}
.ddItemIcon {
	width: 24px;
	height: auto;
}
td .ddItemIcon {
	width: 20px;
}
.dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-toggle::after {
	border: none;
    width: 12px;
    height: 8px;
    background-image: url('../images/angle-down.svg');
    background-repeat: no-repeat;
    background-size: contain;
    flex: 0 0 auto;
}
.smBtn.dropdown-toggle::after {
	height: 6px;
	width: 10px;
}
/*  /Dropdown */

/* Tabs */
.tabStyle .swiper {
    --underline: 2px;
    position: relative;    
}
.tabStyle .swiper::before {
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    border-bottom: var(--underline) solid var(--borderColor);
}
.tabNavIcon {
	width: auto;
	height: 30px;
}
.tabStyle .nav-link {
	padding: 0 0 14px;
	display: inline-flex;
	gap: 10px;
	font-size: 18px;
	border-bottom: var(--underline) solid transparent;
	align-items: center;
}
.tabStyle .nav-link:hover, .tabStyle .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}
.tabStyle .tab-pane {
	padding: 20px 0;
}
.swiperButtonNext, .swiperButtonPrev {
    position: absolute;
    top: 0%;
    /* transform: translateY(-50%); */
    z-index: 5;
    --sidePosition: 0;
    --size: 29px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-button-disabled {
	display: none;
}
.swiperButtonNext {
    right: var(--sidePosition);
}
.swiperButtonPrev {
    left: var(--sidePosition);
}
/*  /Tabs */

/* form style */
.form-switch .form-check-input {
	background-color: var(--white);
    border: none;
    height: 16px;
    background-position: left center;
}
[data-bs-theme="dark"] .form-switch .form-check-input:not(:checked):not(:focus) {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 1%29'/%3e%3c/svg%3e");
}
[data-bs-theme="dark"] .form-switch .form-check-input:not(:checked):not(:focus) {
	--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 1%29'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
	background-position: right center;
	--bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.formStyle {
    --bs-body-bg: var(--dark);
    --bs-body-color: var(--white);
    --inputYPd: 12px;
    --inputXPd: 15px;
}
.formStyle .form-control {
    padding: var(--inputYPd) var(--inputXPd);
}
.formStyle .form-select {
    padding-left: var(--inputXPd);
    padding-top: var(--inputYPd);
    padding-bottom: var(--inputYPd);
}
.formStyle .form-control:focus, .form-select:focus{
	border-color: var(--inputFocusBorder);
	box-shadow: var(--inputFocusShadow);
}
/*  /form style */

/* search Input */
.formStyle.searchStyle .form-control {
	padding-right: 34px;
}
.searchStyle .searchIcon {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}
.searchStyle {
	position: relative;
}
/*  /search Input */

/* switch style */
.form-check-input {
	--bs-form-check-bg: transparent;
    --inputFocusBorder: var(--primary);
}
.form-check-input:checked {
    --bs-border-color: var(--primary);
	background-color: var(--primary);
	border-color: var(--primary);
}

.form-check-input:focus {
	border-color: var(--inputFocusBorder);
	box-shadow: var(--inputFocusShadow);
}
/*  /switch style */

.form-check-input.singleCheck {
	margin: 0;
	width: 18px;
	height: 18px;
}
td > .form-check-input.singleCheck {
	display: block;
}

/* modal */
.modalStyle {
    --bs-modal-bg: var(--black);
    --bs-modal-border-color: transparent;
    --bs-modal-header-border-color: transparent;
    --bs-modal-footer-border-color: transparent;
    --bs-modal-border-radius: 20px;
    --bs-modal-inner-border-radius: 20px;
    --modalXSpace: 30px;
    --modalYSpace: 30px;
    --gap: 20px;
}
.modalStyle .modal-header {
    padding: var(--modalYSpace) var(--modalXSpace) var(--gap) ;
}
.modalStyle .modal-body {
    padding: 0 var(--modalXSpace);
}
.modalBodyStyle {
	padding: 20px;
	background-color: var(--dark);
	border-radius: 20px;
}
.modalStyle .modal-footer {
    padding: var(--gap) var(--modalYSpace) var(--modalXSpace);
}
.modal-backdrop {
    --bs-backdrop-opacity: 0.85;
	background-color: rgba(41, 40, 40, 1);
}

/* table */
.tableSection {
	padding: 20px;
	background-color: var(--dark);
	border-radius: 20px;
}
.tableStyle {
    --xSpace: 10px;
    --ySpace: 10px;
    --thYSpace: 20px;
}
.tableStyle thead th {
	font-size: 18px;
	font-weight: 500;
	padding: var(--xSpace) var(--xSpace) var(--thYSpace);
}
.tableStyle tbody th, .tableStyle tbody td {
	font-size: 16px;
	font-weight: 500;
	padding: var(--ySpace) var(--xSpace);
}
.tableStyle td {
    line-height: 1.2;
}



/* quantity selector */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}
.quantitySelector {
    --pmSize: 22px;
    --qInputWd: 40px;
    display: flex;
    align-items: center;
    width: calc(var(--qInputWd) + (var(--pmSize) * 2));
}
.qsLg.quantitySelector {
    --pmSize: 30px;    
}
.quantityInput {
	width: var(--qInputWd);
	text-align: center;
	border: none;
	padding: 0;
}
.qtyBtn {
	display: flex;
	width: var(--pmSize);
	height: var(--pmSize);
	align-items: center;
	justify-content: center;
	border: 1px solid var(--primary);
	flex: 0 0 auto;
	border-radius: 4px;
    cursor: pointer;
    color: var(--primary);
    transition: all var(--tDuration) ease-in-out 0s;
}
.qtyBtn:hover {
    background-color: var(--primary);
    color: var(--white);
}
.radioBtn {
	padding: 10px 20px;
	border: 1px solid var(--borderColor);
	border-radius: 8px;
	cursor: pointer;
    font-size: 14px;
    line-height: 1.2;
    color: var(--white);
    text-align: center;
}
[type="radio"]:checked + .radioBtn {
	background-color: var(--primary);
	border-color: rgba(255,255,255,0.2);
}
.btnGroup {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cardStyle {
	--xSpace: 20px;
	--ySpace: 18px;
	padding: var(--ySpace) var(--xSpace) calc(var(--ySpace) + 5px);
	background-color: var(--dark);
	border-radius: 15px;
}
.cardHeader {
	padding-bottom: 15px;
	margin-bottom: 15px;
	border-bottom: 1px solid var(--borderColor);
}
.lblValListCol {
	max-height: 300px;
	overflow-y: auto;
}
.lblValList {
	display: flex;
	justify-content: space-between;
	gap: 12px;
    padding-left: 4px;
    padding-right: 4px;
}
.lblValList + .lblValList {
	border-top: 1px solid var(--borderColor);
	padding-top: 10px;
	margin-top: 10px;
}
.pSplitCol {
    background-color: var(--black);
    border-radius: 15px;
    margin-bottom: 20px;
}
.pSplitCol h4.xsTitle {
    padding: 15px;
}
.pSplitCol .sbRow {
    padding: 0 15px;
}
.pSplitCol .sbRow span.lbl {
    display: flex;
    align-items: center;
    gap: 10px;
}
.splitPaid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.pSplitCol .sbRow span.lbl svg.addIcon {
    display: block;
}
.lbl.xsLightText {
    font-size: 14px;
    font-weight: 300;
}

/*  /components */

.logoCol {
    color: var(--primary);
    display: block;
}
.headerSection {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	background-color: var(--black);
	padding-bottom: 4px;
}
.headerSection > .container {
	padding-left: 0;
	padding-right: 0;
}
.headerRow {
    --boforeImg: url(../images/header-left-shape.svg);
    --afterImg: url(../images/header-right-shape.svg);
    --xPosition: -2px;
    --yPosition: -1px;
    background-color: var(--dark);
    padding: 14px 65px;
    position: relative;
}
.headerRow::before, .headerRow::after {
    content: "";
    position: absolute;
    left: var(--xPosition);
    right: var(--xPosition);
    top: var(--yPosition);
    bottom: var(--yPosition);
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.headerRow::before {
    background-position: left top;
    background-image: var(--boforeImg);
}
.headerRow::after {
    background-position: right top;
    background-image: var(--afterImg);
}
.bottomBar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 98;
	padding: 15px 0;
	box-shadow: 0 -10px 30px rgba(255,255,255,0.1);
	background-color: var(--black);
}
.pageContent {
    --topSpace: 120px;
    --btmSpace: 90px;
	padding-top: var(--topSpace);
	padding-bottom: var(--btmSpace);
}
.seatingArea {
    padding: 20px 30px;
    background-color: var(--dark);
    border-radius: 15px;
}
.tabSearchInput {
    width: 300px;
}
.tableCol {
	position: relative;
    --iconPosition: 14px;
}
.infoTrigger {
	position: absolute;
	left: var(--iconPosition);
	top: var(--iconPosition);
    z-index: 5;
    cursor: pointer;
}
.checkSquareIcon {
	position: absolute;
	right: var(--iconPosition);
	top: var(--iconPosition);
    opacity: 0;
}
.tableCol > .tableInput:checked ~ .checkSquareIcon {
    opacity: 1;
}
.tableCol > label {
	padding: 35px;
	background-color: var(--black);
	border-radius: 20px;
}
.tableInput {
	position: absolute;
	inset: 0;
	z-index: 2;
    cursor: pointer;
	opacity: 0;
}
.tableCol > .tableInput:checked ~ label {
	background-color: var(--primary);
}
.reserved.tableCol > .tableInput:checked ~ .checkSquareIcon {
    opacity: 0;
}
.reserved.tableCol .tableInput {
    pointer-events: none;
}
.reserved.tableCol > label {
    background-color: var(--secondary);
}
.reserved.tableCol .infoIcon {
    color: var(--black);
}
.infoIcon, .checkSquareIcon {
    display: block;
}
.proDetail {
	font-size: 14px;
	display: block;
	white-space: nowrap;
}
.proName + .proDetail {
	padding-top: 4px;
}
.tableProImg {
    max-width: initial;
    --imgSize: 40px;
    width: var(--imgSize);
    height: var(--imgSize);
    object-fit: cover;
    border-radius: 50%;
}
.tableStyle tbody td.tableProImgCol {
    padding-right: 0;
    width: 50px;
}

/* Takeaway Page */
.takeawayContent {
    --categoryWd: 220px;
    --cartSidebarWd: 340px;
}
.categoryCol {
    width: var(--categoryWd);
	background-color: var(--dark);
	border-radius: 0 20px 20px 0;
	display: flex;
	flex-direction: column;
	padding-bottom: 15px;
}
.sidebarTitleCol {
    padding: 15px 10px;
}
ul.categoryMenu > li + li {
    margin-top: 2px;
}
.categoryMenu > li > a {
	display: block;
	padding: 12px 28px 12px 15px;
	position: relative;
	line-height: 1.2;
    border-radius: 0 10px 10px 0;
}
.categoryMenu > li > a:hover, .categoryMenu > li > a.active {
	background-color: var(--primary);
}
.categoryMenu > li > a::before {
	content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/link-angle-right.svg);
    background-repeat: no-repeat;
    width: 8px;
    height: 14px;
    background-size: contain;
    background-position: center;
}

ul.categoryMenu {
    overflow-y: auto;
    height: 100%;    
}
.screenHeightCol {
	height: calc(100vh - var(--topSpace) - var(--btmSpace));
}
.cartSidebarHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
    background-color: var(--black);
	border-radius: var(--br) var(--br) 0 0;
    padding: 15px 10px;
}
.cartSidebarBody {
	background-color: var(--dark);
	height: 100%;
	overflow-y: auto;
}
.cartSidebarFooter {
	background-color: var(--black);
	border-radius: 0 0 var(--br) var(--br);
	padding: 15px 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.cartSidebar {
    width: var(--cartSidebarWd);
    --br: 20px;
	/* width: 340px; */
	border: 1px solid var(--borderColor);
	border-radius: var(--br) 0 0 var(--br);
	display: flex;
	flex-direction: column;
}
.csFooterRow {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
}
.priceVal {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
}
.menuSection {
    --sideSpace: 20px;
	padding: 0 var(--sideSpace);
	display: flex;
	flex-direction: column;
    max-width: calc(100vw - var(--categoryWd) - var(--cartSidebarWd));
}
.takeawayContent {
    --categoryWd: 220px;
    --cartSidebarWd: 340px;
}
.mSectionTopCol {
	padding-bottom: 20px;
}
.tabStyle .mSectionTopCol + .tab-content .tab-pane {
	padding-top: 0;
	padding-bottom: 0;
}
.menuSection .tab-content {
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}
.menuProCol {
	--pd: 15px;
	border: 1px solid var(--borderColor);
	border-radius: 20px;
	font-size: 14px;
	background-color: var(--dark);
	display: flex;
	flex-direction: column;
	height: 100%;
}
.mProTopCol {
	padding: var(--pd);
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.mProBtmCol {
	border-top: 1px solid var(--borderColor);
	padding: var(--pd);
	margin-top: auto;
}
.sbRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.mProTopRow {
    --imgSize: 30px;
    padding-left: calc(var(--imgSize) + 8px);
    padding-right: 28px;
    display: flex;
    align-items: center;
    min-height: var(--imgSize);
    position: relative;
}
.mProImg {
	max-width: initial;
	width: var(--imgSize);
	height: var(--imgSize);
	object-fit: cover;
	border-radius: 50%;
	position: absolute;
	left: 0;
	top: 0;
}
.mEditTrigger {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.mEditTrigger > svg {
    display: block;
}
.mProName {
	font-weight: 600;
	line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 10px;
}
.spiceLvlIcons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.slIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	--size: 24px;
	width: var(--size);
	height: var(--size);
	border: 1px solid var(--white);
	border-radius: 50%;
    cursor: pointer;
}
.slIcon.actSpiceLvl {
	border-color: var(--primary);
}
.slMild {
    color: var(--mild);
}
.slMedium {
    color: var(--medium);
}
.slHot {
    color: var(--hot);
}
.mProSizes {
    --gap: 6px;
	display: flex;
	gap: var(--gap);
	flex-wrap: wrap;
	/* max-height: 104px;
	overflow-y: auto; */
}
.mProSize {
	width: calc((100% / 3) - (2 * var(--gap) / 3));
	flex: 0 0 auto;
	padding: 6px;
	border-radius: 6px;
	background-color: var(--black);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	border: none;
}
.mProSize .price, .sizeLbl {
    display: block;
    line-height: 1.2;
}
.sizeLbl {
    font-weight: 700;
}
.mProSize .price {
    font-weight: 500;
    color: var(--primary);
}
.typeIcon {
	color: var(--grayColor);
}
.typeIcon.active {
	color: var(--success);
}
.mProType {
	display: flex;
	justify-content: center;
	gap: 10px;
}
.cartSidebarPannel > p {
	margin-bottom: 5px;
    color: var(--grayColor);
}
.priceLg {
	color: var(--primary);
	font-size: 16px;
	font-weight: 600;
}
.cartSidebarPannel > .mProTopRow {
	padding-right: 45px;
}
.cartRightIcons {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}
.cursorPointer {
    cursor: pointer;
}
.cartSidebarPannel {
	padding: 12px 10px;
    border-bottom: 1px solid var(--borderColor);
}
.categoryTrigger {
	display: flex;
	align-items: center;
	gap: 4px;
	cursor: pointer;
	background-color: var(--primary);
	padding: 8px 12px;
	border-radius: 30px;
	font-size: 14px;
}
.cartSidebarTrigger {
	cursor: pointer;
}
.swiper.menuSwiper {
	z-index: 0;
}
.dropdown-menu.serverDropdown {
	padding: 0;
}
.serverDropdown > li {
    padding: 10px;
}
.serverDropdown > li + li {
    padding-top: 0;
}
.serverDropdown .radioBtn {
    width: 100%;
}

/*   /Takeaway Page */


/* Select Customer */
.selectCustomerCol {
	margin: 0 auto;
	max-width: 600px;
	border-radius: 15px;
	padding: 45px 40px;
	background-color: var(--dark);
}
.selectCustomerPage {
	background-image: url('../images/bg-shape.svg');
	background-size: cover;
	background-position: center;
	min-height: 100vh;
}
/*   /Select Customer */



/*  Order Review  */
.actionIcon {
	border: none;
	padding: 0;
	background-color: transparent;
    transition: color var(--tDuration) ease-in-out 0s;
}
.actionIcons {
	display: flex;
	row-gap: 10px;
	column-gap: 16px;
}
.actionIcon:hover {
    color: var(--primary);
}
.totalPriceLg {
	font-size: 26px;
	line-height: 1.2;
}
/*   / Order Review  */

/*  Order Review Edit */
.proDetailImg {
	border-radius: 20px;
	width: 200px;
	aspect-ratio: 32 / 25;
	object-fit: cover;
}
.proDetailContent {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.proDetailLbl {
    display: flex;
    flex: 0 0 auto;
    width: 140px;
}
.proDetailVal {
	width: 100%;
}
/*   / Order Review Edit */


/* choose payment */
.paymentRow {
    --pTriggerWd: 160px;
    --pCenterWd: 760px;
}
.choosePaymentTrigger {
    width: var(--pTriggerWd);
    display: flex;
	flex-direction: column;
    gap: 20px;
}
.choosePaymentTrigger > button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 15px;
	padding: 20px;
	background-color: var(--dark);
	border-radius: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}
.choosePaymentTrigger > button.active {
    background-color: var(--primary);
}
.pCenterCol {
    width: var(--pCenterWd);
}
.couponFldCol .form-control, .couponFldCol .btn {
    font-size: 14px;
}
.couponFldCol .form-control {
    border-radius: 30px;
}
.form-select.tableSelect {
	font-size: 14px;
	min-width: 100px;
	padding: 4px 20px 4px 8px;
	background-position: right 5px center;
}
.tableStyle2 {
    --thBr: 10px;
    --pdY: 15px;
    --pdX: 12px;
}
.tableStyle2 > thead > tr > th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 500;
}
.tableStyle2 > thead > tr > th:first-child {
    border-top-left-radius: var(--thBr);
    border-bottom-left-radius: var(--thBr);
}
.tableStyle2 > thead > tr > th:last-child {
    border-top-right-radius: var(--thBr);
    border-bottom-right-radius: var(--thBr);
}
.tableStyle2 > thead > tr > th,
.tableStyle2 > tbody > tr > th, 
.tableStyle2 > tbody > tr > td {
    padding: var(--pdY) var(--pdX);
}
.page-item.disabled {
    opacity: 0.5;
}
.pageLink {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 24px;
}
.paginationStyle .page-link {
    min-width: 40px;
    text-align: center;
    border-radius: 4px;
    font-weight: 500;
    --bs-pagination-bg: var(--dark);
    --bs-pagination-border-color: rgba(255,255,255,0.4);
    --bs-pagination-color: var(--white);
    --bs-pagination-hover-color: var(--white);
    --bs-pagination-hover-bg: var(--primary);
    --bs-pagination-hover-border-color: var(--primary);
}
.paginationStyle .page-link.primary {
    --bs-pagination-bg: var(--primary);
    --bs-pagination-border-color: var(--primary);
}
.tenderLink {
	display: block;
	text-align: center;
	padding: 10px;
	background-color: var(--white);
	border-radius: 10px;
}
.tenderLink > svg {
	width: 70px;
	height: auto;
}
.promotionsCol {
	background: linear-gradient(to right, #e9cdd0 0%,#e4898f 100%);
    color: var(--dark);
	padding: 12px 24px;
	border-radius: 10px;
}
/* transfer options */
.tfOptionsStyle {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tfOptionsStyleText h4 {
    margin: 0;
}
.tfOptionsStyle > a {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: transparent;
    transition: all var(--tDuration) ease-in-out 0s;
}
.tfOptionsStyle>a:hover {
    background-color: var(--primary);
}
.tfOptions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.transferOptionsPage {
    background-image: url(../images/bg-shape.svg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}
.dflexCol {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tableItemList>ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.tableItemList>ul>li {
    padding-left: 30px;
    font-size: 14px;
    position: relative;
}
.tableItemList>ul>li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url(../images/check-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.underlineLink {
	text-decoration: underline;
}
.dotOptionTrigger {
	display: flex;
	--size: 30px;
	width: var(--size);
	height: var(--size);
	align-items: center;
	justify-content: center;
	background-color: var(--black);
	border-radius: 50%;
    cursor: pointer;
}

.totalLbl, .totalVal {
    font-size: 18px;
    font-weight: 600;
}

.cashCalculator {
	overflow: hidden;
	border: 1px solid var(--borderColor);
	border-radius: 10px;
}
.btn.cashCalBtn {
	background-color: var(--dark);
	border-radius: 0;
	border: 1px solid var(--borderColor);
	padding: 10px;
	width: calc(100% + 2px);
	margin: -1px;
}
.btn.cashCalBtn:hover {
    background-color: var(--black);
}
.btn.cashCalBtn:focus, .btn.cashCalBtn:active {
    border-color: var(--borderColor);
}

.paymentDetailSidebar {
    /* width: 340px; */
}
.cPaymentProImg img {
	width: 130px;
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
}

.stickyCol {
    position: sticky;
    left: 0;
    z-index: 10;
    box-shadow: 1px 0px var(--borderColor) !important;
}
td.stickyCol {
	background-color: #373636 !important;
}
.revenueTableCol {
	--br: 20px;
	--xPd: 12px;
	--yPd: 14px;
}
.revenueTableCol thead th.stickyCol {
    box-shadow: 1px 0px rgba(255, 255, 255, 0.2) !important;
}
thead .stickyCol {
    z-index: 11;
}
.revenueTableCol thead th {
	--bs-table-bg: var(--primary);
	border-color: rgba(255,255,255,0.3);
}
.revenueTableCol th, .revenueTableCol td {    
	padding: var(--yPd) var(--xPd);
    font-size: 16px;
}
.revenueTableCol th {
    font-weight: 500;
}
.table-responsive.revenueTableCol {
	border-radius: var(--br);
}
.table-responsive.revenueTableCol > table {
	margin-bottom: 0;
}
.revenueTableCol thead > tr > th:first-child {
    border-top-left-radius: var(--br);
}
.revenueTableCol thead > tr > th:last-child {
    border-top-right-radius: var(--br);
}
.revenueTableCol tbody > tr:last-child > td:first-child {
    border-bottom-left-radius: var(--br);
}
.revenueTableCol tbody > tr:last-child > td:last-child {
    border-bottom-right-radius: var(--br);
}
.revenueTableCol tbody > tr > td:first-child, .revenueTableCol thead > tr > th:first-child {
	border-left: none;
}
.revenueTableCol tbody > tr > td:last-child, .revenueTableCol thead > tr > th:last-child {
	border-right: none;
}
.revenueTableCol tbody > tr:last-child  {
    border-bottom: none;
}
.revenueTableCol thead > tr:first-child  {
    border-top: none;
}
.revenueTableCol tbody > tr:last-child > td {
    padding-bottom: calc(var(--yPd) + 5px);
}
.simpleIconBtn {
	border: none;
	background-color: transparent;
	padding: 0;
}
#addRevenueModal .btn.cashCalBtn {
	padding: 16px 10px;
}
.plusTriggerIcon {
	width: 12px;
	height: auto;
}

/* login */
.loginScreen {
    min-height: 100vh;
    background-color: var(--black);
    padding: 20px;
}
.loginForm {
    background-color: var(--dark);
    margin: 0 auto;
	padding: 50px;
	max-width: 600px;
	width: 100%;
    border-radius: 40px;
    border: 1px solid var(--borderColor);
}
.loginLogoCol svg {
    max-width: 100%;
}
.loginLogoCol {
	text-align: center;
    padding-bottom: 30px;
}
.loginLogoCol svg {
    max-width: 100%;
    height: auto;
    width: 320px;
}
.tabBoxStyle {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 184px;
	min-height: 100%;
	justify-content: center;
	align-items: center;
}
.tabTabIcon {
	height: 75px;
	width: auto;
	object-fit: contain;
}
.tableWithText {
	display: block;
	position: relative;
}
.tableText {
	position: absolute;
	left: 50%;
	max-width: 80px;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	color: var(--dark);
    font-weight: 500;
    pointer-events: none;
}
.tableCol > .tableInput:checked ~ label .tableText {
    color: var(--primaryDark);
}
.tableText > li + li {
    padding-top: 5px;
}
.tableText > li {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    line-height: 1;
}
.tableNumber {
    font-size: 18px;
}
.personIcon {
	width: 14px;
	height: auto;
}
.promotionsInnerCol {
    max-height: 80px;
    overflow-y: auto;
}
.cardStyle.minWdCardStyle {
    min-width: 230px;
    --xSpace: 12px;
}
.cardStyle.minWdCardStyle .lblValList {
    padding-left: 0;
    padding-right: 0;
    font-size: 15px;
}


/* No of Chairs */

.noOfChairModalInner {
    max-height: 190px;
    overflow-y: auto;
}
.tblBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 5px 15px;
    border: 1px solid;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}
.btnOutlinePrimary {
    border-color: var(--primary);
    color: var(--primary);
}
.btnOutlineSuccess {
    border-color: var(--success);
    color: var(--success);
}
.tblBtnCol {
    display: flex;
    align-items: center;
    gap: 15px;
}
.selectCustomerCol.dladdress {
    max-width: 800px;
}
.dladdress .form-check label {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.time-box, .custom-date-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    font-size: 16px;
    position: relative;
    color: var(--white);
}
.clock-btn {
    background-color: var(--white);
    color: var(--black);
    border-radius: 4px;
    padding: 3px 10px;
    border: none;
    font-weight: 500;
}
.custom-date-box input[type="date"] {
    background: transparent;
    border: none;
    outline: none;
    pointer-events: none; /* Prevent direct click */
}
.custom-date-box::-webkit-calendar-picker-indicator {
    filter: invert(1);
}
.custom-date-box input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}
.clkCol {
    display: flex;
    gap: 15px;
}
.tblIcons {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    gap: 5px;
}
.tblIcons svg {
    border-radius: 4px;
}
.cTimeCol {
    position: absolute;
    left: 12px;
    bottom: 12px;
    font-size: 14px;
}


/**** calendar Modal *****/

.cmBookingModalLink {
    position: absolute;
    left: 150px;
    top: 295px;
}
.mdUser {
    padding: 20px;
    background-color: var(--dark);
    border-radius: 20px;
    max-width: 160px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 20px;
    font-weight: 700;
}
.mdAddress {
    text-align: center;
    margin: 25px 0;
    font-size: 14px;
    font-weight: 300;
    gap: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.mdAddress span {
    position: relative;
}
.mdAddress span + span::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 6px;
    bottom: 0;
    background-color: rgba(255,255,255,0.6);
    width: 1px;
    height: 12px;
}
#cmBookingModal .radioBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
}
#cmBookingModal .modal-body {
    padding: 15px;
}
#acceptBtn.active {
    background-color: green;
}
#rejectBtn.active {
    background-color: #E94D59;
}
#acceptBtn.active span.btnText::after, #rejectBtn.active span.btnText::after {
    content: "ed";
}
/* #noShowBtn:not(.active) span.btnText::before {
    content: "No ";
} */
#noShowBtn span.eye-icon {
    position: relative;
}
#noShowBtn .eye-icon svg.eyeIcon {
    position: absolute;
    left: 0;
    opacity: 0;
}
.active#noShowBtn .eye-icon svg.eyeIcon {
    opacity: 1;
}
.active#noShowBtn .eye-icon svg.eyeSlashIcon {
    opacity: 0;
}
.active#noShowBtn {
    background-color: #E94D59;
}

@media (min-width: 575px) {
    #mEditModal .modal-dialog.modal-xl {
        max-width: 1350px;
        width: 98%;
        --modalXSpace: 20px 
    }
}
@media (min-width:1200px) {
    .container.takeawayContainer {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
    }
    .cartSidebar, .categoryCol {
        top: var(--topSpace);
        margin-bottom: 20px;
        position: sticky;
        z-index: 2;
    }
}
@media (min-width:1200px) and (max-width:1399px) {
    .container {
        max-width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width:1399px) {
    .navStyle {
        gap: 40px;
    }
    .navItem {
        gap: 0px;
        font-size: 16px;
    }
    .tableImg {
        height: 140px;
        width: auto;
    }
    .infoIcon, .checkSquareIcon {
        width: 20px;
        height: auto;
    }
    .lgTitle {
        font-size: 26px;
    }
    .lgTitle {
        font-size: 22px;
    }
    .mdTitle {
        font-size: 20px;
    }
    .totalPriceLg {
        font-size: 22px;
    }
    .tabStyle .nav-link {
        font-size: 18px;
    }
    .tabNavIcon {
        width: auto;
        height: 26px;
    }
    .navIcon {
        width: auto;
        height: 34px;
    }
    .ddItemIcon {
        width: 22px;
    }
    .btn {
        font-size: 16px;
    }
    .btnIcon {
        width: auto;
        height: 18px;
    }
    .pageContent {
        --topSpace: 110px;
    }
    .takeawayContent {
        --cartSidebarWd: 280px;
    }
    .paymentRow {
        --pTriggerWd: 120px;
        --pCenterWd: 660px;
    }
    .choosePaymentTrigger > a {
        gap: 10px;
        padding: 10px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 15px;
    }
}

@media (max-width:1199px) {
    .navStyle {
        gap: 24px;
    }
    .navItem {
        font-size: 16px;
    }
    .tableSection {
        padding: 10px;
        border-radius: 10px;
    }
    .tableStyle {
        --xSpace: 8px;
        --ySpace: 8px;
        --thYSpace: 12px;
    }
    .tableStyle thead th {
        font-size: 16px;
    }
    .tableStyle tbody td {
        font-size: 14px;
    }
    .proDetail {
        font-size: 12px;
    }
    .modalStyle {
        --modalXSpace: 15px;
        --modalYSpace: 20px;
        --gap: 10px;
    }
    .menuSection {
        max-width: 100%;
        --sideSpace: 0;
    }
    .categoryCol, .cartSidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        height: auto;
        z-index: 100;
        transition: all var(--tDuration) ease-in-out 0s;
    }
    .categoryCol {
        left: 0;
        transform: translateX(-100%);
    }
    .cartSidebar {
        right: 0;
        transform: translateX(100%);
    }
    .actCategory .categoryCol, .actCartSidebar .cartSidebar {
        transform: translateX(0);
    }
    .backDrop {
        position: fixed;
        inset: 0;
        background-color: var(--black);
        opacity: 0;
        pointer-events: none;
        z-index: 99;
    }
    .actCategory .backDrop, .actCartSidebar .backDrop {
        opacity: 0.8;
        pointer-events: initial;
    }
    .takeawayContent {
        --categoryWd: 280px;
    }
    .mdText {
        font-size: 18px;
    }
    .paymentRow {
        --pTriggerWd: 100px;
        --pCenterWd: 560px;
    }
    .promotionsCol {
        padding: 10px 16px;
    }
    .tenderLink > svg {
        width: 60px;
    }
    .checkoutSummaryCol {
        font-size: 14px;
    }
}

@media (max-width:991px) {
    .menuColMain {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: 280px;
        padding: 20px;
        overflow-y: auto;
        background-color: var(--dark);
        z-index: 99;
        transform: translateX(-100%);
        transition: transform var(--tDuration) ease-in-out 0s;
    }
    .actNav .menuColMain {
        transform: translateX(0);
    }
    .actNav .menuBackdrop {
        opacity: 0.4;
        pointer-events: initial;
    }
    .navStyle {
        flex-direction: column;
        align-items: initial;
        gap: 15px;
    }
    .navItem {
        flex-direction: initial;
        gap: 12px;
    }
    .navIcon {
        width: 30px;
        height: auto;
    }
    .seatingArea {
        padding: 15px;
    }
    .tableCol {
        --iconPosition: 8px;
    }
    .tableNumber {
        font-size: 16px;
    }
    .tableText > li {
        gap: 4px;
    }
    .tableCol > label {
        padding: 30px;
        border-radius: 10px;
    }
    .radioBtn {
        padding: 8px 12px;
        border-radius: 6px;
    }
    .tfOptions {
        gap: 15px;
    }
    .tfOptionsStyle>a {
        padding: 30px;
    }
    .tfOptionsStyleImg>img {
        max-width: 54px;
    }
    .formStyle label.form-label {
        font-size: 14px;
    }
    .formStyle .form-select {
        font-size: 14px;
    }
    .paymentRow {
        --pTriggerWd: 100%;
        --pCenterWd: 100%;
    }
    .choosePaymentTrigger {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    .choosePaymentTrigger > a {
        flex: 1 0 0%;
    }
    .paymentOrderImg {
        width: 120px;
    }
    .paymentDetailSidebar {
        width: 100%;
    } 
    .tableStyle2 td {
        white-space: nowrap;
    }
    .selectCustomerCol.dladdress {
        max-width: 100%;
    }
    .tblIcons {
        right: 8px;
        bottom: 8px;
    }
    .tblIcons svg {
        width: 20px;
    }
}
@media (max-width:767px) {
    .logoCol svg {
        display: block;
        width: auto;
        height: 42px;
    }
    .uName {
        display: none;
    }
    .hProfileTrigger {
        --imgSize: 40px;
    }
    .headerRow {
        padding: 10px 35px;
    }
    .tabStyle .nav-link {
        font-size: 16px;
    }
    .bottomBar {
        padding: 10px 0;
    }
    .pageContent {
        --topSpace: 75px;
        --btmSpace: 70px;
    }
    .iconBtn {
        gap: 4px;
    }
    .btn {
        padding: 12px 24px;
    }
    .tabSearchInput {
        width: 220px;
    }
    .tabStyle .nav-link {
        padding: 0 0 10px;
    }
    .mSectionTopCol {
        padding-bottom: 12px;
    }
    .modalBodyStyle {
        padding: 10px;
        border-radius: 10px;
    }
    .menuProCol {
        --pd: 12px;
        border-radius: 10px;
    }
    .selectCustomerCol {
        padding: 35px 20px;
    }
    .mdText {
        font-size: 16px;
    }
    .cardStyle {
        --xSpace: 15px;
        --ySpace: 14px;
        border-radius: 10px;
    }
    .proDetailImg {
        width: 180px;
    }
    .tabSearchInput.mbFullWd {
        width: 100%;
    }
    .tableFilterBtns .radioBtn {
        flex: 1 0 0;
        white-space: nowrap;
    }
    .revenueTableCol {
        --xPd: 12px;
        --yPd: 12px;
        --br: 10px;
        font-size: 14px;
    }
    .loginScreen {
        padding: 16px;
    }
    .loginForm {
        padding: 40px 30px;
        border-radius: 20px;
    }
    .choosePaymentTrigger > a {
        white-space: nowrap;
        min-width: 120px;
    }
    .dladdress .form-check label {
        display: block;
    }
    .dladdress .form-check label span {
        display: block;
    }
    .dladdress .form-check label span + span {
        margin-top: 10px;
    }
}
@media (max-width:575px) {
    .lgTitle {
        font-size: 20px;
    }
    .mdTitle {
        font-size: 18px;
    }
    .multiSelectTrigger {
        font-size: 14px;
    }
    .formStyle.searchStyle .form-control {
        font-size: 14px;
        padding: 12px 30px 12px 10px;
    }
    .tabSearchInput {
        width: 190px;
    }
    .proDetailImg {
        width: 140px;
    }
    .cardStyle {
        --xSpace: 10px;
        --ySpace: 10px;
    }
    .tableStyle2 {
        --thBr: 8px;
        --pdY: 12px;
        --pdX: 10px;
        font-size: 14px;
    }
    .choosePaymentTrigger > a {
        font-size: 14px;
        min-width: 100px;
    }
    .cPaymentProImg img {
        width: 100%;
        height: auto;
        max-height: 250px;
    }
    .loginForm {
        padding: 40px 15px;
    }
    .loginLogoCol svg {
        width: 260px;
    }
    .tableImg {
        height: 120px;
    }
    .tableCol > label {
        padding: 30px 14px 20px;
    }
    .tableCol > label.tabBoxStyle {
        padding: 30px 20px 20px;
    }
    .tabBoxStyle {
        gap: 15px;
        min-width: 150px;
    }
    .tableText, .tableNumber {
        font-size: 14px;
    }
    .mbFullWd {
        width: 100%;
    }
    .mProType {
        gap: 4px;
    }
    .mProType .typeIcon {
        width: 24px;
        height: auto;
    }
    .time-box, .custom-date-box {
        gap: 6px;
        padding: 6px 8px;
        font-size: 14px;
    }
}
@media (max-width:475px) {
    .time-box, .custom-date-box {
        justify-content: space-between;
    }
    .clkCol {
        flex-direction: column;
        gap: 10px;
    }
}

.pref-checkbox {
    display: none;
}

/* sync loader style */
.orderart-fullpage-loader {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
}

.orderart-loader-content {
  text-align: center;
  color: var(--primary); /* Use theme primary color */
}

.orderart-spinner {
  animation: spin 1s linear infinite;
  margin-bottom: 18px;
}

.orderart-loader-text {
  color: var(--primary); /* Use theme primary color */
  font-size: 1.25rem;
  font-family: 'Poppins', 'Arial', sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
}

.orderart-loader-text b {
  color: var(--primary); /* Use theme primary color */
  font-weight: 700;
}

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

/**** Deals Page Start *****/

.dealTopRow {
    border-bottom: 1px solid var(--borderColor);
    padding-bottom: 15px;
}
.dealsSection .sbRow {
    flex-direction: column;
    align-items: self-start;
    gap: 6px;
    margin-bottom: 5px;
}
.dealSidebar .cartSidebarPannel > .mProTopRow {
    padding-left: 0;
}
.addItemsCol {
    background-color: var(--black);
    border-radius: 10px;
    margin: 10px 0 0;
    padding: 10px;
}
.addItemsCol > ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.addItemsCol > ul > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
}
.addItemsCol > ul > li > a > span > img {
    display: block;
}
.addItemsCol > ul > li > a > span.infoToolIcon > img {
    max-width: 15px;
}
