/* settings for notifications-control */
#notifications-control {
    position: fixed;
    bottom: 0%;
    left: 0%;
    right: 0%;
    z-index: 995;
    /**/
    border-radius: 0px;
    color: transparent;
    height: 0%;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    opacity: 0;
    display: none;
}

    #notifications-control > table {
        width: 100%;
        height: 100%;
        border-collapse: collapse;
    }

        #notifications-control > table > tbody > tr > td {
            position: relative;
        }

        #notifications-control > table.show-grid thead tr,
        #notifications-control > table.show-grid tbody tr,
        #notifications-control > table.show-grid td,
        #notifications-control > table.show-grid tr {
            border: 1px dotted darkgray;
            color: darkgray;
        }


td[class*='tbl-notifications-control'],
td[class*='tbl-notifications-control'] > div {
    height: 100%;
    border-collapse: collapse;
    margin: 0px;
    padding: 0px;
}

    td[class*="tbl-notifications-control"] > div:before {
        content: "";
        position: absolute !important;
        top: 1vw;
        right: 2.75vw;
        border-radius: 0 0 .4vw 0;
        transform: rotate(-135deg);
        border-style: solid;
        border-width: 1.5vw 1.5vw 1.5vw 1.5vw;
        border-color: transparent rgba(033,033,033,0.95) rgba(033,033,033,0.95) transparent;
    }

    td[class*='tbl-notifications-control'] > div > table {
        position: absolute;
        width: 100%;
        height: 100%;
        border-collapse: collapse;
        margin: 0px;
        padding: 0px;
    }

        td[class*="tbl-notifications-control"] > div > table::after {
            content: "";
            position: absolute !important;
            top: 0vw;
            bottom: 0vw;
            left: 0vw;
            right: 0vw;
            background-color: rgba(033,033,033,.95);
            border-radius: 1vw;
            margin: 2.5vw -8.25vw 2.5vw 0vw !important;
            z-index: -1;
        }

div#CRITICAL {
    color: #9e9e9e !important;
    font-size: smaller;
}
table[class="tbl-notifications"] td:nth-child(1) {
    width: 15%;
}

table[class="tbl-notifications"] td:nth-child(2) {
    /*position: absolute;*/
    padding: .5vw;
    color: #fff !important;
    font-size: 2.8vw;
    text-align: left;
    font-family:'Roboto-Bold';
}

    table[class="tbl-notifications"] td:nth-child(2) > div {
        /*position: absolute;*/
        padding: .5vw;
        color: #fff !important;
        font-size: 2.8vw;
        text-align: left;
        width: initial;
	font-family:'Roboto-Bold';
    }

table[class="tbl-notifications"] tr:not(:first-child):not(:last-child) td:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.125);
    height: 8vw;
    width: 85%;
}


td[class="tbl-notifications-paging"],
td[class="tbl-notifications-paging"] div,
td[class="tbl-notifications-paging"] table,
td[class="tbl-notifications-paging"] table tr {
    height: 100%;
    border-collapse: collapse;
}

    td[class="tbl-notifications-paging"] table {
        width: 100%;
    }

        td[class="tbl-notifications-paging"] table tr {
            height: 50%;
        }

    td[class="tbl-notifications-paging"] td[disabled] {
        background-image: none;
    }

        td[class="tbl-notifications-paging"] td[disabled]:before {
            border: initial;
            box-shadow: initial;
            transform: initial;
            width: initial;
        }


    td[class="tbl-notifications-paging"] td[class*='page-'] div {
        transition: all 0.4s ease;
    }

        td[class="tbl-notifications-paging"] td[class*="page-"] div::before,
        td[class="tbl-notifications-paging"] td[class*="page-"] div::after {
            content: "";
            position: absolute;
            border: 0.2vw solid rgba(255,255,255,1);
            border-radius: .1vw;
            transition: all 0.4s ease;
            margin-top: 40%;
        }

        td[class="tbl-notifications-paging"] td[class*='page-'] div::before {
            left: 49%;
            right: 40%;
        }

        td[class="tbl-notifications-paging"] td[class*='page-'] div::after {
            left: 40%;
            right: 49%;
        }

    td[class="tbl-notifications-paging"] td[class*='page-up']:not([disabled]) div::before {
        left: 47%;
        transform: rotateZ(45deg);
    }

    td[class="tbl-notifications-paging"] td[class*='page-up']:not([disabled]) div::after {
        right: 47%;
        transform: rotateZ(-45deg);
    }

    td[class="tbl-notifications-paging"] td[class*='page-down']:not([disabled]) div::before {
        left: 47%;
        transform: rotateZ(-45deg);
    }

    td[class="tbl-notifications-paging"] td[class*='page-down']:not([disabled]) div::after {
        right: 47%;
        transform: rotateZ(45deg);
    }

    td[class="tbl-notifications-paging"] td[class*="page-"][disabled] div::before,
    td[class="tbl-notifications-paging"] td[class*="page-"][disabled] div::after {
        left: 50%;
        right: 50%;
    }
