﻿.toastnotification {
    display: none;
    color: #fff;
    z-index: 2;
    position: fixed;
    width: 25rem;
    border-radius: 1rem;
    left: 10px;
    bottom: 20px;
}

.toastnotification-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10px;
    font-size: 25px;
}

.toastnotification-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding:10px 10px;
}

    .toastnotification-body p {
        margin-bottom: 0;
    }

.toastnotification-visible {
    display: flex;
    flex-direction: row;
    animation: fadein 1.5s; 
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
