.blockContainer.primary .moveButton svg .circle,
.blockContainer.hex .moveButton svg .circle {
  fill: rgba(255, 255, 255, 0.2);
}
.blockContainer.hex_light .moveButton svg .circle {
  fill: rgba(0, 0, 0, 0.2);
}
.moveButton {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 76px;
  height: 76px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.moveButton.disabled {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.moveButton:hover svg .hoverCircle {
  stroke-dashoffset: 0;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.moveButton svg {
  -webkit-transform: rotate(-90deg) scaleY(-1);
  -moz-transform: rotate(-90deg) scaleY(-1);
  -o-transform: rotate(-90deg) scaleY(-1);
  -ms-transform: rotate(-90deg) scaleY(-1);
  transform: rotate(-90deg) scaleY(-1);
}
.moveButton svg .circle {
  fill: #1ca6fe;
}
.moveButton svg .hoverCircle {
  stroke: #ffffff;
  stroke-dasharray: 300;
  stroke-dashoffset: -300;
  -webkit-transition: all 0.6s ease-out;
  -moz-transition: all 0.6s ease-out;
  -o-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}
.moveButton i {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  width: auto;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 12px;
  color: #ffffff;
  margin-top: 2px;
  z-index: 1;
}
@media all and (max-width: 767px) {
  .moveButton {
    height: 55px;
    width: 55px;
  }
  .moveButton svg {
    height: 100%;
    width: 100%;
  }
}
/*# sourceMappingURL=move_button.css.map */