.active-notification:after {
    content: "";
    position: absolute;
    background: var(--flow-green-active-color);
    height: 1em;
    top: 0;
    left: 1.5em;
    width: 1em;
    line-height: 2em;;
    font-size: 0.6em;
    border-radius: 50%;
}

.active-notification-check:after {
    content: "\f058";
}

.notification {
    visibility: hidden;
    width: 20%;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    z-index: 20;
    right: 0;
    font-size: var(--content-font-size1);
    animation: animateright 0.8s ease;
    padding: 0.3% 0.5% 0.3% 0.5%;
    border-left: solid 0.5em;
    margin-top: 1em;
    opacity: 0.95;
}

@media screen and (max-height: 800px){
    .notification {
        font-size: var(--800h-content-font-size1);
    }
}

.notification .icon {
    width: 15%;
    height: 100%;
    float: left;
    text-align: center;
    opacity: 1 !important;
}

.notification .icon i {
    padding-top: 50%;
    padding-bottom: 50%;
}

.notification .close {
    float: right;
    width: 5%;
    height: 100%;
    cursor: pointer;
    color: black;
}

.notification .message .title {
    font-weight: bolder;
}

.notification .message {
    width: 80%;
    float: left;
    opacity: 1 !important;
    padding-right: 1%;
}

.notification .content {
    width: 100%;
}

.notification.success {
    background-color: var(--flow-green-active-color);
    border-color: teal;
}

.notification * {
    color: white;
}

.notification.info {
    background-color: #22A7F0;
    border-color: var(--flow-main-color);
}

.notification.warn {
    background-color: #FFA400;
    border-color: #CA6924;
}

.notification.error {
    background-color: #CF000F;
    border-color: #8F1D21;
}