#loader-wrap {
  width: 150px;
  height: 150px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -75px;
  margin-left: -75px;
  display: flex;
  align-items: center;
  justify-content: center
}

#loader-line {
  display: block;
  width: 150px;
  height: 150px;
  position: relative;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(131, 94, 247, .8);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite
}

#loader-line:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(56, 150, 201, .6);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite
}

#loader-line:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: rgba(25, 198, 227, .8);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
  }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
  }

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

#loader-logo {
  display: inline-block;
  position: absolute
}

#loader-logo img {
  height: 61px;
  width: 62px
}
