﻿#pozitive-toasts {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pozitive-notify-body {
    opacity: 1;
    cursor: pointer;
    border-radius: 5px;
    padding: 1rem 2rem;
    margin: .5rem;
    color: #F5F5F5;
    transition: 1s linear;
}
    .pozitive-notify-body.status_danger {
        background-color: #FF7043;
    }
    .pozitive-notify-body.status_success {
        background-color: #AED581;
    }
    .pozitive-notify-body.status_pacific {
        background-color: #7986CB;
    }
.pozitive-notify-body.fadeout-1000{
    opacity: 0;
    transition: 1000ms linear;
}
    .pozitive-notify-body.fadeout-700 {
        opacity: 0;
        transition: 700ms linear;
    }
    .pozitive-notify-body.fadeout-500 {
        opacity: 0;
        transition: 500ms linear;
    }
    .pozitive-notify-body.fadeout-300 {
        opacity: 0;
        transition: 300ms linear;
    }
    .pozitive-notify-body.fadeout-100 {
        opacity: 0;
        transition: 100ms linear;
    }