/* create plain css var with color #ff6600 */
:root {
  --ezy-loader-color: #ff6600;
}

.ezy-loading-overlay {
  position: fixed;
  background-color: #ffffff;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  transition: background-color 180ms, opacity 180ms, visibility 120ms, height 120ms;
  overflow: hidden;
  z-index: 1060;
}

.ezy-loading-overlay.open {
  opacity: 0.99;
  background-color: rgba(0, 0, 0, 0.3);
  visibility: visible;
  height: 100%;
  cursor: wait;
}

.ezy-cube-loader {
  width: 40px;
  height: 40px;
  margin: calc(50vh - 20px) auto;
}

.ezy-cube-loader.nci .ezy-cube {
  --ezy-loader-color: black;
}

.ezy-cube-loader .ezy-cube {
  width: 33%;
  height: 33%;
  background-color: var(--ezy-loader-color) !important;
  float: left;
  -webkit-animation: ezy-cubeScaleDelay 1s infinite ease-in-out;
  animation: ezy-cubeScaleDelay 1s infinite ease-in-out;
}

.ezy-cube-loader .ezy-cube1 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.ezy-cube-loader .ezy-cube2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.ezy-cube-loader .ezy-cube3 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.ezy-cube-loader .ezy-cube4 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.ezy-cube-loader .ezy-cube5 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.ezy-cube-loader .ezy-cube6 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.ezy-cube-loader .ezy-cube7 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.ezy-cube-loader .ezy-cube8 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.ezy-cube-loader .ezy-cube9 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

@-webkit-keyframes ezy-cubeScaleDelay {

  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}

@keyframes ezy-cubeScaleDelay {

  0%,
  70%,
  100% {
    -webkit-transform: scale3D(1, 1, 1);
    transform: scale3D(1, 1, 1);
  }

  35% {
    -webkit-transform: scale3D(0, 0, 1);
    transform: scale3D(0, 0, 1);
  }
}