#user-notifications-area {
    display: inline-block;
    position: relative;
    width: 20vw;
    height: 1em;
    margin-right: 1em;
}

#user-notifications-area .notifications-bell {
    position: absolute;
    top: -25%;
    right: 0;
    line-height: 1.75em;
    text-align: center;
    color: #FFFFFF;
    height: 1.75em;
    width: 1.75em;
}

#user-notifications-area #notifications-area-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#user-notifications-area #notifications-area-wrapper {
    position: absolute;
    height: 50vh;
    width: 25em;
    display: none;
    background-color: white;
    z-index: 1;
    -webkit-box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.5);
    box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.5);
}

#user-notifications-area.is-extended #notifications-area-wrapper {
    display: block;
    overflow-y: scroll;
}

#user-notifications-area.is-extended #notifications-area {
    display: block;
    z-index: 2;
}

#user-notifications-area #notifications-area .single-notification {
    line-height: 1;
    padding: 0.75em;
    border-bottom: 1px solid #808082;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.single-notification-right {
    width: 2em;
    text-align: right;
}
.single-notification-right .icon{
    height: 1.25em;
    width: 1.25em;
    padding: 0.25em;
    margin: 0;
    border: none;
    background-color: transparent;
}

#user-notifications-area #notifications-area .single-notification:last-child {
    border-bottom: none;
}
#user-notifications-area #notifications-area .single-notification .single-notification-url {
    margin: 0.25em;
    color: #2E447A;
}
