@charset "utf-8";
/* CSS Document */
.photogallery {
   position: relative;
   width: 90%;
   margin: auto;
   background-color: white;
   color: black;
   padding: 1em 1em 1em 1em;
   text-align: center;
}
.gallery-row > .gallery-col {
   padding: 4px 4px;
}
.gallery-row:after {
   content: "";
   display: table;
   clear: both;
}
.gallery-col {
   float: left;
   width: 33.3%;
   height: 100px;
}
.gallery-col img {
   height: 100%;
}
.demo-col {
   float: left;
   width: 11.1%;
   height: 100px;
   padding: 0 3px;
   background: black;
}
.demo-col img {
   height: 100%;
   border-radius: 10px;
   border:thin solid slategrey;
   object-fit: cover;
}
img.demo {
   opacity: 0.7;
   position: relative;
}
.modal {
   display: none;
   position: fixed;
   z-index: 1;
   padding-top: 5vh;
   left: 1%;
   top: 1%;
   width: 98%;
   height: 98%;
   overflow: auto;
   background-color: black;
   border-radius: 30px;
}
.modal-content {
   position: relative;
   background-color: black;
   margin: auto;
   padding: 0;
   width: 90%;
   max-width: 1100px;
   height: 65vh;
}
.close {
   color: white;
   position: absolute;
   top: 10px;
   right: 25px;
   font-size: 35px;
   font-weight: bold;
}
.close:hover, .close:focus {
   color: #999;
   text-decoration: none;
   cursor: pointer;
}
.mySlides {
   display: none;
   position: relative;
   height: 100%;
}
.mySlides img {
   height: 100%;
   object-fit: contain;
}
.prev, 
.next {
   cursor: pointer;
   position: absolute;
   top: 50%;
   width: auto;
   padding: 16px;
   margin-top: -50px;
   color: white;
   font-weight: bold;
   font-size: 20px;
   transition: 0.6s ease;
   border-radius: 0 3px 3px 0;
   user-select: none;
   -webkit-user-select: none;
}
.next {
   right: 0;
   border-radius: 3px 0 0 3px;
}
.prev {
   left: 0;
}
.prev:hover, .next:hover {
   background-color: rgba(0, 0, 0, 0.8);
}
.numbertext {
   color: #f2f2f2;
   font-size: 12px;
   padding: 8px 12px;
   position: absolute;
   top: 0;
}
.caption-container {
   background-color: black;
   padding: 2px 16px;
   color: white;
   font-size: 18px;
}
.caption-container p {
   text-align: center;
}

.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);
}