:root {
  --glide-bullet-bg-color: rgba(255, 255, 255, 0.5);
  --glide-bullet-bg-color-hover: rgba(255, 255, 255, 0.5);
  --glide-bullet-active-color: var(--color-primary);
  --hero-max-width: 100%;
  --hero-xl-wide-height: 700px;
  --gallery-btn-size-mob: 40px;
  --gallery-btn-size-tablet: 60px;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  margin: 0;
  flex-shrink: 0;
  white-space: initial;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  user-select: none;
}

.glide__arrows {
  user-select: none;
}

.glide__bullets {
  user-select: none;
}

.glide__arrow {
  position: absolute;
  display: block;
  top: 50%;
  z-index: var(--z-index-glide-arrow);
  color: #fff;
  text-transform: uppercase;
  padding: 9px 12px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  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;
  transform: translateY(-50%);
  line-height: 1;
}

.glide__arrow:hover {
  border-color: #fff;
}

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

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

.glide__arrow--disabled {
  opacity: 0.33;
}

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

.glide__bullet {
  background-color: var(--glide-bullet-bg-color);
  width: 9px;
  height: 9px;
  padding: 0;
  border: 2px solid transparent;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.25em;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet:hover,
.glide__bullet:focus {
  border: 2px solid #fff;
  background-color: var(--glide-bullet-bg-color);
}

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

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

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

.glide {
  background-color: transparent;
  max-width: var(--content-large);
  margin: 0 auto;
}

.glide__track {
  position: relative;
  width: var(--content-medium);
  max-width: 100%;
  padding: 0;
}

.panel .glide__track {
  width: 100%;
}

.glide__arrows {
  pointer-events: none;
}

.glide__arrow {
  padding: 0;
  background-color: transparent;
  border: none;
  text-shadow: none;
  line-height: 1;
  width: var(--gallery-btn-size-mob);
  height: var(--gallery-btn-size-mob);
  border-radius: 0;
  pointer-events: all;
}

.glide__arrow--left span,
.glide__arrow--right span {
  position: absolute !important;
  top: -9999px !important;
  left: -9999px !important;
}

.glide__arrow--disabled {
  opacity: 0.33;
}

.glide__bullet {
  background-color: var(--glide-bullet-bg-color);
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  line-height: 0;
  margin: 0 9px;
  position: relative;
}

.glide__bullet::before,
.glide__bullet::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--glide-bullet-active-color);
  background-color: var(--glide-bullet-bg-color-hover);
  transition: opacity 300ms ease-in-out;
  opacity: 0;
}

.glide__bullet::before {
  background-color: var(--glide-bullet-active-color);
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet:hover::before,
.glide__bullet:focus::before {
  opacity: 0;
}

.glide__bullet:hover::after,
.glide__bullet:focus::after {
  opacity: 1;
}

.glide__bullet--active::before {
  opacity: 1;
}

.glide__bullets {
  display: block;
  z-index: var(--z-index-glide-bullets);
  bottom: 10px;
}

.glide__slides {
  margin: 0;
}

.glide__track .glide__slides {
  padding: 0;
  margin: 0;
}

.glide__slide {
  margin-bottom: 0;
  list-style: none;
  position: relative;
  white-space: normal;
}

.glide__slide::before {
  display: none;
}

.glide__slide picture * {
  display: block;
  width: 100%;
  margin-bottom: 0;
}

.glide__slide a {
  text-decoration: none;
}

.glide--swipeable {
  cursor: default;
}

.glide img {
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .glide__bullets {
    display: none;
  }
}

/*# sourceMappingURL=/assets/application/base/glide-aa6f89f9.css.map */
