
.post-views.entry-meta>span {
	margin-right: 0 !important;
	font: 16px;
	line-height: 1;
}

.post-views.entry-meta>span.post-views-icon.dashicons {
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	text-decoration: inherit;
	vertical-align: middle;
}

.post-views.load-dynamic .post-views-count {
	color: rgba(255, 255, 255, 0);
	transition: color .3s ease-in-out;
	position: relative;
}

.post-views.load-dynamic.loaded .post-views-count {
	color: inherit;
}

.post-views.load-dynamic.loading .post-views-count, .post-views.load-dynamic.loading .post-views-count:after {
	box-sizing: border-box;
}

.post-views.load-dynamic .post-views-count:after {
	opacity: 0;
	transition: opacity .3s ease-in-out;
	position: relative;
	color: #6610f2;
}

.post-views.load-dynamic.loading .post-views-count:after {
	content: "";
	display: block;
	width: 16px;
	height: 16px px;
	border-radius: 50%;
	border: 2px solid currentColor;
	border-color: currentColor rgba(255, 255, 255, 0) currentColor rgba(255, 255, 255, 0);
	animation: pvc-loading 1s linear infinite;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
}

@keyframes pvc-loading {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}
