@charset "UTF-8";
.rating {
  margin: 10px auto;
  width: 320px;
}
.rating > * {
  float: right;
}
.rating label {
  height: 40px;
  width: 20%;
  display: block;
  position: relative;
  cursor: pointer;
}
.rating label:nth-of-type(5):after {
  animation-delay: 0.025s;
}
.rating label:nth-of-type(4):after {
  animation-delay: 0.02s;
}
.rating label:nth-of-type(3):after {
  animation-delay: 0.015s;
}
.rating label:nth-of-type(2):after {
  animation-delay: 0.01s;
}
.rating label:nth-of-type(1):after {
  animation-delay: 0.005s;
}
.rating label:after {
  transition: all 0.1s ease-out;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  content: "☆";
  color: white;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 60px;
  animation: 1s pulse ease;
  transition: transform 0.3s ease;
}
.rating label:hover:after {
  color: white;
  transform: scale(1.05);
}
.rating input {
  display: none;
}
.rating input:checked + label:after,
.rating input:checked ~ label:after {
  content: "★";
  color: white;
  text-shadow: 0 0 2px #88e4f5;
}

body {
  background-color: #ffffff;
} 