    body {
      margin: 0;
      padding: 0;
    }

    #map {
      position: absolute;
      top: 75px;
      bottom: 0;
      width: 100%;
    }


    /* enlaces */
    a:link { text-decoration: none; }

    a:visited { text-decoration: none; }
 
    a:hover { text-decoration: none; }

    a:active { text-decoration: none; }

    /* Popup styling */

    .mapboxgl-popup {
      padding-bottom: 5px;
    }

    .mapboxgl-popup-close-button {
      display: none;
    }

    .mapboxgl-popup-content {
      font: 400 15px/22px 'Source Sans Pro', 'Helvetica Neue', Sans-serif;
      padding: 0;
      width: 300px;
     }

    .mapboxgl-popup-content-wrapper {
      padding: 1%;
      overflow-y: scroll;
    }

    .mapboxgl-popup-content h3 {
      background: rgb(61, 59, 59);
      text-align: center;
      color: #fff;
      margin: 0;
      display: block;
      padding: 15px;
      font-weight: 400;
      margin-top: -5px;
    }

    .mapboxgl-popup-content h4 {
      margin: 0;
      display: block;
      padding: 5px 3px 5px 10px;
      font-weight: 300;
    }

    .h4, h4 {
      font-size: 1rem;
    }

    .mapboxgl-popup-content h5 {
      background: rgb(61, 59, 59);
      text-align: center;
      color: #fff;
      margin: 0;
      display: block;
      padding: 10px;
      font-weight: 300;
      margin-top: 10px;
    }

    .mapboxgl-container {
      cursor: pointer;
    }

    .mapboxgl-popup-anchor-top>.mapboxgl-popup-content {
      margin-top: 3px;
    }

    .mapboxgl-popup-anchor-top>.mapboxgl-popup-tip {
      border-bottom-color: rgb(61, 59, 59);
    }
   
    .filter-group {
	font: 12px/20px 'Roboto', Arial, Helvetica, sans-serif;
	font-weight: 600;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 1;
	border-radius: 3px;
	width: 120px;
	color: #fff;
}
 
    .filter-group input[type='checkbox']:first-child + label {
	border-radius: 3px 3px 0 0;
     }
 
    .filter-group label:last-child {
	border-radius: 0 0 3px 3px;
	border: none;
     }
 
    .filter-group input[type='checkbox'] {
	display: none;
     }
 
    .filter-group input[type='checkbox'] + label {
	background-color: #3386c0;
	display: block;
	cursor: pointer;
	padding: 10px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    }
 
    .filter-group input[type='checkbox'] + label {
	background-color: #3386c0;
	text-transform: capitalize;
    }
 
    .filter-group input[type='checkbox'] + label:hover,
    .filter-group input[type='checkbox']:checked + label {
	background-color: #4ea0da;
    }
 
    .filter-group input[type='checkbox']:checked + label:before {
	content: '✔';
        margin-right: 5px;
    }

    
/* Popup container - can be anything you want */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 280px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -175px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}