
.loadership_SYPCT {
    display: flex;
    position: relative;
    width: 74px;
    height: 74px;
}

.loadership_SYPCT div {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7d7d7d;
    animation: loadership_SYPCT_scale 1.02s infinite, loadership_SYPCT_fade 1.02s infinite;
    animation-timing-function: linear;
}

.loadership_SYPCT div:nth-child(1) {
    animation-delay: 0.00s;
    top: 62px;
    left: 32px;
}

.loadership_SYPCT div:nth-child(2) {
    animation-delay: -0.10s;
    top: 56px;
    left: 50px;
}

.loadership_SYPCT div:nth-child(3) {
    animation-delay: -0.20s;
    top: 41px;
    left: 61px;
}

.loadership_SYPCT div:nth-child(4) {
    animation-delay: -0.31s;
    top: 23px;
    left: 61px;
}

.loadership_SYPCT div:nth-child(5) {
    animation-delay: -0.41s;
    top: 8px;
    left: 50px;
}

.loadership_SYPCT div:nth-child(6) {
    animation-delay: -0.51s;
    top: 2px;
    left: 32px;
}

.loadership_SYPCT div:nth-child(7) {
    animation-delay: -0.61s;
    top: 8px;
    left: 14px;
}

.loadership_SYPCT div:nth-child(8) {
    animation-delay: -0.71s;
    top: 23px;
    left: 3px;
}

.loadership_SYPCT div:nth-child(9) {
    animation-delay: -0.82s;
    top: 41px;
    left: 3px;
}

.loadership_SYPCT div:nth-child(10) {
    animation-delay: -0.92s;
    top: 56px;
    left: 14px;
}

@keyframes loadership_SYPCT_scale {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.4);
    }
}

@keyframes loadership_SYPCT_fade {
    0%, 20%, 80%, 100% {
        opacity: 0.67;
    }
    50% {
        opacity: 1;
    }
}