slider {
  display: inline-block;
  position: relative;
  width: 100%;
  vertical-align: middle;
  margin:0;
  height:4px;
  color:#D6D3CC;
  border-radius:50%;
}
slider span {
  white-space: nowrap;
  position: absolute;
  display: inline-block;
}
slider span.base {
  width: 100%;
  height: 100%;
  padding: 0;
}
slider span.bar {
  width: 100%;
  height: 50%;
  z-index: 0;
  -webkit-border-radius: 1em/1em;
  border-radius: 1em/1em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #D6D3CC), color-stop(1, #D6D3CC));
  background: -webkit-linear-gradient(top, #D6D3CC 0, #D6D3CC 100%);
  background: -moz-linear-gradient(top, #D6D3CC 0, #D6D3CC 100%);
  background: -o-linear-gradient(top, #D6D3CC 0, #D6D3CC 100%);
  background: -ms-linear-gradient(top, #D6D3CC 0, #D6D3CC 100%);
  background: linear-gradient(top, #D6D3CC 0, #D6D3CC 100%);
}
slider span.bar.selection {
  width: 0%;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #13b6ff), color-stop(1, #00a8f3));
  background: -webkit-linear-gradient(top, #13b6ff 0, #00a8f3 100%);
  background: -moz-linear-gradient(top, #13b6ff 0, #00a8f3 100%);
  background: -o-linear-gradient(top, #13b6ff 0, #00a8f3 100%);
  background: -ms-linear-gradient(top, #13b6ff 0, #00a8f3 100%);
  background: linear-gradient(top, #13b6ff 0, #00a8f3 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
}
slider span.pointer {
  cursor: pointer;
  top: -3px;
  z-index: 2;
  background-image:none;
	background:#9E9890;
	border-radius:50%;
	height:8px;
	width:8px;
}
slider span.pointer:after {
  content: '';
  background-color: #808080;
  width: 0px;
  height: 0px;
  position: absolute;
  top: 6px;
  left: 6px;
  -webkit-border-radius: 1em/1em;
  border-radius: 1em/1em;
}
/* slider span.pointer:hover:after { */
/*   background-color: #000; */
/* } */
/* slider span.pointer.active:after { */
/*   background-color: #f00; */
/* } */
slider span.bubble {
  cursor: default;
  top: -22px;
  padding: 1px 3px 1px 3px;
  font-size: 0.7em;
  font-family: sans-serif;
}
slider span.bubble.selection {
  top: 15px;
}
slider span.bubble.limit {
  color: #808080;
}