@charset "UTF-8";

#loading {
	position: fixed;
	top: 0;
	left: 0;
	background: black;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0.5;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loader {
	width: 15rem;
	height: 15rem;
	border: 3px solid #FFF;
	border-radius: 50%;
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	position: absolute;

}


@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.loader::after {
	content: '';
	box-sizing: border-box;
	position: absolute;
	left: -0.7rem;
	top: -0.7rem;
	width: 16rem;
	height: 16rem;
	border-radius: 50%;
	border-left: 0.5rem solid transparent;
	border-bottom: 0.5rem solid #39a3f4;
	animation: rotation 1s linear infinite;
}

#loading img {
	width: 15rem;
}

.loading-table {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.loading-table div {
	display: inline-block;
	position: absolute;
	left: 8px;
	width: 16px;
	background: black;
	animation: loading-table 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.loading-table div:nth-child(1) {
	left: 8px;
	animation-delay: -0.24s;
}

.loading-table div:nth-child(2) {
	left: 32px;
	animation-delay: -0.12s;
}

.loading-table div:nth-child(3) {
	left: 56px;
	animation-delay: 0;
}