.zts-scratch-wrapper {

    width: 100%;

    display: flex;

    justify-content: center;

    margin: 30px 0;
}

/*
|--------------------------------------------------------------------------
| CARD
|--------------------------------------------------------------------------
*/

.zts-scratch-card {

    position: relative;

    width: 100%;
    max-width: 420px;

    height: 240px;

    border-radius: 22px;

    overflow: hidden;

    background: linear-gradient(
        135deg,
        #d4af37,
        #f5e6a7
    );

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);

    display: flex;

    align-items: center;

    justify-content: center;
}

/*
|--------------------------------------------------------------------------
| CONTENIDO
|--------------------------------------------------------------------------
*/

.zts-scratch-prize {

    position: relative;

    z-index: 1;

    width: 100%;

    padding: 30px;

    text-align: center;

    font-family: 'Poppins', sans-serif;

    color: #2c2c2c;
}

.zts-prize-title {

    font-size: 16px;

    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.zts-prize-value {

    font-size: 38px;

    font-weight: 700;

    margin-bottom: 15px;
}

.zts-prize-code {

    font-size: 16px;

    background: rgba(255,255,255,.5);

    padding: 10px 16px;

    border-radius: 12px;

    display: inline-block;
}

/*
|--------------------------------------------------------------------------
| CANVAS
|--------------------------------------------------------------------------
*/

#ztsScratchCanvas {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    z-index: 10;

    touch-action: none;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 480px) {

    .zts-scratch-card {

        height: 210px;
    }

    .zts-prize-value {

        font-size: 30px;
    }

    .zts-prize-code {

        font-size: 14px;
    }
}