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

.dragdealer {
  position: relative;
  height: 300px;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 4rem;
}
.dragdealer .handle {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  height: 100%;
  text-align: center;
  cursor: url("../images/cursor/openhand.cur"), move;
}
.dragdealer .handle:active {
  cursor: url("../images/cursor/closehand.cur"), move;
}

.dragdealer-item {
  position: relative;
  float: left;
  width: 250px;
  box-sizing: border-box;
  padding: 10px;
}
.dragdealer-item span {
  display: block;
  margin-top: 10px;
  background: #f4f3f3;
  border-radius: 60px;
}
.dragdealer-item a:hover {
  cursor: url("../images/cursor/openhand.cur"), move;
  text-decoration: none !important;
}
.dragdealer-item a:active {
  cursor: url("../images/cursor/closehand.cur"), move;
}
.dragdealer-item span:hover {
  color: #15b2dd;
}
.dragdealer-item img {
  border-radius: 25px;
  border: #eee 4px solid;
}
.dragdealer-item img:hover {
  border-color: #ddd;
}

.dragdealer .disabled {
  background: #898989;
}
