/* Glide.js Theme - Clean */
.glide__arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
}

.glide__arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  background-color: #FFF;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  box-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  padding: 10px;
  cursor: pointer;
  pointer-events: auto;
  transform: translateY(-50%);
}

.glide__arrow--left {
  left: -100px;
}

.glide__arrow--right {
  right: -100px;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: #fff;
}

.glide__arrow--disabled {
  opacity: 0.33;
}

.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}
