.gallery.ThemeGalleryComplexGrid1 {
  display: grid;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  grid-auto-columns: 20%;
  grid-auto-flow: column;
  scroll-behavior: smooth;
  height: 100%;
  display: grid;
  width: 100%;
  box-sizing: border-box;
  grid-gap: 5px;
  font-size: 0.8rem;
  padding-bottom: 0;
  background-color: var(--colorBackground);
}
.gallery.ThemeGalleryComplexGrid1[data-count="1"] {
  grid-auto-columns: 1fr;
}
.gallery.ThemeGalleryComplexGrid1[data-count="2"] {
  grid-auto-columns: 2fr;
}
.gallery.ThemeGalleryComplexGrid1[data-count="3"] {
  grid-auto-columns: 3fr;
}
.gallery.ThemeGalleryComplexGrid1[data-count="4"] {
  grid-auto-columns: 4fr;
}
.gallery.ThemeGalleryComplexGrid1[data-count="8"] {
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 2fr 2fr;
  width: 100%;
  box-sizing: border-box;
  height: calc(100vh - (var(--sizeXL) * 2));
  grid-gap: 5px;
  font-size: 0.8rem;
  padding-bottom: 0;
  grid-auto-flow: row;
}
.gallery.ThemeGalleryComplexGrid1[data-count="8"] .galleryMedia:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="8"] .galleryMedia:nth-child(2) {
  grid-column: span 1;
}
.gallery.ThemeGalleryComplexGrid1[data-count="8"] .galleryMedia:nth-child(3) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="8"] .galleryMedia:nth-child(4) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="8"] .galleryMedia:nth-child(5) {
  grid-column: span 1;
}
.gallery.ThemeGalleryComplexGrid1[data-count="8"] .galleryMedia:nth-child(6) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="8"] .galleryMedia:nth-child(7) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="8"] .galleryMedia:nth-child(8) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] {
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: 2fr 2fr;
  width: 100%;
  box-sizing: border-box;
  height: calc(100vh - (var(--sizeXL) * 2));
  grid-gap: 5px;
  font-size: 0.8rem;
  padding-bottom: 0;
  grid-auto-flow: row;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] .galleryMedia:nth-child(1) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] .galleryMedia:nth-child(2) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] .galleryMedia:nth-child(3) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] .galleryMedia:nth-child(4) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] .galleryMedia:nth-child(5) {
  grid-column: span 1;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] .galleryMedia:nth-child(6) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] .galleryMedia:nth-child(7) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] .galleryMedia:nth-child(8) {
  grid-column: span 2;
}
.gallery.ThemeGalleryComplexGrid1[data-count="9"] .galleryMedia:nth-child(9) {
  grid-column: span 1;
}
.gallery.ThemeGalleryComplexGrid1 > .galleryMedia {
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: var(--colorShadowDark);
  position: relative;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.gallery.ThemeGalleryComplexGrid1 > .galleryMedia[data-clickable] {
  cursor: pointer;
}
.gallery.ThemeGalleryComplexGrid1 > .galleryMedia > img {
  transition: all 0.3s ease;
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  -webkit-mask-image: radial-gradient(149% 119% ellipse at bottom right, transparent, #000, transparent);
}
.gallery.ThemeGalleryComplexGrid1 > .galleryMedia > .galleryMediaText {
  position: absolute;
  top: 0;
  left: 0;
  padding: var(--sizeL);
  color: var(--colorBackground);
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  text-align: right;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: var(--fontXL);
}
.gallery.ThemeGalleryComplexGrid1 > .galleryMedia:hover > img, .gallery.ThemeGalleryComplexGrid1:not(:hover) > .galleryMedia[data-active] > img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.gallery.ThemeGalleryComplexGrid1 > .galleryMedia:hover > .galleryMediaText, .gallery.ThemeGalleryComplexGrid1:not(:hover) > .galleryMedia[data-active] > .galleryMediaText {
  opacity: 1;
}

@media (orientation: portrait) {
  .gallery.ThemeGalleryComplexGrid1 {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(4, 1fr) !important;
  }
  .gallery.ThemeGalleryComplexGrid1 .galleryMedia {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}
