.scroll_no_bars {
	overflow: auto;
}

@-moz-document url-prefix() {
   .scroll_no_bars {
      overflow: auto;
      scrollbar-width: none;
   }
}

.noscroll {
	overflow: hidden;
}

.scroll_no_bars::-webkit-scrollbar, 
.noscroll::-webkit-scrollbar {
	display: none;
}

/* */

.scroll_midnight_grey::-webkit-scrollbar-track {
	background: rgba(26, 26, 42, 0.8);
}

.scroll_midnight_grey::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.scroll_midnight_grey::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background: #202028;
}

.scroll_midnight_grey::-webkit-scrollbar-thumb:hover {
	background: #303040;
}

/* */

.scroll_grey::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}

.scroll_grey::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.5);
}

.scroll_grey::-webkit-scrollbar-thumb {
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.2);
}

.scroll_grey::-webkit-scrollbar-thumb:hover {
	background: rgba(255, 255, 255, 0.3);
}