.gallery-layout_container {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

  .gallery-layout_container .gallery-layout_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 0;
    text-align: center;
  }

  .gallery-layout_container .gallery-layout_title h1 {
      text-transform: uppercase;
      padding-bottom: 12px;
    }

  .gallery-layout_container .gallery-layout_title p {
      padding: 0 16px;
    }

  .gallery-layout_container .gallery-layout_contentContainer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 2px;
  }

  .gallery-layout_container .gallery-layout_stickyHeader .headroom {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background-color: #fff;
  }

  .gallery-layout_container .gallery-layout_stickyHeader .headroom--pinned,
  .gallery-layout_container .chrome-hide-overflow .gallery-layout_stickyHeader .headroom--unpinned {
    position: fixed;
    top: 110px;
  }

  .gallery-layout_container .gallery-layout_stickyHeader .headroom--unfixed {
    display: flex;
  }

  @media (max-width: 1024px) {
    .gallery-layout_container .gallery-layout_stickyHeader .headroom--pinned,
    .gallery-layout_container .chrome-hide-overflow .gallery-layout_stickyHeader .headroom--unpinned {
      position: fixed;
      top: 60px;
    }
    .gallery-layout_container .gallery-layout_title {
      padding: 20px 16px 16px 16px;
    }
  }

  @media (max-width: 736px) {
    .gallery-layout_container .gallery-layout_stickyHeader .headroom--pinned {
      position: fixed;
      top: 50px;
    }
  }
.gallery_content {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, calc((1142px / 6) - 4px));
  grid-template-rows: repeat(auto-fill, 234px);
  grid-row-gap: 4px;
  grid-column-gap: 4px;
}
  .gallery_content li {
    cursor: pointer;
    animation: gallery_fadeIn 0.6s ease;
  }
  .gallery_content li img {
    flex: 1;
    text-align: center;
    display: flex;
    width: calc((1142px / 6) - 4px);
    height: 234px;
    object-fit: cover;
  }
  .gallery_content span {
    position: absolute;
    background: linear-gradient(180deg, rgba(45, 45, 45, 0) 0%, #2D2D2D 108.33%);
    padding: 40px 0 12px 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    display: none;
    width: 100%;
  }
  .gallery_content li:hover span {
    display: block;
  }
  @keyframes gallery_fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .gallery_content a {
    text-decoration: none;
    position: relative;
    display: block;
  }

@media (min-width: 1142px) {
    .gallery_content li:nth-of-type(11n) {
      grid-column: span 2;
      grid-row: span 2;
    }
    .gallery_content li:nth-of-type(11n) img {
      width: 100%;
      height: 472px;
    }
}

@media (max-width: 1142px) {
  .gallery_content {
    width: 952px;
    grid-template-columns: repeat(5, calc((952px / 5) - 4px));
  }
}
@media (max-width: 1024px) {
  .gallery_title {
    padding: 32px 32px 0 32px;
  }
    .gallery_title h1 {
      padding-bottom: 8px;
    }
  .gallery_content {
    padding: 0 6px;
    max-width: 100%;
    width: calc(100% - 30px);
    grid-template-columns: repeat(3, calc((100% / 3) - 6px));
    grid-template-rows: repeat(auto-fill, 314px);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
  }

    .gallery_content li img {
      width: 100%;
      height: 314px;
    }
}

@media (max-width: 736px) {
  .gallery_content {
    padding: 0;
    width: 100vw;
    grid-template-columns: repeat(2, 50%);
    grid-template-rows: repeat(auto-fill, 238px);
    grid-row-gap: 3px;
    grid-column-gap: 1px;
  }
      .gallery_content li a {
        width: 100%;
      }

    .gallery_content li img {
      width: calc(100% - 2px);
      height: 238px;
    }
    .gallery_content li span {
      display: block;
      width: calc(100% - 2px);
    }
}
.pagination_container {
  padding: 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
  .pagination_container p {
    color: #666;
  }
  .pagination_container p + div {
    padding-bottom: 16px;
  }
  .pagination_container div[role=progressbar] {
    border: none !important;
    border-color: transparent !important;
  }
  .pagination_container div[role=progressbar] {
    background-color: #eee;
    min-width: 245px;
  }
  .pagination_container div[role=progressbar] > div {
    border: none !important;
    border-radius: 10px 0px 0px 10px !important;
  }
  .pagination_container .pagination_fullProgress div[role=progressbar] > div {
    border-radius: 10px !important;
  }
  .pagination_container button {
    min-width: 300px;
    margin-top: 8px;
  }
.app_container .app_barnsley5 {
    font-size: 24px;
    letter-spacing: 1.2px;
    font-weight: 700;
    line-height: 30px;
  }
  .app_container .app_leavesden2 {
    font-size: 16px;
    letter-spacing: 0.4px;
    line-height: 22px;
    font-weight: 400;
  }
  .app_container .app_london3 {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.8px;
  }

/*# sourceMappingURL=user-generated-content.5ff78f298fb80a0c200e.css.map*/