@keyframes hideGallery {
  from {
    max-height: 500px;
  }
  to {
    max-height: 0;
  }
}
@keyframes showGallery {
  from {
    max-height: 0px;
  }
  to {
    max-height: 500px;
  }
}
@keyframes rotateIn {
  from {
    rotate: 0;
  }
  to {
    rotate: 90deg;
  }
}
@keyframes rotateOut {
  from {
    rotate: 90deg;
  }
  to {
    rotate: 0deg;
  }
}
body {
  position: relative;
}

.sale-info {
  margin-top: 3em;
}
.sale-info ol {
  margin-bottom: 2em;
}

img {
  max-height: 80vh;
  cursor: pointer;
}

.images-shadow {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.photo-container {
  position: relative;
}
.photo-container li {
  margin: 0.5em 0;
  margin-left: 2em;
}
.photo-container .displayed-img {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 1em;
  transform: translate(-50%, -50%);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.photo-container .displayed-img img {
  max-width: 100%;
}
.photo-container .displayed-show {
  display: flex;
}

.shadow-active {
  display: block;
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accordion {
  margin-top: 2em;
  width: 100%;
  max-width: 800px;
  padding-bottom: 1em;
  border-bottom: 2px solid #0f131f;
  cursor: pointer;
}
.accordion .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion .question h3 {
  font-size: 2rem;
}
.accordion .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s ease;
}
.accordion .answer p {
  padding-top: 1em;
}
.accordion.active .answer {
  max-height: 300px;
  animation: fade 0.5s ease-in-out;
}
.accordion.active img {
  transform: rotate(180deg);
}
.accordion img {
  transition: transform 0.5s ease;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}/*# sourceMappingURL=sale.css.map */