::-webkit-scrollbar{
    display: none;
}

::-moz-scrollbar{
    display: none;
}

::-ms-scrollbar{
    display: none;
}

::-o-scrollbar{
    display: none;
}

::scrollbar{
    display: none;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Sniglet, cursive;
}

#map{
   height: 100vh; 
}

.lista {
    position: absolute;
    width: fit-content;
    top: 5vh;
    left: 5vw;
    z-index: 5;
    color:white;
    text-transform: uppercase;
    background-color: #013220; 
    opacity: 0.8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid white;
    border-radius: 20px;
}

.lista > h3{
    text-align: center;
}

.lista > h1{
    text-align: center;
    font-size: 1.8em;
    text-transform: none;
    text-decoration: underline yellow;
}

.nombre_localizacion{
  flex:1;
  padding:1.5rem;
  cursor: pointer;
}

.ventana{
  height: fit-content;
  width: fit-content;
  background-color: #fff;
  padding: 0 1rem 2rem 0;
}

.ventana h2{
 text-align: center;
 color:#013220;
 font-family: Sniglet, cursive;
 font-size: 1.8em;
}

h4 {
  font-size: 13px !important;
}

img{
  width: 150px;
  border-radius: 5px;
  vertical-align: middle;
}

.gm-style-iw button  {
  display: none !important;
}

span{
  font-weight:bolder;
  font-size:1em;
  font-family:Sniglet,cursive;
  padding-bottom: 4em;
  cursor: pointer;
}

.modal .modal-dialog { width: 850px !important; max-width:97%}
button{ color:#fff !important; opacity: 1 !important; font-weight:bolder !important;}
.modal-content {background-color: #485B6E !important; border: 1px solid white !important;}
.modal-header {background-color: transparent !important; border:none !important;}

a, a:hover
{
    text-decoration: none;
    background-color: #11382A;
    color: white;
    font-size:28px;
    font-weight:bold;
    position: absolute;
    top: 1%;
    right: 1%;
    border: 1px solid white;
    border-radius: 5px;
    padding: 0 10px;
}

.parpadea {
  
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@media only screen and (max-width: 1023px) {

.lista{
  display: none;
}

}