.toggle-notifikasi span {
    width: 12px;
    height: 12px;
    background: #00923f;
    border-radius: 50%;
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
    right: 3px;
}
.notifikasi {
    width: 400px;
    background: #ffffff;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    padding: 24px 40px 32px 40px;
}
.notifikasi .btn-close {
    background: #212122;
    border-radius: 12px;
    opacity: 1;
    width: auto;
    height: auto;
}
.notifikasi #list_notifikasi {
    height: calc(100vh - 197px);
    overflow: auto;
}
.notifikasi #list_notifikasi::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
.notifikasi #list_notifikasi::-webkit-scrollbar-track {
    background: #ffffff;
}
.notifikasi #list_notifikasi::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 8px;
}
.notifikasi #list_notifikasi::-webkit-scrollbar-thumb:hover {
    background: #888;
}
.notifikasi .notif-date {
    padding: 12px 0;
    margin: 0;
}
.notifikasi .notif-list .notif-list-item {
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    border-bottom: 1px solid #f0f2f4;
}
.notifikasi .notif-list .notif-list-item:last-child {
    border-bottom: none;
}
.notifikasi .notif-list .notif-list-item.unread {
    padding-left: 32px;
}
.notifikasi .notif-list .notif-list-item.unread:before {
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e4262c;
    position: absolute;
    top: 18px;
    left: 8px;
}
