
@media (min-width: 768px) {
  svg {
    width: 80%;
  }
}
@media (min-width: 992px) {
  svg {
    width:auto;
  }
}
@media (min-width: 1200px) {
	svg{
    width: 80%;
  }
}

/*
.norte {
  fill: #63ab3f;
}
.nordeste {
  fill: #f0b541;
}
.centro-oeste {
  fill: #ffae70;
}
.sudeste {
  fill: #4fa4b8;
}
.sul {
  fill: #686f99;
}
*/
.norte {
  fill: #243c6c;
}
.nordeste {
  fill: #243c6c;
}
.centro-oeste {
  fill: #243c6c;
}
.sudeste {
  fill: #243c6c;
}
.sul {
  fill: #243c6c;
}
.atende{
  fill: #786030;
  stroke: white;
  stroke-width: 3px;
  transition: fill 0.4s;
}
.atual{
  fill: #04a160;
  stroke: white;
  stroke-width: 3px;
  transition: fill 0.4s;
}
.atual:hover{
  fill: #243c6c;
  stroke: white;
  stroke-width: 3px;
  transition: fill 0.4s;
}
path {
  fill: #243c6c;
  stroke: white;
  stroke-width: 1px;
}
path:hover {
  fill: #304860;
  stroke: white;
  stroke-width: 3px;
  transition: fill 0.4s;
}
.tooltip {
  pointer-events: none;
  position: absolute;
  font-size: 18px;
  text-align: center;
  background: white;
  padding: 10px 15px;
  z-index: 5;
  height: 30px;
  line-height: 30px;
  margin: 0 auto;
  color: #21669e;
  border-radius: 5px;
  transform: translateX(-50%);
  display: none;
}
.tooltip.active {
  display: block;
}
.tooltip:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}
