.clearfix {
	clear: both;
}
.eupopup-container {
	background-color: #ffffff;
	color: #333333;
	padding: 22px 24px;
	font-size: 14px;
	line-height: 22px;
	text-align: left;
	display: none;
	z-index: 999998;
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18), 0 2px 8px rgba(15, 23, 42, 0.08);
}
.eupopup-container-top,
.eupopup-container-fixedtop {
	position: absolute;
	top: 0; left: 0; right: 0;
}
.eupopup-container-fixedtop {
	position: fixed;
}
.eupopup-container-bottom {
	position: fixed;
	bottom: 24px;
	left: 24px;
	right: auto;
	width: 380px;
	max-width: calc(100vw - 48px);
}
.eupopup-container-bottomleft {
	position: fixed;
	bottom: 10px;
	left: 10px;
	width: 300px;
}
.eupopup-container-bottomright {
	position: fixed;
	bottom: 10px;
	right: 10px;
	width: 300px;
}
.eupopup-closebutton {
	font-size: 14px;
	font-weight: 600;
	line-height: 26px;
	background: #f1f5f9;
	color: #ffffff !important;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	position: absolute;
	font-family: "Poppins", helvetica, arial, verdana, sans-serif;
	top: 14px;
	right: 14px;
	padding: 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.eupopup-closebutton:hover,
.eupopup-closebutton:active {
	 
	 background: #f1f5f9;
	text-decoration: none;
}
.eupopup-head {
	font-family: "Poppins", helvetica, arial, verdana, sans-serif;
	font-size: 16px;
	font-weight: 700;
	padding: 0 0 8px;
	color: #0f172a;
	text-transform: none;
	display: flex;
	align-items: center;
	gap: 8px;
}
.eupopup-head::before {
	content: "";
	font-size: 18px;
	line-height: 1;
}
.eupopup-body {
	color: #64748b;
	font-size: 13.5px;
	font-weight: 400;
	line-height: 1.6;
}
.eupopup-buttons {
	padding: 16px 0 0;
	display: flex;
	gap: 10px;
}
.eupopup-button {
	margin: 0;
	padding: 9px 18px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	transition: background 0.2s, color 0.2s, transform 0.15s, border-color 0.2s;
	text-decoration: none;
	display: inline-block;
}
.eupopup-button_1 {
	background: #ff5730;
	color: #fff !important;
}
.eupopup-button_1:hover,
.eupopup-button_1:focus {
	background: #e84920;
	color: #fff !important;
	transform: translateY(-1px);
	text-decoration: none;
}
.eupopup-button_2 {
	background: transparent;
	color: #475569;
	border: 1.5px solid #e2e8f0;
	text-transform: none;
}
.eupopup-button_2:hover,
.eupopup-button_2:focus {
	background: #f8fafc;
	border-color: #cbd5e1;
	color: #fff;
	text-decoration: none;
}
body .eupopup-color-inverse {
	color: #000;
	background-color: rgba(255, 255, 255, 0.9);
}
body .eupopup-color-inverse .eupopup-head {
	color: #000;
}
body .eupopup-style-compact {
	text-align: left;
	padding: 8px 30px 7px 20px;
	line-height: 15px;
}
body .eupopup-style-compact .eupopup-head,
body .eupopup-style-compact .eupopup-body,
body .eupopup-style-compact .eupopup-buttons {
	display: inline;
	padding: 0;
	margin: 0;
}
body .eupopup-style-compact .eupopup-button {
	margin: 0 5px;
}

/* ── Mobile: bottom sheet, full-width with side margins ── */
@media (max-width: 480px) {
	.eupopup-container-bottom {
		left: 12px;
		right: 12px;
		bottom: 12px;
		width: auto;
		max-width: none;
		padding: 18px 20px;
	}
	.eupopup-buttons {
		flex-direction: column;
	}
	.eupopup-button {
		width: 100%;
		text-align: center;
		padding: 11px 18px;
	}
}