.message {
    color: #000;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    position: fixed;
    z-index: 20;
    width: 280px;
    right: 20px;
    top: 3rem;
    background-color: #fff;
    opacity: 0;
    animation: fadeOut 5s linear forwards;
    display: flex;
    align-items: stretch;
}
@keyframes fadeOut {
    0% { opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; transform: translateY(0px);}
    99% { opacity: 0; transform: translateY(-30px);}
    100% { opacity: 0; }
}
.message-body {
    padding: .5rem;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 100%;
}
.message-icon {
    min-width: 40px;
    display: flex;
    align-items: center;
    background: transparent;
    justify-content: center;
}
.message-icon svg {
    fill: #fff;
    width: 20px;
    height: 30px;
}
.message-success {
    background: #862cfd;
}
.message-error {
    background: #862cfd;
}
.message-info {
    background: #862cfd;
}