#background_loading {
    overflow: hidden;
    background: rgba(16, 23, 31, 1);
    /* opacity: 0.9; */
    cursor: wait;
    /* opacity: 0.9; */
    z-index: 9000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;

}

.loading-true {
    overflow: hidden;
}

.loading-text {
    position: absolute;
    color: transparant;
    top: 43%;
    left: 46.6%;
    /* top: 50%;
    left: 50%; */
    /* margin: -5px 0 0 -35px; */
    /* font-family: Arial, Helvetica, sans-serif;
font-weight: 700; */
}

.loading-text .img-logo {

    width: 100px;
}

.loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130px;
    height: 130px;
    margin: -60px 0 0 -60px;
    border: 4px solid transparent;
    border-top-color: #fadb32;
    border-bottom-color: #fadb32;
    border-radius: 50%;
    animation: loading 2s linear;
    animation-iteration-count: infinite;
}

.loader::after,
.loader::before {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.loader::after {
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid transparent;
    border-top-color: #eeeeef;
    border-bottom-color: #eeeeef;
    animation: loading 1.5s linear;
    animation-iteration-count: infinite;
}

.loader::before {
    left: 6px;
    top: 6px;
    right: 6px;
    bottom: 6px;
    border: 3px solid transparent;
    border-top-color: #5f5d5d;
    border-bottom-color: #5f5d5d;
    animation: loading 3s linear;
    animation-iteration-count: infinite;
}

@keyframes loading {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* loader kotak */

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-ellipsis span {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

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

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

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

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

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

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

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

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

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

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