/* ---------------------------------------
   RESET
----------------------------------------*/
@import url('reset.css');


/* ---------------------------------------
   ROOT VARIABLES
----------------------------------------*/
:root {
    /* 브랜드 컬러 */
    --color-primary: #0d4e9c;
    --color-primary-50: #1f507b94;
    --color-primary-100: #e6f0f8c4;
    --color-primary-border: #abb4b98a;
    --color-secondary: #12a28b;
    --color-secondary-100: #ebf0ef;
    --color-accent: #fcd100;
    --color-accent-100: #f0eeeb;
    --color-orange: #f78335;

    /* Hover Colors */
    --color-primary-hover: #0b4285;
    --color-secondary-hover: #0f8e78;
    --color-accent-hover: #e6dc00;

    /* 기본 색상 */
    --color-black: #0d0f12;
    --color-dark: #28313f;
    --color-blueblack-1: #1b1f25;
    --color-blueblack-2: #16191dc2;
    --color-blueblack-3: rgba(46, 57, 78, 0.76);
    --color-blueblack-4: #c0cfe296;
    --color-white: #ffffff;
    --color-gray-100: #f8f8f8;
    --color-gray-300: #dcdcdc;
    --color-gray-500: #888888;

    /* 그림자 */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 20px rgba(0, 0, 0, 0.18);

    /* 라운드 */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-100: 100%;

    /* 폰트 크기 */
    --font-0: .7rem;
    --font-1: .9rem;
    /* 작은 본문 */
    --font-2: 1.1rem;
    /* 일반 본문 */
    --font-3: 1.25rem;
    /* 강조 본문 / 소제목 */
    --font-4: 1.6rem;
    /* 소제목 / 카드 타이틀 */
    --font-5: 1.9rem;
    /* 큰 타이틀 */
    --font-6: 2.5rem;
    /* 섹션 헤더 */
    --font-7: 4.15rem;
    /* 메인 비주얼 / 히어로 */
}


/* ---------------------------------------
   SVG COLOR CONTROL
   아래 3가지는 모든 SVG 표기 방식 대응 가능
----------------------------------------*/

/* 1) inline SVG (fill) */
.svg-primary path,
.svg-primary svg {
    fill: var(--color-primary);
}

.svg-secondary path,
.svg-secondary svg {
    fill: var(--color-secondary);
}

.svg-accent path,
.svg-accent svg {
    fill: var(--color-accent);
}


/* 2) inline SVG (stroke) */
.svg-stroke-primary path {
    stroke: var(--color-primary);
}

.svg-stroke-secondary path {
    stroke: var(--color-secondary);
}

.svg-stroke-accent path {
    stroke: var(--color-accent);
}


/* 3) 외부 SVG 파일 (img, background-image → filter로 색상 적용) */
.svg-filter-primary {
    filter: invert(32%) sepia(91%) saturate(1100%) hue-rotate(186deg) brightness(95%) contrast(90%);
}

.svg-filter-secondary {
    filter: invert(41%) sepia(81%) saturate(520%) hue-rotate(131deg) brightness(90%) contrast(90%);
}

.svg-filter-accent {
    filter: invert(83%) sepia(69%) saturate(2158%) hue-rotate(19deg) brightness(98%) contrast(103%);
}



/* ---------------------------------------
   GLOBAL STYLES
----------------------------------------*/
.wrap {
    min-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}





/* ---------------------------------------
   HEADER
----------------------------------------*/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 3rem;
    text-wrap: nowrap;
}

header .logo img {
    width: 200px;
    height: auto;
    padding: 1rem;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 10rem;

}

/* 네비게이션 */
.header-controls nav ul {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.header-controls nav ul li a {
    color: var(--color-dark);
    font-size: var(--font-2);
    font-weight: 600;
    text-decoration: none;
}

.header-controls nav ul li a:hover {
    color: var(--color-primary);
}

/* 로그인·언어 선택 */
.user-menu {
    display: flex;
    align-items: center;
    font-size: var(--font-2);
    gap: 1rem;
    font-weight: 700;
}


select {
    color: var(--color-primary);
    /* 기본 파란색 */
    font-weight: 700;
    font-size: var(--font-2);
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    transition: color 0.2s ease;
}

/* hover 시 색상 변경 */
select:hover {
    color: var(--color-primary-hover);
    /* hover용 색상 */
}

/* ---------------------------------------
   PRIMARY ACTIONS (메인 비주얼 메뉴)
----------------------------------------*/

header,
.primary-actions,
.service-panels,
footer {
    min-width: 1600px;
}

.primary-actions {
    position: relative;
    height: 440px;
    background: url(../images/bg.png)no-repeat center bottom -22rem;
    background-size: cover;
    color: var(--color-white);
}

.slogan {
    width: 500px;
    position: absolute;
    top: 3rem;
    left: 50%;
}

/* 이미지 밑→위 애니메이션 */
.slide-up-onload {
    opacity: 0;
    /* 처음 안보임 */
    transform: translateY(50px);
    /* 밑에서 시작 */
    animation: slideUp 1s ease-out forwards;
    animation-delay: 0.3s;
    /* 필요 시 딜레이 추가 */
}

/* keyframes 정의 */
@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 메뉴 박스 */
.primary-actions ul {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 3rem;
    gap: 2rem;
    justify-content: space-between;
}

.primary-actions ul li {
    width: 100%;
    height: 65px;
    padding: 0 1.2rem;
    display: flex;
    align-items: center;
    background: var(--color-primary);
    backdrop-filter: blur(2px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.primary-actions ul li:last-child {
    background-color: var(--color-secondary);
}

.primary-actions ul li:last-child:hover {
    background-color: var(--color-secondary-hover);
}

/* hover 효과 */
.primary-actions ul li:hover {
    background: var(--color-primary-hover);
    box-shadow: var(--shadow-md);
}

.primary-actions ul li a {
    color: var(--color-white);
    text-decoration: none;
    font-size: var(--font-3);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    width: 100%;
}

.primary-actions ul li a img {
    width: 15px;
    filter: invert(83%) sepia(69%) saturate(2158%) hue-rotate(19deg) brightness(98%) contrast(103%);
}

.service-panels {
    display: flex;
    padding: 3rem 3rem 0;
    align-items: center;
    gap: 15rem;
}

.quick-menu {
    background: var(--color-secondary);
    padding: 2rem 100px 2rem 5rem;
    width: 45%;
    border-radius: var(--radius-sm);
    position: relative;
}

.quick-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 4rem;
}

.quick-menu ul li {
    font-size: var(--font-3);
    font-weight: 700;
    color: var(--color-white);

}

.quick-menu ul li:nth-child(1),
.quick-menu ul li:nth-child(4) {
    width: 30%;
}

.quick-menu ul li a {
    display: flex;
    gap: 1rem;
    align-items: center;
    text-wrap: nowrap;
}

.quick-menu ul li a img {
    width: 20px;
    filter: brightness(0) invert(1);
}

.crt-img {
    width: 300px;
    position: absolute;
    right: -13rem;
    bottom: -5rem;
    pointer-events: none;
}

.info button {
    justify-content: center !important;
    margin: 0 auto;
}

.info-menu {
    width: 65%;
}

.info-menu ul {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-menu ul li {
    display: flex;
    font-size: var(--font-2);
    font-weight: 700;
    width: 16%;
    text-align: center;
    justify-content: center;

}

.info-menu ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    justify-content: center;
    color: var(--color-dark);
}

.info-menu ul li a img {
    width: 35px;
}

.notice {
    display: flex;
    gap: 2rem;
    margin: 1rem 3rem;
    font-size: var(--font-2);
}

.notice h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notice h2 img {
    width: 20px;
}

footer {
    padding: 1rem 3rem;
    background: var(--color-gray-100);
    margin-top: 2rem;
}

.footer-inner {
    display: flex;
    gap: 3rem;
}

.footer-info {
    width: 100%;
}

.footer-inner .logo img {
    width: 148px;
    height: auto;
}

.footer-info-support {
    text-align: center;
    font-size: 0.9rem;
}

.footer-info-support a {
    width: 100px;
    height: 80px;
    padding: 1rem;
    background: #FFFFFF;
    border: 1px solid #333;
    border-radius: 0.2rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-decoration: none;
    color: inherit;
    line-height: 1.3rem;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.2s;
}

.footer-info-support a img {
    display: block;
    margin: 0 auto 0.3rem;
}

.footer-info-support a:hover {
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
    color: #f17f02;
    border-color: #f17f02;
    cursor: pointer;
    font-weight: 500;
}

.footer-info-support .support-tel {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-info-support .support-tel-num {
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-info-support .support-time {
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: #555;
}

.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sub-layout {
    display: flex;
    gap: 5rem;
    margin: 0 3rem 3rem;
}


.sub-content {
    width: 100%;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 3rem 3.5rem;
    height: 100px;
    background: url(../images/mvbg_01.jpg) center center;
    background-size: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-lg);
}

.breadcrumb ul {
    display: flex;
    font-size: var(--font-4);
    color: var(--color-white);
}

.breadcrumb li:first-child img {
    width: 20px;
    filter: brightness(1) invert(1);
}

.breadcrumb li:first-child::after {
    content: "";
    padding: 0 0.5rem;
    background: none;

}

.breadcrumb li::after {
    content: " ";
    padding: 0 1rem;
    background: url(../images/next_icon.svg)no-repeat center center;
    background-size: 10px;

}

.breadcrumb li:last-child {
    font-weight: 700;
}

.breadcrumb li:last-child::after {
    content: " ";
    padding: 0;
    background: none;
}

.sub-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    margin: 0 0 3rem 0;
}

.sub-title {
    font-size: var(--font-6);
}

.sub-desc {
    font-size: var(--font-4);
    font-weight: 400;
    text-align: center;
}




.crtimg {
    position: absolute;
    right: -.3rem;
    top: -2.2rem;
    width: 120px;
}

.side-menu {
    position: relative;
    width: 400px;
}

.side-title {
    font-size: var(--font-5);
    letter-spacing: -.5px;
    background: var(--color-primary);
    font-weight: 700;

    width: 100%;
    display: flex;
    padding: 1rem 0 1rem 1.5rem;
    justify-content: flex-start;
    align-items: center;

    border-radius: 1rem 1rem 0 0;
    background: linear-gradient(180deg,
        /* 사선 각도 */
    var(--color-white),
        /* primary */
    var(--color-gray-100));
    background-size: 60px, cover;
    border: 1px solid var(--color-primary-border);
    border-bottom: none;
    box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.45);

}

.side-depth2-wrap {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.side-depth2 {}

.side-depth2 a {
    font-size: var(--font-3);
    display: flex;
    padding: 1.2rem 2rem;
    font-weight: 700;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--color-primary-border);
    border-top: none;
}

.side-depth2 li:last-child a {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 1rem 1rem;
}

/* active 추가 효과 */
.side-depth2 a.active {
    position: relative;
    color: var(--color-primary);
    font-weight: 700;

    /* 살짝 눌리는 듯한 효과 */
    transform: translateY(-1px);
}

.side-depth2 a:hover img {
    transform: rotate(0deg);
    transition: all .3s;
}

.side-depth2 a.active img {
    transform: rotate(0deg);
}


.s-service-m {
    display: flex;
    justify-content: center;
    gap: 2rem;
    border: 1px solid var(--color-primary-border);
    border-radius: var(--radius-lg);
}

.s-service-m a img{transform: rotate(0deg) !important;}
.s-service-m a:hover img{transform: rotate(0) !important;}

.s-service-m a {
    gap: .2rem;
    padding: 1.5rem 0 1rem;
    margin: 0 !important;
    border: none;
    flex-direction: column-reverse;
    font-size: var(--font-2);
    background: none;
    font-weight: 500 !important;
    box-shadow: none;
}

.s-service-m li:last-child a {
    border-bottom: none;
    border-radius: 0;
    box-shadow: none;
}
.s-down-m a img{transform: rotate(0deg) !important;}
.s-down-m a:hover img{transform: rotate(0) !important;}

.s-down-m li:last-child a {
    border-bottom: none;
    border-radius: 0;
    box-shadow: none;
}

.s-down-m {
    margin-top: 1rem;
}

.s-down-m a {
    background: var(--color-white);
    font-weight: 500;
    font-size: var(--font-2);
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 1rem;
    border: none;
    box-shadow: none;

}

.s-down-m li {
    border-bottom: 1px solid var(--color-primary-border);
}

.s-down-m li:last-child {
    border-bottom: none;
}

.side-depth2 a img {
    width: 17px;
    transform: rotate(90deg);
}

.card {
    border: 1px solid var(--color-gray-500);
    padding: 3rem;
}

section select {
    background: var(--color-gray-100);
    border: 1px solid var(--color-dark);
}

.form-row {
    display: flex;
    align-items: center;
    font-size: var(--font-3);
}

.form-row dt {
    width: 100px;
}

.if-box {
    background: var(--color-gray-100);
    padding: 1rem;
    border-radius: var(--radius-md);
}

.if-box ul li {
    font-size: var(--font-sm);
    margin-left: 1rem;
}

.if-box ul li::before {
    content: "·";
    margin-left: -.5rem;
}

.glass-wrap {
    display: flex;
    gap: 28px;
    width: 100%;
    justify-content: center;
    margin: 3rem 0 1rem;
}

/* Glass 카드 */
.glass-card {
    width: 100%;
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    background: var(--color-gray-100);
    transition: .35s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid #8190a5c2;

}

.glass-card:hover {
    transform: translateY(-6px);
    box-shadow:
            0 10px 40px rgba(0, 0, 0, 0.18),
            inset 0 0 0 1px rgba(255, 255, 255, 0.45);
    border-color: var(--color-primary);
    background: var(--color-white);
}

/* 제목 */
.glass-card h3 {
    font-size: var(--font-5);
    font-weight: 700;
    color: var(--color-blueblack-3) !important;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* 내용 */
.glass-card p {
    font-size: var(--font-2);
    opacity: .8;
    margin: 0 3rem;
    word-break: break-all;
}

.glass-card:hover h3 {
    color: var(--color-primary) !important;
}

.glass-card button {
    border-radius: var(--radius-md);
    padding: 0.5rem 1rem;
    background: var(--color-blueblack-2);
    color: var(--color-white);
    font-weight: 700;
    margin: 2rem 3rem 0;
    font-size: var(--font-3);
    gap: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.glass-card:hover button {
    background: var(--color-primary);
}

.glass-card button img {
    height: 20px;
    filter: brightness(1) invert(1);
}

.glass-card li {
    margin: 0 0 .2rem .8rem;
}

.glass-card li::before {
    content: "-";
    margin-right: .3rem;
    margin-left: -.7rem;
}

/* Glass 아이콘 */
.g-icon {}



.g-icon img {
    filter: brightness(1) invert(9);
    width: 30px;
}



.cert-groups {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    width: 100%;
    justify-content: space-between;
    margin-top: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-primary-border);
    padding: 3rem 4rem;
}

.cert-group {
    display: flex;
    flex-direction: column;
    width: 47%;
}

.cert-group h3 {
    margin-bottom: .8rem;
    font-size: var(--font-3);
    color: var(--color-dark);
}

.cert-group h3::before {
    content: " ";
    background: url(../images/icon_im03.svg)no-repeat left center;
    padding-left: 1.5rem;
    background-size: 18px;
    filter: invert(41%) sepia(0) saturate(0) hue-rotate(0) brightness(100%) contrast(90%);
}

.btn-list {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    width: 100%;
}

.cert-btn {
    width: 100%;
    padding: .8rem 1rem;
    background: var(--color-gray-100);
    border: 1px solid var(--color-primary-border);
    color: var(--color-dark);
    border-radius: var(--radius-md);
    font-size: var(--font-3);
    font-weight: 700 !important;
    cursor: pointer;
    color: var(--color-blueblack-3);
}


.cert-btn:hover {
    background: var(--color-white);

}

.storage .cert-btn.active {
    color: var(--color-dark);
    border-color: var(--color-gray-500) !important;
    background: var(--color-white) !important;
}

.cert-btn.active {
    background: var(--color-secondary);
    border-color: var(--color-secondary-hover) !important;
    color: var(--color-white);
    box-shadow: 0 6px 15px rgba(181, 184, 185, 0.35);
}

.cert-option {
    border-radius: var(--radius-lg);
    cursor: pointer;
    width: 100%;
    background: var(--color-white);
}

/* 옵션 우측 */
.form-list li {
    padding: 1.1rem 0;
    font-size: var(--font-2);
    display: flex;
    gap: .8rem;
    align-items: center;
    border-bottom: 1px solid var(--color-gray-300);
}

.form-list label.title {
    min-width: 140px;
    font-weight: 600;
    margin-left: 1rem;
}

.form-list label.title::before {
    content: "·";
    margin-right: .5rem;
}

.form-list select,
.form-list input[type="text"],
textarea {
    border: 1px solid #cbd6e2;
    padding: .4rem .6rem;
    border-radius: .4rem;
    width: auto;
    height: 40px;
}

input::placeholder,
textarea::placeholder {
    font-size: var(--font-2);
    padding: 0 !important;
    color: #999;
    /* 필요 시 */
}


/* 안내 문구 */
.guide-txt {
    font-size: var(--font-1);
    color: var(--color-blueblack-2);
    margin: 2rem 0 0 .5rem;
    display: flex;
    gap: 2rem;
;
}

.guide-txt .title {
    font-weight: 700;
    font-size: var(--font-2);
    margin-bottom: 1rem;
}

.guide-txt ul {
    width: 100%;
}

.guide-txt li {
    line-height: 1.2;
    margin-bottom: .6rem;
}

.guide-txt li::before {
    content: "-";
    padding: 0 0.5rem 0 0;
}

.save-btn-space {
    display: flex;
    justify-content: center;
}

/* 버튼 */
.save-btn {
    margin: 2rem auto;
    padding: .9rem 4rem;
    background: var(--color-primary);
    border: none;
    border-radius: .6rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(4, 106, 180, 0.3);
    transition: transform .15s;
}

.save-btn:hover {
    transform: translateY(-2px);
    background-color: var(--color-primary-hover);
}

.remove-btn {
    border-radius: 3px;
    background: var(--color-primary);
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(4, 106, 180, 0.3);
    transition: transform .15s;
    margin-top: 0 !important;
}
.remove-btn:hover {
    transform: translateY(-2px);
    background-color: var(--color-primary-hover);
}

.storage .btn-list {
    display: flex;
    justify-content: space-between;
    gap: 1rem;

    margin: 2rem 0;
    flex-wrap: nowrap;
}

.storage .btn-list button {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-direction: row-reverse;
    gap: 1rem;
    align-items: center;
    border-radius: var(--radius-lg);
    padding: 1rem;
    background: var(--color-gray-100);
    border: 1px solid var(--color-primary-border);
    word-break: keep-all;
}

.storage .btn-list button h2 {
    font-size: var(--font-2);
    line-height: 100%;
    text-align: left;
}

.storage .btn-list button:nth-child(5) h2,
.storage .btn-list button:nth-child(6) h2 {
    font-size: var(--font-1);
}

.storage .btn-list button span {

    border-radius: var(--radius-100);
    color: var(--color-white);
    font-size: var(--font-1);
    font-weight: 700;
    min-height: 45px;
    min-width: 45px;
;
    display: flex;
    justify-content: center;
    align-items: center;
}

.original {
    background: var(--color-orange);
}

.copy {
    background: var(--color-dark);
}

/* 테이블 기본 스타일 */
table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}


/* 테이블 헤더 */
th,
td {
    padding: 1rem 0 !important;
    font-size: var(--font-3);
}

td a {
    text-align: left !important;
    width: 100%;
    display: block;
}

td.text-center a {
    text-align: center !important;
}

thead th {
    border-bottom: 1px solid var(--color-blueblack-4);
    background: var(--color-primary-50);
    color: var(--color-white);

}

/* 테이블 셀 */
td {
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
    border-bottom: 1px solid var(--color-gray-300);
    font-size: var(--font-2);
}

td button {
    border-radius: var(--radius-md);
    background: var(--color-blueblack-3);
    padding: .5rem 1rem;
    margin-top: 1rem;
    font-size: var(--font-3);

    display: flex;
    gap: 2rem;
    align-items: center;
    color: var(--color-white);
}

td button img {
    width: 15px;
    filter: brightness(1) invert(1);
}




.list_nx {
    display: flex;
    font-size: var(--font-2);
    flex-direction: column;
    align-items: center;
    font-weight: 500;
    color: var(--color-blueblack-2);
    margin: 2rem 0;
}

.kko {
    display: flex;

    align-items: center;
    gap: 3rem;
    margin-bottom: 1rem;
    background: var(--color-accent-100);
    height: 70px;
;
    padding: 0 2rem;
}

.kko dl {
    font-size: var(--font-3);
    display: flex;
    align-items: center;
    gap: 1rem;

}

.kko dl dt {
    font-weight: 600;
    margin-right: 3rem;
}

.kko dl dd {
    display: flex;
    align-items: center;
    gap: .5rem;
;
}

.kko button {
    border-radius: var(--radius-lg);
    padding: 0.3rem 1rem;
    font-weight: 700;
    color: var(--color-dark);
    font-size: var(--font-1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-primary-border);

}

.kko button img {
    width: 15px;
}

/* 결제 전체 영역 */


/* 수수료 목록 */
.pay-area {
    margin-top: 2rem;
}

.pay {
    padding: 0 2rem;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    border: 1px solid var(--color-gray-500);
}

.pay ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.pay ul li {
    display: flex;
    align-items: center;
    align-items: center;

    gap: .5rem;
    font-weight: 700;
    position: relative;

}

.pay ul li::before {
    content: "＋";
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translate(-50%, -50%);
    font-weight: 200;


}

.pay ul li:first-child::before {
    content: none;
}


/* 소항목 설명 */
.pay ul li span {
    color: #6b7280;
    font-weight: 400;

}

/* 최종 금액 */
.pay>div {

    display: flex;
    align-items: center;
}

#totTalPay {
    font-weight: 700;
    gap: 1rem;

}

#totTalPay::before {
    content: "＝";
    padding: 0 .5rem;
;
}

#totTalPay span {
    color: var(--color-primary);
}

/* 동의 항목 리스트 */
.ag-consent-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ag-consent-item {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;

}

.ag-consent-item label {

    cursor: pointer;
}

.ag-view-link {
    color: var(--color-primary);
    cursor: pointer;
    font-weight: 700;
}

/* 결제 버튼 */
#pay {
    display: flex;
    gap: 10px;
    font-size: var(--font-3);
    margin-top: 3rem;
}

#pay button {
    width: 100%;
    height: 60px;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-500);
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

#pay button:hover {
    background: var(--color-primary-100);

}

.popup-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* 팝업 내용 */
.popup-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 1000px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    z-index: 1001;
}

.popup-close {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 10px;
    background: #394755;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.popup-close:hover {
    background: #25282b;
}

.kko-popup {
    background: #fff;
    border-radius: 16px;
    padding: 28px;

    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.kko-close {
    position: absolute;
    right: 22px;
    top: 18px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

.kko-header h2 {
    font-size: var(--font-4);
    font-weight: 700;
    margin-bottom: 8px;
}

.kko-header h2 span {
    color: #0d4e9c;
    font-weight: 800;
}

.kko-desc {
    line-height: 1.6;
    color: #444;
    margin-bottom: 24px;
}

.kko-link {
    display: inline-block;
    margin-left: 8px;
    color: #0d4e9c;
    text-decoration: underline;
    font-weight: 600;
}

.kko-step-title {
    font-size: var(--font-2);
    margin-bottom: 16px;
    font-weight: 700;
}

.kko-step-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.kko-step-list li {
    background: var(--color-accent-100);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}

.kko-step-list li .num {
    font-weight: 700;
    font-size: 16px;
    color: #0d4e9c;
    display: block;
    margin-bottom: 8px;
}

.kko-step-list li img {
    width: 70%;
    margin-bottom: 12px;
}

.kko-step-list li p {
    font-size: 14px;
    line-height: 1.4;
}


.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-bottom: 1px solid #8d8785a3;
;
}

.tabs button {
    flex: 1 1 calc(33.333% - 8px);
    padding: 1rem;
    border: 1px solid var(--color-primary-border);
    border-bottom: none;
    background: var(--color-gray-100);
    border-radius: 1rem 1rem 0 0;
    cursor: pointer;
    text-align: center;
    font-size: var(--font-3);
}

.tabs .section-title {
    margin: 0 !important;
}

.tab-item {
    display: flex;
    gap: 3rem;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.section-desc {
    font-size: var(--font-3);
}

.tab-item dl {
    display: flex;
    font-size: 1.2rem;
    gap: 1rem;
    align-items: center;
}

.tab-item dt {
    width: 100px;
    font-weight: 700;
}

.tab-item .img-area {
    padding-right: 2rem;
    border-right: 1px solid #cccccc7a;
}

.tabs button.active {
    background: var(--color-primary);

    border-color: var(--color-primary);
    color: var(--color-white);
}

.tab-content {
    display: none;
    color: #333;
    border-radius: 0 0 1rem 1rem;
    margin-top: -1px;
    padding: 3rem;

}

.st-list ol {
    display: flex;
;
    gap: 1rem;
    margin: 2rem 0;
}

.st-list ol li {
    text-align: center;
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--color-primary-border);
    border-radius: var(--radius-md);
}

.tab-content .btn-area {
    justify-content: center;
}

.tab-content.active {
    display: block;
}

.qrstep-list {
    display: flex;
    gap: 4rem;
    margin: 2rem auto 0;
}

.qrstep-list li {
    width: 280px;
    padding: 2rem;

    height: 280px;

    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 1rem;
    background: var(--color-white);
    border: 1px solid var(--color-gray-300);
}

.qrstep-list li p {
    display: block;
    font-weight: 700;
}

.qrstep-list li img {
    width: 130px;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translate(-50%);
    border-radius: 100%;
}

.qrstep-list li::after {
    content: "→";
    font-size: var(--font-4);
    position: absolute;
    right: -3.5rem;
    top: 50%;
    transform: translate(-50%, -50%);
}

.qrstep-list li:nth-child(1) img {
    border-radius: .5rem;
}

.qrstep-list li:last-child:after {
    content: "";
}

/* 폼 카드 */
.form-group {}

.form-group label {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .3rem;
    width: 150px;
    font-size: 1.3rem;
}

.form-group .btn {
    margin: 0 !important;
}

/* 라디오 그룹 */
.radio-group {
    display: flex;
    gap: 6px;
    gap: 2rem;
}


.btn-area {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: space-between;
}

.btn-area-center {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    justify-content: center;
}

.btn-area div {
    display: flex;
    gap: 1rem;
}

button {
    display: inline-block;
    border: 1px solid #867e7e;
    border-radius: var(--radius-md);
    font-size: var(--font-2);
    font-weight: 700;
    box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: 0.2s;
    text-wrap: nowrap;
}

.btn {
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    height: 50px;
    padding: 0 3rem;
}

.btn img {
    width: 25px;
}

.btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.btn:hover img {
    filter: brightness(0) invert(1);
}


.login-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-direction: column;
    width: 50%;
    margin: 0 auto;
}

.login-title {
    margin-bottom: .3rem;
    font-size: var(--font-2);
}

/* 공통 박스 스타일 */
.login-box {
    width: 100%;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: .5em;
}

.login-form button {
    background: var(--color-dark);
    color: var(--color-white);
    border: 0;
    margin: .3rem 0 0;
}

.login-form button img {
    filter: brightness(0) invert(1);
}

.login-form button:hover {
    background-color: var(--color-primary-hover);
}

/* 일반회원 로그인 */
.input-group {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.input-group button:last-child {
    background: var(--color-dark);
    color: var(--color-white);
    border: none;
}

.input-group button:last-child:hover {
    background: var(--color-primary-hover);
}

.input-group button:last-child img {
    filter: brightness(0) invert(1);
}

.social-box {
    width: 100%;
    display: flex;
    gap: 1rem;
    justify-content: center;
    gap: 3rem;
}

.social-box .slb-area:nth-child(1) button {
    flex-direction: column;
}

.social-box .slb-area:nth-child(2) button img {
    height: 40px;
}

/* 간편 로그인 */
.social-login {
    display: flex;
    gap: .3rem;
;
}

.slb-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: .3rem;
}

.social-login button {
    background: var(--color-white);
    cursor: pointer;
    font-weight: 500;
    transition: filter 0.3s;
    width: 100%;
    height: 100px;
    border: 1px solid var(--color-gray-500);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
}

.social-login button IMG {
    height: 30PX;
}


.social-login button:hover {
    filter: brightness(1.1);
}

.toc {
    background: #f7f9fc;
    border: 1px solid #e6eef8;
    padding: 1rem;
    border-radius: 8px
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    background: #fff;
    padding: .5rem;
    border: 2px solid #000
}


caption {
    caption-side: top;
    font-weight: 700;
    padding: .25rem
}

address {
    font-style: normal
}

.visually-hidden {

    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
    border: 0;
    padding: 0;
    margin: -1px
}

.bd-area .tit {
    text-align: left;
    font-size: var(--font-3);
}

.bd-area button {
    padding: .5rem 2rem;
}

/* FAQ 전체 */
.faq-wrap {
    border-top: 1px solid var(--color-gray-500);
}

/* 각 아이템 구분선 */
.faq-item {
    border-bottom: 1px solid #e5e5e5;

}

/* 질문 버튼 */
.faq-question {
    width: 100%;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--font-3);
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1REM;
    justify-content: space-between;
    color: var(--color-dark);
    box-shadow: NONE;
}

/* 아이콘 (+ / -) */
.faq-question::after {
    content: "+";
    font-size: var(--font-3);
    font-weight: 400;
    transition: transform 0.25s ease, color 0.25s;
    color: var(--color-gray-500);
}

.faq-item.active .faq-question::after {
    content: "-";
    color: #222;
}

/* 답변 */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    font-size: var(--font-3);
    line-height: 1.6;
    color: var(--color-dark);
    transition: max-height 0.3s ease;
    padding-left: 1.3REM;
    margin-top: 0;
    background: var(--color-gray-100);
}

/* 열린 상태 */
.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.3rem;
}

/* 페이지네이션 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 26px;
}

.pagination button {
    min-width: 36px;
    height: 36px;
    border: 1px solid var(--color-gray-300);
    background: var(--color-white);
    font-size: var(--font-1);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    box-shadow: none;
}

.pagination button:hover {
    background: var(--color-gray-100);
}

.pagination .active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.email-service {}

/* 안내 박스 */
.info-box {
    padding: 2.5rem;
    border: 1px solid var(--color-primary-border);
    border-radius: var(--radius-md);
    background: var(--color-gray-100);
    margin-bottom: 24px;
    box-shadow: 0 0.2rem 0.2rem rgba(0, 0, 0, 0.05);
    display: flex;
    position: relative;
}

.info-box img {
    position: absolute;
    width: 200px;
    right: 2rem;
    bottom: 1rem;
}

.info-box h3 {
    font-size: var(--font-4);
}

.status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.status .value {
    color: #d20d0d;
    font-weight: 600;
}

.desc {
    line-height: 1.6;
    color: #555;
}

.small {
    font-size: var(--font-1);
    color: #777;
}

/* 입력폼 공통 */
.doc-box .row {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.doc-box li {
    padding: 1rem 0 0;
}

.doc-box li textarea {
    width: calc(100% - 200px);
}

.doc-box label {
    display: block;
    font-size: var(--font-3);
    margin-bottom: 6px;
    font-weight: 600;
    width: 150px;
}



.inline {
    display: flex;
    gap: 1rem;
}

.phone-wrap,
.email-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

textarea {
    height: 120px;
    resize: none;
}

/* 경고문 */
.warn {
    font-size: var(--font-1);
    color: #b30000;
    margin-top: 6px;
}

/* 결제 */
.pay-box {
    margin-top: 32px;
    padding: 20px;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    background: #fdfdfd;
}

.pay-total {
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
    font-size: var(--font-2);
    font-weight: 600;
}

.recommend {
    margin-top: 12px;
    font-size: var(--font-2);
    color: #555;
}

/* 약관 */
.agree-box {
    margin: 24px 0;
    display: flex;
    align-items: center;
}

.agree-box .view {
    background: none;
    border: none;
    color: #0074e9;
    cursor: pointer;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.section-title {
    font-size: var(--font-4);
    margin: 2rem 0 1rem;
}

.section dl {
    display: flex;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.section dl dt {
    font-weight: 600;
    text-wrap: nowrap;
}

.section dl dt::before {
    content: "·";
    padding: 0 .5rem 0 0;
}

.section dl dt::after {
    content: ":";
    padding: 0 .5rem 0 .5rem;
}

.head-info .section-title {
    margin-top: 0 !important;
}

.head-info {
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    border-radius: 1rem;
    background: var(--color-gray-100);
    border: 1px solid var(--color-primary-border);
    width: 100%;
    margin-bottom: 3rem;
}

.head-info .btn-area a:first-child {
    background: #ffffff !important;
}


.head-info img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 8px;
}


.info-list {
    display: flex;
    gap: 7rem;
    justify-content: center;
    margin: 4rem 0 0 0;


}

.info-list li .txt {
    display: flex;
    flex-direction: column;
    word-break: keep-all;
}


.info-list li {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 1rem;
    border-radius: 6px;
    font-size: var(--font-2);
}

.info-list li img {
    width: 150px;
    padding: 2rem;
    border-radius: 100%;
    background: var(--color-gray-100);
}

.info-list li strong {
    font-size: var(--font-2);
    font-weight: 500;
}

.email-steps li {
    position: relative;
    width: 220px;
}

.email-steps li::after {
    content: "";
    background: url(../images/next_icon.svg) no-repeat;
    padding: 3rem;
    position: absolute;
    top: 40%;
    right: -8rem;
;
    transform: translate(0, -50%);
    background-size: 30px;
}

.email-steps li:last-child::after {
    background: none;
}

.email-steps strong {
    font-size: var(--font-2) !important;
    font-weight: 700 !important;
}

.email-steps .txt {
    font-size: var(--font-1) !important;
}

.check-list {
    width: 100%;
}

.check-list li {}

.check-list .title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #222;
    display: flex;
    align-items: center;
}

.check-list .title::before {
    content: "●";
    margin-right: .5rem;
    font-size: .3rem;
    color: #47392d;
}

.check-list .img-area {
    margin-top: 1rem;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #b4b4b4;
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 9px;
    gap: 3rem;
}



.check-list .desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    word-break: keep-all;
    margin-left: .8rem;
}

.law-list {
    font-size: 1.1rem;
}

.law-list span {
    font-weight: 700;
    color: #be5600
}

.imgbox {
    width: 100%;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    border: 1px solid #a3a8b7;
    border-radius: 6px;
}

.imgbox ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.step-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 5rem;
}

.step-list .highlight {
    padding: 1rem !important;
}



.step-list img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.step-num {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #535353;
}

.step-txt {
    font-size: 14px;
    margin-top: 10px;
    color: #333;

}

.highlight {
    padding: 3rem;
    border: 1px solid #a3a8b7;
    border-radius: 6px;
}

.guide-list {
    display: flex;
    gap: 2.5rem;
}

.guide-list li {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 2rem;
    background: #fafafa;
    width: 100%;
}

.guide-list li img {
    display: block;
    max-width: 500px;
    margin: 1.2rem auto;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.guide-list li .title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.guide-list li .desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

.guide-list li .desc strong {
    color: #d23a3a;
    font-weight: 700;
}

.service_info ul {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 1rem;
    border: 1px solid #ccc;
    margin-bottom: 3rem;
    padding: 2rem;
}


.user-area {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.06),
        /* very subtle */
        0 6px 18px rgba(0, 0, 0, 0.12);
    /* main depth */
    border: 1px solid var(--color-primary-border);
    border-radius: 2rem;
    padding:6rem 0;
    gap: 3rem;
}

.user-area .userimg {
    width: 150px;
}

.error-red {
    color: #d32f2f;
    font-size: 17px;
    margin-top: 6px;
    line-height: 1.4;
}

.wesimg {
    border-radius: 100%;
    border: 12px solid #f8f8f8;
    width: 76PX !important;
    height: 76PX !important;
    background: url(../images/icon-wes.png)no-repeat center center #14a66c;
    background-size: 40px auto;
}

.eceimg {
    width: 80PX;
    height: 76PX;
    background: url(../images/icon-ece.png)no-repeat center center #fff;
    background-size:contain;
}

.error-wrap {
    width: 100%;
    max-width: 700px;
    padding: 32px 24px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
img.error {
    width: 300px;
}
.error-wrap .logo {
    width: 200px;
    margin: 0 auto;
}
.error-wrap h1 {
    font-size: 3rem;
}
.error-wrap p {
    font-size: 1.5rem;
    color: #666;
    margin: 0 0 28px;
    line-height: 1.5;
}
.error-wrap button{padding: .5rem 1rem; background: #fff;}


.pubox {
    width:100%;
    height:100%;
    background-color: rgba(0,0,0, 0.6);
    position:fixed;
    left:0;
    top:0;
    z-index:100;
}
.popup2 {
    top:50%;
    left:50%;
    position:absolute;
    border-radius:0.5rem;
    padding:1rem 1rem 0;
    transform:translate(-50%, -50%);
    background-color:#fff;
    border:1px solid #ddd;
    width:860px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.pop_cert > h2 {
    border-radius:0.5rem;
    background: var(--color-primary);
    color:#FFFFFF;
    padding-left:3rem;
    font-size:1.3rem;
    line-height:2.5rem;
    margin-bottom:1rem;
    font-weight:600;
}

.pop_cert > div {
    padding: 0 1rem 1rem 1rem;
}

.pop_cert > div > p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
    margin: 0.8rem 0;
}

.pop_cert > div > p a {
    color: var(--color-primary);
    font-weight: 600;
}

.pop_cert table {
    width:100%;
    margin:1rem auto;
    border:1px solid #666;
    background:#FFFFFF;
    box-shadow:0 0.2rem 0.2rem rgba(0,0,0,0.1);
    border-radius: 0.3rem;
    overflow: hidden;
}

.pop_cert table th {
    background: var(--color-gray-500);
    padding: 10px;
    border: 1px solid #ddd;
    font-weight: 600;
}

.pop_cert table td {
    padding: 10px;
    border: 1px solid #ddd;
    background: #fbfbfb;
}

.pop_cert > .bt_x {
    margin:1rem 0 1rem 1rem;
    padding:0;
    display: flex;
    justify-content:flex-end;
}

.pop_cert > .bt_x > button {
    width:auto;
    font-size:14px;
    font-weight:600;
    padding: 8px 24px;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-500);
    border-radius: 0.3rem;
    cursor: pointer;
}

/* ---------------------------------------
   Bootstrap input-group 스타일 제거
----------------------------------------*/
.input-group > .btn {
    border-radius: var(--bs-border-radius) !important;
}
.input-group > input[type="text"] {
    border-radius: var(--radius-md) !important;
}

/* ---------------------------------------
   원본대조번호 - input + search
----------------------------------------*/
.verify-input-wrapper {
    display: flex;
    gap: 0;
    align-items: stretch;
}

.verify-input-wrapper input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.verify-search-btn {
    margin: 0;
    padding: 0 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: var(--color-primary);
    height: auto;
}

.tag-red {
    color: red;
}

.indent {
    margin-left: 16px;
}

.btn-inquiry {
    display: inline-block;
    padding: 8px 14px;
    background-color: #2f6fd6;
    color: #fff;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
}

.btn-inquiry:hover {
    background-color: #245bb5;
}
