:root {
    --loader-bg-overlay-color1: #EDF8FF;
    --loader-bg-overlay-color2: #ffffff;
    --loader-chase-dot-color: #55c61e;
}

.preloader {
    --color1: #1D4295;
    --color2: #008AFF;
    --color3: #5BD821;
    --color4: #B6FF42;

    /*background: linear-gradient(var(--loader-bg-overlay-color1), var(--loader-bg-overlay-color2));*/
    /* background: linear-gradient(217deg, var(--color1), rgba(255,255,255,0) 0%),
            linear-gradient(127deg, var(--color2), rgba(255,255,255,0) 0%),
            linear-gradient(336deg, var(--color3), rgba(255,255,255,0) 0%); */

    background-color: var(--loader-bg-overlay-color1);
    background-blend-mode: multiply;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 10000;
    opacity: 1;
}

.preloader.loading-done { 
    opacity: 0;
    transition: all 1s;
}
.preloader.hide { 
   display: none;
}

.preloader .sk-chase {
	width: 60px;
	height: 60px;
	position: absolute;
	left: calc(50% - 30px);
	top: calc(50% - 30px);
	-webkit-animation: sk-chase 2.5s infinite linear both;
	animation: sk-chase 2.5s infinite linear both;
}

.preloader .sk-chase-dot {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: sk-chase-dot 2.0s infinite ease-in-out both;
	animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.preloader .sk-chase-dot:before {
	content: '';
	display: block;
	width: 25%;
	height: 25%;
	background-color: var(--loader-chase-dot-color);
	border-radius: 100%;
	-webkit-animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
	animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.preloader .sk-chase-dot:nth-child(1) {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.preloader .sk-chase-dot:nth-child(2) {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.preloader .sk-chase-dot:nth-child(3) {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.preloader .sk-chase-dot:nth-child(4) {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

.preloader .sk-chase-dot:nth-child(5) {
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s;
}

.preloader .sk-chase-dot:nth-child(6) {
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s;
}

.preloader .sk-chase-dot:nth-child(1):before {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}

.preloader .sk-chase-dot:nth-child(2):before {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

.preloader .sk-chase-dot:nth-child(3):before {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.preloader .sk-chase-dot:nth-child(4):before {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

.preloader .sk-chase-dot:nth-child(5):before {
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s;
}

.preloader .sk-chase-dot:nth-child(6):before {
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s;
}

@-webkit-keyframes sk-chase {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes sk-chase {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes sk-chase-dot {
	80%, 100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes sk-chase-dot {
	80%, 100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes sk-chase-dot-before {
	50% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	100%, 0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes sk-chase-dot-before {
	50% {
		-webkit-transform: scale(0.4);
		transform: scale(0.4);
	}
	100%, 0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}