*: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("opentype");
}

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.65);
}
#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 #eighteen-container {
  width: 100%;
  height: 10%;
  text-align: right;
}

#ticketEntry #eighteen-container #eighteen {
    max-width: 25%;
    max-height: 95%;
    padding: 1.5% 4% 0 3%;
}

#ticketEntry #ticket-entry-container {
  height: 90%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17.5%;
}

#ticketEntry #ticket-entry-container div {
  width: 100%;
  max-width: 100%;
  max-height: 31%;
}
#ticketEntry #ticket-entry-container div img {
  max-width: 100%;
  max-height: 94%;
}
#ticketEntry #ticket-entry-container #branding {
  max-width: 88%;
  margin-top: 1.5%;
}

#ticketEntry #ticket-entry-container #winUpto {
  max-height: 9%;
  position: absolute;
  left: 27%;
  top: 35%;
}

#ticketEntry #ticket-entry-container #entry-code-input-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    width: -moz-max-content;
    width: -webkit-max-content;
    padding: 5px;
    top: 6%;
    width: 100%;
    height: 100%;
}

#ticketEntry #ticket-entry-container #entry-code-input-container img {
    position: absolute;
    top: 0;
    width: 100%;
    height: auto;
}

#ticketEntry #ticket-entry-container #entry-code-input-container #entryCode {
    position: absolute;
    top: 58%;
    left: 2%;
    transform: translateY(-50%);
    width: 95%;
    height: 50px;
    font-size: calc(8px + 4vh);
    background: none !important;
    font-family: 'OpenSansRegular', sans-serif;
    color: #000 !important;
    text-transform: uppercase !important;
    text-align: center !important;
    margin: 0;
    line-height: 0.1em;
    border: none;
    outline: none;
    caret-color: #000;
}

#ticketEntry #ticket-entry-container #submit-entry-container {
    width: 100% !important;
    padding: 0 3%;
}

#submit-entry-container{
  padding-bottom: 5% !important;
}

#submitTicketEntry {
    background: transparent;
    border: 0;
    z-index: 20;
    width: 67vw;
    margin-bottom: 14% !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);
  }
}
