.gallery-wrapper {
  margin-top: 10px;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
}

.gallery-thumbnail-container {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}

.gallery-thumbnail {
  border: 2px solid #dfdfdf;
  box-shadow: 1px 1px 3px #333;
}

.gallery-thumbnail:hover {
  box-shadow: 1px 1px 3px #fff;
}

.gallery-pagination-container {
  border-top: 9px solid #dfdfdf;
  font-size: 20px;
  padding-top: 10px;
  list-style-type: none;
}

.gallery-pagination-container a {
  padding: 4px 6px;
}

.gallery-pagination-item {
  display: inline-block;
}

.gallery-pagination-item.active a {
  text-decoration: underline;
}

.gallery-tags {
  margin-bottom: 20px;
}

@media (max-width: 1200px) {
  .gallery-thumbnail-container {
    max-width: 100%;
    width: 25%;
    height: auto;
    margin-bottom: 10px;
  }

  .gallery-thumbnail {
    width: 96%;
    height: auto;
  }
}