.lds-ring {
    position: relative;
    width: 82px;
    height: 82px;
    margin: auto;
    text-align: center;
    display: block;
    margin-top: 100px;
    padding-top: 20px;
}
.lds-ring div {
	box-sizing: border-box;
	display: block;
	position: absolute;
	width: 72px;
	height: 72px;
	margin: 6px;
	border: 6px solid #fff;
	border-radius: 50%;
	animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	border-color: #00d7ff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
	animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
	animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
	animation-delay: -0.15s;
}

.loading-container {
	display: none;
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgb(0,0,0);
	background-color: rgba(0, 0, 0, 0.42);
}

.loading-box {
	background-color: white;
	width: fit-content;
	width: -moz-fit-content;
	margin: auto;
	padding-bottom: 20px;
	padding-left: 72px;
	padding-right: 72px;
	border-radius: 5px;
}

.loading-label {
	font-size: 28px;
	color: #3a3a3a;
	padding-top: 28px;
}

@keyframes lds-ring {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}