.parallaxEffectContainer
{
    display: inline-block;
}
.parallaxEffectContent
{
    position: relative;
    width: 100%;
    height: auto;
    transform-origin: center center;
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.3s ease-out;
}
.parallaxEffectMedia
{
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    will-change: transform;
    transition: transform 0.3s ease-out;
    z-index: 1;
}
.parallaxEffectMediaContainer
{
    --reflection-x: 0%;
    --reflection-y: 0%;
    --reflection-opacity: 0;
    overflow: hidden;
    position: relative;
    will-change: transform, box-shadow;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    transform-style: preserve-3d;
}
.parallaxEffectMediaContainer::after
{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,255,255,var(--reflection-opacity,0)) 0%, rgba(255,255,255,0) 60%);
    transform: translate(var(--reflection-x, 0%), var(--reflection-y, 0%));
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
.parallaxEffectContainer:hover .parallaxEffectMediaContainer::after
{
    opacity: 1;
}
