.notifications-section {
    display: flex;
    flex-direction: column;
    background: #212121;
    max-height: 500px;
    width: 450px;
}
.notifications-section .notifications-header {
    padding: 15px 25px ;
    border-bottom: 1px solid #979797;
}
.notifications-section .notifications-header .title {
    font-size: 18px;
    color: #51ACFD;
    font-weight: 600;
}
.notifications-section .notifications-header .unread {
    font-size: 16px;
    color: #B8B8B8;
}
.notifications-section .notifications-body {
    overflow-y: auto;
    padding: 0 10px 0 25px;
    margin: 15px 0;
}
.rtl .notifications-section .notifications-body {
    padding: 0 25px 0 10px;
}
.notifications-section .notifications-body::-webkit-scrollbar{
    width: 20px;
    height: 18px;
}
.notifications-section .notifications-body::-webkit-scrollbar-thumb{
    background-color:#51ACFD;
    border: 7px solid rgba(0, 0, 0, 0);
    background-clip: padding-box;
    -webkit-border-radius: 14px;
}
.notifications-section .notifications-body .notification-item {
    padding: 15px;
    display: flex;
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    transition: .3s;
}
.notifications-section .notifications-body .notification-item:hover .title {
    color: #51ACFD;
}
.notifications-section .notifications-body .notification-item:hover {
    background: linear-gradient(270deg, rgba(33,33,33,1) 0%, rgba(39,39,39,1) 50%, rgba(33,33,33,1) 100%);
}
.notifications-section .notifications-body .notification-item.unread:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #51ACFD;
    position: absolute;
    left: -15px;
    top: 20px;
}
.rtl .notifications-section .notifications-body .notification-item.unread:before {
    left: auto;
    right: -15px
}
.notifications-section .notifications-body .notification-item:not(:last-of-type) {
    border-bottom: 1px solid #979797;
}
.notifications-section .notifications-body .notification-item .icon {
    margin-right: 15px;
}
.rtl .notifications-section .notifications-body .notification-item .icon {
    margin-right: 0;
    margin-left: 15px;
}
.notifications-section .notifications-body .notification-item .title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    white-space: normal;
    transition: .3s;
}
.notifications-section .notifications-body .notification-item .time {
    font-size: 14px;
    color: #979797;
}
#loadMoreNotifications {
    margin-top: 15px;
}