@charset "UTF-8";
:root {
  --slider-width: min(100vw, 720px);
  --slider-height: min(100vh, 720px);
  --primary-color: #583922;
  --slides-spacing: 10px;
}

.page-content .wrapper {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.page-content .wrapper h1, .page-content .wrapper h2 {
  text-align: center;
}

.slide {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 2px;
  margin-bottom: 30px;
}

/* SLIDES */
.slide .main-image {
  width: 360px;
  min-width: 200px;
  height: 300px;
  object-fit: contain;
}

.slide ul {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  padding-top: 10px;
  flex-grow: 1;
}

.slide li {
  padding-left: 20px;
  text-indent: -20px;
}

.slide li::before {
  content: "❖";
  padding-right: 5px;
}

.slide-content > ul > li:not(:last-child) {
  margin-bottom: 20px;
}

.slide-content {
  row-gap: 20px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.slide-item-1 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: #9bd6f2;
  flex-grow: 1;
}

.slide-content > ul {
  margin: 0;
  padding: 10px 10px 10px 20px;
  max-width: 360px;
}

@media (min-width: 719px) {
  .slide .main-image {
    border-radius: 20px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.2509803922));
  }
  .slide-item-1 {
    background: none;
    flex-grow: unset;
  }
  .slide:nth-child(even) .slide-item-1 {
    order: 1;
  }
}
.inline-icon {
  display: inline-block;
  vertical-align: middle;
}

/** Prev/Next buttons **/
.control {
  display: none;
}

/** Dots **/
.dots {
  display: none;
}

/** Extra styles when displayed in-game **/
.framed {
  /** Prev/Next buttons **/
  /** Dots **/
}
.framed body {
  overflow: hidden;
  min-width: 360px;
  max-width: 720px;
  margin: 0 auto;
  color: var(--primary-color);
}
.framed .slider {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--slider-width);
  height: var(--slider-height);
  /*box-shadow: 3px 3px 10px rgba(0, 0, 0, .2);*/
}
.framed .slides-wrapper {
  overflow: hidden;
  position: relative;
  width: var(--slider-width);
  height: var(--slider-height);
  z-index: 1;
}
.framed .slides {
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  width: 10000px;
}
.framed .slides.shifting {
  transition: left 0.2s ease-out;
}
.framed .slide {
  width: var(--slider-width);
  cursor: pointer;
  transition: all 1s;
  position: relative;
  border-radius: 2px;
  margin-right: var(--slides-spacing);
}
.framed .slide-item-1 {
  order: 0 !important;
}
.framed .control {
  display: block;
  position: absolute;
  background-color: rgba(217, 173, 118, 0.1882352941);
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  margin-top: -20px;
  z-index: -1;
}
.framed .prev,
.framed .next {
  background-size: 22px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.framed .prev {
  background-image: url(https://cdn0.iconfinder.com/data/icons/navigation-set-arrows-part-one/32/ChevronLeft-512.png);
  left: -40px;
}
.framed .next {
  background-image: url(https://cdn0.iconfinder.com/data/icons/navigation-set-arrows-part-one/32/ChevronRight-512.png);
  right: -40px;
}
.framed .prev:hover,
.framed .next:hover {
  background-color: rgba(217, 173, 118, 0.5019607843);
  /*border: 1px solid var(--primary-color);*/
}
.framed .prev:active,
.framed .next:active {
  transform: scale(0.9);
}
.framed .dots {
  display: block;
  position: absolute;
  bottom: 10px;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.framed .dot {
  width: 10px;
  height: 10px;
  background: rgba(88, 57, 34, 0.2509803922);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.framed .active-dot {
  background: #583922;
  cursor: default;
}

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