﻿.notificationControl {
    height: 36px;
    width: 32px;
    position: absolute;
    right: 35px;
    overflow: hidden;
    display: inline-block;
    font-family: 'Book Antiqua', 'Arial Narrow', Arial, sans-serif;
    z-index: 100;
    -moz-transition: height .5s ease;
    -webkit-transition: height .5s ease;
    -o-transition: height .5s ease;
    transition: height .5s ease;
    transition-delay: 1s;
}

.notificationBanner {
    position: relative;
    height: 36px;
    width: 100%;
}

.notificationIcon {
    position: absolute;
    right: 5px;
    top: 5px;
    font-size: 22px;
}

.notificationsCount {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 100%;
    color: white;
    width: 22px;
    height: 18px;
    z-index: 10;
    text-align: center;
    padding-top: 3px;
    height: 23px;
    font-size: 14px;
}

.notificationsList {
    border: 1px solid Black;
    border-radius: 10px;
    overflow-y: auto;
    Background-color: white;
    overflow-wrap: break-word;
    height: calc(100% - 28px );
    width: 100%;
    padding: 8px;
}

.notificationsHeader {
    font-family: 'Copperplate Gothic';
    font-size: 1.15em;
}

.notificationItem {
    border-bottom: 1px solid darkgrey;
}

.notificationContext {
    display: inline-block;
    font-size: 14px;
}

.notificationWhom {
    font-family: 'Copperplate Gothic';
    color: purple;
    margin-right: 4px;
}

.notificationText {
    color: black;
}

.notificationDate {
    float: right;
    font-size: 12px;
}

.notificationLink {
}

.notificationLink:hover {
}