.slzoom__item {
    cursor: zoom-in;
}

.slZoom__block {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slZoom__block:before {
    display: block;
    content: '\d7';
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 60px;
    line-height: 0.5;
    cursor: pointer;
    pointer-events: auto;
}

.slZoom__block:before:hover {
    color: red;
}

img.slZoom__img {
    max-width: 90%;
    max-height: 90%;
    min-width: 30%;
    min-height: 30%;
}