.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: 30px;
    position: relative;
}
.rs-container .rs-bg, .rs-container .rs-selected {
    background-color: #eee;
    border: 1px solid rgb(215,215,215);
    height: 16px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 100%;
    border-radius: 3px;
}
.rs-container .rs-selected {
    background-image: linear-gradient(to right, rgb(25, 107, 217) , rgb(119, 226, 249));
    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: #fff;
    border: 1px solid rgb(170,170,170);
    border-radius: 6px;
    cursor: pointer;
    height: 25px;
    left: -20px;
    position: absolute;
    top: 0;
    transition: all 0.2s linear;
    width: 40px;
    box-shadow: inset 0 0 1px #FFF, inset 0 1px 6px #ebebeb, 1px 1px 4px rgba(0, 0, 0, 0.1);
}
.rs-container.disabled .rs-pointer {
    border-color: #ccc;
}
.rs-container .rs-pointer::before,
.rs-container .rs-pointer::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 13px;
    background-color: rgb(200,200,200);
    left: 16px;
    top: 5px;
}
.rs-container .rs-pointer::after {
    left: auto;
    right: 16px;
}
.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;
}
.rs-container .rs-scale span {
    float: left;
    position: relative;
}
.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;
}
.rs-container .rs-scale span ins {
    color: #333;
    display: inline-block;
    font-size: 12px;
    margin-top: 20px;
    text-decoration: none;
}
.rs-container.disabled .rs-scale span ins {
    color: #999;
}
.rs-tooltip {
    color: white;
    width: auto;
    min-width: 60px;
    height: 27px;
    background: rgb(62, 112, 248);
    border-radius: 3px;
    position: absolute;
    transform: translate(-50%, -35px);
    left: 17px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 12px 0;
    white-space: nowrap;
}
.rs-container.disabled .rs-tooltip {
    border-color: #ccc;
    color: #999;
}

.price-per-day {
    color: white;
    width: auto;
    min-width: 60px;
    height: 24px;
    background: rgb(62, 112, 248);
    border-radius: 2px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px 0;
    white-space: nowrap;
}