﻿
.pace-content {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: #fff;
    opacity: 0.7;
    -moz-opacity: 0.7;
    filter: alpha(opacity=70);
}

.pact-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    margin-top: 20px;
    margin-left: -150px;
    width: 300px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #288ed1;
    /*border: 1px solid #3498db;*/
}

.pace-indicator {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -40px;
    height: 80px;
    width: 80px;
    animation: rotate 0.9s infinite linear;
    border: 8px solid #f8cb00;
    /*border: 8px solid #3498db;*/
    border-right-color: transparent;
    border-radius: 50%;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
