.initial__loading {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px
}

.initial__loading svg {
  width: 50px;
  height: 50px;
}

.initial__loading svg path {
  stroke: #4b7cf3;
  fill: #4b7cf3;
  stroke-width: 1px;
  animation: logoAnimate 0.6s ease-in-out infinite;
}

.initial__loading svg path:nth-child(2) {
  animation-delay: .2s;
}

.initial__loading svg path:nth-child(3) {
  animation-delay: .4s;
}

@keyframes logoAnimate {
  0% {
    stroke: #4b7cf3;
    fill: #4b7cf3;
  }

  50% {
    stroke: #1ad697;
    fill: #1ad697;
  }

  100% {
    stroke: #4b7cf3;
    fill: #4b7cf3;
  }
}
