.notifications {
    font-size: 14px;
    position: fixed;
    width: 640px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 60px;
    z-index: 100;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 4px rgb(0 0 0 / 15%), 0 5px 10px rgb(0 0 0 / 5%);
    display: none;
}

.is-mobile .notifications {
    width: 100%;
    top: 50px;
    border-radius: 0;
}

.notifications:before {
    content: "";
    display: block;
    position: absolute;
    /* left: 0; */
    right: 50%;
    margin-left: auto;
    margin-right: auto;
    top: -10px;
    border-bottom: 10px solid #fff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.notifications.OPEN {
    display: block;
}

.notifications__title {
    margin: 12px 0 0;
}

.notifications__items {
    margin: 0;
    padding: 0;
}

.notifications__item {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: inherit;
    display: flex;

    gap: 12px;
}

.notifications__icon {
    border-radius: 50%;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: #9ed0e6;
}

.notifications__item.NEWS .notifications__icon {
    background-color: #f98080;
}

.notification__content {
    /* margin-left: 12px; */
}



.notifications__description {
    font-size: 16px;
    line-height: 1.3;
    text-overflow: ellipsis;
    overflow: hidden;
}

.notifications__meta {
    font-size: 13px;
    color: #777;
    font-weight: normal;
    display: flex;
    gap: 0 4px;
    flex-wrap: wrap;
    line-height: 1.2;
}

.notifications__new {
    padding: 0 12px;
}

.notifications__read {
    background-color: #f3f3f3;
    border-top: 1px solid #ddd;
    padding: 0 12px;
}

.notifications__view-more {
    color: #0079f2;
    display: block;
    padding: 12px 0 20px;
    text-align: center;
    text-decoration: none;
}