

.game_area .game_bg {
    width: 1920px;
    height: 1020px;

    position: absolute;

    top: 0;
    left: 0;

}


.game_area .game_bg.bg_1 {
    background-image: url("../image/game/bg_game_1.png");
}

.game_area .game_bg.bg_2 {
    background-image: url("../image/game/bg_game_2.png");
}

.game_area .game_bg.bg_3 {
    background-image: url("../image/game/bg_game_3.png");
}



.game_area .answer_area {
    position: absolute;
    top: 358px;
    left: 527px;
    width: 870px;
    height: 623px;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.game_area .answer_area .node {
    width: 154px;
    height: 137px;
}

.game_area .answer_area .node > img {
    position: absolute;
    opacity: 0;
}

.game_area .answer_area .node {
    pointer-events: none;
}

.game_area .answer_area .node.normal_state {
    pointer-events: auto;
    cursor: pointer;
}

.game_area .answer_area .node.select_state {
    pointer-events: auto;
    cursor: pointer;
}

.game_area .answer_area .node.normal_state > img:nth-child(1) {
    opacity: 1;
}
.game_area .answer_area .node.select_state > img:nth-child(2) {
    opacity: 1;
}
.game_area .answer_area .node.correct_state > img:nth-child(3) {
    opacity: 1;
}


.content_top .progressTimer{
    width: 598px;
    height: 61px;
    position: absolute;
    top: 21px;
    left: 658px;
    background-image: url('../image/game/bg_progressbar.png');
    background-position: center;
    background-size: contain;
    display: flex;
    justify-content: center;
}

.progressTimer .timer_icn{
    display: flex;
    width: 75px;
    height: 75px;
    padding: 4px 4px 2px 4px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    position: absolute;
    top: -13px;
    left: -55px;
    background-image: url('../image/game/img_timer.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 3;
}

.progressTimer .progressTimer_fill{
    width: 580px;
    height: 42px;
    position: absolute;
    top: 8px;
    left: 7px;
    border: 2px solid #FFFCB0;
    background: #FFE914;
}

.progressTimer .progressTimer_fill.timeover{
    border:none;
}

.progressTimer .progressTimer_text{
    color: #ffffff;
    text-align: center;
    font-family: Jalnan;
    font-size: 44px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index:1;
    margin-top:8px;
}
#gameContainer .progressTimer #pTimer_text{
    z-index:2;
    margin-top:6px;
}
#gameContainer .progressTimer #pTimer_text_ver2{
    position:absolute;
    -webkit-text-stroke-width: 8px;
    -webkit-text-stroke-color: #2C969C;
}

.game_area .button_check_area {
    width: 346px;
    height: 170px;
    position: absolute;
    background-image: url("../image/btn_ok_small.png");
    right: 24px;
    bottom: 8px;
    pointer-events: auto;
    cursor: pointer;
}

.game_area .question_area {
    width: 1920px;
    height: 332px;
    position: absolute;
    /*top: -10px;*/
}



.game_area.lv_1 .question_area {
    background-image: url("../image/game/img_game_question_01.png");
}
.game_area.lv_2 .question_area {
    background-image: url("../image/game/img_game_question_02.png");
}
.game_area.lv_3 .question_area {
    background-image: url("../image/game/img_game_question_03.png");
}



.game_area.lv_1_o .answer_area .node:nth-child(6) > img:nth-child(3) { opacity: 1; }
.game_area.lv_1_x .answer_area .node:nth-child(6) > img:nth-child(3) { opacity: 1; }
.game_area.lv_1_o .answer_area .node:nth-child(7) > img:nth-child(3) { opacity: 1; }
.game_area.lv_1_x .answer_area .node:nth-child(7) > img:nth-child(3) { opacity: 1; }

.game_area.lv_2_o .answer_area .node:nth-child(13) > img:nth-child(3) { opacity: 1; }
.game_area.lv_2_x .answer_area .node:nth-child(13) > img:nth-child(3) { opacity: 1; }
.game_area.lv_2_o .answer_area .node:nth-child(18) > img:nth-child(3) { opacity: 1; }
.game_area.lv_2_x .answer_area .node:nth-child(18) > img:nth-child(3) { opacity: 1; }

.game_area.lv_3_o .answer_area .node:nth-child(4) > img:nth-child(3) { opacity: 1; }
.game_area.lv_3_x .answer_area .node:nth-child(4) > img:nth-child(3) { opacity: 1; }
.game_area.lv_3_o .answer_area .node:nth-child(8) > img:nth-child(3) { opacity: 1; }
.game_area.lv_3_x .answer_area .node:nth-child(8) > img:nth-child(3) { opacity: 1; }

.game_area.lv_1_o .answer_area .node:nth-child(6)  {pointer-events: none; cursor: none}
.game_area.lv_1_x .answer_area .node:nth-child(6)  {pointer-events: none; cursor: none }
.game_area.lv_1_o .answer_area .node:nth-child(7)  {pointer-events: none; cursor: none }
.game_area.lv_1_x .answer_area .node:nth-child(7)  {pointer-events: none; cursor: none }

.game_area.lv_2_o .answer_area .node:nth-child(13)  {pointer-events: none; cursor: none }
.game_area.lv_2_x .answer_area .node:nth-child(13)  {pointer-events: none; cursor: none }
.game_area.lv_2_o .answer_area .node:nth-child(18)  {pointer-events: none; cursor: none }
.game_area.lv_2_x .answer_area .node:nth-child(18)  {pointer-events: none; cursor: none }

.game_area.lv_3_o .answer_area .node:nth-child(4)  {pointer-events: none; cursor: none }
.game_area.lv_3_x .answer_area .node:nth-child(4)  {pointer-events: none; cursor: none }
.game_area.lv_3_o .answer_area .node:nth-child(8)  {pointer-events: none; cursor: none }
.game_area.lv_3_x .answer_area .node:nth-child(8)  {pointer-events: none; cursor: none }


.game_area .content_top .content_tab {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 128px;
}

.game_area .content_top .content_tab > img {
    position: absolute;
    opacity: 0;
}
.game_area .content_top .content_tab > img:nth-child(1) {
    opacity: 1;
}

.game_area .content_top .content_tab.content_tab1 {right: 256px;}
.game_area .content_top .content_tab.content_tab2 {right: 148px;}
.game_area .content_top .content_tab.content_tab3 {right: 40px;}

.game_area.lv_1 .content_top .content_tab:nth-child(1) > img:nth-child(2) {opacity: 1;}
.game_area.lv_1_o .content_top .content_tab:nth-child(1) > img:nth-child(3) {opacity: 1;}
.game_area.lv_1_x .content_top .content_tab:nth-child(1) > img:nth-child(4) {opacity: 1;}

.game_area.lv_2 .content_top .content_tab:nth-child(2) > img:nth-child(2) {opacity: 1;}
.game_area.lv_2_o .content_top .content_tab:nth-child(2) > img:nth-child(3) {opacity: 1;}
.game_area.lv_2_x .content_top .content_tab:nth-child(2) > img:nth-child(4) {opacity: 1;}

.game_area.lv_3 .content_top .content_tab:nth-child(3) > img:nth-child(2) {opacity: 1;}
.game_area.lv_3_o .content_top .content_tab:nth-child(3) > img:nth-child(3) {opacity: 1;}
.game_area.lv_3_x .content_top .content_tab:nth-child(3) > img:nth-child(4) {opacity: 1;}


.game_area .stage_popup {
    width: 1920px;
    height: 1020px;
    position: absolute;
    top: 0;
    left: 0;

    display: none;

    z-index: 3;
}
.game_area .stage_popup.show {
    display: block;
}
.game_area .stage_popup > img {
    width: 1920px;
    height: 1020px;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0
}
.game_area .stage_popup.lv_1_o > img:nth-child(2) {opacity: 1}
.game_area .stage_popup.lv_1_x > img:nth-child(3) {opacity: 1}

.game_area .stage_popup.lv_2_o > img:nth-child(4) {opacity: 1}
.game_area .stage_popup.lv_2_x > img:nth-child(5) {opacity: 1}

.game_area .stage_popup.lv_3_o > img:nth-child(6) {opacity: 1}
.game_area .stage_popup.lv_3_x > img:nth-child(7) {opacity: 1}

.game_area .stage_popup .btn_next {
    width: 345px;
    height: 170px;
    position: absolute;
    top: 768px;
    left: 1076px;
    pointer-events: auto;
    cursor: pointer;

    background-image: url("../image/game/btn_nextq_small.png");
}

.game_area .stage_popup.lv_3_o .btn_next { background-image: url("../image/game/btn_result_small.png"); }
.game_area .stage_popup.lv_3_x .btn_next { background-image: url("../image/game/btn_result_small.png"); }

.game_area .ending_popup {
    width: 1920px;
    height: 1020px;
    position: absolute;
    top: 0;
    left: 0;

    display: none;

    z-index: 3;
}
.game_area .ending_popup.show {
    display: block;
}

.game_area .ending_popup .btn_retry {
    width: 345px;
    height: 170px;
    position: absolute;
    bottom: 30px;
    left: 612px;

    background-image: url("../image/game/btn_retry_small.png");
}

.game_area .ending_popup .btn_exit {
    width: 345px;
    height: 170px;
    position: absolute;
    bottom: 30px;
    right: 612px;

    background-image: url("../image/game/btn_exit_small.png");
}

.game_area .ending_popup > img {
    width: 700px;
    height: 700px;
    position: absolute;
    top: 80px;
    right: 610px;
    opacity: 0;
}

.game_area .ending_popup.point_1 > img:nth-child(4) {opacity: 1;}
.game_area .ending_popup.point_2 > img:nth-child(3) {opacity: 1;}
.game_area .ending_popup.point_3 > img:nth-child(3) {opacity: 1;}
.game_area .ending_popup.point_4 > img:nth-child(2) {opacity: 1;}

.game_area .content_top .btn_sound_area{
    width: 73px;
    height: 73px;
    position: absolute;
    left: 40px;
    top: 132px;
}

.game_area .game_bg {
    width: 1920px;
    height: 1020px;

    position: absolute;

    top: 0;
    left: 0;

    background-image: url("../image/bg_game.png");
}

.game_area .game_intro {
    width: 1920px;
    height: 1020px;

    position: absolute;

    top: 0;
    left: 0;
    /*background-color: black;*/
    background-image: url("../image/bg_game_intro.png");

    z-index: 4;
}

.game_area .game_intro .btn_start_area {
    width: 343px;
    height: 136px;

    position: absolute;

    top: 745px;
    left: 789px;

    background-image: url("../image/btn_start_game.png");
}




.game_confirm_btn{
    width: 346px;
    height: 170px;
    position: absolute;
    bottom: 8px;
    left: 1550px;
    background-image: url("../image/game/btn_ok_small.png");
}





.goal_area {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1020px;
    background-image: url("../image/popup_goal.png");
}
.goal_area .button_close_area {
    position: absolute;
    top: 362px;
    right: 208px;
    width: 48px;
    height: 48px;
    background-image: url("../image/icn_x_black.png");
}

.goal_area .button_sound_area {
    position: absolute;
    top: 356px;
    left: 198px;
    pointer-events: auto;
    cursor: pointer;
}
.goal_area .button_sound_area > img {
    position: absolute;
    width: 73px;
    height: 73px;
    opacity: 1;
}
.goal_area .button_sound_area.play > img:nth-child(2){
    opacity: 0;
}

.type_game_bgm {
    width: 72px;
    height: 72px;
    position: absolute;
}

.type_game_bgm > img {
    opacity: 1;
    position: absolute;
}

.game_menu.type_game_bgm {
    top: 20px;
    right: 48px;
}


#gameContainer.bgm_play .type_game_bgm > img:nth-child(2) {
    opacity: 0;
}

.vs_3d_viewer {
    width: 1920px;
    height: 1020px;
    /*background-image: url("../image/merged_image.png");*/
    left: 0;
    top: 0;
    position: absolute;
    background: var(--pale_white, #F5F5F3);
}


.button_river .pointer {
    width: 158px;
    height: 176px;
    position: absolute;
    top: 40px;
    left: 20px;
    background-image: url("../image/pointer.png");
    pointer-events: none;
    cursor: none;
}

.popup_text_area.step1 {
    width: 1102px;
    height: 162px;

    position: absolute;
    top: 152px;
    left: 433px;

    transition: opacity 0.5s;

    background-image: url("../image/guide_character.png");
}


.game_area .button_back_area {
    width: 89px;
    height: 88px;
    position: absolute;
    top: 12px;
    left: 40px;
    background-image: url("../image/icn_back.png");

    z-index: 4;
}

.example_text_area_common{
    display: flex;
    width: 335px;
    height: 78px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 51px;
    background: #E6DDC9;
    position: absolute;
    font-family: "Noto Sans KR";
    font-size: 44px;
    font-style: normal;
    font-weight: 700;

}


#gameContainer .group_3 .example_group:nth-child(1),
#gameContainer .group_2 .example_group:nth-child(1),
#gameContainer .group_1 .example_group:nth-child(1)
{
    position: absolute;
    bottom: 216px;
    width: 423px;
    height: 376px;
    left: 436px;

}

#gameContainer .group_3 .example_group:nth-child(2),
#gameContainer .group_2 .example_group:nth-child(2),
#gameContainer .group_1 .example_group:nth-child(2)
{
    position: absolute;
    bottom: 216px;
    width: 423px;
    height: 376px;
    left: 929px;
}

#gameContainer .group_3 .example_group:nth-child(3),
#gameContainer .group_2 .example_group:nth-child(3),
#gameContainer .group_1 .example_group:nth-child(3)
{
    position: absolute;
    bottom: 216px;
    width: 423px;
    height: 376px;
    left: 1426px;
}

#gameContainer .group_3 .example_group .example_text_area_1,
#gameContainer .group_2 .example_group .example_text_area_1,
#gameContainer .group_1 .example_group .example_text_area_1{
    position: absolute;
    top: 298px;
    left: 92px;

}

#gameContainer .group_3 .example_group .example_text_area_2,
#gameContainer .group_2 .example_group .example_text_area_2,
#gameContainer .group_1 .example_group .example_text_area_2{
    position: absolute;
    top: 298px;
    left: 92px;

}

#gameContainer .group_3 .example_group .example_text_area_3,
#gameContainer .group_2 .example_group .example_text_area_3,
#gameContainer .group_1 .example_group .example_text_area_3{
    position: absolute;
    top: 298px;
    left: 92px;
}

/* #gameContainer .group_1 .example_group.select,
#gameContainer .group_2 .example_group.select,
#gameContainer .group_3 .example_group.select{
    color: #FF2C1F;
} */

.example_rectangle{
    position: absolute;
    left: 34px;
    width: 68px;
    height: 68px;
    background-image: url("../image/game/ellipse.png");
    display: flex;
    justify-content:center;
    align-items:center;
}


.example_rectangle_num_4{

    width: 28px;
    height: 35px;
    background-image: url("../image/game/4.png");
}

.example_rectangle_num{
    color: #FFF;
    font-family: Jalnan;
    font-size: 42px;
    font-style: normal;
    line-height: normal;
    position: absolute;
    top: 13px;
}

.example_rectangle_text{
    color: var(--black, #161414);
    font-family: "Noto Sans KR";
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1.28px;
    position: absolute;
    left: 155px;
    width: 800px;
}



.ending_popup{ 
    position: absolute;
    top: 0px;
    width: 1920px;
    height: 1020px;
}


.ending_popup{ 
    background-image: url("../image/game/game_result_bg.png");

}
.ending_popup.step2_success{ 
    background-image: url("../image/game/game_result_win.png");

}


.biber_state_idle { 
    position: absolute;
    left: 742px;
    top: 35px;
    width: 446px;
    height: 384px;
    background-image: url("../image/game/biber_idle.png");

}
.biber_state_0,
.biber_state_1 { 
    position: absolute;

    left: 742px;
    top: 35px;
    width: 446px;
    height: 384px;
    background-image: url("../image/game/biber_2miss.png");
}
.biber_state_2 { 
    position: absolute;

    left: 742px;
    top: 35px;
    width: 446px;
    height: 384px;
    background-image: url("../image/game/biber_1miss.png");
}

.biber_state_3 { 
    position: absolute;
    left: 742px;
    top: 35px;
    width: 446px;
    height: 384px;
    background-image: url("../image/game/biber_miss.png");
}

.fail_text_area.fail_0,
.fail_text_area.fail_1 {
    position: absolute; 
    left : 740px;
    top: 457px;
    width: 532px;
    height: 149px;
    background-image: url("../image/game/fail_1_1.png");
}

.fail_text_area.fail_2 { 
    position: absolute; 
    left : 785px;
    top: 407px;
    width: 411px;
    height: 269px;
    background-image: url("../image/game/fail_2_1.png");
}


.ending_popup.result_0,
.ending_popup.result_1{ 
    background-image: url("../image/game/popup_game_result_idle.png");

}

.ending_popup.result_2{ 
    background-image: url("../image/game/popup_game_result_idle.png");

}
.ending_popup.step1 .ending_answer_group{
    opacity: 1;
}


.ending_answer_group{ 
    position:absolute;
    left: 1252px;
    top:   324px;
    width: 445px;
    height: 260px;
    background-image: url("../image/game/union.png");
    opacity: 0;

}



.ending_answer_group  > div:nth-child(1).wrong {
    position:absolute;
    left: 92px;
    top:72px;
}

.ending_answer_group  > div:nth-child(1).correct {
    position:absolute;
    left: 92px;
    top:75px;
}


.ending_answer_group  > div:nth-child(2).wrong {
    position:absolute;
    left: 183px;
    top:72px;
}

.ending_answer_group  > div:nth-child(2).correct {
    position:absolute;
    left: 186px;
    top:75px;
}


.ending_answer_group  > div:nth-child(3).wrong {
    position:absolute;
    left: 280px;
    top:72px;
}

.ending_answer_group  > div:nth-child(3).correct {
    position:absolute;
    left: 280px;
    top:75px;
}


.ending_answer_group div > img{
    position:absolute;
    opacity: 0;
} 

.ending_answer.correct > img:nth-child(2) {
    opacity: 1;
} 

.ending_answer.wrong > img:nth-child(1) {
    opacity: 1;
} 

.ending_answer.correct{
    width: 73px;
    height: 73px;
}

.ending_answer.wrong{
    width: 80px;
    height: 80px;
}


.btn_exit,
.btn_retry{
    opacity: 0;
}


.ending_popup.step2 .btn_exit,
.ending_popup.step2 .btn_retry
{
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
}

.game_character_area{
    width: 797px;
    height: 901px;
    left: 609px;
    top: 63px;
    position: absolute;
    opacity: 0;
}
.game_character_area > div{
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}


.ending_popup.step2_success .game_character_area{
    opacity: 1;
}
.game_character_area .character_right {
    background-image: url("../image/game/result_ani.png");
}

.all_right_vector.show{
    opacity: 1;
}
.all_right_vector{
    opacity: 0;
}
.vector_1{
    position: absolute;
    left: 1175px;
    top:324px;
    width: 45px;
height: 43px;
    background-image: url("../image/game/vector_1.png");
}

.vector_2{
    position: absolute;
    left: 1199px;
    top:266px;
    width: 61px;
height: 69px;
    background-image: url("../image/game/vector_2.png");
}

.vector_3{
    position: absolute;
    left: 1274px;
    top:264px;
    width: 29px;
height: 46px;
    background-image: url("../image/game/vector_3.png");
}

.ending_popup.step0 .biber_area,
.ending_popup.step1 .biber_area,
.ending_popup.step2_fail .biber_area{
    opacity: 1;
}
.biber_area {
    opacity: 0;
}


.group_1 .example_group.select .example_text_area_common,
.group_2 .example_group.select .example_text_area_common,
.group_3 .example_group.select .example_text_area_common {
    color: #FF2C1F;
    background: #A9F3D4;
}