 /* Position the image container (needed to position the left and right arrows) */
 .container-fotogaleria {
    position: relative;
  }

  /* Hide the images by default */
  .mySlides {
    display: none;
    background-color: #24135F;
  }

  /* Add a pointer when hovering over the thumbnail images */
  .cursor_foto {
    cursor: pointer;
  }

  /* Next & previous buttons */
  .prev_foto,
  .next_foto {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }

  /* Position the "next button" to the right */
  .next_foto {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

  /* On hover, add a black background color with a little bit see-through */
  .prev_foto:hover,
  .next_foto:hover {
    background-color: #A49552;
  }

  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }

  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #A49552;
    padding: 2px 16px;
    color: white;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Add a transparency effect for thumnbail images */
  .fotogaleria_demo {
    opacity: 0.6;
    object-fit: cover!important;
    height: 10vh;
  }

  .active_galeria,
  .fotogaleria_demo:hover {
    opacity: 1;
  }