.root {
    display:flex;
}

.root:focus {
    outline:none;
}

.thumbnail {
    max-width: 75px;
    max-height: 75px;
    object-fit: cover;  
}

.image {
    max-height: 95vh;
    object-fit: contain;
}

.nextButton {
    position: fixed;
    right: 10px;
    top: 50%;
    padding: 10px;
    background: #666;
    cursor: pointer;
    z-index: 1001;
}

.previousButton {
    position: fixed;
    left: 10px;
    top: 50%;
    padding: 10px;
    background: #666;
    cursor: pointer;
    z-index: 1001;
}

.closeButton {
    position: absolute;
    top: -30px;
    right: -35px;
    cursor: pointer;
    z-index: 5;
    color: #fff;
}

.closeButton:hover {
    color: #ff6f6a;
}

.overlay {
    background: rgb(0,0,0,.80)!important;
    user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    height: 100%;
}

.imageContainer {
    position: relative;
    max-height: 80%;
}

.seeMoreContainer {
    box-shadow: 1px 1px 4px #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    cursor: pointer;
    position: relative;
}

.seeMoreContainerSmall {
    width: 75px;
    height: 75px;
}

.seeMoreContainerMedium {
    width: 200px;
    height: 200px;
}

.seeMoreText {
    padding: 15px;
    text-align: center;
    font-size: 18px;
    color: #000;
    z-index: 999;

}

.seeMoreBackground {
    position: absolute;
    width: 75px;
    height: 75px;
    object-fit: cover;
    background: rgb(0,0,0,.4);
    opacity: .4;
}