

#bgModal{
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.3);
    display: none;
    z-index: 100;
}
#bgModal:target{
    display: block;
}
#bgModal:target ~ .boxModal{
    top: 230px;
    transition: all .3s;
    transition-delay: .2s;
    position: fixed;
    display: inline;
}
.boxModal{
    width: 370px;
    height: 205px;
    position: absolute;
    left: 37%;
    top: -450px;
    display: none;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0px 1px 9px black;
    z-index: 101;
}
.boxModal img{
    width: 99px;
    margin-left: 35%;
    margin-top: 10px;
}

.textModal{
    text-align: center;
    font-family: sans-serif;
    font-size: 11pt;
}
#closeModal{
    border: 1px solid rgba(128, 128, 128, .5);
    margin-left: 25%;
}

.azulModal{
    background-color: rgba(47, 98, 209, .9);
    color: #fff;
}

@media(max-width: 500px){

    .boxModal{
        left: 5%;
    }
}
@media(max-width: 1000px) and (max-height: 500px){

    .boxModal{
        left: 23%;
    }
    #bgModal:target ~ .boxModal{
        top: 75px;
    }
}