
.toast {
    border-radius: 50px;
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, 1);
    min-width: 350px;
    width: 370px;
    max-width: 400px;
    align-items: stretch;

}

@keyframes hide {
    0% {
        transform: translatey(0);
    }
    20% {
        transform: translatey(5px);
    }
    100% {
        transform: translatey(120vw);
    }
}

@keyframes show {
    0% {
        transform: translatey(120vw);
    }
    80% {
        transform: translatey(5px);
    }
    100% {
        transform: translatey(0vw);
    }
}

.elem-hide {
    animation: hide .4s forwards ease-in-out;
    animation-delay: .1s;
}

.elem-show {
    animation: show .4s forwards ease-in-out;
}

.tiny-error-alert-container{
    position: fixed;
    bottom: 0;
    right: 0;
}
.tiny-error-alert {
    z-index: 50;
    min-width: 350px;
    max-width: 500px;
    border-radius: 25px;
    border: none;
    pointer-events: auto;
    background-clip: padding-box;
    margin: .5rem;
    box-shadow: 0 1.3px 5px 0 rgba(70, 90, 100, 1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tiny-error-alert-body {
    z-index: 50;
    position: relative;
    width: 100%;
    margin-left: 3rem;
    padding: .5rem 1rem .5rem 0;
}
