body {
	position: relative !important;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.442);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay a {
	color: black !important;
	text-decoration: none !important;
	text-align: center !important;
}

.message {
	width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px;
	border-radius: 30px;
}

.bg-white {
	background-color: white;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.message-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.message-link h3 {
	font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
	font-size: 34px !important;
	font-weight: bold;
	margin: 0 0 30px 0;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.message-link img {
	width: 300px;
}

.message-loader {
	width: 148px;
	height: 148px;
	background-image: url('../img/loading.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	animation: spin 2s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.hidden {
	display: none;
}

.invisible {
	opacity: 0;
	visibility: hidden;
	/* transition: opacity 0.3s ease, visibility 0.3s ease; */
}

.visible {
	opacity: 1;
	visibility: visible;
	/* transition: opacity 0.3s ease, visibility 0.3s ease; */
}
