.rangeslider, .rangeslider-fill
{
	display: block;
}

.rangeslider
{
	position: relative;
}

.rangeslider-horizontal
{
	height: 30px;
	width: 100%;
}

.rangeslider-vertical
{
	width: 30px;
	min-height: 150px;
	max-height: 100%;
}

.rangeslider-disabled
{
	opacity: 0.4;
}

.rangeslider-fill
{
	position: absolute;
}
.rangeslider-fill .rangeslider-horizontal
{
	top: 0;
	height: 100%;
}
.rangeslider-fill .rangeslider-vertical
{
	bottom: 0;
	width: 100%;
}

.rangeslider-handle
{
	--background: #15618a !important; /* w3-theme-d2 */
	border: 1px solid #ccc; /* todo */
	cursor: e-resize;
	display: inline-block;
	text-align: center;
	width: 60px;
	height: 30px;
	position: absolute;
}
.rangeslider-handle:after
{
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	margin: auto;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.rangeslider-handle:hover
{
    color: #000 !important;
    background-color: #ccc !important;
}
.rangeslider-handle .rangeslider-horizontal
{
	touch-action: pan-y;
}
.rangeslider-handle .rangeslider-vertical
{
	touch-action: pan-x;
}
