/* css for the Clarity Picturelink Block */

/* ------------------------------ */
@keyframes slowMove {
    from {left: 0;}
    50% {left: 2.5%;}
    to {left: 0;}
}

.mover {
    position: relative;
    width: 110%;
    animation-name: slowMove;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}

.mover-container {
    position: relative;
    overflow: hidden;
    left: -6%;
}
