.vis-gallery-wrapper{
    position: relative;
    width: 100%;
    margin-top: 8px;
  }
  
  .vis-gallery-viewport{
    overflow: hidden;
    width: 100%;
    position: relative;
    min-width: 0;
  }
  
  .vis-gallery-inner{
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
  }
  
  .vis-gallery-inner > *{
    flex: 0 0 calc(25% - 10px);
    margin-right: 10px;
    box-sizing: border-box;
  }
  
  .vis-gallery-inner > *:last-child{
    margin-right: 0;
  }
  
  .vis-gallery-inner img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    -webkit-user-drag: none;
    user-select: none;
  }
  
  .vis-gallery-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99999;
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 999px;
    background: rgba(0,0,0,.70);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    font-size: 26px;
    font-weight: 700;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    pointer-events: auto;
    box-shadow: 0 2px 10px rgba(0,0,0,.18);
  }
  
  .vis-gallery-arrow:hover{
    background: #111;
  }
  
  .vis-gallery-arrow:focus{
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,255,255,.25), 0 2px 10px rgba(0,0,0,.18);
  }
  
  .vis-gallery-prev{ left: 8px; }
  .vis-gallery-next{ right: 8px; }
  
  .vis-gallery-viewport ul,
  .vis-gallery-viewport ol{
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  @media (max-width:767px){
    .vis-gallery-inner > *{
      flex: 0 0 calc(25% - 8px);
      margin-right: 8px;
    }
  
    .vis-gallery-arrow{
      width: 35px;
      height: 35px;
      font-size: 28px;
      z-index: 999999;
    }
  
    .vis-gallery-prev{ left: 6px; }
    .vis-gallery-next{ right: 12px; }
  }