/* Separate moving product layer for the shared .okna-char specification diagrams. */
body .okna-char .center.vo-okna-char-split {
    position: relative;
    isolation: isolate;
    cursor: zoom-in;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

body .okna-char .center.vo-okna-char-split > img.vo-okna-char-static-art {
    position: relative;
    z-index: 1;
    display: block;
    transform: none !important;
    transition: none !important;
}

body .okna-char .center.vo-okna-char-split > img.vo-okna-char-foreground {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: fill;
    pointer-events: none;
    opacity: 0;
    transform: scale(.96) translateZ(0);
    transform-origin: center center;
    filter: drop-shadow(0 6px 8px rgba(22, 43, 41, 0));
    transition: transform 1.15s cubic-bezier(.16, 1, .3, 1), opacity .35s ease-out, filter 1.15s ease;
    will-change: transform, opacity;
}

@media (hover: hover) and (pointer: fine) {
    body .okna-char .center.vo-okna-char-split:hover > img.vo-okna-char-foreground {
        opacity: 1;
        transform: scale(1.14) translateZ(0);
        filter: drop-shadow(0 14px 18px rgba(22, 43, 41, .18));
    }
}

@media (hover: none), (pointer: coarse) {
    body .okna-char .center.vo-okna-char-split:active > img.vo-okna-char-foreground,
    body .okna-char .center.vo-okna-char-split:focus-within > img.vo-okna-char-foreground {
        opacity: 1;
        transform: scale(1.14) translateZ(0);
        filter: drop-shadow(0 14px 18px rgba(22, 43, 41, .18));
    }
}

@media (prefers-reduced-motion: reduce) {
    body .okna-char .center.vo-okna-char-split > img.vo-okna-char-foreground {
        transition: opacity .15s linear;
    }

    body .okna-char .center.vo-okna-char-split:hover > img.vo-okna-char-foreground,
    body .okna-char .center.vo-okna-char-split:active > img.vo-okna-char-foreground {
        transform: none;
    }
}
