.hidden {
    display: none;
}

.harbr-loading {
    display: inline-block;
    position: relative;
    width: 70px;
    height: 43px;
    margin-top: -24px;
}

.harbr-loading div {
    position: absolute;
    top: 33px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #018458;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.harbr-loading div:nth-child(1) {
    left: 8px;
    animation: harbr-loading1 0.6s infinite;
}

.harbr-loading div:nth-child(2) {
    left: 8px;
    animation: harbr-loading2 0.6s infinite;
}

.harbr-loading div:nth-child(3) {
    left: 32px;
    animation: harbr-loading2 0.6s infinite;
}

.harbr-loading div:nth-child(4) {
    left: 56px;
    animation: harbr-loading3 0.6s infinite;
}


@keyframes harbr-loading1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes harbr-loading3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}

@keyframes harbr-loading2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(24px, 0);
    }
}