.cont-boton-tabla{
    margin: 40px 0;
    position: relative;
    text-align: center;
}
.cont-boton-tabla a{
    text-decoration: none;
    padding: 10px 20px;
    background: var(--title-p-color);
    color: white;
    font-size: 1.2em;
    border-radius: 10px;
    cursor: pointer;
}
#modalAbierto{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
}
#modalAbierto.active{
   display: block;
}
#modalAbierto .cont-modal-puntos{
    width: 600px;
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    position: absolute;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#modalAbierto .cont-modal-puntos #cerrarModal{
   position: absolute;
   font-size: 1.2em;
   padding: 10px;
   background: var(--title-p-color);;
   color: white;
   z-index: 100;
   right: 0;
   top: 0;
   cursor: pointer;
}

#modalAbierto .cont-modal-puntos .cont-img-modal{
    width: 100%;
    padding: 20px;
}
#modalAbierto .cont-modal-puntos .cont-img-modal img{
    width: 100%;
    max-width: 550px;
}
@media screen and (max-width:420px){

    #modalAbierto .cont-modal-puntos{
        width: 90%;
    }
     .cont-boton-tabla a{
        font-size: 1em;
        padding: 5px 10px;
    }
}