/* MAIN LOADER */
.nc-pong, #nc-loader {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: #fff;
    opacity: 1;
    z-index: 10000;
}


.nc-block-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nc-loader-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 7px;
}

.nc-loader-text {
    text-align: center;
    padding: 5px;
}

.nc-pong .nc-loader-container {
    width: 200px;
    height: auto;
}



.nc-pong .nc-ping-pong-progress-bar {
    animation: sideToside 2s ease-in-out infinite;
    -webkit-animation: sideToside 2s ease-in-out .5s infinite;
    background-color: #009845;
    height: 2px;
    position: absolute;
    width: 50%;
    bottom: 0px;
}

@keyframes sideToside {

    0%, 100% {
        transform: translateX(-30%);
    }


    50% {
        transform: translateX(130%);
    }
}

/* CHART LOADER */

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #dee2e6;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div: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);
    }
  }
  