
/*----------------------------------------*/
.upd-s-kv.with-extrabanner .floating-banner .figelm {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100% auto;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
}

/*----------------------------------------*/
.animate-around {
    animation-name: animate-around;
    animation-duration: 8s;
    animation-delay: 0s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: 50% 50%;
}
@keyframes animate-around {
    0% {
        rotate: z 0deg;
    }
    100% {
        rotate: z -360deg;
    }
}
