.north-america path {
  fill: var(--northAmericaBackgroundColor, #000);
  fill-opacity: var(--northAmericaOpacity, 0.2);
}

.box-northAmerica {
  background-color: var(--northAmericaBackgroundColor);
}

.south-america path {
  fill: var(--southAmericaBackgroundColor, #000);
  fill-opacity: var(--southAmericaOpacity, 0.2);
}

.box-southAmerica {
  background-color: var(--southAmericaBackgroundColor);
}

.middle-east path {
  fill: var(--middleEastBackgroundColor, #000);
  fill-opacity: var(--middleEastOpacity, 0.2);
}

.box-middleEast {
  background-color: var(--middleEastBackgroundColor);
}

.europe path {
  fill: var(--europeBackgroundColor, #000);
  fill-opacity: var(--europeOpacity, 0.2);
}

.box-europe {
  background-color: var(--europeBackgroundColor);
}

.central-america path {
  fill: var(--centralAmericaBackgroundColor, #000);
  fill-opacity: var(--centralAmericaOpacity, 0.2);
}

.box-centralAmerica {
  background-color: var(--centralAmericaBackgroundColor);
}

.apac path {
  fill: var(--apacBackgroundColor, #000);
  fill-opacity: var(--apacOpacity, 0.2);
}

.box-apac {
  background-color: var(--apacBackgroundColor);
}

.africa path {
  fill: var(--africaBackgroundColor, #000);
  fill-opacity: var(--africaOpacity, 0.2);
}

.box-africa {
  background-color: var(--africaBackgroundColor);
}

.legend-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 2rem;
  gap: 1rem;
}
@media (min-width: 992px) {
  .legend-wrapper {
    padding-top: 2.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    gap: 1rem 1.5rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.legend-wrapper .legend-box {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.09375rem;
  margin-right: 0.5rem;
}
.legend-wrapper .legend-text {
  color: #545759;
  font-family: "Open Sans", -apple-system, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.015rem;
  margin-bottom: 0;
}
