.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(3,3,3,0.3);
    opacity: 0;
    z-index: 100;
    transition: opacity 0.3s ease-in-out;
}

.contenedor {
    position: fixed;
    top: 100px;
    min-width: 400px;
    max-width: 600px;
    min-height: 200px;
    background-color: #fff;
    border: solid 2px #f0f0f0;
    border-radius: 10px;
    padding: 20px;
    padding-right: 50px;
    opacity: 0;
    z-index: 101;
    transition: all 0.3s ease-in-out;
}

.contenedor > img {
    position: absolute;
    right: 20px;
    cursor: pointer;
}

#contenedorHTML {
    margin-top: 30px;
}


.efecto {
    opacity: 1;
}

/*mensajes*/

.titulo-mensaje {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.contenedor ul {
    padding: 0px 20px;
    padding-right: 0;
}

.contenedor li {
    padding-bottom: 5px;
}

.contenedor li span {
    font-weight: 700;
}


.contenedor p span {
    font-weight: 700;
}
