.price-loader {
    position: relative;
    width: 100px;
    height: 33px;
    display: block;
}
.price-loader span {
    display: block;
    position: absolute;
    top: 9px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.price-loader span:nth-child(1) {
    left: 8px;
    animation: price-loader1 0.6s infinite;
}
.price-loader span:nth-child(2) {
    left: 8px;
    animation: price-loader2 0.6s infinite;
}
.price-loader span:nth-child(3) {
    left: 32px;
    animation: price-loader2 0.6s infinite;
}
.price-loader span:nth-child(4) {
    left: 56px;
    animation: price-loader3 0.6s infinite;
}
@keyframes price-loader1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes price-loader3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes price-loader2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}
