.glide__arrows {
  display: none;
}

.glide__arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 2px #000;
  text-align: center;
  background: #222;
  background: rgba(0,0,0,.5);
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border: 3px solid #fff;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  opacity: .5;
  cursor: pointer;
  display: block;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
}

.glide__arrow:focus {
  outline: none;
}

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

.glide__arrow--left {
  left: 6%;
}

.glide__arrow--right {
  right: 6%;
}

@media screen and (max-width: 400px) {
  .glide__arrow--left {
    left: 7%;
  }
  .glide__arrow--right {
    right: 7%;
  }
}

.glide__arrow--disabled {
  opacity: 0.33;
  display: none;
}

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

.glide__bullet {
  background-color: #ccc;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  margin: 0 0.25em;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 255, 0.5);
}

.glide__bullet--active {
  background-color: #00a6d9;
}

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

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