.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: #fff0;
  transition: color 0.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 0.3s ease-in-out;
  position: relative;
  color: #6610f2;
}
.post-views.load-dynamic.loading .post-views-count:after {
  content: "";
  display: block;
  width: 16px;
  height: 16pxpx;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-color: currentColor #fff0 currentColor #fff0;
  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);
  }
}
