/* Star Rating  */
.digrtc_item_container .digr_star_rating {
    display: flex;
    align-items: center;
    position: relative;
    font-size: 22px;
  }
  
  .digrtc_item_container .digr_filled_star:before {
    content: "\2605";
    display: block;
    font-size: inherit;
    font-family: inherit;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
  }
  
  .digrtc_item_container .digr_star_rating span {
    display: inline-block;
    position: relative;
    font-style: normal;
    cursor: default;
  }
  
  .digrtc_item_container .digr_star_rating span.digr_star_1:before {
    width: 10%;
  }
  
  .digrtc_item_container .digr_star_rating span.digr_star_2:before {
    width: 20%;
  }
  
  .digrtc_item_container .digr_star_rating span.digr_star_3:before {
    width: 30%;
  }
  
  .digrtc_item_container .digr_star_rating span.digr_star_4:before {
    width: 40%;
  }
  
  .digrtc_item_container .digr_star_rating span.digr_star_5:before {
    width: 50%;
  }
  
  .digrtc_item_container .digr_star_rating span.digr_star_6:before {
    width: 60%;
  }
  
  .digrtc_item_container .digr_star_rating span.digr_star_7:before {
    width: 70%;
  }
  
  .digr_star_rating span.digr_star_8:before {
    width: 80%;
  }
  
  .digr_star_rating span.digr_star_9:before {
    width: 90%;
  }
