/* .panel {
    position: relative;
} 

.panel:target {
    padding-top: 80px;
} */

.img-responsive {
    max-width: 68%;
    max-height: auto;
}

.panel {
    background-color: #eef0f2;
}

section:before {
    height: 70px;
    content: "";
    display:block;
}

footer:before {
    height: 20px;
    content: "";
    display:block;
}

.zoom {
    transition: transform .2s; /* Animation */
}

.zoom:hover {
    transform: scale(1.08); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.list-group-item {
    background-color: #eef0f2;
}

.card {
    padding: 10px;
}

.expand-contract-button {
    background-color: #eef0f2;
    border: none;
    transition-duration: 0.2s;
    text-align: center;
    float: right;
}
  
.expand-contract-button:hover {
    transform: scale(1.5);
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #ffffff;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    transition-duration: 0.2s;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.photo-gallery-image:hover {
    opacity: 0.6;
    cursor: pointer;
}

#photo-viewer {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000de;
}

.photo-viewer-control-button {
    background-color: #000000de;
    border: none;
    transition-duration: 0.2s;
    text-align: center;
    color: #ffffff;
    font-size: 40px;
    margin: 0px 20px;
    padding: 10px 10px;
}
  
.photo-viewer-control-button:hover {
    transform: scale(1.2);
}

#photo-viewer-controls {
    height: 10vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#photo-viewer-main {
    height: 75vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#photo-viewer-description {
    height: 15vh;
    width: 100%;
    padding: 10px 5%;
}

.imgText {
    color: #ffffff;
    font-size: 15px;
}