.BX5__loading-content {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: block;
  background-color: #ecf0f9;
  z-index: 100;
  text-align: center;
}
.BX5__loading-content div p {
  opacity: 0.7;
}
.BX5__loading-content .BX5__loader {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 44.6%;
  left: 47.9%;
  z-index: 200;
}

@-webkit-keyframes wave {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
  }
}

@keyframes wave {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
  }
}
.candlechart-loader > * {
  -webkit-animation: wave 2s linear infinite;
          animation: wave 2s linear infinite;
  transform-origin: 27px 20px;
  opacity: 0.1;
}
.candlechart-loader .candle-2 {
  -webkit-animation-delay: 0.33s;
          animation-delay: 0.33s;
}
.candlechart-loader .candle-3 {
  -webkit-animation-delay: 0.66s;
          animation-delay: 0.66s;
}
.candlechart-loader .candle-4 {
  -webkit-animation-delay: 0.99s;
          animation-delay: 0.99s;
}