.Toast{
    position: fixed;
    width: 320px;
    z-index: 99;
    top: 70px;
    right: 12px;
    max-width: 100%;
    border-radius: 12px;
    padding: 15px;

    -moz-box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    -webkit-box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    display: inline-block;
    height: 90px; 
    z-index: 9999999999999999999999;

    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);

    /* ANIMACION ENTRADA */
    animation: ToastEntrada 0.6s cubic-bezier(.68,-0.55,.27,1.55);
}

/* HOVER MODERNO */
.Toast:hover{
    transform: scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.35);
    transition: all .25s ease;
}

.Toast__icono{
    font-size: 30px;
    float: left;
    margin-right: 15px;

    /* pequeña animación */
    animation: iconPop .5s ease;
}

.Toast__mensaje{
    width: 245px;    
}

.Toast__texto{
   font-size: 12px;
   margin-left: 15px;
   display: inline-block;
}

.Toast__texto--titulo{
    font-weight: bold;
    font-size: 15px;
}

.Toast__contenido{
    position: fixed;
    width: 100%;
}

.Toast__cerrar{
    position: absolute;
    right: 10px;
    top: 2px;
    cursor: pointer;
    transition: transform .2s;
}

.Toast__cerrar:hover{
    transform: scale(1.3) rotate(90deg);
}

.Toast__progress{
    position: absolute;
    width: 91%;
    height: 5px;
    border-radius: 10px;    
    bottom: 5px;

    background: linear-gradient(90deg,#00c6ff,#0072ff);

    /* animacion barra */
    animation: ToastBarra 5s linear forwards;
}



/* =========================
ANIMACIONES
========================= */

/* ENTRADA */
@keyframes ToastEntrada{
    0%{
        transform: translateX(120%);
        opacity:0;
    }

    70%{
        transform: translateX(-8px);
        opacity:1;
    }

    100%{
        transform: translateX(0);
    }
}

/* SALIDA (puedes activarla con clase JS) */
.Toast-salida{
    animation: ToastSalida .5s forwards;
}

@keyframes ToastSalida{
    to{
        transform: translateX(120%);
        opacity:0;
    }
}

/* BARRA PROGRESO */
@keyframes ToastBarra{
    from{
        width:91%;
    }

    to{
        width:0%;
    }
}

/* ICONO POP */
@keyframes iconPop{

    0%{
        transform: scale(0);
    }

    70%{
        transform: scale(1.2);
    }

    100%{
        transform: scale(1);
    }

}