/* CONTENEDOR */
.ilp-modal {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

/* BANNER */
.ilp-modal-banner {
    position: relative; /* CLAVE */
}

.ilp-modal-banner img {
    width: 100%;
    display: block;
}

/* BOTÓN X */
.ilp-close {
    position: absolute;        /* CLAVE */
    top: 14px;
    right: 14px;
    z-index: 10;               /* CLAVE */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    color: #fff;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

/* CONTENIDO */
.ilp-modal-body {
    padding: 20px;
    font-size: 15px;
}




/* MATAR EL BOTÓN CLOSE DE BOOTSTRAP */
.modal .close {
    display: none !important;
}
