* {
  box-sizing: border-box;
}
.map-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.map-wrapper > img {
  width: 100%;
}

.map-wrapper > ul {
  margin: 0;
  list-style: none;
  padding: 0;
}

.map-wrapper > ul > li {
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 1;
  cursor: pointer;
}
.map-wrapper > ul > li#antioquia {
  top: 23%;
  left: 29.3%;
}
.map-wrapper > ul > li#santander {
  top: 21.3%;
  left: 43.1%;
}
.map-wrapper > ul > li#cundinamarca {
  top: 26.9%;
  left: 37.5%;
}
.map-wrapper > ul > li#valle-del-cauca {
  top: 26.9%;
  left: 37.4%;
}
.map-wrapper > ul > li#valle-del-cauca {
  top: 31.1%;
  left: 19.9%;
}
.map-wrapper > ul > li#quindio {
  top: 31.1%;
  left: 20%;
}
.map-wrapper > ul > li#quindio {
  top: 28.1%;
  left: 27.8%;
}
.map-wrapper > ul > li#tolima {
  top: 30.5%;
  left: 30.5%;
}
.map-wrapper > ul > li#meta {
  top: 33.1%;
  left: 45.6%;
}
.map-wrapper > ul > li#casanare {
  top: 26.5%;
  left: 54.4%;
}
.map-wrapper > ul > li#cauca {
  top: 35.2%;
  left: 19%;
}
.map-wrapper > ul > li > a {
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  border: 2px solid #647948;
  color: #647948;
  position: relative;
  font-size: 12px;
  text-decoration: none;
}
.map-wrapper > ul > li > a > span.department-tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(calc(-100% - 10px)) translateX(-50%);
  -webkit-transform: translateY(calc(-100% - 10px)) translateX(-50%);
  -moz-transform: translateY(calc(-100% - 10px)) translateX(-50%);
  -ms-transform: translateY(calc(-100% - 10px)) translateX(-50%);
  -o-transform: translateY(calc(-100% - 10px)) translateX(-50%);
  background: #333333;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 5px;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  font-size: 15px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
}
.map-wrapper > ul > li > a > span.department-tooltip::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateY(100%) translateX(-50%);
  -webkit-transform: translateY(100%) translateX(-50%);
  -moz-transform: translateY(100%) translateX(-50%);
  -ms-transform: translateY(100%) translateX(-50%);
  -o-transform: translateY(100%) translateX(-50%);
}
.map-wrapper > ul > li > a:hover > span.department-tooltip {
  opacity: 1;
  visibility: visible;
}
.map-wrapper > ul > li > a > img {
  display: none;
}
.modal-content {
  background: transparent;
  border: none;
}
