.zk-loading-spinner {
  top: 50%;
  margin-top: -21px;
  width: 100%;
  text-align: center
}

.zk-loading-spinner .zk-loading-text {
  color: $color-primary;
  margin: 3px 0;
  font-size: 14px
}

.zk-loading-spinner .circular {
  width: 42px;
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite
}

.zk-loading-spinner .path {
  stroke-dasharray: 1, 100;
  stroke-dashoffset: 0;
  stroke-width: 2;
  stroke: $color-primary;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
  stroke-linecap: round
}

.zk-loading-spinner.is-full-screen {
  margin-top: -25px
}

.zk-loading-spinner.is-full-screen .circular {
  width: 50px
}

@-webkit-keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 100;
    stroke-dashoffset: 0
  }
  50% {
    stroke-dasharray: 45, 100;
    stroke-dashoffset: -35px
  }
  100% {
    stroke-dasharray: 45, 100;
    stroke-dashoffset: -124px
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 100;
    stroke-dashoffset: 0
  }
  50% {
    stroke-dasharray: 45, 100;
    stroke-dashoffset: -35px
  }
  100% {
    stroke-dasharray: 45, 100;
    stroke-dashoffset: -124px
  }
}
