#noticeContainer{
    position: fixed;
    bottom: 50px;
    left: 0;
    width: 20%;
    text-align: center;
    overflow: hidden;
}
.notice{
    position: relative;
    display: block;
    border-radius: 2px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 1px 2px rgba(0,0,0,0.5);
    margin: 5px;
    padding: 5px;
    cursor: pointer;
}
.notice.positive{
    background: linear-gradient(to bottom, rgba(171,188,188,1) 0%,rgba(118,194,194,1) 30%);
}
.notice.negative{
    background: linear-gradient(to bottom,  rgba(224,116,116,1) 0%,rgba(226,59,59,1) 30%);
}
.notice.progress{
    background: linear-gradient(to bottom, rgba(230,151,38,1) 0%,rgba(226,133,0,1) 30%);
}
.notice .progressBar{
    width: 90%;
    margin: 5px auto;
    height: 5px;
    background-color: #aaa;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.notice .progressBar .indicator{
    height: 100%;
    background: linear-gradient(to bottom, rgba(182,214,171,1) 0%,rgba(138,211,112,1) 100%);
    margin: 0;
    padding: 0;
    transition: width 0.2s linear;
}