.module-pro-image .image-pro-flip-button{
    position:absolute;
    top:10px;
    right:10px;
    width:32px;
    height:32px;
    color:#4a4a4a;
    font-size:0;
    padding:0;
    z-index:9999;
    opacity:0;
    pointer-events:none;
    transition:opacity 1s;
    background:#fff;
    border-radius:50%;
	box-shadow:-2px 3px 10px rgba(92, 92, 92, .2);
}
.module-pro-image.overlay-active .image-pro-flip-button{
	opacity:1;
	pointer-events:all;
}
.module-pro-image .image-pro-flip-button:before, 
.module-pro-image .image-pro-flip-button:after{
    position:absolute;
    top:50%;
    left:50%;
    width:1px;
    height:20px;
    background-color:currentColor;
    transform:rotate(45deg) translate(-50%, -50%);
    transform-origin:top left;
    content:'';
}
.module-pro-image .image-pro-flip-button:after{
    transform:rotate(-45deg) translate(-50%, -50%);
}