.operator-rating {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin-top: 10px;
}

.no-operator-rating {
  font-size: 22px;
}

.star-rating-name {
  font-size: 16px;
  color: #6b7280;
}

.star-rating {
  display: flex;
  gap: 4px;
  justify-content: center;
  direction: ltr;
  width: fit-content;
  cursor: pointer;
}

.star-rating.align-start {
  justify-content: flex-end;
  margin-bottom: 5px;
}

.star-rating.mt-5 {
  margin-top: 5px;
  margin-bottom: 0px;
}

.star {
  font-size: 20px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background-color: #00b67a;
  color: white;
}

.star-rating.mobile .star{
  width: 16px;
  height: 16px;
  font-size: 16px;
}

.star.half {
  background: linear-gradient(to right, #00b67a 50%, #dcdcdc 50%);
  color: white;
}

.star.empty {
  background-color: #dcdcdc;
  color: white;
}

.ui-tooltip {
  padding: 8px 12px;
  color: #fff !important;
  background: #333 !important;
  border-radius: 4px;
  font-size: 16px !important;
  box-shadow: unset !important;
  transition: opacity 0.2s ease;
  border: unset !important;
  white-space: nowrap;
  pointer-events: none;
}