.toast {
    border-radius: 50px;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    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;
    min-height: 35px;
    border-radius: 8px;
    border: none;
    pointer-events: auto;
    background-clip: padding-box;
    margin: .5rem;
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
    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;
    font-size: 15px!important;
}

.bg-success {
    background-color: #176729 !important;
}

.bg-info {
    background-color: #007bff !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

.tiny-error-close {
    position: relative;
    color: snow;
    font-size: 16px;
    font-weight: bold;
    background-color: transparent;
    border: none;
    margin-top: 5px;
    text-align: center;
    transition: .5s ease;
}

.tiny-error-close:focus {
    border: none!important;
    outline: none;
}

.tiny-error-close:after {
    content: '\2715';
    position: absolute;
    text-align: center;
    right: 0;
    bottom: 0;
    margin-right: -5px;
    margin-bottom: -10px;
    color: #ccc;
}
