.legend {
  width: 100%;
  max-width: 459px;
  height: 45px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  border: 1px solid var(--global-color-primary);
  background: #FAF7F3;
  padding: 8px 16px;
  display: flex;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
 .legend {
    bottom: 30px;
    left: 16px;
  }
}
.legend_text {
  font-size: 0.875rem;
}
.legend_title {
  font-weight: bold;
}
.legend_range {
  flex: 1;
}
.legend_color-bar {
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #E5D4E8 0%, #742881 100%);
}
.legend_values {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 4px 4px 0 4px;
}
