﻿.Noti_Button {
    width: 22px;
    height: 22px;
    line-height: 22px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background: #2e467c;
    margin: -3px 10px 0 10px;
    cursor: pointer;
}

.Noti_Counter {
    display:block;
    position: absolute;
    background: #e1141e;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    padding: 1px 3px;
    margin: -8px 0 0 25px;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    z-index:1
}

.Notifications{
    display: none;
    width: 300px;
    position: absolute;
    top: 94px;
    left: 282px;
    background: #fff;
    border: solid 1px rgba(100,100,100,.2);
    -webkit-box-shadow: 0 3px 8px rgba(0,0,0,.2);
    z-index: 1000
}

    .Notifications:before {
        content: '';
        display:block;
        width:0;
        height:0;
        color:transparent;
        border:10px solic #ccc;
        border-color: transparent transparent #fff;
        margin-top: -20px;
        margin-left: 10px;
    }

    .Notifications h3{
        display:block;
        color: #333;
        background: #fff;
        font-weight: 700;
        padding: 8px;
        margin: 0;
        font-size: 12px;
        border-bottom: solid 1px rgba(100,100,100,.3);
    }

    .Notifications .SeeAll {
        background: #f6f7f8;
        padding: 8px;
        font-size: 12px; 
        font-weight: 700;
        border-top:solid 1px rgba(100,100,100,.3);
        text-align: center;
    }

        .Notifications .SeeAll a{
            color: #3b5998;
        }

            .Notifications .SeeAll a:hover{
                background: #f6f7f8;
                color: #3b5998;
                text-decoration: underline;
            }

.NotificationItems{
    height: 300px;
    overflow-y: scroll;
    background-color: #f0f8ff;
}


.SingleNotiDiv {
    border-top: 1px solic #ccc;
    margin-bottom: 20px;
    cursor: pointer;
    color: #000;
}

.SingleNotiDivUnReadColor{
    color: #c00;
}

.NotificationTitle {
    font-weight:700;
    margin-left: 10px;
}

.NotificationBody {
    margin: 0 10px 0 10px;
}

.NotiCreatedDate {
    text-align: right;
    margin-right: 10px;
}

.NotiFromPropName {
    margin-left: 4px;
}

::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}