﻿.spinner-container {
    position: fixed;
    width: 305px;
    bottom: 19%;
    left: 50%;
    transform: translate(-50%, 0);
}

.spinner-inner-container {
    display: grid;
}

.spinner-logo {
    width: 300px;
    height: 300px;
}

.spinner {
    height: 30px;
    text-align: center;
    font-size: 18px;
}

    .spinner > div {
        background-color: #0e0e0e;
        height: 100%;
        width: 12px;
        display: inline-block;
        -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
        animation: sk-stretchdelay 1.2s infinite ease-in-out;
    }

    .spinner .rect2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .spinner .rect3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .spinner .rect4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .spinner .rect5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@-webkit-keyframes sk-stretchdelay {
    0%, 40%, 100% {
        -webkit-transform: scaleY(0.26);
    }

    20% {
        -webkit-transform: scaleY(1.25);
    }
}

@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.26);
        -webkit-transform: scaleY(0.26);
    }

    20% {
        transform: scaleY(1.25);
        -webkit-transform: scaleY(1.25);
    }
}



.fade-in {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 1.5s;
}

.fade-in-fast {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.75s;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bounce {
    animation-name: bounce;
    animation-timing-function: ease;
    animation-duration: 1.2s;
    animation-iteration-count: infinite;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-36px);
    }

    100% {
        transform: translateY(0);
    }
}
