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

.dragdealer {
  position: relative;
  height: 30px;
  background: #EEE;
}
.dragdealer .handle {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.dragdealer .bar {
  width: 40px;
  height: 30px;
  background: #CC0000;
  color: #FFF;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}
.dragdealer .bar.red {
  background: #CC0000;
  color: #FFF;
}
.dragdealer .bar.dark {
  background: #303435;
  color: #FFF;
}
.dragdealer .bar.green {
  background: hsl(146,100%,40%);
  color: #FFF;
}
.dragdealer .disabled {
  background: #898989;
}

@media screen and (min-width:769px) {
	.dragdealer {
		height: 40px;
	}
	.dragdealer .bar {
	  width: 50px;
	  height: 40px;
	  line-height: 40px;
	 }
}
