.Starry {
  display: inline-block;
  position: relative;
}
.Starry:hover > .Starry-active:not(.Starry-static) {
  display: none;
}

.Starry > .Starry-active,
.Starry > .Starry-blank,
.Starry > .Starry-hover {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
}
.Starry > .Starry-active,
.Starry > .Starry-hover {
  position: absolute;
  top: 0;
  left: 0;
}
.Starry > .Starry-active {
  width: 0%;
}
.Starry > .Starry-hover {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.Starry > .Starry-hover > .Starry-star {
  opacity: 0;
  cursor: pointer;
}
.Starry > .Starry-hover > .Starry-star:hover,
.Starry > .Starry-hover > .Starry-star:hover ~ .Starry-star {
  opacity: 1;
}
.Starry .Starry-star {
  display: inline;
  margin: 0 !important;
  padding: 2px;
}
