.jameslider {
    height: 100px;
    position: relative;
}

.jameslider-label {
    position: absolute;
    top: 0;
    transform: translateX(-50%);
}

.jameslider-bar {
    background-color: #8f857d;
    position: absolute;
}

.jameslider-bar-left, .jameslider-bar-right {
    height: 24px;
    width: 1px;
    top: 38px;
}

.jameslider-bar-left {
    left: 0;
}

.jameslider-bar-right {
    right: 0;
}

.jameslider-bar-middle {
    width: 100%;
    height: 1px;
    top: 50px;
}

.jameslider-bar-label {
    position: absolute;
    bottom: -20px;
    font-size: 12px;
    transform: translateX(-50%);
    color: #8f857d;
}

.jameslider-value {
    position: absolute;
    margin-top: -25px;
    font-size: 12px;
    left: 10px;
    transform: translateX(-50%);
}

.jameslider-slider {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 40px;
    background-color: #d5cbc1;
    border: 2px solid #8f857d;
    border-radius: 12px;
    transform: translateX(-50%);
    z-index: 10;
}

.jameslider-slider:hover {
    border-color: #d5cbc1;
    background-color: #8f857d;
}