#gallery-container {
  width: 100vw;
  min-height: 100vh;
  padding: 2vw;
  padding-top: 18vh;
  align-items: flex-start;
  border-bottom: 1px var(--white) solid;
}

.gallery-column {
  width: 32vw;
  padding: 1vw;
  justify-content: flex-start;
  align-items: center;
}

.gallery-img {
  width: 30vw;
  cursor: zoom-in;
  margin-bottom: 1.5vw;

  animation-name: viewImage;
  animation-duration: 0.3s;
}

/****************************************************************** VIEWER *************************************************************************/
#gallery-viewer {
  background-color: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0px;
}

#gallery-viewer-image {
  animation-name: ZoomImageIn;
  animation-duration: 0.3s;
  height: 84vh;
  margin-top: 12vh;
  cursor: zoom-out;
}

#gallery-viewer-image-img {
  height: 100%;
}

.gallery-viewer-arrow-container {
  width: 0.5vw;
  height: 3vh;
  cursor: pointer;
  margin: 0px 4vw;
}

.gallery-viewer-arrow {
  width: 0.5vw;
  height: 3vh;
  clip-path: polygon(
    0% 0%,
    15% 0%,
    100% 50%,
    15% 100%,
    0% 100%,
    83% 50%,
    0% 0%
  );
  background-color: var(--white);
}

#gallery-viewer-arrow_left {
  transform: rotateZ(180deg);
}

/*****************************************************************ANIMATIONS ************************************************************************/
@keyframes viewImage {
  0% {
    transform: translateY(1vh);
    opacity: 0%;
  }

  100% {
    transform: translateY(0px);
    opacity: 100%;
  }
}

@keyframes ZoomImageIn {
  0% {
    transform: scale(0.75);
    opacity: 0%;
  }

  100% {
    transform: scale(1);
    opacity: 100%;
  }
}

@keyframes ZoomImageOut {
  0% {
    transform: translateY(0px);
    opacity: 100%;
  }

  100% {
    transform: translateY(25vh);
    opacity: 0%;
  }
}
