.booting {
    background: #f39c12;
    color: white;
    position: fixed;
    z-index: 1000;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    font-family: 'Roboto', sans-serif;
}
.booting .booting-container {
    margin-top: 50vh;
    text-align: center;
    transform: translateY(-100%);
}
.booting .booting-container .logo {
    font-size: 20pt;
    line-height: 30pt
}
.booting .booting-container .description {
    font-size: 11pt;
    margin-bottom: 10px;
}
.booting .booting-container .loading {
    height: 5px;
    width: 200px;
    float: none;
    margin: auto;
    background-color: rgba(0,0,0,.3);
    overflow: hidden;
}
.booting .booting-container .loading .load-bar {
    width: 50%;
    height: 5px;
    background-color: white;
    -webkit-animation: load 1.5s linear infinite alternate; /* Safari 4.0 - 8.0 */
    animation: load 1.5s linear infinite alternate;
}

@keyframes load {
    0% {
        margin-left: -51%;
    }
    100% {
        margin-left: 101%;
    }
}