.booking-summary {
	border-radius: 8px;
	overflow: hidden;
	background: var(--color-white);
	font-size: 0.9em;
	box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

.booking-summary__header {
	background: var(--color-blue);
	color: var(--color-white);
	padding: 12px;
	font-weight: bold;
	font-size: 1em;
}

.booking-summary__subheader,
.booking-summary__expiry-header {
	background: var(--color-white-gray);
	text-align: center;
	text-transform: uppercase;
	font-size: 0.8em;
	padding: 6px;
}

.booking-summary__expiry-body {
	text-align: center;
	padding: 8px;
}

.booking-summary__items {
	max-height: 40vh;
	overflow-y: auto;
	padding: 8px;
}

.booking-summary__item {
	display: flex;
	align-items: center;
	margin-bottom: 6px;
	font-size: 0.9em;
}

.booking-summary__remove {
	width: 1em;
	cursor: pointer;
}

.booking-summary__qty {
	width: 20px;
}

.booking-summary__title {
	flex: 1;
}

.booking-summary__price {
	width: 80px;
	text-align: right;
}

.booking-summary__totals {
	border-top: 1px solid var(--color-black);
	padding: 10px;
}

.booking-summary__row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 4px;
	text-transform: uppercase;
	font-size: 0.9em;
}

.booking-summary__row--discount {
	color: var(--color-blue);
	font-weight: bold;
}

.booking-summary__row--total {
	font-weight: bold;
	font-size: 1em;
}

.booking-summary__footer {
	padding: 10px;
}

.booking-summary__checkout-btn {
	display: block;
	background: var(--color-blue);
	color: var(--color-white);
	text-align: center;
	padding: 10px;
	border-radius: 6px;
	text-decoration: none;
}

.booking-summary__floating-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: var(--color-blue);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.booking-summary__floating-btn--space {
	bottom: 10px;
	right: 80px;
}

.booking-summary__floating-btn:after {
	font-family: "FontAwesome";
	content: "\f07a";
}

.booking-summary--hidden {
	display: none;
}

@media (max-width: 768px) {
	.booking-summary__floating-btn {
		top: 20px;
		bottom: auto;
		right: 0px;
	}
}

.booking-summary__floating-container {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 5;
}

@media (max-width: 768px) {
	.booking-summary__floating-container {
		top: 20px;
		bottom: auto;
	}
}

.booking-summary__dropdown {
	position: absolute;
	right: 0;
	bottom: 50px;
	display: none;
}

.booking-summary__dropdown--space {
	right: 65px;
}

@media (max-width: 768px) {
	.booking-summary__dropdown {
		top: 50px;
		bottom: auto;
	}

	.booking-summary__dropdown--space {
		right: 0px;
	}
}

.booking-summary__dropdown:before {
	content: "";
	position: absolute;
	right: 10px;
	top: 100%;
	border-width: 6px;
	border-style: solid;
	border-color: var(--color-blue) transparent transparent transparent;
}

@media (max-width: 768px) {
	.booking-summary__dropdown:before {
		right: 0px;
		top: 0%;
	}
}

.booking-summary__dropdown-content {
	width: 260px;
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: 0 0 8px rgba(0,0,0,0.3);
	overflow: hidden;
}

@media (max-width: 768px) {
	.booking-summary__dropdown-content {
		width: 200px;
	}
}