.notification-dropdown {
    border-radius: 16px;
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.20);
    background-color: var(--background-white);
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 100;
    display: flex;
    width: 373px;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
}

.notification-header {
    display: flex;
    padding: 24px 24px 20px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    align-self: stretch;
    position: relative;
    align-items: center;
}

.notification-header label {
    color: var(--Gray-900);
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 125% */
    display: flex;
    align-items: center;
    gap: 8px;
}

.notification-header label .number {
    border-radius: 8px;
    background: var(--Primary-500);
    color: var(--white);
    display: flex;
    padding: 2px 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
}

.notification-header .read-all {
    padding-right: 25px;
    align-items: center;
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    color: var(--Primary-500);
}

.notification-header .close {
    position: absolute;
    right: 20px;
    top: 22px;
    cursor: pointer;
}

.notification-tabs {
    padding: 0 16px 20px;
    width: 100%;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--Gray-100);
}

.notification-dropdown .view-all {
    display: flex;
    width: 100%;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--Primary-50);
}

.notification-dropdown .view-all a {
    color: var(--Primary-500);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /* 133.333% */
}

.notification-item {
    display: flex;
    gap: 12px;
    width: 100%;
    padding: 8px 16px;
}

.notification-item .notification-icon {
    display: flex;
    width: 40px;
    position: relative;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    background: var(--background-white);
    height: 40px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
}

.notification-item h3 {
    color: var(--Gray-900);
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    padding-bottom: 8px;
}

.notification-item p {
    color: var(--Gray-600);
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 133.333% */
    font-size: 12px;
    padding-bottom: 8px;
    margin-bottom: 0;
}

.notification-item .time {
    color: var(--Gray-500);
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    /*160% */
}

.notification-icon span {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 10px;
    height: 10px;
    aspect-ratio: 1/1;
    background-color: var(--Primary-500);
    fill: var(--Primary-500);
    border: 1px solid var(--background-white);
    stroke: 1px salmon var(--white);
    border-radius: 100px;

}

.notification-icon span.yellow {
    background-color: var(--yellow-500);
}

.notification-icon span.green {
    background-color: var(--Green-500);
}

.notification-icon span.gray {
    background-color: var(--Gray-400);
}

.filter-dropdown {
    position: absolute;
    top: 46px;
    left: 0;
    background: var(--background-white);
    border: 1px solid var(--Gray-100);
    box-shadow: 0 4px 16px #0000001a;
    width: 160px;
    z-index: 10;
    border-radius: 8px;
    padding: 4px;
    max-height: 270px;
    overflow: auto
}

.filter-dropdown ul li {
    display: flex;
    padding: 8px 10px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    color: var(--Gray-700);
    margin-bottom: 4px;
    cursor: pointer;
    border-radius: 8px;
    transition: all .3s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.filter-dropdown ul li:last-child {
    margin-bottom: 0
}

.filter-dropdown ul li.active,
.filter-dropdown ul li:hover {
    background-color: var(--Gray-50)
}

.all-notifications {
    width: 100%;
}

.all-notifications .notification-item {
    padding: 16px;
    border-bottom: 1px solid var(--Gray-50);
    position: relative;

}

.all-notifications h4 {
    color: var(--Gray-400);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    /* 142.857% */
    margin-top: 10px;
}

.notification-tag {
    position: absolute;
    right: 16px;
    top: 50%;
    margin-top: -13px;
}

.notifications-add {
    padding: 24px;
}

.notifications-add .row {
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .notification-tag {
        top: 8px;
        margin-top: 0;
        right: 0;
    }
}





.tabs {
    display: flex;
    align-items: center;
    padding: 4px;
    width: auto;
    background-color: var(--Gray-50);
    border-radius: 16px;

    .btn {
        display: flex;
        padding: 6px 12px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex: 1 0 0;
        border-radius: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 16px;
        font-size: 12px;
        color: var(--Gray-400);
        border: none;

        &.active {
            border-radius: 12px;
            background: var(--background-white);
            color: var(--Primary-500);
            box-shadow: 0 1px 1px #0000001a;
        }
    }
}