ul {
    position: relative;
}

#notificationPanel {
    width: 30rem;
    left: -700%;
    top: 120%;
    border-radius: 12px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
    cursor: auto;
}

#userPhotoNav {
    margin-left: 4px;
}

.dialogWorkingBox.notify {
    background-color: #fff;
    height: 100%;
    width: 100%;
}

.dialogWorkingContainer.notify .circle {
    background-color: #002d72;
}

.notification-bell {
    cursor: pointer;
}

.bell-container {
    position: relative;
    height: 36px;
    width: 36px;
}

.bell-icon {
    background-color: #F3C300;
    padding: .63rem;
}

.notification-counter {
    position: absolute;
    padding: .55rem;
    font-size: 10px;
    height: 16px;
    width: 16px;
    background-color: #A5192E;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #243A7F;
    top: 24px;
    right: -3px;
    color: white;
}

.panel-header {
    padding: .5rem 1.25rem .75rem;
    font-size: 20px;
    font-weight: 700;
    color: #002D72;
    font-family: OpenSans-Bold;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 0;
}

.notifications-container {
    overflow-y: scroll;
    max-height: 500px;
}

.notification-item {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #D9D9D9;
    padding: .5rem 1.25rem;
    cursor: pointer;
}

.notification-item:hover {
    background-color: rgba(0, 45, 114, .05);
}

.notification-item:first-child {
    border-top: none;
}

.title {
    font-weight: 700;
    color: #000;
    font-size: 16px;
    margin-bottom: 0;
}

.message {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.description {
    width: 90%;
    margin-bottom: .25rem;
    color: #000;
    font-size: 16px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.read {
    display: none;
}

.unread {
    display: inline-block;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background-color: #017BFE;
}

.date {
    font-size: 14px;
    margin: 0;
}

.base {
    color: #737373;
}

.highlighted {
    color: #0072CE;
}

.no-message {
    padding: .5rem 1.25rem 0;
    margin-bottom: .5rem;
}

@media screen and (max-width: 650px) {
    #notificationPanel {
        width: 25rem;
        left: -600%;
    }
}

@media screen and (max-width: 414px) {
    #notificationPanel {
        left: -568%;
    }
}

@media screen and (max-width: 390px) {
    #notificationPanel {
        width: 24rem;
        left: -512%;
    }
}

@media screen and (max-width: 375px) {
    #notificationPanel {
        width: 21rem;
        left: -450%;
    }
}

@media screen and (max-width: 360px) {
    #notificationPanel {
        left: -415%;
    }
}

@media screen and (max-width: 344px) {
    #notificationPanel {
        left: -382%;
    }
}

@media screen and (max-width: 320px) {
    #notificationPanel {
        width: 18rem;
        left: -325%;
    }
}