/* Sticky Footer Banner Styles */

.sticky-footer-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #0069a4;
	padding: 20px 30px;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sticky-footer-banner.show {
	opacity: 1;
	visibility: visible;
}

.sticky-footer-banner-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	color: #fff;
	width: 100%;
	position: relative;
}

.sticky-footer-banner-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
	padding: 5px;
	border-radius: 50%;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;

	@media screen and (max-width: 768px) {
		top: 10px;
		right: -20px;
	}
}

.sticky-footer-banner-close:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

.sticky-footer-banner-close svg {
	width: 20px;
	height: 20px;
}

.sticky-footer-banner-content-left {
	width: 75%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sticky-footer-banner-content-left sup {
	font-weight: 400;
	font-size: 50% !important;
	line-height: 1.4 !important;
	vertical-align: super !important;
}

.sticky-footer-banner-content-left h3 {
	font-size: 30px;
	font-weight: 700;
	font-family:Arial, Helvetica, sans-serif !important;

	@media screen and (max-width: 768px) {
		font-size: 24px;
		font-weight: 700;
	}
}

.sticky-footer-banner-content-left p {
	font-size: 18px;
	padding-bottom: 10px;
	font-family:Arial, Helvetica, sans-serif !important;

	@media screen and (max-width: 768px) {
		font-size: 16px;
		padding-bottom: 10px;
	}
}

.sticky-footer-banner-content-right {
	width: 25%;

	@media screen and (max-width: 768px) {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}	
}

.sticky-footer-banner-content-right a {
	background-color: #fff;
	color: #0069a4;
	padding: 10px 20px;
	border-radius: 30px;
	font-weight: 700;
	text-decoration: none;
    opacity: 1;
}

.sticky-footer-banner-content-right a:hover {
	opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.sticky-footer-banner {
		padding: 20px 20px;
	}
	
	.sticky-footer-banner-content {
		flex-direction: column;
	}
	
	.sticky-footer-banner-content-left {
		width: 100%;
	}
	
	.sticky-footer-banner-content-left h3 {
		font-size: 18px;
		margin-bottom: 15px;
		line-height: 1.2;
	}
	
	.sticky-footer-banner-content-left p {
		font-size: 14px;
		line-height: 1.4;
		margin-bottom: 15px;
	}
	
	.sticky-footer-banner-content-right {
		width: 100%;
	}
} 