@keyframes mme-hover {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.3);
    }
}

.mme_hover {
    z-index: 1000001;
    border-radius: 5px;
}

.mme_hover_container {
    animation: mme-hover 300ms ease-in-out;
    transform: scale(1.3);
}

.mme_hover_img {
    height: 100%;
    width: 100%;
}

.mme_hover_clickable {
    cursor: pointer;
}

.mme_curtain {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
}

.mme_fullscreen .close_button {
    position: absolute;
    top: 20px;
    right: 50px;
    cursor: pointer;
    background-color: #611;
    color: white;
    padding: 3px;
}

.mme_fullscreen {
    z-index: 1000001;
}

.not_loaded_spinner {
    background-image: url(/Images/symbol_loading.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.mme_fullscreen img {
    cursor: pointer;
}

.next_bild {
    position: absolute;
    width: 64px;
    height: 64px;
    background-image: url(/Images/gallery_arrow_right.png);
    right: 50px;
    top: 50%;
    margin-top: -32px;
    cursor: pointer;
}

.prev_bild {
    position: absolute;
    width: 64px;
    height: 64px;
    background-image: url(/Images/gallery_arrow_left.png);
    left: 50px;
    top: 50%;
    margin-top: -32px;
    cursor: pointer;
}

.isHovering {
    visibility: hidden;
}

body.no-scroll {
    overflow: hidden;
}