.toast-alert{
    --height: 30px;
}
.toast-alert > .flex-full{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
}
.toast-alert{
    bottom: 70px;
    right: 20px;
    box-sizing: border-box;
    position: fixed;
    border-radius: 5px;
    background-color: #000000;
    z-index: 1052;
    padding: 30px;
    width: 400px;
    color: #ffffff;
    -webkit-transition: background-color .2s linear,visibility 0s, opacity 0.5s linear;
    -ms-transition: background-color .2s linear,visibility 0s, opacity 0.5s linear;
    transition: background-color .2s linear,visibility 0s, opacity 0.5s linear;
}
.toast-icon-container:not(:empty) {
    padding-right: 30px;
}
.toast-alert.success{
    background-color: #348934;
}
.toast-alert.error{
    background-color: #b13434;
}
.toast-alert b{
    line-height: var(--height);
    display: block;
}
.toast-alert .context{
    color: rgba(256,256,256,0.6);
}
.toast-alert svg{
    width: var(--height);
    height: var(--height);
}
.backsplash {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.0);
    z-index: -1;
}

.toast-spinner {
    transform-origin: center;
    animation: spinner_AtoB .75s infinite linear;
    fill: #fff;
}

@keyframes spinner_AtoB {
    100% {
        transform: rotate(360deg)
    }
}