.rating_wrapper {
    display: flex;
    align-items: center;
    gap: 17px;
    font-family: 'Segoe UI', sans-serif;
}
.progressbar_wrapper {
  width: 400px;
}

.average_rating_wrapper {
  display: flex;
  justify-content: center;
}

.total_rating_reviews {
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  color:#000000;
}

.average_rating {
  font-weight: 600;
  font-size: 25px;
  fill:#00A6A6 ;
  color:#000;
}
.average_rating_icon {
  fill: #00A6A6;
  margin-top: 5px;
}
.rating_progressbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom:15px;
}

.rating_number {
  font-weight: 500;
  font-size: 14px;
  gap: 3px;
  color:#000000;
  margin-right:2px;
}
.rating_icon {
  fill: #00A6A6;
  font-size: initial;
}

.fill_progress_bar {
  height: 10px;
  background-color: #00A6A6;
  border-radius:10px;
}
.background_progress_bar {
    background-color: #B9B9B7;
    height: 13px;
    border-radius: 10px;
    width: 300px;
    height: 10px ;
    margin-left: 10px;
    margin-right: 10px;
}
@media only screen and (max-width: 480px) {
  .rating_wrapper{
    display: block !important;
}
}