.galleryViewerModal {

    width: 100%;
    height: 100%;


    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    position: fixed;
    z-index: 2;

    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;

    background-color: rgb(40, 40, 40);
}

.galleryViewerModal > .controlButtonClose {
    width: 50px;
    height: 50px;
    padding: 5px;
    background-color: transparent;
    color: #fff;

    border: 0px;
    outline: none;
    cursor: pointer;
    font-size: 30px;

    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;

    transition: 0.3s linear;
}

.galleryViewerModal > .controlButtonClose:hover {
    color: #850711;
    transition: 0.3s linear;
}

.galleryViewerModal > .image {
    width: 100%;
    height: 90% !important;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 0px;
}

.galleryViewerModal > .controls {
    width: 100%;
    height: 10% !important;


    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

    position: absolute;
    bottom: 0px;

    background-color: #000;
}

.galleryViewerModal > .controls > .controlButton {
    width: 300px;
    height: 100%;
    padding: 5px;
    background-color: transparent;
    color: #fff;
    border: 0px;
    outline: none;
    cursor: pointer;
    font-size: 30px;
    transition: 0.3s linear;
}

.galleryViewerModal > .controls > .controlButton:hover {
    /* background-color: #fff; */
    /* color: #000; */
    box-shadow: inset 0px -10px 0px 0px #fff;
    transition: 0.3s linear;
}

.hidden {
    display: none;
}

@media screen and (max-width: 1050px) {

}

@media screen and (max-width: 800px) {

}

@media screen and (max-width: 650px) {

}

@media screen and (max-width: 390px) {

    .galleryViewerModal > .image > img {
        width: 100%;
    }

}
