﻿@keyframes intro-box-animation-start {
    from {
        background-position: 100% 0;
    }

    to {
        background-position: 0 0;
    }
}
@keyframes intro-box-animation-end {
    from {
        background-position: 100% 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes apploader {
    from {
        opacity: 0;
        transform: scale(0.6);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}