﻿/*

.spinner-square {
    display: flex;
    flex-direction: row;
    width: 90px;
    height: 120px;
}

    .spinner-square > .square {
        width: 17px;
        height: 80px;
        margin: auto auto;
        border-radius: 4px;
    }

.square-1 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite;
}

.square-2 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite;
}

.square-3 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite;
}


@keyframes square-anim {
    0% {
        height: 80px;
        background-color: rgb(111, 163, 240);
    }

    20% {
        height: 80px;
    }

    40% {
        height: 120px;
        background-color: rgb(111, 200, 240);
    }

    80% {
        height: 80px;
    }

    100% {
        height: 80px;
        background-color: rgb(111, 163, 240);
    }
}
*/

/*#spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.7);
    display: none;*/ /* hidden by default */
    /*justify-content: center;
    align-items: center;
    z-index: 9999;
    display: flex;
}

.spinner-square {
    display: flex;
    flex-direction: row;
    width: 90px;
    height: 120px;
}

    .spinner-square > .square {
        width: 17px;
        height: 80px;
        margin: 0 5px;
        border-radius: 4px;
        background-color: rgb(111, 163, 240);
        animation: square-anim 1.2s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    }

.square-1 {
    animation-delay: 0s;
}

.square-2 {
    animation-delay: 0.2s;
}

.square-3 {
    animation-delay: 0.4s;
}

@keyframes square-anim {
    0%, 100% {
        height: 80px;
        background-color: rgb(111, 163, 240);
    }

    40% {
        height: 120px;
        background-color: rgb(111, 200, 240);
    }
}*/

/*
body {
    margin: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}*/

.spinner-square {
    display: flex;
    flex-direction: row;
    width: 90px;
    height: 120px;
}

    .spinner-square > .square {
        width: 17px;
        height: 80px;
        margin: auto 5px;
        border-radius: 4px;
    }

.square-1 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 0s infinite;
}

.square-2 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 200ms infinite;
}

.square-3 {
    animation: square-anim 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 400ms infinite;
}

@keyframes square-anim {
    0% {
        height: 80px;
        background-color: rgb(111, 163, 240);
    }

    20% {
        height: 80px;
    }

    40% {
        height: 120px;
        background-color: rgb(111, 200, 240);
    }

    80% {
        height: 80px;
    }

    100% {
        height: 80px;
        background-color: rgb(111, 163, 240);
    }
}