

/** 프로젝트 컨테이너 ---------------- */
#container {
    display: flex; 
    justify-content: center; 
    width: 100%; 
    height: 100%; 
    align-items: center; 
    background-color: #dbdbdb;
}

.wrap {
    background-color: white;
}

.active {
    display: flex !important;
}

.deactive {
    display: none !important;
}

.activity {
    display: flex; 
    width: 1920px; 
    height: 1020px;
}





/** 키보드 ------------------- */
button {
    background-color: transparent;
    border: none;
    padding: 0;
    display: flex;
    cursor: pointer;
}

.keyboard{
    width: 492px; 
    height: 634px; 
    position: absolute; 
    left: 764px; 
    top: 243px; 
    display: flex; 
    background-image: url(../img/common/keyboard_box.png);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10000;
    gap: 30px;
}

.key_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 93%;
}

.keyboard button{
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 118px; 
    height: 118px; 
    font-size: 90px; 
    color: #383838; 
    position: relative; z-index: 1; 
    font-family: 'Bbatang';
}

.keyboard button.black{
   color: white;
}

.keyboard button:before{ 
    content: ''; 
    display: block; 
    width: 118px; 
    height: 118px; 
    border-radius: 27px; 
    background-color: #fff; 
    position: absolute; 
    left: 0; top: 0; z-index: -1;
}

.keyboard button.black:before {
    background-color: #6A6A6A;
}

.keyboard button.black::after {
    background-color: #545454;
}


.keyboard button:after{
    content: ''; 
    display: block; 
    width: 118px; 
    height: 118px;
    border-radius: 27px; 
    background-color: #D2D2D2; 
    box-shadow: 0px 3.6px 7.2px 0px rgba(0, 0, 0, 0.25), 0px 3.6px 3.6px 0px rgba(255, 255, 255, 0.25) inset; 
    position: absolute; left: 0; top: 5px; z-index: -2;
}





/** 공용 클래스---------------- */
.pointer {
    cursor: pointer;
}

.mulgan {
    font-family: "Malgun" !important;
}

.mulgan_bd {
    font-family: "Malgunbd" !important;
}

.batang {
    font-family: "Bbatang" !important;
}

:root {
    --font-weight-100: 100;
    --font-weight-200: 200;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
}

.font-weight-400 {
    font-weight: var(--font-weight-400);
}

.font-weight-700 {
    font-weight: var(--font-weight-700);
}




/** 선택형 문제 ----------------- */
.question_container {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
}

.text_container {
    width: 100%;
    display: flex; 
    align-items: center;
}

.question_text {
    height: 54px;
    font-size: 32px;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.numbering_container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 40px;
    height: 40px;
    background-color: #005B09;
    border-radius: 100%;
    color: white;
    font-size: 30px;
    margin-left: 50px;
    margin-right: 10px;
    font-family: "Malgunbd"!important;
    line-height: 1.2;
}

.numbering_dumy {
    width: 40px;
    height: 40px;
    margin-left: 50px;
    margin-right: 10px;
}

.clickBox {
    width: 222px;
    height: 60px;
    border-radius: 20px;
    border: 5px solid #5090EA;
    color: #B73751;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


.click-img-div {
    position: absolute;
    opacity: 1;
    margin-top: 3px;
    background-size: cover;
    background-position: center;
}

.click-answer-div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-family: "Malgunbd"!important;
    opacity: 0;
    line-height: 80px;
}


/** 입력형 문제 */
.writeBox {
    width: 189px;
    height: 78px;
    border-radius: 28px;
    /* border: 8px solid #994AF4; */
    border: 7px solid rgba(191, 199, 218, 1);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    z-index: 2;
    text-align: center;
    cursor: pointer;
    padding: 0px;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    outline: none;
    font-family: "Bbatang";
}

.embBox {
    width: 189px;
    height: 78px;
    border-radius: 28px;
    /* border: 8px solid #994AF4; */
    border: 7px solid rgba(191, 199, 218, 1);
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 62px;
    z-index: 2;
    text-align: center;
    padding: 0px;
    opacity: 1;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    outline: none;
    font-family: "Bbatang";
}

.write-img-div {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.write-answer-div {
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    width: 100%;
    height: 80px;
    text-align: center;
    line-height: 80px;
}


.restart_btn {
    position: absolute; 
    top: 900px; 
    left: 1690px;
    cursor: pointer;
}


/** 식 형태 디자인 */
.calcSpace {
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.middleLine {
    background-color: rgba(34, 34, 34, 1);
    width: 438px;
    height: 6px;
    border-radius: 6px;
    position: absolute;
}



/** 탭 형식 디자인 */
.tab_container {
    position: relative;
    top: -3px;
    left: -3px;
    border-top-left-radius: 30px; 
    border-top-right-radius: 30px; 
    width: 660px; 
    display: flex; 
    align-items: center;
    justify-content: center; 
    height: 65px;
}

.tab_btn {
    display: flex; 
    justify-content: center;
    align-items: center;  
    cursor: pointer;
    font-size: 28px;
    font-family: "Malgunbd"!important;
    height: 68px;
}

/** 인포 페이지 디자인 */
.InfoController {
    position: fixed;
    height: 60px;
    border-radius: 40px;
    border: 3px solid #111; opacity: 0.8;
    background: #222;
    transform: translateX(-50%);
    margin-left: 17%;
    margin-top: 935px;
}