:host {
	position: sticky;
	left: 0;
	display: flex;
	width: 100%;
	height: 100%;
	border-top: 1px solid #ccc;
	--border-right: 1px solid #ccc;
	background-color: #f9f9f9;
	box-sizing	: border-box;
}

.ng-scroll-track {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}

.ng-scroll-thumb {
	position: relative;
	height: calc(100% - 2px);
}

.ng-scroll-left,.ng-scroll-right {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 100%;
	border: none;
	margin: 0;
	background-color: #eee;
	box-sizing	: border-box;
	outline: 0;
}

.ng-scroll-left {
	border-right: 1px solid #ddd;
}

.ng-scroll-right {
	border-left: 1px solid #ddd;
}

.ng-scroll-left .ng-scroll-icon {
	border-right	: 4px solid #999;
	border-top		: 4px solid transparent;
	border-bottom	: 4px solid transparent;
}

.ng-scroll-left:disabled .ng-scroll-icon {
	border-right	: 4px solid #ccc!important;
}

.ng-scroll-right .ng-scroll-icon {
	border-left		: 4px solid #999;
	border-top		: 4px solid transparent;
	border-bottom	: 4px solid transparent;
}

.ng-scroll-right:disabled .ng-scroll-icon {
	border-left		: 4px solid #ccc!important;
}

button {
	padding: 0;
}
.ng-scroll-thumb {
	position: absolute;
	background-color: #eee;
	box-sizing	: border-box;
	border: 1px solid #ccc;
	border-radius: 3px 3px 3px 3px;
}

.ng-scroll-thumb:hover, .ng-scroll-left:hover, .ng-scroll-right:hover, .ng-scroll-top:hover, .ng-scroll-bottom:hover {
	filter: brightness(95%);
}

.ng-scroll-thumb:disabled, .ng-scroll-left:disabled, .ng-scroll-right:disabled, .ng-scroll-top:disabled, .ng-scroll-bottom:disabled {
	pointer-events:none;
}