.center-box-loader {
  position: absolute;
  top: 50%;
  margin-top: 100px;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  width: 75px;

}

.center-box-logo {
  position: absolute;
  top: 50%;
  margin-top: -100px;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}

.circular {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  transform-origin: center center;
}

.path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}

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

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

@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }

  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}

@-webkit-keyframes color {

  100%,
  0% {
    stroke: #E42A62;
  }

  40% {
    stroke: #FE9A3D;
  }

  66% {
    stroke: #E42A62;
  }

  80%,
  90% {
    stroke: #FE9A3D;
  }
}

@keyframes color {

  100%,
  0% {
    stroke: #E42A62;
  }

  40% {
    stroke: #FE9A3D;
  }

  66% {
    stroke: #E42A62;
  }

  80%,
  90% {
    stroke: #FE9A3D;
  }
}

body {
  background-color: #242030;
}