﻿#pangea-common-working {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: calc(100% - 4.5em);
    max-width: 38.5em;
    height: auto;
    padding-bottom: 13em;
}

#pangea-common-working-logo {
    width: 100%;
}

.pangea-common-spinner-dots {
    margin: 0 auto 0;
    margin-top: 2em;
    width: 10em;
    text-align: center;
}

.pangea-common-spinner-dots > div {
    width: 1em;
    height: 1em;
    margin: 0 1em;
    background-color: white;
    opacity: 0.75;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.pangea-common-spinner-dots .pangea-common-spinner-dots-bounce-1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.pangea-common-spinner-dots .pangea-common-spinner-dots-bounce-2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% { 
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% { 
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
