
.game-wrapper {
    position: relative;
    max-width: 430px;
    margin: 0 auto;
    padding: 0 15px;
}


.vis {
    position: absolute;
    top: 62px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 100px;
    border-radius: 10px;
}

.game-logo {
    text-align: center;
    margin-bottom: 18px;
}

.game-logo img {
    width: 182px;
}

.game-block {
    border-radius: 10px;
    width: 250px;
    margin: 0 auto 26px;
    position: relative;
    overflow: hidden;
}

.game-block-1 {
    height: 100px;
}

.game-block-inner {
    width: 250px;
    position: absolute;
    overflow: hidden;
    transition: .5s;
}

.game-block-1 .game-block-inner {
    height: 100px;
}

.game-block-content {
    width: 250px;
    position: absolute;
    display: none;
}

.game-block-1 .sound {
    height: 100px;
    border-radius: 10px 10px 0 0;
    /* background-color: rgba(0, 0, 0, 0.2); */
    position: relative;
}

.game-block-1 .sound .sound-inner {
    display: table;
    width: 100%;
    height: 100%;
}

.game-block-1 .sound .sound-content {
    display: table-cell;
    padding: 15px;
    text-align: center;
    vertical-align: middle;
}

.game-block-1 .sound .sound-content img {
    width: 64px;
    height: 64px;
    filter: invert(1);
    cursor: pointer;
    vertical-align: bottom;
}

.game-block-1 .sound .sound-content .pause-button {
    display: none;
}

.game-block-1 .sound.sound-single {
    height: 140px;
}

.game-block-1 .sound .sound-content audio {
    display: none;
}

.game-block-2 {
    height: 40px;
}

.game-block-2 .game-block-inner {
    height: 40px;
}

.game-block-2 .game-block-inner {
    display: flex;
    align-items: center;
}

.game-block-2 .game-block-inner .word-inner {
    display: flex;
    justify-content: center;
}

.game-block-2 .word-content {
    display: flex;
}

.game-block-2 .word-content.success div {
    background-color: #0a990a!important;
}

.game-block-2 .word-content.failure div {
    background-color: #c41f21!important;
}
/* 
.game-block-2 .word-content div {
    width: 20px;
    height: 30px;
    font-size: 21px;
    border-bottom: 1px solid #fff;
    margin: 0 5px;
    text-align: center;
} */

.game-block-2 .word-content div {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 38px;
    font-size: 23px;
    background-color: #fff;
    color: #000;
    /* background-color: var(--primary-accent);
    color: #fff; */
    font-weight: 500;
    margin: 0 3px;
    border-radius: 2px;
    text-align: center;
}

.game-block-3 {
    height: 260px;
}

.game-block-3 .game-block-inner {
    height: 260px;
}

.game-block-3 .letters {
    text-align: center;
    width: 250px;
    display: flex;
    flex-wrap: wrap;
    float: left;
    transition: all 0.6s ease;
}

.game-block-3 .letters div {
    cursor: pointer;
    width: 50px;
    height: 50px;
    font-size: 21px;
    line-height: 50px;
    background-color: var(--lighter-background);
    margin: 7px 2.5%;
    border-radius: 30px;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.game-block-3 .letters div:active {
    background-color: #4e0fba;
}

.game-block-3 .letters .clear-letters {
    background: #0c3287;
    position: relative;
    margin-top: 10px;
}

@media (hover: hover) {
    .game-block-3 .letters .clear-letters:hover {
        background:rgb(15, 58, 150);
    }
}

.game-block-3 .letters .clear-letters img {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.game-block-3 .letters .submit-word,
.game-block-3 .letters .show-word,
.game-block-3 .letters .next-word {
    width: 175px;
    font-size: 15px;
    margin-top: 10px;
    font-weight: bold;
}

.game-block-3 .letters div.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.game-block-3 .letters .show-word {
    background-color: #c41f21;
    display: none;
}

.game-block-3 .letters .next-word {
    background-color: #048d04;
    display: none;
}

.game-block-3 .letters .next-word img {
    width: 18px;
    vertical-align: sub;
    margin-left: 5px;
}

@media (hover: hover) {
    .game-block-3 .letters .submit-word:hover {
        background-color: #2b50a6;
    }
}

@media (hover: hover) {
    .game-block-3 .letters .show-word:hover {
        background-color: #d4282b;
    }
}

@media (hover: hover) {
    .game-block-3 .letters .next-word:hover {
        background-color: #0a990a;
    }    
}

.game-block-3 .letters div.slctd {
    background-color: var(--primary-accent);
}

.game-block-3 .letters div.success {
    background-color: green;
}

.game-block-3 .letters div.failure {
    background-color: red;
}

.game-block-4 {
    margin-bottom: 0;
    border-radius: 0;
}

.game-block-4 .game-block-inner {
    position: relative;
}

.game-block-4 .game-block-content {
    position: relative;
}

.game-block .show-meaning-wrapper {
    display: none;
    margin-bottom: 26px;
}

.game-block .show-meaning {
    cursor: pointer;
    width: 100%;
    height: 42px;
    font-size: 15px;
    line-height: 42px;
    background-color: #4e0fba;
    border-radius: 30px;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
    font-weight: 400;
    text-align: center;
}

.game-block .show-meaning.opened {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.game-block .show-meaning img {
    width: 16px;
    vertical-align: middle;
    margin-left: 7px;
}

.game-block .show-meaning.opened img {
    transform: rotate(180deg);
}

@media (hover: hover) {
    .game-block .show-meaning:hover {
        background-color: #5514c6;
    } 
}

.game-block .meaning {
    display: none;
    padding: 15px 10px;
    border-left: 1px solid #6d0cff;
    border-right: 1px solid #6d0cff;
    border-bottom: 1px solid #6d0cff;
    font-size: 15px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.game-block .meaning .definition {
    margin-bottom: 10px;
    margin-bottom: 15px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 13px;
    border-bottom: 1px solid #6d0cff;
}

.game-block .meaning .definition:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}