/***********************************************************************************/
/*                          VENTANA MODAL                                          */
.modal, .modal1 {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 750px) {
    .modal-content {
        width: 90%;
        max-width: 90%;
    }
}

@media screen and (max-width: 400px) {
    .modal-content {
        width: 95%;
        max-width: 95%;
    }
}


.modal-content p{
    font-size:14px;
    /*font-weight:bold;*/
}

.modal-content img{
   margin-left:0px;
}

.error{
    font-size:3.0rem;
    color:red;
}
.close-modal, .close3, .close4 {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-modal:hover, .close:focus,
.close3:hover, .close3:focus,
.close4:hover, .close4:focus {
    color: rgb(255, 0, 0);
    text-decoration: none;
    cursor: pointer;
}