/* Animation classes */
.fade-in {
	animation: fadeIn 0.3s ease-in-out;
}

.fade-out {
	animation: fadeOut 0.3s ease-in-out;
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes fadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}

.custom-popup-container.fade-in {
	animation: customPopupFadeIn 0.3s ease-in-out;
}

.custom-popup-container.fade-out {
	animation: customPopupFadeOut 0.3s ease-in-out;
}
/* Custom Popup Overlay */
.custom-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 9999;
	display: none;
	overflow: auto;
    z-index: 9999999999;
}
	
/* Custom Popup Container */
.custom-popup-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	max-width: 1150px;
	width: 95%;
	max-height: 95%;
	overflow: auto;
	z-index: 10000;
	padding: 0;
	height: 100%;
}
/* Custom Popup Close Button */
.custom-popup-close {
	position: absolute;
	font-size: 0 !important;
	padding: 0 !important;
	background-color: transparent !important;
	background-image: url("data:image/svg+xml,%3Csvg width='19' height='19' viewBox='0 0 19 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 2L2 17' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M2 2L17 17' stroke='black' stroke-width='2.5' stroke-linecap='round'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	height: 19px;
	width: 19px;
	box-shadow: none !important;
	top: 40px !important;
	z-index: 1;
	right: 40px !important;
	border: 0;
}
@media(max-width: 767px) {
	/* Custom Popup Close Button */
	.custom-popup-close {
		top: 20px !important;
		right: 20px !important;
	}
}