.glide__arrows {
  position: absolute;
}
.glide--horizontal .glide__arrows {
  top: 45%;
  width: 100%;
}
.glide--vertical .glide__arrows {
  left: 50%;
  height: 88%;
  margin-top: 6%;
}

.glide--vertical .glide__arrow.prev {
  top: 0;
}
.glide--vertical .glide__arrow.next {
  bottom: 0;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  list-style: none;
}
.glide--horizontal .glide__bullets {
  bottom: 8%;
  left: 0;
  width: 100%;
  height: 12px;
  text-align: center;
}
.glide--vertical .glide__bullets {
  top: 50%;
  right: 8%;
  width: 12px;
  height: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (min-width: 737px) {
    .glide__bullets > * {
      display: inline-block;
      background-color: rgba(255, 255, 255, 0.5);
      width: 12px;
      height: 12px;
      padding: 0;
      cursor: pointer;
      border-radius: 50%;
      border: 2px solid transparent;
      -webkit-transition: all 300ms ease-in-out;
              transition: all 300ms ease-in-out;
    }

}

@media only screen and (max-width: 736px) {
  .glide__bullets > * {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.5);
    width: 8px;
    height: 8px;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid transparent;
    -webkit-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
  }
}


.glide--horizontal .glide__bullets > * {
  margin: 0 5px;
}
.glide--vertical .glide__bullets > * {
  vertical-align: middle;
}
.glide__bullets > *.active {
  background-color: #FFE100;
}
.glide__bullets > *:focus {
  outline: none;
}
.glide__bullets > *:hover,
.glide__bullets > *:focus {
  border: 2px solid white;
  background-color: rgba(255, 255, 0, 1);
}
.glide--slider .glide__arrow {
  opacity: 1;
  -webkit-transition: opacity 150ms ease;
          transition: opacity 150ms ease;
}
.glide--slider .glide__arrow.disabled {
  opacity: 0.33;
}
