@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Product detail: image enlarge indicator and zoom modal */
.pd-image-wrapper .pd-enlarge-indicator{
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: 44px;
	height: 44px;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background: #fff;
	color: #000;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,.25);
	opacity: 0;
	transition: opacity .2s ease-in-out;
	pointer-events: none; /* enable on hover only */
}
@media (hover: hover) and (pointer: fine){
	.pd-image-wrapper:hover .pd-enlarge-indicator{ opacity: 1; pointer-events: auto; }
	.pd-image-wrapper .carousel-inner img{ cursor: zoom-in; }
}
@media (max-width: 767.98px){
	/* keep UI clean on mobile, users can still tap to open modal */
	.pd-image-wrapper .pd-enlarge-indicator{ display: none; }
}

.zoom-modal{ background: rgba(0,0,0,.58); }
.zoom-modal .modal-dialog{ max-width: min(96vw, 1200px); }
.zoom-modal .modal-content{ background: transparent; border: 0; box-shadow: none; }
.zoom-modal .modal-body{ position: relative; }
.zoom-pan-container{
	position: relative;
	width: 100%;
	height: min(86vh, 900px);
	overflow: hidden;
	background: transparent;
	touch-action: none; /* enable custom pinch/drag */
	user-select: none;
}
.zoom-pan-container img{
	position: absolute;
	left: 50%;
	top: 50%;
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
	transform: translate(-50%, -50%) scale(1);
	will-change: transform;
}
.zoom-close-btn{
	position: absolute;
	z-index: 3;
	top: 12px;
	right: 12px;
	left: auto;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,0.96);
	color: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 28px rgba(0,0,0,.2);
	padding: 0;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.zoom-close-btn.is-ready{
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.zoom-close-btn:hover{
	background: #fff;
	transform: scale(1.04);
	box-shadow: 0 12px 30px rgba(0,0,0,.24);
}
.zoom-close-btn i{
	font-size: 1.1rem;
	line-height: 1;
}
.mobile-image-viewer{
	position: fixed;
	inset: 0;
	z-index: 2000;
	display: none;
	background: rgba(0,0,0,.72);
	padding-top: env(safe-area-inset-top);
	padding-right: env(safe-area-inset-right);
	padding-bottom: env(safe-area-inset-bottom);
	padding-left: env(safe-area-inset-left);
}
.mobile-image-viewer.is-open{
	display: flex;
	align-items: center;
	justify-content: center;
}
.mobile-image-viewer-inner{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
}
.mobile-image-viewer img{
	display: block;
	max-width: calc(100vw - 1rem - env(safe-area-inset-left) - env(safe-area-inset-right));
	max-height: calc(100dvh - 1rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
	width: auto;
	height: auto;
	object-fit: contain;
}
.mobile-image-viewer-close{
	position: absolute;
	top: calc(env(safe-area-inset-top) + 12px);
	right: calc(env(safe-area-inset-right) + 12px);
	z-index: 1;
	width: 46px;
	height: 46px;
	border: 0;
	border-radius: 999px;
	background: rgba(255,255,255,0.96);
	color: #111;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 28px rgba(0,0,0,.2);
	padding: 0;
}
.mobile-image-viewer-close i{
	font-size: 1.1rem;
	line-height: 1;
}
body.mobile-image-viewer-open{
	overflow: hidden;
}
@media (max-width: 767.98px){
	.zoom-modal .modal-dialog{
		max-width: 100vw;
		margin: 0;
		height: 100dvh;
	}
	.zoom-modal .modal-content{
		min-height: 100dvh;
		border-radius: 0;
	}
	.zoom-modal .modal-body{
		min-height: 100dvh;
		padding-left: 0;
		padding-right: 0;
		padding-top: env(safe-area-inset-top);
		padding-bottom: env(safe-area-inset-bottom);
	}
	.zoom-pan-container{
		height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
		height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0.5rem;
		overflow: hidden;
	}
	.zoom-pan-container img{
		position: static;
		left: auto;
		top: auto;
		transform: none !important;
		width: auto;
		height: auto;
		max-width: calc(100vw - 1rem);
		max-height: calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1rem);
		object-fit: contain;
		will-change: auto;
	}
	.zoom-close-btn{
		position: fixed;
		top: calc(env(safe-area-inset-top) + 12px) !important;
		right: 12px !important;
		left: auto !important;
	}
}

html,
body {
	margin: auto;
	font-family: 'Lato' !important;
	font-size: 14px;
}

footer {
	margin-top: 20px;
	font-size: 13px;
}

a {
	text-decoration: none;
}

.tophr {
	margin-left: 15px;
	margin-top: 5px !important;
	opacity: .70;
	color: #9b9999;
}

.custom-tooltip {
	--bs-tooltip-bg: var(--bs-primary);
}

.form-control::placeholder {
	opacity: 0.6 !important;
	font-size: 9.5pt !important;
	font-style: italic;
}

.form-control::-moz-placeholder {
	opacity: 0.6 !important;
	font-size: 9.5pt !important;
	font-style: italic;
}

.text-secondary-gv {
	--bs-text-opacity: 0.6;
	color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
	font-size: 9.5pt !important;
}

/* Overflow */
/*
.list-group-flush>.list-group-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
*/

/* Mobile Sidebar - Offcanvas */
.offcanvas-footer {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x);
}
.offcanvas-footer .offcanvas-footer-row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}
.offcanvas-footer .review-google-row {
	margin-bottom: 0.75rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid rgba(0,0,0,.1);
}

/* Promotion Block */
.promotion-block {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	text-align: center;
	padding: 0px 20px;
}

.promotion-block a {
	text-decoration: none !important;
}

.promo-text {
	opacity: 0;
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
	transition: opacity 0.8s ease-in-out;
	text-align: center;
}

#promoText p {
	margin-bottom: 0px !important;
}

.promo-text.visible {
	opacity: 1;
}

/* Timer */
.timer {
	position: absolute;
	font-size: 14px;
	letter-spacing: 1.2;
	display: none;
}

.timer-content {
	display: flex;
	align-items: center;
}

.timer-content>span {
	padding-left: 8px;
}

.timer-content>label {
	padding-left: 5px;
}

/* Cursor */
a,
li.list-group-item>div>div>label>span,
li.list-group-item>div>i,
li.list-group-item>div>div>label>div>label,
li.list-group-item>div>label>div>div>span,
table.SelectTimeTable>tbody>tr>td,
.calendar_arrow_padding>i {
	cursor: pointer !important;
}
.carousel-item img{
	max-height: 425px !important;
	object-fit: contain;
}
/* Add to Calendar Button */
add-to-calendar-button.atcb-light {
	--btn-background: var(--bs-primary);
	--btn-background-hover: var(--bs-primary);
	--btn-border: var(--bs-primary);
	--btn-text: var(--btn-text-col);
	--font: 'Lato';
	--bs-btn-font-size: 1rem;
	--bs-btn-font-weight: 400;
	--bs-btn-line-height: 1.5;
}

/* Button */
button,
a.btn {
	border-radius: 3px !important;
	text-transform: uppercase;
	font-size: 14px !important;
	font-weight: 600 !important;
}

a>label {
	text-decoration: underline !important;
}

.btn-landing {
	padding: 25px 85px;
}

.ValidationError {
	color: var(--bs-danger) !important;
	text-transform: none !important;
	font-weight: 500 !important;
}

/* Content */
.label-i10 {
	font-size: 14px;
	font-style: italic;
}

.MainTitle {
	font-size: 24px;
	font-style: italic;
}

.timeout-icon {
	font-size: 75px;
}

.list-group {
	font-size: 13px;
}

.avatar {
	box-sizing: border-box;
	max-height: 75px !important;
	border: 2px solid var(--bs-primary);
	border-radius: 50%;
	display: inline-flex;
	position: relative;
	text-align: center;
	vertical-align: middle;
}

.avatar.avatar-lg .avatar-content,
.avatar.avatar-lg img {
	width: 60px;
	height: 60px;
	object-fit: cover;
}

.avatar img {
	border-radius: 50%;
}

.card-header-border {
	border-bottom: none;
}

.credit-card-dot {
	font-size: 2.5rem !important;
}

h6.fw-bold.px-4 {
	line-height: inherit;
}

/* MakeAppontment */
.font-success {
	font-size: 28px;
}

.table>:not(caption)>*>* {
	padding: 0.3rem 0.5rem !important;
}

/* Calendar */
.CalSelable {
	cursor: pointer;
	background-color: transparent !important;
}

.CalSel {
	width: 40px;
	height: 40px;
	text-align: center;
	margin: auto;
}

.CalClosed {
	background-color: transparent !important;
	color: #dad5d5 !important;
}

.TimePeriodTitle {
	font-size: 15px;
	font-style: italic;
}

.calendar_arrow_padding {
	padding: 5px !important;
}

.homeIcon {
	z-index: 1;
}

/* Scrollbar */
::-webkit-scrollbar {
	width: 8px;
}

::-webkit-scrollbar-track {
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

::-webkit-scrollbar-thumb {
	-webkit-border-radius: 0px;
	border-radius: 0px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type=number] {
	-moz-appearance: textfield;
}

.modal {
	background-color: #00000033;
}

.modal-dialog {
	margin: auto;
}

.modal-sm {
	width: 250px;
}

.label-span {
	display: block;
}

.card {
	--bs-card-spacer-y: 0.5rem;
	--bs-card-spacer-x: 0px;
	--bs-card-border-radius: 0px;
}

.app-date {
	background-color: var(--bs-secondary-bg);
}

.btn-xs {
	font-size: 7.5pt !important;
	padding: 0.175rem;
}

/* Promo chip sizing */
.promo-chip {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.22rem 0.6rem 0.10rem 0.6rem !important; /* top right bottom left */
    line-height: 1 !important;
    vertical-align: middle !important;
    gap: 0.5rem !important; /* ensure visual spacing between code and amount */
}

.promo-chip .promo-amt {
    margin-left: 0 !important;
}
.promo-chip .promo-gap{ display:inline-block; width: 0.5rem; }

.card-header {
	background-color: var(--bs-body-bg);
	border-bottom: 0px;
}

.tr-heading {
	background-color: #FAFAFA;
}

.accordion {
	--bs-accordion-border-radius: 0 !important;
	--bs-accordion-btn-padding-x: 0.8rem;
	--bs-accordion-btn-padding-y: 0.7rem;
	--bs-accordion-btn-focus-border-color: transparent;
}

.accordion-button,
.accordion-button:not(.collapsed) {
	background-color: transparent;
	box-shadow: none;
}

.accordion-header .table>:not(caption)>*>* {
	padding: 0px !important;
}

.accordion-button::after {
	display: none !important;
}

.accordion-button:focus {
	z-index: 3;
	border-color: transparent;
	outline: 0;
	box-shadow: none;
}

.accordion-header .row {
	--bs-gutter-x: 0 !important;
}

.bg-secondary-light {
	background-color: var(--bs-secondary-bg);
}


/* Animated Icons */
@-webkit-keyframes checkmark {
	0% {
		stroke-dashoffset: 100px
	}

	100% {
		stroke-dashoffset: 200px
	}
}

@-ms-keyframes checkmark {
	0% {
		stroke-dashoffset: 100px
	}

	100% {
		stroke-dashoffset: 200px
	}
}

@keyframes checkmark {
	0% {
		stroke-dashoffset: 100px
	}

	100% {
		stroke-dashoffset: 0px
	}
}

@-webkit-keyframes checkmark-circle {
	0% {
		stroke-dashoffset: 480px
	}

	100% {
		stroke-dashoffset: 960px;

	}
}

@-ms-keyframes checkmark-circle {
	0% {
		stroke-dashoffset: 240px
	}

	100% {
		stroke-dashoffset: 480px
	}
}

@keyframes checkmark-circle {
	0% {
		stroke-dashoffset: 480px
	}

	100% {
		stroke-dashoffset: 960px
	}
}

@keyframes colored-circle {
	0% {
		opacity: 0
	}

	100% {
		opacity: 100
	}
}

.inlinesvg .svg svg {
	display: inline
}

.icon--order-success svg polyline {
	-webkit-animation: checkmark 0.25s ease-in-out 0.7s backwards;
	animation: checkmark 0.25s ease-in-out 0.7s backwards
}

.icon--order-success svg circle {
	-webkit-animation: checkmark-circle 0.6s ease-in-out backwards;
	animation: checkmark-circle 0.6s ease-in-out backwards;
}

.icon--order-success svg circle#colored {
	-webkit-animation: colored-circle 0.6s ease-in-out 0.7s backwards;
	animation: colored-circle 0.6s ease-in-out 0.7s backwards;
}

.agree-chk-required {
	border-color: var(--bs-danger);
}

.agree-lbl-required {
	color: var(--bs-danger);
}

.olb-product::before {
	content: "";
	height: 20px;
	width: 20px;
	background-size: 20px 20px;
	background-image: url(./img/product.svg);
	background-repeat: no-repeat;
}

.accordion-item {
	border: 0px;
}

/* button.navbar-toggler.menu {
	border: unset !important;
} */

.form-control:focus {
	color: var(--bs-body-color);
	background-color: var(--bs-form-control-bg);
	border-color: var(--bs-primary);
	outline: 0;
	box-shadow: inset 0 0 0 .15rem var(--bs-primary);
}

.navbar-toggler:focus {
	text-decoration: none;
	outline: unset !important;
	box-shadow: none !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	background: 0 0 !important;
	/* border-color : var(--bs-primary) !important; */
	border: 0px !important;
	border-bottom: 2px solid var(--bs-primary) !important;
	border-radius: 0px !important;
	text-decoration: none !important;
	outline: unset !important;
	--bs-btn-focus-box-shadow: unset !important;
	--bs-btn-focus-border-color: unset !important;
	--bs-btn-focus-shadow-rgb: unset !important;
	--bs-btn-focus-shadow: unset !important;
	--bs-btn-hover-border-color: unset !important;
	--bs-btn-hover-box-shadow: unset !important;
}

.nav-tabs .nav-link:focus,
:focus-visible,
:focus-within .nav-tabs .nav-link:hover {
	border: 0px !important;
	border-radius: 0px !important;
	outline: unset !important;
	transition: unset !important;
	text-decoration: none !important;
	--bs-btn-focus-box-shadow: unset !important;
	--bs-btn-focus-border-color: unset !important;
	--bs-btn-focus-shadow-rgb: unset !important;
	--bs-btn-focus-shadow: unset !important;
	--bs-btn-hover-border-color: unset !important;
	--bs-btn-hover-box-shadow: unset !important;
}

/* Only Desktop Css */
@media (min-width:700px) {

	html,
	body {
		/* max-width: 1200px !important; */
		/* max-height: 946px !important; */
		overflow: hidden;
	}

	nav,
	main {
		max-width: 1200px !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	/* Keep desktop footer content aligned with header/logo & main content */
	.footer-fix-bottom .footer > .footer-inner {
		max-width: 1200px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		padding-left: 1rem;
		padding-right: 1rem;
	}


	/* Extra Test Style Start 
	https://codepen.io/megkadams/pen/apJvrp
	*/
	#contentWrapper {
		display: flex;
		width: 100%;
		flex-direction: row;
		height: 100%;
		min-height: 100vh;
	}

	#appContentWrapper {
		display: block;
		width: calc(100% - 280px);
		flex: 1;
		height: 100%;
		min-height: 100vh;
		position: absolute;
		top: 0;
		right: 280px;
		bottom: 0;
		left: 0;
	}

	/*.sidebar{
		position: fixed;
		right: 0;
	}*/
	/* Extra Test Style End */

	.header-fix-top {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020;
	}

	.footer-fix-bottom {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1020;
		background-color: #545454; /* match footer bg to eliminate gap beside sidebar */
	}

	.DeskHide {
		display: none;
	}


	.ServiceAnim>.collapsing,
	.ServiceAnim>.collapse.show {
		/* Only for Service Page */
		max-width: 25vh;
	}

	/*
	.sidebar{
		width: 280px !important;
	} */

	/* NEW STYLE START */
	.landing-content-size {
		height: calc(946px - 200px);
		overflow-y: auto;
	}

	.content-size {
		height: calc(946px - 240px);
		overflow-y: auto;
	}

	.register-size {
		height: calc(946px - 240px);
		overflow-y: auto;
	}

	.refund-page-size,
	.landing-page-size,
	.recover-password-page-size,
	.login-page-size,
	.register-page-size {
		overflow-y: auto;
		padding-bottom: 180px !important;
	}

	.service-list-size {
		height: calc(100vh - 240px);
		overflow-y: auto;
	}

	.time-list-size {
		height: calc(100vh - 240px);
		overflow-y: auto;
	}

	.payment-list-size {
		overflow-y: auto;
	}

	.payment-page-size>form {
		max-height: 100% !important;
	}

	/*.SelectTimeTable{
		width: 30vh !important;
	}*/

	.HistoryTable>thead,
	.HistoryTable>tbody tr {
		display: table;
		width: 100%;
		table-layout: fixed;
	}

	.HistoryTable>thead {
		width: calc(100% - 1em);
	}


	.HistoryTable>tfoot {
		/* Only for PurchaseSuccess Screen */
		display: table;
		width: 100%;
		table-layout: fixed;
	}

	.PaymentHistory {
		display: block;
		height: calc(100vh - 375px) !important;
		overflow-y: auto !important;
	}

	.accordion {
		display: block;
		height: calc(100vh - 275px) !important;
		overflow-y: auto !important;
	}

	.right_arrow {
		width: 99.5% !important;
		height: 30px;
		position: relative;
		padding-top: 5px;
		text-align: center;
		z-index: -1;
	}

	.right_arrow:after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0;
		height: 30px;
	}

	.right_arrow:before {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		width: 0;
		height: 30px;
	}


	/* NEW STYLE END */

	.list-size {
		height: calc(100vh - 240px);
		overflow-y: auto;
	}

	.tandc-size {
		/*max-width: calc(100vh - 50px) !important;*/
		/*max-width: calc(100vh) !important;*/
		height: calc(100vh - 400px);
		overflow-y: auto;
	}

	.tandcGV-size {
		/*max-width: calc(100vh - 50px) !important;*/
		/*max-width: calc(100vh) !important;*/
		height: calc(100vh - 240px);
		overflow-y: auto;
	}

	.appointment-size {
		height: calc(100vh - 140px);
		overflow-y: auto;
	}

	.purchase-gv-size {
		height: calc(100vh - 225px);
		overflow-y: auto;
	}

	.main-padding-service {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.service-heading {
		margin-bottom: 0.5rem !important;
	}

	.service-list-padding {
		padding-right: 0.25rem !important;
		padding-left: 0.25rem !important;
	}

	.select-time-left-part {
		padding-left: 0 !important;
		padding-right: 0.25rem !important;
	}

	.select-time-right-part {
		padding-left: .25rem !important;
		padding-right: .45rem !important;
	}

	.d-padding-3 {
		padding-right: 1rem !important;
		padding-left: 1rem !important;
	}

	.d-padding-5 {
		padding-right: 3rem !important;
		padding-left: 3rem !important;
	}

	.d-margin-y-5 {
		margin-top: 3rem !important;
		margin-bottom: 3rem !important;
	}

	.d-white {
		--bs-bg-opacity: 1;
		background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
	}

	.d-border {
		border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
	}

	.label-span {
		width: 185px !important;
	}

	.list-group-item {
		padding: var(--bs-list-group-item-padding-y) 0;
	}

	.service-list-padding .bi-info-circle::before {
		cursor: pointer;
	}
}

/* Mobile CSS */
@media (max-width: 699px) {

	html,
	body {
		max-width: 100%;
		max-height: 100%
	}

	.row {
		--bs-gutter-x: 0 !important;
	}

	.header-fix-top {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		z-index: 1030;
	}

	.footer-fix-bottom {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1030;
	}

	/* Main content: minimal bottom padding so last controls sit just above the fixed footer */
	.landing-page-size {
		padding-bottom: 120px !important;
	}

	.MobHide {
		display: none;
	}

	.btn-landing {
		padding: 10px 5px 10px 5px;
	}

	/* NEW STYLE START */

	.register-size {
		height: auto;
		overflow-y: auto;
		margin-top: 100px !important;
		margin-bottom: 180px !important;
		padding-bottom: 45px;
	}

	.service-page-size,
	.time-page-size {
		margin-top: 80px !important;
		margin-bottom: 180px !important;
		/*margin-bottom: 340px !important;*/
	}

	.carousel-item img{
		max-height: 300px !important;
		object-fit: contain;
	}

	.time-page-size {
		padding-bottom: 140px !important;
	}

	.service-list-size {
		height: auto;
	}

	.time-list-size {
		height: auto;
	}

	.agreement-page-size {
		margin-top: 80px !important;
		padding-bottom: 310px !important;
	}

	.payment-page-size {
		padding-bottom: 170px !important;
		padding: 1rem;
	}

	.appointment-size {
		padding-bottom: 240px !important;
		padding: 1rem;
	}

	.history-size {
		margin-top: 80px !important;
		padding-bottom: 220px !important;
	}

	.refund-page-size {
		margin-top: 80px !important;
		padding-bottom: 220px !important;
	}

	.refund-size {
		height: auto;
		overflow-y: auto;
	}



	.right_arrow {
		text-align: start;
		padding: 10px;
	}

	/* .mobile-top-margin {
		margin-top: 90px !important;
	} */

	.purchase-gv-page-size {
		margin-top: 80px !important;
		padding-bottom: 200px !important;
	}

	/* NEW STYLE END */
	.list-group {
		font-size: 14px;
	}

	.list-size {
		height: calc(100vh - 270px);
		overflow-y: auto;
		/* padding-top: 280px;
		padding-bottom: 20px;*/
	}

	.service-list-padding .form-check-input[type=radio] {
		width: 20px;
		height: 20px;
	}

	.service-list-padding .bi-info-circle {
		font-size: 1.5rem !important;
		cursor: pointer;
	}

	.tandc-size {
		height: calc(100vh - 440px);
		overflow-y: auto;
		margin-bottom: 10px;
	}

	.tandcGV-size {
		height: calc(100vh - 370px);
		overflow-y: auto;
		margin-bottom: 10px;
	}

	.pageTitle {
		font-size: 18px;
	}

	.NoBorder {
		border-width: 0px !important;
	}

	.service-heading {
		padding: 0.2rem 1rem !important;
	}

	.select-time-left-part,
	.select-time-right-part {
		padding: 0 !important;
	}

	.select-time-part-margin {
		margin-right: 1rem !important;
		margin-left: 1rem !important;
	}

	.mobile-shadow {
		box-shadow: 0 0.5rem 1rem rgba(var(--bs-body-color-rgb), .15) !important;
		margin-bottom: 1rem !important;
	}

	.type-order {
		display: inline-flex;
	}

	.type-a {
		order: 1;
	}

	.type-b {
		order: 2;
	}

	.mob-border {
		border-color: var(--bs-primary) !important;
		border: 2px solid;
	}
}


/* Payment UI modernization */
.payment-shell {
	width: min(100%, 760px);
	margin: 0 auto;
	padding: .6rem 0 2rem;
}

.payment-hero {
	margin-bottom: 1rem;
}

.payment-kicker {
	text-transform: uppercase;
	letter-spacing: .08em;
	font-size: .72rem;
	font-weight: 700;
	color: var(--bs-primary);
	margin-bottom: .35rem;
}

.payment-title {
	font-size: 1.55rem;
	font-weight: 700;
	margin: 0;
	color: #1f2933;
}

.payment-subtitle {
	margin: .35rem 0 0;
	color: #667085;
	font-size: .95rem;
}

.payment-section-card {
	background: #fff;
	border: 1px solid rgba(15, 23, 42, .10);
	border-radius: 16px;
	box-shadow: 0 8px 22px rgba(15, 23, 42, .045);
	padding: 1.15rem;
	margin-bottom: .65rem;
}

.payment-section-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: .55rem;
}

.payment-section-heading-compact {
	margin-bottom: .45rem;
}

.payment-section-heading h6 {
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
	color: #1f2933;
}

.payment-section-heading p {
	margin: .2rem 0 0;
	color: #667085;
	font-size: .85rem;
}

.payment-collapsible {
	padding: 0;
	overflow: hidden;
}

.payment-collapsible-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	min-height: 48px;
	padding: .85rem 1.15rem .85rem 1.55rem;
	cursor: pointer;
	list-style: none;
}

.payment-collapsible-summary::-webkit-details-marker {
	display: none;
}

.payment-collapsible-icon {
	width: 38px;
	height: 38px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--bs-primary);
	font-size: 1.1rem;
	flex: 0 0 auto;
}

.payment-collapsible-chevron {
	width: 22px;
	height: 22px;
	border-radius: 999px;
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--bs-primary);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .78rem;
	flex: 0 0 auto;
	transition: transform .18s ease;
}

.payment-collapsible[open] .payment-collapsible-chevron {
	transform: rotate(180deg);
}

.payment-collapsible-title {
	display: block;
	font-weight: 700;
	color: #1f2933;
}

.payment-collapsible-icon + span {
	margin-left: .6rem;
}

.payment-collapsible-text {
	display: block;
	font-size: .82rem;
	color: #667085;
}

.payment-collapsible-action {
	margin-left: auto;
	color: var(--bs-primary);
	font-weight: 700;
	font-size: .85rem;
	white-space: nowrap;
}

.payment-collapsible-body {
	border-top: 1px solid rgba(15, 23, 42, .08);
	padding: 1rem 1.15rem;
}

.payment-voucher-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 150px auto;
	gap: .75rem;
	align-items: start;
}

.payment-voucher-grid .form-control {
	min-height: 46px;
	border-radius: 12px;
}

.payment-voucher-grid .btn {
	min-height: 46px;
	border-radius: 12px;
	padding-left: 1.15rem;
	padding-right: 1.15rem;
}

.payment-applied-list {
	display: grid;
	gap: .65rem;
}

.payment-applied-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 1rem;
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 12px;
	padding: .95rem 1.05rem;
}

.payment-applied-title {
	font-weight: 700;
	color: #1f2933;
	font-size: .95rem;
}

.payment-applied-meta {
	font-size: .85rem;
	color: #1f2933;
	font-weight: 700;
	margin-top: .15rem;
}

.payment-applied-icon {
	width: 30px;
	height: 30px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #31a24c;
	color: #fff;
	font-size: 1.22rem;
}

.payment-applied-amount {
	font-size: 1.05rem;
	font-weight: 700;
	color: #1f2933;
	white-space: nowrap;
}

.payment-applied-remove {
	border: 0;
	background: transparent;
	color: var(--bs-primary);
	font-weight: 700;
	padding: .35rem .1rem;
}

.payment-method-list {
	display: grid;
	gap: .6rem;
}

.payment-method-list .card_list {
	display: grid;
	gap: .6rem;
}

.payment-group-heading {
	margin: .15rem 0 .35rem;
}

.payment-group-heading h6 {
	font-size: .95rem;
	font-weight: 700;
	margin: 0;
	color: #1f2933;
}

.payment-group-heading p {
	margin: .15rem 0 0;
	color: #667085;
	font-size: .82rem;
}

.payment-group-divider {
	border-top: 1px solid rgba(15, 23, 42, .10);
	margin: .85rem 0 .65rem;
}

.payment-method-tile {
	position: relative;
	display: block;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, .12);
	border-radius: 8px;
	padding: 0;
	overflow: hidden;
	transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.payment-method-tile + .payment-method-tile {
	margin-top: .6rem;
}

.payment-method-tile:hover,
.payment-method-tile.is-selected,
.payment-method-tile:has(.CardInput:checked) {
	border-color: var(--bs-primary);
	box-shadow: 0 5px 14px rgba(var(--bs-primary-rgb), .07);
	transform: translateY(-1px);
}

.payment-method-header {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .7rem .85rem;
	background: linear-gradient(180deg, #fff, #fbfcfd);
	border-bottom: 1px solid rgba(15, 23, 42, .08);
	cursor: pointer;
}

.payment-method-header .form-check-input {
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0;
	flex: 0 0 auto;
}

.payment-selected-chip {
	display: none;
	border-radius: 999px;
	background: #ecfdf3;
	color: #027a48;
	font-size: .78rem;
	font-weight: 700;
	padding: .24rem .65rem;
}

.payment-method-tile.is-selected .payment-selected-chip,
.payment-method-tile:has(.CardInput:checked) .payment-selected-chip {
	display: inline-flex;
}

.payment-saved-card-row {
	display: grid;
	grid-template-columns: auto auto max-content max-content max-content 1fr auto;
	align-items: center;
	column-gap: 1rem;
	row-gap: .35rem;
	padding: 1rem 1.15rem;
	cursor: pointer;
}

.payment-saved-card-row input[type="radio"].CardInput,
.payment-saved-card-row .form-check-input {
	appearance: none;
	-webkit-appearance: none;
	width: 1.05rem;
	height: 1.05rem;
	margin-top: 0;
	border: 1px solid #98a2b3;
	border-radius: 50% !important;
	background-color: #fff !important;
	background-image: none !important;
	box-shadow: none !important;
	flex: 0 0 auto;
	position: relative;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	padding: 0;
}

.payment-saved-card-row input[type="radio"].CardInput:checked,
.payment-saved-card-row .form-check-input:checked {
	border-color: var(--bs-primary);
	background-color: #fff !important;
	background-image: none !important;
}

.payment-saved-card-row input[type="radio"].CardInput:checked:after,
.payment-saved-card-row .form-check-input:checked:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: .48rem;
	height: .48rem;
	border-radius: 50%;
	background: var(--bs-primary);
	transform: translate(-50%, -50%);
}

.payment-saved-card-main {
	min-width: 0;
	padding-right: .35rem;
}

.payment-card-expiry {
	white-space: nowrap;
}

.payment-saved-card-row .payment-action-link {
	grid-column: 7;
	justify-self: end;
}

.payment-method-title {
	font-weight: 700;
	color: #1f2933;
	margin: 0;
}

.payment-method-body {
	display: flex;
	align-items: center;
	gap: .85rem;
	padding: .75rem .85rem;
	color: #475467;
}

.payment-action-tile {
	cursor: pointer;
}

.payment-action-tile .payment-method-body {
	padding: 1rem 1.15rem 1rem 1.55rem;
}

.payment-action-tile .payment-method-icon + div {
	margin-left: .6rem;
}

.payment-action-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.payment-row-chevron {
	width: 10px;
	height: 10px;
	border: solid #667085;
	border-width: 0 2px 2px 0;
	transform: rotate(-45deg);
	margin-left: auto;
	flex: 0 0 auto;
}

.payment-method-icon {
	width: 42px;
	height: 42px;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--bs-primary-rgb), .08);
	color: var(--bs-primary);
	flex: 0 0 auto;
}

.payment-card-digits {
	font-size: 1.05rem;
	letter-spacing: .08em;
	font-weight: 700;
	color: #1f2933;
}

.payment-method-meta {
	color: #667085;
	font-size: .82rem;
}

.payment-action-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: .35rem .75rem;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
}

.payment-total-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1rem;
	margin-top: .65rem;
	padding: .8rem .9rem;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, .08);
}

.payment-total-label {
	color: #667085;
	font-size: .85rem;
}

.payment-total-row .MBPrice {
	font-size: 1.35rem;
	font-weight: 700;
	color: #1f2933;
}

.payment-total-footer {
	margin: .85rem -1.15rem -1.15rem;
	padding: 1rem 1.15rem;
	align-items: flex-start;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
	border-radius: 0 0 8px 8px;
	background: #f8fafc;
}

.payment-total-footer .MBPrice {
	padding-top: .15rem;
}

.payment-total-row-compact {
	align-items: center;
	margin-top: .8rem;
	padding: .8rem 1rem;
}

.payment-total-row-compact .payment-total-label {
	font-weight: 700;
	color: #475467;
}

.payment-hosted-panel {
	width: min(100%, 680px);
	margin: 0 auto;
	padding: 1.25rem;
	background: #fff;
	border: 1px solid rgba(15, 23, 42, .10);
	border-radius: 18px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, .055);
}

.payment-hosted-header {
	margin: -1.25rem -1.25rem 1.25rem;
	padding: 1rem 1.25rem;
	background: #f8fafc;
	border-bottom: 1px solid rgba(15, 23, 42, .08);
	border-radius: 18px 18px 0 0;
}

.payment-hosted-header h5 {
	font-size: 1.08rem;
	font-weight: 700;
	margin: 0;
	color: #1f2933;
}

.payment-hosted-header p {
	margin: .15rem 0 0;
	color: #667085;
	font-size: .88rem;
}

.payment-hosted-intro {
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid rgba(15, 23, 42, .08);
	padding: 1rem;
	margin-bottom: 1rem;
}

.payment-hosted-intro h5 {
	margin: 0 0 .35rem;
	font-weight: 700;
}

.payment-hosted-intro p {
	margin: 0;
	color: #667085;
}

.payment-hosted-panel .payment-total-footer {
	margin: .85rem -1.25rem -1.25rem;
	padding: 1rem 1.25rem;
	border-radius: 0 0 18px 18px;
}

.payment-hosted-panel .payment-total-footer .MBPrice {
	padding-top: .15rem;
}

.payment-payui-container {
	overflow: hidden;
	background: transparent;
}

.payment-payui-container iframe,
.payment-payui-container > * {
	box-shadow: none !important;
	filter: none !important;
}

.payment-wallet-payui {
	position: relative;
	margin-bottom: .75rem;
	overflow: visible;
}

.payment-wallet-payui iframe,
.payment-wallet-payui > * {
	display: block;
	width: 100% !important;
	clip-path: none;
	margin-bottom: 0;
	box-shadow: none !important;
	filter: none !important;
}

.payment-wallet-hosted-panel {
	overflow: visible;
	border-radius: 8px;
	background: #fff;
}

.payment-wallet-hosted-panel iframe,
.payment-wallet-hosted-panel > * {
	min-height: 74px;
}

.payment-wallet-launcher {
	cursor: pointer;
}

.payment-wallet-brand-icons {
	position: relative;
	width: 42px;
	min-width: 42px;
	height: 42px;
	padding: 0;
	gap: .25rem;
	background: transparent;
	border: 0;
}

.payment-wallet-brand-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .12rem;
	height: 28px;
	padding: 0 .45rem;
	border: 1px solid rgba(15, 23, 42, .18);
	border-radius: 999px;
	background: #fff;
	color: #1f2933;
	font-size: .78rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.payment-wallet-google-g {
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.06 10.09c0-.62-.05-1.21-.16-1.78H10v3.36h5.09a4.35 4.35 0 0 1-1.88 2.85v2.25h3.04c1.78-1.64 2.81-4.05 2.81-6.68Z' fill='%234285F4'/%3E%3Cpath d='M10 19.5c2.55 0 4.68-.85 6.24-2.29l-3.04-2.36c-.84.56-1.92.89-3.2.89-2.46 0-4.54-1.66-5.28-3.89H1.56v2.44A9.5 9.5 0 0 0 10 19.5Z' fill='%2334A853'/%3E%3Cpath d='M4.72 11.85A5.71 5.71 0 0 1 4.42 10c0-.64.11-1.27.3-1.85V5.71H1.56A9.5 9.5 0 0 0 .5 10c0 1.53.37 2.98 1.06 4.29l3.16-2.44Z' fill='%23FBBC05'/%3E%3Cpath d='M10 4.26c1.39 0 2.63.48 3.61 1.42l2.71-2.71C14.68 1.39 12.55.5 10 .5A9.5 9.5 0 0 0 1.56 5.71l3.16 2.44C5.46 5.92 7.54 4.26 10 4.26Z' fill='%23EA4335'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.payment-wallet-modal .modal-content {
	border: 0;
	border-radius: 18px;
	box-shadow: 0 22px 60px rgba(15, 23, 42, .24);
	overflow: hidden;
}

.payment-wallet-modal .modal-header {
	align-items: flex-start;
	padding: 1rem 1.15rem;
	background: #f8fafc;
	border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.payment-wallet-modal .modal-title {
	font-size: 1.08rem;
	font-weight: 800;
	color: #1f2933;
}

.payment-wallet-modal-subtitle {
	margin-top: .15rem;
	color: #667085;
	font-size: .88rem;
}

.payment-wallet-modal .modal-body {
	padding: 1rem 1.15rem;
}

.payment-wallet-modal-payui {
	min-height: 74px;
	overflow: visible;
	background: #fff;
}

.payment-wallet-modal-loading {
	display: flex;
	align-items: center;
	gap: .55rem;
	padding: .9rem 0;
	color: #667085;
	font-size: .9rem;
}

.payment-wallet-modal-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	background: #f8fafc;
	border-top: 1px solid rgba(15, 23, 42, .08);
}

.payment-wallet-modal-total {
	display: flex;
	flex-direction: column;
	gap: .1rem;
	color: #667085;
	font-size: .82rem;
}

.payment-wallet-modal-total strong {
	color: #1f2933;
	font-size: 1.1rem;
}

.payment-wallet-tile {
	overflow: visible;
}

.payment-wallet-tile.is-active,
.payment-wallet-tile.is-loading {
	border-color: rgba(15, 23, 42, .12);
	box-shadow: none;
	transform: none;
}

.payment-wallet-loading {
	display: flex;
	align-items: center;
	gap: .55rem;
	padding: .65rem 1rem;
	color: #667085;
	font-size: .88rem;
	border-top: 1px solid rgba(15, 23, 42, .08);
}

.payment-wallet-spinner {
	width: 1rem;
	height: 1rem;
	border: 2px solid rgba(var(--bs-primary-rgb), .18);
	border-top-color: var(--bs-primary);
	border-radius: 50%;
	animation: payment-wallet-spin .8s linear infinite;
}

@keyframes payment-wallet-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 699px) {
	.payment-heading-bar.right_arrow {
		display: none;
		height: auto;
		padding: 0;
		background: transparent !important;
		z-index: auto;
	}

	.payment-heading-bar.right_arrow:before,
	.payment-heading-bar.right_arrow:after {
		display: none;
	}

	.payment-page-heading {
		position: relative;
		display: inline-flex;
		align-items: center;
		padding: 0 !important;
		margin-left: .05rem;
		font-size: 1.15rem;
		font-weight: 800 !important;
		letter-spacing: -.01em;
		color: #1f2933;
	}

	.payment-page-heading:before {
		display: none;
	}

	.payment-shell {
		width: 100%;
		padding: 0 0 8.25rem;
	}

	.payment-mobile-actions {
		margin-top: .35rem !important;
	}

	.payment-list-size.payment-section-card {
		padding: 0;
		margin-bottom: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.payment-list-size .payment-method-list {
		gap: .9rem;
	}

	.payment-list-size .card_list {
		gap: .55rem;
	}

	.payment-title {
		font-size: 1.25rem;
	}

	.payment-subtitle {
		font-size: .88rem;
	}

	.payment-section-card,
	.payment-hosted-panel {
		border-radius: 14px;
		padding: .95rem;
		box-shadow: 0 6px 18px rgba(15, 23, 42, .05);
	}

	.payment-hosted-panel {
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: none;
	}

	.payment-collapsible {
		padding: 0;
	}

	.payment-collapsible-summary {
		padding: .8rem .95rem .8rem 1.35rem;
	}

	.payment-collapsible-icon + span {
		margin-left: .55rem;
	}

	.payment-collapsible-action {
		display: none;
	}

	.payment-collapsible-body {
		padding: .85rem .95rem;
	}

	.payment-hosted-header {
		margin: 0 0 .75rem;
		padding: 0;
		background: transparent;
		border: 0;
		border-radius: 0;
	}

	.payment-hosted-panel .payment-total-footer {
		margin: .85rem -.95rem -.95rem;
		padding: 1rem .95rem;
		border-radius: 0 0 14px 14px;
	}

	.payment-section-heading {
		display: block;
	}

	.payment-voucher-grid {
		grid-template-columns: 1fr;
		gap: .55rem;
	}

	.payment-voucher-grid .btn {
		width: 100%;
	}

	.payment-applied-item {
		grid-template-columns: auto minmax(0, 1fr);
		align-items: start;
	}

	.payment-applied-amount,
	.payment-applied-remove {
		grid-column: 2;
		justify-self: start;
	}

	.payment-method-header,
	.payment-method-body {
		padding: .85rem;
	}

	.payment-list-size .payment-group-heading {
		margin: .85rem 0 .45rem;
	}

	.payment-list-size .card_list .payment-group-heading:first-child {
		margin-top: 0;
	}

	.payment-list-size .payment-group-heading h6 {
		font-size: 1rem;
	}

	.payment-method-tile {
		border-radius: 10px;
	}

	.payment-action-tile .payment-method-body {
		align-items: center;
		padding: .8rem .9rem .8rem 1.35rem;
	}

	.payment-action-tile .payment-method-icon + div {
		margin-left: .55rem;
	}

	.payment-method-icon {
		width: 36px;
		height: 36px;
		border-radius: 12px;
	}

	.payment-wallet-brand-icons {
		width: 36px;
		min-width: 36px;
		height: 36px;
	}

	.payment-method-body {
		align-items: flex-start;
	}

	.payment-saved-card-row {
		grid-template-columns: auto 42px minmax(0, 1fr) auto;
		column-gap: .5rem;
		row-gap: .08rem;
		padding: .72rem .85rem;
	}

	.payment-card-expiry,
	.payment-selected-chip {
		grid-column: 3;
		justify-self: start;
	}

	.payment-saved-card-main {
		grid-column: 3;
		grid-row: 1;
		padding-right: 0;
	}

	.payment-card-expiry {
		grid-row: 2;
		font-size: .8rem;
	}

	.payment-selected-chip {
		grid-column: 4;
		grid-row: 1;
		justify-self: end;
		align-self: start;
		margin-top: -.1rem;
		margin-right: -.2rem;
		font-size: .72rem;
		padding: .2rem .55rem;
	}

	.payment-saved-card-row .payment-action-link {
		grid-column: 4;
		grid-row: 2;
		width: auto;
		margin-top: 0;
		padding: 0;
		align-self: center;
		font-size: .82rem;
		min-height: 0;
	}

	.payment-card-digits {
		font-size: .9rem;
		letter-spacing: .02em;
		line-height: 1.15;
	}

	.payment-method-meta {
		display: block;
		margin-top: .25rem;
	}

	.payment-action-link {
		width: 100%;
		margin-top: .25rem;
	}

	.payment-hosted-cancel {
		margin-top: .35rem !important;
	}

	.payment-wallet-tile {
		overflow: hidden;
		min-width: 0;
	}

	.payment-wallet-modal .modal-dialog.payment-wallet-sheet {
		position: fixed !important;
		top: auto !important;
		left: 0;
		right: 0;
		bottom: 0 !important;
		display: block;
		width: 100%;
		max-width: none;
		margin: 0;
		min-height: 0;
		transform: none !important;
	}

	.payment-wallet-modal.show .modal-dialog.payment-wallet-sheet {
		transform: none !important;
	}

	.payment-wallet-modal .modal-content {
		max-height: 92vh;
		border-radius: 18px 18px 0 0;
	}

	.payment-wallet-modal .modal-body {
		overflow-y: auto;
	}

	.payment-wallet-modal-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.payment-wallet-modal-footer .btn {
		width: 100%;
	}

	.payment-main-total {
		display: none;
	}

	.payment-mobile-footer-total {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 1rem;
		padding: 0 .2rem .2rem;
		border: 0;
		border-radius: 0;
		background: transparent;
		text-align: left;
	}

	.payment-mobile-footer-total .MBPrice {
		font-size: 1.25rem;
		font-weight: 800;
		color: #1f2933;
		white-space: nowrap;
	}

	.payment-total-row {
		align-items: flex-start;
		flex-direction: column;
	}
}


/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {}