.popup {
  display: none;
}

.popup-active {
  display: flex;
  justify-content: center;
  position: sticky;
  bottom: 200px;
  left: 20px;
  z-index: 2;
}

.popup__container {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.popup__container__img {
  width: 800px;
  height: 600px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup__container img {
  max-width: 800px;
  margin: 0 auto;
  max-height: 600px;
  object-fit: contain;
}

.popup__background {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.popup-active p {
  font-size: 2rem;
  color: #f1f0cc;
  cursor: pointer;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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