/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 16 2025 | 04:54:56 */
#vacation-banner {
	position: fixed;
	bottom: 0;
	width: 720px;
	z-index: 10000;
	right: 0;
}

.vacation-banner-inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-size: cover;
	background-position: center;
	color: #F42C37;
	text-align: left;
	padding: 40px;
	font-size: 16px;
	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
	min-height: 360px;
	font-family: "Poppins", Sans-serif;
	position: relative;
}

.vacation-banner-image {
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.vacation-banner-inner p {
	margin: 0;
	font-size: 3rem;
	font-weight: 900;
	line-height: 1.1em;
}

#vacation-banner-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: transparent;
	border: none;
	cursor: pointer;
	z-index: 10000;
	padding: 0;
}
#vacation-banner-close svg {
	width: 24px;
	height: 24px;
}
@media (max-width: 1024px) {
	#vacation-banner {
		width: 100%;
	}
	.vacation-banner-inner {
		padding: 20px;
	}
}
@media (max-width: 479px) {
	.vacation-banner-inner {
		min-height: 240px;
		padding: 10px;
	}
	.vacation-banner-inner p {
		font-size: 2.2rem;
	}
}