.rs-container * {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.rs-container {
    font-family: Arial, Helvetica, sans-serif;
    height: 45px;
    position: relative;
}
.rs-container .rs-bg, .rs-container .rs-selected {
    background-color: #eee;
    border: 0px solid #ededed;
    height: 1px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 100%;
    border-radius: 3px;
}
.rs-container .rs-selected {
    background-color: #CCCCCC;
    /*border: 1px solid #00969b;*/
    transition: all 0.2s linear;
    width: 0;
}
.rs-container.disabled .rs-selected {
    background-color: #ccc;
    border-color: #bbb;
}
.rs-container .rs-pointer {
    background-color: #cccccc;
    border-radius: 50%;
    cursor: pointer;
    height: 20px;
    left: -10px;
    position: absolute;
    top: 0;
    transition: all 0.2s linear;
    width: 20px;
}
.rs-container.disabled .rs-pointer {
    border-color: #ccc;
}
.rs-container .rs-pointer::before,
.rs-container .rs-pointer::after {
    content: none;
    position: absolute;
    width: 1px;
    height: 9px;
    background-color: #ddd;
    left: 12px;
    top: 5px;
}
.rs-container .rs-pointer::after {
    left: auto;
    right: 12px;
}
.rs-container.disabled .rs-pointer {
    cursor: default;
}
.rs-container.sliding .rs-selected,
.rs-container.sliding .rs-pointer {
    transition: none;
}
.rs-container .rs-scale {
    left: 0;
    position: absolute;
    top: 5px;
    white-space: nowrap;
	width: 100%;
}
.rs-container .rs-scale span {
    float: left;
    position: relative;
	width: 0px!important;
}
 .rs-container .rs-scale span::before {
    background-color: #ededed;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 1px;
}
.rs-container.rs-noscale span::before {
    display: none;
}
.rs-container.rs-noscale span:first-child::before,
.rs-container.rs-noscale span:last-child::before {
    display: block;
}
.rs-container .rs-scale span:last-child {
    margin-left: -1px;
    width: 0px;
	right: 0px;
	position: absolute;
}
.rs-container .rs-scale span ins {
    color: #333;
    display: none;
    font-size: 12px;
    margin-top: 20px;
    text-decoration: none;
}
.rs-container.disabled .rs-scale span ins {
    color: #999;
}
.rs-tooltip {
    color: #333;
    width: auto;
    min-width: 30px;
    height: 20px;
	position: relative;
	background: #fff;
    border-radius: 3px;
    position: absolute;
    transform: translate(0%, 25px);
    left: 0px;
    text-align: center;
    font-size: 13px;
    padding: 0px;
	white-space: nowrap;
}
.rs-container .rs-pointer:last-child .rs-tooltip {
	right: 0px;
	left: auto;
}
.rs-tooltip:after {
	content: attr(data-tooltip);
	margin-left: 3px;
}
.rs-container.disabled .rs-tooltip {
    border-color: #ccc;
    color: #999;
}