.rating_wrapper {
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.rating_summary_wrapper {
  width: 200px;
}
.average_rating_wrapper {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.total_rating_reviews {
  width: 100%;
  display: flex;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
}

.average_rating {
  font-size: 23px;
  font-weight: 700;
}
.average_rating_icon {
  fill: blue;
  margin-top: 3px;
}
.rating_progressbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom:18px;
}

.total_review_number {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
}
.wcrr_rating_num {
  display: flex;
  width: 35px;
}
.rating_icon {
    fill: #f4dd06 ;
    height: auto;
    line-height: 0;
}
.rating_number {
  margin-right: 3px;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
}

.wphp_rating_star {
  width: 16px;
  height: 15px;
  fill: rgb(255, 208, 0);
}
.wphp_rating_star_1 {
  width: 16px;
  height: 20px;
  fill: rgb(255, 208, 0);
}

.fill_progress_bar {
  height: 8px;
  background-color: blue;
}

.background_progress_bar {
  background-color: #e7e7e7;
  width: 300px;
}
/* media query  for iPhones, Android phones, small devices */
@media only screen and (max-width: 480px) {
    .rating_wrapper{
      display: block !important;
  }
  .rating_summary_wrapper{
    margin:0 auto;
  }
}