.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  background-color: transparent;
  border: none;
  opacity: 1;
  cursor: pointer;
  transform: translateY(-50%);
  }
  .glide__arrow:focus {
    outline: none; }
  .glide__arrow:hover {
    border-color: white; }
  .glide__arrow--left {
    left: -100px; }
  .glide__arrow--right {
    right: -100px; }
  .glide__arrow--disabled {
    opacity: 0.33; }

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: -10px;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%); }

.glide__bullet {
  background-color: #CFCFCF;
  border: none;
  width: 62px;
  height: 6px;
  margin: 0 3px;
  padding: 0;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
}
  .glide__bullet:focus {
    outline: none;
  }
  .glide__bullet:hover, .glide__bullet:focus {
    background-color: #FF9A52;
  }
  .glide__bullet--active {
    background-color: #FF612B;
  }

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