/* 공통 */
._none {
    display: none;
}
.onlyPc {
    display: none;
}
/* loading */
#loadingWrap {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 8999;
    background: white;
}
#loadingBox2{
    width: 100%;
    position: absolute;
    top: 50%;
}
#loading2 {
    width: 180px;
    height: 36px;
    background-image: url(../assets/img/logo.png);
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size:cover;
    margin: 0 auto;
    text-align: center;
    position: relative;
    color: #1d995a;
    font-family: 'NotoSansMedium';
    font-size: 20px;
    margin-top: -60px;
}
/* nav */
#acuonNav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8000;
    width: 100%;
}
.navWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 64px;
    color: var(--text-color);
    background: #fff;
    border-bottom: 1px solid #dbdbdb;
    text-align: center;
    font-size: 14px;
}
.navWrap li:nth-child(1) {
    width: 44%;
}
.navWrap li:nth-child(2) {
    width: 44%;
}
.navWrap li:nth-child(3) {
    width: 12%;
}
.navTab {
    position: relative;
    height: 100%;
    cursor: pointer;
}
.navTab div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.lineWrap {
    position: relative;
    width: 22px;
    height: 16px;
}
.navLine {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #666666;
    border-radius: 5px;
}
.hamLine0 {
    top: 0px;
}
.hamLine1 {
    top: 6px;
    width: 80% !important;
}
.hamLine2 {
    top: 12px;
}
.navTabTouched {
    font-weight: bold;
    letter-spacing: 1.3px;
}
/* 문제 프로세스 게이지 */
.mbtiGuageWrap {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    width: 100%;
    margin-top: 64px;
    padding: 40px 10% 30px;
    /* 그라데이션 */
    background: linear-gradient(360deg, rgba(255,255,255,0), rgba(255,255,255,1) 20%);
}
.patiTimeGuageWrap {
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 64px;
    margin-right: 5px;
    padding: 20px 10% 40px;
    /* 그라데이션 */
    background: linear-gradient(360deg, rgba(255,255,255,0), rgba(255,255,255,1) 20%);
}
.timerWrap {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 18px;
}
.timeFence {
    border: 1px solid var(--ck-green-color);
}
.whatTime {
    display: flex;
}
.timerHours {
    margin-right: 3px;
}
.guageBarWrap {
    display: flex;
}
.guageBarBg {
    position: relative;
    width: 100%;
    height: 14px;
    margin-right: 25px;
    background: #dbdbdb;
    border-radius: 20px;
}
.guageBar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    min-width: 5px;
    height: 100%;
    background: var(--main-green-color);
    border-radius: 20px;
}
.chHead {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 39px;
    background-image: url(../assets/img/face_0.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.progressNum {
    color: #3c3c3c;
    font-weight: bold;
    font-size: 13px;
    white-space: nowrap;
}
/* 선택지들 */
.mbtiWrap {
    /* 문제들 모두 감싸는 wrap */
    margin-top: 125px;
}
.questWrap {
    margin-top: 60px;
    transition: opacity .5s ease-in-out;
}
.inactive {
    opacity: 0.3;
}
.instructionT {
    margin-bottom: 30px;
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
    word-break: keep-all;
}
.radioWrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    /* 라디오선택지 간격좁게 */
    /* max-width: 340px;
    margin: 0 auto 30px; */
}
.ck0 {
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ff9f9f;
}
.ck1 {
    position: relative;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 2px solid #ff9f9f;
}
.ck2 {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #c67dff;
}
.ck3 {
    position: relative;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    border: 2px solid #36a800;
}
.ck4 {
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #36a800;
}
.ckinput {
    position: absolute;
    display: none;
}
.circleck {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.circleOff {
    background: white;
}
.circleOn_1 {
    background: #ff9f9f;
}
.circleOn_2 {
    background: #ff9f9f;
}
.circleOn_3 {
    background: #c67dff;
}
.circleOn_4 {
    background: #36a800;
}
.circleOn_5 {
    background: #36a800;
}
.cktext {
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    top: 130%;
    color:var(--text-dark-color);
    font-family: 'AcuonHeadline';
    font-size: 12px;
    white-space: nowrap;
}
.instructionP {
    margin-bottom: 16px;
    color: var(--text-color);
    text-align: center;
    font-size: 15px;
    line-height: 1.3;
    word-break: keep-all;
}
.picturesWrap {
    margin: 0 auto;
}
.picture {
    max-width: 300px;
    width: 100%;
    height: 198px;
    margin: 0 auto 25px;
    color: transparent;
    border: none;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    background-position: center;
}
.pictureCk {
    border: 6px solid #71e800;
}
.nextBtn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    color: white;
    font-family: 'AcuonHeadline';
    font-size: 20px;
    background-color: var(--main-green-color);
}
.resultBtn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    color: white;
    font-family: 'AcuonHeadline';
    font-size: 20px;
    background-color: var(--main-green-color);
}
/* pati */
.patiWrap {
    margin-top: 174px;
}
#testPatiPage{
    width: 90%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
}