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

.dragdealer {
  position: relative; border-radius:5px;
  height: 40px;
  background: #c6c0c0;
}
.dragdealer .handle {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.dragdealer .red-bar {
  width: 85px; border-radius:5px;
  height: 40px;
  background: #0E6EB8;
  color: #FFF;
  font-size: 14px;
  /*line-height: 30px;*/
  text-align: center;
  opacity:0.8;
  box-shadow:0px 1px 1px #150101;
  padding-left:8px;
  box-sizing:border-box;
  line-height:40px;
}
.dragdealer .disabled {
  background: #898989;
}
