*: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");
}

@font-face {
  font-family: OpenSansRegular;
  src: url("../../media/fonts/OpenSans-Regular.ttf") format("truetype");
}

@font-face {
  font-family: OpenSansSemiBold;
  src: url("../../media/fonts/OpenSans-Semibold.ttf") format("truetype");
}

@font-face {
  font-family: RobotoMedium;
  src: url("../../media/fonts/Roboto-Medium.ttf") format("truetype");
}

@font-face {
  font-family: RobotoBold;
  src: url("../../media/fonts/Roboto-Bold.ttf") format("truetype");
}

@font-face {
  font-family: FuturaBold;
  src: url("../../media/fonts/FuturaBold.ttf") format("truetype");
}

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: fixed !important;
  left: 0 !important;
  right: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  z-index: 25 !important;
  height: 100vh !important;
  width: 100% !important;
  margin: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
#message img {
  max-width: 93%;
  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;
}

#ticketEntry #branding-ellipse {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 50% !important;
}

#ticketEntry #ticket-entry-container .text-center {
  position: relative;
}

#ticketEntry #eighteen-container {
  width: 100%;
  height: 10%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: end;
}

#ticketEntry #eighteen-container #eighteen{
  max-width: 20%;
  max-height: 100%;
  padding: 2% 7.5% 0 0;
}

#ticketEntry #eighteen-container #lotto-spot{
  max-width: 33%;
  max-height: 100%;
  padding: 5% 7% 0 0;
}

#ticketEntry #ticket-entry-container {
  height: 83%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13%;
}

#dogImage {
  max-width: 50% !important;
  top: 64%;
  position: relative;
  left: 24%;
}

#branding {
  position: relative;
  top: 73%;
  left: 23%;
  max-width: 53% !important;
}

#ticketEntry #ticket-entry-container div {
  width: 100%;
  max-width: 100%;
  max-height: 20%;
}

#ticketEntry #ticket-entry-container .text-center {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

#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;
  position: relative;
  top: 28%;
}

#ticketEntry #ticket-entry-container #entry-code-input-container #entryCode {
  position: absolute;
  top: 59%;
  left: 2%;
  transform: translateY(-44%);
  width: 95%;
  height: 50px;
  font-size: calc(8px + 4vh);
  background: none !important;
  font-family: 'OpenSansRegular', sans-serif;
  color: #000000 !important;
  text-transform: uppercase !important;
  text-align: center !important;
  margin: 0;
  line-height: 2px;
  border: none;
  outline: none;
  caret-color: #000;
}

#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: 83%;
}

#ticketEntry #ticket-entry-container div img {
  max-width: 100%;
}

#ticketEntry #ticket-entry-container #submit-entry-container {
  top: 17%;
  left: 2%;
}

#ticketEntry #ticket-entry-container #submit-entry-container #submitTicketEntry {
  padding: 0 0 0 0;
}
#submit-entry-container{
  padding-bottom: 5% !important;
}

#submitTicketEntry {
  background: transparent;
  border: 0;
  padding: 10px;
  width: 75vw !important;
  position: relative;
  left: 6%;
  cursor: pointer;
}

#submitTicketEntry img {
  height: 100%;
  width: 100%;
}

.input-hidden {
  visibility: hidden;
}

@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);
  }
}

div#phaser-game.overlayed:after {
  content: '';
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000099;
  margin-top: -5.5px;
  display: block;
}