
/*img{
    width: 100%;
    height: 100%;
}*/
.modale{
    width: 100%;
    height: 250vh;
    background: rgba(0,0,0,0.8);
    
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 7%;
    z-index: 9999;
    display: none;
    
    ///////animaciones//////////
/*    animation: modale 1s 1s forwards;
    -webkit-animation: modale 1s 1s forwards;
    -moz-animation: modale 1s 1s forwards;
    -o-animation: modale 1s 1s forwards;
    
    
    visibility: hidden;
    opacity: 0;*/
}

@media(max-width:991px) and (min-width:767px){
    .modale{
    padding-top: 9%;
    }
}
@media(max-width:767px) and (min-width:500px){
    .modale{
    padding-top: 15%;
    }
}
@media(max-width:500px){
    .modale{
        padding-top: 24%;
    }
}
.contenido-mapa{
    /*top: 10%;*/
    width: 90%;
    height: 34%;
    margin: auto;
    background: white;
    border-radius: 10px;
}


#cerrar-mapa{
    position: absolute;
    color: #fff;
    z-index: 50;
    width: 40px;
    height:40px;
    line-height: 40px;
    border-radius: 50%;
    right: 27px;
    cursor: pointer;
    top: 1%;
    z-index: 99999;
    text-align: center;
    
    ///////animaciones//////////
/*    animation: modale 2s 1s forwards;
    -webkit-animation: modale 2s 1s forwards;
    visibility: hidden;
    opacity: 0;*/
}
/*
@keyframes modale {
    100% {
        visibility: visible;
        opacity: 1;
    }
}*/