.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0px;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}
.xwide-column-left {
  flex: 50%;
  max-width: 50%;
  padding-right: 8px;
  padding-left: 0px;
}
.xwide-column-right {
  flex: 50%;
  max-width: 50%;
  padding-left: 8px;
  padding-right: 0px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}


@media (max-width: 992px) {
  .wide-column {
    flex: 50%;
    max-width: 50%;
  }
  table {
    width:  50%;
  }
}

@media (max-width: 800px) {
  .column {
    flex: 50%;
    max-width: 50%;
  }
  table {
    width:  75%;
  }
}

@media (max-width: 600px) {
  .wide-column, .xwide-column-left, .xwide-column-right {
    flex: 100%;
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }
  table {
    width:  100%;
  }
}

@keyframes moveinandout {
 0%   {
 top: -200px
 }
 10% {
 top: 0px;
 }
 80%   {
 top: 0px
 }
 100% {
 top: -200px;
 }
}

button.pswp__button--download-button {
  font-size: 20px;
  color: #fff;
}

.pswp__custom-caption {
  background: rgba(75, 75, 75, 0.75);
  font-size: 14px;
  color: #fff;
  width: calc(100% - 32px);
  max-width: 200px;
  padding: 2px 8px;
  border-radius: 4px;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  text-align: center;
}
.pswp__custom-caption a {
  color: #fff;
  text-decoration: underline;
}
.hidden-caption-content {
  display: none;
}
.hidden-download-link {
  display: none;
}