#progress{
    position:relative;
    top:-2em;
    padding-left: 8em;
    height:2em;
    width: 20em;
}

.loader .dot {
    -webkit-animation-name: movement;
    animation-name: movement;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;

    position: absolute;

    -webkit-transform: translate3d(0, -25px, 0) scale(1);
    transform: translate3d(0, -25px, 0) scale(1);
    width:  14px;
    height: 14px;
    top: -14px;
}

.loader .dot:nth-of-type(even)::before {
    background-color: rgba(0, 0, 0, .5);
    box-shadow: inset 0 0 4px rgba(255,255,255,.5);
}
.loader .dot:nth-of-type(odd)::before {
    background-color: rgba(255, 255, 255, .5);
    box-shadow: inset 0 0 4px rgba(0,0,0,.5);
}


.hand {
    width: 25%;
    min-width: 15em;
    text-align: center;
    margin: 20% auto;
    padding: 0;
    border-bottom: .25em solid #70e94e;
}
.hand_thumb {
    display: inline-block;
    width: 1em;
    height: 1.5em;
    background-color: #bb357a;
    margin: 1em .75em 0 .25em;
    border-left: .5em solid #dc84b1;
    border-radius: 25% 15% 15% 40%;
}
.finger {
    display: inline-block;
    width: 1.5em;
    height: 2.5em;
    background-color: #bb357a;
    margin: 0 .25em;
    border-bottom: .5em solid #dc84b1;
    border-left: .25em solid #ab3070;
    border-radius: 15% 15% 25% 25%;
    animation-name: tap;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}

.finger:nth-child(2) {
    animation-delay: .8s;
}
.finger:nth-child(3) {
    animation-delay: .7s;
}
.finger:nth-child(4) {
    animation-delay: .6s;
}
.finger:nth-child(5) {
    animation-delay: .5s;
}

@keyframes tap {
    0% {
        transform: translateY(0);
    }

    60% {
        transform: translateY(-1em);
    }

    70% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
    }
}
