.gallery_global[data-content-layout="1"] {
  display: grid;
  grid-template-columns: 38% auto;
}
.gallery_global[data-content-layout="2"] {
  display: grid;
  grid-template-columns: auto 38%;
}

@media only screen and (max-width: 800px) {
  .gallery_global[data-content-layout="1"],
  .gallery_global[data-content-layout="2"] {
    display: block;
  }
}

.gallery_global {
  display: grid;
  gap: 15px;
}
.gallery_global .img_wrap {
  display: grid;
}
.gallery_global[data-col="1"] .img_wrap {
  grid-template-columns: 1fr;
}
.gallery_global[data-col="2"] .img_wrap {
  grid-template-columns: repeat(2, 1fr);
}
.gallery_global[data-col="3"] .img_wrap {
  grid-template-columns: repeat(3, 1fr);
}
.gallery_global[data-col="4"] .img_wrap {
  grid-template-columns: repeat(4, 1fr);
}
.gallery_global[data-col="5"] .img_wrap {
  grid-template-columns: repeat(5, 1fr);
}
.gallery_global[data-col="6"] .img_wrap {
  grid-template-columns: repeat(6, 1fr);
}
@media only screen and (max-width: 540px) {
  .gallery_global .img_wrap {
    display: block;
  }
}

.gallery_global .box {
  position: relative;
  text-align: center;
}
.gallery_global .box .name {
  line-height: 30px;
}
.gallery_global[data-hide-name="1"] .box .name {
  display: none;
}
.gallery_global[data-shadow="1"] .box .img {
  box-shadow: 0 0 5px #00000054;
}
.gallery_global[data-name-frame="1"][data-shadow="1"] .box .img {
  box-shadow: unset;
}
.gallery_global[data-name-frame="1"][data-shadow="1"] .box {
  box-shadow: 0 0 5px #00000054;
}

.gallery_global[data-name-bold="bold"] .box .name {
  font-weight: bold;
}
.gallery_global[data-name-italic="italic"] .box .name {
  font-style: italic;
}
.gallery_global[data-description-bold="bold"] .box .description {
  font-weight: bold;
}
.gallery_global[data-description-italic="italic"] .box .description {
  font-style: italic;
}

.gallery_global .item_img_frame .item_img {
  width: 100%;
  display: block;
  box-sizing: border-box;
}
.gallery_global .item_img_frame {
  margin: 0 !important;
  padding: 0 !important;
}
.gallery_global[data-crop="1"] .item_img_frame {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.gallery_global[data-crop="1"] .item_img_frame .item_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery_global .box {
  cursor: pointer;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.gallery_global .box .item_img, .gallery_global .box .name {
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
/*.gallery_global[data-name-hover="1"] .box .item_img, .gallery_global[data-name-hover="1"] .box .name {
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.gallery_global[data-name-hover="1"] .box:hover .item_img {
  filter: blur(8px);
  -webkit-filter: blur(4px);
}
.gallery_global[data-name-hover="1"] .box .name {
  position: absolute;
  display: block;
  background: #ffffff70;
  bottom: 10%;
  left: 0;
  margin: 0 auto;
  line-height: clamp(30px, 3vw, 75px);
  padding: 0 clamp(10px, 2vw, 50px);
  font-size: clamp(11px, 1vw, 14px);
  color: #000;
  opacity: 0;
}
.gallery_global[data-name-hover="1"] .box:hover .name {
  opacity: 1;
}*/
.gallery_global .box.blow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  padding: 20px;
  background: #00000078;
  overflow: auto;
  z-index: 100;
}
.gallery_global[data-crop="1"] .blow .item_img_frame {
  aspect-ratio: unset;
}
.gallery_global .box.blow .item_img {
  width: unset;
  height: unset;
  object-fit: unset;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 10vh;
  margin-bottom: 10vh;
  box-shadow: 0 0 10px #00000075;
  filter: unset !important;
  -webkit-filter: unset !important;
}