verdocs-template-star {
  display: flex;
  flex: 0 0 60px;
  align-items: center;
  flex-direction: row;
  font-family: "Inter", "Barlow", sans-serif;
}
verdocs-template-star .star {
  line-height: 10px;
}
verdocs-template-star .star.updating {
  animation: spinningStar 2s infinite linear;
}
verdocs-template-star .star svg {
  width: 24px;
  height: 24px;
}
verdocs-template-star .count {
  color: #595c5d;
  font-size: 14px;
  margin-left: 10px;
}

@keyframes spinningStar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}