@charset "utf-8";

/* 인터뷰 진행화면 */

.page-interview {
    width: 100vw;
    height: 100vh;
    background: url(/imgs/interview/bg_interview.png) center center no-repeat;
    background-size: cover;
}

.page-interview #contentSection {
    max-width: 1440px;
    padding: 0;
}

.page-interview .btn-list {
    position: fixed;
    right: 50px;
    bottom: 50px;
    z-index: 2;
    display: flex;
}

.page-interview .btn-list>li {
    width: 70px;
    height: 70px;
    margin-left: 10px;
    padding: 16px 8px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    line-height: 1.2;
    transition: all 0.25s;
    cursor: pointer;
}

.page-interview .btn-list>li:hover {
    transform: translateY(-6px);
}

.page-interview .btn-list .btn-screen {
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.page-interview .btn-list .btn-statement {
    background: #297DE4;
    box-shadow: 0px 10px 15px rgba(41, 125, 228, 0.15);
}

.page-interview .btn-list .btn-exit {
    background: #0F4384;
    box-shadow: 0px 10px 15px rgba(15, 67, 132, 0.2);
}

.page-interview .interview-step {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.page-interview .interview-step>li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    margin: 0 30px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.25);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.2;
}

.page-interview .interview-step>li:not(:first-of-type):before {
    content: "";
    position: absolute;
    top: 31px;
    left: -60px;
    display: inline-block;
    width: 60px;
    height: 1px;
    background: rgba(0, 0 , 0, 0.25);
}

.page-interview .interview-step>li.active {
    background: rgba(255, 255, 255, 0.8);
    color: #297DE4;
    font-weight: 700;
}

.page-interview .interview-step>li.active:before,
.page-interview .interview-step>li.completed:before {
    background: rgba(255, 255, 255, 0.8);
}

.page-interview .interview-step>li.completed {
    font-size: 0;
    background: rgba(255, 255, 255, 0.8) url(/imgs/common/ico_check_primary.svg) center center no-repeat;
}

.page-interview .interview-container {
    /* padding-top: 260px; */
    padding-top: 27.71vh;
}

.page-interview .interview-container .inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.page-interview .interview-container .inner .statement-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 700px;
    height: 395px;
    background: #fff;
    z-index: 9;
}

.page-interview .interview-container .inner .statement-wrap .statement {
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.page-interview .interview-container .inner .statement-wrap .statement::-webkit-scrollbar {
    width: 9px;
}

.page-interview .interview-container .inner .statement-wrap .statement::-webkit-scrollbar-thumb {
    background-color: rgba(66, 66, 66, 0.25);
    border: 1px solid rgb(255, 255, 255);
    border-radius: 5px;
    background-clip: padding-box;
}

.page-interview .interview-container .inner .statement-wrap .statement::-webkit-scrollbar-track {
    background-color: transparent;
}

.page-interview .interview-container .inner .statement-wrap .btn-statement-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    color: #fff;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
}

.page-interview .interview-container .inner .statement-wrap .btn-statement-close:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 2px;
    height: 15px;
    transform: translate(-50%, -50%) rotate(45deg);
    background: #fff;
}

.page-interview .interview-container .inner .statement-wrap .btn-statement-close:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-block;
    width: 2px;
    height: 15px;
    transform: translate(-50%, -50%) rotate(-45deg);
    background: #fff;
}

.page-interview .interview-container .inner.full .statement-wrap {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.page-interview .interview-wrap {
    position: relative;
    width: 700px;
    height: 395px;
    border: 3px solid #fff;
}

/*.page-interview .interview-wrap.interviewee-wrap {*/
/*    margin-left: auto;*/
/*}*/

.page-interview .interview-wrap .interview {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.page-interview .interview-txt {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-start;
    width: calc(100% - 40px);
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    color: #fff;
    line-height: 1.4;
}

.page-interview .interview-txt span.num {
    width: 35px;
    font-weight: 700;
}

.page-interview .interview-txt p.txt {
    width: calc(100% - 35px);
}

.page-interview .interview-wrap .btn-statement {
    position: absolute;
    bottom: -46px;
    left: -3px;
    margin: 0;
    font-weight: 700;
}

.page-interview .interviewer-wrap.full {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    border: 0;
}

.page-interview .interviewer-wrap.full .btn-statement {
    display: none;
}

.page-interview .interviewer-wrap.full .interview>img {
    width: 100%;
}

.page-interview .interviewer-wrap.full .interview-txt {
    position: fixed;
    left: 50%;
    bottom: 135px;
    width: auto;
    max-width: 1000px;
    padding: 20px 30px;
    font-size: 20px;
}

.page-interview .interviewer-wrap.full .interview-txt span.num {
    width: 50px;
}

.page-interview .interviewer-wrap.full .interview-txt span.num .txt {
    width: calc(100% - 50px);
}

.page-interview .interviewer-wrap.full.intro .interview-txt {
    white-space: nowrap;
}

.page-interview .interviewer-wrap.full.intro .interview-txt .txt {
    text-align: center;
}

.page-interview .interviewer-wrap.full ~ .btn-wrap {
    position: fixed;
    left: 50%;
    bottom: 70px;
    width: auto;
    z-index: 2;
    transform: translateX(-50%);
}

.page-interview .interview-container .status-list {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
}

.page-interview .interview-container .status-list .mic {
    width: 36px;
    height: 36px;
    margin-right: 4px;
    background: rgba(255, 255, 255, 0.8) url(/imgs/interview/ico_mic_off.svg) center center no-repeat;
    border-radius: 18px;
}

.page-interview .interview-container .status-list .mic.on {
    background: rgba(255, 255, 255, 0.8) url(/imgs/interview/ico_mic_on.svg) center center no-repeat;
}

.page-interview .interview-container .status-list .onair {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    width: 92px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.8);
    color: #999;
    font-weight: 600;
    line-height: 36px;
}

.page-interview .interview-container .status-list .onair.on {
    color: #FF5555;
    font-weight: 600;
}

.page-interview .interview-container .status-list .onair.on:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    margin-right: 4px;
    background: #FF5555;
}

.page-interview .timer-wrap {
    position: fixed;
    top: 50px;
    right: 50px;
    z-index: 2;
}

.page-interview .timer-wrap .base-timer {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.page-interview .timer-wrap .base-timer__svg {
    transform: scaleX(-1);
}

.page-interview .timer-wrap .base-timer__circle {
    fill: none;
    stroke: none;
}

.page-interview .timer-wrap .base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: rgba(0, 0, 0, 0.18);
}

.page-interview .timer-wrap .base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

.page-interview .timer-wrap .base-timer__path-remaining.green {
    color: #2ADD7D;
}

.page-interview .timer-wrap .base-timer__path-remaining.orange {
    color: #FAAE3C;
}

.page-interview .timer-wrap .base-timer__path-remaining.red {
    color: #FE6161;
}

.page-interview .timer-wrap .base-timer__label {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #2AB66B;
    font-size: 30px;
    font-weight: 900;
    transition: 1s linear all;
}

.page-interview .timer-wrap .base-timer__label.green {
    color: #2AB66B;
}

.page-interview .timer-wrap .base-timer__label.orange {
    color: #DE901C;
}

.page-interview .timer-wrap .base-timer__label.red {
    color: #DB2D2D;
}

.page-interview .timer-wrap .base-timer__label:before {
    margin-bottom: 5px;
    color: #555;
    font-size: 16px;
    font-weight: 400;
}

.page-interview .timer-wrap.repair-timer .base-timer__label:before {
    content: "답변 준비";
}

.page-interview .timer-wrap.answer-timer .base-timer__label:before {
    content: "답변 시간";
}

.page-interview .btn-wrap {
    width: 100%;
    margin-top: 50px;
}

.page-interview .btn-wrap .btn {
    min-width: 150px;
}

.page-interview .btn-end {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 500;
}

@media (max-width: 1440px) {
    .page-interview #contentSection {
        padding: 0 10px;
    }
    .page-interview .interview-wrap {
        width: calc(50% - 15px);
        height: 56.42%;
    }
    .page-interview .interview-container .inner.full .statement-wrap {
        top: 46%;
        height: 42vh;
    }
    .page-interview .btn-list {
        right: 10px;
    }
    .page-interview .timer-wrap {
        top: 40px;
        right: 10px;
    }
}

/* AI 모의면접이란 */

.page-interview-intro h4.intro-tit {
    margin-bottom: 60px;
    padding-top: 40px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
}

.page-interview-intro .intro-container {
    padding: 50px;
    border-radius: 30px;
    background: #EAF5FF;
}

.page-interview-intro .intro-container .about-interview {
    display: flex;
    align-items: center;
    padding: 50px 50px 50px 60px;
    border-radius: 24px;
    background: #FFF;
}

.page-interview-intro .intro-container .about-interview img {
    margin-right: 60px;
}

.page-interview-intro .intro-container .about-interview .txt-wrap>p {
    font-size: 18px;
    line-height: 1.4;
}

.page-interview-intro .intro-container .about-interview .txt-wrap>p span {
    color: #297DE4;
    font-weight: 700;
}

.page-interview-intro .intro-container .txt-wrap ul li {
    margin-bottom: 20px;
    padding-left: 0.8em;
    text-indent: -0.8em;
    font-size: 18px;
    line-height: 1.4;
    word-break: keep-all;
}

.page-interview-intro .intro-container .txt-wrap ul li:last-of-type {
    margin-bottom: 0;
}

.page-interview-intro .intro-container .txt-wrap ul li::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: -2px 8px 0 0;
    border-radius: 2px;
    background: #297DE4;
    vertical-align: middle;
}

.page-interview-intro .intro-container .txt-wrap ul li span {
    color: #EF5D5D;
    font-weight: 700;
}

.page-interview-intro .intro-container .about-interview .txt-wrap .btn-wrap {
    justify-content: flex-start;
    margin-top: 50px;
}

.page-interview-intro .intro-container .about-interview .txt-wrap .btn-wrap .btn {
    width: 200px;
}

/* 면접 시 유의사항 */

.page-interview-intro .card-list {
    display: flex;
    justify-content: center;
    column-gap: 20px;
}

.page-interview-intro .card-list>li {
    padding: 40px 50px;
    background: #FFF;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 6px 20px 0px rgba(41, 125, 228, 0.10);
}

.page-interview-intro .card-list>li img {
    margin-bottom: 45px;
}

.page-interview-intro p.des {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
}

.page-interview-intro p.des>span {
    color: #297DE4;
    font-weight: 700;
}

.page-interview-intro .intro-container ~ .btn-wrap {
    margin-top: 60px;
}

.page-interview-intro .intro-container ~ .btn-wrap .size-l {
    min-width: 140px;
}

/* 영상 테스트 */

.page-interview-intro .intro-container .test-wrap {
    padding: 50px;
    border-radius: 24px;
    background: #FFF;
}

.page-interview-intro .cam-wrap {
    position: relative;
    width: 768px;
    height: 432px;
    margin: 0 auto;
}

.page-interview-intro .cam-wrap .cam {
    width: 100%;
    height: 100%;
}

.page-interview-intro .cam-wrap .cam>img {
    width: 100%;
}

.page-interview-intro .cam-wrap .frame {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    background: url(/imgs/interview/img_frame.svg) center center no-repeat;
}

.page-interview-intro .mic-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 768px;
    margin: 25px auto 40px auto;
}

.page-interview-intro .mic-wrap .progress {
    position: relative;
    width: calc(100% - 63px);
    height: 20px;
}

.page-interview-intro .mic-wrap .progress .progress-bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: url(/imgs/interview/bg_mic_progress.svg) center center no-repeat;
}

.page-interview-intro .mic-wrap progress {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    height: 100%;
}

.page-interview-intro .mic-wrap progress::-webkit-progress-bar {
    background: transparent;
}

.page-interview-intro .mic-wrap progress::-webkit-progress-value {
    background: linear-gradient(90deg, #DFF5FF 0%, #007BEC 78.65%);
}

.page-interview-intro .mic-wrap progress::-moz-progress-bar {
    background: transparent;
}

.page-interview-intro .mic-wrap .btn-mic {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: url(/imgs/interview/ico_test_mic_off.svg) center center no-repeat;
    box-shadow: 0px 3px 5px rgba(13, 37, 98, 0.13);
}

.page-interview-intro .mic-wrap .btn-mic.on {
    background: url(/imgs/interview/ico_test_mic_on.svg) center center no-repeat;
}

.page-interview-intro .mic-wrap ~ .btn-wrap {
    margin-top: 60px;
}

.page-interview-intro .mic-wrap ~ .btn-wrap a.btn {
    width: 150px;
}

/* 면접관 / 면접유형 선택 */

.page-interview-intro .card-list.interviewer-list>li {
    border: 1.5px solid #fff;
    transition: border 0.25s ease-out;
}

.page-interview-intro .card-list.interviewer-list>li:hover {
    border: 1.5px solid #297DE4;
}

.page-interview-intro .card-list.interviewer-list>li.selected {
    border: 1.5px solid #297DE4;
    box-shadow: 0px 6px 20px 0px rgba(41, 125, 228, 0.30);
}

.page-interview-intro .card-list.interviewer-list>li.selected p.tit {
    color: #297DE4;
}

.page-interview-intro .card-list>li p.tit {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

/* 서류기반 면접 정보 입력 */

/* 2023 */
.page-interview-intro .simulator-container .btn-wrap.space-between {
    justify-content: space-between;
}

/* 기존 css */
.page-interview-intro h3 ~ p.con-tit {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
}

.page-interview-intro .input-container .input-wrap {
    margin-top: 40px;
}

.page-interview-intro .input-container .tit-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.page-interview-intro .input-container .tit-wrap .tit {
    font-size: 18px;
    font-weight: 700;
}

.page-interview-intro .input-container .tit-wrap .tit i {
    color: #888;
    font-weight: 400;
}

.page-interview-intro .input-container .tit-wrap .tit span {
    margin-left: 5px;
    color: #888;
    font-size: 16px;
    font-weight: 400;
}

.page-interview-intro .input-container .tit-wrap .tit.must i,
.page-interview-intro .input-container .tit-wrap .tit.must span {
    color: #ff6767;
}

.page-interview-intro .input-container .tit-wrap a.btn-plus:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 5px;
    background: url(/imgs/common/ico_plus.svg) center center no-repeat;
}

.page-interview-intro .input-container .input-list>li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    padding: 15px 100px 15px 30px;
    border-radius: 8px;
    background: #f7f8f9;
}

.page-interview-intro .input-container .input-list>li:last-of-type {
    margin-bottom: 0;
}

.page-interview-intro .input-container .input-list>li .row {
    display: flex;
    flex-wrap: wrap;
}

.page-interview-intro .input-container .input-list>li .row .input {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 8px 15px 8px 0;
}

.page-interview-intro .input-container .input-list>li .row .input:last-of-type {
    margin-right: 15px;
}

.page-interview-intro .input-container .input-list>li .row .input span {
    margin-bottom: 5px;
}

.page-interview-intro .input-container .input-list>li .input .width-size-s {
    width: 200px;
}

.page-interview-intro .input-container .input-list>li .input .width-size-m {
    width: 350px;
}

.page-interview-intro .input-container .input-list>li .input .width-size-l {
    width: 500px;
}

.page-interview-intro .input-container .input-list>li .btn-delete {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    color: #555;
}

.page-interview-intro .input-container .input-list>li .btn-delete:before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: -2px 5px 0 0;
    background: url(/imgs/common/ico_close_sm.svg) center center no-repeat;
}

.page-interview-intro .input-container .btn-wrap {
    margin-top: 50px;
}

/* 제시문 면접 정보 입력 */

.page-interview-intro .statement-select {
    margin-bottom: 50px;
    padding: 40px 20px;
    border-top: 2px solid #1A4478;
    background: #F3F5F6;
}

.page-interview-intro .statement-select .tit {
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.page-interview-intro .statement-select .row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-interview-intro .statement-select .row select {
    min-width: 150px;
    margin-right: 5px;
}

.page-interview-intro .statement-container .default-wrap {
    max-width: 768px;
    margin: 0 auto;
    padding: 60px 10px;
    border-radius: 20px;
    border: 1px dashed #bbb;
}

.page-interview-intro .statement-container .default-wrap .des {
    text-align: center;
}

.page-interview-intro .statement-container .default-wrap .des:before {
    content: "";
    display: block;
    width: 66px;
    height: 66px;
    margin: 0 auto 30px auto;
    background: url(/imgs/interview/ico_statement_select.svg) center center no-repeat;
}

.page-interview-intro .statement-container .btn-wrap {
    margin-top: 50px;
}

.page-interview-intro .statement-list-wrap {
    position: relative;
}

.page-interview-intro .statement-list-wrap dl {
    position: sticky;
    top: 30px;
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 130px;
    padding: 15px 30px;
    border-radius: 15px;
    background: #E6EFFA;
}

.page-interview-intro .statement-list-wrap dl dt {
    margin-bottom: 5px;
    color: #4C82C6;
    font-size: 15px;
}

.page-interview-intro .statement-list-wrap dl dd {
    color: #4C82C6;
    font-size: 24px;
    font-weight: 700;
}

.page-interview-intro .statement-list-wrap .statement-list {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.page-interview-intro .statement-list-wrap .statement-list>li {
    width: 100%;
    margin-bottom: 40px;
}

.page-interview-intro .statement-list-wrap .statement-list>li:last-of-type {
    margin-bottom: 0;
}

.page-interview-intro .statement-list-wrap .statement-list>li .type {
    display: inline-block;
    height: 30px;
    margin-bottom: 15px;
    padding: 0 15px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 700;
    line-height: 30px;
}

.page-interview-intro .statement-list-wrap .statement-list>li .type.type01 {
    background: #E5F1FF;
    color: #297DE4;
}

.page-interview-intro .statement-list-wrap .statement-list>li .type.type02 {
    background: #EBF9E6;
    color: #77D756;
}

.page-interview-intro .statement-list-wrap .statement-list>li .box {
    max-height: 400px;
    padding: 10px;
    border: 1px solid #ccc;
    overflow-y: auto;
    overscroll-behavior: none;
}

.page-interview-intro .statement-list-wrap .question-list>li {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 12px;
    padding: 15px 20px;
    border-radius: 12px;
    background: #f7f8f9;
}

.page-interview-intro .statement-list-wrap .question-list>li:last-of-type {
    margin-bottom: 0;
}

.page-interview-intro .statement-list-wrap .question-list>li span {
    width: 40px;
    color: #297DE4;
    font-weight: 700;
    line-height: 1.4;
}

.page-interview-intro .statement-list-wrap .question-list>li p {
    width: calc(100% - 40px);
    line-height: 1.4;
}

/* 면접 진행 안내 페이지 */

.page-interview-intro .intro-container.noti-container {
    padding: 50px 50px 60px 50px;
}

.page-interview-intro .noti-inner {
    margin: 0 auto;
    padding: 50px 30px 20px 30px;
    max-width: 960px;
    border-radius: 24px;
    background: #FFF;
    text-align: center;
}

.page-interview-intro .noti-inner h4 {
    margin: 60px 0 40px 0;
    text-align: center;
    color: #171717;
    font-size: 24px;
    font-weight: 700;
}

.page-interview-intro .noti-inner dl {
    margin-bottom: 10px;
    padding: 15px 30px;
    background: #EEFAE9;
    border-radius: 12px;
}

.page-interview-intro .noti-inner dl dt {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #51CF25;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.page-interview-intro .noti-inner dl dt::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background: url(/imgs/common/ico_noti_secondary.svg) center center no-repeat;
}

.page-interview-intro .noti-inner dl dd {
    text-align: left;
    line-height: 1.4;
}

.page-interview-intro p.attention::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background: url(/imgs/common/ico_noti_red.svg) center center no-repeat;
    background-size: cover;
}

.page-interview-intro p.attention {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #EF5D5D;
}

.page-interview-intro .noti-inner ul.txt-box {
    border: 0;
    padding: 20px 30px;
}

.page-interview-intro .noti-inner ul.txt-box>li {
    text-align: left;
}

.page-interview-intro .noti-inner ul.txt-box>li:before {
    background: #77D756;
}

.page-interview-intro .noti-inner ~ .btn-wrap {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .page-interview-intro .intro-container.noti-container {
        padding: 30px 20px 50px 20px;
    }
    .page-interview-intro .noti-inner {
        padding: 60px 20px 30px 20px;
    }
    .page-interview-intro .noti-inner>img {
        height: 250px;
    }
    .page-interview-intro .noti-inner h4 {
        font-size: 22px;
    }
    .page-interview-intro .noti-inner dl {
        padding: 15px 20px;
    }
    .page-interview-intro .noti-inner ul.txt-box {
        padding: 15px 20px;
    }
    .page-interview-intro .noti-inner dl dt {
        font-size: 16px;
    }
}

@media (max-width: 500px) {
    .page-interview-intro .noti-inner {
        padding: 50px 15px 25px 15px;
    }
    .page-interview-intro .noti-inner>img {
        width: calc(100% - 40px);
        height: auto;
    }
    .page-interview-intro .noti-inner h4 {
        font-size: 18px;
        margin: 50px 0 20px 0;
    }
    .page-interview-intro .noti-inner ul.txt-box {
        padding: 15px 10px;
    }
}

/* AI 모의면접 예약 시스템 */

.page-interview-reservation .con-wrap:not(:last-of-type) {
    margin-bottom: 40px;
}

.page-interview-reservation .con-wrap .con-tit {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.page-interview-reservation .con-wrap .select-wrap {
    display: flex;
    column-gap: 4px;
    margin-bottom: 20px;
}

.page-interview-reservation .con-wrap .select-wrap select {
    min-width: 180px;
}

.page-interview-reservation .con-wrap .student-table {
    max-height: 455px;
    overflow-y: auto;
}

.page-interview-reservation .con-wrap .student-table input {
    width: calc(100% - 20px);
}

.page-interview-reservation .con-wrap .date-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.page-interview-reservation .con-wrap .date-list li {
    width: calc((100% - 48px)/7);
    margin: 0;
}

.page-interview-reservation .con-wrap .date-list li.selected {
    border: 1px solid #297DE4;
    color: #297DE4;
    font-weight: 700;
}

.page-interview-reservation .con-container ~ .btn-wrap {
    margin-top: 40px;
}

.page-interview-reservation table .student-list {
    display: flex;
    row-gap: 6px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.page-interview-reservation table .student-list li {
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.page-interview-reservation table .student-list li:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    margin: 0 8px;
    background: #ccc;
}

.page-interview-reservation table .student-list li span {
    margin-right: 4px;
    color: #888;
}

.page-interview-reservation table a {
    text-decoration: underline;
    cursor: pointer;
}