<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.notification-dropdown {
    min-width: 340px;
    left: -150px !important;
}
.notification-dropdown::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border: 12px solid transparent;
    border-bottom-color: var(--secondary-color);
    border-top: 0;
    margin-left: -16px;
    margin-top: -12px;
}
.notification-dropdown .tab-notification {
    height: 450px;
}
.notification-dropdown .notification {
    overflow: hidden;
    width: auto;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}
.notification-dropdown .notification::-webkit-scrollbar {
    width: 0.5em;
    background: none;
}
.notification li.unread {
    background: #fffaee;
}
.notification li &gt; :first-child {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.notification li &gt; :first-child:hover {
    text-decoration: none;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(29, 33, 41, 0.03)), to(rgba(29, 33, 41, 0.04)));
    background-image: linear-gradient(rgba(29, 33, 41, 0.03), rgba(29, 33, 41, 0.04));
}
.notification .name {
    color: #222222;
    font-weight: 400;
    font-size: 0.8125rem;
}
.notification li.unread .name {
    font-weight: 500;
}
.notification .msg-a,
.notification .msg-b {
    color: #555555;
}
[class*="notice-"] {
    width: 100%;
    padding: 7px 0;
    color: white;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
[class*="notice-"] &gt; .close {
    position: absolute;
    right: 15px;
    padding: 5px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}
[class*="notice-"] &gt; .close:hover {
    opacity: 1;
}
[class*="notice-"] &gt; .content {
    max-width: 90%;
    /**single line*/
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /**end single line*/
}
[class*="notice-"] &gt; .content &gt; * {
    padding: 0;
    margin: 0;
    font-size: 12px !important;
    font-weight: 400;
}
[class*="notice-"] &gt; i {
    margin-right: 3px;
}
/*
* Notice types
* success
* info
* warning
* danger
**/

.notice-warning {
    background-color: #fba720;
    color: black;
}
.notice-danger {
    background-color: #dc3444;
}
.notice-success {
    background-color: var(--success-color);
}
.notice-info {
    background-color: #2b6da3;
}

.notice-danger &gt; i::after,
.notice-warning &gt; i::after,
.notice-info &gt; i::after {
    content: "\f06a";
}
.notice-success &gt; i::after {
    content: "\f058";
}
</pre></body></html>