﻿.uploadingModal {
	height: 100vh;
	width: 100%;
	top: 0;
	right: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "montserrat",sans-serif;
	z-index: 9999999;
	opacity: 0.7;
	background-color: #ffffff;
	position: fixed;
}

.uploading {
	width: 200px;
	height: 200px;
	box-sizing: border-box;
	border-radius: 50%;
	border-top: 10px solid #e74c3c;
	position: relative;
	animation: a1 2s linear infinite;
}

	.uploading::before, .uploading::after {
		content: '';
		width: 200px;
		height: 200px;
		position: absolute;
		left: 0;
		top: -10px;
		box-sizing: border-box;
		border-radius: 50%;
	}

	.uploading::before {
		border-top: 10px solid #e67e22;
		transform: rotate(120deg);
	}

	.uploading::after {
		border-top: 10px solid #3498db;
		transform: rotate(240deg);
	}

	.uploading span {
		position: absolute;
		width: 200px;
		height: 200px;
		color: #34495e;
		text-align: center;
		line-height: 200px;
		animation: a2 2s linear infinite;
	}

@keyframes a1 {
	to {
		transform: rotate(360deg);
	}
}

@keyframes a2 {
	to {
		transform: rotate(-360deg);
	}
}
