/* 단원평가플러스 */
.evaluation_plus_page {
    width: 1200px;
    margin: 1.75rem auto;
    box-sizing: border-box;
    padding: 0 41px;
}

.evaluation_plus_page img {
    max-width:100%;
    width: auto;
    height: auto;
}

.evaluation_plus_page img.tb-img,
.evaluation_plus_page img.mb-img {
    display: none;
}

.evaluation_plus_page .head {
    padding-bottom:30px;
    position: relative;
}

.evaluation_plus_page .head .logo {
    width: 165px;
}

.box {
    box-sizing: border-box;
    border: 1px solid #f0f0f0;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.box.bg {
    background: #f6f6f6;
}

.box h2 {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 1.5rem;
}

.box h2 img {
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 0.5rem;
}

.stepList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.stepList .step_info {
    width: calc((100% - 160px) / 3);
    background: #fff;
    box-sizing: border-box;
    border: 1px solid #f3f3f3;
    border-radius: 10px;
    padding: 1rem;
    position: relative;
}

.stepList .step_info:after {
    content:'';
    width: 26px;
    height: 26px;
    background: url('../../img/renew/evaluation_plus_data/icon-step-arrow.png') center no-repeat;
    position: absolute;
    right: calc((-80px - 26px) / 2);
    top:50%;
    transform: translateY(-50%);
}

.stepList .step_info:last-child:after {
    display: none;
}

.stepList .step_info .num {
    display: inline-block;
    background: #f47a62;
    color: #fff;
    padding: 0.5rem 1rem 0.375rem;
    border-radius: 2rem;
}

.stepList .step_info .txt {
    font-size: 17px;
    text-align: center;
    margin:1.25rem 0 0.75rem;
    line-height: 1.6;
    font-weight: 500;
}

.stepList .step_info .txt .p_br {
    display: block;
}

.select_list {
    text-align: center;
    margin-bottom: 2rem;
}

.select_list select {
    text-align: center;
    border-color: #b2b2b2;
    border-radius: 2rem;
    font-size: 16px;
    padding: 0.75rem 1rem;
    min-width: 250px;
    background-position-x: calc(100% - 1.25rem);
}

.select_list select + select {
    margin-left: 1rem;
}

.evaluation_plus_page .table_head {
    display: flex;
    align-items: center;
    border-top: 2px solid #282c34;
    border-bottom: 1px solid #282c34;
    text-align: center;

}

.table_wrap .w-num {
    width: 10%;
}

.table_wrap .w-cnt {
    width: 40%;
}

.table_wrap .w3 {
    width: 15%;
}

.table_wrap.mb {
    display: none;
}

.evaluation_plus_page .table_head li {
    font-weight: 600;
    padding: 1rem 0;
}

.evaluation_plus_page .table_list {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #d2d2d2;
}

.evaluation_plus_page .table_list.bg {
    background: #f7f7f6;
}

.evaluation_plus_page .table_list li {
    padding: 0.875rem 0;
}

.evaluation_plus_page .table_list .chk {
    margin:0 auto;
}

.evaluation_plus_page .table_wrap li span {
    font-weight:600;
    display: block;
}

.evaluation_plus_page .table_wrap li.txt-b span {
    color: #252525;
    font-weight: 700;
}

.evaluation_plus_page .table_list.bg {
    background: #f6f6f6;
}

#select_button {
    border-radius: 2rem;
    font-size: 15px;
    padding: 0.6875rem 2rem;
    margin-top: 2rem;
    margin-left: 1rem;
}

#select_finish {
    width: 100%;
}

.btn {
    border-radius: 10px;
    font-size: 16px;
    padding: 0.875rem 1rem;
    margin-top: 2rem;
}

.btn img {
    vertical-align: middle;
    margin-top: -5px;
    margin-right: 0.5rem;
}


.notice {
    margin-top: 1rem;
    color: var(--color-red);
    font-weight: 500;
}

.notice.deep-blue {
    color: var(--color-deep-blue);
}

.preview_btn,
.download_btn {
    width: 23px;
    height: 22px;
    opacity: 0.2;
    transition: 0.2s all linear;
}

.preview_btn {
    background: url('../../img/renew/common/icon-preview.png') no-repeat center center / contain;
}

.download_btn {
    background: url('../../img/renew/common/icon-download.png') no-repeat center center / contain;
}

.preview_btn:hover,
.download_btn:hover {
    opacity: 1;
    transition: 0.2s all linear;
}

.resultFileData .w3 {
    width: 7%;
}

.resultFileData .w2 {
    width: 9%;
}

.resultFileData .w-file {
    width: calc(100% - (7% * 4) - (9% * 4));
}

.resultData.btn_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap:1rem;
}

.resultData.btn_wrap .btn {
    padding: 0.75rem 2rem;
}

.resultData.btn_wrap .btn img {
    filter:brightness(0) invert(1);
    margin-top: -3px;
}

.resultFileData .download_btn {
    margin: 0 auto;
}

.goEvaluationData {
    margin-top: 2rem;
}

.empty.bg {
    background: #f6f6f6;
    box-sizing: border-box;
    padding: 2rem;
    text-align: center;
}

/* 반응형 */
@media(max-width:1200px){
    .wrap_inner {
        width: 100%;
    }

    .evaluation_plus_page {
        width: 96%;
        padding: 0;
    }

    .select_list select {
        min-width: 230px;
    }

}

@media(max-width:1024px){

    .box h2 {
        font-size: 20px;
    }

    .select_list {
        display: flex;
        align-items: center;
        margin-bottom: 0;
    }

    .select_list select {
        min-width: auto;
        width: calc((100% - (120px + 1rem)) / 3);
    }

    #select_button {
        width: 120px;
        padding: 0.6875rem 0.5rem;
        text-align: center;
        margin-top: 0;
    }
}

@media(max-width:970px){
    .box {
        padding: 2rem 1.625rem;
    }
    .stepList .step_info .txt {
        font-size: 1rem;
        letter-spacing: -1px;
    }
    .stepList {
        gap: 50px;
    }
    .stepList .step_info {
        width: calc((100% - 100px) / 3);
        letter-spacing: -0.5px;
    }
    .stepList .step_info:after {
        width: 22px;
        height: 22px;
        background-size: contain;
        right: calc((-50px - 22px) / 2);
    }

}

@media(max-width:768px){
    .evaluation_plus_page {
        width: 94%;
        margin: 1.25rem auto;
    }

    .evaluation_plus_page img.pc-img {
        display: none;
    }

    .evaluation_plus_page img.tb-img {
        display: block;
    }

    .evaluation_plus_page .head .logo {
        width: 150px;
    }

    .box h2 {
        font-size: 1.125rem;
    }

    .stepList {
        flex-wrap: wrap;
    }

    .stepList .step_info {
        width: 100%;
        text-align: center;
        padding: 1.5rem;
    }

    .stepList .step_info .txt .p_br {
        display: inline-block;
    }

    .stepList .step_info .txt {
        margin: 1rem 0 0;
    }

    .stepList .step_info:after {
        right: 50%;
        top: auto;
        bottom: calc((-50px - 22px) / 2);
        transform: translateX(50%) rotate(90deg);
    }

    .select_list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .select_list select {
        width: calc((100% - 2rem) / 3);
    }

    #select_button {
        width: 100%;
        margin-top: 1.5rem;
        margin-left: 0;
    }

    .table_wrap .w3 {
        width: 18%;
    }

    .table_wrap .w-cnt {
        width: calc(100% - (18% * 4));
    }

    .table_wrap.pc {
        display: none;
    }

    .table_wrap.mb {
        display: block;
    }

    .table_wrap .w-file {
        width: calc(100% - 18%);
        text-align: left;
    }

    .table_wrap .table_head .w-file {
        text-align: center;
    }

    #select_file_list_mb .file_name {
        display: block;
        font-weight: 600;
        font-size: 15px;
    }

    #select_file_list_mb .file_question,
    #select_file_list_mb .file_btn {
        display: flex;
        gap: 1rem;
        margin-top: 0.75rem;
    }

    .resultFileData .download_btn {
        margin: 0;
    }

    #select_file_list_mb .file_question span {
        display: inline-block;
        padding: 3px 8px;
        border-radius: 1rem;
        border: 1px solid #584b90;
        color: #584b90;
        font-size: 90%;
        margin-right: 5px;
    }

}

@media(max-width:640px){

    .select_list select {
        width: 100%;
    }

    .select_list select + select {
        margin-left: 0;
        margin-top: 10px;
    }

    .select_list select {
        font-size: 14px;
    }

    .btn {
        font-size: 15px;
    }

    .btn img {
        width: 16px;
    }

    .table_wrap.mb .w3 {
        width: 60px;
    }

    .table_wrap .w-file {
        width: calc(100% - 60px);
    }

    .preview_btn, .download_btn, .scrap_btn {
        width: 20px;
        height: 20px;
    }
}

@media(max-width:480px){
    .evaluation_plus_page .head {
        padding-bottom: 1.5rem;
    }

    .evaluation_plus_page img.tb-img {
        display: none;
    }

    .evaluation_plus_page img.mb-img {
        display: block;
    }

    .evaluation_plus_page .head .logo {
        width: 135px;
    }

    .box {
        padding: 1.625rem 1.25rem 1.25rem;
    }

    .box h2 {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .box h2 img {
        width: 20px;
    }

    .stepList .step_info {
        padding: 1.5rem 0.5rem;
    }

    .stepList .step_info .txt {
        font-size: 15px;
    }

    .stepList .step_info .num {
        font-size: 13px;
    }

    .stepList {
        gap: 40px;
    }

    .stepList .step_info:after {
        bottom: calc((-40px - 22px) / 2);
    }

    #select_button {
        font-size: 14px;
    }

    .btn {
        font-size: 14px;
        padding: 0.75rem 1rem;
    }

    .btn img {
        margin-top: -3px;
    }

    #select_file_list_mb .file_name {
        font-size: 14px;
        letter-spacing: -0.5px;
    }

    #select_file_list_mb .file_question, #select_file_list_mb .file_btn {
        gap: 0.75rem;
    }

    #select_file_list_mb .file_question span {
        padding: 3px 6px 1px;
    }

    .resultData.btn_wrap {
        gap: 0.75rem;
    }

    .resultData.btn_wrap .btn {
        padding: 0.625rem 1rem;
    }

}

@media(max-width:380px){
    .stepList .step_info .txt .p_br {
        display: block;
    }

    .table_wrap.mb .w3 {
        width: 50px;
    }

    .table_wrap .w-file {
        width: calc(100% - 50px);
    }

    .resultData.btn_wrap .btn img {
        margin-right: 0.25rem;
    }

}