:root {
  --gutter-x: 1.5rem;
  --inline-margin-full: calc((100vw - var(--container-w)) * -1 / 2);
  --cl-white: #ffffff;
  --cl-black: #000000;
  --cl-gray: hsl(0, 0%, 70%);
  --cl-gray-light: hsl(0, 0%, 95%);
  --cl-gray-dark: hsl(0, 0%, 50%);
  --cl-blue-light: #009ee3;
  --cl-blue-dark: #0052a1;
  --cl-yellow: #fdc300;
  --container-w: 100%;
}
@media (min-width: 576px) {
  :root {
    --container-w: 540px;
  }
}
@media (min-width: 768px) {
  :root {
    --container-w: 720px;
  }
}
@media (min-width: 992px) {
  :root {
    --container-w: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-w: 1140px;
    --inline-margin-full: calc((100vw - var(--container-w)) * -1 / 2 - (var(--gutter-x) / 2));
  }
}
@media (min-width: 1400px) {
  :root {
    --container-w: 1320px;
  }
}

.map-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  padding: 5rem;
}
@media screen and (max-width: 1200px) {
  .map-wrapper {
    padding: 1rem 0;
    flex-direction: column;
    gap: 2rem;
  }
}

.map-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.map-text {
  margin: 0;
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
}
@media screen and (max-width: 1200px) {
  .map-text {
    font-size: 1.5rem;
  }
}

.data-wrapper {
  display: flex;
  gap: 1rem;
}

.data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 50%;
  border: 0.0625rem solid var(--cl-blue-dark);
  color: var(--cl-blue-dark);
  padding: 0.5rem;
  text-align: center;
  border-radius: 0.35rem;
}

.data-title {
  font-size: 1.5rem;
  font-weight: bold;
}
.data-title small {
  font-size: 0.8em;
  font-weight: normal;
}

.data-text {
  font-size: 0.75rem;
}

.map-link {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--cl-blue-dark);
  text-decoration: none;
}
.map-link::before {
  content: "";
  display: flex;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(/themes/custom/adapta_suas_unicef/arrow.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.map-link span {
  display: flex;
  align-items: center;
}

.map {
  flex: 1 0 65%;
}
.map .state-hover {
  cursor: pointer;
}
.map .state-hover:hover .state-name,
.map .state-hover:hover .state-data,
.map .state-hover:hover .state-tooltip {
  opacity: 1;
}
.map .state-hover:hover .state {
  fill: #f17212;
}
.map .selected .state-name,
.map .selected .state-data,
.map .selected .state-tooltip {
  opacity: 1;
}
.map .selected .state {
  fill: #f17212;
}
.map .state {
  stroke: #fff;
  fill: #ffc20c;
  transition: all 0.2s ease-in-out;
}
.map text {
  fill: #fff;
  font-weight: 500;
}
.map .state-name {
  font-size: 11px;
}
.map .state-data {
  font-size: 14px;
  text-anchor: middle;
}
.map .state-tooltip {
  stroke: #fff;
  fill: #f17212;
}
.map .state-name,
.map .state-data,
.map .state-tooltip {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
/*# sourceMappingURL=../maps/component/map.css.map */
