.gts-login-flex-r {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.gts-login-flex-c {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.gts-login-flex-c-start {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.gts-login-loading-holder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin: 1em
}

.gts-login-first-dot {
    animation: gts-login-fade-in-ani 1s infinite linear;
    animation-direction: alternate;
    opacity: 0;
}

.gts-login-second-dot {
    animation: gts-login-fade-in-ani 1s infinite linear;
    animation-direction: alternate;
    animation-delay: .5s;
    opacity: 0;
}

.gts-login-third-dot {
    animation: gts-login-fade-in-ani 1s infinite linear;
    animation-direction: alternate;
    animation-delay: 1s;
    opacity: 0;
}

.gts-login-fade-out {
    animation: gts-login-fade-out-ani 1s 1 linear;
    opacity: 0;
}

@keyframes gts-login-fade-in-ani {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes gts-login-fade-out-ani {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}
