#hudScore{
  background: #FFFFFF;
  color: #000;
  display: flex;
  flex-direction: row;
  padding: 8px;
}

#hudScore .score-wrapper{
  display: flex;
  flex-direction: row;
  gap: 4px;
  width: 100%;
}

#hudScore .score-wrapper > div{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4px;
  border-radius: 4px;
  padding: 4px;
  background: #000;
  color: #fff;
  text-align: center;
  flex-grow: 1;
}

#hudScore .score-wrapper > div > span{
  border-radius: 2px;
  padding: 4px;
  display: block;
}

#hudScore .score-wrapper > div > span:nth-child(2){
  background:  #82C443; 
  font-size: 0.7em;
  text-transform: uppercase;  
}

#phaserGame{
  overflow: hidden;
}

#phaserDOMBox{
  display: none;
}


/* PAGE LOADING */

#phaserDOMPageLoading{
  display: flex!important;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#phaserDOMPageLoading .logo-wrapper{
  height: 45%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#phaserDOMPageLoading .logo-wrapper img{
  width: 42%;
}

#phaserDOMPageLoading .content-wrapper{
  height: 25%;
}

#phaserDOMPageLoading .progress-wrapper{
  height: 30%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#phaserDOMPageLoading .progress-wrapper .progress-label,
#phaserDOMPageLoading .progress-wrapper .progress-percent{
  font-family: Montserrat;
  text-transform: uppercase;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 600;
}

#phaserDOMPageLoading .progress-wrapper .progress-box{
  height: 25%;
  width: 60%;
  border-width: 0.5rem;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.6);
  margin: 0.5rem;
}
#phaserDOMPageLoading .progress-wrapper .progress-bar{
  height: 100%;
  background-color: #091920;
}
#phaserDOMPageLoading .progress-wrapper .progress-bar-fill{
  background-color: #FFFFFF;
  height: 100%;
  width: 0%;
}

/* PAGE GAME */
#phaserDOMPageGame{
  display: flex!important;
  justify-content: center;
  align-items: center;
}

#phaserDOMPageGame .button-start{
  padding: 1rem;
  width: 20rem;
  height: 6rem;
  border-radius: 3rem;
  font-size: 40pt;
  color: white;
  background-color: #82C443;
  border-color: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.6);
}
#phaserDOMPageGame .button-start:hover{
  background: #fff;
  color: #82C443;
}

@media (max-width:1280px) {
  #hudScore .score-wrapper > div{
    align-items: center;
  }
}

@media (min-width:1280px) {

  #hudScore{
    position: fixed;
    top: 50%;
    left: 16px;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    padding: 32px 4px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.6);
    width: 80px;
    z-index: 50;
  }

  #hudScore .score-wrapper{
    flex-direction: column;
  }

  #hudScore .score-wrapper > div{
    flex-direction: column;
  }

}
