.notifications-container h2 {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.notifications-container>p {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    margin-top: 3px;
    margin-bottom: 40px;
}

.notifications-container .notifications-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.notifications-container .notifications-group {
    display: flex;
    flex-direction: column;
    gap: 20px !important;
}

.notifications-group .group-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notifications-group .group-top>p {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.notifications-group .group-top button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.notifications-group .notification {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    padding: 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.notifications-group .notification.unread {
    border: 0;
    background: rgba(255, 255, 255, 0.2);
}

.notifications-group .notification>img {
    width: 77px;
    height: 77px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 0;
    margin-bottom: auto;
}

.notifications-group .notification>div:first-of-type {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 2px;
    margin-left: 22px;
    margin-right: auto;
    height: 100%;
}

.notifications-group .notification>div:first-of-type span {
    width: fit-content;
}

.notification .notification-title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.notification .notification-time {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.notification>div:first-of-type>p {
    font-size: 24px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.notification>div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.notification>div button {
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    width: fit-content;
}

.notification>div button img {
    width: 18px;
    height: 18px;
}

@media screen and (max-width:1100px) {


    .notifications-group .notification>div:first-of-type {
        max-width: 50% !important;
    }

    .notification .notification-title {
        font-size: 22px;
    }

    .notification>div:first-of-type>p {
        font-size: 18px;
        max-width: 80%;
    }

    .notification>div {
        gap: 10px;
    }

    .notification>div button {
        font-size: 14px;
    }

    .notification>div button img {
        width: 16px;
        height: 16px;
    }

}

@media screen and (max-width:600px) {
    .notifications-container h2 {
        font-size: 28px;
    }

    .notifications-container>p {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .notifications-group .group-top button p {
        display: none !important;
    }

    .notifications-group .notification>div:first-of-type {
        margin-left: 15px;
    }

    .notifications-group .notification>div:first-of-type span {
        flex-direction: column;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 1px !important;
    }

    .notifications-group .notification {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-radius: 10px;
        padding: 10px;
    }

    .notifications-group .notification>img {
        width: 50px;
        height: 50px;
    }

    .notification .notification-title {
        font-size: 20px;
    }

    .notification .notification-time {
        font-size: 14px;
    }


    .notification>div:first-of-type>p {
        min-width: 100% !important;
        font-size: 16px;
    }

    .notification>div {
        gap: 7px;
    }

    .notification>div button {
        font-size: 13px;
    }

    .notification>div button img {
        width: 14px;
        height: 14px;
    }

}

@media screen and (max-width:440px) {


    .notification .notification-title {
        font-size: 18px;
    }

    .notification .notification-time {
        font-size: 13px;
    }


    .notification>div:first-of-type>p {
        min-width: 100% !important;
        font-size: 15px;
    }

    .notification>div {
        gap: 7px;
    }

    .notification>div button {
        font-size: 13px;
    }

    .notification>div button img {
        width: 14px;
        height: 14px;
    }

}