@font-face {
    font-family: "Adidas"; /* This is the name you will use in CSS */
    src: url('font/adidas.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}
html, body {
    padding: 0;
    margin : 0;
    width: 100%;
    height : 100%;
    overflow:hidden;
}

.nt-wrapper {

    width: 100%;
    height: 100%;
    background-color: #000000;

    display: flex;
    justify-content: center;
    align-items: center;
    
}

.nt-progress-bar-cont {
    width: 45%;
    max-width: 250px;
    height : 7px;
    /* border : 1px solid red; */
    position: relative;
}

.nt-progress-bar {

    width: 100%;
    height : 100%;
    border : 1px solid #333;
    border-radius: 3px;
    overflow: hidden;
    position: absolute;
}

.nt-progress {
    width : 1%;
    height : 100%;
    background-color: white;
    position: absolute;
}

.nt-ad-container {

    width: auto;
    height : auto;
    overflow: hidden;
    background-color: #ffffff;
    position: absolute;
    display: none;
}


.nt-ad-container * {
    width: 100%;
    height : 100%;
    position:absolute;
    pointer-events: none;
}

.border {
    border : 1px solid #000;
    z-index: 999;
    pointer-events: none;
}

.hs{
   /*background-color: #ff000090;*/
   pointer-events: all;
   width:100%;
   left:50%;
   transform: translateX(-50%);
}

/* Allow pointer events to pass through game container wrappers to .hs-arr */
.game, .gamecontainer {
    pointer-events: none;
}

.hs-arr{
    /* background-color: #ff0000; */
    aspect-ratio: 1/1;
    width:44%;
    height: auto;
    bottom:3%;
    pointer-events: all;
}
.hs-left{
    left:4%;
}
.hs-right{
    left:52%;
}


.hs-start {
    /* background-color: #ff0000; */
    
    width:100%;
    height: 100%;
    bottom:0%;
    pointer-events: all;
}

.hs-again {
    /* background-color: #ff0000; */
    
    width:60%;
    height: 10%;
    bottom:7%;
    pointer-events: all;
}

.score {
    font-family: "Adidas", sans-serif;
    width: 30%;
    height: auto;
    top: 3%;
    left: 0;
    text-align: left;
    
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    z-index: 100;
    pointer-events: none;
}

.realtime {
    padding-left: 10px;
}



.score-panel {
    
    color: black;
}

.bg { 
    background: url('images/bg.gif') no-repeat center center;
    background-size: contain;
}
.player { 
    background: url('images/player.gif') no-repeat center center;
    background-size: contain;
    pointer-events: none; 
    z-index: 999;
}
#ball { 
    background: url('images/ball.png') no-repeat center center;
    background-size: contain;
    pointer-events: none; 
    width: 46%;
    height: 46%;
    transform: translate(-50%, -50%) scale(0);
}

.again,.arr1,.arr2,.ball,.copy,.countdown-1,
.countdown-2,.countdown-3,.countdown-go,.end-cta,.intro-bg,.logo,
.prod,.score-panel,.start
{ max-width: 100%; background-size: 100%; background-image: url('images/sprite.png'); }

.again {  background-position: 0 0.00%;  background-size: 100%;}
.arr1 {  background-position: 0 7.14%;  background-size: 100%;}
.arr2 {  background-position: 0 14.29%;  background-size: 100%;}
.ball {  background-position: 0 21.43%;  background-size: 100%;}
.copy {  background-position: 0 28.57%;  background-size: 100%;}
.countdown-1 {  background-position: 0 35.71%;  background-size: 100%;}
.countdown-2 {  background-position: 0 42.86%;  background-size: 100%;}
.countdown-3 {  background-position: 0 50.00%;  background-size: 100%;}
.countdown-go {  background-position: 0 57.14%;  background-size: 100%;}
.end-cta {  background-position: 0 64.29%;  background-size: 100%;}
.intro-bg {  background-position: 0 71.43%;  background-size: 100%;}
.logo {  background-position: 0 78.57%;  background-size: 100%;}
.prod {  background-position: 0 85.71%;  background-size: 100%;}
.score-panel {  background-position: 0 92.86%;  background-size: 100%;}
.start {  background-position: 0 100.00%;  background-size: 100%;}




