/** Loader **/
.loaderContainer {
    width: 100%;
    height: 100%;
    z-index: 9999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, .9);
}
.loaderContainer .loaderContent {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.loaderContainer .loaderContent img {
	height: 100px;
	position: absolute;
}
.tourneLoader {
	-webkit-animation: spinLoader 2s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s alternate infinite ease-in-out;
	animation: spinLoader 2s alternate infinite ease-in-out;
}
.tourneLoader:nth-of-type(2) {
	-webkit-animation: spinLoader 2s 0.10s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 0.10s alternate infinite ease-in-out;
	animation: spinLoader 2s 0.10s alternate infinite ease-in-out;
	opacity: 0.95;
}
.tourneLoader:nth-of-type(3) {
	-webkit-animation: spinLoader 2s 0.20s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 0.20s alternate infinite ease-in-out;
	animation: spinLoader 2s 0.20s alternate infinite ease-in-out;
	opacity: 0.90;
}
.tourneLoader:nth-of-type(4) {
	-webkit-animation: spinLoader 2s 0.30s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 0.30s alternate infinite ease-in-out;
	animation: spinLoader 2s 0.30s alternate infinite ease-in-out;
	opacity: 0.85;
}
.tourneLoader:nth-of-type(5) {
	-webkit-animation: spinLoader 2s 0.40s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 0.40s alternate infinite ease-in-out;
	animation: spinLoader 2s 0.40s alternate infinite ease-in-out;
	opacity: 0.80;
}
.tourneLoader:nth-of-type(6) {
	-webkit-animation: spinLoader 2s 0.50s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 0.50s alternate infinite ease-in-out;
	animation: spinLoader 2s 0.50s alternate infinite ease-in-out;
	opacity: 0.75;
}
.tourneLoader:nth-of-type(7) {
	-webkit-animation: spinLoader 2s 0.60s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 0.60s alternate infinite ease-in-out;
	animation: spinLoader 2s 0.60s alternate infinite ease-in-out;
	opacity: 0.70;
}
.tourneLoader:nth-of-type(8) {
	-webkit-animation: spinLoader 2s 0.70s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 0.70s alternate infinite ease-in-out;
	animation: spinLoader 2s 0.70s alternate infinite ease-in-out;
	opacity: 0.65;
}
.tourneLoader:nth-of-type(9) {
	-webkit-animation: spinLoader 2s 0.80s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 0.80s alternate infinite ease-in-out;
	animation: spinLoader 2s 0.80s alternate infinite ease-in-out;
	opacity: 0.60;
}
.tourneLoader:nth-of-type(10) {
	-webkit-animation: spinLoader 2s 0.90s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 0.90s alternate infinite ease-in-out;
	animation: spinLoader 2s 0.90s alternate infinite ease-in-out;
	opacity: 0.55;
}
.tourneLoader:nth-of-type(11) {
	-webkit-animation: spinLoader 2s 1s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 1s alternate infinite ease-in-out;
	animation: spinLoader 2s 1s alternate infinite ease-in-out;
	opacity: 0.50;
}
.tourneLoader:nth-of-type(12) {
	-webkit-animation: spinLoader 2s 1.10s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 1.10s alternate infinite ease-in-out;
	animation: spinLoader 2s 1.10s alternate infinite ease-in-out;
	opacity: 0.45;
}
.tourneLoader:nth-of-type(13) {
	-webkit-animation: spinLoader 2s 1.20s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 1.20s alternate infinite ease-in-out;
	animation: spinLoader 2s 1.20s alternate infinite ease-in-out;
	opacity: 0.40;
}
.tourneLoader:nth-of-type(14) {
	-webkit-animation: spinLoader 2s 1.30s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 1.30s alternate infinite ease-in-out;
	animation: spinLoader 2s 1.30s alternate infinite ease-in-out;
	opacity: 0.35;
}
.tourneLoader:nth-of-type(15) {
	-webkit-animation: spinLoader 2s 1.40s alternate infinite ease-in-out;
	-moz-animation: spinLoader 2s 1.40s alternate infinite ease-in-out;
	animation: spinLoader 2s 1.40s alternate infinite ease-in-out;
	opacity: 0.30;
}
/** Loader Dot Wave **/
.nc-loader-wave {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	width: 40px;
	margin: 13px auto;
}
.nc-loader-wave__dots {
	width: 5px;
	height: 5px;
	margin: 0 auto;
	background-color: var(--secondary-normal);
	border-radius: 100%;
	border: 1px solid var(--secondary-normal);
	animation: wave 1s ease-in-out infinite;
}
.nc-loader-wave__dots:nth-child(even) {
	animation-delay: 100ms;
}
/* Loader Dot */
.dots-3 {
	width: 40px;
	height: 12px;
	background: radial-gradient(circle closest-side, currentColor 90%, var(--black)) 0% 50%, radial-gradient(circle closest-side, currentColor 90%, var(--black)) 50% 50%, radial-gradient(circle closest-side, currentColor 90%, var(--black)) 100% 50%;
	background-size: calc(100%/3) 8px;
	background-repeat: no-repeat;
	animation: d3 1s infinite linear;
	margin: 3px auto;
}
.dots-3.black-dots {
	width: 25px;
	height: 12px;
	background:
		radial-gradient(circle closest-side, currentColor 90%, var(--black)) 0% 50%,
		radial-gradient(circle closest-side, currentColor 90%, var(--black)) 50% 50%,
		radial-gradient(circle closest-side, currentColor 90%, var(--black)) 100% 50%;
	background-size: calc(100%/3) 6px;
	background-repeat: no-repeat;
	animation: d3 1s infinite linear;
	margin: 0px;
}
/* Loader Spinner */
.spiner_loader {
	height: 32px;
	width: 32px;
	-webkit-animation: spiner_loader-1 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	animation: spiner_loader-1 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	position: relative;
}
.spiner_loader span {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	height: 32px;
	width: 32px;
}

.spiner_loader::before,
.spiner_loader::after,
.spiner_loader span::before,
.spiner_loader span::after {
	content: "";
	display: block;
	position: absolute;
	margin: auto;
	width: 8px;
	height: 8px;
	background: var(--secondary-normal);
	border-radius: 50%;
}
.spiner_loader.white::before,
.spiner_loader.white::after,
.spiner_loader.white span::before,
.spiner_loader.white span::after {
	background: var(--white);
}
.spiner_loader::before {
	top: 0;
	left: 0;
	bottom: 0;
	right: auto;
	-webkit-animation: spiner_loader-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	animation: spiner_loader-2 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
.spiner_loader::after {
	top: 0;
	left: auto;
	bottom: 0;
	right: 0;
	-webkit-animation: spiner_loader-3 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	animation: spiner_loader-3 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
.spiner_loader span::before {
	top: 0;
	left: 0;
	bottom: auto;
	right: 0;
	-webkit-animation: spiner_loader-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	animation: spiner_loader-4 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
.spiner_loader span::after {
	top: auto;
	left: 0;
	bottom: 0;
	right: 0;
	-webkit-animation: spiner_loader-5 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
	animation: spiner_loader-5 2s cubic-bezier(0.770, 0.000, 0.175, 1.000) infinite;
}
/** Keyframes **/
@keyframes spinLoader {
	0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
	100% { -webkit-transform: rotate(-30deg); transform: rotate(-25deg); }
}
@-moz-keyframes spinLoader {
	0% { -moz-transform: rotate(0deg); }
	100% { -moz-transform: rotate(-25deg); }
}
@-webkit-keyframes spinLoader {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(-25deg); }
}
@keyframes wave {
	0%, 50%, 100% {
		transform: initial;
	}
	25%, 75% {
		transform: translateY(-4px);
	}
}
@-webkit-keyframes spiner_loader-1 {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes spiner_loader-1 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@-webkit-keyframes spiner_loader-2 {
	0% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		-webkit-transform: translate3d(24px, 0, 0) scale(.5);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
}
@keyframes spiner_loader-2 {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(24px, 0, 0) scale(.5);
	}
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
}
@-webkit-keyframes spiner_loader-3 {
	0% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		-webkit-transform: translate3d(-24px, 0, 0) scale(.5);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
}
@keyframes spiner_loader-3 {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(-24px, 0, 0) scale(.5);
	}
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
}
@-webkit-keyframes spiner_loader-4 {
	0% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		-webkit-transform: translate3d(0, 24px, 0) scale(.5);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
}
@keyframes spiner_loader-4 {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(0, 24px, 0) scale(.5);
	}
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
}
@-webkit-keyframes spiner_loader-5 {
	0% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		-webkit-transform: translate3d(0, -24px, 0) scale(.5);
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0) scale(1);
	}
}
@keyframes spiner_loader-5 {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(0, -24px, 0) scale(.5);
	}
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
}