.glide__arrow {
  position: absolute;
  display: block;

  z-index: 2;
  color: #AE9168;
  padding: 9px 12px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  bottom: -1em;
  line-height: 1;
  font-size: 24px;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow--left {
  left: 2em;
}

.glide__arrow--right {
  right: 2em;
}

.glide__arrow--disabled {
  opacity: 0.33;
}

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

.glide__bullet {
  background-color: #EDD4B0;
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: none;
  /* 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: #AE9168;
}

.glide__bullet--active {
  background-color: #AE9168;
}

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

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

.pagination-display {
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
  color: #AE9168;
  font-weight: 700;
}

.distance2 {
  bottom: -2em;
}

@media all and (min-width: 1200px) {
  .glide__arrow {
    top: 50%;
    transform: translateY(-50%);
  }

  .glide__arrow--left {
    left: -2em;
  }

  .glide__arrow--right {
    right: -2em;
  }

  .glide__bullets {
    bottom: -2em;
  }

}

/*# sourceMappingURL=glide.theme.css.map */