﻿.lds-nctc {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
}

    .lds-nctc div {
        display: inline-block;
        position: absolute;
        left: 2px;
        width: 8px;
        background: var(--loader-color);
        animation: lds-nctc 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    }

        .lds-nctc div:nth-child(1) {
            left: 4px;
            animation-delay: -0.24s;
        }

        .lds-nctc div:nth-child(2) {
            left: 16px;
            animation-delay: -0.12s;
        }

        .lds-nctc div:nth-child(3) {
            left: 28px;
            animation-delay: 0;
        }

@keyframes lds-nctc {
    0% {
        top: 4px;
        height: 32px;
    }

    50%, 100% {
        top: 12px;
        height: 16px;
    }
}