#noti-icon {
    cursor: pointer;
   padding-top: 12px;
}

#noti-icon .fa-globe {
    font-size: 22px;
}

.notify-wrapper {
    position: relative;
}

.notify {
    border: 1px solid #ccc;
    position: absolute;
    top: 50px;
    right: -7px;
    width: 400px;
    background-color: white;
    box-shadow: 3px 3px 2px #929292;
    z-index: -1;

    opacity: 0;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.notify .beeperNub {
    position: absolute;
    top: -3px;
    right: 17px;
    width: 20px;
    height: 20px;
    background-color: white;
    border: 1px solid #ccc;
    z-index: 0;
    -ms-transform: rotate(45deg); /* IE 9 */
    -webkit-transform: rotate(45deg); /* Safari */
    transform: rotate(45deg);
}

.notify-header, .notify-footer {
    position: relative;
    width: 100%;
    padding: 10px 10px;
    font-size: 12px;
    font-weight: bold;
    background-color: white;
    z-index: 10;
}

.view-all:hover {
    text-decoration: underline;
}

.notify-header {
    border-bottom: 1px solid #aab;
}

.notify-footer {
    border-top: 1px solid #aab;
    text-align: center;
}

.notify-body {
    position: relative;
    top: 0;
    width: 100%;
    height: 360px;
    background-color: white;
    overflow: hidden;
}

.notify-content {
    position: absolute;
    width: 100%;
    min-height: 300px;
}

.notify-item {
    position: relative;
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ccc;
    padding: 5px;
    cursor: pointer;
}

.notify-item-not-read {
    background-color: #e9e9e9;
}

.notify-item .fa-dot-circle-o, .notify-item .fa-times {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    color: #bdbdbd;
    transition: color 0.2s ease, font-size 0.2s ease, top 0.2s ease, right 0.2s ease;
    font-size: 12px;
    display: none;
}

.notify-item .fa-times {
    top: 25px;
}

.notify-item .fa-dot-circle-o:hover {
    color: #a8a8a8;
    font-size: 14px;
    top: 9px;
    right: 9px;
}

.notify-item .fa-times:hover {
    color: #a8a8a8;
    font-size: 14px;
    top: 24px;
    right: 9px;
}

.notify-item:hover, .notify-item:hover .notify-item-content {
    background-color: #f9f9f9 !important;
}

.notify-item:hover .fa-times, .notify-item:hover .fa-dot-circle-o {
    display: inherit;
}

.notify-item-sender, .notify-item-content {
    display: block;
    float: left;
}

.notify-item-sender {
    margin-top: 9px;
    width: 50px;
    height: 50px;
    /*background-image: url('http://placehold.it/50');*/
    overflow: hidden;
}

.avatar-sender {
    width: 100%;
    margin-top: 50%;
    transform: translateY(-50%);
}

.notify-item-content {
    width: 300px;
    height: auto;
    padding: 0px 3px;
    overflow: hidden;
    font-size: 9pt;
    
    padding: 6px 10px;
    padding-bottom: 7px;
}

.notify-item-content a {
    color: black;
}

.notify-scroll {
    position: absolute;
    width: 3px;
    height: 100%;
    right: 0;
    top: 0;
    background-color: #c1c1c1;
    border-radius: 5px;
    transition: width 0.2s ease;
}

.notify-body:hover .notify-scroll {
    width: 6px;
}

.notify-track {
    position: absolute;
    width: 100%;
    height: 50px;
    background-color: #605c5b;
    border-radius: 5px;
    cursor: pointer;
}
