.all-popup-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	box-sizing: border-box;
}

.all-popup-modal {
	position: relative;
	background: #002841;
	color: #fff;
	border-radius: 6px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
	padding: 4rem 2rem;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	box-sizing: border-box;
	animation: allPopupFadeIn 0.25s ease;
	text-align: center !important;
}

.all-popup-modal h2 {
	margin-top: 0;
}

.all-popup-modal a {
	display: inline-block;
	text-align: center;
	background-color: #5ad2c8;
	border-radius: 35px;
	padding: 1rem 2rem;
	text-decoration: none;
	font-weight: 900;
	color: #002841;
	margin-top: 1.5rem;
}

@keyframes allPopupFadeIn {
	from {
		opacity: 0;
		transform: translateY(-12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.all-popup-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: none;
	border: none;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	color: #fff;
	padding: 0.25rem 0.5rem;
	border-radius: 3px;
	transition: color 0.15s, background 0.15s;
}

.all-popup-close:hover {
	color: #000;
	background: #f0f0f0;
}

.all-popup-title {
	margin: 0 0 1rem;
	padding-right: 2rem;
	font-size: 1.5rem;
}

.all-popup-content {
	font-size: 1rem;
	line-height: 1.6;
}

.all-popup-content > *:last-child {
	margin-bottom: 0;
}
