/*
.mx-preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 1.5s;
	z-index: 9999;
}

.mx-preloader .mx-logo {
	position: relative;
}

.mx-preloader .mx-logo img {
	width: 50px;
	height: 50px;
}

.mx-preloader .mx-logo.animation::before {
	position: absolute;
	top: -10px;
	left: -15px;
	right: -15px;
	bottom: -10px;
	border-radius: 50%;
	border: 2px solid rgba(244, 174, 108, 0.75);
	animation: pulse 2s linear infinite both;
	content: '';
}

.mx-preloader .mx-logo.animation::after {
	position: absolute;
	top: -30px;
	left: -35px;
	right: -35px;
	bottom: -30px;
	border-radius: 50%;
	border: 2px solid rgba(244, 174, 108, 0.25);
	animation: pulse 2s linear infinite both;
	content: '';
}

@keyframes pulse {
	0% {
		opacity: 0;
		transform: scale(1);
	}

	50% {
		opacity: .5;
		transform: scale(1.2);
	}

	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}

*/
/* Preloader */
.mx-preloader {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #116454;
	z-index: 1000;
}

.mx-preloader .mx-logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 118px;
	height: 118px;
}

.mx-preloader .mx-logo::before {
	content: '';
	position: absolute;
	width: 80px;
	height: 80px;
	border: 1px solid rgba(244, 174, 108, 0.75);
	border-radius: 50%;
	animation: waves 2s infinite;
}

.mx-preloader .mx-logo:after {
	content: '';
	position: absolute;
	width: 80px;
	height: 80px;
	border: 1px solid rgba(244, 174, 108, 0.25);
	border-radius: 50%;
	animation: waves 2s infinite;
	animation-delay: 1s;
}

.mx-preloader .mx-logo img {
	width: 50px;
	height: 50px;
	animation: .9s infinite pulse;
}

@keyframes waves {
	0% {
		opacity: 1;
		transform: scale(1);
	}

	100% {
		opacity: 0;
		transform: scale(1.5);
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	25% {
		transform: scale(1.1);
	}
	40% {
		transform: scale(1);
	}
	60% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}