#toast {
    position: fixed;
    z-index: 999;
    pointer-events: none
}
#toast > div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    width: 300px;
    border-radius: 4px;
    border: 1px solid;
    opacity: 1
}
#toast > div:hover {
    opacity: 1;
    cursor: pointer
}
#toast.bottom {
    bottom: 12px
}
#toast.left {
    left: 12px
}
#toast.right {
    right: 12px
}
#toast.top {
    top: 12px
}
#toast .title {
    font-weight: 700
}
#toast .message {
    -ms-word-wrap: break-word;
    word-wrap: break-word
}
#toast .progress {
    --duration: .1s;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.43);
    transition: width .5s linear;
    transition-duration: var(--duration);
}
.alert {
    position: relative;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid transparent;
    border-radius: 4px
}
.alert > p:last-child {
    margin-bottom: 0
}
.alert-link {
    font-weight: 700
}
.alert-dismissible {
    padding-right: 4rem
}
.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit
}
.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff
}
.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db
}
.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb
}
.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb
}
.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba
}
.alert-error, .alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb
}
.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe
}
.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca
}