.accordion-block {
height: 100vh;
overflow-y: auto;
scrollbar-color: lighten($brand-grey, 15%) $brand-grey;
scrollbar-width: thin;
&::-webkit-scrollbar {
width: 12px;
}
&::-webkit-scrollbar-track {
background-color: lighten($brand-grey, 15%);
border-radius: 10px;
}
&::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: $brand-grey;
}
}