/* legends-style.css */
.visualisation-legends.visualisation-legends-grid {
  --grid-gap: 5px 25px;
  --grid-col-count: 3;
  display: grid;
  grid-template-columns: repeat(var(--grid-col-count), 1fr);
  grid-gap: var(--grid-gap);
}

.visualisation-legends-grid.visualisation-legends .legend-item {
  margin-right: 0;
  margin-bottom: 0;
}

.legend-aligned-to-chart-80 {
  padding-left: 80px;
}

/* .legends-color-zone-block */

.with-legends-zone .custom-legend-block {
  margin-top: 15px;
}

.legends-color-zone-block {
  --grid-color-count: 5;

  margin-top: 20px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.legends-color-zone-block .legend-color-zones {
  display: grid;
  grid-template-columns: repeat(var(--grid-color-count), 1fr);
  width: 100%;
  max-width: 500px;
}

.legends-color-zone-block .legend-color-zone-bg {
  width: 100%;
  height: 12px;
  border-right: 1px solid #fff;
}

.legends-color-zone-block .legend-color-zone-label {
  font-size: 12px;
  text-align: center;
  font-weight: 400;
}

/* responsive */


@media screen and (max-width: 1024px) {

  .legend-aligned-to-chart .visualisation-legends.visualisation-legends-grid {
    --grid-col-count: 2;
  }
}

@media screen and (max-width: 991px) {
  .visualisation-legends.visualisation-legends-grid {
    --grid-gap: 10px 20px;
  }
}

@media screen and (max-width: 767px) {
  .legend-aligned-to-chart {
    padding-left: 0 !important;
  }

  .visualisation-legends.visualisation-legends-grid {
    --grid-col-count: 2;
  }
}

@media screen and (max-width: 580px) {
  .visualisation-legends.visualisation-legends-grid {
    --grid-col-count: 1 !important;
  }

  /* legends color zone */
  .legends-color-zone-block .legend-color-zone-label {
    font-size: 10px;
  }
}
