body {
	height: 100%;
	margin: 0;
}

header {
	position: relative;
}

/**/
/* CSS: 복사해서 스타일시트에 넣기 */
.btn-top {
	position: fixed;
	right: 20px;
	bottom: 28px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1px solid #102f69;
	background: #102f69;
	display: grid;
	place-items: center;
	font-size: 20px;
	cursor: pointer;
	z-index: 9999;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
	transition: opacity 220ms ease, transform 220ms
		cubic-bezier(.2, .9, .2, 1);
	box-shadow: 0 6px 20px rgba(45, 80, 255, 0.12), 0 0 10px
		rgba(45, 80, 255, 0.08);
}

/* 약간 번지는 글로우(원했던 스타일) */
.btn-top:before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(45, 80, 255, 0.12);
	pointer-events: none;
}

/* 보이기 상태 */
.btn-top.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	color: #fff;
	font-size: 14px;
}

/* 호버 / 포커스 느낌 */
.btn-top:hover, .btn-top:focus {
	transform: translateY(-3px) scale(1.03);
	outline: none;
	box-shadow: 0 10px 30px rgba(45, 80, 255, 0.12), 0 0 18px
		rgba(45, 80, 255, 0.12);
}

/*통합로그인*/
.nikom-login {
	border-top: 1px solid #000;
	padding-top: 50px;
}

.nikom-login-text h3 {
	display: flex;
	align-items: center;
}

.nikom-login-text {
	display: flex;
	align-items: center;
	gap: 20px;
}

.nikom-login-go {
	font-size: 18px;
}

.nikom-login-go a {
	display: flex;
	align-items: end;
	padding: 0px 0px 0 10px;
}

.nikom-login-go a::after {
	content: "";
	display: flex;
	width: 25px;
	height: 25px;
	background-image: url(../images/icon/next.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
}

.nikom-login-go a:hover {
	text-decoration: underline;
	background-color: rgba(45, 80, 255, 0.12);
	border-radius: 5px;
	transition-delay: .15s;
}

/**/
.layout {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	/* 	height: 100%; */
}

.menu-group-top {
	display: flex;
	width: 100%;
}

.lang-switch {
	display: flex;
	align-items: center;
	gap: 5px;
}

.one-border {
	padding: 3px 5px !important;
	font-size: 12px;
	text-align: center;
	border-radius: 5px !important;
}

.w-100 {
	width: 100%;
}

.h-100 {
	height: 100%;
}

.topwrap {
	height: 44px;
	background-color: #132058;
	position: relative;
	z-index: 1;
}

.d_width {
	max-width: 1400px;
	margin: 0 auto;
	transition: all 0.5s;
	display: flex;
	justify-content: space-between;
}

.topwrap .d_width>a.on {
	background-color: #FF9200;
	color: #102F69;
}

.topwrap .d_width>a {
	font-size: 13px;
	float: left;
	color: #ffffff;
	height: 44px;
	line-height: 44px;
	position: relative;
	z-index: 99999;
	padding: 0 15px;
}

.topwrap .d_width>a::after {
	content: '';
	display: block;
	width: 1px;
	height: 20px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #2D307C;
}

.topwrap .d_width>a.on::after, .topwrap .d_width>a:first-of-type::after
	{
	display: none;
}

/* 네비 */
nav {
	display: flex;
	max-width: 1400px;
	margin: auto;
	gap: 50px;
}

.logo {
	display: flex;
	width: 300px;
	font-size: 15px;
	align-items: center;
	gap: 10px;
	font-weight: bold;
}

.logo img {
	width: 30px;
}

.logo a {
	display: flex;
	align-items: center;
	gap: 5px;
}

nav .top_nav {
	display: flex;
	width: 100%;
}

nav .top_nav ul.menu {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

nav .top_nav ul li.has-sub {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
}

nav .top_nav ul li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 15px 0;
	gap: 5px;
	font-size: 14px;
}

nav .top_nav ul.submenu li a {
	padding: 15px;
}

nav .top_icon-1 {
	display: flex;
}

nav .top_nav ul li.has-sub .top-icon {
	width: 10px;
	height: 10px;
}

nav .top_nav ul li.has-sub .top-menu {
	width: 30px;
}

/*햄버거*/
/* 초기 메뉴 스타일 */
.menu {
	display: flex; /* 기본은 가로로 */
	gap: 20px;
	list-style: none;
}

/* 햄버거 버튼 숨김 (PC에서는 필요 없음) */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

/* 햄버거 아이콘 모양 */
.menu-toggle .hamburger {
	display: block;
	width: 24px;
	height: 2px;
	background-color: #333;
	position: relative;
}

.menu-toggle .hamburger::before, .menu-toggle .hamburger::after {
	content: "";
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: #333;
	left: 0;
	transition: 0.3s;
}

.menu-toggle .hamburger::before {
	top: -8px;
}

.menu-toggle .hamburger::after {
	top: 8px;
}
/* 서브메뉴 */

/* 로그인 아이콘 컨테이너 */
.login-user {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 11px 0;
}

/* 기본적으로 하위 메뉴 숨김 */
.sub-login-menu {
	display: none;
	position: absolute;
	top: 100%;
	background: #003ea3;
	border-radius: 5px;
	list-style: none;
	z-index: 999;
	min-width: 100px;
	text-align: center;
	color: #fff;
}

.sub-login-menu:after {
	border-color: #003ea3 transparent;
	border-style: solid;
	border-width: 0 5px 8px 5px;
	content: '';
	display: block;
	width: 0;
	position: absolute;
	left: 50%;
	top: -7px;
	z-index: 0;
	transform: translateX(-50%);
}

.submenu {
	display: none;
	position: absolute;
	top: 100%; /* a태그 바로 아래 */
	left: 50%; /* 부모 중앙 기준 */
	transform: translateX(-50%); /* 중앙 정렬 */
	background: #003ea3;
	min-width: 150px;
	z-index: 100;
	border-radius: 5px;
}

.submenu li {
	padding: 0;
}

.submenu li a {
	display: block;
	padding: 10px;
	text-decoration: none;
	color: #ffffff;
	white-space: nowrap;
	width: 100%;
	font-size: 14px;
}

.submenu li a:hover {
	background: #102f69;
	color: #ff9200 !important;
	border-radius: 5px;
}

.sub-login-menu li:hover {
	background: #102f69;
	color: #ff9200 !important;
	border-radius: 5px;
}

/* hover 시 아이콘 변경 */
.menu li.has-sub a:hover .top_icon-1 img {
	content: url("../images/icon/top_line_hover.svg");
}

.has-sub.on {
	color: #ff9200;
}

.submenu::after {
	border-color: #003ea3 transparent;
	border-style: solid;
	border-width: 0 5px 8px 5px;
	content: '';
	display: block;
	width: 0;
	position: absolute;
	left: 50%;
	top: -8px;
	z-index: 0;
	transform: translateX(-50%);
}

.submenu:hover .top_icon-1 img {
	content: url("../images/icon/top_line_hover.svg");
}

/* 메뉴 보이기 */
.fullmenu.show {
	display: block;
}

.fullmenu {
	display: none; /* 처음엔 안보임 */
	position: absolute; /* 버튼 바로 아래에 나타나게 */
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	list-style: none;
	margin: 0;
	padding: 20px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	color: #000;
	z-index: 999;
}

nav .top_nav ul li.has-sub-2 {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 35px;
	padding: 35px 0;
	cursor: pointer;
	width: 55px;
	display: none;
}

.nav-login {
	background-color: #132058;
	padding: 5px;
	border-radius: 5px;
	color: #fff;
	width: 65px;
	font-size: 13px;
}

.system-title {
	font-size: 16px;
	letter-spacing: -1px;
}

.full-openmenu {
	max-width: 1400px;
	width: 100%;
	margin: auto;
	display: flex;
}

.full-list {
	display: flex;
	justify-content: end;
	width: 100%;
}

.full-list ul.full-group {
	display: flex;
	justify-content: flex-start;
	flex-grow: 1;
	height: 100%;
	min-height: 200px;
	flex-wrap: wrap;
	gap: 20px;
	background-color: #fff;
	padding-left: 20px;
	border-left: solid 1px #e4e4e4;
	border-right: solid 1px #e4e4e4;
}

.full-list ul.full-group>* {
	padding: 10px;
	flex-basis: calc(20% - 20px);
	border-radius: 5px;
	text-align: left;
	font-weight: bold;
}

.full-list ul.full-group li .sub-in a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
	padding: .7em 1em;
	border: solid 1px #e4e4e4;
	border-radius: 4px;
	font-weight: 700;
	transition: all .3s ease 0s;
}

.full-list ul.full-group li .sub-in .sub-ul {
	padding: 10px 0;
	display: flex;
	flex-direction: column;
}

.full-list ul.full-group li .sub-in .sub-ul a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 4px;
	transition: all .3s ease 0s;
	padding: 6px;
	border-radius: 4px;
	border: none;
	font-weight: 400;
	font-size: 14px;
}

/*메인 전체*/
.content {
	width: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

/* 메인 */
.main-contect {
	background-color: #e4eaf5;
}

.main-banner, .row-item-group {
	max-width: 1400px;
	margin: auto;
	display: flex;
}

.banner {
	display: flex;
	width: 100%;
	gap: 14px;
	padding: 14px 0;
}

.left-banner {
	display: flex;
	width: 450px;
	flex-direction: column;
	/* background: url('../images/main-bn_1.jpg'); */
	transition: background-image 0.5s ease-in-out;
	background-size: cover;
	background-position: center; /* 중앙 기준 */
	border-radius: 10px;
	position: relative;
	background-repeat: no-repeat;
	height: 450px;
}

.slide-btn.next {
	position: relative;
	width: 25px;
	height: 25px;
	background-color: #fff;
	border-radius: 100%;
}

.slide-btn.next::after {
	content: '';
	background-image: url(../images/icon/next.svg);
	display: flex;
	width: 20px;
	height: 20px;
	margin: 2px;
	right: 0;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 100%;
}

.slide-btn.prev {
	position: relative;
	width: 25px;
	height: 25px;
	background-color: #fff;
	border-radius: 100%;
}

.slide-btn.prev::after {
	content: '';
	background-image: url(../images/icon/next.svg);
	display: flex;
	width: 20px;
	height: 20px;
	margin: 2px;
	position: absolute;
	top: 0;
	left: 0;
	transform: scaleX(-1);
	border-radius: 100%;
}

/* 컨트롤 영역 */
.banner-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	gap: 5px;
	background: rgba(0, 0, 0, 0.3);
	padding: 10px 15px;
	border-radius: 10px;
}

.slide-btn.play-pause {
	width: 25px; /* 버튼 크기 (필요에 맞게 조절) */
	height: 25px;
	border: none;
	background: #fff; /* 버튼 배경 */
	border-radius: 50%; /* 원형 버튼 원하면 추가 */
	display: flex;
	align-items: center; /* 세로 가운데 */
	justify-content: center; /* 가로 가운데 */
	cursor: pointer;
	padding: 0; /* 버튼 안쪽 여백 제거 */
}

.slide-btn.play-pause img {
	width: 15px; /* 아이콘 크기 */
	height: 15px;
	object-fit: contain; /* 비율 깨지지 않게 */
	pointer-events: none; /* 클릭 영역은 버튼 전체 */
}

.slide-counter {
	background-color: #fff;
	border-radius: 15px;
	padding: 2px 10px;
	color: #000;
	font-weight: bold;
}

.right-banner {
	display: flex;
	flex: 1.5;
	flex-direction: column;
	gap: 14px;
}

.item-group2, .item-group3 {
	display: flex;
	width: 100%;
	gap: 30px;
}

.item {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 10px;
	width: 100%;
	justify-content: center;
	height: 100%;
	position: relative;
	border: 1px solid #fff;
}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 1.4;
}

.network-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.network-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.network-sm-group {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.network-sm-group .flex-1 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 1px solid #e1e1e1;
	gap: 5px;
	padding: 5px;
	border-radius: 5px;
	background-color: #f5f8ff;
	min-height: 87px;
}

.network-sm-group .flex-1 p {
	text-align: center;
	justify-content: center;
	font-weight: bold;
	font-size: 13px;
}

.ion_title {
	display: flex;
	width: 100%;
	gap: 10px;
	align-items: center;
	position: relative;
}

.ion_title-2 {
	display: flex;
	width: calc(100% - 27px);
	justify-content: space-between;
	align-items: center;
	position: relative;
}

.ion_title-group {
	display: flex;
	gap: 10px;
	align-items: center;
}

.ion_title-group h2{
	font-size: 18px;
}

.ion_go {
	font-size: 12px;
}

.ion_go a:hover {
	color: #246beb;
	cursor: pointer;
}

.item-2:hover {
	background-color: #fff;
	border: 1px solid #246beb;
}

.ion_go a {
    position: relative;
    text-decoration: none;
    height: 22px;
    display: flex;
    align-items: center;
}

.ion_go a::after {
	content: "";
	position: absolute; /* 절대 위치 */
	top: 50%; /* 텍스트 세로 중앙 맞춤 */
	left: 100%; /* 텍스트 끝 바로 옆 */
	transform: translateY(-50%); /* 세로 중앙 보정 */
	width: 22px;
	height: 22px; /* 텍스트와 간격 */
	background-image: url('../images/icon/next.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.item .sm-text p {
	display: flex;
	width: 90%;
	white-space: normal;
}

.item p {
	display: flex;
	width: 90%;
	white-space: normal;
	font-size: 14px;
}

.item h2 {
	font-size: 19px;
}

.item .sm-text, .item .lg-text {
	position: relative;
	display: flex;
	align-items: center;
}

.item .ion_title::after {
	content: '';
	background-image: url(../images/icon/next.svg);
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-left: 6px;
	right: 15px;
	position: absolute;
	top: 60%;
}

.item-2 {
	display: flex;
	flex-direction: column;
	background-color: #fff;
	border-radius: 10px;
	width: 100%;
	justify-content: center;
	height: 100%;
	position: relative;
	border: 1px solid #fff;
}

.item .ion_title.network::after {
	top: 0;
}

.icon-1 {
	width: 30px;
	height: 30px;
}

.item:hover {
	background-color: #fff;
	color: #246beb;
	cursor: pointer; /* 마우스 오버시 손가락 모양 */
	border: 1px solid #246beb;
}

.item .flex-1 p {
	color: #000; /* 상속을 막고 기본 색상 유지 */
	/* 또는 고정 색상을 원하면 예를 들어: color: black; */
}

.item .flex-1:hover p {
	color: #ff9200;
}

.text-box {
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 100%;
	justify-content: center;
	padding: 10px;
}

/* 두번째 단락 */
.date-group {
	background-color: #246beb;
}

.row-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	height: 106px;
	justify-content: center;
}

.row-item h2 {
	font-size: 25px;
	font-weight: bold;
	color: #fff;
}

.row-img {
	width: 30px;
	height: 30px;
}

.bold-text-22 {
	font-size: 18px;
	font-weight: 400;
	color: #fff;
}

.row-item-group {
	gap: 14px;
}

.main-item-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.item-group {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-right: 30px;
	width: 100%;
}

.item-group.bord-n {
	border-right: none;
	padding-right: 0;
}

.min-w-100 {
	min-width: 100%;
}

.h-122 {
	height: 122px;
}

.roll-sm-text {
	flex-direction: column;
	overflow: hidden;
	align-items: flex-start;
	position: relative;
	display: flex;
	height: 55px; /* p 한 줄 높이만큼 */
}

.roll-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	flex-direction: column;
}

.roll-sm-text p {
	margin: 0;
	line-height: 20px;
	white-space: nowrap; /* 한 줄로 유지 */
	overflow: hidden; /* 넘친 부분 숨기기 */
	text-overflow: ellipsis; /* ... 표시 */
	display: block; /* inline은 ellipsis 적용 안됨 */
	width: 100%; /* 기준 너비 */
	border-bottom: 1px dotted #ddd;
	padding: 3px 0;
	font-size: 14px;
	cursor: pointer;
}

.roll-sm-text p:hover {
	color: #246beb;
}

.w-40 {
	width: 40%;
}

.w-60 {
	width: 60%;
}

/*3개짜리 그래프 영역*/
.graph-item3 .main-graph {
	background-color: #102f69;
}

.main-graph-group {
	max-width: 1400px;
	margin: auto;
	display: flex;
	gap: 14px;
	width: 100%;
	margin-top: 14px;
	height: 100%;
	margin-bottom: 20px;
}

.graph-item3 .graph-item {
	display: flex;
	flex: 1;
	width: 100%;
	height: auto;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
	flex-direction: column;
}

/*4개짜리 그래프*/
.main-graph {
	display: flex;
	flex-direction: column;
}

.graph-item2 .graph-item {
	display: flex;
	flex: 1;
	width: 100%;
	height: 400px;
	background-color: #fff;
	border-radius: 10px;
	border: 1px solid #ddd;
}

.graph {
	display: flex;
	width: 100%;
	height: 300px;
}

.graph-item2 {
	margin-bottom: 50px;
	display: none;
}

:root {
	--header-height: 228px;
}

.content-wrapper {
	flex: 1;
	min-height: calc(100vh - var(--header-height));
	display: flex;
	background-color: #F6F8F9;
	border-top: 1px solid #ddd;
}

main {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 100%;
	width: 100%;
	height: 100%;
}
/* 하단 */
.footer {
	background-color: #ddd;
	width: 100%;
}

.fcont-wrap {
	width: 100%;
	display: flex;
	align-items: center;
}

.fcont1 {
	width: calc(15% - 40px);
	margin: 20px;
}

.fcont1 a {
	font-size: 20px;
}

.fcont2 {
	width: calc(51.66% - 40px);
	margin: 20px;
}

.fcont2 p {
	color: #000;
	font-size: 18px;
	margin-bottom: 10px;
}

.fcont2 li {
	position: relative;
	color: #7b7b7b;
	font-size: 13px;
	line-height: 1.8;
}

.fcont2 li i {
	position: absolute;
	left: 0;
	top: 8px;
}

.fcont3 {
	width: 33.33%;
	margin: 20px;
}

.fsite-info {
	display: flex;
	font-size: 13px;
	justify-content: end;
}

.clearfix {
	display: flex;
	gap: 15px;
}

.footer .orange {
	color: #FF9200;
}

/*상세 공통*/
.sub-container {
	max-width: 1400px;
	margin: 10px auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	position: relative;
	min-height: 100%;
}

.text-title-group .text-list-item span.list-item-title {
	min-width: 125px;
	display: flex;
}

.top-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.body-content {
	display: flex;
	flex-direction: column;
}

/*한약네트워크*/
.left-menu {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
	font-size: 15px;
	background-color: #fff;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.left-menu h4 {
	color: #000;
	font-size: 16px;
	margin-left: 5px;
}

.search-nodetype {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.search-nodetype .btn-blue {
	background-color: #fff;
	padding: 8px;
	border-radius: 5px;
	border: 1px solid #4094f7;
	width: 100%;
	color: #4094f7;
}

.search-nodetype .btn-white {
	background-color: #4094f7;
	padding: 8px;
	border-radius: 5px;
	border: 1px solid #4094f7;
	width: 100%;
	color: #fff;
}

.disease-search {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.data-group-list {
	display: flex;
	gap: 10px;
}

.data-group-list-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.data-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.data-group.none {
	border: none;
}

.list-select {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.disease-search-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.select-action {
	background-color: #d7edff;
	padding: 8px;
	border-radius: 5px;
	color: #4094f7;
	font-weight: bolder;
	display: inline-flex;
	justify-content: space-between;
	font-size: 13px;
}

.select-action .close-btn {
	border: none;
	background: transparent;
	font-size: 16px;
	cursor: pointer;
	line-height: 1;
	color: #4094f7;
}

.list-select-group, .protein-list-select-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
	background-color: #fff;
	border-radius: 5px;
	cursor: pointer;
	height: 358px;
}

.data-list li, .protein-data-list li {
	padding: 8px;
	border-bottom: 1px dotted #ddd;
	font-size: 13px;
}

.data-list, .protein-data-list {
	height: 100%;
	overflow: auto;
	font-size: 14px;
	max-height: 358px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.data-list li:hover, .protein-data-list li:hover {
	background-color: #f6f8f9;
}

.data-list li:last-child, .protein-data-list li:last-child {
	border-bottom: none;
}

.protein-search {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.btn {
	width: 100%;
	display: flex;
}

.network-explanation {
	display: flex;
	width: 100%;
	background-color: #eef7ff;
	border: 1px solid #c5dfff;
	border-radius: 5px;
}

.network-explanation p {
	font-size: 13px;
	padding: 5px;
}

.network-explanation ol {
	display: flex;
	flex-direction: column;
	gap: 5px;
	list-style: none;
	padding-left: 0;
	counter-reset: list-counter; /* 숫자 초기화 */
	padding: 10px;
	line-height: 1.5;
	width: 100%;
}

.network-explanation ol li.title {
	font-weight: bold;
	color: #003ea3;
}

.network-explanation ol li {
	counter-increment: list-counter; /* 숫자 증가 */
	position: relative;
	padding-left: 25px; /* 숫자 영역 확보 */
}

.network-explanation ol li:not(:first-child)::before {
	content: counter(list-counter);
	position: absolute;
	left: 0;
	top: 10px;
	transform: translateY(-50%);
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background: #ffffff00;
	color: #000000;
	font-size: 12px;
	display: flex;
	align-items: end;
	justify-content: center;
	border: 1px solid;
	transform: translateY(-50%);
	line-height: 1.5;
}

.network-explanation ol li:first-child {
	counter-reset: list-counter;
	padding-left: 5px;
	font-size: 17px;
	padding: 5px 0;
}

.network-explanation ol li:not(:first-child) {
	counter-increment: list-counter;
	font-size: 13px;
}

.network-explanation ol li.icon-none::before {
	content: none;
}

.network-explanation ol li.icon-none {
	padding: 5px 0px;
	font-weight: bold;
}

.network-sub-contect {
	display: flex;
	gap: 10px;
}

.right-content {
	background-color: #fff;
	width: 100%;
	padding: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 10px;
}

.text-title-group {
	display: flex;
	gap: 10px;
	flex-direction: column;
	margin: 5px;
}

.text-title-list {
	display: flex;
	gap: 10px;
}

.text-title-item {
	display: flex;
	color: #007bff;
	gap: 10px;
	align-items: center;
	width: calc(100% - 150px);
	flex-wrap: wrap;
}

.text-list-item {
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.text-list-item lable {
	max-width: 150px;
	display: flex;
	width: 150px;
	position: relative;
}

.text-list-item lable::after {
	content: "｜";
	position: absolute;
	right: 0;
	color: #cacaca;
}

.text-title-item span {
	background-color: #d7edff;
	padding: 5px 10px;
	border-radius: 50px;
	width: max-content;
	height: 100%;
	font-size: 12px;
	display: flex;
	align-items: center;
}

.text-list-title {
	font-weight: bold;
	font-size: 22px;
}

.gray-circle-icon, .red-diamond-icon, .blue-diamond-icon,
	.purple-square-icon {
	position: relative;
	padding-left: 25px; /* 점 들어갈 자리 */
}

.gray-circle-icon::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 16px;
	height: 16px;
	background: #767676;
	border-radius: 50%;
	transform: translateY(-50%);
}

.red-diamond-icon::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 19px;
	height: 18px;
	background: #dc3545;
	clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	transform: translateY(-50%);
}

.blue-diamond-icon::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 14px;
	height: 14px;
	background: #17BECF; /* 파랑 */
	transform: translateY(-50%) rotate(45deg); /* 다이아몬드 모양 */
}

.purple-square-icon::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 20px;
	height: 12px;
	background: #9467BD;
	transform: translateY(-50%);
}

.title-icon {
	display: flex;
	width: 100%;
	font-size: 13px;
}

.title-icon h4 {
	margin-left: 5px;
}

.title-icon ul {
	display: flex;
	gap: 15px;
}

.network-content-group {
	display: flex;
	flex-direction: column;
	gap: 0px;
	flex-direction: column;
}

.lang-select {
	background-image: url(../images/icon/globe.png),
		url(../images/icon/top_line.png);
	width: 160px;
	background-repeat: no-repeat, no-repeat;
	background-position: 8px center, right 10px center;
	background-size: 16px 16px, 12px 12px;
	cursor: pointer;
	font-size: 14px;
	color: #333;
	padding: 8px 30px 8px 32px;
	border: 1px solid #ccc;
	border-radius: 6px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #fff;
}

button.download {
	background-image: url(../images/icon/download-1.png);
	background-repeat: no-repeat;
	background-position: calc(100% - 10px) center;
	background-size: 15px auto;
	cursor: pointer;
	padding: 5px 35px 5px 20px !important;
}

.title-icon-group {
	display: flex;
	align-items: center;
}

.graph-area {
	width: 100%;
	display: flex;
	background-color: #f6f8f9;
	border: 1px solid #ddd;
	min-height: 800px;
	max-height: 110vh;
	border-radius: 5px;
}

.graph-area.none {
	width: 100%;
	justify-content: center;
	align-items: center;
	font-size: 17px;
	color: #000;
	position: relative;
}

.graph-area.none::after {
	background-image: url(../images/icon/info.svg);
	display: block;
	position: absolute;
	top: 45%;
	z-index: 1;
	content: '';
	width: 22px;
	height: 22px;
	border-radius: 2rem;
	outline-offset: -0.1rem;
	background-color: #e6e8ea;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.graph-div-table table {
	width: 100%;
	display: flex;
	flex-direction: column;
	border: 1px solid #ddd;
}

.graph-div-table {
	border: 1px solid #ddd;
}

.graph-div-table thead {
	display: flex;
	width: 100%;
	border-bottom: 1px solid #ddd;
}

.graph-div-table th {
	display: inline-block;
	width: 100%;
	justify-content: center;
	font-size: 15px;
}

.graph-div-table .col-no {
	flex: 0.5;
}

.graph-div-table .col-title {
	flex: 2;
}

.graph-div-table .col {
	flex: 1;
}

.graph-div-table thead tr {
	display: flex;
	width: 100%;
	justify-content: center;
	background-color: #f0f0f0;
	font-size: 13px;
	padding: 10px;
	border-bottom: none;
}

.graph-div-table td {
	display: flex;
	width: 100%;
	justify-content: center;
}

.graph-div-table tbody tr {
	display: flex;
	font-size: 13px;
	padding: 10px;
	align-items: center;
	border-bottom: 1px solid #ddd;
}

.graph-div-table tbody tr:last-child {
	border-bottom: none;
}

.graph-div-table tbody {
	background-color: #fff;
}

/*로그인*/
.visually-hidden {
	display: none;
}

.login-top {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	padding: 25px 0 0;
	text-align: center;
}

.log-list-step {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.log-active {
	position: relative;
	width: 100%;
	min-width: 120px;
	padding-top: 28px;
	padding-right: 24px;
}

.log-list-step li::before {
	position: absolute;
	right: -1px;
	top: 10px;
	content: '';
	width: 100%;
	height: 16px;
	background-color: #ddd;
}

.sr-only {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.log-list-step li span {
	display: block;
	color: #2f2f2f;
	font-size: 12px;
}

.log-list-step li {
	position: relative;
	width: 100%;
	min-width: 120px;
	padding-top: 40px;
	padding-right: 20px;
}

.log-list-step li.log-active::after {
	outline: none;
	background-color: transparent;
	background-image: url(../images/icon/bg-step-active.svg);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	content: '';
	width: 22px;
	height: 22px;
	border-radius: 2rem;
	outline-offset: -0.1rem;
	background-color: #e6e8ea;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.log-list-step li::before {
	position: absolute;
	right: -1px;
	top: 9px;
	content: '';
	width: 100%;
	height: 1px;
	background-color: #ddd;
}

.log-list-step li:last-child::before {
	display: none;
}

.log-list-step li::after {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	content: '';
	width: 20px;
	height: 20px;
	border-radius: 2rem;
	outline: 1px solid #c8c8c8;
	outline-offset: -1px;
	background-color: #e6e8ea;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.log-list-step li span.log-step-tit {
	font-weight: bold;
}

.login-top p {
	font-size: 20px;
}

.login-box {
	display: flex;
	padding: 60px 120px;
	background-color: #fff;
	border: 1px solid #ddd;
	width: 900px;
	border-radius: 5px;
	margin: 40px auto;
	flex-direction: column;
	gap: 50px;
}

.login-box .input-area>.form-check.max-content {
	flex-direction: row;
	align-items: center;
}

.login-box-2 {
	display: flex;
	padding: 60px 120px;
	background-color: #fff;
	border: 1px solid #ddd;
	width: 900px;
	border-radius: 5px;
	margin: auto;
}

.method {
	max-width: calc(50% - 120px);
}

.method-phone {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 50%;
	padding: 10px;
	text-decoration: none;
	border: 1px solid #246beb;
	border-radius: 500px;
	background-color: #246beb;
	gap: 10px;
	color: #fff;
	margin: auto;
}

.method-phone span.tit {
	font-weight: bold;
}

.cert-desc-group {
	display: flex;
	flex-direction: column;
	gap: 20px;
	border: 1px solid #ddd;
	padding: 20px;
	border-radius: 5px;
}

.cert-desc {
	display: flex;
	width: 100%;
	font-size: 12px;
	padding: 10px;
	background-color: #f6f6f6;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.cert-desc-content {
	display: flex;
}

.c-bullet-type-circle {
	display: flex;
}

[class*=c-bullet-type-]>li:before {
	content: "";
	position: absolute;
	top: 10px;
	left: 0;
	width: 3px;
	height: 3px;
	background-color: #666;
	border-radius: 50%;
}

[class*=c-bullet-type-]>li>ul>li:before {
	content: "";
	position: absolute;
	top: 8px;
	left: -3px;
	width: 4px;
	height: 1px;
	background-color: #666;
}

.c-bullet-type-circle li {
	position: relative;
	padding-left: 5px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	justify-content: center;
}

.input-area {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.input-pw-area {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding-left: 50px;
}

.login-info {
	flex: 1;
	padding-left: 50px;
	display: flex;
	flex-direction: column;
	gap: 107px;
}

.form-conts input.input {
	border: 1px solid #ddd;
	padding: 5px 10px;
	width: 100%;
	height: 3rem;
	border-radius: 5px;
	background-color: #fff;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-tit label {
	font-weight: bold;
}

.form-conts {
	display: flex;
	position: relative;
	gap: 10px;
}

.ico-no-eye::after {
	background-image: url(../images/icon/ico_no_eye_20.svg);
}

.ico-eye::after {
	background-image: url(../images/icon/ico-pwd-view-on.svg);
}

.svg-icon::after {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	content: '';
}

.ico-link::after {
	background-image: url(../images/icon/file-download.svg);
}

.pw-visible {
	position: absolute;
	top: 50%;
	right: 1.6rem;
	height: 2.4rem;
	transform: translateY(-50%);
}

.join-section-2 {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.cont-border-group {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
}

.form-check .text {
	font-size: 13px;
	text-decoration: underline;
}

.svg-icon {
	display: inline-flex;
	width: 23px;
	height: 23px;
	line-height: 0;
	vertical-align: middle;
}

.btn.btn-login {
	width: 100%;
	background-color: #003FA3;
	padding: 10px;
	justify-content: center;
	border-radius: 5px;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
}

.link-wrap {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.link-wrap span {
	position: relative;
}

.login-box .link-wrap span a::before {
	position: absolute;
	top: 50%;
	right: -10px;
	width: 1px;
	height: 15px;
	background-color: #ddd;
	transform: translateY(-50%);
	content: "";
}

.login-box .link-wrap span:last-child a::before {
	content: none;
}

.lstyle-dot {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding-top: 30px;
}

.lstyle-dot>li {
	position: relative;
	padding-left: 20px;
	font-size: 16px;
}

.lstyle-dot>li::before {
	width: 5px;
	height: 5px;
	background-color: #1D1D1D;
	border-radius: 100%;
	display: block;
	position: absolute;
	top: 10px;
	left: 0;
	content: '';
}

.login-info-box {
	background-color: #e4eaf5;
	padding: 10px 25px;
	border-radius: 5px;
	border: 1px solid #ddd;
	height: 46px;
	display: none;
}

.login-info-box p {
	background: url('../images/icon/icon_help.png') left center/20px auto
		no-repeat;
	color: #003675;
	display: block;
	padding-left: 24px;
}

/**/
:root {
	--dt-header-bg: #0D2C54;
	--dt-header-fg: #ffffff;
	--dt-row-odd: #fbfcff;
	--dt-row-hover: #f1f5f9;
	--dt-border: #e5e7eb;
	--dt-text: #0f172a;
}

/* 카드 컨테이너 */
.dt-card {
	background: #fff;
	border: 1px solid var(--dt-border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
	padding: 0;
}

/* 테이블 기본 */
.dataTable {
	border-collapse: separate;
	border-spacing: 0;
	color: var(--dt-text);
	font-size: 14px;
	table-layout: fixed; /* 열 너비 고정 계산 */
	width: 100%;
}

div.dt-container.dt-empty-footer tbody>tr:last-child>* {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* 헤더 */
.dataTable thead th {
	background: var(--dt-header-bg);
	color: var(--dt-header-fg);
	font-weight: 700;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	position: relative;
	white-space: nowrap;
	text-align: center;
}

/* ▼ DataTables 2.x 아이콘과 겹치지 않게 패딩/아이콘 위치 조정 */
table.dataTable thead th.dt-orderable, table.dataTable thead th.dt-ordering-asc,
	table.dataTable thead th.dt-ordering-desc {
	background-repeat: no-repeat;
	background-position: right .75rem center; /* 아이콘을 오른쪽으로 */
	background-size: 12px 12px; /* 아이콘 크기 */
}

/* 본문 셀 */
.dataTable tbody td {
	padding: 10px 16px;
	vertical-align: middle;
	text-align: center;
}

.dataTable tbody tr:nth-child(odd) {
	background: var(--dt-row-odd);
}

.dataTable tbody tr:hover {
	background: var(--dt-row-hover);
}

/* 숫자 정렬 유틸 */
.text-right {
	text-align: center;
}

.text-center {
	text-align: center;
}

/* 하단 영역 정렬 (가운데 페이징) */
/* 커스텀 페이저 컨테이너 */
.dt-pager {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 100%;
	margin: 12px 0 16px;
}

/* 공통 버튼 스타일 */
.dt-pager .page-btn {
	border: 1px solid var(--dt-border);
	background: #fff;
	color: #334155;
	min-width: 36px;
	height: 32px;
	padding: 0 10px;
	border-radius: 8px;
	line-height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
	transition: background .15s, border-color .15s, color .15s, transform
		.05s;
}

.dt-pager .page-btn:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}

.dt-pager .page-btn.is-active {
	background: #0D2C54;
	border-color: #0D2C54;
	color: #fff;
	font-weight: 700;
}

.dt-pager .page-btn:disabled {
	opacity: .45;
	cursor: not-allowed;
}

.dt-pager .page-btn span img {
	width: 14px;
	height: 14px;
}

.dataTables_wrapper .dataTables_info {
	float: none;
	text-align: center;
	margin: 8px 0 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
	background: #111827;
	color: #fff !important;
	border-color: #111827;
}

/* 반응형 아이콘 정렬 보정(선택) */
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
	line-height: 16px;
}

:root {
	--dt-header-bg: #0D2C54;
	--dt-header-fg: #ffffff;
	--dt-row-odd: #fbfcff;
	--dt-row-hover: #f1f5f9;
	--dt-border: #e5e7eb;
	--dt-text: #0f172a;
}

/* 카드 컨테이너 */
.dt-card {
	background: #fff;
	border: 1px solid var(--dt-border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
	padding: 0;
}

/* 테이블 기본 */
#diseaseTable {
	border-collapse: separate;
	border-spacing: 0;
	color: var(--dt-text);
	font-size: 14px;
	table-layout: fixed; /* 열 너비 고정 계산 */
	width: 100%;
}

div.dt-container.dt-empty-footer tbody>tr:last-child>* {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

/* 헤더 */
#diseaseTable thead th {
	background: var(--dt-header-bg);
	color: var(--dt-header-fg);
	font-weight: 700;
	font-size: 11px;
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	position: relative;
	white-space: nowrap;
	text-align: center;
}

table.dataTable thead th.dt-orderable, table.dataTable thead th.dt-ordering-asc,
	table.dataTable thead th.dt-ordering-desc {
	background-repeat: no-repeat;
	background-position: right .75rem center; /* 아이콘을 오른쪽으로 */
	background-size: 12px 12px; /* 아이콘 크기 */
}

/* 본문 셀 */
#diseaseTable tbody td {
	padding: 10px 16px;
	vertical-align: middle;
	text-align: center;
}

#diseaseTable tbody tr:nth-child(odd) {
	background: var(--dt-row-odd);
}

#diseaseTable tbody tr:hover {
	background: var(--dt-row-hover);
}

/* 숫자 정렬 유틸 */
.text-right {
	text-align: center;
}

.text-center {
	text-align: center;
}

/* 하단 영역 정렬 (가운데 페이징) */
/* 커스텀 페이저 컨테이너 */
.dt-pager {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 100%;
	margin: 12px 0 16px;
}

/* 공통 버튼 스타일 */
.dt-pager .page-btn {
	border: 1px solid var(--dt-border);
	background: #fff;
	color: #334155;
	min-width: 36px;
	height: 32px;
	padding: 0 10px;
	border-radius: 8px;
	line-height: 30px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
	transition: background .15s, border-color .15s, color .15s, transform
		.05s;
}

.dt-pager .page-btn:hover {
	background: #f8fafc;
	border-color: #cbd5e1;
}

.dt-pager .page-btn.is-active {
	background: #0D2C54;
	border-color: #0D2C54;
	color: #fff;
	font-weight: 700;
}

.dt-pager .page-btn:disabled {
	opacity: .45;
	cursor: not-allowed;
}

.dt-pager .page-btn span img {
	width: 14px;
	height: 14px;
}

.dataTables_wrapper .dataTables_info {
	float: none;
	text-align: center;
	margin: 8px 0 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
	background: #111827;
	color: #fff !important;
	border-color: #111827;
}

/* 반응형 아이콘 정렬 보정(선택) */
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
	line-height: 16px;
}

/*로그인*/
/* 아이콘 스타일 */
.login-user-icon::after {
	content: '';
	display: inline-block;
	width: 26px;
	height: 26px;
	background-image: url(../images/icon/login-join.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	vertical-align: middle;
}

/* 버튼 스타일 */
.sub-login-menu .nav-login {
	background: none;
	border: none;
	padding: 8px 16px;
	width: 100%;
	text-align: left;
	cursor: pointer;
	font-size: 14px;
	color: #333;
}

.sub-login-menu .nav-login:hover {
	background-color: #f5f5f5;
}

/* hover 시 메뉴 표시 */
.has-sub-login:hover .sub-login-menu {
	display: block;
}

.has-sub-login {
	position: relative; /* 기준점 설정 */
}

/*팝업*/
.filter-area-content {
	display: flex;
	width: 100%;
	gap: 10px;
}

.no-data li.no-result {
	justify-content: center;
}

.pop-no, .pop-whether, .pop-num {
	flex: 0.3 !important;
	justify-content: center;
}

.pop-list-title {
	font-size: 13px;
}

.pop-name, .pop-title-id, .pop-authority, .pop-date2 {
	flex: 0.5 !important;
}

.pop-authority, .pop-date2, .pop-name {
	justify-content: center;
}

.pop-title-name {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pop-tel {
	justify-content: center;
}

.pop-date {
	gap: 5px;
	justify-content: center;
	flex: 1 !important;
}

.disease-search-list .disease-title ul.pop-list-title {
	width: 100%;
}

.disease-search-list .disease-list ul.pop-list-detail {
	border-bottom: 1px solid #ddd;
	min-height: 50px;
	align-items: center;
}

.disease-search-list .disease-list ul.pop-list-detail:last-child {
	border-bottom: none;
}

.popup-list {
	min-height: 546px !important;
}

.over-hidden {
	overflow: hidden !important;
}

.disease-search-list .disease-title ul.pop-list-title li {
	margin-left: 0px;
	justify-content: center;
}

input:disabled {
	background-color: #f0f0f0; /* 회색 배경 */
	color: #999; /* 글자 색 연하게 */
	cursor: not-allowed; /* 커서 변경 */
	border: 1px solid #ccc; /* 테두리 색 연하게 */
	border-radius: 5px;
}

.popup-editor-group {
	display: flex;
	gap: 10px;
}

.popup-editor-title {
	max-width: 140px;
	min-width: 140px;
	display: flex;
	align-items: flex-start;
	font-size: 14px;
	margin-left: 5px;
}

.popup-editor-title-item {
	width: calc(100% - 130px);
}

.popup-editor-title-item input {
	width: 100%;
	padding: 5px 10px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 13px;
}

.date-box label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
}

.gene-list {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 5px;
	resize: none;
	font-size: 14px;
	padding: 5px;
	overflow: auto;
	height: 112px;
}

.gene-list-text {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.date-box input[type="text"] {
	width: 180px;
	padding: 7px 10px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
}

.date-box input:focus {
	border-color: #005fcc;
	box-shadow: 0 0 0 3px rgba(0, 95, 204, 0.15);
	outline: none;
}

/* 스크린리더용 숨김 텍스트 */
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.popup-preview {
	width: 100%;
	height: 100%;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 5px;
	min-height: 317px;
}

.images_upload-box {
	border: 1px dashed #94a3b8;
	border-radius: 5px;
	padding: 5px;
	text-align: center;
	color: #64748b;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	position: relative;
}

.images_upload-box button {
	width: 100%;
	font-size: 14px;
}

.images_file-input {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	padding: 9px;
}

.pop-whether-y {
	border: 1px solid #246beb;
	padding: 5px 10px;
	border-radius: 5px;
	color: #246beb;
	background-color: #e8f0ff;
	font-size: 12px;
	display: flex;
	align-items: center;
	width: 56px;
	justify-content: center;
}

.pop-whether-n {
	border: 1px solid #dc3545;
	padding: 5px 10px;
	border-radius: 5px;
	color: #dc3545;
	background-color: #fff4f5;
	font-size: 12px;
	display: flex;
	align-items: center;
	width: 56px;
	justify-content: center;
}

/*라디오*/
.pop-radio-buttons {
	display: flex;
	gap: 10px;
}

.pop-radio-buttons input[type="radio"], .pop-radio-buttons-rad input[type="radio"]
	{
	display: none; /* 기본 라디오 숨김 */
}

/* 선택된 버튼 */
.pop-radio-buttons-rad input[type="radio"]:checked+label {
	background: #003fa3;
	color: #fff;
	border-color: #003fa3;
}

/* 선택된 버튼 */
.pop-radio-buttons input[type="radio"]:checked+label {
	color: #ffffff;
	border-radius: 5px;
	background-color: #102f69;
}

.pop-radio-buttons label.entire, .pop-radio-buttons label.no-answer,
	.pop-radio-buttons label.answer-complete {
	padding: 0px 10px;
	display: flex;
	align-items: center;
	font-size: 13px;
}

.pop-radio-buttons label {
	border: 1px solid #003fa3;
	border-radius: 5px;
	cursor: pointer;
	background: #ffffff;
	color: #003fa3;
	transition: all 0.2s ease;
}

.ban-ck {
	flex: 0.2 !important;
	justify-content: center;
}

.popup-editor-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: flex-start;
	height: 100%;
}

.disease-list.over-hidden.h-100 .no-data {
	height: 100%;
	align-items: center;
}

/* handle 영역 */
.handle {
	width: 22px;
	flex-shrink: 0;
	height: 100%;
	position: relative;
	align-items: center;
}

/* 가상요소로 ☰ 아이콘 표시 */
.handle::before {
	content: '';
	position: absolute;
	top: 0px;
	left: 0px;
	width: 22px;
	height: 22px;
	background-image: url(../images/icon/arrows-alt-v.svg);
	background-color: #ffffff;
	background-position: center center;
	background-size: 10px auto;
	background-repeat: no-repeat;
	border: solid 1px #cdcdcd;
	border-radius: 3px;
}

.disease-search-list ul li.ban-ck {
	position: relative;
	justify-content: center;
	width: 100%;
	padding: 0;
	height: 25px;
}

.h2-group {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	gap: 5px;
	align-items: self-end;
}

.id-cont-border {
	gap: 10px;
	padding: 20px;
	display: flex;
	flex-direction: column;
	width: 900px;
	margin: auto;
}

.pd-bt-20 {
	padding: 0 20px 20px !important;
}

.new-complete {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	padding: 30px;
	border: 1px solid #d0def6;
	border-radius: 5px;
	background-color: #e4eaf5;
}

/*모달*/
/* 모달 배경(dim) */
#policyModal {
	display: none; /* 처음엔 숨김 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9); /* 어두운 반투명 배경 */
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

/* 모달 패널 */
#policyModal .modal-panel {
	background: #fff;
	border-radius: 10px;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	animation: modalFadeIn 0.25s ease;
	outline: none;
	margin: 150px auto;
}

/* 헤더 */
.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid #eee;
}

.modal-header h4 {
	font-size: 18px;
	margin: 0;
}

/* 닫기 버튼 */
.btn-close {
	background: none;
	border: none;
	font-size: 22px;
	cursor: pointer;
	color: #555;
}

/* 본문 */
.modal-body {
	padding: 20px;
	max-height: 400px;
	overflow-y: auto;
}

/* 푸터 */
.modal-footer {
	padding: 14px 20px;
	border-top: 1px solid #eee;
	text-align: right;
}

.sect.sect-tos, .sect.sect-privacy {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sect.sect-tos p, .sect.sect-privacy p {
	font-size: 12px;
	line-height: 1.5;
}

.sect.sect-privacy hr {
	width: 100%;
}

.modal-footer .btn {
	background: #2563eb;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 6px;
	cursor: pointer;
}

.modal-footer .btn:hover {
	background: #1e4fcc;
}

/*툴팁*/
.info-btn {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex; /* 내부를 flex로 */
	align-items: center; /* 세로 중앙정렬 */
	justify-content: center; /* 가로 중앙정렬 */
	background: none; /* 배경 제거 */
	border: none; /* 테두리 제거 */
	cursor: pointer;
}

.fa-info, .fa-info-w {
	position: relative;
	display: inline-block;
	width: 20px; /* 아이콘 크기 */
	height: 20px;
	vertical-align: middle;
	cursor: pointer;
}

.fa-info:after {
	content: '';
	background-image: url(../images/icon/info.svg);
	content: "";
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	background-size: contain;
}

.fa-info-w:after {
	content: '';
	background-image: url(../images/icon/info-w.svg);
	content: "";
	transform: translate(-50%, -50%);
	position: absolute;
	top: 50%;
	left: 50%;
	width: 18px;
	height: 18px;
	background-size: contain;
}

/* 🔹 툴팁 기본 숨김 */
.fa-info::before, .fa-info-w::before {
	content: attr(data-tooltip); /* 각 data-tooltip 속성값 출력 */
	position: absolute;
	bottom: 100%;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(51, 51, 51, 0.9);
	color: #fff;
	padding: 6px 8px;
	border-radius: 4px;
	font-size: 12px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.2s ease;
	z-index: 10;
	max-width: 180px;
	width: max-content;
	font-style: normal;
	font-weight: 400;
	white-space: normal;
}

/* 🔹 호버 시 툴팁 표시 */
.fa-info:hover::before, .fa-info-w:hover::before {
	opacity: 1;
}

/* 🔹 아이콘 강조 효과 */
.fa-info:hover::after, .fa-info-w:hover::after {
	filter: brightness(0.85);
}

.info_btn_blue {
	padding: 3px 5px;
	border: 1px solid #007bff;
	background-color: #fff;
	color: #246beb;
	font-size: 10px;
	border-radius: 5px;
}

/*팝업*/
/* 🔹 팝업 전체 영역 */
.layer-info-popup {
	display: none; /* 기본 숨김 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 999;
}

/* 🔹 팝업 내용 영역 */
.layer-info-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 8px;
	padding: 20px 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	text-align: center;
	max-width: 400px;
}

/*메인그래프*/
.graph-group-title {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	color: #fff;
	padding: 20px 0;
}

.graph-group-title h2 {
	color: #000;
	font-size: 14px;
	padding: 10px;
	border-bottom: 1px solid #ddd;
}

/* 닫기 버튼 */
.layer-info-close {
	margin-top: 10px;
	padding: 5px 12px;
	border: none;
	background: #007bff;
	color: #fff;
	border-radius: 4px;
	cursor: pointer;
}

/*회원관리 라디오*/
.popup-editor-item-group {
	display: flex;
	gap: 15px;
	align-items: center;
}

.popup-editor-item {
	display: flex;
	gap: 5px;
	align-items: center;
}

.popup-editor-item label {
	display: flex;
	align-items: center;
	font-size: 14px;
	cursor: pointer;
}

.popup-editor-item input[type="radio"] {
	width: 16px;
	height: 16px;
	accent-color: #132058; /* 라디오버튼 포인트 색상 (파랑) */
	cursor: pointer;
	transform: scale(1.2); /* 비율로 좀 더 키움 */
}