.text--loading {
	height: 10px;
	margin: 10px 0;
	animation: pulse 1s infinite ease-in-out;
}
.circle {
	display: flex;
}
.circle--loading {
	vertical-align: top;
	width: 250px;
	height: 250px;
	padding: 40px 20px;
	border-radius: 50%;
	overflow: hidden;
	text-align: center;
	display: inline-flex;
	align-items: center;
	flex-direction: column;
	margin: 20px;
}
.space-top {
	margin-top: 70px;
	background: #f5f5f5;
	padding: 10px 20px 0;
}
.squre {
	width: 65px;
	height: 50px;
	background: #f5f5f5;
}
.text--loading.number {
	background: black;
	width: 75px;
	height: 20px;
	margin: 20px 0;
}
.circle--text {
	background: #000;
}
.circle--text {
	background: #000;
	width: 60%;
	margin: 4px;
}
.circle--text.sml {
	width: 40%;
	margin: 15px;
}
.flex {
	display: flex;
	overflow: hidden;
}
.text--loading.col {
	width: 60%;
	height: 450px;
	margin: 0;
}
.smlcol {
	width: 40%;
}
.text--loading.box {
	height: 215px;
	width: 100%;
	background: #e4ebcc;
	padding: 20px;
	margin: 0 0 20px;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.smlcol {
	width: 38%;
	margin-left: 2%;
}
.text--head--loading {
	width: 150px;
	margin: 20px 0 40px;
}
.flex.threeCol>.col {
	width: 33.33%;
}
.flex.threeCol>.col .text--loading {
	margin: 10px 0;
	width: 48%;
	display: inline-block;
}
@keyframes pulse {
	0% {
		background-color: rgba(165, 165, 165, 0.1)
	}
	50% {
		background-color: rgba(165, 165, 165, 0.3)
	}
	100% {
		background-color: rgba(165, 165, 165, 0.1)
	}
}
div {
	@include nth-children(1, 5, 9) {
		width: 150px;
	}
	@include nth-children(2, 6, 10) {
		width: 250px;
	}
	@include nth-children(3, 7) {
		width: 50px;
	}
	@include nth-children(4, 8) {
		width: 100px;
	}
}