﻿.notifications {

}

    .notifications .message {
        font-family: 'Poppins400';
        font-size: 14px;
        margin-left: 8px;
        padding: 5px;
        border-bottom: solid 1px #ddd;
        cursor: pointer;
        display: flex;
        gap: 5px;
    }

    .notifications .type-date {
        font-size: 12px;
        color: #777;
    }

    .notifications .unread {
        font-family: 'Poppins500';
    }

    .notifications .read {
        color: #999;
    }

    .notifications .message .msg {
        width: 100%;
    }

    .notifications .message .btt {
        font-size: 15px;
        padding: 5px;
    }

    .notifications .message.Info {
        background-color: lightcyan;
    }

    .notifications .message.Info:hover {
        background-color: cyan;
    }

    .notifications .message.Chat {
        background-color: lightyellow;
    }

    .notifications .message.Chat:hover {
        background-color: yellow;
    }

    .notifications .link-bottom{
        border-bottom: none;
    }

        .notifications .link-bottom a {
            color: purple;
        }

.js-snackbar__message {
    font-family: 'Poppins400';
    font-size: 13px;
}