@keyframes day-night {
    0%, 18% { opacity: 0; }
    50%, 68% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes woman-reveal {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes woman-reveal-fly {
    0% { opacity: 0; left: 93.882vw; }
    100% { opacity: 1; left: 60.882vw; }
}
@media only screen and (max-width: 480px) {
    @keyframes woman-reveal-fly {
        0% { opacity: 0; left: 93.882vw; }
        100% { opacity: 1; left: 70.882vw; }
    }
}
@keyframes tictac {
    0% { transform: translate3d(0px,0,0); }
    50% { transform: translate3d(15px,0,0); }
    100% { transform: translate3d(0px,0,0); }
}
@keyframes v-tictac {
    0% { transform: translate3d(0,0px,0); }
    50% { transform: translate3d(0,15px,0); }
    100% { transform: translate3d(0,0px,0); }
}
@keyframes blinking {
    0% { opacity: 0.3; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0.3; }
}
@keyframes gradusnik {
    0% { top: 20%; }
    50% { top: 80%; }
    100% { top: 20%; }
}
@keyframes tictac-gori {
    0% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(30px,-20px,0); }
    100% { transform: translate3d(0,0,0); }
}
@keyframes tictac-gori-statistics {
    0% { transform: translate3d(0,0,0); }
    50% { transform: translate3d(-20px,-20px,0); }
    100% { transform: translate3d(0,0,0); }
}
