#imageGallery-imageViewer-port {
    height: 80%;
    overflow: scroll;
}
#imageGallery-imageViewer-viewerPortImage {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    overflow: scroll;
}
#imageGallery-imageViewer-label {
    height: 10px;
}
#imageGallery-imageViewer-list {
    height: 20%;
    box-sizing: border-box;
    overflow: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}
#imageGallery-imageViewer-noOtherImagesText {
    color: #FFFFFF;
}
.imageGallery-imageViewer-childImages {
    width: 80px;
    height: 80px;
    box-sizing: border-box;
    overflow: scroll;
}
#imageGallery-imageViewer-selectedImage {
    border: 2px solid #000000;
}
#imageGallery-imageViewer-leftButton {
    left: 1%;
}
#imageGallery-imageViewer-leftButton:before {
    content: "\f104";
    color: #FFB801;
    font-weight: bold;
}
#imageGallery-imageViewer-rightButton {
    right: 1%;
}
#imageGallery-imageViewer-rightButton:before {
    content: "\f105";
    color: #FFB801;
    font-weight: bold;
}
.imageGallery-imageViewer-navButton {
    position: fixed;
    bottom: 50%;
    padding: 5px;
    background-color: #000000;
    box-shadow: 0 0 10px 10px #000000;
    cursor: pointer;
}

.basicModalWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    overflow: scroll;
}
.basicModalBacker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.75;
}
.basicModalClient {
    position: absolute;
    top: 5%;
    left: 2%;
    height: auto;
    width: auto;
    background-color: transparent;
    padding: 5px;
    border: 5px inset #808080;
    border-radius: 20px;
    overflow: scroll;
    overflow-x: auto;
    overflow-y: auto;
}
.basicModalCloser {
    position: absolute;
    top: 5%;
    left: 2%;
    font-size: 30px;
    font-weight: bold;
    background-color: #FF0000;
    border: 4px inset #808080;
    border-radius: 10px;
    padding: 0 12px 0 12px;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 3;
}
.basicModalCloser::before {
    content: "X";
}
