.glide__arrow:focus {
  outline: none
}

.glide__arrow:hover {
  border-color: white
}

.glide__arrow--left {
  left: 2em
}

.glide__arrow--right {
  right: 2em
}

.glide__arrow--disabled {
  opacity: 0.33
}

.glide__bullet {
  background-color: transparent;
  width: 0.8rem;
  height: 0.8rem;
  padding: 0;
  border-radius: 50%;
  border: none;
  transition: var(--default_transition);
  cursor: pointer;
  line-height: 0;
  margin: 0 0.5rem;
  box-shadow: none;    
}

.glide__bullet:after {
  content: none;
}

.glide__bullet:focus {
  outline: none
}

.glide__bullet:hover {
  border: none;
  background-color: var(--dark_grass);
}

.glide__bullet.glide__bullet--active {
  background-color: var(--dark_grass);
  width: 2.2rem;
  border-radius: 4rem;
}

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

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

.glide__bullets {
  width: 100%;
}

.glide__arrows {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14.8rem;
  height: 6.4rem;
  z-index: 2;
}

.glide__bullet {
  background-color: var(--pink_taupe);
}

.glide__arrow {
  padding: 0;
  transition: var(--default_transition);
}

.glide__arrow:hover {
  transform: scale(0.9);
}

.glide__arrow:after {
  content: none;
}


@media (max-width: 768px) {
  .glide__bullets {
    justify-content: flex-start;
  }
}

.glide__arrow--ac {
	position: initial;
}

@media (max-width: 400px) {
	.glide__arrow--ac {
		margin: 0 5px;
	}
}