#notifications {
    display: table;
    color: white;
    font-size: 24px;
    margin-top: 4px;
}

#notifications_area {
    cursor: pointer;
    display: inline-block;
}

#notifications_count {
    font-size: 12px;
    background-color: red;
    display: inline-block;
    width: 18px;
    height: 18px;
    text-align: center;
    position: relative;
    left: -16px;
}

#notifications_window {
    position: absolute;
    background-color: #fff;
    color: black;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .2);
    border: 1px solid rgba(0, 0, 0, .15);
    width: auto;
    height: 320px;
    overflow-y: visible;
    overflow-x: hidden;
    display: none;
}

.notifications_ntf {
    width: 256px;
    height: 64px;
    font-size: 12px;
    cursor: pointer;
    background: linear-gradient(to bottom, #ecfddc, white);
}

.notifications_ntf.red {
    background: linear-gradient(to bottom, #fde1e4, white);
}

.notifications_ntf.red:hover {
    background: #f2dede;
}

.notifications_ntf:hover {
    background: #F8F8F8;
}

.notifications_ntf .img {
    display: inline-block;
    width: 16px;
    text-align: center;
}

.notifications_ntf .time {
    position: relative;
    display: inline-block;
    margin: 3px;
    text-align: left;
    width: 100%;
    top: -2px;
}

.notifications_ntf .project {
    position: relative;
    display: inline-block;
    top: 0px;
    left: 8px;
}

.progress {
    width: 190px;
    height: 16px;
    text-align: center;
    background-color: #808080;
    display: inline-block;
    margin: 0;
}

.progress .value .maxvalue {
    width: 190px;
    height: 100%;
    display: inline-block;
    background: -webkit-linear-gradient(-45deg,
    transparent 33%, rgba(0, 0, 0, .1) 33%,
    rgba(0, 0, 0, .1) 66%, transparent 66%),
    -webkit-linear-gradient(top,
            rgba(255, 255, 255, .25),
            rgba(0, 0, 0, .25)),
    -webkit-linear-gradient(left, #09c, #f44);
}

.progress .value {
    overflow: hidden;
    height: 100%;
}