masonry-layout img {
  padding: 2rem;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}

.lightbox-container {
  background-color: var(--overlay-color);
}

.lightbox-container .lightbox-close {
  bottom: 5vh;
  top: auto;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  font-weight: 100;
  font-size: 2em;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .lightbox-container .lightbox-close {
    bottom: 10px;
  }
}

.lightbox-container .lightbox-close:hover {
  color: var(--primary-color);
}

.lightbox-container .lightbox-arrow * {
  /*hide the default arrows*/
  opacity: 0;
  width: 1px;
  height: 1px;
}

.lightbox-container .lightbox-arrow::before {
  content: "";
  width: 1ch;
  height: 1ch;
  background-size: contain;
  background-image: url(../assets/vectors/arrow_right_white.svg);
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 992px) {
  .lightbox-container .lightbox-arrow::before {
    width: 2ch;
  }
}

.lightbox-container .lightbox-arrow.lightbox-prev::before {
  background-image: url(../assets/vectors/arrow_left_white.svg);
}

.lightbox-arrow {
  --offset-x:2%;
}
@media (min-width: 992px) {
  .lightbox-arrow {
    transform: translateX(-10%);
    --offset-x:10%;
  }
}

.lightbox-prev {
  left: var(--offset-x);
}

.lightbox-next {
  right: var(--offset-x);
}

/*# sourceMappingURL=single-social_activity.css.map */
