.gallery-popup {
  z-index: 99;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.911);
  color: white;
  font-size: 30px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: fadeImg 300ms normal forwards;
}

.gallery-popup>div:nth-child(1) {
  width: 100%;
  text-align: center;
  padding-right: 5px;
  cursor: pointer;
}

.gallery-popup>div:nth-child(2) {
  width: 100%;
  height: 75%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(65, 65, 65, 0.178);
}

#photoHolder {
  width: 100%;
  height: 100%;
}

#photo1Holder {
  width: 100%;
  height: 100%;
}

#photo2Holder {
  width: 100%;
  height: 100%;
}

.gallery-popup>div:nth-child(2)>div>div {
  width: 100%;
  height: 100%;
  animation: fadeImg 300ms normal forwards;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

@keyframes fadeImg {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.gallery-popup>div:nth-child(3) {
  width: 100%;
  align-items: center;
  overflow: auto;
  white-space: nowrap;
  padding: 5px;
}

.gallery-popup>div:nth-child(3)>div {
  width: 100px;
  height: 80px;
  background-color: black;
  margin: 3px;
  display: inline-block;
  /* border: 2px solid white; */
  border: 2px solid;
  border-image: linear-gradient(to bottom, #FE57E3, #eeb66841) 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
}

.gallery-popup>div:nth-child(2)>div:nth-child(1),
.gallery-popup>div:nth-child(2)>div:nth-child(3) {
  position: absolute;
  top: 50%;
  z-index: 2;
  font-size: 35px;
  color: rgba(202, 202, 202, 0.363);
  padding: 10px;
  cursor: pointer;
}

.gallery-popup>div:nth-child(2)>div:nth-child(1) {
  left: 0;
}

.gallery-popup>div:nth-child(2)>div:nth-child(3) {
  right: 0;
}