﻿.push {
    position: fixed;
    bottom: 0;
    z-index: 100;
    right: 10px;
    min-width: 300px;
    box-shadow: #000 0px 0px 10px;
}

    .push .container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

.notify-area{
    position: fixed;
    background-color: orange;
    color: white;
    bottom: 0;
    width: 32px;
    height: 32px;
    right: 0;
    z-index: 100;
    cursor: pointer;
    border: 1px solid lightgray;
    line-height: 32px;
    text-align: center;
    font-weight: bolder;
    border-radius: 15px 0px;
}

.notify-history-alert{
    margin: 0;
}

    .notify-history-alert .row:first-child{
        padding: 5px 0px;
    }

    .notify-history-alert h4 {
        padding: 3px;
        margin: 0;
        text-align: center;
        font-size: 12px;
        font-weight: bold;
    }

    .notify-history-alert .alert-footer{
        text-align: right;
        font-size: 10px;
        color: dimgray;
    }

    .notify-history-alert .body-content{
        padding: 15px 0px;
    }

.notify-history {
    position: fixed;
    background-color: white;
    z-index: 2000;
    right: 0;
    width: 400px;
    height: 100%;
    top: 0;
    display: none;
    border-left: 1px outset gray;
    overflow: auto;
}

    .notify-history header {
        padding: 5px;
        text-align: center;
        font-weight: bold;
        color:white;
    }

    .notify-history h1 {
        font-size: 20px;
        display: inline-block;
        padding: 0;
        margin: 0;
    }

    .notify-history header i {
        color: white;
    }