*:focus {
  outline: none;
}

@font-face {
  font-family: Metropolis;
  src: url("../../media/fonts/Metropolis-Bold.otf") format("opentype");
}

@font-face {
  font-family: SourceSansPro;
  src: url("../../media/fonts/SourceSansPro-Regular.ttf") format("truetype");
}

@font-face {
  font-family: OpenSans;
  src: url("../../media/fonts/OpenSans-Bold.ttf") format("truetype");
}



#phaser-game{
  position: fixed;
  left: 0;
  right: 0;
  top:0;
  bottom:0;
}
body {
  background: url("../../media/images/mobile-background.png") no-repeat center
    center fixed !important;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  overflow: hidden;
}


/* TICKET ENTRY FORM */

#message {
  background-image: none !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  z-index: 25 !important;
  height: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}
#message img {
  max-width: 80%;
  max-height: 80%;
}

#loader {
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader i {
  color: white !important;
  position: initial !important;
}

#ticketEntry {
  margin: auto;
  height: 100%;
  width: 100%;
  background-color: transparent !important;
  background-image: none !important;
  padding: 20px;
}
#ticketEntry #eighteen-container {
  width: 100%;
  height: 10%;
  text-align: right;
}

#ticketEntry #eighteen-container #eighteen {
  max-width: 24%;
  max-height: 100%;
}

#ticketEntry #ticket-entry-container {
  height: 90%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5%;
}

#ticketEntry #ticket-entry-container div {
  width: 100%;
  max-width: 100%;
  max-height: 30%;
}
#ticketEntry #ticket-entry-container div img {
  max-width: 100%;
  max-height: 100%;
}

#ticketEntry #ticket-entry-container #entry-code-input-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  width: -moz-max-content;
  width: -webkit-max-content;
  padding: 5px;
  position: relative;
}

#ticketEntry #ticket-entry-container #entry-code-input-container #entryCode {
  position: absolute;
  bottom: 0;
  width: 95%;
  max-width: 100%;
  height: auto !important;
  font-size: calc(8px + 2.5vh);
  left: 2%;
  top: 18%;
  background: none !important;
  font-family: "Metropolis", sans-serif;
  color: #ffffff !important;
  text-transform: uppercase !important;
  text-align: center !important;
  padding: 0;
  margin: 0;
}
#ticketEntryError-title{
  color: white;
  text-align: center;
}
#ticketEntryError-error {
  color: white!important;
  text-align: center!important;
}
#ticketEntryError{
  background-image: url(../images/modal-frame.png);
  padding: 30px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
#ok-error {
  width: 125px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: -35px;
}

#ticketEntry #ticket-entry-container #submit-entry-container {
  width: 100% !important;
  padding: 0 3%;
}
#ticketEntry #ticket-entry-container #submit-entry-container img {
  width: auto !important;
  max-width: 85%;
}

#submitTicketEntry {
  background: transparent;
  border: 0;
  padding: 10px;
  z-index: 20;
  width: 50vw;
  margin-top: 3% !important;
}

#submitTicketEntry img {
  height: 100%;
  width: 100%;
}

@media only screen and (max-width: 500px) {
  #ticketEntry {
    max-width: 100%;
  }
}

/* LOADER ANIMATION */
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
