.qna_wrap {
    width: 100%;
    position: relative;
    min-height: 50vh;
}

.qna_wrap ul {
    width: 100%;
    min-height: 100vh;
}

.qna_wrap ul li {
    width: 100%;
    overflow: hidden;
    text-align: left;
    border-bottom: 1px solid #EEEEEE;
    position: relative;
}

.qna_wrap ul li.empty_list {
    border: none;
    height: 50vh;
    text-align: center;
    font-size: 20px;
    line-height: 80vh;
}

.qna_wrap ul li > a > img {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 20px;
    left: 20px;
}

.qna_wrap ul li > a > .subj {
    position: relative;
}

.qna_wrap ul li > a > .subj img {
    width: 24px;
    height: 24px;
    vertical-align: -5px;
}

.qna_wrap ul li > a {
    display: block;
    width: calc(100% - 120px);
    height: 100%;
    margin-left: 40px;
    padding: 20px 0 20px 20px;
    line-height: 30px;
    font-size: 16px;
}

.qna_wrap ul li > .qna_a_list {
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    width: 80px;
    text-align: center;
}

.qna_wrap ul li > .qna_a_list > a,
.qna_wrap ul li > .qna_a_list > p {
    font-size: 12px;
    line-height: 20px;
}

.qna_wrap ul li > .qna_a_list > a {
    color: #3278FF;
}

.qna_wrap ul li > .qna_a_list > P {
    color: #CCC;
}

.qna_wrap .qna_q_box,
.qna_wrap .qna_a_box {
    width: calc(100% - 60px);
    padding: 15px;
    margin: 50px 30px 30px 30px;
    border: 1px solid #EEE;
    border-radius: 10px;
    font-size: 14px;
    position: relative;
}

.qna_wrap .qna_q_box::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    background: url('../img/ico_faq_q.svg') no-repeat center/cover;
    width: 30px;
    height: 30px;
}

.qna_wrap .qna_a_box::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    background: url('../img/ico_faq_a.svg') no-repeat center/cover;
    width: 30px;
    height: 30px;
}

.qna_wrap .qna_q_box .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.qna_btn_wrap {
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    background: #1d2088;
}

.qna_btn_wrap a,
.qna_btn_wrap input {
    width: 100%;
    height: 55px;
    font-size: 16px;
    text-align: center;
    line-height: 55px;
    float: left;
    display: block;
    color: #FFF;
    position: relative;
    font-weight: normal;
}

.qna_write .qna_btn_wrap a,
.qna_write .qna_btn_wrap input {
    width: 50%;
}

.qna_write .qna_wrap .qna_btn_wrap a:first-child::after,
.qna_write .qna_wrap .qna_btn_wrap a:first-child::after {
    content: 'ㅣ';
    color: #FFFFFF66;
    position: absolute;
    font-weight: 300;
    right: -7px;
    z-index: 100;
}

.qna_btn_wrap a.btn_cancel {
    background: #bbbbbb;
}

.qna_write_btn {
    width: 50px;
    height: 50px;
    box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    background: #1d2088;
    position: fixed;
    z-index: 1000;
    left: 20px;
    opacity: 1;
    bottom: calc(env(safe-area-inset-bottom) + 80px);
    transition: all 0.6s cubic-bezier(.5, -0.02, 0, .99);
    -webkit-transition: all 0.6s cubic-bezier(.5, -0.02, 0, .99);
}

.qna_write_btn a {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #FFF;
    line-height: 1.2;
    padding-top: 9px;
}

.down .qna_write_btn {
    bottom: calc(env(safe-area-inset-bottom) + 20px);
}

.lastScroll .qna_write_btn {
    opacity: 0;
}

.tbl_custom {
    width: 90%;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}

.tbl_custom_th {
    width: 80px;
    padding: 8px 0;
    text-align: center;
    border-radius: 5px;
    background: #f2f3f5;
    border: 1px solid #EEE;
    float: left;
    margin-bottom: 10px;
}

.tbl_custom_td {
    width: calc(100% - 90px);
    padding: 8px 0;
    border-radius: 5px;
    border: 1px solid #EEE;
    float: left;
    margin: 0 0 10px 10px;
}

.tbl_custom_td input,
.tbl_custom_td textarea {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    resize: none;
    padding: 0 10px;
}

.tbl_custom_td textarea {
    min-height: 300px;
}

.tbl_custom_td span {
    color: #EB0000;
}

.scr_td span {
    color: #EB0000;
    padding-left: 15px;
}

.scr_td input {
    display: none;
}

.scr_td input + label {
    display: inline-block;
    width: 19px;
    height: 19px;
    border-radius: 5px;
    margin-left: 10px;
    border: 1px solid #e4e4e4;
    background: url('../img/ico_check_gray.svg') no-repeat center/cover;
    transition: all 0.2s ease-in;
}

.scr_td input:checked + label {
    border-color: #EB0000;
    background-image: url('../img/ico_check_red.svg');
}

.scr_number_td {
    margin-left: 90px;
    clear: both;
    position: absolute;
    bottom: 0;
    display: none;
    margin-bottom: 0;
}

.scr_th {
    margin-bottom: 0;
}

.qa_tap {
    width: 100%;
    padding: 20px;
    overflow: hidden;
}

.qa_tap a {
    float: left;
    display: block;
    width: 50%;
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    border: 1px solid #CCC;
    color: #A0A0A0;
}

.qa_tap a.active {
    background: #FF671D;
    color: #FFF;
    font-weight: bold;
    border: 1px solid #FF671D;
}

.qa_tap a:first-child {
    border-radius: 5px 0 0 5px;
}

.qa_tap a:last-child {
    border-radius: 0 5px 5px 0;
}


.faq_li {
    width: calc(100% - 40px);
    margin: 20px auto;
    min-height: 50vh;
}

.faq_li li {
    border-bottom: 1px solid #EEEEEE;
    padding-top: 15px;
    padding-bottom: 15px;
    line-height: 25px;
    font-size: 14px;
    font-weight: bold;
}

.faq_q img {
    width: 25px;
    height: 25px;
    margin-right: 3px;
}

.faq_a {
    padding-left: 30px;
    padding-right: 30px;
    background: #f2f3f5;
    display: none;
}

.faq_a * {
    font-size: 14px !important;
    color: #202020 !important;
    font-family: 'Noto Sans KR', sans-serif !important;
    font-weight: normal !important;
}