.imagehover .image-content {
  position: relative;
  overflow: hidden;
}
.imagehover .image-btn {
  position: absolute;
  width: 60px;
  line-height: 60px;
  background-color: #f16522;
  color: #fff;
  text-align: center;
  left: calc(50% - 60px/2);
  top: calc(50% - 60px/2);
}
.imagehover .image-tile {
  width: 100%;
  height: 100%;
}
.imagehover.pullleft .image-tile,
.imagehover.pullright .image-tile {
  top: 0;
}
.imagehover.pullleft .image-tile {
  left: auto;
  right: 0;
  width: 100%;
}
.imagehover.pullleft:hover .image-tile {
  right: 100%;
}
.imagehover.pullright .image-tile {
  left: 0;
  width: 100%;
}
.imagehover.pullright:hover .image-tile {
  left: 100%;
}
.imagehover.pullup .image-tile {
  bottom: 0;
  height: 100%;
}
.imagehover.pullup:hover .image-tile {
  bottom: 100%;
}
.imagehover.pulldown .image-tile {
  top: 0;
  height: 100%;
}
.imagehover.pulldown:hover .image-tile {
  top: 100%;
}
