.gallery .block-image[full] {
    cursor: pointer;
}

.gallery-view {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.gallery-view .gallery-view-button {
    align-self: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding: 1rem;
    position: absolute;
    z-index: 1;
}

.gallery-view .gallery-view-button.gallery-view-close-button {
    top: 0px;
    right: 0px;
}

.gallery-view .gallery-view-button.gallery-view-prev-button {
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-view .gallery-view-button.gallery-view-next-button {
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.gallery-view .gallery-view-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1%;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.gallery-view .gallery-view-content img.gallery-view-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    transition: 0.2s opacity;
}

@media (max-width:768px) {
    .gallery-view {
        overflow-y: auto;
    }

    .gallery-view .gallery-view-content {
        width: 100%;
        height: 100%;
    }

    .gallery-view .gallery-view-button.gallery-view-prev-button {
        left: 0px;
        width: 33.33%;
        top: auto;
        bottom: 0px;
        transform: none;
    }

    .gallery-view .gallery-view-button.gallery-view-next-button {
        left: 66.66%;
        width: 33.33%;
        top: auto;
        bottom: 0px;
        transform: none;
    }

    .gallery-view .gallery-view-button.gallery-view-close-button {
        left: 33.33%;
        width: 33.33%;
        top: auto;
        bottom: 0px;
        transform: none;
    }
}