._loginGnb._mo {
    display: none !important;
}

.company-detail-wrap {
    display: flex;
    width: 1100px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.section-divider {
    height: 10px;
    background-color: #f6f7f9;
    margin: 50px 0;
}

/* MARK: 우측 플로팅 배너 스타일 */
.floating-banner {
    position: fixed;
    left: calc(50% + 590px);
    /* 컨텐츠 영역 width(1100px)의 절반 + 여유공간 */
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.banner-item {
    cursor: pointer;
}

.banner-item img {
    /* max-width: 100%; */
    width: 160px;
    height: auto;
    display: block;
}

.alarm-banner {
    transition: transform 0.2s ease;
}

/* MARK: 우측 컨텐츠 영역 */
.content-area {
    flex: 1;
}

/* MARK: 기업 헤더 */
.company-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.company-logo {
    width: 172px;
    height: 100px;
    margin-right: 25px;
    border: 1px solid #e0e5eb;
    padding: 10px;
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    /* company-logo와 동일한 높이로 설정 */
}

.company-title h1 {
    margin: 0 0 15px 0;
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* MARK: 채용 중 배지 */
.recruit-badge {
    height: 22px;
    padding: 0 6px;
    background: #f14040;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    vertical-align: middle;
}

/* MARK: 관심기업 버튼 */
.favorite-btn,
.share-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px 8px 16px;
    background: #fff;
    border: 1px solid #afbbcc;
    border-radius: 90px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
}

.favorite-btn::before {
    content: "";
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    background: url("/assets/data/img/datalab/main/unfollow.png") no-repeat center;
    background-size: contain;
}
.share-btn {
    margin-left: 10px;
}
.share-btn::before {
    content: "";
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    background: url("/assets/data/img/datalab/main/share.png") no-repeat center;
    background-size: contain;
}

.favorite-btn.active::before {
    background-image: url("/assets/data/img/datalab/main/follow.png");
}

/* MARK: 상세 정보 테이블 */
.company-detail-info {
    color: #495264;
    background: #fafafa;
    border: 1px solid #e0e5eb;
    padding: 14px 14px 30px 30px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border: none;
}

.info-table th,
.info-table td {
    padding: 12px 10px;
    text-align: left;
    border: none;
    font-size: 14px;
    line-height: 1.5;
    background: transparent;
}

.info-table th {
    color: #666;
    width: 80px;
    font-weight: normal;
}

.info-table td {
    color: #333;
}

.info-table td a {
    color: #1428a0;
    text-decoration: none;
}

.info-table td a:hover {
    text-decoration: underline;
}

.edit-request {
    text-align: right;
}

.edit-request a {
    color: #666;
    font-size: 13px;
    text-decoration: none;
}

.edit-request a:hover {
    text-decoration: underline;
}

.company-detail-info.company-overview {
    padding: 20px;
}

.company-detail-info .info-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.company-detail-info .company-description {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    white-space: pre-line;
}

/* MARK: 좌측 메뉴 */
.left-menu {
    width: 111px;
    margin-top: 30px;
    margin-right: 40px;
    position: sticky;
    top: 143px;
    height: fit-content;
    transition: all 0.3s ease-out;
}

.timeline-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

/* 타임라인 세로선 위치 조정 */
.timeline-nav::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 10px;
    width: 1px;
    height: calc(100% - 16px);
    background-color: #e0e0e0;
}

.nav-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 20px;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background-color: #e0e0e0;
    z-index: 1;
}

.nav-item.active .timeline-dot {
    border-color: #1428a0;
    background-color: #1428a0;
}

.nav-item a {
    display: block;
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-item.active a {
    color: #1428a0;
    font-weight: 600;
}

/* 정보 아이콘 스타일 */
.info-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 1px solid #a7a7a7;
    border-radius: 90px;
    text-align: center;
    line-height: 16px;
    color: #a7a7a7;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    cursor: help;
    position: relative;
}

.info-icon:hover .tooltip {
    display: block;
}

.tooltip {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 8px 12px;
    background: #333;
    color: #fff;
    font-size: 12px;
    text-align: left;
    font-weight: normal;
    white-space: nowrap;
    border-radius: 4px;
    z-index: 10;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* MARK: 채용공고정보 섹션 */
.company-info-section {
    margin-top: 30px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.recruit-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.recruit-item {
    background: #f8f9fa;
    border-radius: 4px;
    padding: 16px 20px;
    cursor: pointer;
}

.recruit-item:hover {
    background: #f1f3f5;
}

.recruit-position {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.recruit-position h4 {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.recruit-essay {
    display: flex;
    align-items: center;
    gap: 4px;
}

.essay-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.essay-list h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 20px;
}

.essay-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 4px;
}

.essay-number {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: #414141;
    min-width: 40px;
}

.essay-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.essay-question {
    font-size: 14px;
    color: #495057;
    width: 800px;
}

.essay-limit {
    font-size: 14px;
    color: #868e96;
}

.no-data {
    text-align: center;
    padding: 40px 0;
    color: #868e96;
    font-size: 14px;
}

/* MARK: 합격자 설문 영역 */
.pass-label {
    display: inline-block;
    padding: 10px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #676767;
    background-color: #F6F7F9;
    border-radius: 8px;
}

.pass-label img {
    vertical-align: text-top;
    margin-right: 7px;
}

.pass-detail-box-title {
    margin: 20px 0 18px;
    font-size: 16px;
    font-weight: 600;
    color: #282D37;
}

.pass-detail-box em {
    font-style: normal;
    color: #2561fa;
}

.pass-detail-box-title::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #183EA0;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 2px;
}

.pass-info-sts {
    display: flex;
    gap: 50px;
}

.pass-info-sts .pass-detail-box {
    width: 50%;
}

.essay-list {
    position: relative;
    margin-top: 0;
    gap: 0 !important;
}

.pass-survey .essay-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="10" xmlns="http://www.w3.org/2000/svg"><polyline points="0,0 9,9 18,0 27,9 36,0 45,9 54,0 63,9 72,0 81,9 90,0 99,9 108,0 117,9 126,0 " fill="none" stroke="%23CBD3DE" stroke-width="1"/></svg>') repeat-x;
    background-size: 18px 11px;
}

.pass-survey .essay-list::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 11px;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="10" xmlns="http://www.w3.org/2000/svg"><polyline points="0,9 9,0 18,9 27,0 36,9 45,0 54,9 63,0 72,9 81,0 90,9 99,0 108,9 117,0 126,9" fill="none" stroke="%23CBD3DE" stroke-width="1"/></svg>') repeat-x;
    background-size: 18px 11px;
}

.essay-list.empty::before, .essay-list.empty::after {
    display: none;
}

.essay-list.empty img {
    width: 100%;
}

.notify {
    font-size: 12px;
    color: #A7A7A7;
    font-weight: 400;
    line-height: 3;
}

.essay-item {
    border-radius: 0;
    border-color: #CBD3DE;
}

.pass-survey .essay-item {
    border-top: none;
}

.company-info-section .essay-item:last-of-type {
    border-bottom: 1px solid #CBD3DE;
}

.essay-item + .essay-item {
    border-top: none;
}

.pass-survey .essay-item:first-child {
    padding-top: 27px;
}

.pass-survey .essay-item:last-child {
    padding-bottom: 27px;
    border-bottom: none;
}

.essay-content {
    flex-wrap: wrap;
    gap: 10px;
}

.essay-question {
    width: 100%;
}

.essay-limit {
    flex: 1 0 100%;
}

.survey-list {

}

.survey-item {
    padding: 30px 0;
    border-top: 1px solid #E0E5EB;
}

.survey-item .survey-title {
    font-size: 16px;
    color: #282D37;
    font-weight: 600;
}

.survey-item .survey-content {
    margin-top: 22px;
}

.survey-item .survey-content ul li {
    display: flex;
    /*flex-wrap: wrap;*/
    align-items: center;
    gap: 5px;
    font-size: 15px;
    color: #202020;
    font-weight: 400;
}

.survey-item .survey-content ul li + li {
    margin-top: 20px;
}

.survey-item:last-child .survey-content ul {
    display: flex;
}

.survey-item:last-child .survey-content ul li + li {
    margin-top: 0;
    margin-left: 30px;
}

span.badge {
    display: inline-block;
    color: #282D37;
    margin-right: 7px;
    text-align: center;
    font-size: 13px;
    line-height: 24px;
    font-weight: 500;
    border-radius: 5px;
    flex: 0 0 auto;
}

span.badge.gray {
    color: #282D37;
    width: 24px;
    background-color: #EBEEF2;
}

span.badge.gray2 {
    color: #fff;
    width: auto;
    padding: 0 6px;
    background-color: #626F87;
    font-weight: bold;
}

span.badge.dark {
    color: #fff;
    width: auto;
    padding: 0 6px;
    background-color: #282D37;
    font-weight: bold;
}

.survey-item .survey-content ul li span.default-length {
    color: #A7A7A7;
}

.survey-item .survey-content ul li span.default-length + span {
    font-size: 13px;
    color: #858585;
}


.survey-item .survey-content ul li span.default-length + span::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    margin-right: 5px;
    background-color: #858585;
    border-radius: 50%;
    vertical-align: middle;
}

/* MARK: 채용공고 컨테이너 */
.recruit-info-container {
    background-color: #f6f7f9;
    padding: 20px;
}

.recruit-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.recruit-select {
    flex: 1;
    max-width: 747px;
    height: 48px;
    padding: 0 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 14px;
    color: #495057;
    background-color: #fff;
    margin-right: 12px;
}

.recruit-select option {
    padding: 100px !important;
    line-height: 1.5;
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    width: 150px;
    height: 48px;
    background: #495264;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.2s;
}

/* 채용공고 포지션 영역 추가 */
.recruit-positions {
    margin-top: 20px;
}

.position-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.position-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding: 12px;
    background: #fff;
    border-radius: 14px;
    cursor: pointer;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.position-item:hover .position-name {
    color: #2561fa;
}

.position-item.active {
    background: #2561fa;
}

.position-item.active .position-name,
.position-item.active .position-title {
    color: #fff;
}

.position-item.active .career-type {
    color: #2561fa;
    padding: 4px 5px 4px 5px;
    border-radius: 5px;
    background-color: #ebf0ff;
}

.position-name {
    font-size: 14px;
    font-weight: 700;
    color: #858585;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.position-title {
    flex: 1;
}

.career-type {
    font-size: 13px;
    color: #626f87;
    padding: 4px 5px 4px 5px;
    border-radius: 5px;
    background-color: #ebf0ff;
}

/* MARK: 로그인한 사용자의 학교 표시 */
.stats-list li.highlight .rank,
.stats-list li.highlight .name,
.stats-list li.highlight .percentage {
    color: #2561fa;
}

.stats-list li.highlight .name {
    font-weight: 700;
}

/* 마감 메시지 스타일 */
.deadline-message {
    font-size: 16px;
    font-weight: 500;
    color: #495264;
    text-align: center;
    padding: 80px 40px;
    background: #f6f7f9;
    line-height: 1.5;
    width: 100%;
    margin: 0;
    border-radius: 0;
}

/* MARK: 통계 데이터 없음 컨테이너 */
.insufficient-data-container {
    width: 800px;
    position: absolute;
    z-index: 1;
    top: 216px;
    left: 70px;
    /* background-color: rgba(255, 255, 255, 0.812); */
    padding: 20px 0;
    text-align: center;
    /* border: 1px solid #1428a0; */
}

.spec-input-text {
    text-decoration: underline;
}

.insufficient-data-container._poFx {
    position: fixed;
    top: 150px;
    width: 800px;
    left: calc(50% - 329px);
    /* box-shadow: 0 4px 6px 0px #00000008; */
    /* border: 1px solid #1428a0; */
}

/* .tab-area._poFx {
        position: fixed;
        top: 150px;
        width: 800px;
        left: calc(50% - 329px);
      } */

.insufficient-data-image {
    width: 100%;
    text-align: center;
}
.btn-container {
    padding: 54px 0;
    background-color: rgba(255, 255, 255, 1.812);
    border: 1px solid #1428a0;
}

.insufficient-data-image img {
    width: 100%;
    height: auto;
    max-width: 264px;
    margin: 0 auto;
}

.insufficient-data-message {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 20px 0;
}

.spec-submit-button {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 350px;
    margin: 0 auto;
    padding: 20px 32px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    /* margin-top: 10px; */
}

.button-text {
    text-align: left;
}

.button-text p {
    margin: 0;
    font-size: clamp(12px, 4.5vw, 16px);
    line-height: 1.5;
    white-space: nowrap;
    color: white;
}

.button-arrow {
    width: 32px;
    height: 32px;
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: 16px;
    font-size: 24px;
    font-family: sans-serif;
    line-height: 1;
    padding-left: 3px;
    padding-bottom: 4px;
}

.spec-submit-button.spec-input {
    background: linear-gradient(to right, #1f99e5, #2a2de1);
}

.spec-submit-button.status-submit,
.user-spec.status-submit {
    background: linear-gradient(to right, #1fe5ad, #068ccf);
}

/* .spec-submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      } */

/* .spec-submit-button:active {
        transform: translateY(0);
      } */

/* MARK: 현재 상태 모달 스타일 */
.status-select-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.status-modal-content {
    background: white;
    border-radius: 20px;
    width: 600px;
    padding: 30px;
    position: relative;
}

.status-modal-header {
    text-align: center;
    position: relative;
}

.status-modal-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.status-modal-subtitle {
    width: 211px;
    font-size: 15px;
    color: #666;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: #f6f7f9;
    border-radius: 90px;
    padding: 10px 20px 10px 20px;
    opacity: 90%;
}

.close-button {
    position: absolute;
    right: -10px;
    top: -10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.status-options {
    display: flex;
    justify-content: center;
    padding: 0;
    gap: 10px;
}

.status-option {
    text-align: center;
    cursor: pointer;
    width: 180px;
}

.status-option img {
    transition: all 0.2s ease;
    display: block;
    border: none;
}

.notification-text {
    text-align: center;
    color: #333;
    font-size: 14px;
    margin: 40px 0;
}

.submit-button {
    display: block;
    width: 200px;
    padding: 15px 0;
    background: #2561fa;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.submit-button:hover {
    background: #183ea0;
}

/* MARK: 관심기업 모달 */
.favorite-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.favorite-modal-content {
    background: white;
    border-radius: 20px;
    text-align: center;
    position: relative;
}

.favorite-modal-content img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* MARK: 지원 인증 모달 스타일 수정 */
.verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.verification-modal-content {
    background: white;
    border-radius: 20px;
    width: 600px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

/* 선물상자 이미지 스타일 수정 */
.verification-modal-content::after {
    content: "";
    position: absolute;
    bottom: -40px;
    right: 0px;
    width: 100px;
    height: 126px;
    background: url("/assets/data/img/datalab/common/recruitAuthGiftBox.png")
    no-repeat;
    background-size: contain;
    z-index: 1;
    opacity: 0.9;
}

.verification-modal-header {
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.verification-modal-header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.verification-modal-header .close-button {
    position: absolute;
    right: -10px;
    top: -10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.verification-modal-body {
    padding: 20px 0;
    display: flex;
    gap: 20px;
}

.image-guide-area {
    flex: 1;
    background: #f6f7f9;
    border-radius: 8px;
    padding: 20px;
}

.image-guide-area h3 {
    font-size: 14px;
    color: #333;
    margin: 0 0 12px 0;
}

.image-guide-area ul {
    margin: 0;
    padding-left: 20px;
    list-style: none;
}

.image-guide-area ul li {
    position: relative;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.image-guide-area ul li::before {
    content: "•";
    position: absolute;
    left: -15px;
}

.file-upload-area {
    flex: 1;
    text-align: left;
}

.file-upload-area label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
/*    width: 86px;
    height: 20px;*/
    padding: 12px 20px 12px 20px;
    background: #495264;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.file-upload-area .upload-limit {
    color: #666;
    font-size: 13px;
    margin-top: 10px;
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.file-item .file-name {
    color: #333;
    font-size: 14px;
    flex: 1;
    cursor: pointer;
}

.file-item .file-name:hover {
    text-decoration: underline;
}

.file-item .remove-file {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    margin-left: 8px;
    border: 1px solid #999;
    border-radius: 50%;
    line-height: 1;
}

.file-item .remove-file:hover {
    color: #666;
    border-color: #666;
}

.verification-modal-footer {
    text-align: center;
    margin-top: 30px;
}

.verification-modal-footer .submit-button {
    display: block;
    width: 200px;
    padding: 15px 0;
    background: #2561fa;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.verification-modal-footer .submit-button:hover {
    background: #183ea0;
}

.verification-modal-header .verification-subtitle {
    font-size: 15px;
    color: #414141;
    margin: 15px 0 0 0;
}

.verification-modal-header .verification-subtitle .underline {
    text-decoration: underline;
}

.verification-modal-header .verification-subtitle .highlight {
    color: #183ea0;
    font-weight: 500;
}

.spec-submit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spec-submit-modal-content {
    position: relative;
    max-width: 600px;
}

.spec-submit-modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* MARK: 통계 데이터 블라인드 처리 수정 */
.stats-blind-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.blur-content {
    filter: blur(5px);
    opacity: 0.7;
    user-select: none;
    pointer-events: none;
}

/* 블러 처리에서 제외할 요소들 */
.stats-header,
.section-title,
.stats-box h3,
.more-btn,
.detail-btn,
.total-count,
.category-title {
    filter: none !important;
    opacity: 1 !important;
    user-select: auto !important;
    pointer-events: auto !important;
}

/* 상태 체크 버튼 컨테이너 */
.status-check-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    text-align: center;
}

/* MARK: 그래프 영역 컨테이너 */
.base-graph-area,
.language-and-certificate-graph-area,
.activity-and-career-graph-area {
    position: relative;
}

.status-check-button {
    cursor: pointer;
    /* 기존 버튼 스타일 유지 */
}

/* MARK: 합격/응시 후기 섹션 스타일 */
.pass-review {
    padding: 0;
    min-height: 600px;
}

.pass-review .section-title {
    margin-bottom: 30px;
}

.pass-review .section-title h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.pass-review .section-title p {
    color: #666;
    font-size: 14px;
}

.review-tabs {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
}

.review-tabs .tab-btn {
    padding: 13px 16px;
    border: 1px solid #ebeef2;
    border-radius: 8px;
    background: none;
    font-size: 14px;
    cursor: pointer;
    width: auto;
    min-width: min-content;
    white-space: nowrap;
}

.review-tabs .tab-btn.active {
    background-color: #282d37;
    color: white;
    border-color: #282d37;
}

.review-tabs .more-btn {
    padding: 8px 10px 8px 10px;
    border: 1px solid #afbbcc;
    border-radius: 5px;
    font-weight: 500;
    color: #414141;
    text-decoration: none;
    font-size: 13px;
}

.review-tabs .more-btn:hover {
    text-decoration: underline;
}

.review-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-item {
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-type {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
}

.review-type.apply {
    color: #626f87;
}

.review-type.paper-pass {
    color: #53ab76;
}

.review-type.final-pass {
    color: #eb6262;
}

.review-type.pass {
    color: #2561fa;
}

.review-title {
    flex: 1;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    color: #333;
}

.review-title:hover {
    text-decoration: underline;
}

.reviewer-info {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
}
.graph-content {
    position: relative;
}

.stats-blind-container {
    position: relative;
    width: 100%;
    text-align: center;
}

.user-spec.status-submit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 350px;
    margin: 0 auto;
    padding: 20px 32px;
    border-radius: 6px;
    cursor: pointer;
    background: linear-gradient(to right, #1fe5ad, #068ccf);
}

.statistics-container {
    position: relative;
}

.chart-content {
    position: relative;
}

.stats-blind-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spec-guide-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.spec-guide-message {
    color: #666;
    font-size: 16px;
    margin-bottom: 15px;
}

.spec-submit-button,
.status-submit-button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
}

/* 블라인드 이미지 영역 스타일 */
.blind-one-column-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    width: 100%; /* 너비를 100%로 설정 */
}

.blind-two-column-area {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    /* background-color: #f9f9f9; */
    border-radius: 8px;
    margin-bottom: 15px;
}

.blind-three-column-area {
    display: flex;
    align-items: center;
    width: 100%; /* 너비를 100%로 설정 */
}

.blind-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.spec-info-sts {
    position: absolute;
    z-index: 1;
    top: 1850px;
    left: 550px;
}
.btn-container-wrap {
    text-align: center;
}

/* Modal */
._modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    font-size: 0;
    opacity: 0;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
}

._modalBg {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9001;
    cursor: pointer;
}

._modalWrp {
    background: #ffffff;
    z-index: 10001;
    position: absolute;
    top: 50px;
    left: calc(50% - 325px);
    width: 651px;
    height: 451px;
    box-sizing: border-box;
    border-radius: 8px;
}

._modalTit {
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    color: #020202;
}

._modalShare ._modalWrp {
    width: 359px;
    height: 269px;
    left: calc(50% - 178px);
    padding: 40px 107px;
    text-align: center;
    top: 100px !important;
}
._modalShare ._modalWrp {
    padding: 40px 0;
}

/*모바일*/
.company-detail-wrap._mo .top_header {
    top: 0;
    height: 57px;
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #e4e4e4;
    background-color: #fff;
    z-index: 999;
}
.company-detail-wrap._mo .top_header .back_btn {
    width: 9px;
    height: 19px;
    background: url("/assets/img/icon/mo/m_left_arrow.png") no-repeat center;
    margin-top: 4px;
}
.company-detail-wrap._mo .top_header ._tit {
    font-weight: 600;
    font-size: clamp(18px, 3vw, 22px);
    line-height: 28px;
    color: #000;
    margin-left: 10px;
}
.company-detail-wrap._mo .top_header ._txt {
    margin-left: 6px;
    color: #f14040;
    font-weight: 700;
    font-size: clamp(14px, 3vw, 18px);
    line-height: 30px;
    letter-spacing: -0.02em;
}
._icon {
    width: 26px;
    height: 26px;
}
._icon.fvr_icon {
    background: url("/assets/img/icon/mo/heart_icon.png") no-repeat center center;
    margin-right: 8px;
}
._icon.fvr_icon.active {
    background: url("/assets/img/icon/mo/heart_on_icon.png") no-repeat center
    center;
}
._icon.share_icon {
    background: url("/assets/img/icon/mo/share_icon.png") no-repeat center center;
}
.top_info {
    padding-top: 57px;
}
.top_info .banner_dv {
    width: 100%;
    height: 100px;
    background-color: #f2f2f2;
}
.top_info .top_title {
    padding: 23px 20px;
}
.logo_wrp {
    width: 200px;
    height: 116px;
    border: 1px solid #e0e5eb;
    margin-bottom: 14px;
    padding: 28px 10px;
}
.logo_wrp img {
    object-fit: contain;
    width: 172px;
    height: 60px;
}
.rcr_lbl {
    width: 44px;
    height: 22px;
    background-color: #f14040;
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 22px;
    top: 8px;
    left: 8px;
}
.top_info .top_title .company_name {
    color: #202020;
    font-weight: 700;
    font-size: clamp(26px, 3vw, 30px);
    line-height: 26px;
    margin-bottom: 14px;
}

.dv_bar {
    width: 100%;
    height: 10px;
    background-color: #f6f7f9;
    border-top: 1px solid #ebeef2;
    border-bottom: 1px solid #ebeef2;
}
.company-detail-wrap._mo .tab_dv {
    max-width:100%;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid #CBD3DE;
    background: #fff;
}
.company-detail-wrap._mo .tab_dv {
    position: sticky;
    top: 56px;
    left: 0;
    z-index: 999;
    width: 100%;
}
.company-detail-wrap._mo .tab_wrp {
    padding: 0 20px;
    gap: 24px;
    scrollbar-width: none;
    /* max-width: 100%; */
    width: max-content;
    overflow-x: auto;
    height: 60px;
}
.company-detail-wrap._mo .tab_wrp .tab_btn {
    position: relative;
    font-size: 16px;
    line-height: 60px;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 400;
    color: #495264;
    letter-spacing: -0.02em;
}
.company-detail-wrap._mo .tab_wrp .tab_btn.active {
    color: #183EA0;
    font-weight: 700;
}
.company-detail-wrap._mo .tab_wrp .tab_btn.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #183EA0;
}
.company-detail-wrap._mo .company_info{
    padding: 40px 20px;
}
.company-detail-wrap._mo .company_info .company_dv {
    padding: 24px;
    border: 1px solid #E0E5EB;
    background-color: #FAFAFA;
    margin-bottom: 18px;
}
.company-detail-wrap._mo .company_info .company_dv ._tit{
    font-size: 15px;
    letter-spacing: -0.02em;
    color: #495264;
    line-height: 15px;
    margin-bottom: 10px;
}
.company-detail-wrap._mo .company_info .company_dv ._lbl{
    margin-left: 8px;
    width: 16px;
    height: 16px;
    background: url("/assets/img/icon/mo/info_icon.png") no-repeat center center;margin-top: -1px;
    cursor: pointer;
}
.company-detail-wrap._mo .company_info .company_dv ._txt{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color:#414141;
    line-height: 168%;
}
.company-detail-wrap._mo .company_info .company_dv ._tit2{
    color: #495264;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    width: 65px;
}

.company-detail-wrap._mo .company_info .company_dv ._txt2{
    color: #414141;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-align: right;
    width: 80%;
}
.company-detail-wrap._mo .company_info .company_dv ._txt3{
    color: #608CFF;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-align: right;
    word-break: break-all;
}
.company-detail-wrap._mo .company_info .company_dv ._txt4{
    display:block;
    color: #495264;
    font-size: 12px;
    line-height: 12px;
    font-weight: 400;
    letter-spacing: -0.02em;
    text-align:right;
}

.company-detail-wrap._mo .position_wrp {
    padding: 40px 20px;
}
.company-detail-wrap._mo .position_wrp ._tit {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    color: #202020;
    letter-spacing: -0.02em;
    line-height: 29px;
    margin-bottom: 34px;
}
.company-detail-wrap._mo .position_wrp ._txt {
    color: #414141;
    font-size: 14px;
    line-height: 29px;
    font-weight: 500;
}
.company-detail-wrap._mo .position_wrp ._tit2 {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -0.02em;
    color: #282D37;
    margin-bottom: 10px;
}
.company-detail-wrap._mo .position_wrp ._tit2 span.new_lbl {
    color: #E51313;
    font-size: 13px;
    margin-left: 2px;
}
.company-detail-wrap._mo .position_wrp .select_box {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 86px;
    border-radius: 4px;
    padding: 14px 18px;
    border: 1px solid #608CFF;
    background-color: #F5F8FF;
    cursor: pointer;
}
.company-detail-wrap._mo .position_wrp .crn_info {
    width: 260px;
}
.company-detail-wrap._mo .position_wrp .crn_info2 {
    width: 284px;
}
.company-detail-wrap._mo .position_wrp .select_box .__tit {
    color: #202020;
    font-weight: 700;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 140%;
}
.company-detail-wrap._mo .position_wrp .select_box .__tit2 {
    color: #2561FA;
    font-weight: 700;
    font-size: clamp(13px, 3vw, 17px);
    line-height: 100%;
    margin-bottom: 10px;
}
.company-detail-wrap._mo .position_wrp .select_box .__txt {
    color: #202020;
    font-weight: 400;
    font-size: clamp(13px, 3vw, 17px);
    line-height: 140%;
}
.company-detail-wrap._mo .position_wrp .select_box .__txt2 {
    color: #202020;
    font-weight: 600;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 150%;
    letter-spacing: -0.01em;
}

.company-detail-wrap._mo .position_wrp .arr_icon {
    width: 14px;
    height: 8px;
    background: url("/assets/img/icon/mo/bottom_arrow_icon.png") no-repeat center center;
    right: 18px;
    top:39px;
}
.company-detail-wrap._mo .position_wrp .arr_icon2 {
    top: 15px;
}

.survey_wrp .survey_list {
    padding: 20px 0;
    border-top: 1px solid #E0E5EB;
}
.survey_wrp .survey_list .survey_num {
    font-weight: 700;
    font-size: 14px;
    line-height: 170%;
    color: #2561FA;
    white-space: nowrap;
}
.survey_wrp .survey_list .survey_txt {
    width: 90%;
}
.survey_wrp .survey_list .survey_txt .__txt{
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: -0.02em;
    color: #202020;
}
.survey_wrp .survey_list .survey_txt .__txt2{
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #8496B1;
}
.static_wrp .static_top {
    padding: 40px 20px 20px 20px;
}
.static_wrp .static_top ._tit {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 700;
    color: #202020;
    letter-spacing: -0.02em;
    line-height: 150%;
    margin-bottom: 7px;
}
.static_wrp .static_top ._tit span {
    color: #2561FA;
}
.static_wrp .static_top ._txt {
    font-size: clamp(15px, 3vw, 19px);
    font-weight: 400;
    color: #414141;
    letter-spacing: -0.02em;
    line-height: 160%;
}

.static_wrp .static_tab {

}

.static_wrp .static_dv{
    max-width:100%;
    margin-bottom: 20px;
}
.static_wrp .static_tab {
    padding-left: 20px;
    gap: 12px;
    scrollbar-width: none;
    width: max-content;
    overflow-x: auto;
    height: 36px;
}

.static_wrp .static_tab .static_tab_btn {
    position: relative;
    font-size: 16px;
    height: 36px;
    line-height: 36px;
    border-radius: 90px;
    font-size: clamp(15px, 3vw, 19px);
    font-weight: 500;
    color: #495264;
    letter-spacing: -0.02em;
    background-color: #F6F7F9;
    padding: 0 14px;
    cursor: pointer;
}
.static_wrp .static_tab .static_tab_btn.active {
    font-weight: 700;
    color: #fff;
    background-color: #282D37;
}

.static_wrp .static_tab .static_tab_btn .m-new-badge {
    font-weight: 700;
    line-height: 100%;
    letter-spacing: -0.02em;
    color: #ff3b30;
    font-size: 15px;
}

.static_wrp .spec_info_wrp ._flex {
    padding: 0 14px;
}
.static_wrp .spec_info_wrp ._tit {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #202020;
    letter-spacing: -0.02em;
    line-height: 100%;
}

.static_wrp .spec_info_wrp .chart_tit {
    padding: 60px 0 13px 14px;
}

.static_wrp .spec_info_wrp ._txt {
    font-size: clamp(13px, 3vw, 17px);
    font-weight: 500;
    color: #A7A7A7;
    letter-spacing: -0.02em;
    line-height: 20px;
}

.chart_box .chart_tit {
    border-top: 1px solid #E0E5EB;
    background-color: #f6f7f9;
    padding: 18px 14px !important;
}

.chart_box .chart_tit ._tit {
    font-size: clamp(15px, 3vw, 19px);
    font-weight: 600;
    color: #282D37;
    letter-spacing: -0.02em;
    line-height: 100%;
}
.chart_box .chart_tit ._tit span {
    font-weight: 400;
    font-size: clamp(13px, 3vw, 17px);
    letter-spacing: -0.02em;
    line-height: 100%;
    color: #282D37;
}

.chart_box .chart_tit ._tit2 {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    color: #8496B1;
    letter-spacing: -0.02em;
    line-height: 100%;
}

.chart_box .chart_tit ._txt {
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 600;
    color: #2561FA;
    letter-spacing: -0.02em;
    line-height: 100%;
}

.chart_box .chart_tit ._notice {
    font-size: clamp(12px, 3vw, 16px);
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.02em;
    color: #8496B1;
    margin-top: 8px;
}
._mt0 {
    margin-top: 0 !important;
}

._mo .certificate-list {
    width: 100%;
}

/* survey:s */
._mo .pass-survey .survey_header {
    padding: 40px 20px 0;
}

._mo .pass-survey .survey_header ._tit {
    font-size: clamp(24px, 3vw, 26px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #202020;
}

._mo .pass-survey .survey_header .more-btn {
    font-weight: 500;
    font-size: clamp(14px, 3vw, 16px);
    line-height: 36px;
    color: #414141;
}
._mo .pass-survey ._txt {
    font-size: clamp(14px, 3vw, 16px);
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: -0.02px;
    line-height: 160%;
    color: #414141;
}

._mo .survey_dv {
    padding-left: 20px;
    margin-bottom: 0;
}
._mo .survey_dv .survey-tabs .tab-btn {
    border-radius: 90px;
    background-color: #f6f7f9;
    border: 0;
    color: #495264;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: -0.02px;
}
._mo .survey_dv .survey-tabs .active.tab-btn {
    border: 1px solid #414141;
    background-color: #282D37;
    font-weight: 700;
    color: #fff;
}

._mo .survey-list {
    display: block;
    min-height: 500px;
}
._mo .survey-list .survey-item {
    padding: 32px 15px;
    border: 1px solid #E0E5EB;
    border-radius: 2px;
    margin-bottom: 12px;
}
._mo .survey-header {
    display:block;
}
._mo .survey-header .survey-title {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #202020;
    font-weight: 400;
    margin-bottom: 6px;
    white-space: normal;
}
._mo .survey-type {
    text-align: left;
}

/* survey:e */

._mo .pass-review .review_header {
    padding: 20px;
}

._mo .pass-review .review_header ._tit {
    font-size: clamp(24px, 3vw, 26px);
    font-weight: 700;
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #202020;
}

._mo .pass-review .review_header .more-btn {
    font-weight: 500;
    font-size: clamp(14px, 3vw, 16px);
    line-height: 36px;
    color: #414141;
}
._mo .pass-review ._txt {
    font-size: clamp(14px, 3vw, 16px);
    margin-top: 10px;
    font-weight: 400;
    letter-spacing: -0.02px;
    line-height: 160%;
    color: #414141;
}

._mo .review_dv {
    margin-bottom: 0;
}
._mo .review_dv .review-tabs .tab-btn {
    border-radius: 90px;
    background-color: #f6f7f9;
    border: 0;
    color: #495264;
    font-weight: 500;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: -0.02px;
}
._mo .review_dv .review-tabs .active.tab-btn {
    border: 1px solid #414141;
    background-color: #282D37;
    font-weight: 700;
    color: #fff;
}

._mo .review_dv .review-tabs {
    padding: 0 20px;
}

._mo .review-list {
    padding: 0 20px 20px 20px;
    display: block;
}
._mo .review-list .review-item {
    padding: 15px;
    border: 1px solid #CBD3DE;
    border-radius: 2px;
    margin-bottom: 12px;
}
._mo .review-header {
    display:block;
}
._mo .review-header .review-title {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 150%;
    letter-spacing: -0.02em;
    color: #202020;
    font-weight: 400;
    margin-bottom: 6px;
    white-space: normal;
}
._mo .review-type {
    text-align: left;
}
._mo .reviewer-info {
    color: #858585;
    margin-top: 5px;
}


/*모달*/
._modalRecruitSlc ._MbDTCon, ._modalPositionSlc ._MbDTCon, ._modalStatusSelect ._MbDTCon{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100001;
    width: 100%;
    background: #FFFFFF;
    border-radius: 24px 24px 0 0;
}

._modalRecruitSlc ._MbDTCon .__tab, ._modalPositionSlc ._MbDTCon .__tab {
    padding-left: 20px;
    max-width: 100%;
    height: 50px;
    border-bottom: 1px solid #CBD3DE;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 50px;
}

._modalStatusSelect ._MbDTCon .top_wrp {
    padding:24px 0 10px 20px;
    max-width: 100%;
}
._modalStatusSelect ._MbDTCon .top_wrp .__tab {
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 25px;
    color: #202020;
}
._modalStatusSelect ._MbDTCon .top_wrp .__tab2 {
    padding-top: 14px;
    color: #414141;
    font-size: clamp(15px, 3vw, 19px);
    font-weight: 500;
}
._modalStatusSelect ._MbDTCon .stsConWrp {
    padding: 0 20px;
    margin-bottom: 14px;
}
._modalStatusSelect ._MbDTCon .stsConWrp .status_box {
    width: 100%;
    height: 85px;
    border-radius: 10px;
    border: 1px solid #AFBBCC;
    margin-bottom: 10px;
    padding-left: 18px;
    cursor: pointer;
    align-items: center;
    justify-content: flex-start;
    gap:16px;
}
._modalStatusSelect ._MbDTCon .stsConWrp .status_box.selected {
    border: 1px solid #608CFF;
    background-color: #F5F8FF;
}

._modalStatusSelect ._MbDTCon .stsConWrp .status_box .chk_box {
    width: 28px;
    height: 28px;
    background: url('/assets/data/img/datalab/view/mo/status_check.png') no-repeat center center;
}
._modalStatusSelect ._MbDTCon .stsConWrp .status_box.selected .chk_box {
    background: url('/assets/data/img/datalab/view/mo/status_check_on.png') no-repeat center center;
}
._modalStatusSelect ._MbDTCon .stsConWrp .status_box .chk_txt {
    font-size: clamp(15px, 3vw, 19px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 150%;
    color: #414141;
    text-align: left;
}
._modalStatusSelect ._MbDTCon .stsConWrp .status_box .chk_txt .txt_1 {
    font-weight: 600;
}
._modalStatusSelect ._MbDTCon .stsConWrp .status_box.selected .chk_txt .txt_1 {
    color: #183EA0;
}
._modalStatusSelect ._MbDTCon .notice_txt {
    font-size: clamp(13px, 3vw, 17px);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 20px;
    color: #414141;
    padding-left: 20px;
    padding-bottom: 20px;
}

._modalRecruitSlc ._MbDTCon .__lst, ._modalPositionSlc ._MbDTCon .__lst {
    height: 450px;
    overflow-y: auto;
}
._modalRecruitSlc ._MbDTCon .__lst .lst_info, ._modalPositionSlc ._MbDTCon .__lst .lst_info {
    padding: 16px 20px;
    border-bottom: 1px solid #efefef;
    cursor: pointer;
    justify-content: left;
    align-items: center;
}
._modalRecruitSlc ._MbDTCon .__lst .lst_info .chk_position, ._modalPositionSlc ._MbDTCon .__lst .lst_info .chk_position {
    width: 39px;
    height: 10px;
    background: url('/assets/data/img/datalab/view/mo/modal_chk.png') no-repeat left center;
    padding-right: 26px;
}
._modalRecruitSlc ._MbDTCon .__lst .lst_info.active .chk_position, ._modalPositionSlc ._MbDTCon .__lst .lst_info.active .chk_position {
    background: url('/assets/data/img/datalab/view/mo/modal_chk_on.png') no-repeat left center;
    padding-right: 26px;
}
._modalRecruitSlc ._MbDTCon .__lst .lst_info.active, ._modalPositionSlc ._MbDTCon .__lst .lst_info.active {
    background-color: #F5F8FF;
}

._modalRecruitSlc ._MbDTCon .__lst .lst_info .__tit, ._modalPositionSlc ._MbDTCon .__lst .lst_info .__tit {
    font-size: clamp(17px, 3vw, 21px);
    line-height: 130%;
    letter-spacing: -0.02em;
    font-weight: 500;
    color: #202020;
    margin-bottom: 4px;
}
._modalRecruitSlc ._MbDTCon .__lst .lst_info.active .__tit, ._modalPositionSlc ._MbDTCon .__lst .lst_info.active .__tit {
    font-weight: 700;
    color: #183EA0;
}
._modalRecruitSlc ._MbDTCon .__lst .lst_info .__txt, ._modalPositionSlc ._MbDTCon .__lst .lst_info .__txt {
    color: #676767;
    font-size: 13px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: -0.02em;
}

._modalRecruitSlc ._MbDTCon .__bt, ._modalPositionSlc ._MbDTCon .__bt , ._modalStatusSelect ._MbDTCon .__bt {
    border-top: 1px solid #EFEFEF;
    height: 110px;
    padding: 14px 20px 24px 20px;
}
._modalRecruitSlc ._MbDTCon .__bt .__sbmBtn, ._modalPositionSlc ._MbDTCon .__bt .__sbmBtn {
    width: 100%;
    height: 42px;
    line-height: 42px;
    border-radius: 4px;
    background-color: #2561fa;
    text-align: center;
    color: #fff;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    letter-spacing: -0.02em;
    border: 0;
    cursor: pointer;
}
._modalStatusSelect ._MbDTCon .__bt {
    gap: 10px;
}
._modalStatusSelect ._MbDTCon .__bt .__sbmBtn {
    width: 32%;
    height: 42px;
    line-height: 42px;
    border-radius: 4px;
    background-color: #fff;
    text-align: center;
    color: #5E6773;
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    letter-spacing: -0.02em;
    border: 1px solid #5E6773;
    cursor: pointer;
}
._modalStatusSelect ._MbDTCon .__bt .__sbmBtnNext._dsbl {
    background-color: #C1D2FF;
}
._modalStatusSelect ._MbDTCon .__bt .__sbmBtnNext {
    width: 65%;
    background-color: #2561fa;
    color: #fff;
    border: 0;
}

._modalPositionSlc ._MbDTCon ._flex.tab_wrp {
    padding-left: 0;
    border-bottom: 1px solid #CBD3DE;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
}
._modalPositionSlc ._MbDTCon ._flex.tab_wrp .__tab {
    border-bottom: 0;
}
._modalPositionSlc ._MbDTCon ._flex.tab_wrp .__tab2 {
    font-size: clamp(13px, 3vw, 17px);
    font-weight: 400;
    line-height: 25px;
    letter-spacing: -0.02em;
    color: #414141;
}
._modalVerification {
    background: none;
    /* display: block !important;
    opacity: 1 !important; */
}
._modalVerification ._modalWrp {
    padding: 0;
    height: 80% !important;
}
._modalVerification ._modalTop {
    width: 100%;
    height: 56px;
    border-bottom: 1px solid #e4e4e4;
    margin-right: 0;
    align-items: center;
    padding: 0 20px;
}
._modalVerification ._modalTop .top_txt {
    color: #D5D5D5;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 700;
    background: none;
    margin: 0;
    text-align: right;
}
._modalVerification ._modalTop .top_txt.active {
    color: #2561FA;
}
._modalVerification ._modalCon {
    height: 82% !important;
    padding-right: 0;
}
._modalVerification ._modalCon ._tit {
    font-size: clamp(26px, 3vw, 30px);
    color: #282D37;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    text-align: center;
}
._modalVerification ._modalCon ._txt {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #414141;
    margin-bottom: 30px;
}
._modalVerification ._modalCon .file_info_box {
    margin: 0 20px 24px 20px;
    padding: 22px 18px;
    background-color: #F6F7F9;
    border: 1px solid #EBEEF2;

}
._modalVerification ._modalCon .file_info_box .__tit {
    font-size: clamp(16px, 3vw, 20px);
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #282D37;
    margin-bottom: 12px;
}
._modalVerification ._modalCon .file_info_box .__txt {
    position: relative;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    line-height: 150%;
    padding-left: 8px;
    color: #282D37;
    word-break: keep-all;
}
._modalVerification ._modalCon .file_info_box .__txt::before {
    display: block;
    position: absolute;
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #282d37;
    top: 7px;
    left: 0;
}
._modalVerification ._modalCon .file_info_box .__txt2 {
    margin-top: 12px;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: 400;
    line-height: 150%;
    color: #626F87;
    word-break: keep-all;
}
._modalVerification ._modalCon .file_info_box .file_add_btn {
    display: block;
    width: 100%;
    height: 48px;
    border: 0;
    border-radius: 5px;
    background-color: #282D37;
    color: #fff;
    font-weight: 700;
    font-size: clamp(16px, 3vw, 20px);
    line-height: 48px;
    margin-top: 18px;
    text-align: center;
}
._modalVerification ._modalCon .file_add_wrap {
    margin: 0 20px;
    gap: 10px;
    justify-content: flex-start;
}
._modalVerification ._modalCon .file_add_wrap .box_wrp {
    width: 33.3%;
    height: 115px;
    border: 1px solid #CBD3DE;
    padding: 0;
}
._modalVerification ._modalCon .file_add_wrap .thmn_box {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
._modalVerification ._modalCon .file_add_wrap .thmn_box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}
._modalVerification ._modalCon .file_add_wrap .box_wrp .file_del {
    display: block;;
    position: absolute;
    width: 22px;
    height: 22px;
    background: url('/assets/img/icon/mo/file_del_icon.png') no-repeat center center;
    top: 10px;
    right: 10px;
}



@media screen and (max-width: 1024px) {
    ._bodyContainer {
        width: 100%;
        padding-top: 0;
    }
    .company-detail-wrap {
        width: 100%;
    }

    ._mo .gender-chart-container, ._mo .extra-content {
        width: 100%;
        min-height: 200px;  /*이것이 반드시 필요 */
        position: relative;
        aspect-ratio: 1 / 1;
        height: 300px;
    }

    canvas {
        width: 100% !important;
        height: 100% !important;
        display: block;
    }
    ._mo .extra-education canvas {
        height: auto !important;
    }

    ._mo .essay-item {
        border: 0;
        border-bottom: 1px solid #E0E5EB;
        border-radius: 0;
        gap: 0;
    }

    ._mo .btn-container {
        margin: 20px;
        border: 1px solid #E0E5EB;
        background-color: #FAFAFA;
    }

    ._mo .deadline-message {
        width: auto;
        margin: 20px;
        border: 1px solid #E0E5EB;
        background-color: #FAFAFA;
        padding: 60px 0;
        text-align: center;
        font-size: clamp(14px, 3vw, 18px);
        line-height: 159%;
        color: #858585;
        font-weight: 600;
    }

    ._mo .no-data-image.btn-container2 {
        width: auto;
        margin: 20px;
        border: 1px solid #E0E5EB;
        background-color: #FAFAFA;
        padding: 40px 14px;
    }

    ._mo .no-data-image.btn-container2 .insufficient-data-content > img {
        max-width: 312px;
        width: 100%;
    }

    ._mo .spec-submit-button, .status-submit-button {
        width: 100%;
        max-width: 350px;
        padding: 16px;
        font-size: clamp(16px, 3vw, 20px);
    }

    ._mo .info-icon {
        margin-top: -3px;
        margin-left: 10px;
    }

    ._modalStatusSelect {
        display: block;
        opacity: 1;
    }

    .favorite-btn.active::before {
        background: none;
    }
    .favorite-btn::before, .share-btn::before {
        display: none;
    }
    .favorite-btn, .share-btn {
        border: 0;
        padding: 0;
        border-radius: 0;
    }
    .share-btn {
        margin-left: 0;
    }
    .static_wrp {
        position: relative;
    }
    ._mo .insufficient-data-container {
        background-color: transparent !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 0 !important;
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }
    ._mo .insufficient-data-container._poFx {
        position: fixed;
        width: max-content;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 4px 6px 0px #00000008;
    }


    /* 합격자 설문 */
    .pass-total-content { padding: 20px; }
    .pass-label { margin-bottom: 10px; }
    .pass-total-wrap { padding-bottom: 40px; }
    .pass-info-sts { flex-direction: column; gap: 40px; }
    .pass-info-sts .pass-detail-box { width: 100%; }
    .pass-detail-box-title { margin: 12px 0; color: #414141; }
    .pass-detail-box-title::before { display: none; }
    .pass-detail-box-title em { color: inherit; }
    .essay-list { margin-top: 0 !important; gap: 0 !important; border: 1px solid #E0E5EB; }
    .essay-list::before, .essay-list::after { display: none; }
    .essay-item { padding: 20px 15px; }
    .essay-item:first-child { padding-top: 20px; }
    .essay-item:last-child { padding-bottom: 20px; border-bottom: none; }
    .essay-number { align-items: flex-start; color: #2561FA; line-height: 1.6; }
    .notify { line-height: 1; }

    .pass-review { height: calc(100vh - 157px); }
}

@media screen and (min-width: 1025px) {
    .company-detail-wrap._pc {
        display: flex !important;
    }
}

body.no-scroll {
  overflow: hidden !important;
  position: fixed;   /* iOS Safari에서 관성 스크롤 방지 */
  width: 100%;
   overscroll-behavior: none;
}
