/* @group Scrollbars */
@media screen and (-webkit-min-device-pixel-ratio:0) { /* Mac */
	body {
		overflow: hidden;
	}
	#segor {
		position: absolute;
		top: 0px;
		left: 0px;
		bottom: 0px;
		right: 8px;
		overflow: auto;
	}
}
@media only screen and (max-device-width:480px) { /* iPhone */
	body {
		overflow: auto;
	}
	#segor {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		overflow: auto;
	}
}
 
::-webkit-scrollbar {
	width: 10px;
	height: 10px;
}
::-webkit-scrollbar-button:start:decrement {
	display: block;
	width: 5px;
	height: 5px;
	background-color: transparent;
}
::-webkit-scrollbar-button:end:increment {
	display: block;
	width: 5px;
	height: 5px;
	background-color: transparent;
}
::-webkit-scrollbar-track:enabled {
	background-color: transparent;
}
::-webkit-scrollbar-track-piece {
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.05);
	-webkit-border-radius: 5px;
	margin: 10px 0;
}
::-webkit-scrollbar-thumb:vertical {
	height: 50px;
	background-color: rgba(230, 237, 239, 0.6);
	-webkit-border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
::-webkit-scrollbar-thumb:horizontal {
	width: 50px;
	background-color: rgba(255, 255, 255, .9);
	-webkit-border-radius: 5px;
}
/* @end */