﻿body {
    
}

.notif-box {
    /*border-top: 1px solid #374c53;*/
    display: -webkit-inline-box;
}

.notif-icon {
    width: 10%;
    text-align: center;
    font-size: 1.4rem;
}

.notif-display {
    width: 90%;
}


.notif-subject {
    font-size: 1.5rem;
    font-weight: bold;
}

.notif-body {
    font-size: 1.1rem;
    text-align: justify;
    padding-left: 0px;
}

.notif-actions {
    width: 100%;
    /*height: 25px;*/
    line-height: 1;
    vertical-align: middle;
    padding-top: 5px;
    padding-bottom: 5px;
    display: inline-block;

}

.notif-btn {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
    margin-top: .3rem;
    margin-left: .3rem;
}

.notif-btn-info {
    background-color: #5bc0de;
}

    .notif-btn-info:hover, .notif-btn-info:focus {
        background-color: #31b0d5;
    }

.notif-btn-danger {
    background-color: #d9534f;
}

    .notif-btn-danger:hover, .notif-btn-danger:focus {
        background-color: #c9302c;
    }

.notif-btn-warning {
    background-color: #f0ad4e;
}

    .notif-btn-warning:hover, .notif-btn-warning:focus {
        background-color: #ec971f;
    }

.notif-btn-primary {
    background-color: #337ab7;
}

    .notif-btn-primary:hover, .notif-btn-primary:focus {
        background-color: #286090;
    }

.notif-btn-success {
    background-color: #5cb85c;
}

    .notif-btn-success:hover, .notif-btn-success:focus {
        background-color: #449d44;
    }



.notif-datetime {
    font-weight: lighter;
    font-size: 0.9rem;
    text-align: right;
    color: #7a8d96;
}

.notif-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #222d32;
    z-index: 10000;
    text-align: left !important;
    overflow: auto;
}

    .notif-menu > li {
        position: relative;
        margin: 0;
        padding: 0;
    }

        .notif-menu > li > a {
            padding: 10px 5px 10px 0px; /*12px 5px 12px 15px;*/
            display: block;
            border-left: 3px solid transparent;
            color: #b8c7ce;
            text-decoration: none;
        }

            .notif-menu > li > a > .fas {
                text-align: center;
                width: 28px !important;
            }

        .notif-menu > li > ul > li > a > .fas {
            text-align: center;
            width: 28px !important;
        }

        .notif-menu > li:hover > a, .notif-menu > li.active > a {
            color: #fff;
            background: #1e282c;
            border-left-color: #3c8dbc;
        }

        .notif-menu > li .label,
        .notif-menu > li .badge {
            margin-top: 3px;
            margin-right: 5px;
        }

    .notif-menu li.notif-header {
        text-align: center;
        padding: 10px 25px 10px 15px;
        font-size: 12px;
        font-weight: bold;
        color: #fff; /*#4b646f;*/
        background: #1a2226;
    }

    .notif-menu li > a > .fa-angle-right {
        width: auto;
        height: auto;
        padding: 0;
        margin-right: 10px;
        margin-top: 3px;
        transition: all 0.2s ease;
    }

    .notif-menu li.active > a > .fa-angle-right {
        transform: rotate(90deg);
        transition: all 0.2s ease;
    }

    .notif-menu li.active > .notif-submenu {
        display: block;
    }

    .notif-menu a {
        color: #b8c7ce;
        text-decoration: none;
    }

    .notif-menu .notif-submenu {
        display: none;
        list-style: none;
        padding-left: 5px;
        margin: 0 1px;
        background: #2c3b41;
    }

        .notif-menu .notif-submenu .notif-submenu {
            padding-left: 20px;
        }

        .notif-menu .notif-submenu > li > a {
            padding: 5px 5px 5px 15px;
            display: block;
            font-size: 14px;
            color: #8aa4af;
        }

            .notif-menu .notif-submenu > li > a > .fa {
                width: 20px;
            }

            .notif-menu .notif-submenu > li > a > .fa-angle-right,
            .notif-menu .notif-submenu > li > a > .fa-angle-down {
                width: auto;
            }

            .notif-menu .notif-submenu > li.active > a, .notif-menu .notif-submenu > li > a:hover {
                color: #fff;
                background: rgb(55, 76, 83);
                /*border-left: 3px solid transparent;
            border-left-color: aqua;*/
            }

.notif-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #374c53;
    
