/*
 * Cikis / Yonlendirme Overlay'i
 * bkz. js/function_logged.js -> logOut(), logoutToPage()
 */

.redirect_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0e182c;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	animation: redirectFadeIn .25s ease forwards;
}

@keyframes redirectFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

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

.redirect_spinner {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 4px solid #2c3752;
	border-top-color: #f16565;
	animation: redirectSpin .8s linear infinite;
}

@keyframes redirectSpin {
	to { transform: rotate(360deg); }
}

.redirect_text {
	margin-top: 18px;
	font-size: 15.5px;
	color: #92a4b3;
	font-family: inherit;
}
