div.block-note * {
  box-sizing: border-box;
}
div.block-note .stars {
  display: flex;
  gap: 3px;
}
div.block-note .stars .star {
  width: 15px;
  height: 15px;
  background-color: #D7D7E2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
div.block-note .stars .star:after {
  content: "";
  width: var(--progress, 0%);
  height: 100%;
  background-color: #00AD6F;
  position: absolute;
  left: 0px;
  top: 0px;
}
div.block-note .stars .star img {
  position: relative;
  z-index: 3;
  object-position: center;
  object-fit: cover;
  width: 12px;
  height: 12px;
}