:root {
    --scrollbarThumb: rgba(161, 164, 171, 0.53);
    --scrollbarWidth: 4px;
    --scrollbarBorder: 2px solid var(--scrollbarBg);
    --scrollbarBorderRadius: calc(var(--scrollbarWidth) / 2);
}
.report-notifications
.container-notification,
.tasks-notifications 
.message-notifications {
	overflow-y: scroll!important;
    scrollbar-width: var(--scrollbarWidth)!important;
    scrollbar-color: var(--scrollbarThumb) var(--scrollbarBg)!important;
}
.report-notifications::-webkit-scrollbar,
.container-notification::-webkit-scrollbar,
.tasks-notifications::-webkit-scrollbar,
.message-notifications::-webkit-scrollbar {
    width: var(--scrollbarWidth)!important;
	height: 8px!important;
}
.report-notifications::-webkit-scrollbar-track,
.tasks-notifications::-webkit-scrollbar-track,
.container-notification::-webkit-scrollbar-track,
.message-notifications::-webkit-scrollbar-track {
    background: var(--scrollbarBg)!important;
    border-radius: var(--scrollbarBorderRadius)!important;
}
.report-notifications::-webkit-scrollbar-thumb
.tasks-notifications::-webkit-scrollbar-thumb,
.container-notification::-webkit-scrollbar-thumb,
.message-notifications::-webkit-scrollbar-thumb {
    background-color: var(--scrollbarThumb)!important;
    border-radius: var(--scrollbarBorderRadius)!important;
    border: var(--scrollbarBorder)!important;
}
