#app_game{
    display: none;
}

h2.word{
    text-transform: uppercase;
    text-align: center;
    font-size: 75pt;
    line-height: 1;
    margin: 25px 0;
}

h2.word span{
    color: gray;
    display: inline-block;
}

h2.word span.active{
    color: orange;
}

#word-wrap{
    position: relative;
    margin: 0;
    padding: 20px 0;
}

.tutorial{
    position: absolute;
    top: -40px; left: calc(50% - calc(250px * .5)); right: 0;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    width: 250px;
    color: gray;
}

.tutorial:after{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 1px;
    background-color: gray;
}

.tutorial:before{
    --size-arrow: 15px;
    content: "";
    display: block;
    width: var(--size-arrow);
    height: var(--size-arrow);
    background-color: white;
    border: solid 1px gray;
    border-top: none;
    border-left: none;
    position: absolute;
    bottom: calc(calc(var(--size-arrow) * .5) * -1);
    left: calc(50% - calc(var(--size-arrow) * .5));
    z-index: 1;
    transform: rotate(45deg);
}

.hideonplay{
    transform: scale(1);
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.hideonplay.hide{
    transform: scale(0);
    opacity: 0;
}

.combo-wrap{
    position: absolute;
    bottom: 20px; right: 100px;
    max-width: 150px;
    font-size: 28pt;
    color: gray;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    --animate-duration: .5s;
}

.combo-wrap .combo{
    font-size: 54pt;
    margin: 0;
}

#app_game .score-wrap,
#app_game .timer-wrap{
    text-align: center;
    font-size: 28pt;
    color: gray;
    margin: 0 auto 20px;
    max-width: 75vw;
    position: relative;
}

#app_game .score-wrap{
    font-weight: bold;
}