html, body {
    height: 100%;
    margin: 0;
}

.mav-container {
    background: #edf0f4;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mav-container-centered {
    margin-top: -100px;
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mav-spinner {
    margin: 50px auto;
    width: 40px;
    height: 40px;
    position: relative;
    text-align: center;
    -webkit-animation: mav-sk-rotate 2.0s infinite linear;
    animation: mav-sk-rotate 2.0s infinite linear;
}

.mav-dot1, .mav-dot2 {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    border-radius: 100%;
    background-color: #d8d8d8;
    -webkit-animation: mav-sk-bounce 2.0s infinite ease-in-out;
    animation: mav-sk-bounce 2.0s infinite ease-in-out;
}

.mav-dot2 {
    top: auto;
    bottom: 0;
    opacity: 0.6;
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
}

.mav-text {
    color: #717480;
    font-weight: 300;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
}

.bold {
    font-weight: bold;
}

h1.mav-text {
    font-size: 36px;
}

h4.mav-text {
    font-size: 15px;
}

.mav-text--loading {
    color: #92979f;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.mav-fullscreen {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4000;
}

.mav-spacer--bottom {
    margin-bottom: 36px;
}

.mav-button {
    padding: 0 20px;
    background: #ffa710;
    color: white;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 400;
    transition: background-color .1s ease-in;
    outline: none;
    text-transform: uppercase;
    min-height: 40px;
}

.mav-button:hover {
    background-color: #ffb434;
}

.hidden {
    display: none;
}

@keyframes mav-sk-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes mav-sk-bounce {
    0%, 100% {
        transform: scale(0.0);
        -webkit-transform: scale(0.0);
    }
    50% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}
