.main-content {
	overflow: auto;
	width: 100%;
	position: relative;
	height: 100vh;
}

::-webkit-scrollbar {
	width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f1; 
}

/* Handle */
::-webkit-scrollbar-thumb {
	border-radius: 0;
	background-color: #5d6267;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555; 
}

*:focus {
	outline: none;
}