.notifications-section {
    width: 480px;
    position: absolute;
    right: -10px;
    background: white;
    max-height: 800px;
    padding: 20px 0;
    box-sizing: border-box;
    text-align: start;
    cursor: default;
    border-radius: 16px;
    border: 1px solid #EBEDEF;
    z-index: 99999;
    top: 50px;
    overflow: hidden;
    display: none;
}

.notifications-item[data-notifications-show] .notifications-section {
    display: block;
}

.notifications-section .notifications-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #EBEDEF;
    padding: 0 20px 10px;
}

.notifications-section .notifications-header h2 {
    margin: 0;
    color: #1A1D21;
    font-weight: 600;
    font-size: 18px;
}

.notifications-section .notifications-header .close {
    cursor: pointer;
}

.notifications-section .notification-link {
    display: flex;
    align-items: center;
    flex-direction: row;
    cursor: pointer;
    text-decoration: unset;
}

.notification-list-content .notification-avatar-wrapper .notification-avatar {
    width: 40px;
    height: 40px;
    max-width: 40px;
    background: rgb(175, 186, 202);
    border-radius: 50%;
    overflow: hidden;
}

.notification-list-content .notification-avatar-wrapper .notification-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.notification-list {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
}

.notification-list:not(:last-child) {
    border-bottom: 1px solid #EBEDEF;
}

.notification-list-header {
    display: flex;
    justify-content: space-between;
    color: #606977;
    font-weight: 400;
    font-size: 12px;
    margin-bottom: 10px;
}

.notification-list-action {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.notification-list-action .icon svg {
    top: 0 !important;
}

.notification-list-action .icon {
    margin-right: 6px;
}

.notification-list-timestamp {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.notification-list-timestamp .icon {
    margin: 0 5px;
}

.notification-list-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.notification-list-content-specifics-image {
    height: 56px;
    width: 56px;
    max-width: 56px;
}

.notification-list-content-specifics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.notification-list-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: black;
}

.notification-list-info-action {
    color: #606977;
    font-weight: 400;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 318px;
    display: block;
}

.notification-list:has(.notification-list-content-specifics-unsubscribe) .notification-list-info-action,
.notification-list:has(.notification-list-content-specifics-subscribe) .notification-list-info-action {
    width: 170px;
}
.notification-avatar-wrapper {
    margin-right: 12px;
}

.notification-list-info-action .notification-list-info-action-selection {
    color: #1A1D21;
    font-weight: 600;
    font-size: 14px;
}

.notification-list-content-specifics button {
    outline: none;
    background: #E34D1E;
    border: unset;
    color: white;
    border-radius: 8px;
    padding: 4px 8px;
    box-sizing: border-box;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
}

.notification-list-content-specifics .notification-list-content-specifics-unsubscribe button {
    background: rgba(26, 29, 33, 0.04);
    color: #606977;
}

.notification-list-content-specifics {
    display: flex;
    align-items: center;

}

.notification-nothing-found {
    text-align: center;
    margin-top: 30px;
    color: #393c40;
}

.notifications-section .notifications-filter-wrapper .notification-filter .icon .active {
    display: none;
}

.notifications-section .notifications-filter-wrapper .notification-filter:not(.active):hover .icon .active,
.notifications-section .notifications-filter-wrapper .notification-filter.active .icon .active {
    display: block;
}

.notifications-section .notifications-filter-wrapper .notification-filter:not(.active):hover .icon .not-active,
.notifications-section .notifications-filter-wrapper .notification-filter.active .icon .not-active {
    display: none;
}

.notifications-section .notifications-filter-wrapper .notification-filter {
    display: none;
    flex-direction: row;
    align-items: center;
    padding: 11px 20px;
    border-bottom: 1px solid #EBEDEF;
}

.notifications-section .notifications-filter-wrapper .notification-filter span {
    color: #606977;
    font-weight: 500;
    font-size: 16px;
}

.notifications-section .notifications-filter-wrapper .notification-filter .icon {
    margin-right: 10px;
}

.notifications-section .notifications-filter-wrapper .notification-filter.active {
    background: #E34D1E0D;
    border-bottom: 1px solid #E34D1E;
    display: flex !important;
}

.notifications-section .notifications-filter-wrapper .notification-filter.active span {
    color: #E34D1E;
}

.notifications-section .notifications-lists-wrapper .notifications-lists.active {
    display: block;
}

.notifications-section .notifications-lists-wrapper .notifications-lists {
    display: none;
}

.notifications-section .notifications-filter-wrapper .notification-filter:not(.active):hover {
    background: #FCE9D8;
    border-bottom: 1px solid #B63618;
}

.notifications-section .notifications-filter-wrapper .notification-filter:not(.active):hover span {
    color: #B63618;
}

.notifications-section .notifications-lists {
    max-height: 415px;
    overflow-y: scroll;
}

.notifications-section .notification-list-info .user-name {
    color: #1A1D21;
    text-decoration: unset;
}
.notifications-section .notification-list-info a {
    text-decoration: unset;
    width: fit-content;
}
.notification-list[data-is-read=""] {
    background: #E34D1E0D;
}
.notification-list[data-is-read=""]:not(:last-child) {
    border-bottom: 1px solid #F8D0B0;
}
.notification-list[data-is-read=""] .notification-list-timestamp span,
.notification-list[data-is-read=""] .notification-list-action span {
    font-weight: 600;
}
.notification-list[data-is-read=""] .notification-list-action span,
.notification-list[data-is-read=""] .notification-list-timestamp span,
.notification-list[data-is-read=""] .notification-list-info-action {
    color: #E34D1E;
}
.notification-list[data-is-read=""] .notification-list-action .icon svg path {
    fill: #E34D1E;
}
