.screenshot-thumbnail-wrapper {
    position: relative;
    cursor: pointer;
}

.screenshot-thumbnail-wrapper .magnifier {
    position: absolute;
    right: 10px;
    bottom: 16px;
    background-color: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    display: none;
    border-radius: 5px;
    align-items: center;
    justify-content: center;
}

.screenshot-thumbnail-wrapper:hover .magnifier {
    display: flex;
}

.screenshot-thumbnail-wrapper .magnifier span {
    color: white;
    font-size: 20pt !important;
}

.screenshot-thumbnail-wrapper .image {
    height: auto;
    border: none;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.10);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.10);
    box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.10);
}

.screenshot-full {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    text-align: center;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
}

.screenshot-full .image {
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 90vh;
    margin-top: 4vh;
    cursor: pointer;
}

