﻿#notifications-widget * {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    #notifications-widget *:after {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    #notifications-widget *:before {
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

#notifications-widget {
    background: #ffffff;
    color: #fefefe;
    font-family: arial;
    font-size: 14px;
    position: absolute;
    right: 270px;
    top: 8px;
}

    #notifications-widget .button-default {
        -webkit-transition: 0.25s ease-out 0.1s color;
        -moz-transition: 0.25s ease-out 0.1s color;
        -o-transition: 0.25s ease-out 0.1s color;
        transition: 0.25s ease-out 0.1s color;
        background: transparent;
        border: none !important;
        cursor: pointer;
        margin: 0;
        outline: none;
        position: relative;
    }

.show-notifications {
    position: relative;
    margin-top: 2px;
}

    .show-notifications:hover #icon-bell {
        fill: #34495e;
    }

    .show-notifications:focus #icon-bell {
        fill: #34495e;
    }

    .show-notifications .notifications-count {
        -moz-border-radius: 50%;
        -webkit-border-radius: 50%;
        border-radius: 50%;
        -moz-background-clip: padding-box;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        color: #fefefe;
        font: normal 11px arial;
        height: 20px;
        line-height: 1.82em;
        position: absolute;
        text-align: center;
        width: 20px;
    }

.count-info {
    background: #19b60d;
    left: 15px;
    top: -9px;
}

.count-warnings {
    background: #e4c614;
    left: -4px;
    top: 17px;
}

.count-errors {
    background: #e81212;
    left: 35px;
    top: 17px;
}


@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.notifications {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding-box;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 1s;
    animation-name: fadeIn;
    animation-duration: 1s;
    background: #ffffff;
    border: 1px solid #bdc3c7;
    left: -210px;
    opacity: 1;
    position: absolute;
    top: 60px;
    width: 470px;
    height: 577px;
}

    .notifications:after {
        border: 10px solid transparent;
        border-bottom-color: #3498db;
        content: '';
        display: block;
        height: 0;
        left: 223px;
        position: absolute;
        top: -20px;
        width: 0;
    }

    .notifications h3 {
        background: #3498db;
        color: #fefefe;
        margin: 0;
        padding: 10px;
        cursor: default;
        font-size: 1.05em;
        font-weight: normal;
    }

    .notifications .notifications-list {
        list-style: none;
        margin: 0;
        overflow: hidden;
        padding: 0;
    }

        .notifications .notifications-list .notification-item {
            -webkit-transition: -webkit-transform 0.25s ease-out 0.1s;
            -moz-transition: -moz-transform 0.25s ease-out 0.1s;
            -o-transition: -o-transform 0.25s ease-out 0.1s;
            transition: transform 0.25s ease-out 0.1s;
            border-top: 1px solid #bdc3c7;
            color: #7f8c8d;
            cursor: default;
            display: block;
            padding: 10px;
            position: relative;
            white-space: nowrap;
            display: flex;
            flex-wrap: nowrap;
            justify-content: space-around;
            align-items: center;
        }

            .notifications .notifications-list .notification-item .details {
                display: inline-block;
                vertical-align: middle;
                white-space: normal;
                flex: 0 1 80%;
            }

                .notifications .notifications-list .notification-item .details .title {
                    display: block;
                }

                .notifications .notifications-list .notification-item .details .date {
                    display: block;
                    color: #95a5a6;
                    font-size: .85em;
                    margin-top: 3px;
                }

            .notifications .notifications-list .notification-item .icon {
                flex: 0 1 10%;
                min-width: 40px;
                min-height: 40px;
                max-width: 40px;
                max-height: 40px;
                margin-right: 5px;
            }

            .notifications .notifications-list .notification-item .button-dismiss {
                display: inline-block;
                vertical-align: middle;
                color: #bdc3c7;
                font-size: 2.25em;
                flex: 0 1 10%;
            }

                .notifications .notifications-list .notification-item .button-dismiss:hover {
                    color: #95a5a6;
                }

                .notifications .notifications-list .notification-item .button-dismiss:focus {
                    color: #95a5a6;
                }

            .notifications .notifications-list .notification-item.no-data {
                text-align: center;
            }

                .notifications .notifications-list .notification-item.no-data:before {
                    display: none;
                }

    .notifications.empty .notifications-list .no-data {
        display: block;
        padding: 10px;
    }

    .notifications .nav {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-around;
        align-items: center;
    }

        .notifications .nav > li {
            flex: 0 1 100%;
        }

    .notifications .close-widget {
        background: none;
        border: none;
        font-size: 30px;
        position: absolute;
        left: 440px;
        top: -5px;
        color: white;
        padding: 0px;
    }

        .notifications .close-widget:focus {
            outline: 0;
        }

.fade-show {
    animation-name: fade;
    animation-duration: 1s;
    overflow-y: auto;
    height: 450px;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.clear-category {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 33px;
    width: 467px;
    background-color: white;
    border: 1px solid #2196F3;
    color: dodgerblue;
}

    .clear-category:hover {
        background: #2196F3;
        color: white;
    }

#table-list-notification-launch .table-list-row > div:first-child{
    width: 18px;
}

#table-list-notification-launch .table-list-row > div:nth-child(3) {
    width: 110px;
}

#table-list-notification-launch .table-list-row > div:nth-child(4) {
    width: 150px;
}