@charset "UTF-8";

#articleList {
	position: relative;
	min-height: 300px;
}

.loading {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	height: 186px;
	transition: all 0.3s;
}

.loading .cp-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.cp-spinner {
	width: 24px;
	height: 24px;
	display: inline-block;
	box-sizing: border-box;
}

.cp-round:before, .cp-round:after {
	content: "";
	width: 24px;
	height: 24px;
	display: inline-block;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
}

.cp-round:before {
	border: solid 4px #d6d6d6;
}

.cp-round:after {
	border: solid 4px transparent;
	border-top-color: #3C8A48;
	animation: cp-round-animate 1s ease-in-out infinite;
}

@keyframes cp-round-animate {
	0% {
		transform: rotate(0);
	}
	100% {
		transform: rotate(360deg);
	}
}