.glide__arrow {
  position: absolute;
  display: block;
  top: 43%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  opacity: .6;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  border-color: white;
}
.glide__arrow--left {
  left: 0em;
  transform: scaleX(-1);
}
.glide__arrow--right {
  right: 0em;
  transform: scaleX(1);
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 2em;
  left: 50%;
  bottom: -30px;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
  display: none;
}
.glide__bullet {
  background-color: #ccc;
  width: 12px;
  height: 12px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover, .glide__bullet:focus {
  border: 2px solid white;
  background-color: #aaa;
}
.glide__bullet--active {
  background-color: var(--bggreen1);
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.glide--thumbs .glide__slide {
   cursor: pointer;
   opacity:.6;
   margin: 3px 8px;
   outline: 2px solid #ddd;
   border-radius: 3px;
 }
.glide--thumbs .glide__slide.is-active {
   opacity: 1;
   outline: 2px solid #999;
   border-radius: 3px;
 }

#glide-main .glide__track,
#glide-main .glide__slides,
#glide-main .glide__slide,
#glide-main .glide__slide img {
  touch-action: pan-y pinch-zoom !important;
}




/*# sourceMappingURL=glide.theme.css.map */
@media (max-width: 768px) {
  .glide--thumbs {
    display: none;
  }

  .glide__arrow--left {
    left: -20px;
  }
  .glide__arrow--right {
    right: -20px;
  }
  .glide__bullets {
    display: inline-flex;
  }

}
