.gallery-block-outer .gallery-front {
    display: grid;
    width: 100%;
    justify-items: center;
}

.gallery-block-outer .gallery-item {
    overflow: hidden;
}

.gallery-block-outer .gallery-item img {
    /* height: 500px;
    width: 400px; */
    display: block;
    /* object-fit: cover;
    object-position: top center; */
}

.gallery-block-outer .gallery-item.hidden {
    display: none;
}

.gallery-block-outer .show-more-button {
    cursor: pointer;
    display: inline-block;
}

.gallery-block-outer .show-more-button svg {
    width:40px;
}
.gallery-block-outer .gallery-item img {
  cursor: pointer;
}




/* 
.gallery-block-outer .gallery {
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  .gallery-block-outer .gallery.active {
    cursor: grabbing;
  }
  
  .gallery-block-outer .gallery-item {
    -webkit-user-drag: none;
  }
  
  .gallery-block-outer {
    position: relative;
    padding: 0;
    overflow: hidden;
  }
  
  .gallery-block-outer .gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
  }
  
  .gallery-block-outer .gallery::-webkit-scrollbar {
    display: none;
  }
  
  .gallery-block-outer .gallery-item {
    flex: 0 0 auto;
    width: auto !important;
  }
  
  .gallery-block-outer .gallery-item img {
    width: auto !important;
    display: block;
  }
  
  .gallery-block-outer  .gallery-columns-3 .gallery-item,
  .gallery-block-outer  .gallery-columns-4 .gallery-item,
  .gallery-block-outer  .gallery-columns-5 .gallery-item,
  .gallery-block-outer  .gallery-columns-6 .gallery-item,
  .gallery-block-outer  .gallery-columns-7 .gallery-item,
  .gallery-block-outer  .gallery-columns-8 .gallery-item,
  .gallery-block-outer  .gallery-columns-9 .gallery-item {
    max-width: none !important;
  }
  
  .gallery-block-outer  .gallery-nav-prev,
  .gallery-block-outer  .gallery-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
  } */