﻿.toast {
    justify-content: start;
    width: 400px;
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: -1px 1px 10px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slide-in 1.5s ease-out forwards;
}

.toastHolder {
    z-index: 2;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    right: 0;
}

.toast-body{
    color : red;
}

@keyframes toastHolder {
    0% {
        opacity: 1;
    }

    100% {
        transform: translate(0,-10px);
        opacity: 0;
    }
}

@keyframes slide-in {
    0% {
        transform: translate(0,-10px);
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
