.invisible {
    visibility: hidden;
}


#alert_container {
    position: absolute;
    bottom: 40px;
    right: 20px;
    max-height: calc(100% - 140px);
    width: 360px;
    background-color: transparent;
    z-index: 100000;
    vertical-align: bottom;
}
#alert_container .notificationContainer {
    margin-bottom: 5px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}
#alert_container .notificationContainer.leanright {
    float: right;
    clear: both;
}


#alert_container .notification {
    position: relative;
    /*background-color: yellow;*/
    color: black;
    /*border-radius: 6px;*/
    padding-bottom: 10px;
    overflow: hidden;
    height: auto;
    /*opacity: 0.7;*/
    z-index: 11000;
}
#alert_container .notificationBackground {
    position: absolute;
    top: 0px;
    background-color: yellow;
    color: black;
    /*border-radius: 6px;*/
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: 10000;
}

#alert_container .notificationBackground.information {
    background-color: #00a980;
    color: black;
}
#alert_container .notificationBackground.warning {
    background-color: orange;
    color: black;
}
#alert_container .notificationBackground.error {
    background-color: red;
    color: black;
}
#alert_container .notification .headerbar {
    width: 100%;
    padding: 5px 15px 5px 10px;
    font-family: var(--font-stack-headings);
    font-weight: bold;
}
#alert_container .notification .headerbuttons {
    float: right;
    padding-right: 20px;
}
#alert_container .notification .headerbuttons button {
    border-radius: 6px;
    background-color: #292b34;
    color: white;
    border-collapse: collapse;
    cursor: pointer;
}
#alert_container .notification .headerbuttons button:hover {
    color: #00a980;
}
#alert_container .notification .body {
    padding: 10px 5px 5px 5px;
}
#alert_container .notification .notificationTimeBar {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    /*width: 100%;*/
    height: 6px;
    background-color: black;
    opacity: 0.3;
}
