﻿* {
    padding: 0;
    margin: 0;
    border: 0;
}

@font-face {
    font-family: 'Brunel Negative';
    src: url("../fonts/brunelne-webfont.eot");
    src: url("../fonts/brunelne-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/brunelne-webfont.woff2") format("woff2"), url("../fonts/brunelne-webfont.woff") format("woff"), url("../fonts/brunelne-webfont.ttf") format("truetype"), url("../fonts/brunelne-webfont.svg#brunelnegativeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #000;
    color: #FEFEFE;
    font-family: 'Brunel Negative';
    font-size: 1.5vw;
}

#debug {
    font-size: 14px;
}

#info_detail {
    z-index: 2;
    top: 25px;
    left: 25px;
    color: white;
    position: absolute;
    font-size: 18px;
}

.boot-screen {
}

footer {
    position: fixed;
    top: 90%;
    left: 0;
    width: 100%;
    text-align: center;
}

.boot-logo {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -150px;
    margin-left: -150px;
}

.firmwareDownload {
    position: fixed;
    top: 75%;
    left: 50%;
    margin-left: -200px;
    width: 400px;
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #222222;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #FEFEFE;
    text-align: center;
    background-color: #77b300;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    -webkit-transition: width 0.6s ease;
    -o-transition: width 0.6s ease;
    transition: width 0.6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progressPercent {
    padding: 5px;
}

.progressTitle {
    padding: 5px;
    text-align: center;
}