/* xl - DESKTOP STYLES */ 
.fab-cart {
	position: relative;
	background: var(--global-palette1);
	color: var(--global-palette7);
	border-radius: 50%;
	padding: .5rem .7rem;
	cursor: pointer;
	font-size: 1.2rem;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.cart-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,.5);
	transform-origin: 50% 50%;
	transform: scale(0.001);
	transition: scale 0.3s ease;
}

.cart-items table {
	text-align: center;
}

.cart-items table td.amount-money {
	font-size: 1em;
}

.cart-panel {
	width: 50%;
	margin-top: 5%;
	margin-left: 25%;
	margin-right: 25%;
	max-height: 80vh;
	background: #fff;
	border-radius: 1rem;
	box-shadow: 0 -3px 15px rgba(0,0,0,0.25);
	z-index: 9998;
	display: flex;
	flex-direction: column;
}

@media (max-width: 767px){
	.cart-panel {
		width: 90%;
		margin-top: 20%;
		margin-left: 5%;
		margin-right: 5%;
	}
}

.cart-overlay.visible { 
	transform-origin: 50% 50%;
	transform: scale(1);
	transition: scale 0.3s ease; }
.cart-header, .cart-footer { padding: 1rem; border-bottom: 1px solid #eee; }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem; }
.cart-footer {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}
.cart-footer button {
	transition-duration: .5s;
	background: var(--global-palette1);
	color: var(--global-palette7);
	border: none;
	padding: 0.8rem;
	border-radius: 0.5rem;
	cursor: pointer;
}

.cart-footer button:hover {
	background: var(--global-palette2);
	transition-duration: .5s;
}

.booking-count-indicator {
	padding: 0;
	display: none;
	text-align: center;
	line-height: 22px;
	position: absolute;
	top: -10%; right: -10%;
	border-radius: 12px;
	width: 24px; height: 24px;
	background-color: var(--global-palette2);
	color:  var(--global-palette7);
}

