/*SIZE*/
/* COLORS */
/* FONTS */
/* SHADOW */
/* border */
/*Transition*/
/* Media queries */
/* Ejemplo Uso
body{ 
    ...
    @include media-breakpoint-up($sm) {
        background:red;
    }
    @include media-breakpoint-up($md) {
        background:none;
    }
    ...   
}
*/
/* Ejemplo de uso:
p{
  @include text-truncate();
}
*/
/* Ejemplo de uso:
p {
  @include font-size(13);
}
*/
/* Ejemplo de uso:
p {
    @include fluid-type($min_width, $max_width, $min_font, $max_font);
}
*/
.mapa .list-mobile li {
  position: relative;
  padding: 0 0 15px 20px;
}

.mapa .list-mobile li:before {
  position: absolute;
  left: 0;
  top: 8px;
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #159B8B;
}

@media (min-width: 992px) {
  .mapa .list-mobile {
    display: none;
  }
}

.mapa .mapa-desktop {
  width: 100%;
}

.mapa .mapa-desktop #map {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.mapa .mapa-desktop #map img {
  z-index: 15 !important;
  clip: rect(0, 35px, 20px, 20px);
  transform: translateX(-16px);
}

.mapa .mapa-desktop #map img.active {
  clip: rect(0, 20px, 20px, 0px);
  transform: translateX(2px);
}

.mapa .mapa-desktop .map-tooltip {
  display: block;
  width: auto;
  white-space: nowrap;
  color: #159B8B;
  z-index: 8;
  padding-left: 40px;
  opacity: 1;
  -webkit-animation: fade-in 0.4s ease;
          animation: fade-in 0.4s ease;
  font-family: "PTSans-Bold", Arial, Helvetica, sans-serif;
  letter-spacing: 2.29px;
  font-size: 16px;
}

.mapa .mapa-desktop .map-tooltip:after {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #159B8B;
  -webkit-animation: slide-in 0.4s ease;
          animation: slide-in 0.4s ease;
}

.mapa .mapa-desktop .map-tooltip--inverse {
  width: auto;
  white-space: nowrap;
  transform: translateX(-100%);
  z-index: 9;
  padding-left: 0;
  padding-right: 30px;
}

.mapa .mapa-desktop .map-tooltip--inverse:after {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #159B8B;
  -webkit-animation: slide-in 0.4s ease;
          animation: slide-in 0.4s ease;
}
