/* zoom master ATEDIN style 2020 */
.zoom {
    display: block;
    position: relative;
/*    border: 1px solid #CCC; */
    font-size: 1.3em;
    padding-bottom: 100%;
    height: 0;
    background-color: white;
    overflow: hidden;
}
.zoom.ready {
    display: block;
    padding-bottom: 100%;
    height: 0;
    cursor:zoom-in;
}
.zoom.ready:before {
    content: '';
    font-family: "ElegantIcons";
    font-style: normal;
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    border-right: 3.4em solid transparent;
    border-bottom: 3.4em solid rgba(0,0,0,0.5);
}
.zoom.ready:after {
    content: 'U';
    font-family: "ElegantIcons";
    font-style: normal;
    color: white;
    position: absolute;
    left: 0.4em;
    bottom: 0.4em;
    z-index: 3;
}
.zoom.ready:hover:after {
    content: 'T';
}
.zoom img {
    display: block;
    width: 100%;
}
.zoom img::selection {
    background-color: transparent;
}
#ex2 img:hover {
    cursor: url(grab.cur), default;
}
#ex2 img:active {
    cursor: url(grabbed.cur),default;
}
