/* OEP 2026 non-blocking notification */

.oep-2026-popup {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	box-sizing: border-box;
	width: min(290px, calc(100vw - 32px));
	padding: 26px;
	background: #fff;
	border: 1px solid rgba(65, 132, 234, 0.2);
	border-radius: 18px;
	box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
	font-family: 'Montserrat', sans-serif;
	text-align: center;
	animation: oep2026PopupIn 0.35s ease-out;
}

.oep-2026-popup-content {
	width: 100%;
	min-width: 0;
}

.oep-2026-popup-icon {
	font-size: 48px;
	line-height: 1;
}

.oep-2026-popup-title {
	margin: 0 24px 8px !important;
	color: #000 !important;
	font-family: 'Montserrat', sans-serif !important;
	font-size: 24px !important;
	font-weight: 600 !important;
	line-height: 1.35;
	text-align: center;
}

.oep-2026-popup-message,
.oep-2026-popup-message p {
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}

.oep-2026-popup-message p {
	margin: 0 0 8px;
}

.oep-2026-popup-message p:last-child {
	margin-bottom: 0;
}

.oep-2026-popup-highlight {
	font-weight: 600;
}

.oep-2026-popup-close {
	position: absolute;
	top: 8px;
	right: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	color: #e53935;
	background: transparent;
	border: 0;
	border-radius: 50%;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
}

.oep-2026-popup-close:hover,
.oep-2026-popup-close:focus-visible {
	color: #e04562;
	background: rgba(229, 57, 53, 0.08);
	outline: none;
}

.button-oep-2026-popup {
	position: relative;
	width: 100%;
	margin-top: 20px;
	padding: 0.75rem 1.5rem;
	color: #fff;
	background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
	background-size: 300% 100%;
	border: 0;
	border-radius: 50px;
	box-shadow: 0 2px 15px rgba(65, 132, 234, 0.75);
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.button-oep-2026-popup.loading {
	cursor: wait;
	pointer-events: none;
}

.button-oep-2026-popup.loading .oep-2026-popup-btn-text {
	visibility: hidden;
}

.oep-2026-popup-loader {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-top-color: #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	animation: oep2026ButtonSpin 0.7s linear infinite;
}

.button-oep-2026-popup.loading .oep-2026-popup-loader {
	display: block;
}

.button-oep-2026-popup:hover {
	background-position: 100% 0;
	box-shadow: 0 1px 8px rgba(65, 132, 234, 0.85);
	transform: scale(1.02);
}

.button-oep-2026-popup:focus-visible {
	outline: 3px solid rgba(68, 129, 235, 0.35);
	outline-offset: 2px;
}

@keyframes oep2026PopupIn {
	from {
		opacity: 0;
		transform: translateY(18px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes oep2026ButtonSpin {
	from {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

@media (max-width: 600px) {
	.oep-2026-popup {
		right: 16px;
		bottom: 16px;
		padding: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.oep-2026-popup {
		animation: none;
	}

	.button-oep-2026-popup {
		transition: none;
	}

	.oep-2026-popup-loader {
		animation: none;
	}
}
