/* Pretendard Thin */
@font-face {
    font-family: 'Pretendard Variable'; /* 폰트 이름 정의 (원하는 대로 지정 가능, 보통 폰트 이름으로) */
    font-weight: 100; /* 폰트 두께 (Thin) */
    font-style: normal; /* 폰트 스타일 (기울임 여부) */
    font-display: swap; /* 폰트 로딩 전략: 폰트가 로딩될 때까지 대체 텍스트 표시 후 스왑 */
    src: url('../font/pretendard/Pretendard-Thin.woff2') format('woff2'), /* 가장 먼저 로드 시도 */
         url('../font/pretendard/Pretendard-Thin.woff') format('woff'); /* 호환성을 위한 대체 */
    /* 필요한 경우 다른 형식 (.ttf, .otf)도 추가할 수 있으나, woff2/woff가 웹에서 가장 효율적 */
}

/* Pretendard ExtraLight */
@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 200; /* ExtraLight */
    font-style: normal;
    font-display: swap;
    src: url('../font/pretendard/Pretendard-ExtraLight.woff2') format('woff2'),
         url('../font/pretendard/Pretendard-ExtraLight.woff') format('woff');
}

/* Pretendard Light */
@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 300; /* Light */
    font-style: normal;
    font-display: swap;
    src: url('../font/pretendard/Pretendard-Light.woff2') format('woff2'),
         url('../font/pretendard/Pretendard-Light.woff') format('woff');
}

/* Pretendard Regular */
@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 400; /* Regular */
    font-style: normal;
    font-display: swap;
    src: url('../font/pretendard/Pretendard-Regular.woff2') format('woff2'),
         url('../font/pretendard/Pretendard-Regular.woff') format('woff');
}

/* Pretendard Medium */
@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 500; /* Medium */
    font-style: normal;
    font-display: swap;
    src: url('../font/pretendard/Pretendard-Medium.woff2') format('woff2'),
         url('../font/pretendard/Pretendard-Medium.woff') format('woff');
}

/* Pretendard SemiBold */
@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 600; /* SemiBold */
    font-style: normal;
    font-display: swap;
    src: url('../font/pretendard/Pretendard-SemiBold.woff2') format('woff2'),
         url('../font/pretendard/Pretendard-SemiBold.woff') format('woff');
}

/* Pretendard Bold */
@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 700; /* Bold */
    font-style: normal;
    font-display: swap;
    src: url('../font/pretendard/Pretendard-Bold.woff2') format('woff2'),
         url('../font/pretendard/Pretendard-Bold.woff') format('woff');
}

/* Pretendard ExtraBold */
@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 800; /* ExtraBold */
    font-style: normal;
    font-display: swap;
    src: url('../font/pretendard/Pretendard-ExtraBold.woff2') format('woff2'),
         url('../font/pretendard/Pretendard-ExtraBold.woff') format('woff');
}

/* Pretendard Black */
@font-face {
    font-family: 'Pretendard Variable';
    font-weight: 900; /* Black */
    font-style: normal;
    font-display: swap;
    src: url('../font/pretendard/Pretendard-Black.woff2') format('woff2'),
         url('../font/pretendard/Pretendard-Black.woff') format('woff');
}

body {
    font-family:"Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;;
    font-weight: normal;
    background: white !important;
    margin: 0;
    padding: 0;
}

.ls-survey-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}

.ls-survey-form-wrapper {
    margin: 0 auto;
    max-width: 570px;
    width: 100%;
    background: white;
    padding: 10px;
}


/******************************
/********** 회원가입**********/
/******************************/

.signIn-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
    width: 750px;
}

.signIn-main-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100%;
}

.signIn-form-wrapper {
    width: 100%;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.signIn-form-title {
    margin-bottom: 30px;
}

.signIn-form-title h2 {
    font-weight: 700;
    font-size: 26px;
    line-height: 34px;
    color: #333;
}

.signIn-form-label {
    color: #333;
    font-size: 16px;
    line-height: 24px;
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
}

.signIn-form-label.inquired {
    position: relative;
}

.signIn-form-label.inquired::before {
    content: '*';
    /*position: absolute;
    top: 2px;*/
    padding-left: 3px;
    font-size: 18px;
    color: #ed174b;
    width: 14px;
    height: 14px;
    font-weight: 500;
}

.signIn-input-group .signIn-form-input {
    width: 100%;
    height: auto;
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    color: #6B7280;
    outline: none;
    resize: none;
    box-sizing: border-box;
}

.signIn-input-group .signIn-form-input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.signIn-input-group .signIn-form-input:focus {
    border-color: #0569a0;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}


.signIn-input-group.email span {
    font-size: 16px;
}

.signIn-btn {
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    padding: 10px 30px;
    font-weight: 600;
    background-color: #004381;
    border: 1px solid #004381;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}


/* 버튼 스타일 */
.signIn-btn.btn-secondary {
    background: #009bb4;
    border: 1px solid #009bb4;
}

.signIn-btn.btn-secondary:hover {
    background-color: rgba(5, 105, 160, 0.75);
}


.signIn-btn.btn-secondary.search {
    padding: 11px 20px;
}

.signIn-btn.btn-secondary svg {
    color: #fff;
    font-size: 18px;
}



/* 폼 그룹 (인풋 + 버튼) */
.signIn-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.signIn-input-group .signIn-form-label {
    width: 130px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.signIn-input-group .signIn-btn {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 14px;
}

.signIn-input-group .signIn-select {
    width: 100%;
    height: auto;
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-sizing: border-box;
    background: url(../images/ico/angle-down-solid.svg) no-repeat right 10px center;
    background-size: 12px;
    outline: none;
}



/* 체크박스/라디오 버튼 스타일 */
.signIn-radio-wrapper,
.signIn-checkbox-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.signIn-radio-label,
.signIn-checkbox-label {
    padding-left: 28px;
    font-size: 15px;
    line-height: 20px;
    color: #333;
    cursor: pointer;
}

.signIn-checkbox-label a {
    color: #0569a0;
    text-decoration: none;
}

.signIn-checkbox-label a:hover {
    text-decoration: underline;
}

.signIn-input-radio,
.signIn-input-checkbox {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* 라디오 버튼 체크마크 */
.signIn-radio-checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 1px solid #DDE3EC;
}

.signIn-radio-wrapper input[type="radio"]:checked+.signIn-radio-label .signIn-radio-checkmark {
    background-color: #0569a0;
    border-color: #0569a0;
}

.signIn-radio-checkmark::after {
    content: "";
    position: absolute;
    display: block;
    left: 7px;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    opacity: 0;
}

.signIn-radio-wrapper input[type="radio"]:checked+.signIn-radio-label .signIn-radio-checkmark::after {
    opacity: 1;
}

/* 체크박스 체크마크 */
.signIn-checkbox-checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #DDE3EC;
    border-radius: 4px;
}

.signIn-checkbox-wrapper input[type="checkbox"]:checked+.signIn-checkbox-label .signIn-checkbox-checkmark {
    background-color: #0569a0;
    border-color: #0569a0;
}

.signIn-checkbox-checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.signIn-checkbox-wrapper input[type="checkbox"]:checked+.signIn-checkbox-label .signIn-checkbox-checkmark::after {
    display: block;
}


/* Step Indicator 스타일 */
.signIn-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    padding: 0 2%;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.signIn-steps .step-group-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
}

.signIn-steps .step-group-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signIn-steps .step-item {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.signIn-steps .step-icon-wrapper {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #7d8282;
    background-color: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
}

.signIn-steps .step-label {
    font-size: 16px;
    color: #A1A9B9;
    transition: all 0.3s ease;
    margin-left: 8px;
    white-space: nowrap;
    font-weight: 500;
}

/* Active Step (활성화된 스텝) */
.signIn-steps .step-item.active .step-icon-wrapper {
    background-color: #0569a0;
    color: white;
    font-weight: 600;
}

.signIn-steps .step-item.active .step-label {
    color: #333;
    font-weight: 600;
    margin-left: 10px;
}

/* Completed Step (체크 표시) */
.signIn-steps .step-item.completed .step-icon-wrapper {
    background-color: #0569a0;
    color: white;
    font-size: 0;
    position: relative;
}

.signIn-steps .step-item.completed .step-icon-wrapper::after {

    /* 폰트 적용 */
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    content: '\f00c';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.signIn-steps .step-item.completed .step-label {
    color: #333;
    font-weight: 500;
    margin-left: 10px;
}

/* 하단 진행 바 */
.signIn-steps .progress-bar {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2px;
    background-color: #0569a0;
    width: 0;
    transition: width 0.3s ease-in-out;
}

/* 현재 활성화된 스텝에 따라 너비 조절 */

/* Step 1 활성화 시 */
.signIn-steps.step-1-active .progress-bar {
    width: 28%;
}

/* Step 2 활성화 시 */
.signIn-steps.step-2-active .progress-bar {
    width: 71%;
}

/* Step 3 활성화 시 */
.signIn-steps.step-3-active .progress-bar {
    width: 100%;
}


/* form-body */
.signIn-form-body {
    width: 100%;
    margin: 0 auto;
    height: 100%;
}

.signIn-form-body-wrap {
    height: 100%;
    max-height: 550px;
    overflow-y: auto;
    padding: 0 40px;
    border-bottom: 1px solid #efefef;
}

/* 회원 구분 라디오 버튼 그룹 */
.signIn-mb-3.tableInquiry {
    flex-direction: column;
    padding: 20px;
    border: 1px solid #edf2f9;
    background: rgba(0, 117, 190, 0.035);
    position: relative;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
}

.signIn-mb-3 .membership-type {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
}

.signIn-mb-3 .membership-type .signIn-radio-wrapper {
    margin-bottom: 0;
}

/* 약관 동의 섹션별 구분 */
.signIn-mb-3 .terms-section {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
}

.signIn-mb-3 .terms-section h3 {
    background-color: #f4f7fc;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 15px;
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

/* 회원가입 모두 동의 체크 시 적용 css */
.signIn-mb-3 .terms-agree-checkbox.check-all {
    background: none;
    border: none;
    padding: 0 10px 20px;
}

.signIn-mb-3 .terms-agree-checkbox.check-all input:first-child {
    display: none;
}

/* // 회원가입 모두 동의 체크 시 적용 css */

.signIn-mb-3 .terms-section-content {
    padding: 15px;
    margin-bottom: 15px;
    height: 120px;
    overflow-y: scroll;
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

.signIn-mb-3 .terms-section-content p,
.terms-section-content ul,
.terms-section-content ol {
    margin-bottom: 10px;
}

.signIn-mb-3 .terms-section-content ul,
.terms-section-content ol {
    padding-left: 20px;
}

.signIn-mb-3 .terms-agree-checkbox {
    padding: 15px;
    border-top: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

/* LSE 직원 검색 POPUP */
.search-pop {
    padding: 3% 5%;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow: hidden;
}

.search-pop .table.search {
    width: 100%;
    height: 420px;
    overflow-y: auto;
}

/* 하단 버튼 그룹 */
.signIn-button-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.signIn-button-group .gray {
    border: 1px solid #E5ECF2;
    padding-top: 4px;
    padding-bottom: 5px;
    background: #E5ECF2;
    color: #414656;
    line-height: 15px;
}

.signIn-button-group .gray:focus {
    background: #c9cfd5;
    border: 1px solid #c9cfd5;
}

.signIn-main-wrapper .signIn-caution:before {
    content: '※';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    font-size: 13px;
}

.signIn-main-wrapper .signIn-caution {
    position: relative;
    font-size: 13px;
    line-height: 1.5;
    padding-left: 15px;
    color: #0569a0;
    margin-top: -15px;
    margin-left: 140px;
    margin-bottom: 20px;
    word-break: keep-all;
}

.signIn-mb-3.end {
    height: 100%;
    height: 48vh;
    padding: 16% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.signIn-end-info {
    padding: 0 40px;
    margin-bottom: 40px;
    word-wrap: break-word;
    word-break: keep-all;
}



/*********************/
/******  LOG IN  ******/
/*********************/

.login-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.75);
    transition: 0.3s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.login-modal .modal-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 auto;
    width: 40%;
    max-width: 450px;
    border: none;
    border-radius: 8px;
    background-color: #fefefe;
    overflow: hidden;
}

.login-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #666;
    padding: 15px 20px;
}

.login-modal .modal-header h1 {
    font-size: 28px;
    line-height: 1.5;
    color: white;
}

.login-modal .close {
    color: #fefefe;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.login-modal .close:hover,
.login-modal .close:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.login-modal .modal-body {
    padding: 30px;
}

.login-modal .modal-body .signIn-btn {
    padding: 10px 50px;
}

.login-modal .modal-body .search_complete {
    text-align: center;
    font-size: 14px;
    margin-top: 35px;
    background: rgba(0, 117, 190, 0.035);
    padding: 25px 10px;
    word-wrap: break-word;
    word-break: keep-all;
}

.login-modal .modal-body .search_complete strong {
    line-height: 2.5;
    font-size: 16px;
    color: #004381;
    border-bottom: 1px solid #004381;
}

.login-modal .signIn-input-group .signIn-form-label {
    width: 80px;
}


/*********************/
/******  INTRO  ******/
/*********************/

.ls-survey-form-wrapper.notice {
    width: 100%;
    background: #edf2f9;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ls-survey-form-wrapper.notice .ls-survey-notice {
    width: 70%;
    height: 100%;
    min-height: 76vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.notice .ls-survey-notice img {
    margin-bottom: 50px;
}

.notice .ls-survey-notice-cont {
    font-size: 16px;
    line-height: 1.5;
    color: #222c6b;
    word-wrap: break-word;
    word-break: keep-all;
    text-align: center;
}

.notice .ls-survey-notice-cont p:first-child {
    margin-bottom: 10px;
}

.notice .user_name strong {
    font-size: 17px;
}

.notice .ls-survey-btn {
    width: 50%;
    max-width: 250px;
    margin-top: 35px;
}

.ls_servey_img {
    margin: 0 auto 10%;
}

.ls_servey_img>img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
}

.ls-survey-form-img {
    display: block;
}

.ls-survey-input-group {
    margin-bottom: 18px;
}

/* radio button 구분 */
.ls-survey-input-radio-wrapper {
    margin-bottom: 25px;
}

.ls-survey-radio-flex {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ls-survey-radio-label {
    font-size: 14px;
    line-height: 24px;
    color: #07074d;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.ls-survey-input-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.ls-survey-form-wrapper input[type="text"],
.ls-survey-form-input {
    width: 100%;
    height: auto;
    padding: 13px 22px;
    border-radius: 5px;
    border: 1px solid #dde3ec;
    background: #ffffff;
    font-weight: 500;
    font-size: 16px;
    color: #07074d;
    outline: none;
    resize: none;
}

.ls-survey-form-input::placeholder {
    color: #bdbdbd;
    font-style: italic;
    white-space: nowrap;
    overflow-x: auto;
    text-overflow: clip;
}

.ls-survey-form-input:focus {
    border-color: #0569a0;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.ls-survey-form-label {
    color: #07074d;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
}

.ls-survey-form-label.inquired {
    position: relative;
}

.ls-survey-form-label.inquired::after {
    content: '*';
    position: absolute;
    top: -2px;
    padding-left: 3px;
    font-size: 14px;
    color: red;
    width: 10px;
    height: 10px;
    font-weight: 500;
}

.ls-survey-btn {
    text-align: center;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    padding: 14px 25px;
    border: none;
    font-weight: 500;
    background-color: #0075be;
    color: white;
    cursor: pointer;
    margin-top: 25px;
    text-decoration: none;
}

.ls-survey-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.question_wrap {
    margin-top: 50px;
    color: #07074d;
    word-wrap: break-word;
    word-break: keep-all;
}

.question_wrap .form-detail {
    overflow: hidden;
    margin-bottom: 30px;
}

.question_wrap .form-detail:first-child {
    margin: 0;
}

.question_wrap .form-detail .form-detail-head {
    margin: 0;
}

.question_wrap .category {
    font-size: 17px;
    font-weight: 500;
    color: #009bb4;
    margin-bottom: 10px;
}

.question_wrap .form-detail+h2 {
    margin-top: 50px;
}

.question_wrap .form-detail-head .title {
    word-break: keep-all;
    font-weight: normal;
    font-size: 15px;
    color: #004381;
}

.question_wrap .form-detail-head .title strong {
    display: block;
    margin-bottom: 5px;
    color: #07074d;
}

.question_wrap .form-detail .tit_h4 {
    margin: 15px 0 0 16px;
    text-indent: -16px;
}

.question_wrap .form-detail .ui-radio-group {
    display: block;
    margin: 10px 0 0;
}

.question_wrap .box-wrap {
    position: relative;
    padding: 30px 15px;
    border-radius: 6px;
    background: #fff;
    box-shadow: inset 0 0 0 1px red;
}

.question_wrap .box-wrap:before {
    content: "";
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translate(-50%, 0);
    display: block;
    width: 220px;
    height: 102px;
}

.question_wrap .form-detail .ui-radio-block {
    float: left;
    width: auto;
    margin-top: 10px;
}

.question_wrap .form-detail .ui-radio-block:nth-child(1),
.question_wrap .form-detail .ui-radio-block:nth-child(2) {
    margin: 0;
}

.question_wrap .form-detail .ui-radio-block {
    float: none;
    width: auto;
}

.question_wrap .form-detail .ui-radio-block:nth-child(2) {
    margin: 10px 0 0;
}

.question_wrap .ui-radio-group.type-wrap {
    margin-bottom: 0;
}

.question_wrap .ui-radio-group.type-wrap .ui-radio-block {
    flex: 0 0 100%;
}

.question_wrap .ui-radio-block+.ui-radio-block {
    margin-left: 0;
}

.ui-radio-block .ui-radio {
    display: inline-block;
    vertical-align: top;
    width: 1px;
    height: 1px;
    position: absolute;
    left: 0;
    z-index: -1;
    opacity: 0;
}

.question_wrap input:not([type='range']) {
    -webkit-appearance: auto;
    -moz-appearance: auto;
    appearance: auto;
}

.question_wrap .ui-radio-object {
    border: 1px solid gray;
    background: white;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    position: relative;
}

.question_wrap .ui-radio-object::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background: white;
}

.ui-radio:checked+.ui-label .ui-radio-object::after {
    background: #004381;
}

.question_wrap .ui-label-text {
    font-size: 14px;
    font-weight: 500;
}

.question_wrap .ui-input {
    font-family: inherit;
    font-size: 15px;
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: auto;
    background: #fff;
    overflow: hidden;
    padding: 16px 15px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    line-height: 1.5;
    resize: none;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
}

/* 설문 라디오버튼 가로 스타일 [25-07-07 mj]*/
.question_wrap .form-detail .ui-radio-group.straight {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
    margin: 15px 0 0 0;
    padding: 0 9px;
}

/* 라디오 그룹 배경에 가로 선 추가 */
.question_wrap .form-detail .ui-radio-group.straight::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 9px;
    right: 9px;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.ui-radio-group.straight .ui-radio-block {
    margin-top: 0 !important;
    flex-shrink: 0;
    text-align: center;
    width: 20%;
    position: relative;
    z-index: 1;
}

.ui-radio-group.straight .ui-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    cursor: pointer;
    position: relative;
}

/* 라디오 버튼 오브젝트 */
.ui-radio-group.straight .ui-radio-object {
    border: 1px solid gray;
    background: white;
    width: 18px;
    height: 18px;
    border-radius: 100%;
    position: relative;
    margin-bottom: 5px;
    z-index: 2;
}

/* 첫 번째 라디오 버튼의 왼쪽에 삐져나온 선을 가리기 위한 가상 요소 */
.ui-radio-group.straight .ui-radio-block:first-child .ui-label::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: white;
    z-index: 1;
}

/* 마지막 라디오 버튼의 오른쪽에 삐져나온 선을 가리기 위한 가상 요소 */
.ui-radio-group.straight .ui-radio-block:last-child .ui-label::after {
    content: '';
    position: absolute;
    top: 9px;
    right: 0;
    width: 40px;
    height: 1px;
    background-color: white;
    z-index: 1;
}

.ui-radio-group.straight .ui-label-text {
    margin: 0;
    text-align: center;
}

.form-detail .ui-input-block {
    margin: 10px 0 0;
    position: relative;
    box-sizing: border-box;
}

textarea.ui-input {
    resize: none;
    height: 160px;
}

textarea.ui-input:focus {
    outline: none;
    border-color: #0569a0;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.1);
}

.count_area {
    text-align: right;
    margin: 5px 5px 0 0;
}

.current {
    color: #009bb4;
    font-weight: 500;
}



/*********************/
/******  FINISH  ******/
/*********************/

.notice img.ls-survey-finish-logo {
    margin: 50px 0 0 0;
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    filter: grayscale(100%);
    opacity: 0.45;
}

/* 반응형 */
@media screen and (max-width: 569px) {
    .ls-survey-main-wrapper {
        padding: 30px;
    }

    .ls-survey-form-wrapper {
        max-width: 100%;
        padding: 0;
        position: relative;
    }

    .ls-survey-form-input {
        font-size: 15px;
    }

    .ui-radio-group.straight .ui-radio-block:first-child .ui-label::after,
    .ui-radio-group.straight .ui-radio-block:last-child .ui-label::after {
        width: 40px;
    }
}

@media screen and (max-width: 375px) {
    .ls-survey-main-wrapper {
        padding: 30px 20px;
    }


    .ls-survey-form-input {
        font-size: 14px;
    }
}

@media screen and (max-width: 320px) {
    .ui-radio-group.straight .ui-label-text span {
        display: block;
    }

    .ui-radio-group.straight .ui-radio-block:first-child .ui-label::after,
    .ui-radio-group.straight .ui-radio-block:last-child .ui-label::after {
        width: 30px;
    }
}

/* scroll 요소 */
::-webkit-scrollbar {
    width: 11px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    outline: none;
    border-radius: 10px;
    border: 4px solid transparent;
    box-shadow: inset 6px 6px 0 rgba(34, 34, 34, 0.15);
}

::-webkit-scrollbar-track {
    box-shadow: none;
    background-color: transparent;
}

/* 회원가입 동의서 및 약관 25-09-19 */
 .terms-section-content .provision{
    padding: 0 10px;
    height: 250px;
}

 .terms-section-content .provision h1,
 .terms-section-content .provision h2{
    line-height: 1.5;
    margin: 10px 0 15px;
}

.terms-section-content .provision h1,
.terms-section-content .terms h1{
    font-size: 18px;
}

.terms-section-content .provision h2,
.terms-section-content .terms h2{
    font-size: 16px;
}

.terms-section-content .provision p{
    padding-bottom: 10px;
    margin: 0;
}

/* .terms-section-content .provision ol,
.terms-section-content .provision ul,
.terms-section-content .provision ol.first li
{
    list-style-position: inside;
} */

/* .terms-section-content .provision ol li
{
    list-style-type: decimal;
} */

/* .terms-section-content .provision ul li{
    list-style-type: disc;
} */

.terms-section-content .provision ul.second{
    /* list-style-type: disc; */
    padding: 0 0 15px 18px;
    list-style: none;
    margin: 0;
}