/* Utility Classes */

.--delay-1 {
    animation-delay: 0s;
}
.--delay-2 {
    animation-delay: 0.3s;
}
.--delay-3 {
    animation-delay: 0.7s;
}
.--delay-4 {
    animation-delay: 1.1s;
}
.--delay-5 {
    animation-delay: 1.7s;
}
.--delay-6 {
    animation-delay: 2.2s;
}
.--delay-7 {
    animation-delay: 3.7s;
}
.--delay-8 {
    animation-delay: 4.5s;
}

.--duration-1 {
    animation-duration: 1s;
}
.--duration-1_3 {
    animation-duration: 1.3s;
}
.--duration-1_5 {
    animation-duration: 1.5s;
}
.--duration-2 {
    animation-duration: 2s;
}
.--duration-3 {
    animation-duration: 3s;
}


/* Animations */

@keyframes opacity-1 {
    from {opacity: 0;}
    to {opacity: 1;}
}
.--opacity-1 {
    animation-name: opacity-1;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-play-state: inherit;
    opacity: 0;
}

@keyframes opacity-2 {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.--opacity-2 {
    animation-name: opacity-2;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-play-state: inherit;
    opacity: 0;
}

@keyframes jump-1 {
    from {translate: 0 0svh;}
    to {translate: 0 3svh;}
}
.--jump-1 {
    animation-name: jump-1;
    animation-fill-mode: both;
    animation-direction: alternate-reverse;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes flyIn-1 {
    from {translate: 100vw;}
}
.--flyIn-1 {
    animation-name: flyIn-1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
    animation-iteration-count: 1;
}

@keyframes flyIn-2 {
    from {translate: -100vw;}
}
.--flyIn-2 {
    animation-name: flyIn-2;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
    animation-iteration-count: 1;
}

@keyframes scale-1 {
    0% {transform: scale(0.3);}
    /* 30% {transform: scale(0.4);} */
    100% {transform: scale(1);}
}
.--scale-1 {
    animation-name: scale-1;
    animation-timing-function: ease-in-out;
    animation-fill-mode: backwards;
    animation-iteration-count: 1;

    transform-origin: 56vw;
}

@keyframes scale-2 {
    0%,60%,80%,100% {scale: 1;}
    70% {scale: 1.1;}
    85% {scale: 0.92;}
}
.--scale-2 {
    animation-name: scale-2;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}


/* MARK:GSAP
 */

 .ts_renovieren {
    opacity: 1;
 }

