
.game-wrapper {   
    max-width: 450px;
    width: 100%;
    margin: 0 auto 26px;
    background-color: rgb(255, 255, 255);
    border: 4px solid #fff;
    box-shadow: rgb(0 0 0 / 20%) 2px 2px 3px;
    /* zoom: 0.75; */
}

.game-header {
    margin: 0 auto;
    width: 220px;
    margin-bottom: 20px;
}

.game-header img {
    width: 100%;
}


.captchify_header {
    background: #1a73e8;
    border: 2px solid #fff;
}

.captchify_question {
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    padding: 15px 5px;
}

.the_word {
    padding: 3px 12px;
    display: inline-block;
    color: white;
    font-size: 26px;
    transition: all 0.6s ease;
}

.captchify_options_container {
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.captchify_options {
    /* transition: all 0.6s ease; */
    position: relative;
    width: 100%;
    height: 100%;
    float: left;
}

.captchify_options_element {
    border: 2px solid #fff;
    vertical-align: middle;
    position: relative;
    width: 33.3333%;
    height: 33.3333%;
    padding: 0 0 33.3333%;
    overflow: hidden;
    float: left;
}

.captchify_options_selected {
    cursor: pointer;
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 150px;
    opacity: 0.7;
}

.captchify_correct {
    background-color: #10b510;
}


.captchify_wrong {
    background-color: #e33225;
}

.captchify_checkmark {
    cursor: pointer;
    color: white;
    z-index: 2;
    position: absolute;
    /* width: 100%!important;
    height: 100%!important; */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}


.captchify_checkmark img {
    width: 80px!important;
    height: 80px!important;
    opacity: 0.7!important;
}

.captchify_options_img {
    /* display: inline-block; */
    vertical-align: top;
    top: 0;
    left: 0;
    right: 0;
    border: 0;
    margin: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    /* outline: 3px solid white; */
    cursor: pointer;
    object-fit: cover;
    transition: all 0.33s ease;
}


.captchify_options_img:hover {
    filter: brightness(1.2) contrast(1.1);
}

/* 
.captchify_options div {
    cursor: pointer;
    padding: 10px 10px;
    font-weight: 600;
    background-color: var(--lighter-background);
    margin: 15px 10px;
    border-radius: 30px;
    transition: all 0.25s ease;
    -webkit-tap-highlight-color: transparent;
} */

/* .captchify_options div:hover {
    background-color: var(--primary-accent);
} */



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

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

.game-block-content {
    width: 250px;
    transition: .7s;
}

.game-block-3 {
    height: 30px;
    margin-bottom: 0;
}

.game-block-3 .game-block-inner {
    height: 50px;
    right: 0;
}

.game-block-3 .game-block-content {
    float: right;
    text-align: center;
}

.game-block-3 .next-button {
    opacity: 0;
    background: #540bc2;
    width: 170px;
    margin: 0 auto;
    padding: 3px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: .5s;
    font-size: 14px;
}

.game-block-3 .next-button img {
    width: 16px;
    margin-left: 6px;
    vertical-align: middle;
}

.game-block-3 .next-button:hover {
    background: #6111d7;
}



@media screen and (max-width: 767px) {


}