﻿/* http://cssload.net/ */

.progress-140px-parent {
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    -webkit-border-radius: 6px;
    background-color: #bca36c;
    border-radius: 6px;
    height: 12px;
    margin: auto auto;
    overflow: hidden;
    width: 140px;
}

.progress-140px-parent > div {
    -moz-animation-duration: 1s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-name: bounce_loadingProgressG;
    -moz-animation-timing-function: linear;
    -ms-animation-duration: 1s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-name: bounce_loadingProgressG;
    -ms-animation-timing-function: linear;
    -o-animation-duration: 1s;
    -o-animation-iteration-count: infinite;
    -o-animation-name: bounce_loadingProgressG;
    -o-animation-timing-function: linear;
    -webkit-animation-duration: 1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-name: bounce_loadingProgressG;
    -webkit-animation-timing-function: linear;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-name: bounce_loadingProgressG;
    animation-timing-function: linear;
    background-color: #FFFFFF;
    height: 12px;
    margin-left: -140px;
    margin-top: 0;
    width: 140px;
}

@-moz-keyframes bounce_loadingProgressG {
    0% { margin-left: -140px; }

    100% { margin-left: 140px; }
}

@-webkit-keyframes bounce_loadingProgressG {
    0% { margin-left: -140px; }

    100% { margin-left: 140px; }
}

@-ms-keyframes bounce_loadingProgressG {
    0% { margin-left: -140px; }

    100% { margin-left: 140px; }
}

@-o-keyframes bounce_loadingProgressG {
    0% { margin-left: -140px; }

    100% { margin-left: 140px; }
}

@keyframes bounce_loadingProgressG {
    0% { margin-left: -140px; }

    100% { margin-left: 140px; }
}

/*  
    Adapted from http://projects.lukehaas.me/css-loaders/
*/
.loader-circular {
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
    border-bottom: 1.1em solid rgba(0, 0, 0, 0.1);
    border-left: 1.1em solid #bca36c;
    border-right: 1.1em solid rgba(0, 0, 0, 0.1);
    border-top: 1.1em solid rgba(0, 0, 0, 0.1);
    font-size: 10px;
    margin: 6em auto;
    position: relative;
    text-indent: -9999em;
}

.loader-circular,
.loader-circular:after {
    border-radius: 50%;
    height: 10em;
    width: 10em;
}

.loader-circular.loader-circular-2em,
.loader-circular.loader-circular-2em:after {
    border-width: 0.25em;
    height: 2em;
    width: 2em;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}