.toast-container {
    position: fixed;
    width: 100%;
    top: 0;
    /* background-color: rgba(255,255,255,1); */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    height: 0;
    opacity: 0;
    filter: blur(5px);
    transition: all .5s ease-in-out;
}

.toast-active {
    height: 100px;
    opacity: 1;
    filter: blur(0);
}

.toast-container p { 
    position: relative;
    font-weight: 500;
    padding: 10px 15px;
    color: var(--white-color);
    border-radius: 5px;
}

.toast-success { background-color: var(--primary-color) !important; }
.toast-warning { background-color: darkgoldenrod !important; }
.toast-error { background-color: darkred !important; }