#gbx-initial-loader {
    background: #edf0f1;
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 99999;
}

.gbx-loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.gbx-loader-inner {
    display: flex;
    width: 70px;
    flex-direction: column;
}

.gbx-loader-inner .gbx-ellipsis,
.gbx-loader-inner .gbx-image {
    position: relative;
    width: 70px;
    height: 80px;
    margin: 0 auto;
}

.gbx-loader-inner .gbx-image > img {
    width: 70px;
    margin-top: 35px;
}

.gbx-ellipsis div {
    position: absolute;
    top: 33px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #09a3fc;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.gbx-ellipsis div:nth-child(1) {
    left: 8px;
    animation: gbx-ellipsis1 0.6s infinite;
}

.gbx-ellipsis div:nth-child(2) {
    left: 8px;
    animation: gbx-ellipsis2 0.6s infinite;
}

.gbx-ellipsis div:nth-child(3) {
    left: 32px;
    animation: gbx-ellipsis2 0.6s infinite;
}

.gbx-ellipsis div:nth-child(4) {
    left: 56px;
    animation: gbx-ellipsis3 0.6s infinite;
}

@keyframes gbx-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes gbx-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes gbx-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
