#fsp-overlay {
	position: fixed;
	inset: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(11, 11, 11, 0.9);
	opacity: 1;
	transition: opacity 0.25s ease;
}

#fsp-overlay.fsp-hidden {
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
}

.fsp-content {
	max-width: 700px;
	width: 90%;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}

.fsp-logo {
	max-width: 260px;
	width: 100%;
	height: auto;
	margin: 0 auto 24px;
	display: block;
}

.fsp-text {
	font-size: 18px;
	line-height: 1.6;
}

.fsp-text h1,
.fsp-text h2,
.fsp-text h3 {
	margin-top: 0;
}

.fsp-close {
	position: absolute;
	top: 24px;
	right: 32px;
	background: transparent;
	border: none;
	font-size: 44px;
	line-height: 1;
	cursor: pointer;
	color: inherit;
	padding: 4px 10px;
	font-weight: 300;
}

.fsp-close:hover {
	opacity: 0.7;
}

@media (max-width: 600px) {
	.fsp-close {
		top: 14px;
		right: 16px;
		font-size: 36px;
	}
	.fsp-logo {
		max-width: 180px;
	}
	.fsp-text {
		font-size: 16px;
	}
}
