.outer-map{
    position: relative;
    width: 96%;
    float: left;
    margin: 20px 2% 30px;
    text-align: center;

}
.outer-map:after,
.outer-map:before{
  content: "";
  display: table;
}
.outer-map:before{
  clear: both;
}

.country {
  fill: #ccc;
  stroke: #fff;
  cursor: pointer;
  transition: fill 500ms ease-in-out;
  /*stroke-width: .7px;*/
}
.background {
  fill: #f5f5f5;
}
.tooltip {
  text-align: center;
  pointer-events: none;
  background-color: white;
  padding: 10px 15px 20px 15px;
  color: gray;
  position: absolute;
  z-index: 9999;
  border: 0;
  margin-top: -17px;
  margin-left: -20px;
  border-right:1px solid rgba(0,0,0,0.1);
  border-top:1px solid rgba(0,0,0,0.1);
  border-left:1px solid rgba(0,0,0,0.1);
  -webkit-transform: translate(-50%, -100%);
  -ms-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  box-shadow: -2px 3px 0 rgba(0,0,0,0.2);
}
.tooltip:after {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 15px);
  bottom: -14px;
  border: 14px solid transparent;
  border-right-color: white;
  border-left-width: 14px;
  border-right-width: 14px;
}

/*--TOOLTIP BORDER---*/

.tooltip:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -17px;
  left: calc(50% - 16px);
  border: 14px solid transparent;
  /*----CHANGE FOR BORDER---*/
  border-right-color: rgba(0,0,0,0.2);
  border-left-width: 14px;
  border-right-width: 14px;
}
.tooltip .pais {
  text-transform: uppercase;
  line-height: 1;
  color: gray;
  font-size: 18px;
  font-weight: 700;
  font-family: 'ArialMTPro-BoldCond', sans-serif;
  color: #666;
}
.tooltip .data {
  padding: 8px 0 5px 0;
  color: #c5013b;
  font-size: 24px;
  font-weight: 400;
  font-family: 'ArialMTPro-LightCond', sans-serif;
}
.tooltip .label {
  color: gray;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  font-family: 'ArialMTProLight', sans-serif;
}

/*------ZOOM------*/
.wrap-zoom-btns{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}
.btn-zoom {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-shadow: none;
  box-shadow: none;
  padding: 5px;
  margin: 5px;
  border: 0;
  cursor: pointer;
  background-color: white;
  font-size: 22px;
  line-height: 1;
  color: #888;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 200ms ease-in-out;
}
.btn-zoom:hover {
  text-decoration: none;
  background-color: #fafafa;
  color: #c2002f;
}
.btn-zoom:focus {
  outline: 0;
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.btn-zoom#btn-mas {
  border-radius: 3px 3px 0px 0px;
}
.btn-zoom#btn-menos {
  border-radius: 0px 0px 3px 3px;
}
.btn-zoom#btn-menos:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: rgba(128, 128, 128, 0.2);
  left: 50%;
  top: 0px;
  transform: translate(-50%, 0);
}

/*-----LEYENDA DE COLORES----*/
.leyenda-colores {
  width: 145px;
  position: absolute;
  bottom: 0;
  margin-bottom: 25px;
  left: 20px;
}
@media screen and (max-width: 1124px) {
  .leyenda-colores {
    left: 2.5%;
  }
}
.leyenda-colores .text {
  font-size: 12px;
  color: gray;
  width: 100%;
  text-align: center;
  margin-bottom: 2px;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
}
.leyenda-colores .inner-wrap {
  width: 100%;
  line-height: 1;
}
.leyenda-colores .inner-wrap > div {
  float: left;
}
.leyenda-colores .inner-wrap > div:nth-child(1),
.leyenda-colores .inner-wrap > div:nth-child(3) {
  color: gray;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -o-font-smoothing: antialiased;
  text-align: center;
  width: 20px;
  padding: 0 5px;
  box-sizing: border-box;
}
.leyenda-colores .inner-wrap > div:nth-child(2) {
  margin-top: 2px;
  width: calc(100% - 40px);
}
.leyenda-colores .wrap-colores div {
  width: 20%;
  float: left;
  height: 12px;
}
.leyenda-colores .wrap-colores div:first-child {
  border-radius: 12px 0 0 12px;
}
.leyenda-colores .wrap-colores div:last-child {
  border-radius: 0 12px 12px 0;
}
.label-val{
  font-size: 16px;
  font-weight: bold;
}