.homepage-price-legend {
  position: absolute;
  z-index: 850;
  left: 14px;
  bottom: 22px;
  width: min(520px, calc(100% - 28px));
  padding: 12px 14px 10px;
  color: #172d24;
  background: rgba(255, 253, 248, .94);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 12px;
  box-shadow: 0 9px 28px rgba(23, 45, 36, .2);
  backdrop-filter: blur(9px);
}

.homepage-price-legend-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.homepage-price-legend-head span {
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .02em;
}

.homepage-price-legend-head small {
  color: #68736e;
  font-size: 8px;
  white-space: nowrap;
}

.homepage-price-scale {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(23, 45, 36, .12);
  border-radius: 7px;
}

.homepage-price-scale span {
  position: relative;
  min-width: 0;
  height: 31px;
  color: #fff;
  background: var(--parcel-tone);
}

.homepage-price-scale i {
  position: absolute;
  inset: 0;
  background: var(--parcel-tone);
}

.homepage-price-scale b {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .55);
  font-size: 8px;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
}

.homepage-price-legend p {
  margin: 7px 0 0;
  color: #68736e;
  font-size: 8px;
  line-height: 1.35;
}

.homepage-price-no-data {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  color: #68736e;
  font-size: 8px;
}

.homepage-price-no-data i {
  width: 13px;
  height: 10px;
  flex: 0 0 auto;
  background: #d8d8d2;
  border: 1px solid #c4c4bd;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .homepage-price-legend {
    bottom: 14px;
    padding: 10px;
  }

  .homepage-price-legend-head {
    display: block;
  }

  .homepage-price-legend-head small {
    display: block;
    margin-top: 2px;
  }

  .homepage-price-scale b {
    font-size: 7px;
    white-space: normal;
  }

  .homepage-price-legend p {
    display: none;
  }
}
