/* toast style */

.toast_wrapper,
.toast {
     box-sizing: border-box;
     pointer-events: none;
}

.toast_wrapper {
    position: fixed;
    right: 1.5em;
    bottom: 0;
    z-index: 9999999999;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: column;
}

.toast {
    color: #ffffff;
    margin-bottom: 20px;
    padding: 15px 25px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.2s;
}

.toast.error {
    background-color: #d9534f;
}

.toast.success {
    background-color: #5cb85c;
}

.toast_show {
     opacity: 1;
}

