
*:focus {
    outline: none;
}

body{
    background: url("../../media/images/desktop_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;
}
.hidden {
    display: none;
}

.internetexplorer #entryCode,
.msedge #entryCode{
    top: 350px;
}


.clickable_button {
    background: transparent;
    border:0;
    padding: 10px;
    z-index:20;
    width:50vw;
}
.clickable_button img{
    height: 100%;
    width: 100%;
}

textarea:focus,
input:focus{
    outline: none;
}

.rotating {
  -webkit-animation: rotating 2s linear infinite;
  -moz-animation: rotating 2s linear infinite;
  -ms-animation: rotating 2s linear infinite;
  -o-animation: rotating 2s linear infinite;
  animation: rotating 2s linear infinite;
}

/* ROTATION IMAGE */
#mobileScreenMode {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    z-index: 100;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("../images/screenrotate.png") !important;
}

#screenRotation{

    width: 100%;
    height: 100%;
}


/* TICKET ENTRY FORM */

#message {
    background-image: none !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    width: fit-content !important;
    width: -moz-max-content !important;
    max-width: 30%;
    height: 50% !important;
    margin: auto !important;
    z-index: 25 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
#message img{
    height: 100%;
    width: auto;
    max-width: 100%;
}

#message div {
    max-height: 20%;
    height: 20%;
    width: 100%;
    padding: 0;
    position: absolute;
    bottom: 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

#message div #accept {
    height: 100%;
    width: auto;
    padding: 0;
    margin: 0;
}

#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 {
    position: relative !important;
    margin: auto;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent !important;
    background-image: none !important;
}

#ticketEntry div {
    width: fit-content;
    width: -moz-max-content;
    height: 40%;
    max-width: 100%;
}
#ticketEntry #eighteen-container{
    position: absolute;
    width: fit-content;
    height: 10%;
    width: -moz-max-content;
    top: 4%;
    right: 4%;
}
#ticketEntry #eighteen-container #eighteen{
    height: 100%;
}

#ticketEntry div #branding {
    max-width: 100%;
    height: 100%;
    width: auto;
}

#ticketEntry #entry-code-input-container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35% !important;
    width: fit-content;
    width: -moz-max-content;
    padding: 5px;
    position: relative;
}
#ticketEntry #entry-code-input-container img{
    height: 100%;
    max-width: 100%;
}
#ticketEntry #entry-code-input-container #entryCode{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80%;
    font-size: 13vh;
    left: 0;
    background: none !important;
    font-family: "Arial", " sans-serif", "serif";
    color: white !important;
    font-weight: 800;
    text-transform: uppercase !important;
    text-align: center !important;
    padding: 0;
    margin: 0;
}
#ticketEntry #submit-entry-container{
    height: 20% !important;
}
#ticketEntry #submit-entry-container img{
    max-width: 100%;
    height: 100%;
    width: auto;
    padding: 0;
}

/* 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);
    }
}