.card#notifications {
    display: none;
}
.card.show#notifications:before {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: block;
    background-color: transparent;
    z-index: -1;
}
.card.show#notifications {
    display: block;
    width: 300px;
    right: 0.5rem;
    top: 40px;
    background-color: var(--white);
    max-height: calc(100vh - 50px);
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    box-shadow: 0 0 4px var(--light);
}
.card.show#notifications > div {
    display: flex;
    flex-wrap: nowrap;
    align-items: start;
    position: relative;
    padding: .5rem;
}
.card.show#notifications > div:not(:last-child) {
    border-bottom: solid 1px rgba(136, 136, 136, 0.15);
}
.card.show#notifications > div a {
    padding: 0;
}
.card.show#notifications > div > a + div {
    padding: 0 .5rem;
}
.card.show#notifications > div > a + div > p.h5 {
    padding: 0;
    margin-bottom: .3125rem;
}
.card.show#notifications > div a.delete {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    color: var(--gray);
}