.full {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}
.full .content {
  background-color: rgba(0,0,0,0.75) !important;
  height: 100%;
  width: 100%;
  display: grid;
}
.full .content img {
  left: 50%;
  transform: translate3d(0, 0, 0);
  animation: zoomin 1s;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}
.byebyeX {
  opacity: 0;
}
.byebyeX:hover {
  transform: scale(0.2) !important;
}
.gallery {
  display: grid;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(333px, 1fr));
  margin:20px 0 40px 0;
}
.gallery img {
  max-width: 100%;
  border-radius: 0px;
  transition: all 1.5s ease;
}
.gallery img:hover {
}
.gallery .content {
  padding: 4px;
}
.gallery .gallery-item {
  transition: grid-row-start 300ms linear;
  transition: transform 300ms ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.gallery .gallery-item:hover {
  transform: scale(1.025);
}
@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
}
@media (max-width: 400px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}
@-moz-keyframes zoomin{
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-webkit-keyframes zoomin {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-o-keyframes zoomin {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes zoomin {
    from { opacity: 0; }
    to   { opacity: 1; }
}
