/**
 *
 */
.nativeMultiple {
	position: relative;
	background: transparent;
	height: 40px;
}

.nativeMultiple > div {
	height: 40px;
}

.nativeMultiple > div:last-child > div {
	right: 0;
}

.nativeMultiple input[type=range] {
	margin:0;
	padding:0;
	width: 100%;
	height:  inherit;
	-webkit-appearance: none;
	background: transparent;
}

.nativeMultiple > div.nativeMultiple-one {
	overflow: hidden;
	position: absolute;
	z-index: 10;
}

.nativeMultiple > div.nativeMultiple-two {
	position: absolute;
	width: 100%;
	z-index: 5;
}

.nativeMultiple input[type=range]:focus {
  outline: none;
}

.nativeMultiple > div, .nativeMultiple > div > div {
	height: inherit;
}

/**
 * webkit
 */
.nativeMultiple input[type=range]::-webkit-slider-thumb {
	border: 0;
	height: 40px;
	cursor: pointer;
	z-index: 20;
	-webkit-appearance: none;
	position: relative;
}

.nativeMultiple > div:last-child input[type=range]::-webkit-slider-thumb {
}

.nativeMultiple input[type=range]::-webkit-slider-thumb:after, .nativeMultiple input[type=range]::-webkit-slider-thumb:before {
    content: "";
    display: block;
    position: absolute;
    height: 20px;
    width: 1px;
		border-radius: 50%;
    background: none repeat scroll 0% 0% red;
    left: 27px;
    top: 10px;
}

.nativeMultiple input[type=range]::-webkit-slider-thumb:after {
	left: 32px;
}
/**
 * moz
 */
.nativeMultiple input[type=range]::-moz-range-thumb {
	border: 0;
	height: 40px;
	background: red;
	cursor: pointer;
	z-index: 20;
	position: absolute;
	top: 20px;
	border-radius: 0;
}

.nativeMultiple input[type=range]::-moz-range-track {
    background: none;
    border: none;
}

.nativeMultiple > div:last-child input[type=range]::-moz-range-thumb {
}

/**
 * ms
 */
.nativeMultiple input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 6px 0;
    color: transparent;
}

.nativeMultiple input[type=range]::-ms-fill-lower {
    background: transparent;
}

.nativeMultiple input[type=range]::-ms-thumb {
	border: 0;
	height: 40px;
	background: #347EB7;
	cursor: pointer;
	z-index: 20;
	position: absolute;
	top: 20px;
	border-radius: 0;
}
