
.loading-wrap {
  width:100%;
  height:100vh;
  position: relative;
  margin-bottom:16px;
}
.loading-content {
  width: fit-content;
  height: fit-content;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.loader-inner {
    bottom: 0;
    height: 60px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}

.loader-line-wrap {
    -webkit-animation:
        spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite
    ;
            animation:
        spin 2000ms cubic-bezier(.175, .885, .32, 1.275) infinite
    ;
    box-sizing: border-box;
    height: 50px;
    left: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
    width: 100px;
}
.loader-line {
    border: 4px solid transparent;
    border-radius: 100%;
    box-sizing: border-box;
    height: 100px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}
.loader-line-wrap:nth-child(1) { -webkit-animation-delay: -50ms; animation-delay: -50ms; }
.loader-line-wrap:nth-child(2) { -webkit-animation-delay: -100ms; animation-delay: -100ms; }
.loader-line-wrap:nth-child(3) { -webkit-animation-delay: -150ms; animation-delay: -150ms; }
.loader-line-wrap:nth-child(4) { -webkit-animation-delay: -200ms; animation-delay: -200ms; }
.loader-line-wrap:nth-child(5) { -webkit-animation-delay: -250ms; animation-delay: -250ms; }

.loader-line-wrap:nth-child(1) .loader-line {
    border-color: hsl(0, 80%, 60%);
    height: 90px;
    width: 90px;
    top: 7px;
}
.loader-line-wrap:nth-child(2) .loader-line {
    border-color: hsl(60, 80%, 60%);
    height: 76px;
    width: 76px;
    top: 14px;
}
.loader-line-wrap:nth-child(3) .loader-line {
    border-color: hsl(120, 80%, 60%);
    height: 62px;
    width: 62px;
    top: 21px;
}
.loader-line-wrap:nth-child(4) .loader-line {
    border-color: hsl(180, 80%, 60%);
    height: 48px;
    width: 48px;
    top: 28px;
}
.loader-line-wrap:nth-child(5) .loader-line {
    border-color: hsl(240, 80%, 60%);
    height: 34px;
    width: 34px;
    top: 35px;
}
.show-loading {
  display: block!important;
}
@-webkit-keyframes spin {
    0%, 15% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
    }
}

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

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

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

.loader-msg-wrap {
  max-width: 360px;
}
.loader-progress-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.loader-msg-text {
  margin: 20px 0;
  color: #fff;
}
.loader-progress {
  width: 80%;
  height: 6px;
  border-radius: 3px;
  background: #fff;
  overflow: hidden;
}
.loader-progress-percentage {
  color: #fff;
}
.loader-progress-inner {
  width: 0;
  height: 6px;
  border-radius: 3px;
  background: #2C85FF;
}

.loader-box {
  bottom: 0;
  height: 30px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  display:flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.custom-loading {
  width: 24px;
	height: 24px;
  border-radius: 100%;
  overflow:hidden;
  -webkit-animation: loading 600ms linear infinite;
  animation: loading 600ms linear infinite;
  position:relative;
}

.custom-loading:before {
  content: '';
  position: absolute;
  left:2px;
  top:2px;
  width:20px;
  height:20px;
  border-radius: 100%;
  background:#fff;
}

.custom-loading-top {
  height: 12px;
  background-image: -webkit-linear-gradient(90deg,#fff,#96c2ff);
  background-image: -moz-linear-gradient(90deg,#fff,#96c2ff);
  background-image: linear-gradient(90deg,#fff,#96c2ff);
}
.custom-loading-bottom {
  height: 12px;
  background-image: -webkit-linear-gradient(270deg,#96c2ff,#96c2ff);
  background-image: -moz-linear-gradient(270deg,#96c2ff,#96c2ff);
  background-image: linear-gradient(270deg,#96c2ff,#2f87ff);
}

.loader-text{
  margin-left:8px;
  margin-bottom:0;
}
