#toast-container {
    position: fixed; z-index: 999999;
    pointer-events: none;
    padding: 1.25rem;
    width: 100%;
}

#toast-container[class*="toast-top"] { top: 0; }

#toast-container[class*="toast-bottom"] { bottom: 0; }

#toast-container * {
    box-sizing: border-box;
}

#toast-container > div {
    position: relative;
    overflow: hidden;
    padding-top: 15px;
    padding-left: 10px;
    width: 350px;
    border-radius: 3px;
    color: #526484;
    max-width: 100%;
    background: #ffffff;
    float: right;
}
.toast-success {
    opacity: 1;
    border-left: 5px solid #00875a;
    border-bottom: 1px solid #00875a;
    border-right: 1px solid #00875a;
    border-top: 1px solid #00875a;
    font-size: 0.875rem;
    line-height: 1.3rem;
}
#toast-container > .toast-success:before {
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    line-height: 1;
    content: "";
    font-family: "Nioicon";
    float: left;
    padding-top: 15px;
    color: #00875a;
    padding-right: 5px;
}

.toast-error {
    opacity: 1;
    font-size: 0.875rem;
    line-height: 1.3rem;
    color:#ffffff !important;
    background: #a91328 !important;
    padding-bottom: 15px;
}