.circle-loading {
    align-items: center;
    display: flex;
    height: 10px;
    justify-content: space-between;
    width: 40px;
}

.hide-loading {
    -webkit-animation-duration: .35s;
    animation-duration: .35s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-name: fade-out;
    animation-name: fade-out;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.loader-circle {
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    -webkit-animation-duration: .25s;
    animation-duration: .25s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: loader-circle-bounce;
    animation-name: loader-circle-bounce;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    background-color: #30a2d0;
    border-radius: 50%;
    height: 10px;
    position: relative;
    width: 10px;
}

.loader-circle:first-of-type {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.loader-circle:nth-of-type(2) {
    -webkit-animation-delay: -75ms;
    animation-delay: -75ms;
}

.loader-circle:nth-of-type(3) {
    -webkit-animation-delay: -.15s;
    animation-delay: -.15s;
}

@-webkit-keyframes loader-circle-bounce {
    0% {
        bottom: 0;
    }
    90%,
    to {
        bottom: 15px;
    }
}

@keyframes loader-circle-bounce {
    0% {
        bottom: 0;
    }
    90%,
    to {
        bottom: 15px;
    }
}

@-webkit-keyframes fade-out {
    to {
        opacity: 0;
    }
}

@keyframes fade-out {
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fade-in {
    to {
        opacity: 1;
    }
}

@keyframes fade-in {
    to {
        opacity: 1;
    }
}