/* ------------------------------------------------------------------------------
 *
 *  # Pace. Default theme
 *
 *  Minimal preloader theme, used as a default theme
 *
 * ---------------------------------------------------------------------------- */
.pace {
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.pace .pace-progress {
    background: #4FC3F7;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 0;
    height: 0.125rem;
}

.pace-inactive {
    display: none;
}

/* ------------------------------------------------------------------------------
 *
 *  # Progress (loading) bars
 *
 *  Static demo of Pace themes. For demonstration purposes only. DO NOT use it in production
 *
 * ---------------------------------------------------------------------------- */
.pace-demo {
    display: inline-block;
    background-color: #37474F;
    vertical-align: middle;
    position: relative;
    line-height: 1;
    border-radius: 0.1875rem;
    width: 88px;
    height: 88px;
}

.pace-demo .pace_progress {
    display: none;
    white-space: nowrap;
}

.theme_xbox, .theme_xbox_sm, .theme_xbox_lg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -24px;
}

.theme_xbox .pace_activity, .theme_xbox_sm .pace_activity, .theme_xbox_lg .pace_activity {
    -webkit-animation: rotation 1.5s ease-in-out infinite;
    animation: rotation 1.5s ease-in-out infinite;
    margin: auto;
    width: 48px;
    height: 48px;
}

.theme_xbox .pace_activity, .theme_xbox_sm .pace_activity, .theme_xbox_lg .pace_activity, .theme_xbox .pace_activity:before, .theme_xbox_sm .pace_activity:before, .theme_xbox_lg .pace_activity:before, .theme_xbox .pace_activity:after, .theme_xbox_sm .pace_activity:after, .theme_xbox_lg .pace_activity:after {
    border: 2px solid transparent;
    border-top-color: #fff;
    border-radius: 50%;
}

.theme_xbox .pace_activity:before, .theme_xbox_sm .pace_activity:before, .theme_xbox_lg .pace_activity:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    -webkit-animation: rotation ease-in-out 2s infinite;
    animation: rotation ease-in-out 2s infinite;
}

.theme_xbox .pace_activity:after, .theme_xbox_sm .pace_activity:after, .theme_xbox_lg .pace_activity:after {
    content: "";
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    -webkit-animation: rotation ease-in-out 1s infinite;
    animation: rotation ease-in-out 1s infinite;
}

.theme_xbox_with_text .pace_activity {
    margin-top: -10px;
}

.theme_xbox_with_text span {
    display: block;
    margin-top: 10px;
    color: #fff;
    white-space: nowrap;
}

.theme_xbox_sm .pace_activity, .theme_xbox_sm .pace_activity:before, .theme_xbox_sm .pace_activity:after {
    border-width: 1px;
}

.theme_xbox_lg .pace_activity, .theme_xbox_lg .pace_activity:before, .theme_xbox_lg .pace_activity:after {
    border-width: 3px;
}

.theme_perspective {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -15px;
}

.theme_perspective .pace_activity {
    display: inline-block;
    background-color: #fff;
    -webkit-animation: perspective ease-in-out 1.2s infinite;
    animation: perspective ease-in-out 1.2s infinite;
    width: 30px;
    height: 30px;
}

@keyframes perspective {
    0% {
        -webkit-transform: perspective(120px);
        transform: perspective(120px);
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
        transform: perspective(120px) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
        transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}

@-webkit-keyframes perspective {
    0% {
        -webkit-transform: perspective(120px);
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotation_reverse {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes rotation_reverse {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

.theme_perspective_with_text .pace_activity {
    margin-top: -12px;
}

.theme_perspective_with_text span {
    display: block;
    margin-top: 15px;
    color: #fff;
    white-space: nowrap;
}

.theme_squares {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -15px;
}

.theme_squares .pace_activity {
    width: 30px;
    height: 30px;
    margin: auto;
}

.theme_squares .pace_activity:before, .theme_squares .pace_activity:after {
    position: absolute;
    content: "";
    border: 2px solid #fff;
}

.theme_squares .pace_activity:before {
    width: 30px;
    height: 30px;
    margin-left: -15px;
    -webkit-animation: rotation_reverse linear 2s infinite;
    animation: rotation_reverse linear 2s infinite;
}

.theme_squares .pace_activity:after {
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: 5px;
    -webkit-animation: rotation linear 2s infinite;
    animation: rotation linear 2s infinite;
}

.theme_squares_with_text .pace_activity {
    margin-top: -12px;
}

.theme_squares_with_text span {
    display: block;
    margin-top: 15px;
    color: #fff;
    white-space: nowrap;
}

.theme_tail {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -15px;
}

.theme_tail .pace_activity {
    margin: auto;
    width: 30px;
    height: 30px;
    border: 3px solid transparent;
    border-left-color: #fff;
    border-radius: 50%;
    -webkit-animation: rotation linear 1.1s infinite;
    animation: rotation linear 1.1s infinite;
}

.theme_tail_circle .pace_activity {
    border-color: rgba(0, 0, 0, 0.15);
    border-left-color: #fff;
}

.theme_tail_with_text .pace_activity {
    margin-top: -12px;
}

.theme_tail_with_text span {
    display: block;
    margin-top: 15px;
    color: #fff;
    white-space: nowrap;
}

.theme_corners {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -7px;
}

.theme_corners .pace_activity {
    display: inline-block;
    background-color: #fff;
    vertical-align: middle;
    border-radius: 50%;
    -webkit-animation: corners ease 1.5s infinite;
    animation: corners ease 1.5s infinite;
    width: 14px;
    height: 14px;
}

@keyframes corners {
    0% {
        -webkit-transform: scale(1) rotate(0deg);
        transform: scale(1) rotate(0deg);
    }
    50% {
        border-radius: 0;
        -webkit-transform: scale(2) rotate(-180deg);
        transform: scale(2) rotate(-180deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(-360deg);
        transform: scale(1) rotate(-360deg);
    }
}

@-webkit-keyframes corners {
    0% {
        -webkit-transform: scale(1) rotate(0deg);
    }
    50% {
        border-radius: 0;
        -webkit-transform: scale(2) rotate(-180deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(-360deg);
    }
}

.theme_corners_with_text .pace_activity {
    margin-top: -28px;
}

.theme_corners_with_text span {
    display: block;
    margin-top: 15px;
    color: #fff;
    white-space: nowrap;
}

.theme_radar {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin-top: -15px;
}

.theme_radar .pace_activity {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #fff;
    border-bottom-color: #fff;
    -webkit-animation: rotation linear 1.1s infinite;
    animation: rotation linear 1.1s infinite;
}

.theme_radar_with_text .pace_activity {
    margin-top: -12px;
}

.theme_radar_with_text span {
    display: block;
    margin-top: 15px;
    color: #fff;
    white-space: nowrap;
}

.theme_bar, .theme_bar_lg, .theme_bar_sm {
    position: relative;
    width: 200px;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 100px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.theme_bar .pace_progress, .theme_bar_lg .pace_progress, .theme_bar_sm .pace_progress {
    max-width: 198px;
    display: block;
    position: absolute;
    left: 1px;
    top: 1px;
    height: 3px;
    background: #3FCF96;
    color: #fff;
    line-height: 36px;
    border-radius: 100px;
}

.theme_bar_lg {
    height: 6px;
}

.theme_bar_lg .pace_progress {
    height: 4px;
}

.theme_bar_sm {
    height: 4px;
}

.theme_bar_sm .pace_progress {
    height: 2px;
}

.abc {height: 4px;}