.ltg-popup-floating {
	--ltg-popup-size: 300px;
	--ltg-popup-max-height: 400px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	left: auto;
	top: auto;
	transform: none;
	width: min(var(--ltg-popup-size), calc(100vw - 24px));
	max-height: min(var(--ltg-popup-max-height), calc(100dvh - 40px));
	z-index: 99999;
	background: #ffffff;
	border: 1px solid #c8a26a;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.ltg-popup-floating.ltg-popup-size-small {
	--ltg-popup-size: 240px;
	--ltg-popup-max-height: 320px;
}

.ltg-popup-floating.ltg-popup-size-medium {
	--ltg-popup-size: 300px;
	--ltg-popup-max-height: 400px;
}

.ltg-popup-floating.ltg-popup-size-large {
	--ltg-popup-size: 420px;
	--ltg-popup-max-height: 560px;
}

.ltg-popup-floating.ltg-popup-shape-square,
.ltg-popup-floating.ltg-popup-shape-rounded-square,
.ltg-popup-floating.ltg-popup-shape-circle {
	width: min(var(--ltg-popup-size), calc(100vw - 24px), calc(100dvh - 40px));
	height: min(var(--ltg-popup-size), calc(100vw - 24px), calc(100dvh - 40px));
	max-height: none;
}

.ltg-popup-floating.ltg-popup-shape-square,
.ltg-popup-floating.ltg-popup-shape-rectangle {
	border-radius: 0;
}

.ltg-popup-floating.ltg-popup-shape-rounded-square,
.ltg-popup-floating.ltg-popup-shape-rounded-rectangle {
	border-radius: 16px;
}

.ltg-popup-floating.ltg-popup-shape-circle {
	border-radius: 50%;
}

.ltg-popup-floating.ltg-popup-opening {
	animation-duration: 420ms;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.ltg-popup-floating[data-ltg-popup-transition="fade"].ltg-popup-opening {
	animation-name: ltg-popup-fade-in;
}

.ltg-popup-floating[data-ltg-popup-transition="slide-up"].ltg-popup-opening {
	animation-name: ltg-popup-slide-up;
}

.ltg-popup-floating[data-ltg-popup-transition="slide-down"].ltg-popup-opening {
	animation-name: ltg-popup-slide-down;
}

.ltg-popup-floating[data-ltg-popup-transition="slide-left"].ltg-popup-opening {
	animation-name: ltg-popup-slide-left;
}

.ltg-popup-floating[data-ltg-popup-transition="slide-right"].ltg-popup-opening {
	animation-name: ltg-popup-slide-right;
}

.ltg-popup-floating[data-ltg-popup-transition="zoom"].ltg-popup-opening {
	animation-name: ltg-popup-zoom-in;
}

@keyframes ltg-popup-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes ltg-popup-slide-up {
	from { opacity: 0; translate: 0 28px; }
	to { opacity: 1; translate: 0 0; }
}

@keyframes ltg-popup-slide-down {
	from { opacity: 0; translate: 0 -28px; }
	to { opacity: 1; translate: 0 0; }
}

@keyframes ltg-popup-slide-left {
	from { opacity: 0; translate: -28px 0; }
	to { opacity: 1; translate: 0 0; }
}

@keyframes ltg-popup-slide-right {
	from { opacity: 0; translate: 28px 0; }
	to { opacity: 1; translate: 0 0; }
}

@keyframes ltg-popup-zoom-in {
	from { opacity: 0; scale: 0.9; }
	to { opacity: 1; scale: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.ltg-popup-floating[data-ltg-popup-transition].ltg-popup-opening {
		animation: none;
	}
}

.ltg-popup-floating.ltg-popup-pos-bottom-left {
	left: 20px;
	right: auto;
	top: auto;
	bottom: 20px;
}

.ltg-popup-floating.ltg-popup-pos-bottom-right {
	right: 20px;
	left: auto;
	top: auto;
	bottom: 20px;
}

.ltg-popup-floating.ltg-popup-pos-bottom-center {
	left: 50%;
	right: auto;
	top: auto;
	bottom: 20px;
	transform: translateX(-50%);
}

.ltg-popup-floating.ltg-popup-pos-top-left {
	left: 20px;
	right: auto;
	top: 20px;
	bottom: auto;
}

.ltg-popup-floating.ltg-popup-pos-top-right {
	right: 20px;
	left: auto;
	top: 20px;
	bottom: auto;
}

.ltg-popup-floating.ltg-popup-pos-top-center {
	left: 50%;
	right: auto;
	top: 20px;
	bottom: auto;
	transform: translateX(-50%);
}

.ltg-popup-floating.ltg-popup-pos-middle-left {
	left: 20px;
	right: auto;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
}

.ltg-popup-floating.ltg-popup-pos-middle-right {
	right: 20px;
	left: auto;
	top: 50%;
	bottom: auto;
	transform: translateY(-50%);
}

.ltg-popup-floating.ltg-popup-pos-middle-center {
	left: 50%;
	right: auto;
	top: 50%;
	bottom: auto;
	transform: translate(-50%, -50%);
}

.ltg-popup-floating-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	background: #c8a26a;
	flex-shrink: 0;
}

.ltg-popup-floating.ltg-popup-title-hidden .ltg-popup-floating-header {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	padding: 0;
	background: transparent !important;
}

.ltg-popup-floating.ltg-popup-title-hidden.ltg-popup-shape-circle .ltg-popup-floating-header {
	top: 15%;
	right: 15%;
}

.ltg-popup-floating-title {
	margin: 0;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 600;
	color: #111111;
}

.ltg-popup-floating-close {
	border: 0;
	background: transparent;
	color: #111111;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.ltg-popup-floating.ltg-popup-title-hidden .ltg-popup-floating-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 4px;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
	color: #111111 !important;
}

.ltg-popup-floating-media {
	line-height: 0;
	flex-shrink: 0;
	overflow: hidden;
}

.ltg-popup-floating-image {
	display: block;
	width: 100%;
	height: auto;
	max-height: none;
	object-fit: cover;
	object-position: var(--ltg-image-position-x, 50%) var(--ltg-image-position-y, 50%);
	transform: scale(var(--ltg-image-zoom, 1));
	transform-origin: var(--ltg-image-position-x, 50%) var(--ltg-image-position-y, 50%);
}

.ltg-popup-floating[data-ltg-popup-preview="1"] .ltg-popup-floating-media {
	cursor: grab;
	touch-action: none;
	user-select: none;
}

.ltg-popup-floating[data-ltg-popup-preview="1"] .ltg-popup-floating-media.ltg-popup-image-dragging {
	cursor: grabbing;
}

.ltg-popup-floating:is(.ltg-popup-shape-square, .ltg-popup-shape-rounded-square, .ltg-popup-shape-circle) .ltg-popup-floating-media {
	flex: 1 1 auto;
	min-height: 0;
}

.ltg-popup-floating:is(.ltg-popup-shape-square, .ltg-popup-shape-rounded-square, .ltg-popup-shape-circle) .ltg-popup-floating-image {
	height: 100%;
	max-height: none;
}

.ltg-popup-floating-content {
	padding: 12px;
	font-size: 14px;
	line-height: 1.5;
	color: #111111;
	background: #ffffff;
	flex: 1 1 auto;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.ltg-popup-floating-content > *:first-child {
	margin-top: 0;
}

.ltg-popup-floating-content > *:last-child {
	margin-bottom: 0;
}

.ltg-popup-floating-footer {
	display: flex;
	padding: 12px;
	background: transparent;
	flex-shrink: 0;
}

.ltg-popup-button-align-left {
	justify-content: flex-start;
}

.ltg-popup-button-align-center {
	justify-content: center;
}

.ltg-popup-button-align-right {
	justify-content: flex-end;
}

.ltg-popup-button-align-full .ltg-popup-floating-book-now {
	width: 100%;
}

.ltg-popup-floating-book-now {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	color: #111111;
	text-decoration: none;
	line-height: 1.2;
}

.ltg-popup-button-shape-square {
	border-radius: 0;
}

.ltg-popup-button-shape-rounded {
	border-radius: 8px;
}

.ltg-popup-button-shape-pill {
	border-radius: 999px;
}

.ltg-popup-button-size-small {
	padding: 8px 14px;
	font-size: 13px;
}

.ltg-popup-button-size-medium {
	padding: 10px 18px;
	font-size: 15px;
}

.ltg-popup-button-size-large {
	padding: 14px 24px;
	font-size: 17px;
}

.ltg-popup-floating-book-now:hover,
.ltg-popup-floating-book-now:focus {
	color: #111111;
	text-decoration: none;
	opacity: 0.9;
}

.ltg-popup-floating.ltg-popup-clickable {
	cursor: pointer;
}

@media (max-width: 767px) {
	.ltg-popup-floating {
		right: 8px;
		bottom: 8px;
		left: auto;
		top: auto;
		transform: none;
	}

	.ltg-popup-floating.ltg-popup-pos-bottom-left {
		left: 8px;
		right: auto;
		bottom: 8px;
		top: auto;
	}

	.ltg-popup-floating.ltg-popup-pos-bottom-right {
		right: 8px;
		left: auto;
		bottom: 8px;
		top: auto;
	}

	.ltg-popup-floating.ltg-popup-pos-bottom-center {
		left: 50%;
		right: auto;
		bottom: 8px;
		top: auto;
		transform: translateX(-50%);
	}

	.ltg-popup-floating.ltg-popup-pos-top-left {
		left: 8px;
		right: auto;
		top: 8px;
		bottom: auto;
	}

	.ltg-popup-floating.ltg-popup-pos-top-right {
		right: 8px;
		left: auto;
		top: 8px;
		bottom: auto;
	}

	.ltg-popup-floating.ltg-popup-pos-top-center {
		left: 50%;
		right: auto;
		top: 8px;
		bottom: auto;
		transform: translateX(-50%);
	}

	.ltg-popup-floating.ltg-popup-pos-middle-left {
		left: 8px;
		right: auto;
		top: 50%;
		bottom: auto;
		transform: translateY(-50%);
	}

	.ltg-popup-floating.ltg-popup-pos-middle-right {
		right: 8px;
		left: auto;
		top: 50%;
		bottom: auto;
		transform: translateY(-50%);
	}

	.ltg-popup-floating.ltg-popup-pos-middle-center {
		left: 50%;
		right: auto;
		top: 50%;
		bottom: auto;
		transform: translate(-50%, -50%);
	}

	.ltg-popup-floating-title {
		font-size: 22px;
	}

	.ltg-popup-floating-content {
		font-size: 14px;
		padding: 10px;
	}

}
