.newloading
{
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    height: 4px;
    margin: .5rem 0 1rem 0;

    border-radius: 2px;
    background-color: #eec3ff;
} 

.newloading .determinate
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    -webkit-transition: width .3s linear;
            transition: width .3s linear;

    background-color: #600A82;
}

.newloading .indeterminate
{
    background-color: #600A82;
}

.newloading .indeterminate:before
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    content: '';
    -webkit-animation: indeterminate 2.1s cubic-bezier(.65, .815, .735, .395) infinite;
            animation: indeterminate 2.1s cubic-bezier(.65, .815, .735, .395) infinite;

    background-color: inherit;

    will-change: left, right;
}

.newloading .indeterminate:after
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    content: '';
    -webkit-animation: indeterminate-short 2.1s cubic-bezier(.165, .84, .44, 1) infinite;
            animation: indeterminate-short 2.1s cubic-bezier(.165, .84, .44, 1) infinite;
    -webkit-animation-delay: 1.15s;
            animation-delay: 1.15s;

    background-color: inherit;

    will-change: left, right;
}

@-webkit-keyframes indeterminate
{
    0%
    {
        right: 100%;
        left: -35%;
    }
    60%
    {
        right: -90%;
        left: 100%;
    }
    100%
    {
        right: -90%;
        left: 100%;
    }
}

@keyframes indeterminate
{
    0%
    {
        right: 100%;
        left: -35%;
    }
    60%
    {
        right: -90%;
        left: 100%;
    }
    100%
    {
        right: -90%;
        left: 100%;
    }
}

@-webkit-keyframes indeterminate-short
{
    0%
    {
        right: 100%;
        left: -200%;
    }
    60%
    {
        right: -8%;
        left: 107%;
    }
    100%
    {
        right: -8%;
        left: 107%;
    }
}

@keyframes indeterminate-short
{
    0%
    {
        right: 100%;
        left: -200%;
    }
    60%
    {
        right: -8%;
        left: 107%;
    }
    100%
    {
        right: -8%;
        left: 107%;
    }
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #600A82;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #600A82 transparent transparent transparent;
  }
  .lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
  }
  .lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
  }
  .lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
  }
  @keyframes lds-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }