html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: #ffb400;
}


#app {
    width: 100%;
    height: 100%;
}

#app-inner{
    top:0;
    bottom:0;
    left:0;
    right:0;
    position:relative;
    width: 100%;
    height: 100%;   
}

.menu-top {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, 0%);
    max-width: 120px;
    display: block;
    z-index: 1;
}

.is-iphone .menu-top{
    top: 15%;
}

.menu-top img {
    height: auto;
    cursor:pointer;
}

#content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    z-index: 1;
    align-items: center;
    justify-content: center; 
    padding: 0;
    cursor: pointer;
    box-sizing: border-box;   
}

.is-iphone #content-wrapper{
    top: 40%;
}


#content-wrapper .cherep {
    display: block;
    width:calc(var(--base-mob)*4);
    touch-action: manipulation;
    user-select: none;
    transition: transform 0.35s ease;
    transform: rotate(0deg) scale(1);
    will-change: transform;
    z-index: 2;
}

#content-wrapper .cherep.tap {
    transform: rotate(-10deg) scale(1);
}

.menu-bottom {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translate(-50%,0%);
    max-width: auto;
    display: block;
    z-index: 1;
}

.is-iphone .menu-bottom{
    bottom: 35%;
}

.menu-bottom img {
    height: auto;
}

#steamAuthId {
    display: none;
    font-weight: 400;
}

#steamAuthId:hover {
    color:var(--color-orange);
}


#steamAuthId.show {
    display: block;
}

#steamLogo {
    display: block;
    width:calc(var(--base-mob)*1.8);
}

#steamLogo.hide {
    display: none;
}


#ticket-wrapper {
    display: none;
    width: 90px;
    height: 90px;
    position: absolute;
    cursor: pointer;
    z-index: 100;
    right: 35px;
    bottom: 35px;
    background-size: cover;
}

.full {
    width: 100%;
    height: 100%;
}

@media all and (min-width:641px) {
    .menu-bottom img {
        width: calc(var(--base-desc)*1.2);
    }
    #steamAuthId {
        font-size: calc(var(--base-desc)*0.8);
    }  
    #clock {
        font-size: calc(var(--base-desc)*0.8);
    }       
}

@media all and (max-width:640px) {
    #ticket-wrapper {
        width: 50px;
        height: 50px;
    }

    .menu-bottom img {
        width: calc(var(--base-desc)*3);
    }

    #steamAuthId {
        font-size: calc(var(--base-desc)*2.5);
    }

    #clock {
        font-size: calc(var(--base-desc)*2.5);
    }    
}

/*
.tap {
    animation: tapTilt .35s ease;
}

@keyframes tapTilt {
    0% {
        transform: rotate(0deg) scale(1);
    }

    40% {
        transform: rotate(-45deg) scale(1.05);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}*/