.game-container {
    &.scratchcard {

        .scratch-container,
        .scratch-result {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            -o-user-select: none;
            user-select: none;
        }

        .scratch-canvas {
            position: absolute;
            z-index: 2;
        }

        .scratch-result,
        .scratch-canvas {
            width: 250px;
            height: 200px;
            min-height: 200px;
            left:0;
            top:0;
            transform: translateZ(0);
        }

        .scratch-result {
            padding: 5px;
            overflow: hidden;
            background: linear-gradient(90deg, #faf39a 0%, #efe089 2%, #dcc16c 5%, #cca654 8%, #c09242 12%, #b88435 16%, #b37c2d 22%, #b1792b 30%, #b88535 39%, #caa351 54%, #e8d57e 73%, #faf39a 84%, #fff 98%, #fff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .scratch-container {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .scratch-result-text {
            text-align: center;
            border-radius: 5px;
            z-index: 1;
            padding: 10px;
            color: #0008;
            width: 100%;

            h5 {
                margin: 0 auto;
            }

            input {
                background: transparent;
                margin: 0;
                color: #fff;
                text-align: center;
                display: inline;
                font-size: 1.7em;
                padding: 0;
                margin: 0;
                border: 0;
                width: 200px;
                font-weight: 700;
                text-shadow: 2px 2px 2px #00000080;
            }
        }

        .scratch-result{
            height: 60%;
            margin-bottom: auto;
            margin-top: auto;
            width: 100%;
            top: 0;
            left: 0;

            div.full {
                height: 100%;
            }

            div.bg {
                height: 100%;
                width: 100%;
                background-position: center;
                background-size: contain;
                background-repeat: no-repeat;
            }
        }

    }
}
