.ratingList {
  @include flex-direction(row);

  overflow-x: scroll;
  gap: 0.8rem;

  &::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background-color: transparent;
  }

  &::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #929292;
  }

  @include min(tablet) {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
  }
}

.item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 700;
  font-size: 1.4rem;
  background-color: var(--ratings-bg-color, #fbfbfb);
  border: var(--ratings-border, 1px solid #e9e9e9);
  border-radius: 8px;
  padding: 16px 8px;
  min-height: 9.6rem;
  min-width: 10.4rem;
  color: var(--ratings-active-color, #515156);

  @include min(tablet) {
    margin-bottom: inherit;
    width: -webkit-fill-available;
  }

  // NOTE Star rating
  >div {
    display: inline-flex;
    align-items: center;
    font-weight: 800;
    font-size: 18px;
    line-height: 28px;
    border: 0;
    background-color: #fbfbfb;

    >svg {
      width: 18.35px;
      height: 17.49px;
      color: var(--rating-star-color, #ffdb20);
      margin-right: 5.82px;
    }

    >span:last-child {
      font-size: 16px;
      line-height: 27px;
      font-weight: 700;

      @include min(tablet) {
        font-weight: 800;
        font-size: 18px;
        line-height: 28px;
      }
    }
  }
}

.label {
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  color: #1c1a28;
  padding-bottom: 0.8rem;
  text-align: center;

  @include min(tablet) {
    font-size: 14px;
    line-height: 22px;
  }
}

.value {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: #1c1a28;
  display: flex;

  @include min(tablet) {
    font-weight: 800;
  }
}

.tbaValue {
  color: #33313d;
  font-weight: 700;
  font-size: 14px;
  line-height: 22px;
}

.showOnlyMobile {
  @include min(tablet) {
    display: none;
  }
}