#modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
  }
  
  #modal-img {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
  }
  
  .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    font-weight: bold;
    color: white;
    cursor: pointer;
  }
  

  /*--------------------------------------
--------- Scrollbar  ---------
---------------------------------------*/

/* Wurzel-Element */
::-webkit-scrollbar {
  width: 15px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #f7f7f7;
}

/* Griff */
::-webkit-scrollbar-thumb {
  background-color: #c9c9c9;
  border-radius: 10px;
}

/* Hover-Effekt auf dem Griff */
::-webkit-scrollbar-thumb:hover {
  background-color: #a7a7a7;
}

/* Griff in der vertikalen Richtung */
::-webkit-scrollbar-thumb:vertical {
  height: 50px;
}

/* Griff in der horizontalen Richtung */
::-webkit-scrollbar-thumb:horizontal {
  width: 50px;
}

/*--------------------------------------
--------- Scrollbar  END---------
---------------------------------------*/