* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  .container {
    position: relative;
    padding: 15px;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .gallery-wrapper {
    overflow-x: auto;
    margin: 0 20px;
  }
  
  .gallery {
    display: flex;
    flex-flow: row nowrap;
    gap: 15px;
  }
  
  .arrow-left,
  .arrow-right {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    font-size: 20px;
    line-height: 250px;
    width: 40px;
    text-align: center;
    color: #fff;
    cursor: pointer;
    border: none;
    background: linear-gradient(to left, transparent, green);
    opacity: 0.5;
    /* transition: all 300ms ease-in-out; */
    transition: 300ms;
  }
  
  .arrow-right {
    left: auto;
    right: 0;
    background: linear-gradient(to right, transparent, green);
  }
  
  .arrow-right:hover,
  .arrow-left:hover {
    opacity: 1;
  }
  
  .item {
    width: 80%;
    /* height: 250px; */
    flex-shrink: 0;
    opacity: 0.5;
    border: 5px solid #fff;
    transition: all 600ms ease-in-out;
  }
  
  .current-item {
    opacity: 1;
    border: 3px solid green;
    box-shadow: 0 0 20px green;
  }
  
  .gallery-wrapper::-webkit-scrollbar {
    display: none;
  }
  
  .gallery-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }