/* SLIDESHOW GALLERY */
.slideshow-container {
    width: 90%;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid black;
    box-shadow: 5px 5px 5px #999;
    }
  .mySlides {
    display: none; /* Hide images by default */
    width: 100%;
    }
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 0;
    height: 100%;
    width: 10%;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.6);
    }
  .prev {
    left: 0;
    }
  .next {
    right: 0;
    }
  .prev:hover, .next:hover {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.5);
    }
  .prev span, .next span {
    position: absolute;
    width: 100%;
    top: calc(50% - 16px);
    text-align: center;
    }
  .dot-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    }
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    background-color: rgba(192, 192, 192, 0.7);
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.7);
    }
  .dot:hover {
    background-color: #D70000;
    }
  .active {
    background-color: #FFFFFF;
    }
  /* END SLIDESHOW GALLERY */

  /* test area */
  /*
  [data-emoji]::before {
    content: attr(data-emoji); 
    margin-left: 15px;
  }
  img::after {
    display: block;
    position:absolute;
    bottom:30px;
    left:30px;
    font-size:50pt;
    content: ' (source: ' attr(longdesc) ') ';
    color: red;
  }
   */
  .pic-title {
    font-family: "Jost", "Arial", sans-serif;
    width: 80%;
    font-size: 16pt;
    font-weight: 700;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  /* media queries */
  @media (max-width: 480px) {
    .slideshow-container {
      width: 100%;
    }
    .dot {
      height: 7px;
      width: 7px;
    }
    .pic-title {
      width: 90%;
      font-size: 10pt;
      font-weight: 600;
    }
  }
  