.notification-body {
    .notification-item {
        cursor: pointer;
        margin-top: 16px;
        background: #FFFFFF;
        box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.04);
        border-radius: 16px;
        width: 100%;
        height: 70px;

        .notification-container {
            padding: 16px 20px;
            display: flex;
            justify-content: space-between;

            .notification-content {
                .notification-title {
                    text-align: left;
                    margin-bottom: 8px;
                    font-family: Helvetica;
                    font-weight: bold;
                    font-size: 14px;
                    line-height: 16px;
                    color: #444444;
                }

                .notification-description {
                    margin-bottom: 0;
                    font-family: Helvetica;
                    font-weight: normal;
                    font-size: 12px;
                    line-height: 14px;
                    color: #444444;
                }
            }

            .message {
                background-color: #FF1414;
                width: 32px;
                height: 32px;
                border-radius: 100px;
                background-image: url(./../assets/images/ic-message.svg);
                background-repeat: no-repeat;
                background-position-y: 9px;
                background-position-x: 7px;
            }

            .message-read {
                background-position-x: 7px;
                background-position-y: 6px;
                background-color: #888888;
                width: 32px;
                height: 32px;
                border-radius: 100px;
                background-image: url(./../assets/images/ic-message-read.svg);
                background-repeat: no-repeat;
            }
        }
    }
}

.notification-detail-body {
    background-color: white;
    border-radius: 0 0 16px 16px;


    .notification-image {
        width: 100%;
    }

    .notification-detail-content {
        padding: 32px 24px;

        .notification-detail-title {
            font-weight: bold;
            font-size: 16px;
            line-height: 18px;
            color: #444444;
        }

        .notification-detail-date {
            color: #888888;
            font-size: 12px;
        }

        .notification-detail-description {
            font-size: 12px;
            line-height: 20px;
            color: #444444;
        }
    }
}