#img-vwr-frame {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    padding: 8vw;
    visibility: hidden;
}

.img-vwr-btns {
    background-color: transparent !important;
    border: none;
    height: fit-content;
    padding: 0;
    margin: 0;
    transition: 0s !important;
}

#img-vwr-close {
    position: fixed;
    top: 15vh;
    right: 8vw;
}

#img-vwr-close img {
    height: 3rem;
}

.img-vwr-btns img {
    height: 5rem;
}

#img-vwr-img {
    max-height: 90%;
    max-width: 90%;
    height: auto;
    width: auto;
    object-fit: unset;
}

@media only screen and (max-width: 750px) {
    #img-vwr-frame {
        padding: 0;
    }
    
    #img-vwr-close {
        position: fixed;
        top: 15vh;
        right: 3vw;
    }

    #img-vwr-close img {
        height: 50px;
    }
    
    .img-vwr-btns img {
        height: auto;
        width: 50px;
    }
    
    #img-vwr-img {
        max-height: 80%;
        max-width: 70%;
        height: auto;
        width: auto;
        object-fit: unset;
    }
}