/* Bulma Utilities */
.ks-gallery {
  touch-action: none;
  position: relative;
}

.ks-gallery-spacer {
  position: relative;
  padding-bottom: 65%;
}

.ks-gallery-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
}

.ks-gallery-previous, .ks-gallery-next {
  width: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  outline: none;
  user-select: none;
}

.ks-gallery-previous::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-left: solid 2px hsl(0, 0%, 29%);
  border-bottom: solid 2px hsl(0, 0%, 29%);
  transform: rotate(45deg);
}

.ks-gallery-next::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: solid 2px hsl(0, 0%, 29%);
  border-right: solid 2px hsl(0, 0%, 29%);
  transform: rotate(45deg);
}

.ks-gallery-img {
  flex: 1 1 auto;
  user-select: none;
  outline: none;
  object-fit: contain;
}

/*# sourceMappingURL=gallery.css.map */