.ngparapuzzle-stage {
    height: 0;
    width: 100%;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.ngparapuzzle-stage>img, .ngparapuzzle-stage>a>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 4;
}

.ngparapuzzle-stage>div {
    position: absolute;
    overflow: hidden;
    transition: left 0.1s, top 0.1s, transform 0.2s, box-shadow 0.2s;
    transition-timing-function: cubic-bezier(0.585, 0.005, 0.255, 1.000);
    transform: scale3d(1.0,1.0,1.0);
    z-index: 1;
}

.ngparapuzzle-stage>div>img {
    position: absolute;
    display: block;
}

.ngparapuzzle-stage>div.ngparapuzzle-active {
    z-index: 2;
}

.ngparapuzzle-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
}

.ngparapuzzle-stats span {
    min-width: 45px;
    padding: 0 5px;
    text-align: center;
}

@media (hover) {
    .ngparapuzzle-stage > div.ngparapuzzle-active:hover {
        transform: scale3d(1.075, 1.075, 1.0);
        box-shadow: rgba(0, 0, 0, 0.25) 0 0 10px;
        cursor: pointer;
        z-index: 3;
    }
}