.glide__wrap {
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  touch-action: pan-Y;
  transform-style: preserve-3d;
  white-space: nowrap;
  width: 100%;
  will-change: transform;
  height: 100%;
}

.glide__wrap, .glide__track {
  overflow: hidden;
}
.glide__slide {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  flex-shrink: 0;
  height: 100%;
  white-space: normal;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.glide__arrows{
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 3;
  width: 100%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.2s;
}
.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: 2;
  color: white;
  text-transform: uppercase;
  padding: 12px 14px;
  background-color: white;
  border: 1px solid black;
  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);
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
  line-height: 1;
}
.glide__arrow:active {
  background-color: #202020;
  border: 1px solid #202020;
  svg{
    path{
      stroke: white;
    }
  }
}
.glide__arrow:focus {
  background-color: #f4f4f4;
}

.glide__arrow--left {
  left: 1rem;
}
.glide__arrow--right {
  right: 1rem;
}
.glide__arrow--disabled {
  opacity: 0.33;
}
.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  display: flex;
  list-style: none;
  justify-content: center;
  transform: translateX(-50%);
  gap: 0;
}
.glide__bullet {
  background: transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  border: 0;
  position: relative;
  width: 24px;
  height: 20px;
  padding: 0;
  &:after{
    content: '';
    position: absolute;
    border-radius: 25px;
    height: 10px;
    left: 50%;
    top: 50%;
    width: 16px;
    background: #ffffff;
    transform: translate(-50%, -50%);
    box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
  }
}
.glide__bullet:focus {
  outline: none;
}

.glide__bullet--active {
  width: 38px;
  &:after{
    width: 30px;
    height: 10px;
    background-color: #78DFE3;
  }
}
.glide--swipeable .glide__track{
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.glide--dragging .glide__track {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

@media (hover: hover) {
  .glide__bullet:hover {
    &:after{
      background-color: #78DFE3;
    }
  }
}

