.mrcoda-nav-exit-preloader {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(26,31,46,0.6);
	pointer-events: auto;
	touch-action: none;
	overscroll-behavior: contain;
}

.mrcoda-nav-exit-preloader .wd-preloader-img {
	max-width: 300px;
	max-height: 300px;
}

.mrcoda-nav-exit-preloader .wd-preloader-img::before {
	content: "";
	display: block;
	width: 50px;
	height: 50px;
	border: 2px solid rgba(255, 255, 255, 0.2);
	border-top-color: #fff;
	border-radius: 50%;
	animation: mrcoda-nav-exit-rotate 2s cubic-bezier(0.63, 0.09, 0.26, 0.96) infinite;
}

@keyframes mrcoda-nav-exit-rotate {
	0% {
		transform: scale(1) rotate(0deg);
	}

	50% {
		transform: scale(0.8) rotate(360deg);
	}

	100% {
		transform: scale(1) rotate(720deg);
	}
}
