/**
 * Dragdealer.js 0.9.8
 * http://github.com/skidding/dragdealer
 *
 * (c) 2010+ Ovidiu Cherecheș
 * http://skidding.mit-license.org
 */

.dragdealer {
    position: relative;
    height: 4px;
    background: #16952c;
}
.dragdealer .handle {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}
.dragdealer .red-bar {
    width: 20px;
    height: 20px;
    background: #16952c;
    color: #FFF;
    font-size: 14px;
    line-height: 20px;
    margin-top: -8px;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}
.dragdealer .disabled {
    background: #898989;
}
