@font-face {
    font-family: 'CustomOpvallenFont';
    src: url('../fonts/Gotham-Light.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
         url('../fonts/Gotham-Light.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
} 

body {
    width: 100%;
    height: 100%;
    background-color: #202020;
    color: white;
    margin: 0;
    padding: 0;
    font-family: CustomOpvallenFont, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden;
}

.header, .registration {
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
}

.header .player-icon,
.registration .player-icon {
    width: 480px;
    height: 480px;
}
@media screen and (orientation: landscape) {
    .header .player-icon,
    .registration .player-icon {
        width: 240px;
        height: 240px;
    }
}

h1, h2, h3, h4 {
    vertical-align: middle;
    text-align: center;
    font-weight: 900;    
    text-transform: uppercase;
}

h1 {
    margin-top: 40%;
    font-size: 72px;
    margin-bottom: 0;
}

h2 {
    font-size: 64px;
    margin-top: 0px;
}

h3 {
    font-size: 64px;
}

h4 {
    font-size: 56px;
}

@media screen and (orientation: landscape) {
    h1 {
        font-size: 48px;
        margin-top: 10%;
    }
    h2 {
        font-size: 40px;
    }
    h3 {
        font-size: 32px;
    }
    h4 {
        font-size: 24px;
    }
}

.progress-wrapper {
    border: 4px solid black; 
    border-radius: 25px;
    width: 50%;
    margin: auto;
}

.player-icon {
    color: white;
}

.player-logo {
    width: 80%; 
    margin-top: 40vh;
}

@media screen and (orientation: landscape) {
    .player-logo {
        width: 50%;
        margin-top: 35vh;
    }    
}

progress {
    width: 95%;
    padding: 10px;
    height: 40px;
    color: lightblue;
    accent-color: lightblue;
    border: 0px;
    
    overflow: hidden;
}

progress[value] {
    /* Reset the default appearance */
    -moz-appearance: none;
    appearance: none;
  }

 progress[value]::-webkit-progress-bar {
    color:lightblue;
    accent-color: lightblue;
    background-color: transparent;
    border-radius: 25px;
 }

 progress[value]::-webkit-progress-value {
    background-color: rgb(6, 113, 185);
    border-radius: 15px;
}

.loading-info {
    width: 50%;
    margin: auto;
    text-align: left; 
    font-size: 28px; 
    margin-top: 24px;
}

.loading-info p {
    margin: 0;
}

.footer {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: grey;
}

.footer img {
    width: 150px;
}

video {
    will-change: contents;
    transition: opacity 0.8s ease-in, visibility 0.8s ease-in;
}

.background {
    width: 100%;
    height: 100vh;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.txtLog {
    color: white;
}


.network-status-icon-online {
    width: 8px;
    height: 8px;
    background-color: green;
    border-radius: 50%;
    display: inline-block;
}

.network-status-icon-offline {
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50%;
    display: inline-block;
}

.network-indicator {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

@keyframes flickerAnimation {
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0; }
  100% { opacity:1; }
}
.animate-flicker {
   -webkit-animation: flickerAnimation 1s infinite;
   -moz-animation: flickerAnimation 1s infinite;
   -o-animation: flickerAnimation 1s infinite;
    animation: flickerAnimation 1s infinite;
}