

/*---------- star rating ----------*/

.star-rating {
  display: flex;
  align-items: left;
  font-size: 2em;
  justify-content: left; 
}
.back-stars {
  display: flex;
  color: #fef3bf; 
  position: relative;
  text-shadow: 2px 2px 5px #ddd;
}
.front-stars {
  display: flex;
  color: #fde364;
  overflow: hidden;
  position: absolute;
  /* text-shadow: 2px 2px 5px #d29b09; */
  top: 0;
  transition: all .5s
}



