#custom-alert-wrapper {
    position: fixed;
    z-index: 9999;
    max-width: 35rem;
    right: 0;
    bottom: 1rem;
    padding: 1rem 0.5rem;
    display: none;
}

#custom-alert {
    font-size: .95rem;
    padding: .25rem 1.5rem;
    border-radius: .5rem;
    border: .1rem solid;
    width: 100%;
    position: relative;
}

#custom-alert #custom-alert-close {
    position: absolute;
    top: 0;
    right: .5rem;
    font-size: 1.25rem;
    font-weight: bolder;
}

#custom-alert #custom-alert-title {
    font-weight: bold;
    font-size: 1rem;
}

#custom-alert #custom-alert-body {}

.alert-normal {
    background: #f5f5f5;
    color: #000049;
}

.alert-danger {
    background: #ff9b9b;
    color: darkred;
}

.alert-warning {
    background: #ffd891;
    color: #b66400;
}

.alert-info {
    background: #9dffff;
    color: darkcyan;
}

.alert-success {
    background: #98e798;
    color: darkgreen;
}

#custom-alert span {
    cursor: pointer;
}

#toast-success,
#toast-danger {
    margin: 1rem 0;
    padding: 1rem;
    border-radius: .5rem;
}

#toast-success>div,
#toast-danger>div {
    font-size: 1rem;
    border-bottom: .15rem solid;
    margin-bottom: .5rem;
}

#toast-success>ul,
#toast-danger>ul {}

#toast-success>ul li,
#toast-danger>ul li {
    margin: 0;
    padding: 0 1rem 0 2rem;
    position: relative;
}

#toast-success>ul li::before,
#toast-danger>ul li::before {
    content: '*';
    font-weight: bold;
    position: absolute;
    left: 1rem;
}

#toast-success {
    background: #98e798;
    color: darkgreen;
}

#toast-danger {
    background: #ff9b9b;
    color: darkred;
}