.lds-ring-mini {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 50px;
}

.lds-ring-mini.extra-mini{
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
}

.lds-ring-mini div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    margin: 10px;
    border: 3px solid white;
    border-radius: 50%;
    animation: lds-ring-mini 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: white transparent transparent transparent;
}

.lds-ring-mini.extra-mini div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    margin: 5px;
    border: 3px solid white;
    border-radius: 50%;
    animation: lds-ring-mini 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: white transparent transparent transparent;
}

.lds-ring-mini div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring-mini div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring-mini div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring-mini {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

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

.dot-flashing {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #9880ff;
    color: #9880ff;
    animation: dotFlashing 1s infinite linear alternate;
    animation-delay: .5s;
}

.dot-flashing::before, .dot-flashing::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
}

.dot-flashing::before {
    left: -9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #9880ff;
    color: #9880ff;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::after {
    left: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #9880ff;
    color: #9880ff;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dotFlashing {
    0% {
        background-color: #9880ff;
    }
    50%,
    100% {
        background-color: #ebe6ff;
    }
}



.circle-throbber{
    width: 32px;
    height: 32px;
    background: url(/img/throbber.gif) center center no-repeat;
    margin-right: 5px;
    float: left;
}



.loading-throbber {
    margin: 0px auto 40px auto;
    width: 62px;
    height: 62px;
}

@-webkit-keyframes loading-throbber-bar {
    0% {
        -webkit-transform: scale(1.0, 0.7);
        background-color: #67c1f5;
    }

    30% {
        -webkit-transform: scale(1.0, 1.0);
        background-color: #67c1f5;
    }

    55% {
        -webkit-transform: scale(1.0, 0.7);
        background-color: #67c1f5;
    }

    100% {
        -webkit-transform: scale(1.0, 0.7);
        background-color: #67c1f5;
    }
}


/* loading-throbber */
.loading-throbber-wrapper {
    position: relative;
    margin: auto auto;
    vertical-align: middle;
}

.loading-throbber-wrapper .loading-throbber .bar {
    float: left;
    margin-right: 6px;
    width: 12px;
    height: 68px;
    background-color: #67c1f5;
    animation: loading-throbber-bar 1s ease-in-out infinite;
    -webkit-animation: loading-throbber-bar 1s ease-in-out infinite;
}

.loading-throbber-wrapper .loading-throbber .bar.bar-1 {
}

.loading-throbber-wrapper .loading-throbber .bar.bar-2 {
    animation-delay: 0.16s;
    -webkit-animation-delay: 0.16s;
}

.loading-throbber-wrapper .loading-throbber .bar.bar-3 {
    animation-delay: 0.32s;
    -webkit-animation-delay: 0.32s;
}

.loading-throbber-wrapper .loading-text {
    color: #60acde;
    font-size: 22px;
    text-align: center;
}