/* 폰트 설정 */
/*@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/NotoSansKR/NotoSansKR-Light.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/NotoSansKR/NotoSansKR-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/NotoSansKR/NotoSansKR-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Noto Sans KR';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/NotoSansKR/NotoSansKR-Bold.woff2') format('woff2');
}

 */
/* Google Fonts에서 최적화된 폰트 로드 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;700&family=Lato:wght@400;700&display=swap');

/* 기본 폰트 설정 */
body {
    font-family: 'Noto Sans KR', 'Lato', sans-serif;
    font-weight: 400;
}

/* 경량 폰트 */
.light {
    font-weight: 300; /* Lato와 Noto Sans KR의 400이 기본이므로 Noto Sans KR의 Light를 생략 가능 */
}

/* 중간 폰트 */
.medium {
    font-weight: 500; /* 대체 폰트에서 500은 자동으로 400 또는 700으로 대체됨 */
}

/* 굵은 폰트 */
.bold {
    font-weight: 700;
}

/* 루트 변수 설정 */
:root {
    --primary-color: #4A90E2;
    --secondary-color: #2C3E50;
    --font-family: 'Noto Sans KR', sans-serif;

    /* Font Family */
    --font-family: 'Noto Sans KR', sans-serif;

    /* Font Sizes - PC */
    --font-size-base: 16px;
    --font-size-h1: 48px;
    --font-size-h2: 40px;
    --font-size-h3: 32px;
    --font-size-h4: 24px;
    --font-size-h5: 20px;
    --font-size-h6: 16px;
    --font-size-p: 16px;

    /* Gray Colors */
    --gray-100: #FFFFFF;
    --gray-200: #F0F0F4;
    --gray-300: #E5E5E7;
    --gray-400: #ADB1B5;
    --gray-500: #9497A0;
    --gray-600: #64758C;
    --gray-700: #5E6063;
    --gray-800: #505B86;
    --gray-900: #1C1E2A;

    /* Blue Colors */
    --blue-100: #BBD9E9;
    --blue-200: #8DADDD;
    --blue-300: #80CBD1;
    --blue-400: #6CB2C8;
    --blue-500: #b4dadd;
    --blue-600: #064B76;
    --blue-700: #6cb2c6;
    --blue-800: #1381b6;
}

/* Base Font Size */
html {
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.2;
}

/* Heading Styles */
h1 {
    font-size: var(--font-size-h1);
    line-height: 1.3;
}

h2 {
    font-size: var(--font-size-h2);
    line-height: 1.35;
}

h3 {
    font-size: var(--font-size-h3);
    line-height: 1.4;
}

h4 {
    font-size: var(--font-size-h4);
    line-height: 1.45;
}

h5 {
    font-size: var(--font-size-h5);
    line-height: 1.5;
}

h6 {
    font-size: var(--font-size-h6);
    line-height: 1.5;
}

p {
    font-size: var(--font-size-p);
    line-height: 1.8;
}

/* Responsive Font Sizes */
@media screen and (max-width: 768px) {
    :root {
        /* Font Sizes - Tablet */
        --font-size-base: 16px;
        --font-size-h1: 36px;
        --font-size-h2: 32px;
        --font-size-h3: 28px;
        --font-size-h4: 22px;
        --font-size-h5: 18px;
        --font-size-h6: 16px;
        --font-size-p: 16px;
    }
}

/* 더 작은 모바일 화면에서의 추가 조정 */
@media screen and (max-width: 480px) {
    :root {
        --font-size-base: 14px;
        --font-size-h1: 34px;
        --font-size-h2: 28px;
        --font-size-h3: 22px;
        --font-size-h4: 18px;
        --font-size-h5: 16px;
        --font-size-h6: 14px;
        --font-size-p: 14px;
    }
}

/* 유동적인 폰트 크기를 위한 클래스 */
.text-responsive {
    font-size: clamp(14px, 1vw + 10px, 16px);
}

/* 긴 텍스트를 위한 최적화된 행간 */
.text-content {
    font-size: var(--font-size-p);
    line-height: 1.6;
    letter-spacing: -0.3px;
}

/* 전체 요소에 폰트 적용 */
* {
    font-family: var(--font-family);
}

/* 특정 요소들의 폰트 웨이트 조정 */
.logo{
    margin-top: 5px;
}
.logo a{
    display:flex;
    align-items: center;
    gap: 5px;
}
.start-btn {
    font-family: var(--font-family);
    font-weight: 500;
}

.nav-content ul li a {
    font-family: var(--font-family);
    font-weight: 400;
}

.back-btn {
    font-family: var(--font-family);
    font-weight: 400;
}

.user-email a {
    font-family: var(--font-family);
    font-weight: 400;
}

/* 기본 스타일 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans KR', sans-serif;
    /* background:var(--gray-200); */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mb-0{
    margin-bottom: 0 !important;
}

/* 헤더 스타일 */
.header {    
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    background: var(--gray-100);
    z-index: 100;
}
.header-container{
    display: flex;
    max-width: 600px;
    align-items: center;
    padding: 10px 20px;
    justify-content: space-between;
    margin: auto;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* 시작하기 버튼 */
.start-btn {
    background: linear-gradient(93.3497deg, rgb(30, 96, 117) 0%, rgb(63, 197, 240) 100%);
    color: white;
    width: 109px;
    border: none;
    padding: 2px 15px;
    border-radius: 8px;
    height: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

.start-btn:hover {
    background-color: #357ABD;
}

/* 햄버거 메뉴 */
.h-menu {
    width: 15px;
    height: 14px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
}

.h-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: .25s ease-in-out;
}

.h-menu span:nth-child(1) { top: 0; }
.h-menu span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.h-menu span:nth-child(3) { bottom: 0; }

/* 햄버거 메뉴 활성화 상태 */
.h-menu.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.h-menu.active span:nth-child(2) {
    opacity: 0;
}

.h-menu.active span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
}

/* 전체화면 네비게이션 수정 */
.fullscreen-nav {
    position: fixed;
    top: 0;
    right: -2000px;
    width: 600px;
    height: 100vh;
    background: #fff;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.1);
}

.fullscreen-nav.active {
    right: 0;
}
.fullscreen-nav .nav-header{
    padding-left: 20px;
}
/* 네비게이션 헤더 */
.nav-header {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    margin: auto;
}
.header-left{
    position:relative;
}
.header-center{
    color:var(--gray-800);
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}
.header-center h5{
    font-size:20px;
    margin: auto;
}
.header-right{
    /* position:absolute; */
    right:20px;
}
.header-right a{
    color:var(--gray-900);
    text-decoration:none;
    font-size:20px;
}
/* 이전으로 버튼 */
.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    padding: 5px;
}

.arrow-left {
    width: 12px;
    height: 12px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg);
    display: inline-block;
}

/* 네비게이션 로고 */
.nav-logo {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-logo img {
    width: initial;
    height: initial;
    max-height: 48px;
    object-fit: contain;
}

/* 네비게이션 컨텐츠 */
.nav-content {
    position: relative;
    padding: 24px;
}

.nav-content ul {
    width: 100%;
    padding: 0;
    margin: 0;
}

.menu-buttons {
    list-style: none;
    padding: 15px;
    margin: 0;
    background: #F6F6F6;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
}

.menu-buttons li {
    flex: 1;
}

.menu-buttons .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    padding: 8px;
}

.menu-buttons .nav-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.menu-buttons li:first-child {
    border-right: 1px solid #E0E0E0;
}

.member-section,.board-section {
    max-width: 640px;
    height: 100%;
    margin: auto;
    background: var(--gray-100);
}
.board-section {
    /* background: var(--gray-200); */
}

/* 원형 프로그레 바 */
.percentage-circle {
    position: relative;
    width: 200px;
    height: 200px;
}

.progress-ring {
    transform: rotate(-90deg);
}

/* 네비게이션 뉴 컨텐츠 */
.nav-menu-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.nav-menu-contents img {
    width: auto;
    height: auto;
    margin-bottom: 20px;
}

.user-email {
    margin: 0;
    text-align: center;
}

.user-email a {
    color: var(--gray-900);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    border-bottom: 1px solid var(--gray-900);
}

.user-email a:hover {
    color: var(--primary-color);
}



/* 그라데이션 텍스트 효과 */
.check-btn {
    position: relative;
    padding: 8px 16px;
    font-size: 15px;
    background: white;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    height: 47px;
    min-width: 220px;
    transition: all 0.3s ease;
}

/* 그라데이션 테두리 효과 */
.check-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    background: linear-gradient(45deg, #2a85a2, #3fc5f0);
    z-index: -1;
}

/* 텍스트 그라데이션 효과 */
.check-btn span {
    background: linear-gradient(45deg, #1f6176, #3fc5f0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* 호버 효과 */
.check-btn:hover {
    background-color: #EFF6FF;
}

/* 기본 페이드인 애니메이션 */
.animate-text {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.gradient-text {
    background: linear-gradient(180deg, #1f6176 0%, #3FC5F0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.gradient-text1 {
    background: linear-gradient(90deg, #1baff9 0%, #ca43f9 54%, #fa931b 93%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.gradient-text2 {
    background: linear-gradient(90deg, #1baff9 -50%, #ca43f9 100%, #fa931b 50%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

/* h1 태그 애니메이션 */
h1.animate-text {
    animation-delay: 0s;
}

/* h1 내부의 gradient-text 애니메이션 */
h1.animate-text .gradient-text {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
    animation-delay: 0.5s;
}

/* p 태그 애니메이션 - h1 다음에 나타나도록 */
p.animate-text {
    animation-delay: 1s;
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section {
    text-align: center;
    padding-top: 90px;
    padding-bottom: 90px;
    background: var(--gray-100);
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-section h1,
.hero-section p {
    text-align: center;
    margin-top: 0;
    margin-bottom: 24px;
}

.hero-section .card-animation {
    display: flex;
    justify-content: center;
}

.sym-bg{
    background: url(../images/contents/symbol-bg.png) no-repeat top center;
    padding: 90px 5px 0;
    margin-top: 10px;
}
.info-contents,.info-biz{
    text-align:center;
}

.bg-gradient{
    background:#fff url(../images/contents/_img_gredient_01.png);
    background-size: cover;
    /* height: 1520px; */
}
.bg-gradient2{
    background:#fff url(../images/contents/_img_gredient_02.png) no-repeat;
    background-size: cover;
    padding-top: 60px;
}
.card{
    padding-bottom: 90px;
}
.contents-header img {
    width:auto;
    margin:auto;
}

.drop-shadow-skyblue{
    filter: drop-shadow(0px -19px 70px rgba(63, 197, 240, 0.3));
}

.d-right{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-direction: column;
}
.d-center {
    display: flex;
    justify-content: center;
    text-align: center;
}

.ani-box{
    position: relative;
    width: 100%;
    max-width: 375px;
    overflow: hidden;
    margin: auto;
}
.ani-box .loading-img{
    display: flex;
    margin-right: -50px;
    overflow: hidden;
}
.ani-box .brand-data{
    position: absolute;
    top: 70px;
    right: 0;
}
.ani-box1{
    position: relative;
    max-width: 375px;
    margin: auto;
}
.ani-box1 .loading-img1{
    display: flex;
    overflow: hidden;
}
.ani-box1 .brandinfo-data{
    position: absolute;
    top: 70px;
    left: 0;
}
.ani-box1 .brandinfo-data1{
    position: absolute;
    top: 150px;
    right: 0;
}
.ani-box1 .brandinfo-data2{
    position: absolute;
    bottom: 15px;
    left: 10%;
}
.ani-box2{
    position: relative;
    max-width: 375px;
    height: 224px;
    margin: auto;
    margin-bottom: 80px;
}
.ani-box2 .left{
    position: absolute;
    left: 5px;
}
.ani-box2 .right{
    position: absolute;
    top: -41px;
    right: 5px;
}
.progress-section {
    display: flex;
    width: 327px;
    height: 300px;
    position: relative;
    background: #fff;
    margin: auto;
    border-radius: 30px;
}

.progress-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.progress-wrapper {
    position: relative;
    width: 212px;
    height: 212px;
}

.svg-progress {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 8px;
}

.circle-progress {
    fill: none;
    stroke-width: 8px;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 0.1s ease;
}

.text-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.accuracy-text {
    color: #000;
    font-size: 14px;
    margin-bottom: 4px;
    padding: 5px 14px;
    background: #E7EAF0;
    border-radius: 36px;
    font-weight: 900;
    font-family: 'Lato';
}

.percentage-text .num{
    font-size: 55px;
    font-weight: 900;
    font-family: 'Lato';
}

.percentage-text .per{
    font-size: 24px;
    font-weight: 900;
    font-family: 'Lato';
}

/* 모바일 화면에서는 전체화면으로 변경 */
@media screen and (max-width: 768px) {
    .fullscreen-nav {
        width: 100%;
        /* right: -100%; */
    }
    
    .fullscreen-nav .arrow-left {
        transform: rotate(180deg);
    }
}

/* 기본적으로 오른쪽 화살표 스타일 */
.arrow-direction {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(-135deg);
}
.aside{
    transform: rotate(45deg); /* 오른쪽 방향 */
}

/* 모바일에서는 왼쪽 화살표로 변경 */
@media screen and (max-width: 768px) {
    .arrow-direction {
        transform: rotate(-135deg); /* 왼쪽 방향 */
    }
}


/* 컨텐츠 섹션 */
.main-section{
    /* padding: 20px 0; */
    max-width: 640px;
    margin: auto;
    background: var(--gray-100);
}
/* 컨텐츠 버튼 스타일 */
.button-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.left-icon {
    width: 24px;
    height: 24px;
}

.custom-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--gray-200);
    padding: 40px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid transparent;
}
.custom-button:hover{
    background:var(--gray-100);
    border:1px solid var(--gray-300);
}
.custom-button span {
    color: #333;
    font-size: 20px;
}

.custom-button img {
    width: auto;
}

/* 상표종류 입력 페이지 */
.trademark-type {
    padding: 0;
    max-width: 600px;
    margin: auto;
}

.trademark-type h2 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 5px;
    margin-top: 0px;
}

.price{
    font-size: 32px;
    color:var(--blue-800);
    font-weight:bold;
    margin: 0;
    line-height: 1.2;
}
.sub-text {
    color: var(--gray-500);
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 32px;
}
.sub-text br{
    display:none;
}
.info{
    color: var(--gray-900);
    font-size: 16px;
}
.type-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.img-box{
    margin: 79px auto;
    text-align: center;
}
.complete{
    text-align: center;
}
.type-item {
    position: relative;
}

.type-item input[type="radio"] {
    display: none;
}

.type-item label {
    display: flex;
    align-items: center;
    padding: 22px 24px;
    border: 1px solid var(--gray-200);
    border-radius: 14px;
    cursor: pointer;
    position: relative;
    justify-content: space-between;
}

.check-icon {
    position: absolute;
    right: 16px;
    width: 24px;
    height: 24px;
    background: url('../images/contents/ico-check.png') no-repeat center/contain;
    margin-right: 0;
}

input[type="radio"]:checked + label {
    border-color: #1381b6;
}

input[type="radio"]:checked + label .check-icon {
    background-image: url('../images/contents/ico-check-on.png');
}

.type-name {
    font-weight: 500;
    font-size: 20px;
}

.type-example {
    margin-right: 48px;
    color: var(--gray-400);
    font-weight: 500;
    font-size: 14px;
}
/* 버튼 스타일 */
.next-btn, .submit-btn, .reset-btn {
    flex: 1;
    width: 100%;
    max-width: 1240px;
    padding: 16px;
    background: var(--blue-800);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: auto;
}
.apply-btn {
    flex: 1;
    padding: 16px;
    background: var(--blue-800);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.chat-btn {
    flex: 1;
    padding: 16px;
    background: #fff;
    color: var(--blue-800);
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--blue-800);
}

.join-next-btn {
    flex: 1;
    width: 100%;
    padding: 16px;
    background: var(--blue-800);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.non-join-next-btn {
    flex: 1;
    width: 100%;
    padding: 16px;
    background: #fff;
    color: var(--blue-800);
    border: none;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--blue-800);
}

.next-btn.active, .submit-btn.active, .reset-btn.active {
    background: var(--blue-800);
    cursor: pointer;
}

.next-btn:disabled, .submit-btn:disabled, .reset-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* .next-btn:not(:disabled) {
    opacity: 1;
    cursor: pointer;
}

.next-btn[data-disabled="true"] {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.next-btn[data-disabled="false"] {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
} */

/* 레이어 팝업 */
.pop-layer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 700px;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 1000000;
}
.pop-layer .pop-container {
    width: 100%;
    padding: 20px 0 20px 25px;
    box-sizing: border-box;
}
.pop-layer .xBtn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
}
.pop-layer .xBtn img {
    width: 20px;
}
.pop-layer .pop-conts .title {
    text-align: center;
    margin: 20px 0;
}
.pop-layer .pop-conts .title span {
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 2px solid #333;
}
.pop-layer .pop-conts .subTitle {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 30px;
    margin-bottom: 10px;
    line-height: 1.4;
}
.pop-layer .pop-conts .textBox {
    width: 100%;
    height: 558px;
    overflow-y: scroll;
}
.pop-layer .pop-conts .text01 {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
.pop-layer .pop-conts .text02 {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
.pop-layer .pop-conts .text02 div {
    line-height: 1.6;
}
.pop-layer .pop-conts .text02 table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
.pop-layer .pop-conts .text02 table th {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    border: 1px dotted #ddd;
    background-color: #f4f4f4;
    text-align: center;
    padding: 10px 5px;
}
.pop-layer .pop-conts .text02 table td {
    font-size: 14px;
    color: #333;
    border: 1px dotted #ddd;
    text-align: center;
    padding: 10px 5px;
}
.pop-layer .file_list {
    width: 100%;
    box-sizing: border-box;
}
.pop-layer .file_list li {
    display: table;
    width: 100%;
    height: 65px;
    table-layout: fixed;
    border-top: 1px solid #eef0f5;
    box-sizing: border-box;
}
.pop-layer .file_list li:first-child {
    border-top: 0;
}
.pop-layer .file_list li .file_title {
    display: table-cell;
    width: 165px;
    height: 65px;
    color: #777;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.22px;
    text-align: left;
    vertical-align: middle;
}
.pop-layer .file_list li .file_detail {
    display: table-cell;
    padding-left: 20px;
    color: #333;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: -0.22px;
    vertical-align: middle;
}
.pop-layer .file_list .fileBox {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px;
    padding-right: 80px;
    color: #333;
    font-size: 14px;
    line-height: 20px;
    border: solid 1px #dddee3;
    background-color: #f5f6fa;
    box-sizing: border-box;
    height: 42px;
}
.pop-layer .file_list .fileBox button {
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    bottom: 0;
    width: 78px;
    box-sizing: border-box;
    background-color: #436fe0;
    border: 1px solid #436fe0;
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 40px;
    text-align: center;
    z-index: 1;
}

.pop-layer .file_list .inputBox {
    display: inline-block;
    width: 100%;
    height: 40px;
    vertical-align: middle;
}
.pop-layer .file_list .inputBox input {
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px;
    color: #333;
    font-size: 14px;
    border: solid 1px #dddee3;
    background-color: #f5f6fa;
    outline: none;
    box-sizing: border-box;
}
.pop-layer .file_list .textArea {
    width: 100%;
    height: 135px;
    box-sizing: border-box;
    overflow-y: auto;
}
.pop-layer .file_list .textArea textarea {
    display: block;
    width: 100%;
    height: 100%;
    padding: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    border: 1px solid #dddee3;
    background-color: #f5f6fa;
    outline: none;
    resize: none;
    box-sizing: border-box;
}
.pop-layer .saveBtn {
    display: block;
    width: 184px;
    height: 56px;
    margin: 30px auto 34px;
    background-color: #436fe0;
    color: #fff;
    font-size: 16px;
    line-height: 56px;
    text-align: center;
}
.pop-layer.ty2 {
    height: auto;
}
.pop-layer.ty2 .pop-container {
    padding: 0;
}
.pop-layer.ty2 .xBtn {
    top: 12px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: url(../img/common/m-ico-close.png) no-repeat 50% 50%;
    background-size: 40px 40px;
}
.pop-layer.ty2 .pop-tit {
    padding: 23px 16px;
    background-color: #436fe0;
}
.pop-layer.ty2 .pop-tit .title {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.25px;
}
.pop-layer.ty2 .pop-conts {
    padding: 20px;
}
.pop-layer.ty3 {
    width: 328px;
    height: auto;
}
.pop-layer.ty3 .pop-container {
    padding: 50px 10px 24px;
    text-align: center;
}
.pop-layer.ty3 .pop-container .pop-desc {
    color: #333;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: -.4px;
}
.pop-layer.ty3 .pop-container .pop-btn {
    display: inline-block;
    min-width: 120px;
    height: 40px;
    margin-top: 28px;
    padding: 0 20px;
    border: 1px solid #436fe0;
    box-sizing: border-box;
    background-color: #436fe0;
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    line-height: 38px;
    text-align: center;
    vertical-align: middle;
}

@media (max-width: 1024px){

    .pop-layer {
        width: 96%;
        height: 96vh;
    }
    .pop-layer .pop-container {
        padding: 20px 10px;
        box-sizing: border-box;
    }
    .pop-layer .pop-conts .title span {
        font-size: 20px;
    }
    .pop-layer .pop-conts .subTitle {
        font-size: 14px;
    }
    .pop-layer .pop-conts .text01 {
        font-size: 12px;
    }
    .pop-layer .pop-conts .text02 table th,
    .pop-layer .pop-conts .text02 table td {
        font-size: 12px;
    }
    .pop-layer .pop-conts .textBox {
        height: calc(100vh - 125px);
    }
}

.input-area {
    display: flex;
    padding-top: 20px;
    flex-direction: column;
}

label {
    display: block;
    font-size: 12px;
    color: var(--gray-800);
    margin-bottom: 0;
    font-weight: 500;
}



/* 포커스 상태일 때의 라벨 색상 */
.input-label.focused {
    color:var(--blue-800);
}

input[type="text"] {
  /*  px; */
    font-size: 20px;
    outline: none;
    color: var(--gray-900);
    font-weight: 500;
    caret-color: var(--blue-800);
}

input[type="text"]:focus {
    border-color:var(--blue-800);
}
textarea{
    border: 0;
    font-size: 20px;
    color: var(--gray-400);
    outline: none;
    height: 200px;
    caret-color: var(--blue-800);
}
.button-area {
    position: relative;
    padding: 20px 0;
    background-color: #fff;
    text-align: center;
    margin-top: 80px;
}

/* 상표이미지 업로드 */
.image-upload-area {
    display: flex;
    margin-bottom: 20px;
    justify-content: space-between;
    gap: 10px;
}

.upload-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 4px;
}

.upload-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.upload-box {
    display: flex;
    width: calc(100% - 70px);
    justify-content: flex-end;
    background: var(--gray-200);
    height: 54px;
    border-radius: 14px;
}

.find-btn {
    width: 70px;
    padding: 8px 14px;
    background-color: var(--blue-800);
    border: 0;
    border-radius: 4px;
    color: var(--gray-100);
    cursor: pointer;
    border-radius: 14px;
    font-weight: 600;
    font-size: 16px;
}

.file-info {
    display: flex;
    align-items: center;
    padding: 0 0 16px 0;
    border-radius: 8px;
}

.file-name {
    color: var(--gray-900);
    font-size: 20px;
    font-weight: 500;
}

.delete-btn {
    border: none;
    background: none;
    color: var(--gray-600);
    font-size: 16px;
    cursor: pointer;
    padding: 0 8px;
    font-weight: 600;
}

.preview-image {
    width: 100%;
    margin-bottom: 20px;
}

.preview-image img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
}

.checkbox-area {
    margin-bottom: 80px;
    border-top: 1px solid var(--gray-200);
}

.checkbox-item {
    position: relative;
    border-bottom: 1px solid var(--gray-200);
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.checkbox-item label {
    display: flex;
    padding: 20px 0;
    cursor: pointer;
}

/* 커스텀 체크박스 스타일 */
.checkbox-item label:before {
    content: '';
    width: 24px;
    height: 24px;
    background-color: var(--gray-300);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* 체크박스 선택 시 스타일 */
.checkbox-item input[type="checkbox"]:checked + label:before {
    background-color: var(--blue-800);
}

/* 체크 표시 스타일 */
.checkbox-item label:after {
    content: '';
    position: absolute;
    display: flex;
    width: 16px;
    height: 12px;
    top: 26px;
    left: 4px;
    color: white;
    font-size: 16px;
    opacity: 0;
    background: url(../images/contents/checkbox.png) no-repeat;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + label:after {
    opacity: 1;
}

.main-text {
    display: flex;
    width: calc(100% - 35px);
    align-items: flex-start;
    gap: 0px;
    padding-left: 10px;
    line-height: 1.6;
}

.class-num {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-800);
    min-width: 45px;
}

.class-name {
    font-size: 16px;
    color: var(--gray-900);
    max-width: 450px;
    padding: 0 0 0 20px;
}

@media screen and (max-width: 620px) {
    .class-name {
        max-width: 300px;
    }
}

@media screen and (max-width: 470px) {
    .class-name {
        max-width: 200px;
    }
}

.class-code {
    margin-left: auto;
    font-size: 14px;
    color: var(--gray-900);
    display: flex;
    justify-content: flex-end;
    line-height: 1.8;
    min-width: 27px;
}

/* 비활성화된 체크박스 스타일 */
.checkbox-item.disabled label {
    cursor: not-allowed;
}

.checkbox-item.disabled label:before {
    background-color: #E5E5E5;
}

.checkbox-item.disabled .class-num,
.checkbox-item.disabled .class-name,
.checkbox-item.disabled .class-code {
    color: #999;
}

/* 가입 및 신청화면 */
.input-group {
    margin-bottom: 20px;
}

.input-label {
    display: block;
    font-size: 14px;
    color: var(--gray-800);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.input-label.focused {
    color: var(--blue-800);
}

.input-field {
    display: flex;
    width: 100%;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-field:focus {
    border-color: var(--blue-800);
}

.button-group {
    margin-top: 32px;
    margin-bottom: 16px;
}

.email-btn {
    background-color: var(--blue-800);
    color: #fff;
}

.email-btn.active {
    background-color: var(--blue-800);
}

.email-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.kakao-btn {
    background-color: #FEE500;
    color: var(--gray-900);
}

.checkbox-wrap {
    margin: 66px 0 30px 0;
}

.agree-checkbox {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    justify-content: center;
}

.agree-checkbox input {
    position: absolute;
    opacity: 0;
}
.agree-checkbox .checkmark {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    position: relative;
    transition: all 0.3s ease;
    background: url(../images/contents/ico-check.png) no-repeat;
}


.checkmark {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.agree-checkbox input:checked ~ .checkmark {
    display: flex;
    width: 20px;
    height: 20px;
    opacity: 1;
    background: url(../images/contents/ico-check-on.png) no-repeat;
    transition: all 0.3s ease;
}

.agree-checkbox input:checked ~ .checkmark:after {
    opacity: 1;
}

.agree-text {
    font-size: 14px;
    color: #333;
}

.login-link {
}

.login-link a {
    color: var(--blue-800);
    font-size: 16px;
    font-weight: 900;
    border-bottom: 1px solid var(--blue-800);
    text-decoration: none;
}

.line-container {
    text-align: center;
    padding: 20px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; 
}

.subj {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 600;
    margin: 0 15px;    /* 양쪽 여백 추가 */
    padding: 0;
    letter-spacing: -0.5px;
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
}

/* 양쪽 라인 스타일 */
.line-container::before,
.line-container::after {
    content: '';
    height: 2px;
    background-color: var(--gray-200);
    flex: 1;           /* 남은 공간 채우기 */
}

/* 모달 스타일 */
.modal {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 15px;
    right: 15px;
    /* background-color: #fff; */
    /* border-radius: 16px; */
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    z-index: 1000;
}

.modal.show {
    transform: translateY(0);
}

.modal-content {
    max-width: 560px;
    margin: auto;
    padding: 24px;
    background: var(--gray-100);
    border-radius: 16px;
}

.modal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-top: 5px;
    margin-bottom: 12px;
}

.modal-desc {
    font-size: 16px;
    color: var(--gray-700);
    margin-bottom: 24px;
}

.find-pass {
    text-align: center;
    margin-top: 12px;
    margin-bottom: 10px;
}

.find-pass a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-700);
    padding-bottom: 1px;
}

/* 배경 오버레이 */
.modal-overlay {
    /* display: none; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* 회원 정보  */
.profile-container {
    /* margin: 24px auto; */
    max-width: 600px;
    padding: 24px;
}

.profile-content {
}

.profile-item {
    display: flex;
    align-items: center;
    padding: 16px 0;
    justify-content: space-between;
}

.profile-label {
    width: 100px;
    color: var(--gray-800);
    flex-shrink: 0;
    font-size: 16px;
}

.profile-value {
    color: var(--gray-900);
    flex-grow: 0;
    font-size: 20px;
}

.button-container {
    padding: 24px;
}

.button-container-report {
    display: flex;
    gap: 10px;  /* 버튼 사이의 간격 (원하는 값으로 조절) */
    /* 필요하다면 justify-content: center; 등을 추가 */
}

.logout-button {
    width: 100%;
    padding: 12px;
    background-color: var(--gray-100);
    color: var(--gray-900);
    border: 1px solid var(--gray-400);
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.logout-button:hover {
    background-color: var(--blue-800);
    color:var(--gray-100);
    border:0;
}

/* 신청목록 */
.list-container {
    /* max-width: 800px; */
    margin: 0 auto;
    background: white;
    padding: 0 20px 30px;
}

.list-item {   
    padding: 20px 0;
    width: 100%;
    border-bottom:1px solid transparent;
}
.list-item:hover{
    border-bottom:1px solid var(--gray-900);
}
.list-item a{
    display: flex;
    align-items: flex-start;
    text-decoration:none;
}
.item-number {
    color: var(--gray-800);
    font-size: 16px;
    width: 30px;
    margin-right: 12px;
    font-weight: 500;
}

.item-content {
    flex-grow: 1;
}

.item-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.item-subtitle {
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.item-status {
    font-size: 16px;
    color: var(--gray-900);  /* 심사완료의 경우 */
    font-weight: 500;
}

.status-pending {
    color: var(--blue-800);  /* 심사완료 */
}

.status-new {
    color: #059669;  /* 신청완료 */
}

/* 보고서 보기 */
.non-bg{
    background:transparent !important;
}
.view-container{    
    margin: 0 auto;
}
.view-tit h4{
    background: var(--gray-100);
    padding: 20px 20px 10px 20px;
    margin: 0;
    font-size: 20px;
}
.view-s {
    padding: 20px;
    background: var(--gray-100);
    margin-bottom: 20px;
    /* border: 1px solid var(--gray-200); */
    border-radius: 16px;
}
.view-s .info-section{
    margin: 0;
}
.view-s .info-section .h-txt{
    font-weight: 900;
}
.view-s .info-section .c-txt{
    color:var(--gray-700);
    font-weight:500;
}
.view-header {
    display: flex;
    margin-bottom: 20px;
    flex-direction: column;
}

.view-header .title {
    margin-bottom: 6px;
}
.view-header .title h5{
    margin: 0;
    font-size: 20px;
}
.view-header .title h5 span{
    color: var(--gray-700);
    margin-right: 5px;
}
.view-header .subj{
    display:flex;
    margin: 0;
    align-items: center;
}
.view-header .subj .time {
    color: #666;
    font-size: 14px;
    margin: 0;
    max-width: 200px; /* 최대 너비 지정 */
    word-wrap: break-word; /* 긴 단어 또는 URL도 줄바꿈 */
    overflow-wrap: break-word; /* 최신 브라우저 지원 */
    white-space: normal; /* 텍스트 줄바꿈 허용 */
}

.view-header .subj .status-label {
    color: var(--gray-900);
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    margin-left: auto;
}
.view-header .subj .status-label span{
    color:var(--blue-800);
}

.description h6{
    font-size: 16px;
    color: var(--gray-800);
    font-weight: 500;
    margin: 0;
    padding: 20px 0;
}
.description .description-box{
    background: var(--gray-200);
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 10px;
} 

.description .description-box p{
    margin: 0;
}

.progress {
    margin: 30px 0;
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0;
}

.progress-line {
    position: absolute;
    top: 18px;
    left: 40px;
    right: 40px;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}

.progress-line-filled {
    position: absolute;
    top: 18px;
    left: 40px;
    width: calc(90% - 40px);
    height: 2px;
    background-color: var(--blue-800);
    z-index: 2;
}

.step {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 80px;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--blue-800);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step.completed .step-circle {
    background-color: var(--blue-800);
}

.step-circle i {
    color: white;
    font-size: 18px;
}

.step-text {
    margin-top: 8px;
    font-size: 14px;
    color: var(--gray-900);
}
.step-text.last{
    font-weight:bold;
}
.step-date {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 4px;
}

.info-section {
    margin-top: 40px;
}

.info-title {
    display: flex;
    font-size: 16px;
    align-items: center;
    margin-bottom: 5px;
}

.info-title h4{
    font-size: 20px;
    margin: 0;
}
.info-title .bedge{
    background:var(--blue-700);
    color:var(--gray-100);
    font-size:14px;
    padding: 4px 15px;
    border-radius:8px;
    margin-left: 5px;
    font-weight: 600;
}

.con-box{
    
}
.con-box .c-head{
    display: flex;
    margin-top: 20px;
}
.con-box .c-head .val{
    background: var(--blue-500);
    color: var(--gray-900);
    font-weight: 900;
    padding: 8px 22px;
    border-radius: 16px;
}
.con-box .c-list{
    
}
.con-box .c-list ul{
    list-style-type:none;
    padding: 0;
    margin-top: 16px;
    margin-bottom: 40px;
}

.con-box .c-list ul li{
    color: var(--gray-700);
    line-height: 2;
    font-weight: 500;
    /* 단어가 길어도 줄바꿈을 허용 */
    word-wrap: break-word; /* 또는 overflow-wrap: break-word; */
    white-space: normal;
}

.info-section  p.sub-txt{
    color: var(--gray-600);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    padding: 14px 0;
    justify-content: space-between;
    align-items: center;
}

.info-label {
    min-width: 120px;
    color: var(--gray-600);
    font-size: 16px;
    font-weight: 500;
}

.info-value-content {
  color: var(--gray-700);
  line-height: 2;
  font-weight: 500;
  text-align: right;
  min-width: 100px;
}

.info-value {
    font-size: 20px;
    font-weight: 500;
    text-align: right;
    min-width: 120px;
}

.image-preview {
    display: flex;
    margin-top: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 16px;
}

.image-preview img {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

.description {
    margin-top: 0;
    padding: 0;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    font-weight: 500;
}

.notice-title {
    font-size: 16px;
    font-weight: bold;
    margin: 30px 0 15px;
}

.result-view{
    padding: 20px;
    background: var(--gray-100);
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
}

.result-view .title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--gray-900);
}

.result-view .title span {
    color: var(--blue-800);
}

.result-view .section {
    margin-bottom: 30px;
}

.result-view .section-title {    
    margin-bottom: 15px;    
}
.result-view .section-title h5{
    font-size: 16px;
    color: var(--blue-800);
    font-weight: 900;
    margin: 0;
    margin-bottom: 15px;
}
.result-view .section-title .type{
    background:var(--gray-300);
    padding: 4px 18px;
    border-radius:16px;
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 900;
}
.result-view .similarity-bar {
    margin: 10px 0;
}
.result-view .similarity-bar .bar-subj{
    display:flex;
    width: 100%;
    justify-content: space-between;
}
.result-view .similarity-bar .bar-subj span{
    font-size:14px;
    color:var(--gray-900);
    font-weight:900
}
.result-view .similarity-bar .bar{
    display:flex;
    width: 100%;
    gap: 4px;
    margin: 10px 0;
}
.result-view .similarity-bar .bar .bar-segment {
    height: 12px;
    flex: 1;
    background: var(--gray-300);
    border-radius: 2px;
}
.result-view .similarity-bar .bar .bar-segment.pink {
    background: #f16a8b;
}
.result-view .similarity-bar .bar .bar-segment.yellow {
    background: #f5c115;
}
.result-view .similarity-bar .bar .bar-segment.filled {
    background: var(--blue-700);
}

.result-view .text-box {
    background: var(--gray-100);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-800);
    border: 1px solid var(--gray-300);
}

.image-placeholder {
    width: 100%;
    height: auto;
    min-height: 200px;
    background: var(--gray-200);
    border-radius: 16px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size:20px;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* 이미지 비율을 유지하면서 요소 안에 맞춤 */
}

.result-view .review-item {
    margin-bottom: 25px;
}

.result-view .difference-reason {
    margin-top: 30px;
}

.result-view .difference-reason .title {
    color: #333;
    font-size: 14px;
    margin-bottom: 10px;
}

.result-view .difference-reason .similarity-row {
    margin-top: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
}

tr {
    /* border-bottom: 1px solid var(--gray-300); */
}

tr:last-child {
    border-bottom: none;
}

th, td {
    padding: 16px;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.6;
}

th {
    width: 120px;
    background-color: var(--gray-200);
    color: #000;
    font-weight: 900;
    text-align: center;
    padding:24px 0;
}

td {
    color: var(--gray-700);
    font-size: 13px;
    padding: 24px 16px;
}

.multi-line {
    /* white-space: pre-line; */
}
.multi-line ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.multi-line ul li{
    line-height: 24px;
}

@media screen and (max-width: 600px) {
    th {
        width: 60px;
    }
    
    th, td {
        font-size: 13px;
    }
}

/* admin */
.search-container {
    padding: 0 20px;
}
.search-header {
    position: relative;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    height: 48px;
}
.back-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-right: 10px;
}
.search-btn {
    display: flex;
    width: 24px;
    height: 24px;
    background: url(../images/contents/ico-search.png) no-repeat;
    cursor: pointer;
    border: 0;
}
.search-btn:hover{
    opacity:0.7;
}
.search-container {
    display:none;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    max-width: 640px;
    height: 100vh;
    background: white;
    transition: right 0.3s ease-in-out;
}

.search-container.active {
    display:block;
}

.search-input {
    flex: 1;
    padding: 8px 40px 8px 40px;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 8px;
    background:var(--gray-200) url(../images/contents/ico-search.png) no-repeat 10px center;
}

.close-search {
    position: absolute;
    right: 10px;
    display: flex;
    width: 21px;
    height: 21px;
    border: none;
    color: var(--gray-100);
    background: #505866;
    cursor: pointer;
    border-radius: 100%;
    justify-content: center;
    align-items: center;
}
.close-search i{
    margin-top: 1px;
}

.back-button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-right: 10px;
}
.checkbox-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.checkbox-btn {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 0;
    border-radius: 24px;
    cursor: pointer;
    border: 1px solid var(--gray-300);
    position: relative;
    transition: background-color 0.3s, color 0.3s;
}
.checkbox-btn input[type="checkbox"] {
    display: none;
}
.checkbox-btn span {
    font-size: 14px;
    color: #000;
    padding: 10px 16px;
}
.checkbox-btn input[type="checkbox"]:checked + span {
    background-color: var(--blue-800);
    color: #ffffff;
    /* padding: 10px; */
    border-radius: 20px;
}
.checkbox-btn.checked {
    background-color: #007bff;
    color: #ffffff;
}
.search-button {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    background-color: var(--blue-800);
    color: #fff;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    margin-top: 90px;
}
.search-button:focus {
    outline: none;
}
.remove-filter {
    background: none;
    border: none;
    margin-left: -10px;
    margin-right: 10px;
    /* right: 5px; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    cursor: pointer;
}
.remove-filter i {
    font-size: 16px;
    color: #666;
}

.list-btn {
  display: flex;
  gap: 8px;
  padding-top: 16px;
  margin-bottom: 16px;
  justify-content: center;
  align-items: center;
}

.tab-button {
  padding: 8px 16px;
  background-color: #F3F4F6;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  color: #4B5563;
}

.tab-button.delete {
  color: #DC2626;
}

.user-type {
  display: flex;
  margin-top: 16px;
  margin-bottom: 16px;
  color: #111827;
  font-size: 14px;
  justify-content: center;
  gap: 30px;
}

.user-type span {
  padding: 0 12px;
}

.user-type span:nth-child(2) {
  padding: 0;
  width: 1px;
  background: var(--gray-400);
}

.list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    background: white;
}
.list-header2 {
    display: flex;
   /* justify-content: space-between; */
    align-items: center;
    padding: 16px 0;
    background: white;
}
.total-count {
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 500;
}

.total-count span {
    font-weight: bold;
}
/* button style */
.btn-default{
    padding: 8px 16px;
    background-color: var(--gray-200);
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #4B5563;
    font-weight:500;
}
.btn-default:hover{
    background-color: var(--gray-100);
    border:1px solid var(--gray-200);
}
.btn-delete{
    padding: 8px 16px;
    background-color: #F3F4F6;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #FF3B30;
    font-weight:700;
}
.btn-delete:hover{
    background-color: var(--gray-100);
    border:1px solid #FF3B30;
}
.btn-check-s{
    margin: 0px 5px;
    padding: 8px 16px;
    background-color: var(--gray-200);
    border: 1px solid transparent;
    border-radius: 24px;
    font-size: 14px;
    cursor: pointer;
    color: var(--gray-700);
    font-weight: 600;
}
.btn-check-s i{
    color:var(--gray-600);
    margin-left: 4px;
    font-size: 16px;
}
.btn-check-s:hover{
    background-color: var(--gray-100);
    border:1px solid var(--gray-200);
}
.delete-btn {
    color: var(--gray-600);
    border: none;
    padding: 8px 15px 6px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .list-header {
        padding: 12px 0;
    }
}

.table-container {
    overflow-x: auto;
    /* margin-top: 20px; */
    background: white;
}

table.admin-list {
    width: 100%;
    border-collapse: collapse;
    white-space: nowrap;
}

.admin-list th {
    background: var(--gray-100);
    padding: 12px;
    font-weight: 500;
    color: #666;
    text-align: center;
    font-size: 14px;
}

.admin-list td {
    padding: 12px;
    border-top: 1px solid #eee;
    font-size: 16px;
    color: #333;
    text-align: center;
    font-weight:500;
}
.admin-list td.num{
    color:var(--gray-800);    
}
.admin-list td a{
    color:var(--gray-900);
    text-decoration:none;
}
.checkbox-cell {
    width: 40px;
    text-align: center;
}

.search {
    border:none;
}
.search td{
    border-top:none;
}
.search td .checkfocus{
    color:var(--blue-800);
}
.tb-info{
    border-bottom: none;
}
.tb-info td{
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
    padding: 16px 0;
}
.tb-info td p{
    margin: 0;
    padding-bottom: 10px;
    text-align: right;
}
.tb-info td.t-right{
    text-align:right;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 8px;
}

.page-btn {
    padding: 6px 12px;
    border: 0;
    background: transparent;
    border-radius: 100%;
    cursor: pointer;
}
.page-btn i{
    color:var(--gray-500);
}

.page-btn.active {
    background: var(--blue-800);
    color: var(--gray-100);
}

@media screen and (max-width: 768px) {
    .table-container {
        margin-top: 12px;
    }

    table.admin-list {
        /* display: block; */
        overflow-x: auto;
        border: 0;
    }
    .admin-list th {
        padding: 8px;
        font-size: 14px;
        font-weight:400;
    }
    .admin-list td {
        padding: 8px;
        font-size: 16px;
        font-weight:500;
    }

    /* 모바일에서는 체크박스, 번호, 아이디, 상표명까지만 기본으로 보이게 설정 */
    .admin-list th:nth-child(n+5), .admin-list td:nth-child(n+5) {
        /* min-width: 120px; */
    }

    .admin-list th:nth-child(-n+1), .admin-list td:nth-child(-n+1) {
        position: sticky;
        left: 0;
        background: white;
    }    
}

/* Hide default checkbox */
.tb-check {
    position: relative;
    display: inline-block;
}

.tb-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Custom checkbox style */
.tb-check .checkmark {
        position: relative;
        display: inline-block;
        height: 20px;
        width: 20px;
        background-color: var(--gray-300);
        margin-left: 0;
        margin-top: 4px;
        border-radius: 4px;
        transition: all 0.2s ease;
}

span.checkmark {}

/* Checked state */
.tb-check input[type="checkbox"]:checked + .checkmark {
background-color: var(--blue-800);
}

/* Custom checkbox image */
.tb-check input[type="checkbox"]:checked + .checkmark:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background-image: url('../images/contents/checkbox.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.form-select {
    width: 100%;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid var(--gray-300);
    font-size: 16px;
    color: #333;
    background-color: white;
    font-weight: 500;
    outline: 0;
}

.form-select {
    appearance: none;
    background-image: url("../images/contents/ico-arrow-down.png");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}









/* 로더 스타일 */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-container {
    display: flex;
    background: white;
    padding: 20px;
    border-radius: 24px;
    width:238px;
    height:282px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
}

.spinner {
    display: flex;
    width: 82px;
    height: 82px;
    position: relative;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.spinner-line {
    position: absolute;
    width: 8px;
    height: 20px;
    background: var(--blue-800);
    border-radius: 100px;
    left: 50%;
    top: 50%;
    transform-origin: 0 25px;
    animation: fade 1.2s linear infinite;
}

/* 12개의 막대 고정 위치 설정 */
.spinner-line:nth-child(1) { transform: rotate(0deg) translate(-50%, -15px); }
.spinner-line:nth-child(2) { transform: rotate(30deg) translate(-50%, -15px); }
.spinner-line:nth-child(3) { transform: rotate(60deg) translate(-50%, -15px); }
.spinner-line:nth-child(4) { transform: rotate(90deg) translate(-50%, -15px); }
.spinner-line:nth-child(5) { transform: rotate(120deg) translate(-50%, -15px); }
.spinner-line:nth-child(6) { transform: rotate(150deg) translate(-50%, -15px); }
.spinner-line:nth-child(7) { transform: rotate(180deg) translate(-50%, -15px); }
.spinner-line:nth-child(8) { transform: rotate(210deg) translate(-50%, -15px); }
.spinner-line:nth-child(9) { transform: rotate(240deg) translate(-50%, -15px); }
.spinner-line:nth-child(10) { transform: rotate(270deg) translate(-50%, -15px); }
.spinner-line:nth-child(11) { transform: rotate(300deg) translate(-50%, -15px); }
.spinner-line:nth-child(12) { transform: rotate(330deg) translate(-50%, -15px); }


/* 각 막대의 애니메이션 딜레이 설정 */
.spinner-line:nth-child(1) { animation-delay: 0s; }
.spinner-line:nth-child(2) { animation-delay: -1.1s; }
.spinner-line:nth-child(3) { animation-delay: -1.0s; }
.spinner-line:nth-child(4) { animation-delay: -0.9s; }
.spinner-line:nth-child(5) { animation-delay: -0.8s; }
.spinner-line:nth-child(6) { animation-delay: -0.7s; }
.spinner-line:nth-child(7) { animation-delay: -0.6s; }
.spinner-line:nth-child(8) { animation-delay: -0.5s; }
.spinner-line:nth-child(9) { animation-delay: -0.4s; }
.spinner-line:nth-child(10) { animation-delay: -0.3s; }
.spinner-line:nth-child(11) { animation-delay: -0.2s; }
.spinner-line:nth-child(12) { animation-delay: -0.1s; }

/* 각 막대의 애니메이션 */
.loader-text {
    font-size:20px;
    font-weight: 600;
    color:var(--gray-900);
    text-align: center;
}

.loader-text h4{
    font-size:32px;
    color:var(--blue-800);
    margin:0;
}

@keyframes fade {
    0%, 39%, 100% { opacity: 0.2; }
    40% { opacity: 1; }
}


/* 로더 숨기기 */
.loader-overlay.hidden {
    display: none;
}



/* animations.css */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeftFade {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRightFade {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-element {
    opacity: 0;
}

.animate-element.slide-up {
    animation: slideUpFade 0.7s ease-out forwards;
}

.animate-element.slide-left {
    animation: slideLeftFade 0.7s ease-out forwards;
}

.animate-element.slide-right {
    animation: slideRightFade 0.7s ease-out forwards;
}

/* 애니메이션 지연 클래스 */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* 성능 최적화 */
.animate-element {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* 헤더 스타일 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    transition: transform 0.3s ease;
}

.header.hide {
    transform: translateY(-100%);
}

.input-with-icon {
    position: relative;
}
.calendar-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.fa-calendar {
    font-size: 18px;
    color: var(--blue-400);
}
.ui-datepicker {
    background: var(--gray-100);
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}
.ui-datepicker-header {
    /* background: var(--gray-300); */
    color: #fff;
    /* border-bottom: 1px solid transparent; */
    padding: 10px;
    /* border-top-left-radius: 8px; */
    /* border-top-right-radius: 8px; */
}
.ui-datepicker-header a:hover{
    background: var(--gray-200);
}
.ui-datepicker-title {
    font-weight: bold;
}
.ui-datepicker table {
    width: 100%;
    margin: 10px 0;
    border: none;
}
.ui-datepicker th {
    color: #555;
    padding: 5px;
}
.ui-datepicker td {
    padding: 1px;
}
.ui-datepicker .ui-state-default {
    background: #e9ecef;
    color: #333;
    border: 1px solid transparent;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-align: center;
    font-size: 14px;
}
.ui-datepicker .ui-state-hover {
    background: var(--blue-800);
    color: var(--gray-200);
}
.ui-datepicker .ui-state-active {
    background: #0056b3;
    color: #fff;
}

/* 툴팁 */
.tooltip {
    cursor: pointer;
    display: inline-block;
    margin-left: 5px;
    width: 25px;
    height: 25px;
    background-color: #89c0da;
    color: var(--gray-100);
    border-radius: 50%;
    text-align: center;
    line-height: 23px;
}
.tip{
    display: none;
    position: absolute;
    background-color: #f2fbff;
    border: 1px solid var(--blue-800);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 5px rgb(218 243 255);
    margin-top: 5px;
    line-height: 1.5;
}

.submit_btn {
 padding: 8px 14px;
 width: 100%;
 background-color: var(--blue-800);
 color: var(--gray-100);
 font-weight: 600;
 font-size: 16px;
 text-align: center;
 border: 0;
 border-radius: 14px;
 cursor: pointer;
 transition: all 0.2s ease;
}

.half_btn {
 padding: 8px 14px;
 width: 48%;
 background-color: var(--blue-700);
 color: var(--gray-100);
 font-weight: 600;
 font-size: 16px;
 text-align: center;
 border: 0;
 border-radius: 14px;
 cursor: pointer;
 transition: all 0.2s ease;
}

.submit_btn:hover,
.half_btn:hover {
 opacity: 0.9;
}


/* 푸터 */
footer {
    overflow: hidden;
    width: 100%;
    padding: 64px 115px 65px 109px;
    /*background: #eef0f5;
     */
    background: #329be72b;
    box-sizing: border-box;
}
footer .support {
    font-size: 0;
}
footer .corp {
    margin-top: 30px;
    font-size: 0;
}
footer .support_link,
footer .support_txt,
footer .corp_tit,
footer .corp_infotx {
    display: inline-block;
    color: #656e83;
    font-size: 16px;
    text-decoration: none; /* 밑줄 제거 */
    line-height: 30px;
    letter-spacing: -0.25px;
    vertical-align: top;
}
footer .support_link:after,
footer .corp_infotx:after {
    display: inline-block;
    width: 1px;
    height: 18px;
    margin: 0 10px;
    background: #656e83;
    vertical-align: -3px;
    content: "";
}
footer .support_txt {
    margin: 0;
    font-weight: 500;
}
footer .support .support_link:last-child:after, footer .support .support_txt:last-child:after {
    display: none;
}
footer .corp_info .corp_infotx:last-child:after {
    display: none;
}
footer .corp_tit {
    display: block;
    margin: 0;
    font-weight: 600;
}

@media (max-width:1199px) {

    footer {
        padding: 50px 22px 50px 32px;
        background: #329be72b;

        min-width: 410px;

    }

    footer .inner {
        text-align: left;
    }

    footer .corp_info {
        margin-top: 5px;
    }

    footer .corp_tit,
    footer .corp_infotx {
        line-height: 24px;
    }

    footer .corp_infotx {
        display: inline;
        word-break: break-all;
    }

    footer .support_link,
    footer .support_txt {
        display: block;
        margin: 0;
        font-size: 14px;
        line-height: 30px;
    }

    footer .support_link:after {
        display: none;
    }

    footer .corp_infotx:after {
        height: 18px;
    }
}
