/*
Photos
*/
img{
  margin-bottom: 20px;
  opacity: 1;
}
img:hover{
  cursor: pointer;
}
/* The Modal (background) */
  .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
  }
  
  /* Modal Content */
  .modal-content {
    position: relative;
    margin: auto;
    margin-top:0;
    padding: 0;
    height: 100vh;
    width: 90%;
  }
  .modal .modal-content{
    opacity: 1;
  }
  .modal img{
    margin-top: 1vh;
    margin-bottom: 1vh;
    max-height: 98vh;
    max-width: 100%;
    object-fit: contain;
  }
  .modal-content img:hover{
    cursor: context-menu;
    object-fit: contain;
  }
  /* The Close Button */
  .close {
    color:  rgb(255, 153, 153);
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
  }
  
  /* Hide the slides by default */
  .mySlides {
    position: relative;
    margin: auto;
    margin-top:0;
    padding: 0;
    display: none;
    width: 80%;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: rgb(255, 153, 153);
    font-weight: bold;
    font-size: 35px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
  }
  .prev:hover,
  .next:hover{
    color: #999;
    cursor: pointer;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  img.demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }
  
  img.hover-shadow {
    transition: 0.3s;
  }
  
  .hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  /*
  End Photos
  */
