@charset "UTF-8";

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html,body {
    position: relative;
    width: 100%;
    height: 100%;
}
body,h1,h2,h3,h4,h5,h6,p {
    margin: 0;
}
body {
    background-color: #013e65;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
}
.fixed-bg {
    content: '';
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: -999999;
}
.separator {
    margin: 5px 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255,255,255,0.25);
}
#logo {
    position: fixed;
    top: 20px;
    left: 15px;
    max-width: 250px;
}
#wrapper, #download {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    width: 65%;
}
#wrapper {
    top: 50%;
    text-align: center;
}
#download {
    top: 80%;
}
#wrapper * {
    text-align: left;
}
#playerinfo {
    display: inline-table;
    width: 40%;
    background-color: rgba(0,0,0,0.4);
    border-radius: 3px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
#playerinfo > * {
    display: inline-block;
    vertical-align: middle;
}
#playeravatar {
    max-width: 175px;
    width: 30%;
    border-radius: 3px 0px 0px 3px;
}
#playerdetails {
    padding: 0px 10px;
    width: 70%;
}
#playerdetails p {
    overflow: hidden;
    text-overflow: ellipsis;
}
#playername {
    font-size: 1.35rem;
    font-weight: 500;
}
#steamid {
    font-size: 0.75rem;
}
#status {
    padding: 10px 5px;
    font-family: 'Roboto Condensed', 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
}
.loadingbar {
    width: 100%;
    height: 8px;
    background-color: rgba(0,0,0,0.35);
    -webkit-transform: skewX(-25deg);
}
.loadingbar > div {
    max-width: 100%;
    width: 100%;
    height: inherit;
    background-color: #0a89ca;
    box-shadow: 0px 1px 6px rgba(0, 0, 0, 0.15);
    -webkit-transition: width 0.2s linear;
}