/* CONTENEDOR DEL AVISO */
#aviso-flotante{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    display: none;
    z-index: 9999;
    animation: aparecer 0.5s ease;
}

/* IMAGEN */
#aviso-flotante img{
    width: 100%;
    border-radius: 10px;
}

/* BOTON CERRAR */
#aviso-flotante .cerrar{
    position: absolute;
    top: 5px;
    right: 8px;
    cursor: pointer;
    background: red;
    color: white;
    font-weight: bold;
    padding: 2px 7px;
    border-radius: 50%;
}

/* ANIMACION */
@keyframes aparecer{
    from{
        transform: translateY(50px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}