.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 6px 9px;
  background-color: rgb(255 255 255 / 43%);
  border: 2px solid rgb(255 255 255);
  /*border-radius: 50%;*/
  box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.1);
  text-shadow: 0 0.25em 0.5em rgba(0, 0, 0, 0.1);
  opacity: 1;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out, background-color 300ms ;
  transform: translateY(-80%);
  line-height: 1;
  /* backdrop-filter: hue-rotate(90deg) brightness(2); */
  /* mix-blend-mode: hard-light; */
}
.orange{
  background-color: var(--grey75);
  border: 0px solid var(--white);
}
.glide__arrow:focus {
  outline: none;
}
.glide__arrow:hover {
  background-color: var(--lightgrey);
}
.glide__arrow--left {
  left: -3em;
}
.glide__arrow--right {
  right: -3em;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 5px;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
  /* background-color:rgba(0, 0, 0, 0.3); */
  border-radius: 10px;
  padding:3px;
}
.glide__bullet {
  /*background-color: rgba(255, 255, 255, 0.5);*/
  background-color: var(--maincoloralpha);
  width: 12px;
  height: 12px;
  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.75em;
}
.glide__bullet:focus {
  outline: none;
}
.glide__bullet:hover {
  border: 2px solid var(--white);
  background-color: var(--maincolor);
}
.glide__bullet--active, .glide__bullet:focus {
  border: 1px solid var(--white);
  background-color: var(--grey75);
}
.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

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