.containerCarrosselPorco{
    position: relative;
    padding: 15px;
    max-width: 100%;
    margin: 0 auto;
    margin-right: 15px;
    margin-left: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  
  .gallery-wrapperPorco {
    overflow-x: auto;
  }
  
  .arrow-leftPorco,
  .arrow-rightPorco {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: 0;
    font-size: 20px;
    line-height: 250px;
    width: 60px;
    color: #fff;
    transition: all 600ms ease-in-out;
    background: linear-gradient(to left, transparent 0%, black 200%);
    opacity: 1;
    cursor: pointer;
    border: none;
  }
  
  .arrow-leftPorco:hover,
  .arrow-rightPorco:hover {
    opacity: 1;
  }
  
  .arrow-rightPorco {
    right: 0;
    left: auto;
    text-align: right;
    background: linear-gradient(to right, transparent 0%, black 200%);
  }
  
  .galleryPorco {
    display: flex;
    flex-flow: row nowrap;
    gap: 15px;
  }
  
  .itemPorco {
    width: 300px;
    height: 400px;
    flex-shrink: 0;
    transition: all 600ms ease-in-out;
    opacity: 0.8;
  }
  
  .current-itemPorco {
    opacity: 1;
    border-style: solid;
  }
  
  /* This is from w3schools */
  /* 
  https://www.w3schools.com/howto/howto_css_hide_scrollbars.asp */
  /* Hide scrollbar for Chrome, Safari and Opera */
  .gallery-wrapperPorco::-webkit-scrollbar {
    display: none;
  }
  
  /* Hide scrollbar for IE, Edge and Firefox */
  .gallery-wrapperPorco {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }