<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Flickity styles */
.gallery {
  overflow: hidden;
  max-height: 650px;
  transition: opacity 0.4s;
  opacity: 0;
}

.gallery.flickity-enabled {
  opacity: 1;
}

.flickity-viewport {
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: height 0.2s;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transform: translateY(-50%);
  border: none;
  background: hsla(0, 0%, 100%, 0.75);
}

.flickity-prev-next-button:hover {
  background: #fff;
}

.flickity-prev-next-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #09f;
}

.flickity-prev-next-button:disabled {
  cursor: auto;
  opacity: 0.3;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 2em;
  list-style: none;
}

.flickity-page-dots .dot {
  display: inline-block;
  margin: 0 8px;
  cursor: pointer;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: transparent;
  border: 2px solid #fff;
}

.flickity-page-dots .dot.is-selected {
  background: #fff;
}
</pre></body></html>