.magnifierRentgen {
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.magnifierRentgen .magnifier-loupe {
    overflow: hidden;
    position: absolute;
    border-radius: 10em;
    top: 0;
    left: 0;
    border: #f0f0f0 4px solid;
    box-shadow: rgba(0, 0, 0, 0.3) 5px 5px 8px;
    cursor: none;
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    display: none;
    pointer-events: none;
}