@font-face {
    font-family: 'Pretendard';
    src: url('fonts/PretendardVariable.woff2') format('woff2-variations'), url('fonts/PretendardVariable.woff2') format('woff2');
    font-weight: 45 920;
    font-display: swap;
}



/* ///////////////////////// */
/* ------------------------- */
/* e-Color Palette - 색상 정의 */
/* ------------------------- */

:root {
	/* Primary Colors */
	--PrimaryColor: #FF6E40; /* 버튼 및 강조 색상 */
	--PrimaryColorHover: #FF4E1A; /* 버튼 및 강조 색상 */
	--TypographyInverse: #FFF; /* 텍스트 색상 */
	--GridHeaderBg: #f5f4f7; /* 테이블 헤더 배경 */
	--GridHeaderTopBg: #eae9eb; /* 테이블 헤더 1depth 배경 */
	--GridRowBg: #f8f7ff; /* 행 배경 */
	--GridBorderColor: #ddd; /* 테이블 경계 색상 */
	--LinkColor: #2196F3; /* 링크 색상 */
	--TextColor: #333; /* 일반 텍스트 색상 */
	--TableRowHover: #F5F5F5; /* 행 호버 색상 */
	--TableBorderColor: #d5d5d5; /* 테이블 선 색상 */
	--PagerBgColor: #f5f5f5; /* 페이징 배경 색상 */
	--PagerButtonColor: #2196F3; /* 페이징 버튼 색상 */
	--PagerButtonHover: #1976D2; /* 페이징 버튼 hover 색상 */

	/* Alerts Colors */
	--ErrorError: #E83C4F; /* 에러 색상 */
	--SuccessSuccess: #1BBF83; /* 성공 색상 */
	--WarningWarning: #FFBA19; /* 경고 색상 */

	/* Grayscale */
	--Gray-50: #F6F6F6; /* 그레이 색상 */
	--Gray-100: #E7E7E7; /* 그레이 색상 */
	--Gray-200: #D1D1D1; /* 그레이 색상 */
	--Gray-300: #B0B0B0; /* 그레이 색상 */
	--Gray-400: #888; /* 그레이 색상 */
	--Gray-600: #5D5D5D; /* 그레이 색상 */

	/* Blues */
	--RoyalBlue400: #5677FC; /* 로얄 블루 색상 */
	--RoyalBlue50: #EFF2FF; /* 로얄 블루 50 색상 */
	--Blue500: #2196F3; /* 파란색 */
	--Blue700: #195C8B; /* 파란색 */
	--SteelBlue700: #195C8B; /* 강철 블루 */
		
	/* Oranges */
	--OutrageousOrange500: #FE4011; /* 오렌지 색상 */
	--Amaranth50: #FEF2F2; /* 아마란스 색상 */
	--Amaranth100: #FDE6E6; /* 아마란스 색상 */
	--Amaranth200: #FBD0D2; /* 아마란스 색상 */
		
	/* Greens */
	--Green50: #EDFCF4; /* 그린 색상 */
	--Yellow50: #FEFEE8; /* 옐로우 색상 */
	--SuccessSuccess: #1BBF83; /* 성공 색상 */
		
	/* Other Colors */
	/* --Button-primary: #FF6E40; */ /* 기본 버튼 색상 */
	--Button-secondary: #5D5D5D; /* 세컨더리 버튼 색상 */
	--Button-tertiary: #2A88C0; /* 서브 버튼 색상 */
	/* --border-primary: #FF6E40; */ /* 테두리 기본 색상 */
	--border-Input: #D1D1D1; /* 입력 필드 테두리 색상 */
	--background-primary: #FFF; /* 기본 배경 색상 */
	--background-secondary: #E7E7E7; /* 세컨더리 배경 색상 */
	/* --content-primary: #FF6E40; */ /* 기본 내용 색상 */
	--content-secondary: #FFBA19; /* 세컨더리 내용 색상 */
	--Typography-Body-1: #000; /* 본문 1 색상 */
	--Typography-Body-2: #5D5D5D; /* 본문 2 색상 */
	--Typography-Header: #000; /* 헤더 텍스트 색상 */
	--Green50: #EDFCF4; /* 그린 50 색상 */

	/* Info Colors */
	--Info-Info: #5677FC; /* 정보 색상 */
	--Warning-Warning: #FFBA19; /* 경고 색상 */
	--ErrorError: #E83C4F; /* 에러 색상 */
	--SuccessSuccess: #1BBF83; /* 성공 색상 */
	--content-inverse: #FFF; /* 반전된 텍스트 색상 */

	/* Black & White */
	--BlackColor: #000; /* 블랙 */
	--WhiteColor: #FFF; /* 화이트 */
}


/* /////////////// */
/* --------------- */
/* e-Basic Setting */
/* --------------- */


body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
textarea,
p,
blockquote,
th,
td,
input,
select,
button {
  margin: 0;
  padding: 0;
  outline: none;
  word-break: normal;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


.mthtml,
body {
	margin: 0;
	padding: 0;
	font-size: 15px;
	background-color: #f2f4f6;
}

fieldset,
img {
	vertical-align: middle;
	border: 0 none;
}

dl,
ul,
ol,
menu,
li {
	list-style: none;
	padding: 0;
}

input,
textarea,
select,
ul,
li,
a,
p,
button,
div,
h1,
h2,
h3,
h4,
h5,
ol,
td,
th,
dt,
dd,
label {
	font-family: 'Pretendard', 'EEmoji', sans-serif !important;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.e-container{
	width: 100%;
}
/* ///////////////////////////// */
/* ----------------------------- */
/* e-Layout Width - 너비조정 스타일 */
/* ----------------------------- */

.e-w_at { width: auto !important; }

.e-w1 { width: 1% !important; }
.e-w2 { width: 2% !important; }
.e-w3 { width: 3% !important; }
.e-w4 { width: 4% !important; }
.e-w5 { width: 5% !important; }
.e-w6 { width: 6% !important; }
.e-w7 { width: 7% !important; }
.e-w8 { width: 8% !important; }
.e-w9 { width: 9% !important; }
.e-w10 { width: 10% !important; }

.e-w15 { width: 15% !important; }
.e-w20 { width: 20% !important; }
.e-w25 { width: 25% !important; }
.e-w30 { width: 30% !important; }
.e-w35 { width: 35% !important; }
.e-w40 { width: 40% !important; }
.e-w45 { width: 45% !important; }
.e-w50 { width: 50% !important; }
.e-w55 { width: 55% !important; }
.e-w60 { width: 60% !important; }
.e-w65 { width: 65% !important; }
.e-w70 { width: 70% !important; }
.e-w75 { width: 75% !important; }
.e-w80 { width: 80% !important; }
.e-w85 { width: 85% !important; }
.e-w90 { width: 90% !important; }
.e-w95 { width: 95% !important; }
.e-w100 { width: 100% !important; }


/* ////////////////////////////// */
/* ------------------------------ */
/* e-Layout Spacers - 간격조정 스타일 */
/* ------------------------------ */

/* Margin 스타일 */

.e-mg0 { margin: 0 !important;}
.e-mg5 { margin: 5px !important;}
.e-mg10 { margin: 10px !important;}
.e-mg15 { margin: 15px !important;}
.e-mg20 { margin: 20px !important;}

.e-mgt5 { margin-top: 5px !important; }
.e-mgt10 { margin-top: 10px !important; }
.e-mgt15 { margin-top: 15px !important; }
.e-mgt20 { margin-top: 20px !important; }
.e-mgt25 { margin-top: 25px !important; }
.e-mgt30 { margin-top: 30px !important; }
.e-mgt50 { margin-top: 50px !important; }

.e-mgb5 { margin-bottom: 5px !important; }
.e-mgb10 { margin-bottom: 10px !important; }
.e-mgb15 { margin-bottom: 15px !important; }
.e-mgb20 { margin-bottom: 20px !important; }
.e-mgb25 { margin-bottom: 25px !important; }
.e-mgb30 { margin-bottom: 30px !important; }
.e-mgb50 { margin-bottom: 50px !important; }

.e-mgl5 { margin-left: 5px !important; }
.e-mgl10 { margin-left: 10px !important; }
.e-mgl15 { margin-left: 15px !important; }
.e-mgl20 { margin-left: 20px !important; }
.e-mgl25 { margin-left: 25px !important; }
.e-mgl30 { margin-left: 30px !important; }

.e-mgr5 { margin-right: 5px !important; }
.e-mgr10 { margin-right: 10px !important; }
.e-mgr15 { margin-right: 15px !important; }
.e-mgr20 { margin-right: 20px !important; }
.e-mgr25 { margin-right: 25px !important; }
.e-mgr30 { margin-right: 30px !important; }

/* Padding 스타일 */

.e-pd0 { padding: 0 !important;}
.e-pd5 { padding: 5px !important;}
.e-pd10 { padding: 10px !important;}
.e-pd15 { padding: 15px !important;}
.e-pd20 { padding: 20px !important;}

.e-pdt5 { padding-top: 5px !important; }
.e-pdt10 { padding-top: 10px !important; }
.e-pdt15 { padding-top: 15px !important; }
.e-pdt20 { padding-top: 20px !important; }
.e-pdt25 { padding-top: 25px !important; }
.e-pdt30 { padding-top: 30px !important; }

.e-pdb5 { padding-bottom: 5px !important; }
.e-pdb10 { padding-bottom: 10px !important; }
.e-pdb15 { padding-bottom: 15px !important; }
.e-pdb20 { padding-bottom: 20px !important; }
.e-pdb25 { padding-bottom: 25px !important; }
.e-pdb30 { padding-bottom: 30px !important; }

.e-pdl5 { padding-left: 5px !important; }
.e-pdl10 { padding-left: 10px !important; }
.e-pdl15 { padding-left: 15px !important; }
.e-pdl20 { padding-left: 20px !important; }
.e-pdl25 { padding-left: 25px !important; }
.e-pdl30 { padding-left: 30px !important; }

.e-pdr5 { padding-right: 5px !important; }
.e-pdr10 { padding-right: 10px !important; }
.e-pdr15 { padding-right: 15px !important; }
.e-pdr20 { padding-right: 20px !important; }
.e-pdr25 { padding-right: 25px !important; }
.e-pdr30 { padding-right: 30px !important; }


/* /////////////////////////////// */
/* ------------------------------- */
/* e-Flex Utilities - flex조정 스타일 */
/* ------------------------------- */

.e-flex {
	display: flex !important;
}

.e-flex-1-0-0 {
	flex: 1 0 0;
	display: flex;
}

.e-flex.jc_s-b {
	align-items: center;
	justify-content: space-between;
}

.e-column {
	flex-direction: column !important;
}

.e-row {
	flex-direction: row !important;
}

.e-flexstart {
	align-items: flex-start !important;
}

.e-flex.ai_c {
	align-items: center;
}

.e-flex.fd_rr {
	flex-direction: row-reverse;
}

.e-flex_shrk {
	flex-shrink: 0 !important;
}

.e-align-center {
	display: flex;
	align-items: center;
}
.e-txt-left {
	text-align: left !important;
}
.e-txt-right {
	text-align: right !important;
}
.e-txt-center {
	text-align: center !important;
}
.e-gap5 { gap: 5px !important;}
.e-gap10 { gap: 10px !important;}
.e-gap15 { gap: 15px !important;}
.e-gap20 { gap: 20px !important;}
.e-gap25 { gap: 25px !important;}
.e-gap30 { gap: 30px !important;}


/* ////////////////////////// */
/* -------------------------- */
/* e-Button Style - 버튼 스타일 */
/* -------------------------- */
button {
  border: 0 none;
  background-color: transparent;
  cursor: pointer;
}

.e-large-btn-wrap {
	display: flex;
	gap: 5px;
	margin-top: 15px;
	justify-content: center;
}

.e-xlarge-btn {
	display: inline-flex;
	height: 50px;
	padding: 10px 25px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	border-radius: 5px;
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.20);
	overflow: hidden;
	color: var(--Typography-Header, #000);
	text-align: center;
	text-overflow: ellipsis;
	min-width: 120px;
	/* WEB/Contents - 18 Bold */
	font-family: Pretendard;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	/* 23.4px */
	letter-spacing: -0.72px;
	transition: background 0.3s ease-in-out, box-shadow 0.3s;
}

.e-large-btn {
	display: inline-flex;
	height: 40px;
	padding: 10px 25px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	border-radius: 5px;
	box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.20);
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	min-width: 120px;
	/* WEB/Contents - 16 Bold */
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
	transition: background 0.3s ease-in-out, box-shadow 0.3s;
}

.e-mid-btn {
	display: flex;
	height: 36px;
	min-width: 60px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	border-radius: 5px;
	box-shadow: 0px 2px 3px 0px rgba(77, 77, 77, 0.10);
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	/* WEB/Contents - 16 Bold */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
	transition: background 0.3s ease-in-out, box-shadow 0.3s;
}

.e-mid-btn svg {
	width: 20px;
	height: 20px;
}

.e-contents-mid-btn-wrap {
	display: flex;
	padding: 20px 0 10px;
}

.e-contents-mid-btn-wrap-left {
	display: flex;
	flex: 1 0 0;
	gap: 6px;
}
.e-contents-mid-btn-wrap-right {
	display: flex;
	gap: 6px;
    justify-content: end;
}
.e-small-btn {
	display: inline-flex;
	height: 30px;
	padding: 10px 12px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	border-radius: 5px;
	overflow: hidden;
	text-align: center;
	text-overflow: ellipsis;
	/* WEB/Contents - 14 Bold */
	font-family: Pretendard-Regular;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	transition: background 0.3s ease-in-out, box-shadow 0.3s;
}

.e-small-btn svg {
	width: 16px;
	height: 16px;
}

.e-small-btn div {
	display: flex;
	align-items: center;
}

.e-small-btn:disabled svg,
.e-mid-btn:disabled svg,
.e-large-btn:disabled svg,
.e-xlarge-btn:disabled svg {
	opacity: .25;
}

.e-btn-fill-primary {
	background-color: var(--PrimaryColor);
	color: var(--TypographyInverse);
}

.e-btn-fill-primary path {
	fill: var(--TypographyInverse);
}

.e-btn-fill-primary div {
	display: flex;
	align-items: center;
}

.e-btn-fill-primary:hover {
	background: var(--Outrageous-Orange-500, #FE4011);
	box-shadow: 0px 4px 10px 0px rgba(112, 112, 112, 0.40);
}

.e-btn-fill-secondary {
	background: var(--Button-secondary, #5D5D5D);
	color: var(--TypographyInverse);
}

.e-btn-fill-secondary:hover {
	background: var(--Gray-800, #454545);
	box-shadow: 0px 4px 10px 0px rgba(112, 112, 112, 0.40);
}

.e-btn-fill-tertiary {
	background: var(--Button-tertiary, #2A88C0);
	color: var(--TypographyInverse);
}

.e-btn-fill-tertiary:hover {
	background: var(--Steel-Blue-700, #195C8B);
	box-shadow: 0px 4px 10px 0px rgba(112, 112, 112, 0.40);
}

.e-btn-line-primary {
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	background: var(--background-primary);
}

.e-btn-line-primary:hover {
	border: 1px solid var(--PrimaryColorHover);
	background: var(--background-primary);
	box-shadow: 0px 4px 10px 0px rgba(112, 112, 112, 0.40);
}

.e-btn-line-secondary {
	color: var(--Typography-Header, #000);
	border: 1px solid var(--border-Input, #D1D1D1);
	background: var(--background-primary);
}

.e-btn-line-secondary:hover {
	border: 1px solid var(--Gray-300, #B0B0B0);
	background: var(--background-primary);
	box-shadow: 0px 4px 10px 0px rgba(112, 112, 112, 0.40);
}

.e-btn-fill-primary:disabled {
	color: var(--Gray-200, #D1D1D1) !important;
	background: var(--Gray-100, #E7E7E7) !important;
	border: none !important;
}

.e-btn-fill-primary:disabled svg {
	opacity: .7;
}

.e-btn-fill-secondary:disabled {
	color: var(--Gray-200, #D1D1D1) !important;
	background: var(--Gray-100, #E7E7E7) !important;
	border: none !important;
}

.e-btn-fill-tertiary:disabled {
	color: var(--Gray-200, #D1D1D1) !important;
	background: var(--Gray-100, #E7E7E7) !important;
	border: none !important;
}

.e-btn-line-secondary:disabled {
	border: 1px solid var(--border-Input, #D1D1D1) !important;
	background: var(--Gray-50, #F6F6F6) !important;
	color: var(--Gray-200, #D1D1D1) !important;
}

.e-btn-line-primary:disabled {
	border: 1px solid var(--border-Input, #D1D1D1) !important;
	background: var(--Gray-50, #F6F6F6) !important;
	color: var(--Gray-200, #D1D1D1) !important;
}

.e-m-large-btn {
	display: flex;
	height: 54px;
	padding: 10px 25px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	align-self: stretch;
	border-radius: 5px;
	overflow: hidden;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 150%; /* 24px */
	letter-spacing: -0.32px;
	flex: 1 0 0;
}
.e-m-btn-fill-primary{
	background: var(--PrimaryColor);
	color: var(--TypographyInverse);
}
.e-m-btn-fill-tertiary{
	background: var(--Amaranth-100, #FDE6E6);
	color: var(--PrimaryColor);
}
.e-m-btn-line-secondary{
	border: 1px solid var(--border-Input, #D1D1D1);
	background: var(--background-primary, #FFF);
	color: var(--Typography-Header, #000);
}
.e-m-mid-btn {
	display: flex;
	height: 48px;
	padding: 10px 25px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	flex: 1 0 0;
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	line-height: 150%; /* 24px */
	letter-spacing: -0.32px;
	border-radius: 5px;
}
/* 버튼 */


/* 알럿 */

.e-alert {
	display: inline-flex;
	max-width: 600px;
	padding: 0px 25px;
	align-items: flex-start;
	gap: 10px;
	z-index: 10045;
	transform: translate(-50%, -50%);
	position: fixed;
}

.e-info svg,
.e-warning svg,
.e-success svg,
.e-error svg {
	display: flex;
	padding: 17px 0px;
	align-items: center;
	gap: 10px;
}

.e-alert-contents {
	display: flex;
	padding: 15px 0px !important;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.e-alert-header {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.e-alert-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	max-width: 400px;
	word-break:keep-all;
	overflow-wrap: anywhere;
}

.e-alert-bottom {
	display: flex;
	min-width: 200px;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 10px;
	align-self: stretch;
}

/* info */
.e-info {
	border-radius: 10px;
	border: 1px solid var(--Info-Info, #5677FC);
	background: var(--Royal-Blue-50, #EFF2FF);
	box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.10);
	fill: var(--Info-Info, #5677FC);
}

.e-info .e-alert-header {
	color: var(--Info-Info, #5677FC);
	/* WEB/Contents - 16 Bold */
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-info .e-alert-body {
	color: var(--Info-Info, #5677FC);
	/* WEB/Contents - 16 Regular */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;	
	/* 24px */
	letter-spacing: -0.32px;
}

.e-info .e-alert-bottom button {
	background: var(--Info-Info, #5677FC);
	color: var(--Typography-inverse, #FFF);
}

/* warning */
.e-warning {
	border-radius: 10px;
	border: 1px solid var(--Warning-Warning, #FFBA19);
	background: var(--Yellow-50, #FEFEE8);
	box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.10);
	fill: var(--Warning-Warning, #FFBA19);
}

.e-warning .e-alert-header {
	color: var(--Warning-Warning, #FFBA19);
	/* WEB/Contents - 16 Bold */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-warning .e-alert-body {
	color: var(--Warning-Warning, #FFBA19);
	/* WEB/Contents - 16 Regular */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-warning .e-alert-bottom button {
	background: var(--Warning-Warning, #FFBA19);
	color: var(--Typography-inverse, #FFF);
}

/* error */
.e-error {
	border-radius: 10px;
	border: 1px solid var(--Error-Error, #E83C4F);
	background: var(--Amaranth-50, #FEF2F2);
	box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.10);
	fill: var(--Error-Error, #E83C4F);
}

.e-error .e-alert-header {
	color: var(--Error-Error, #E83C4F);
	/* WEB/Contents - 16 Bold */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-error .e-alert-body {
	color: var(--Error-Error, #E83C4F);
	/* WEB/Contents - 16 Regular */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-error .e-alert-bottom button {
	background: var(--Error-Error, #E83C4F);
	color: var(--Typography-inverse, #FFF);
}

/* success */
.e-success {
	border-radius: 10px;
	border: 1px solid var(--Success-Success, #1BBF83);
	background: var(--Green-50, #EDFCF4);
	box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.10);
	fill: var(--Success-Success, #1BBF83);
}

.e-success .e-alert-header {
	color: var(--Success-Success, #1BBF83);
	/* WEB/Contents - 16 Bold */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-success .e-alert-body {
	color: var(--Success-Success, #1BBF83);
	/* WEB/Contents - 16 Regular */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-success .e-alert-bottom button {
	background: var(--Success-Success, #1BBF83);
	color: var(--Typography-inverse, #FFF);
}

/* 알럿 */

/* 팝업 */
.e-popup {
	min-width: 450px;
	flex-direction: column;
	justify-content: normal;
	align-items: center;
	border-radius: 10px;
	background: var(--background-primary, #FFF);
	box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.10);
	z-index: 10010;
	display: flex;
	transform: translate(-50%, -50%);
	position: fixed;
	min-height: 120px;
}

.e-popup-header {
	display: flex;
	height: 48px;
	padding: 10px 15px;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	border-bottom: 1px solid var(--border-Input, #D1D1D1);
	justify-content: space-between
}

.e-popup-header-title {
	color: var(--Typography-Body-1, #000);
	text-align: center;
	/* WEB/Contents - 18 Bold */
	font-family: Pretendard-Regular;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 130%;
	/* 23.4px */
	letter-spacing: -0.72px;
}

.e-popup-header svg {
	cursor: pointer;
}

.e-popup-header-icon {
	width: 24px;
	height: 24px;
}

.e-popup-body {
	display: flex;
	padding: 25px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	color: var(--Typography-Body-1, #000);
	height: 100%;

	/* WEB/Contents - 14 Regular */
	font-family: Pretendard-Regular;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-popup-bottom {
	display: flex;
	height: 66px;
	align-items: flex-end;
	gap: 10px;
	align-self: stretch;
}

.e-popup-bottom-left {
	display: flex;
	height: 36px;
	align-items: flex-end;
	gap: 10px;
	flex: 1 0 0;
}

.e-popup-bottom-right {
	display: flex;
	height: 36px;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 10px;
	flex: 1 0 0;
}

/* 팝업 */

/* 컨펌 */
.e-confirm {
	max-width: 600px;
	padding: 0px 25px;
	align-items: flex-start;
	border-radius: 10px;
	background: var(--background-primary);
	box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.10);
	display: inline-flex;
	z-index: 10045;
	transform: translate(-50%, -50%);
	position: fixed;
}

.e-confirm_wrap {
	display: flex;
	padding: 15px 0px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.e-confirm-header {
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
}

.e-confirm-header svg {
	cursor: pointer;
}

.e-confirm-title {
	flex: 1 0 0;
	color: var(--Typography-Body-1, #000);

	/* WEB/Contents - 16 Bold */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
	text-align: left;
}

.e-confirm-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	max-width: 550px;
	color: var(--Typography-Body-1, #000);

	/* WEB/Contents - 16 Regular */
	font-family: Pretendard-Regular;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-confirm-bottom {
	display: flex;
	min-width: 200px;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 10px;
	align-self: stretch;
}

/* 컨펌 */

/* 텍스트필드 */
/* Input */
input,
textarea {
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  display: block;
  height: 36px;
  padding: 8px 12px;
  width: 100%;
  color: #333333;
  font-size: 14px;
  letter-spacing: 0em;
  background-color: #fff;
  box-sizing: border-box;
}
input:focus {
  border: 1px solid var(--PrimaryColor);
  color: var(--PrimaryColor);
  background-color: #fff3ee;
  transition: all 0.2s linear;
}
input:disabled {
  color: #b5b5b5;
  background-color: #f8f9fb;
}
textarea:disabled {
  color: #888888;
  background-color: #f8f9fb;
}
input[type="text"]::-ms-clear {
  width: 0;
  height: 0;
  display: none;
}



.e-input {
	display: flex;
	height: 36px;
	padding: 0px 12px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 5px;
}

.e-input-focus {
	border: 1px solid var(--Gray-300, #B0B0B0) !important;
	background: var(--background-primary);
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);
}

.e-input-hover {
	background: var(--Amaranth100, #FDE6E6) !important;
	box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.10);

}

.e-input-hover .e-dropdown-input-text {
	color: var(--PrimaryColor) !important;
}

.e-input-hover .e-input-ic_r path {
	fill: var(--PrimaryColor) !important;
}

.e-input-txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex: 1 0 0;
	align-self: stretch;
	color: var(--Typography-Body-1, #000);
	/* WEB/Contents - 14 Regular */
	font-family: Pretendard-Regular;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-input-ic_r {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.e-input-ic_r svg {
	width: 100%;
	height: 100%;
	display: block;
}

.e-input-sub-text {
	font-family: Pretendard-Regular;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.28px;
	display: block;
	margin-top: 5px;
}

.e-input-sub-text.error {
	color: var(--Error-Error, #E83C4F);
}

.e-input-sub-text.success {
	color: var(--Success-Success, #1BBF83);
}

/* Dropdown */
.e-dropdown {
	position: relative;
}

.e-dropdown-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.e-dropdown-input {
	display: flex;
	height: 36px;
	padding: 0px 12px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 5px;
	border: 1px solid var(--border-Input, #D1D1D1);
	background: var(--background-primary);
	cursor: pointer;
}

.e-dropdown-input.e-dropdwon-input-disabled {
	background: var(--Gray-100, #E7E7E7);
}

.e-dropdown-input.e-dropdwon-input-disabled .e-dropdown-input-text::placeholder {
	color: var(--Gray-200, #D1D1D1);
}

.e-dropdown-input.e-dropdwon-input-disabled path {
	fill: var(--Gray-200, #D1D1D1);
}

.e-dropdown-input-text {
	flex-direction: column;
	justify-content: center;
	flex: 1 0 0;
	padding-left: 0;
	border: none;
	color: var(--Typography-Body-1, #000);
	background: none;
}

.e-dropdown-input-text.e-dropdown-input-read {
	cursor: pointer !important;
}

.e-dropdown-input-text:focus {
	border: none;
	background: none;
	color: var(--Typography-Body-1, #000);
}

.e-dropdown-input-text:disabled {
	background-color: #fff0 !important;
	color: var(--Gray-200, #D1D1D1);
	/* 드롭다운 내에 인풋 border 이중으로 생겨 아래항목 주석처리 */
	/* border-top: 1px solid var(--border-Input, #D1D1D1);
	border-bottom: 1px solid var(--border-Input, #D1D1D1); */
}

/* TextField */
.e-textfield {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.e-textfield-label {
	flex-shrink: 0;
	padding-top: 9px;
	color: var(--Typography-Body-1, #000);
	font-family: Pretendard-Regular;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.28px;
}

.e-textfield-body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 0 0;
	min-width: 0;
}

.e-textfield-input {
	display: flex;
	width: 100%;
	height: 38px;
	padding: 0px 12px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 5px;
	border: 1px solid var(--border-Input, #D1D1D1);
	background: var(--background-primary);
}

.e-textfield-input.e-textfield-input-disabled {
	background: var(--Gray-100, #E7E7E7);
}

.e-textfield-input.e-textfield-input-disabled .e-textfield-input-text::placeholder {
	color: var(--Gray-200, #D1D1D1);
}

.e-textfield-input.e-textfield-input-error {
	border: 1px solid var(--Error-Error, #E83C4F);
}

.e-textfield-input.e-textfield-input-success {
	border: 1px solid var(--Success-Success, #1BBF83);
}

.e-textfield-input-text {
	flex: 1 0 0;
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	box-sizing: border-box;
	color: var(--Typography-Body-1, #000);
	background: none;
	font-family: Pretendard-Regular;
	font-size: 14px;
	letter-spacing: -0.28px;
}

.e-textfield-input-text:focus {
	border: none;
	background: none;
	color: var(--Typography-Body-1, #000);
}

.e-textfield-input-text:disabled {
	background-color: #fff0 !important;
	color: var(--Gray-200, #D1D1D1);
}

.e-input-ic_l {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.e-input-ic_l svg {
	width: 100%;
	height: 100%;
	display: block;
}

.e-textfield-input .e-select-cancel {
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	cursor: pointer;
}

.e-input-ic_clear {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
}

.e-input-ic_clear path {
	fill: var(--Gray-300, #B0B0B0);
}

.e-input-ic_clear svg {
	width: 100%;
	height: 100%;
	display: block;
}

.e-top-text {
	display: flex;
	padding-bottom: 8px;
	align-items: flex-start;
	gap: 10px;
	overflow: hidden;
	color: var(--Typography-Body-1, #000);
	text-overflow: ellipsis;

	/* WEB/Contents - 14 Regular */
	font-family: Pretendard-Regular;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-select-cancel {
	display: none;
	height: 100%;
	align-items: center;
}

.e-select-cancel.focus {
	display: flex;
}

.e-dropdown-menu {
	z-index: 11000;
	visibility: visible;
	position: absolute;
	display: flex;
}

.e-dropdown-menu-off {
	visibility: hidden;
}

.e-dropdown-menu-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	border-radius: 0px 0px 5px 5px;
	background: var(--background-primary);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	overflow-y: auto;
	max-height: 250px;
	width: 100%;
	border-radius: 5px !important;
}

.e-dropdown-menu-item {
	display: flex;
	padding: 10px 15px !important;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	cursor: pointer;
	/* WEB/Contents - 14 Regular */
	font-family: Pretendard-Regular;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150% !important;
	/* 21px */
	color: var(--Typography-Body-1, #000);
	letter-spacing: -0.28px;
}

.e-dropdown-menu-noitem {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 40px 0 !important;
	color: var(--Typography-Body-2, #5D5D5D);
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-dropdown-menu-item:hover {
	background-color: #f5f7fb;
}

.e-dropdown-menu-item-disabled {
  color: #bbb;
  /* cursor: not-allowed; */
	cursor: default;
  background-color: #f9f9f9;
}

.e-dropdown-menu-item-disabled:hover {
  background-color: #f9f9f9;
}

.e-dropdown-menu-focus {
	display: flex;
	padding: 10px 15px !important;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	cursor: pointer;
	background: #FDE6E6 !important;
	color: var(--PrimaryColor) !important;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150% !important;
	/* 21px */
	letter-spacing: -0.28px;
}

/* 드롭다운 멀티셀렉 Dropdown MultiSelect */
.e-dropdown-multi {
	position: relative;
}

.e-dropdown-multi-label {
	display: flex;
	padding: 3px 8px 3px 10px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	border-radius: 180px;
	background: var(--PrimaryColor);
	transition: background 0.3s ease-in-out, box-shadow 0.3s;
}
.e-dropdown-multi-label:hover {
	background-color: var(--PrimaryColorHover);
	box-shadow: 0 4px 10px #70707066;
}
.e-dropdown-multi-label-txt {
	color: var(--TypographyInverse);

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	white-space: nowrap;
}

.e-dropdown-multi-label-ic {
	display: flex;
}

.e-dropdown-multi-label-ic path {
	fill: var(--content-inverse);
}

.e-dropdown-multi-menu-item {
	display: flex;
	padding: 10px 15px !important;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	cursor: pointer;
	/* WEB/Contents - 14 Regular */
	font-family: Pretendard-Regular;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150% !important;
	/* 21px */
	color: var(--Typography-Body-1, #000);
	letter-spacing: -0.28px;
}

.e-dropdown-multi-menu-item:hover {
	background-color: #f5f7fb;
}

.e-dropdown-multi-menu-item .e-checkbox-label {
	margin-bottom: 0;
	display: flex;
}

.e-dropdown-multi-label-wrap {
	overflow-x: auto;
	overflow: hidden;
}
.e-dropdown-multi-label-wrap .e-search-ic svg{
	width: 18px;
}
.e-dropdown-multi-label-wrap::-webkit-scrollbar {
	display: none;
}
.e-dropdown-multi-menu-search {
	display: flex;
	gap: 5px;
	padding: 10px 10px;
	overflow-x: auto;
	width: 100%;
	cursor: pointer;
}
.e-dropdown-multi-menu-search::-webkit-scrollbar {
	display: none;
}
.e-dropdown-multi-input-txt {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
/* 드롭다운 멀티셀렉 Dropdown MultiSelect */


/* 텍스트필드 */

/* 체크박스 */
input.e-checkbox {
	display: none;
}

input.e-checkbox+label {
	cursor: pointer;
	margin-bottom: 0;
	position: relative;
}

input.e-checkbox+label>span {
	vertical-align: middle;
	padding-left: 5px;
}

input.e-checkbox+label>svg {
	position: absolute;
	left: 0;
	/* background: var(--WhiteColor); */

}

input.e-checkbox+label>.e-checkbox-checked {
	display: none;
	color: var(--PrimaryColor);
}

input.e-checkbox+label>.e-checkbox-disabled {
	display: none;
}

input.e-checkbox+label>.e-checkbox-checked-disabled {
	display: none;
	color: var(--PrimaryColor);
}

input.e-checkbox:disabled:checked + label > .e-checkbox-checked-disabled {
    opacity: 0.5;
}
input.e-checkbox+label>.e-checkbox-checked-multi {
	display: none;
}

input.e-checkbox:checked+label>.e-checkbox-checked {
	display: inline-block;
}

input.e-checkbox:checked+label>.e-checkbox-default {
	display: none;
}

input.e-checkbox:disabled+label>.e-checkbox-disabled {
	display: inline-block;
	color: var(--Gray-50);
}

input.e-checkbox:disabled+label>.e-checkbox-default {
	display: none;
}

input.e-checkbox:disabled:checked+label>.e-checkbox-checked-disabled {
	display: inline-block;
}

input.e-checkbox:disabled:checked+label>.e-checkbox-default {
	display: none;
}

input.e-checkbox.e-checkbox-multi+label>.e-checkbox-checked-multi {
	display: inline-block;
	color: var(--PrimaryColor);
}

input.e-checkbox.e-checkbox-multi+label>.e-checkbox-default {
	display: none;
}

input.e-checkbox:disabled+label>.e-checkbox-checked-multi-disabled {
	display: inline-block;
}

input.e-checkbox+label>.e-checkbox-checked-multi-disabled {
	display: none;
}

/* label:before에 체크하기 전 상태 CSS */
input.e-checkbox+label:before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 5px;
	vertical-align: middle;
	box-sizing: border-box;
}

/* label:before에 체크 된 상태 CSS */
input.e-checkbox:checked+label:before {
	content: "";
	border: 0;
}

/* 체크박스 */

/* 라디오  */


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

input[type="radio"].e-radio+label {
	display: inline-block;
	position: relative;
	padding-left: 28px;
	cursor: pointer;
}

input[type=radio].e-radio+label.e-label {
	display: flex;
	position: relative;
	cursor: pointer;
}

input[type="radio"].e-radio+label:before {
	content: "";
	position: absolute;
	left: 0;
	top: -1px;
	text-align: center;
	background: var(--background-primary);
	border: 1.5px solid #D1D1D1;
	border-radius: 100%;
}

input[type=radio].e-radio:checked+label.e-label {
	color: var(--PrimaryColor);
	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-radio:checked+.e-radio-label:before {
	background-color: var(--background-primary);
	border: 2px solid var(--PrimaryColor);
	box-sizing: border-box;
}

input[type=radio].e-radio:checked+label:after {
	content: "";
	position: absolute;
	background: var(--PrimaryColor);
	border-radius: 100%;
	
}

input[type=radio].e-radio:checked+label:before {
	background: var(--background-primary);
}

.e-radio-label:before {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	box-sizing: border-box;
}

.e-radio-label:after {
	width: 12px;
	height: 12px;
	top: 10px;
	left: 11px;
	transform: translate(-50%, -50%);
	position: absolute;
}

.e-radio:checked+.e-radio-label:after {
	background: var(--PrimaryColor);
}

.e-radio-label {
	align-items: flex-start;
	margin: 0;
}

input[type=radio].e-radio:disabled {
	color: #E7E7E7;
}

.e-radio:disabled+.e-radio-label {
	outline: none;
	cursor: default;
	opacity: 1;
	filter: grayscale(.1);
	pointer-events: none;
	box-shadow: none;
	color: var(--Gray-200, #D1D1D1);
}

.e-radio:disabled+.e-radio-label:before {
	background: #F6F6F6;
	border: 1.5px solid #E7E7E7;
}

.e-radio:checked:disabled+.e-radio-label:after {
	background: var(--Gray-100);
}

/* 라디오  */

/* 툴팁 */
.e-tooltip {
	position: relative;
	display: flex;
}

.e-tooltip svg {
	fill: #5677FC
}

.e-tooltip .e-tooltip-ic:hover+.e-tooltip-box {
	display: flex !important;
	z-index: 99;
}

.e-tooltip-ic {
	cursor: pointer;
}

.e-tooltip .e-tooltip-box svg {
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
}

.e-tooltip-text {
	display: flex;
	padding: 10px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 10px;
	background: var(--background-primary);
	color: var(--Typography-Body-1, #000);
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
	min-width: 80px;

	/* WEB/Contents - 14 Regular */
	font-family: Pretendard-Regular;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-tooltip.right {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.e-tooltip.right .e-tooltip-box {
	display: none;
	align-items: center;
	position: absolute;
	left: 35px;
}

.e-tooltip.right .e-tooltip-box svg {
	box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
	position: absolute;
	margin-left: -4px;
}

.e-tooltip.bottom {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.e-tooltip.bottom .e-tooltip-box {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 30px;
}

.e-tooltip.bottom .e-tooltip-text {
	margin-top: -1px;
}

.e-tooltip.left {
	display: inline-flex;
	align-items: center;

}

.e-tooltip.left .e-tooltip-box {
	display: none;
	align-items: center;
	position: absolute;
	right: 35px;
}

.e-tooltip.left .e-tooltip-box svg {
	position: absolute;
	right: -4px;
	transform: rotate(180deg);
}

.e-tooltip.top {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.e-tooltip.top .e-tooltip-box {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -50px;
}

.e-tooltip.top .e-tooltip-box svg {
	position: absolute;
	transform: rotate(-90deg);
	bottom: -5px;
}

.e-tooltip-black-box .e-tooltip-text {
	background: var(--background-inverse, #000);
	color: var(--Typography-inverse, #FFF);
}

.e-tooltip-black-box path {
	fill: var(--background-inverse, #000);
}

/* 툴팁 */



/* 검색 영역 Search Area */
.e-title_wrap {
	display: flex;
	padding: 12px 0px;
	align-items: center;
	align-self: stretch;
}

.e-title_wrap h1 {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
	color: var(--Typography-Header, #000);
	/* WEB/h1 - 25 bold */
	font-size: 25px;
	font-weight: 700;
	line-height: 120%;
	/* 30px */
	letter-spacing: -1px;
}

.e-search-area {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	border-radius: 10px;
	background: var(--background-primary);
	box-shadow: 0px 0px 2px 0px rgba(32, 50, 77, 0.10);
}

.e-search-area-header {
	display: flex;
	/* height: 70px; */
	padding: 8px 30px;
	align-items: center;
	gap: 5px;
	align-self: stretch;
	border-radius: 10px 10px 0px 0px;
	border: 1px solid var(--border-Input, #D1D1D1);
	background: var(--Gray-50, #F6F6F6);
}

.e-search-area-header h1 {
	display: flex;
	align-items: center;
	gap: 30px;
	flex: 1 0 0;
	color: var(--Typography-Body-1, #000);
	/* WEB/h2 - 22 Bold */
	font-size: 22px;
	font-weight: 700;
	line-height: 120%;
	/* 26.4px */
	letter-spacing: -0.88px;
}

.e-search-area-body {
	display: flex;
	padding: 20px 30px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	border-radius: 0px 0px 10px 10px;
	border-right: 1px solid var(--border-Input, #D1D1D1);
	border-bottom: 1px solid var(--border-Input, #D1D1D1);
	border-left: 1px solid var(--border-Input, #D1D1D1);
	width: 100%;
}

.e-search-area-row {
	display: flex;
	align-items: center;
	gap: 30px;
	align-self: stretch;
}

.e-search-area-foam {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 5px;
	flex: 1 0 0;
}

.e-search-area-foam-header {
	display: flex;
	align-items: center;
	gap: 5px;
	align-self: stretch;
}

.e-search-area-foam-body {
	display: flex;
	align-items: flex-start;
	gap: 5px;
	align-self: stretch;
}

.e-search-area-foam-body li {
	display: flex;
	flex-direction: column;
	flex: 1 0 0;
}

/* 검색 영역 Search Area */

/* e-contents-wrap 컨탠츠 랩 */
.e-contents-wrap {
	display: flex;
	padding: 10px 0px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	border-radius: 5px;
	border: 1px solid var(--border-Input, #D1D1D1);
	background: var(--background-primary);
	box-shadow: 0px 0px 2px 0px rgba(32, 50, 77, 0.10);
}

.e-contents-header {
	display: flex;
	padding: 12px 30px 13px 30px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-bottom: 1px solid var(--border-Input, #D1D1D1);
}

.e-contents-header h2 {
	flex: 1 0 0;
	color: var(--Typography-Header, #000);

	/* WEB/h2 - 22 Bold */
	font-size: 22px;
	font-weight: 700;
	line-height: 120%;
	/* 26.4px */
	letter-spacing: -0.88px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.e-contents-body {
	display: flex;
	padding: 20px 30px;
	align-items: flex-start;
	gap: 25px;
	align-self: stretch;
}

.e-filter-list {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex: 1 0 0;
	flex-direction: column;
}

.e-filter-wrap {
	display: flex;
	flex: 1 0 0;
	align-items: flex-start;
	gap: 50px;
}

.e-filter {
	display: flex;
	align-items: center;
	gap: 5px;
	flex: 1 0 0;
	align-self: stretch;
	max-width: 50%;
	border-right: 1px solid var(--border-Input);
	min-height: 36px;
}

.e-filter:nth-last-child(1) {
	border: 0;
}

.e-filter-title {
	width: 170px;
	color: var(--Typography-Body-1, #000);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-filter-contents {
	display: flex;
	align-items: center;
	gap: 5px;
	align-self: stretch;
	flex: 1 0 0;
	word-break: break-all;
}

/* e-contents-wrap 컨탠츠 랩 */


/* 검색결과 없습니다 (no data) */
.e-contents-nodata {
	width: 100%;
	display: flex;
	height: 100%;
	align-items: center;
	justify-content: center;
	padding: 50px 0;
}

.e-contents-nodata-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: var(--Gray-400, #888);
	text-align: center;

	/* WEB/Contents - 18 Regular */
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	/* 23.4px */
	letter-spacing: -0.72px;
}

/* 검색결과 없습니다 (no data) */


/* Label 라벨 */
.e-label {
	display: inline-flex;
	min-width: 65px;
	padding: 3px 10px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 180px;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	text-align: center;
}

.e-label.minw0 {
	min-width: 0;
}

.e-label-fill-red {
	color: var(--Typography-inverse, #FFF);
	background: var(--Error-Error, #E83C4F);
}

.e-label-fill-orange {
	color: var(--Typography-inverse, #FFF);
	background: #fe5f40;
}

.e-label-fill-wgray {
	color: var(--Typography-inverse, #FFF);
	background: var(--Gray-200, #D1D1D1);
}

.e-label-fill-blue {
	color: var(--Typography-inverse, #FFF);
	background: var(--Royal-Blue-400, #5677FC);
}

.e-label-fill-green {
	color: var(--Typography-inverse, #FFF);
	background: var(--Success-Success, #1BBF83);
}

.e-label-fill-dgray {
	color: var(--Typography-inverse, #FFF);
	background: var(--Gray-600, #5D5D5D);
}

.e-label-fill-yellow {
	color: var(--Typography-inverse, #FFF);
	background: var(--content-secondary, #FFBA19);
}

.e-label-line-red {
	color: var(--Error-Error, #E83C4F);
	border: 1px solid var(--content-primary, #E83C4F);
	background: var(--background-primary);
}

.e-label-line-orange {
	color: var(--PrimaryColor);
	border: 1px solid var(--PrimaryColor);
	background: var(--background-primary);
}

.e-label-line-wgray {
	color: var(--Gray-200, #D1D1D1);
	border: 1px solid var(--Gray-200, #D1D1D1);
	background: var(--background-primary);
}

.e-label-line-blue {
	color: var(--Royal-Blue-400, #5677FC);
	border: 1px solid var(--Royal-Blue-400, #5677FC);
	background: var(--background-primary);
}

.e-label-line-green {
	color: var(--Success-Success, #1BBF83);
	border: 1px solid var(--Success-Success, #1BBF83);
	background: var(--background-primary);
}

.e-label-line-dgray {
	color: var(--Gray-600, #5D5D5D);
	border: 1px solid var(--Gray-600, #5D5D5D);
	background: var(--background-primary);
}

.e-label-line-yellow {
	color: var(--content-secondary, #FFBA19);
	border: 1px solid var(--content-secondary, #FFBA19);
	background: var(--background-primary);
}

/* Label 라벨 */


/* Tag 태그 */
.e-tag {
	display: inline-flex;
	max-width: 80px;
	padding: 2px 5px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	text-align: center;
	color: var(--Typography-Body-2);
	background: var(--Gray-100);
}

.e-tag-fill-red {
	color: var(--Typography-inverse, #FFF);
	background: var(--Error-Error, #E83C4F);
}

.e-tag-fill-orange {
	color: var(--Typography-inverse, #FFF);
	background: var(--PrimaryColor);
}

.e-tag-fill-wgray {
	color: var(--Typography-inverse, #FFF);
	background: var(--Gray-200, #D1D1D1);
}

.e-tag-fill-blue {
	color: var(--Typography-inverse, #FFF);
	background: var(--Royal-Blue-400, #5677FC);
}

.e-tag-fill-green {
	color: var(--Typography-inverse, #FFF);
	background: var(--Success-Success, #1BBF83);
}

.e-tag-fill-dgray {
	color: var(--Typography-inverse, #FFF);
	background: var(--Gray-600, #5D5D5D);
}

.e-tag-fill-yellow {
	color: var(--Typography-inverse, #FFF);
	background: var(--content-secondary, #FFBA19);
}

/* Tag 태그 */


/* Attachment File 첨부파일 */
.e-attachment-file {
	display: flex;
	width: auto;
	min-width: 200px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.e-attachment-file-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
}

.e-attachment-file-wrap div {
	display: flex;
}

.e-attachment-file-wrap path {
	fill: var(--RoyalBlue400);
}

.e-attachment-file-btn {
	display: flex;
	height: 36px;
	padding: 6px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 5px;
	border: 1px dashed var(--Royal-Blue-400, #5677FC);
	background: var(--Royal-Blue-50, #EFF2FF);
	color: var(--Royal-Blue-400, #5677FC);

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-attachment-file-btn:hover {
	background: var(--Royal-Blue-400, #5677FC);
	color: var(--Typography-inverse, #FFF);
}

.e-attachment-file-btn-hover {
	background: var(--Royal-Blue-400, #5677FC);
	color: var(--Typography-inverse, #FFF);
}

.e-attachment-file-btn:hover path {
	fill: var(--Typography-inverse, #FFF);
}

.e-attachment-file-btn-hover path {
	fill: var(--Typography-inverse, #FFF);
}

.e-attachfile-down-ic {
	display: flex;
}

.e-attachfile-down-ic path {
	fill: #5677FC;
}

.e-attachment-sub-txt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	color: var(--Typography-Body-2, #5D5D5D);
	text-overflow: ellipsis;

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	display: flex;
	padding: 5px 0px 0px 5px;
	align-items: flex-start;
	gap: 10px;
}

.e-attachment-file-area {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	overflow-x: auto;
}

.e-attachment-file-area.e-attachment-file-vertical {
	gap: 0;
	flex-direction: column;
}

.e-attachment-file-area::-webkit-scrollbar {
	width: 2px;
	height: 2px;
	background: var(--Gray-100, #E7E7E7);
}

.e-attachment-file-area::-webkit-scrollbar-thumb {
	width: 2px;
	height: 2px;
	background: var(--Gray-600, #5D5D5D);
}

.e-attachment-file-foam {
	display: flex;
	padding: 8px 0px 8px 15px;
	align-items: center;
	gap: 15px;
	align-self: stretch;
	border-radius: 10px;
	border: 1px solid var(--border-Input, #D1D1D1);
	background: var(--background-primary);
	flex: 1 0 0;
	cursor: pointer;
	margin-bottom: 10px;
	min-width: 200px;
	max-width: 230px;
}

.e-attachment-file-foam:hover {
	box-shadow: 0px 4px 5px 0px rgba(112, 112, 112, 0.40);
}

.e-attachment-file-foam-extend-ic {
	display: flex;
	padding: 5px;
	align-items: center;
	gap: 10px;
	border-radius: 5px;
}

.e-attachment-file-foam-extend-ic path {
	fill: var(--content-inverse, #FFF)
}

.e-attachment-file-foam-extend-ic.e-pdf {
	background: #FA0F00;
}

.e-attachment-file-foam-extend-ic.e-pdf path {
	fill: var(--content-inverse, #FFF);
}

.e-attachment-file-foam-extend-ic.e-excel {
	background: #0F7C43;
}

.e-attachment-file-foam-extend-ic.e-excel path {
	fill: var(--content-inverse, #FFF);
}

.e-attachment-file-foam-extend-ic.e-word {
	background: #185ABD;
}

.e-attachment-file-foam-extend-ic.e-word path {
	fill: var(--content-inverse);
}

.e-attachment-file-foam-extend-ic.e-word path {
	fill: var(--content-inverse, #FFF);
}

.e-attachment-file-foam-extend-ic.e-ppt {
	background: #C83F27;
}

.e-attachment-file-foam-extend-ic.e-ppt path {
	fill: var(--content-inverse, #FFF);
}

.e-attachment-file-foam-extend-ic.e-png {
	background: #02C684;
}

.e-attachment-file-foam-extend-ic.e-jpg {
	background: #FB8D00;
}

.e-attachment-file-foam-extend-ic.e-jpg path {
	fill: var(--content-inverse, #FFF);
}

.e-attachment-file-foam-extend-ic.e-zip {
	background: #037AD7;
}

.e-attachment-file-foam-extend-ic.e-zip path {
	fill: var(--content-inverse, #FFF);
}

.e-attachment-file-foam-extend-ic.e-hwp {
	background: #3AAAFF;
}

.e-attachment-file-foam-extend-ic.e-hwp path {
	fill: var(--content-inverse, #FFF);
}

.e-attachment-file-foam-extend-ic.e-etc {
	background: var(--Gray-200, #D1D1D1);
}

.e-attachment-file-foam-extend-ic.e-etc path {
	stroke: var(--content-inverse, #FFF);
}

.e-attachment-file-foam-txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	flex: 1 0 0;
	overflow: hidden;
}

.e-attachment-file-foam-title-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	padding-right: 6px;
	gap: 5px;
}

.e-attachment-file-foam-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	flex: 1 0 0;
	overflow: hidden;
	color: var(--Typography-Body-1, #000);
	text-overflow: ellipsis;
	/* WEB/Contents - 16 Medium */
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
	/* 디폴트 */
}

.e-attachment-file-foam-volume {
	overflow: hidden;
	color: var(--Gray-400, #888);
	text-overflow: ellipsis;
	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	align-self: stretch;
}

.e-attachment-file-foam-close_ic {
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.e-attachment-img-area {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
}

/* 드래그 중 커서 변경 */
.e-attachment-img-area.e-dragging {
	cursor: grabbing;
}

/* 드래그 중 팝업 예고 UI 숨김 */
.e-attachment-img-area.e-dragging .e-attachment-img-foam-hover {
	display: none;
}

/* layout=horizontal 시 드래그 스크롤 활성화 */
.e-attachment-img-h {
	overflow-x: auto;
	cursor: grab;
}

/* 팝업 이미지 너비 고정 (전역 img { width: 100% } 오버라이드 방지) */
.e-img-pop img {
	width: auto;
	max-width: 90vw;
}

/* fade 트랜지션 opacity 누락 보정 */
.e-img-fade-l-enter-to {
	opacity: 1;  /* 기존에 transform만 있고 opacity 누락 */
}

.e-img-fade-r-enter-to {  /* 기존에 아예 없음 */
	transform: translate(0);
	opacity: 1;
}

.e-attachment-img-foam {
	display: flex;
	height: auto;
	min-height: 150px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 5px;
	border: 1px solid var(--border-Input, #D1D1D1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.e-attach-img-foam-large-ic svg {
	width: 100px;
	height: 100px;
}

.e-attach-img-foam-large-ic path {
	fill: var(--Typography-inverse, #FFF);
}

.e-attach-img-foam-ic path {
	fill: var(--Typography-inverse, #FFF);
	display: flex;
}

.e-attachment-img-foam:hover .e-attachment-img-foam-hover {
	display: flex;
}

.e-attachment-img-foam-hover-txt {
	color: var(--Typography-inverse, #FFF);
	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-attachment-img-foam-hover {
	background: rgba(0, 0, 0, 0.80);
	z-index: 99;
	width: 100%;
	display: none;
	height: 100%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.e-attachment-img-foam:hover {
	fill: rgba(0, 0, 0, 0.80);
}

.e-attachment-img-foam img {
	position: absolute;
	width: 100%;
}

/* 첨부파일 썸네일 - 이미지 크게보기 기능 없을 때 대응 css */
.e-attachment-zoom-in-none .e-attachment-img-pre,
.e-attachment-zoom-in-none .e-attachment-img-foam {
	cursor: default;
}

.e-attachment-img-pre.e-attachment-zoom-in-none {
	cursor: default;
}

.e-attachment-zoom-in-none .e-attachment-img-foam-hover {
	display: none !important;
}

.e-attachment-img-no {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.e-attachment-img-no-ic svg {
	width: 100px;
	height: 100px;
}

.e-attachment-img-no-ic path {
	fill: var(--Gray-300, #888);
}

.e-attachment-img-no-txt {
	color: var(--Typography-Body-2, #5D5D5D);
	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-attachment-img-foam-txt {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
}

.e-attachment-img-foam-title-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
}

.e-attachment-img-foam-title {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	flex: 1 0 0;
	overflow: hidden;
	color: var(--Typography-Body-1, #000);
	text-overflow: ellipsis;
	/* WEB/Contents - 16 Medium */
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-attachment-img-foam-close_ic {
	cursor: pointer;
}

.e-attachment-file-foam-volume {
	overflow: hidden;
	color: var(--Gray-400, #888);
	text-overflow: ellipsis;

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	align-self: stretch;
}

.e-attachment-img-pre-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	overflow-x: auto;
}

.e-attachment-img-pre-wrap::-webkit-scrollbar {
	width: 2px;
	height: 2px;
	background: var(--Gray-100, #E7E7E7);
}

.e-attachment-img-pre-wrap::-webkit-scrollbar-thumb {
	width: 2px;
	height: 2px;
	background: var(--Gray-600, #5D5D5D);
}

.e-attachment-img-pre-wrap-foam {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	overflow-x: auto;
	margin-bottom: 10px;
}

.e-attachment-img-pre {
	display: flex;
	width: 80px;
	height: 80px;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 15px;
	border-radius: 10px;
	border: 1px solid var(--border-Input, #D1D1D1);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}

.e-attachment-img-pre img {
	position: absolute;
	width: 100%;
}

.e-attachment-img-foam-close-ic {
	z-index: 3;
	cursor: pointer;
}

.e-attachment-img-pre:hover .e-attachment-img-foam-hover {
	display: flex;
	z-index: 2;
	position: absolute;
}

.e-attachment-img-pre .e-attachment-img-foam-hover svg {
	width: 24px;
	height: 24px;
}

.e-attachment-img-foam-close-ic path {
	fill: var(--Typography-Body-2, #5D5D5D);
}


/* 파일 미리보기 팝업*/
.e-img-pop {
	overflow: hidden;
	position: fixed;
	width: 100vw;
	height: 100vh;
	background: rgb(0, 0, 0, 0.8);
	top: 0;
	left: 0;
	z-index: 999999;
	backdrop-filter: blur(4.5px);
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.e-img-pop-slider-cont {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	display: block;
}

.e-img-pop-slider-wrap {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	transition-property: transform;
	transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
	box-sizing: content-box;
	justify-content: center;
}

.e-img-slider {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

.e-img-slider img {
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
	max-height: 624px;
}

.e-img-num-wrap {
	width: 100%;
	height: 50px;
	position: absolute;
	bottom: 60px;
	text-align: center;
}

.e-img-num-circle {
	width: 10px;
	height: 10px;
	background-color: #666;
	border-radius: 500px;
	bottom: 4px;
	position: relative;
	display: inline-block;
	margin: 0 10px;
	cursor: pointer; /* 클릭 가능함을 나타내는 포인터 커서로 변경 */
}

.e-img-num-circle.on {
	background: #fe5f40 !important;
}

.e-img-pop-slider-arrow {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.e-img-pop-slider-arrow .e-img-pop-arrow-box:nth-child(1) {
	width: 60px;
	height: 100px;
	background-color: #333;
	position: absolute;
	left: 3%;
	padding-left: 10px;
	transform: translate(0, -50%);
	border-radius: 5px;
}

.e-img-pop-slider-arrow .e-img-pop-arrow-box:hover {
	background-color: #000 !important;
	transition: 0.3s;
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.6);
}

.e-img-pop-slider-arrow .e-img-pop-arrow-box:nth-child(1) span {
	width: 20px;
	height: 20px;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	display: block;
	margin: 0 auto;
	transform: rotate(-45deg);
}

.e-img-pop-slider-arrow .e-img-pop-arrow-box:nth-child(2) {
	width: 60px;
	height: 100px;
	background-color: #333;
	position: absolute;
	right: 3%;
	padding-right: 10px;
	transform: translate(0, -50%);
	border-radius: 5px;
}

.e-img-pop-slider-arrow .e-img-pop-arrow-box:nth-child(2) span {
	width: 20px;
	height: 20px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	display: block;
	margin: 0 auto;
	transform: rotate(45deg);
}

/* 파일 미리보기 팝업 - 애니메이션 효과*/

.e-img-fade-r-move,
.e-img-fade-r-enter-active,
.e-img-fade-r-leave-active,
.e-img-fade-l-move,
.e-img-fade-l-enter-active,
.e-img-fade-l-leave-active {
position: absolute;
transition: all 1s ease;
}

.e-img-fade-l-enter-from {
transform: translateX(350px);
opacity: 0;

}
.e-img-fade-l-enter-to {
transform: translateX(0px);
}
.e-img-fade-l-leave-to {
transform: translateX(-350px);
opacity: 0;
}

.e-img-fade-r-enter-from {
transform: translateX(-350px);
opacity: 0;
}
.e-img-fade-r-leave-from {
transform: translateX(0px);
}
.e-img-fade-r-leave-to {
transform: translateX(350px);
opacity: 0;
}
/* 파일 미리보기 팝업 end */
/* Attachment File 첨부파일 end */


/* GNB (Header Menu_v3) */
#e-gnb {
	background: var(--background-primary);
	transition: 0.01s ease-in;
	overflow: hidden;
	border-bottom: 1px solid rgba(55, 55, 55, 0.1);
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 99;
	padding: 0px 30px;
	border-bottom: 1px solid var(--border-Input, #D1D1D1);
}

.e-gnb-sub-menu {
	display: flex;
	padding: 10px 0px;
	justify-content: flex-end;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}

.e-gnb-sub-menu-wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
	flex: 1 0 0;
}

.e-gnb-sub-menu-wrap-icon {
	border-radius: 5px;
	width: 24px;
	height: 24px;
}

.e-gnb-sub-menu-wrap-icon:hover {
	background: #e6e6e6;
}

.e-gnb-sub-menu-language-pop {
	position: absolute;
	display: flex;
	width: 57px;
	flex-direction: column;
	align-items: flex-start;
	gap: 2px;
	top: 40px;
}

.e-gnb-sub-menu-language-pop li {
	display: flex;
	padding: 5px 11px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 50px;
	background: var(--background-inverse, #000);
	color: #FFF;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;
	/* 21.6px */
	letter-spacing: -0.72px;
}

.e-gnb-sub-menu-wrap li {
	align-items: center;
	display: flex;
	cursor: pointer;
}

.e-gnb-sub-menu-list {
	color: var(--Typography-Header, #000);

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-gnb-sub-menu-company {
	display: flex;
	height: 21px;
	padding: 0px 5px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 5px;
	border: 1px solid var(--Amaranth-200, #FBD0D2);
	background: var(--Amaranth-100, #FDE6E6);
}

.e-gnb-sub-menu-company span {
	color: var(--Typography-Body-1, #000);

	/* WEB/Contents - 12 Regular */
	font-size: 12px;
	font-weight: 400;
	line-height: 150%;
	/* 18px */
	letter-spacing: -0.24px;
}

.e-gnb-main-menu {
	display: flex;
	width: 100%;
	height: 54px;
	align-items: center;
	gap: 50px;
}

.e-gnb-main-menu-logo {
	width: auto;
	height: 24px;
	flex-shrink: 0;
	display: flex;
}

.e-gnb-main-menu-logo a {
	width: auto;
	height: 24px;
	flex-shrink: 0;
	display: flex;
}

.e-gnb-main-menu-wrap {
	display: flex;
	align-items: center;
	gap: 24px;
	flex: 1 0 0;
}

.e-gnb-main-menu-wrap li {
	display: flex;
	padding: 15px 0px 13px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	border-bottom: 2px solid #FFF;
}

.e-gnb-main-menu-wrap li.focus {
	border-bottom: 2px solid var(--PrimaryColor);
}

.e-gnb-main-menu-wrap li:hover {
	border-bottom: 2px solid var(--PrimaryColor);
}

.e-gnb-main-menu-wrap li span {
	color: var(--Typography-Header, #000);

	/* WEB/Contents - 16 Medium */
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-gnb-main-menu-srch {
	display: flex;
}

.e-gnb-main-menu-srch-btn {
	border-radius: 50px;
	border: 1px solid var(--border-Input, #D1D1D1);
	display: flex;
	height: 36px;
	padding: 7px 12px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	width: 130px;
}

.e-gnb-main-menu-srch-btn:hover {
	background: var(--Amaranth-50, #FEF2F2);
}

.e-gnb-main-menu-srch-btn-txt {
	display: flex;
	justify-content: flex-start;
	flex: 1 0 0;
	align-self: stretch;
	color: var(--Typography-Body-1, #000);

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

/* GNB 메뉴검색  */

.e-gnb-menu-srch {
	display: flex;
	padding: 25px 410px 50px 410px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	flex-shrink: 0;
	background: var(--background-primary);
	position: absolute;
	width: 100%;
	z-index: 999;
}

.e-gnb-menu-srch-wrap {
	display: flex;
	align-items: center;
	align-self: stretch;
}

.e-gnb-menu-srch-input-wrap {
	display: flex;
	padding: 15px 35px;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
	border-radius: 500px;
	background: var(--background-secondary, #E7E7E7);
}

.e-gnb-menu-srch-input-wrap input::placeholder {
	font-weight: 400;
}

.e-gnb-menu-srch-input-wrap input {
	background: none;
	border: none;
	flex: 1 0 0;
	color: var(--Typography-Body-1, #000);

	/* WEB/Contents - 18 Medium */
	font-size: 18px;
	font-weight: 500;
	line-height: 130%;
	/* 23.4px */
	letter-spacing: -0.72px;
}

.e-gnb-menu-srch-result {
	display: flex;
	padding: 25px 0px 50px 0px;
	align-items: flex-start;
	align-self: stretch;
}

.e-gnb-menu-srch-result-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	flex: 1 0 0;
}

.e-gnb-menu-srch-result-list {
	display: flex;
	padding-bottom: 30px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
}

.e-gnb-menu-srch-result-list-title {
	color: var(--Typography-Body-1, #000);

	/* WEB/Contents - 16 Bold */
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-gnb-menu-srch-result-list-sub {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	align-self: stretch;
}

.e-gnb-menu-srch-result-list-sub span:hover {
	color: var(--PrimaryColor);
}

.e-gnb-menu-srch-result-list-sub-txt {
	color: var(--Typography-Body-1, #000);

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	flex: 1 0 0;
	cursor: pointer;
}

.e-gnb-menu-srch-result-channel {
	display: flex;
	padding: 10px 0px;
	align-items: center;
	align-self: stretch;
}

.e-gnb-menu-srch-result-channel-txt {
	color: var(--Typography-Body-2, #5D5D5D);

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	cursor: pointer;
}

.e-gnb-menu-srch-icon-close {
	cursor: pointer;
}

/* GNB */

/* LNB */

.e-lnb {
	display: flex;
	padding: 25px 30px 50px 200px;
	align-items: flex-start;
	background: var(--background-primary);
	margin-top: 99px;
}

.e-lnb-main-menu {
	display: flex;
	align-items: flex-start;
	flex: 1 0 0;
}

.e-lnb-main-menu-list {
	display: flex;
	max-width: 160px;
	padding: 15px 0px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	flex: 1 0 0;
	align-self: stretch;
}

.e-lnb-main-menu-depth01 {
	display: flex;
	height: 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.e-lnb-main-menu-depth01 span {
	color: var(--Typography-Header, #000);

	/* WEB/Contents - 16 Bold */
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-lnb-main-menu-depth02-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.e-lnb-main-menu-depth02-wrap ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.e-lnb-main-menu-depth02 {
	display: flex;
	height: 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	flex: 1 0 0;
}

.e-lnb-main-menu-depth02:hover span {
	color: var(--PrimaryColor);
}

.e-lnb-main-menu-depth02 span {
	flex: 1 0 0;
	color: var(--Typography-Header, #000);

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-lnb-sub-menu {
	display: flex;
	width: 350px;
	padding: 0px 50px;
	align-items: flex-start;
	flex-shrink: 0;
	border-left: 1px solid var(--border-Input, #D1D1D1);
}

.e-lnb-sub-menu-last {
	display: flex;
	padding-left: 50px;
	align-items: flex-start;
	align-self: stretch;
	border-left: 1px solid var(--border-Input, #D1D1D1);
}

.e-lnb-sub-menu-profile-box {
	display: flex;
	padding: 10px 20px;
	align-items: flex-start;
	gap: 20px;
	border-radius: 10px;
	background: var(--Gray-50, #F6F6F6);
}

.e-lnb-sub-menu-profile-img {
	display: flex;
	width: 150px;
	height: 150px;
	align-items: center;
	overflow: hidden;
	border-radius: 10px;
}

.e-lnb-sub-menu-profile-img img {
	height: 150px;
	flex: 1 0 0;
	aspect-ratio: 1/1;
}

.e-lnb-sub-menu-profile-info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
}

.e-lnb-sub-menu-profile-info-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
}

.e-lnb-sub-menu-profile-info-mtxt {
	color: var(--Typography-Header, #000);

	/* WEB/Contents - 16 Medium */
	font-size: 16px;
	font-weight: 500;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
}

.e-lnb-sub-menu-profile-info-label {
	display: flex;
	height: 21px;
	padding: 0px 5px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 5px;
	border: 1px solid var(--Amaranth-200, #FBD0D2);
	background: var(--Amaranth-100, #FDE6E6);
	color: var(--Typography-Body-1, #000);

	/* WEB/Contents - 12 Regular */
	font-size: 12px;
	font-weight: 400;
	line-height: 150%;
	/* 18px */
	letter-spacing: -0.24px;
}

.e-lnb-sub-menu-cont {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 5px;
	flex: 1 0 0;
}

.e-lnb-sub-menu-cont-title {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3px;
}

.e-lnb-sub-menu-cont-title span {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3px;
}

.e-lnb-sub-menu-cont-sub {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3px;
	cursor: pointer;
}

.e-lnb-sub-menu-cont-sub-icon {
	display: flex;
	width: 20px;
	height: 20px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.e-lnb-sub-menu-cont-sub-txt {
	color: var(--Typography-Body-1, #000);

	/* WEB/Contents - 14 Medium */
	font-size: 14px;
	font-weight: 500;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

/* LNB */


/* tree 구조 (수정가능성이 높음) */

.e-tree-body::-webkit-scrollbar {
	width: 7px;
	background: #e7e7e7;
}

.e-tree-body::-webkit-scrollbar-thumb {
	width: 7px;
	background: var(--PrimaryColor);
	border-radius: 50px;
}

.e-tree-depth01-wrap {
	display: flex;
	width: 358px;
	flex-direction: column;
	align-items: flex-start;
}

.e-tree-depth-01-foam {
	display: flex;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	cursor: pointer;
}

.e-tree-depth-01-foam:hover {
	background: var(--Amaranth-50, #FEF2F2);
}

.e-depth-text {
	padding: 10px 0;
	color: var(--Typography-Body-1, #000);
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: -0.28px;
}

.e-dropdown-ic {
	width: 24px;
	height: 24px;
	cursor: pointer;
	margin-left: 24px;
}

.e-depth-stroke01 {
	width: 1px !important;
	align-self: stretch;
	background: #D9D9D9;
}

.e-depth-stroke02 {
	width: 1px !important;
	align-self: stretch;
	background: #D9D9D9;
	margin-left: 36px;
}

.e-depth-stroke03 {
	width: 1px !important;
	align-self: stretch;
	background: #D9D9D9;
	margin-left: 36px;
}

.e-depth-stroke04 {
	width: 1px !important;
	align-self: stretch;
	background: #D9D9D9;
	margin-left: 36px;
}

.e-depth-stroke05 {
	width: 1px !important;
	align-self: stretch;
	background: #D9D9D9;
	margin-left: 36px;
}

.e-depth-stroke06 {
	width: 1px !important;
	align-self: stretch;
	background: #D9D9D9;
	margin-left: 36px;
}

.e-tree-depth02 {
	display: flex;
	width: 358px;
	flex-direction: column;
	align-items: flex-start;
}

.e-tree-depth02-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	flex-direction: column;
}

.e-tree-depth-02-foam {
	display: flex;
	align-items: center;
	flex: 1 0 0;
	gap: 10px;
	width: 100%;
	padding-left: 36px;
	cursor: pointer;
}

.e-tree-depth-02-foam:hover {
	background: var(--Amaranth-50, #FEF2F2);
}

.e-tree-depth03 {
	display: flex;
	width: 358px;
	flex-direction: column;
	align-items: flex-start;
}

.e-tree-depth03-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	flex-direction: column;
}

.e-tree-depth-03-foam {
	display: flex;
	align-items: center;
	flex: 1 0 0;
	gap: 10px;
	padding-left: 36px;
	width: 100%;
	cursor: pointer;
}

.e-tree-depth-03-foam:hover {
	background: var(--Amaranth-50, #FEF2F2);
}

.e-tree-depth04 {
	display: flex;
	width: 358px;
	flex-direction: column;
	align-items: flex-start;
}

.e-tree-depth04-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	flex-direction: column;
}

.e-tree-depth-04-foam {
	display: flex;
	align-items: center;
	flex: 1 0 0;
	gap: 10px;
	padding-left: 36px;
	width: 100%;
	cursor: pointer;
}

.e-tree-depth-04-foam:hover {
	background: var(--Amaranth-50, #FEF2F2);
}

.e-tree-depth05 {
	display: flex;
	width: 358px;
	flex-direction: column;
	align-items: flex-start;
}

.e-tree-depth05-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	flex-direction: column;
}

.e-tree-depth-05-foam {
	display: flex;
	align-items: center;
	flex: 1 0 0;
	gap: 10px;
	padding-left: 36px;
	width: 100%;
	cursor: pointer;
}

.e-tree-depth-05-foam:hover {
	background: var(--Amaranth-50, #FEF2F2);
}

.e-tree-depth06 {
	display: flex;
	width: 358px;
	flex-direction: column;
	align-items: flex-start;
}

.e-tree-depth06-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	flex-direction: column;
}

.e-tree-depth-06-foam {
	display: flex;
	align-items: center;
	flex: 1 0 0;
	gap: 10px;
	padding-left: 36px;
	width: 100%;
	cursor: pointer;
}

.e-tree-depth07 {
	display: flex;
	width: 358px;
	flex-direction: column;
	align-items: flex-start;
}

.e-tree-depth07-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	flex-direction: column;
}

.e-tree-depth-07-foam {
	display: flex;
	align-items: center;
	flex: 1 0 0;
	gap: 10px;
	padding-left: 36px;
	width: 100%;
	cursor: pointer;
}

.e-tree-depth-07-foam:hover {
	background: var(--Amaranth-50, #FEF2F2);
}

.e-tree-depth08 {
	display: flex;
	width: 358px;
	flex-direction: column;
	align-items: flex-start;
}

.e-tree-depth08-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
	flex-direction: column;
}

.e-tree-depth-08-foam {
	display: flex;
	align-items: center;
	flex: 1 0 0;
	gap: 10px;
	padding-left: 36px;
	width: 100%;
	cursor: pointer;
}

.e-tree-depth-08-foam:hover {
	background: var(--Amaranth-50, #FEF2F2);
}

.e-depth-disabled {
	background: var(--Gray-50, #F6F6F6) !important;
}

.e-depth-disabled .e-depth-text {
	color: var(--Gray-200, #D1D1D1) !important;
}

.e-depth-focus {
	background: var(--Amaranth-50, #FEF2F2) !important;
}

.edepth-focus .e-depth-text {
	color: var(--PrimaryColor) !important;
}

.e-depth-focus path {
	fill: var(--PrimaryColor) !important;
}

/* tree 구조 */

/* e-grid */
.e-grid {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	background-color: var(--background-primary);
	border: 1px solid var(--TableBorderColor);
	/* 테이블의 외부 선 */
	/* margin-top: 20px; */
	table-layout: fixed;
	/* 그리드 컨테이너 - flex로 페이저를 하단에 고정 */
	display: flex;
  flex-direction: column;
}

/* e-grid-header */

/* 헤더 컨테이너 - 스크롤 영역 밖 고정 */
.e-grid-header-container {
  flex-shrink: 0;
  overflow: hidden;
  background-color: var(--GridHeaderBg);
}

.e-grid-header {
	color: var(--TypographyInverse);
	font-weight: bold;
	font-size: 14px;
	text-align: center;
	border-bottom: 1px solid var(--TableBorderColor);
	table-layout: fixed;
	position: sticky;
	padding-right: 0;
	background-color: var(--GridHeaderBg);
	scrollbar-gutter: stable;
	overflow: auto;
}

/* e-grid-header table */
.e-grid-header table {
	width: 100%;
	border-collapse: collapse;
}

.e-grid-header tr:first-child th {
	border-bottom: 1px var(--TableBorderColor) solid;
	background-color: var(--GridHeaderTopBg);
}

/* e-grid-header th */
.e-grid-header th {
	padding: 12px;
	background-color: var(--GridHeaderBg);
	color: var(--TextColor);
	font-size: 14px;
	text-align: center;
	border-right: 1px solid var(--TableBorderColor);
	font-weight: bold;
	user-select: none;
}

.e-grid-header th div {
	display: inline-block;
	/* height: 14px !important; */
	/* overflow: hidden; */
}

.e-grid-header th div svg {
	/* width: 14px;
	height: 14px; */
}

svg:not(:root) {
	overflow: auto;
}
.e-grid-header th div svg path {
	fill: var(--PrimaryColor) !important;
	height: 14px;
}

col.e-sorted,
th.e-sorted {
	background-color: #00000005;
}

.e-sorted svg {
	width: 14px;
	height: 14px;
}

/* e-grid-header th 마지막 셀에 경계선 제거 */
.e-grid-header th:last-child {
	border-right: none;
}

/* e-grid-body */

/* 바디 컨테이너 - 기본: 자동 높이, 스크롤 없음 */
.e-grid-body-container {
  flex: 0 1 auto;  /* 기본: 내용 크기만큼만 차지 */
  min-height: 0;
  overflow: visible;
}

/* style.height가 있거나 isScrollable일 때 스크롤 적용 */
.e-grid-body-container.scrollable {
  overflow-y: scroll;  /* 항상 스크롤바 영역 확보 */
  overflow-x: hidden;
}

/* 무한 스크롤 모드일 때만 남은 공간 채움 */
.e-grid-body-container.grow {
  flex: 1 1 auto;
}

.e-grid-body {
	font-size: 14px;
	background-color: var(--background-primary);
	table-layout: fixed;
	overflow-y: scroll !important;
	scrollbar-gutter: stable;
}

/* e-grid-body table */
.e-grid-body table {
	width: 100%;
	border-collapse: collapse;
}

/* e-grid-body에만 포인터 스타일 적용하는 클래스 */
.e-body_cursor .e-grid-body tr {
  cursor: pointer !important;
}

.e-body_cursor .e-grid-body tr:has(.no-data) {
  cursor: default !important;
}

.e-body_cursor .e-grid-body tr:has(.no-data):hover {
	background-color: #fff0 !important;
}

/* e-grid-body td */
.e-grid-body td {
	padding: 12px;
	text-align: center;
	border-right: 1px solid var(--TableBorderColor);
	border-bottom: 1px solid var(--TableBorderColor);
	color: var(--TextColor);
	word-break: break-all;
}

.e-grid-body tr:last-child td {
	border-bottom: inherit
}

.e-grid-body td:last-child {
	border-right: none;
}

/* e-grid-body row hover */
.e-grid-body tr:hover {
	background-color: var(--TableRowHover);
}

/* e-grid-body row alternating background */
.e-grid-body tr:nth-child(even) {
	background-color: var(--GridRowBg);
}

.e-grid-body .loading {
	background-color: var(--background-primary);
}

.e-grid-body.no-data {
	display: flex;
}

.e-grid-body .no-data {
	padding: 50px 0;
}

.e-grid-body .no-data svg {
	width: 100px;
	height: 100px;
}

.e-grid-body .no-data svg path {
	fill: var(--Gray-100);
}

.e-grid-body tr:has(.no-data):hover {
	background-color: #fff0 !important;
}

/* 체크박스 열 스타일 */
.e-grid-header th:first-child,
.e-grid-body td:first-child {
  text-align: center;
  vertical-align: middle;
  padding: 8px;
}

/* e-grid pager있는 컴포넌트경우 스크롤영역 없음 */
.e-grid.e-grid-pager .e-grid-body {
  overflow-y: auto !important;
}
.e-grid.e-grid-pager .e-grid-header {
  padding-right: 0 !important;
}

/* 테이블 레이아웃 */
.e-grid-table {
  width: 100%;
  border-collapse: collapse;
}

.e-grid-header-container table {
  table-layout: fixed;
}

.e-grid-body-container table {
  table-layout: fixed;
}

/* e-pager */
.e-pager {
	display: inline-flex;
	align-items: center;
	background-color: var(--PagerBgColor);
	padding: 10px;
	border-radius: 4px;
}

/* e-link */
.e-link {
	color: var(--TextColor);
	text-decoration: none;
	padding: 10px;
	font-size: 14px;
	font-weight: 400;
	border-radius: 4px;
	margin-right: 5px;
	transition: background-color 0.3s ease;
	min-width: 40px;
	height: 40px;
	display: inline-block;
	text-align: center;
	line-height: 20px;
	cursor: pointer;
	box-sizing: border-box;
}

.e-link:last-child {
	margin-right: 0;
}

.e-link:hover {
	background-color: var(--Amaranth50);
}

.e-link.active {
	background-color: var(--Amaranth50);
	color: var(--PrimaryColor);
}

/* e-pager-select */
.e-pager-select {
	margin-left: 10px;
	padding: 5px 10px;
	font-size: 14px;
	border-radius: 4px;
	background-color: var(--background-primary);
	border: 1px solid var(--TableBorderColor);
	color: var(--TextColor);
}

/* e-pager-info */
.e-pager-info {
	font-size: 14px;
	color: var(--TextColor);
	margin-left: 10px;
	font-weight: 500;
}

/* e-pager-wrap */
.e-pager-wrap {
	display: flex;
	justify-content: left;
	align-items: center;
	padding: 8px;
	border-top: 1px solid var(--TableBorderColor);
	/* 페이저 - 최하단 고정, 항상 표시 */
  flex-shrink: 0;
  margin-top: auto;
}

/* k-pager-nav */
.e-pager-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px;
	background: var(--background-primary);
	color: var(--PagerButtonColor);
	font-size: 14px;
	border-radius: 4px;
	cursor: pointer;
	margin: 0 5px;
	transition: background 0.3s ease;
	width: 38px;
	height: 38px;
	border: 1px #ddd solid;
}

.e-pager-nav div {
	line-height: 0;
	padding: 0;
}

.e-pager-nav div svg path {
	fill: #555;
}

.e-pager-nav.e-pager-first svg path,
.e-pager-nav.e-pager-last svg path {
	fill: #555;
}

.e-pager-nav:hover {
	background: var(--Amaranth50);
}

/* k-pager-nav disabled */
.e-pager-nav[disabled] {
	background-color: #f9f9f9 !important;
	cursor: not-allowed;
	border: 1px #eee solid !important;
}
.e-pager-nav[disabled] path {
	fill: #ccc !important;
}

/* k-pager-sizes */
.e-pager-sizes {
	font-size: 14px;
	color: var(--TextColor);
	margin-left: 10px;
	margin-right: 15px;
}

.e-pager-sizes .e-dropdown-input {
	width: 80px !important;
}

/* k-pager-numbers */
.e-pager-numbers {
	display: flex;
	gap: 5px;
	padding: 0 5px;
}

.e-pager-numbers-wrap.no-data li .e-link {
	cursor: default;
	color: var(--Gray-300);
}

.e-pager-numbers-wrap.no-data li .e-link:hover {
	background-color: #fff0;
}

/* k-pager-number link */
.e-pager-number {
	color: var(--PagerButtonColor);
	text-decoration: none;
	padding: 6px 10px;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.e-pager-number:hover {
	background-color: var(--PagerButtonHover);
}

/* Current page */
.e-pager-number.k-current-page {
	background-color: var(--PagerButtonHover);
	color: var(--TypographyInverse);
}

/* e-pager-icon */
.e-pager-icon {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* e-btn-fill-primary */
/* .e-btn-fill-primary {
	background-color: var(--PrimaryColor);
	color: var(--TypographyInverse);
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
	font-weight: bold;
	transition: background-color 0.3s;
} */

.e-btn-fill-primary:hover {
	background-color: var(--PrimaryColorHover);
}



/* 탭 Tabs*/
.e-tabs-mid {
	display: flex;
	padding: 5px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 5px;
	background: var(--Gray-50);
	flex: 1 0 0;
}

.e-tabs-mid-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
	overflow: hidden;
}

.e-tabs-mg20 {
	margin: 0 20px;
}

.e-tab-mid {
	display: inline-flex;
	height: 36px;
	min-width: 60px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.2s;
}

.e-tab-mid:hover {
	background: var(--background-primary);
	box-shadow: 0px 2px 3px 0px rgba(77, 77, 77, 0.10);
}

.e-tabs-mid-right-ic,
.e-tabs-mid-left-ic {
	cursor: pointer;
	display: flex;
	border-radius: 5px;
	transition: 0.2s;
	height: 100%;
	align-items: center;
}

.e-tabs-mid-right-ic:hover,
.e-tabs-mid-left-ic:hover {
	background: var(--background-primary);
	box-shadow: 0px 2px 3px 0px rgba(77, 77, 77, 0.10);
}

.e-tab-mid-txt {
	color: var(--Typography-Body-1);
	text-align: center;
	/* WEB/Contents - 16 Bold */
	font-size: 16px;
	font-weight: 700;
	line-height: 150%;
	/* 24px */
	letter-spacing: -0.32px;
	flex: 1 0 0;
}

.e-tab-mid-right-ic {
	display: flex;
}

.e-tab-mid-left-ic {
	display: flex;
}

.e-tab-mid.focus {
	background: var(--background-primary);
	box-shadow: 0px 2px 3px 0px rgba(77, 77, 77, 0.10);
}

.e-tab-mid.focus .e-tab-mid-txt {
	color: var(--PrimaryColor);
}

.e-tab-mid.focus path {
	fill: var(--PrimaryColor);
}

.e-tab-mid.disabled {
	background: var(--Gray-100);
	cursor: default;
	box-shadow: none;
}

.e-tab-mid.disabled .e-tab-mid-txt {
	color: var(--Gray-300);
}

.e-tab-mid.disabled .e-tab-small-txt {
	color: var(--Gray-300);
}

.e-tabs-small {
	display: flex;
	width: 243px;
	padding: 3px 5px;
	align-items: center;
	gap: 10px;
	border-radius: 5px;
	background: var(--Gray-50);
}

.e-tabs-small-wrap {
	display: flex;
	flex: 1 0 0;
	align-items: center;
	flex-shrink: 0;
	gap: 5px;
}

/* ============================================================
 * e-lnb — LNB Sidebar
 * ============================================================ */

.e-lnb-container {
	width: 210px;
	background-color: #304156;
	height: 100%;
	overflow: hidden;
	transition: width 0.28s;
}
.e-lnb-container.is-collapse {
	width: 64px;
}
.e-lnb-logo {
	position: relative;
	width: 100%;
	height: 50px;
	line-height: 50px;
	text-align: center;
	overflow: hidden;
	background: #304156;
}
.e-lnb-logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 100%;
	text-decoration: none;
	cursor: pointer;
}
.e-lnb-title {
	color: #fff;
	font-weight: 600;
	font-size: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.e-lnb-logo.is-collapse .e-lnb-title {
	font-size: 12px;
}
.e-lnb-scroll {
	height: calc(100% - 50px);
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
}
.e-lnb-scroll::-webkit-scrollbar {
	display: none;
}
.e-lnb-menu,
.e-lnb-submenu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.e-lnb-menu-item--depth1,
.e-lnb-submenu-title {
	display: flex;
	align-items: center;
	gap: 10px;
	height: 50px;
	line-height: 50px;
	padding: 0 20px;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	box-sizing: border-box;
}
.e-lnb-menu-item--depth1:hover,
.e-lnb-submenu-title:hover {
	background-color: #263445;
}
.e-lnb-submenu {
	border-bottom: 1px solid #c0c4ce33;
}
.e-lnb-submenu-list {
	background: #353c48;
	padding: 10px;
}
.e-lnb-submenu-list .e-lnb-menu-item {
	display: flex;
	align-items: center;
	height: 34px;
	line-height: 34px;
	padding: 0 25px 0 40px;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}
.e-lnb-submenu-list .e-lnb-menu-item:hover,
.e-lnb-submenu-list .e-lnb-menu-item.is-active {
	background-color: #2b303a;
	color: #fff;
}
.e-lnb-icon {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	color: #fff;
}
.e-lnb-icon svg {
	width: 20px;
	height: 20px;
	color: #fff;
}
.e-lnb-text {
	flex: 1 0 auto;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.e-lnb-arrow {
	display: inline-flex;
	align-items: center;
	flex-shrink: 0;
	color: #fff;
	transition: transform 0.2s;
}
.e-lnb-submenu.is-opened .e-lnb-arrow {
	transform: rotate(180deg);
}
.e-lnb-container.is-collapse .e-lnb-menu-item--depth1,
.e-lnb-container.is-collapse .e-lnb-submenu-title {
	justify-content: center;
	padding: 0;
	gap: 0;
}
.e-lnb-container.is-collapse .e-lnb-text,
.e-lnb-container.is-collapse .e-lnb-arrow {
	display: none;
}
.e-lnb-flyout {
	position: fixed;
	z-index: 2000;
	min-width: 160px;
	margin: 0;
	padding: 10px;
	list-style: none;
	background: #353c48;
	border-radius: 5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.e-lnb-flyout-title {
	padding: 4px 25px 8px;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
}
.e-lnb-flyout .e-lnb-menu-item {
	display: flex;
	align-items: center;
	height: 34px;
	line-height: 34px;
	padding: 0 25px;
	border-radius: 5px;
	color: #fff;
	font-size: 14px;
	white-space: nowrap;
	cursor: pointer;
}
.e-lnb-flyout .e-lnb-menu-item:hover,
.e-lnb-flyout .e-lnb-menu-item.is-active {
	background-color: #2b303a;
	color: #fff;
}
.e-lnb-demo-section {
	padding: 0 20px;
}
.e-lnb-demo-desc {
	color: #666;
	font-size: 14px;
}
.e-lnb-demo-selected {
	margin-left: 10px;
	color: #666;
	font-size: 13px;
}
.e-lnb-preview {
	display: flex;
	height: 560px;
	border: 1px solid #d1d1d1;
	border-radius: 8px;
	overflow: hidden;
}
.e-lnb-preview-content {
	flex: 1;
	padding: 20px;
	background: #fff;
	color: #666;
}

.e-tab-small {
	display: flex;
	height: 30px;
	min-width: 60px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	gap: 5px;
	border-radius: 5px;
	flex: 1 0 0;
	cursor: pointer;
	transition: 0.2s;
}

.e-tab-small:hover {
	background: var(--background-primary);
	box-shadow: 0px 2px 3px 0px rgba(77, 77, 77, 0.10);
}

.e-tab-small.disabled {
	background: var(--Gray-100);
	cursor: default;
	box-shadow: none;
}

.e-tab-small.disabled .e-tab-small-txt {
	color: var(--Gray-300);
}

.e-tab-small-txt {
	flex: 1 0 0;
	color: var(--Typography-Body-1);
	text-align: center;
	/* WEB/Contents - 15 Regular */
	font-size: 15px;
	font-weight: 400;
	line-height: 150%;
	/* 22.5px */
	letter-spacing: -0.3px;
}

.e-tab-small.focus {
	background: var(--background-primary);
	box-shadow: 0px 2px 3px 0px rgba(77, 77, 77, 0.10);
}

.e-tab-small.focus .e-tab-small-txt {
	color: var(--PrimaryColor);
	font-weight: 700;
}

.e-tab-small.focus path {
	fill: var(--PrimaryColor);
}

/* 탭 Tabs*/


/* 스위치 */

.e-switch-container {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	width: 42px;
	height: 36px;
	position: relative;
}

.e-switch-track {
	width: 34px;
    height: 16px;
    background-color: #d1d1d1;
    border-radius: 10px;
    position: absolute;
    top: 50%;
    left: 4px;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
}

.e-switch-track.on {
	background-color:var(--PrimaryColor);
}

.e-switch-thumb {
	width: 20px;
	height: 20px;
	background-color: white;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition: left 0.3s ease, background-color 0.3s ease;
	box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.16);
	border: 1px solid #cacaca;
}

.e-switch-thumb.on {
	left: 14px;
	border: 1px solid var(--Gray-200);
}

.e-switch-container.disabled {
	cursor: default;
}

.e-switch-container.disabled .e-switch-thumb.on {
	/* background-color: var(--Outrageous-Orange-100, #FFE4D4) !important; */
}

.e-switch-container.disabled .e-switch-thumb {
	/* background-color: var(--Gray-100) !important; */
}

.e-switch-container.disabled .e-switch-track.on {
	/* background-color: var(--Outrageous-Orange-100, #FFE4D4) !important; */
}

.e-switch-container.disabled .e-switch-track {
	background-color: var(--Gray-100) !important;
}

/* 스위치 */


/* DatePicker 데이트피커 */
.e-datepicker-drop {
	z-index: 11000;
	visibility: visible;
	position: absolute;
	display: flex;
}

.e-datepicker-drop-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	border-radius: 0px 0px 5px 5px;
	background: var(--background-primary);
	box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
	overflow-y: auto;
	width: 100%;
	border-radius: 5px !important;
	min-width: 235px;
	padding: 10px 15px;
	gap: 10px;
}

.e-date-picker-header {
	display: flex;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	flex-direction: row !important;
}

.e-datepicker-tit {
	display: flex;
	flex: 1 0 0;
	color: var(--Typography-Body-1, #000);
	justify-content: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
	cursor: pointer;
}

.e-datepicker-tit:hover {
	color: var(--PrimaryColor);
}

.e-datepicker-arrow {
	background: var(--Gray-50, #F6F6F6);
	border-radius: 500px;
	width: 24px;
	height: 24px;
	cursor: pointer;
}

.e-datepicker-arrow:hover {
	background: #FDE6E6;
}

.e-datepicker-day-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
}

.e-datepicker-week {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
}

.e-datepicker-week-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1 0 0;
}

.e-datepicker-day {
	color: var(--Typography-Body-1, #000);
	text-align: center;

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-datepicker-day.e-datepicker-sun {
	color: var(--Amaranth-500, #E83C4F);
}

.e-datepicker-day.e-datepicker-sat {
	color: var(--Royal-Blue-400, #5677FC);
}

.e-datepicker-date-wrap {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
}

.e-datepicker-date-box {
	display: flex;
	padding: 3px 0px;
	justify-content: center;
	align-items: center;
	flex: 1 0 0;
	cursor: pointer;
}

.e-datepicker-date-box:hover {
	opacity: 1;
}

.e-datepicker-date-box:hover .e-datepicker-date {
	color: var(--PrimaryColor);
}

.e-datepicker-date {
	color: var(--Typography-Body-1, #000);
	text-align: center;

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-datepicker-date-num {
	display: flex;
	width: 100%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1 / 1;
}

.e-datepicker-date.e-datepicker-sun {
	color: var(--Amaranth-500, #E83C4F);
}

.e-datepicker-date.e-datepicker-sat {
	color: var(--Royal-Blue-400, #5677FC);
}

.e-datepicker-date-another {
	opacity: 0.3;
}

.e-datepicker-date-another .e-datepicker-date.e-datepicker-sun {
	color: var(--Typography-Body-1, #000);
}

.e-datepicker-date-another .e-datepicker-date.e-datepicker-sat {
	color: var(--Typography-Body-1, #000);
}

.e-datepicker-date-num.today {
	border-radius: 50px;
	border: 1px solid var(--PrimaryColor);
	box-sizing: border-box;
}

.e-datepicker-date-num.today .e-datepicker-date {
	color: var(--PrimaryColor);
	font-weight: 600;
}

.e-datepicker-date-num.select {
	border-radius: 50px;
	background: var(--PrimaryColor);
	box-sizing: border-box;
}

.e-datepicker-date-num.e-select-start-range {
	border-top-left-radius: 50px;
	border-bottom-left-radius: 50px;
	background: var(--PrimaryColor);
	box-sizing: border-box;
}

.e-datepicker-date-num.e-select-end-range {
	border-top-right-radius: 50px;
	border-bottom-right-radius: 50px;
	background: var(--PrimaryColor);
	box-sizing: border-box;
}

.e-datepicker-date-num.select .e-datepicker-date {
	color: var(--Typography-inverse, #FFF);
	font-weight: 600;
}

.e-datepicker-date-num.e-select-start-range .e-datepicker-date {
	color: var(--Typography-inverse, #FFF);
	font-weight: 600;
}

.e-datepicker-date-box:hover .e-datepicker-date-num.e-select-start-range .e-datepicker-date {
	color: var(--Typography-inverse, #FFF) !important;
	font-weight: 600;
}

.e-datepicker-date-box:hover .e-datepicker-date-num.e-select-end-range .e-datepicker-date {
	color: var(--Typography-inverse, #FFF) !important;
	font-weight: 600;
}

.e-datepicker-date-box:hover .e-datepicker-date-num.slect .e-datepicker-date {
	color: var(--Typography-inverse, #FFF) !important;
	font-weight: 600;
}

.e-datepicker-date-num.e-select-end-range .e-datepicker-date {
	color: var(--Typography-inverse, #FFF);
	font-weight: 600;
}

.e-datepicker-date-num.disabled .e-datepicker-date {
	color: var(--Typography-Placeholder, #D1D1D1);
}

.e-datepicker-date-box:hover .e-datepicker-date-num.disabled .e-datepicker-date {
	color: var(--Typography-Placeholder, #D1D1D1) !important;
}

.e-datepicker-date-num.range {
	background: var(--Outrageous-Orange-100, #FFE4D4);
}

.e-datepicker-month-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
}

.e-datepicker-month-list {
	display: flex;
	align-items: flex-start;
	align-self: stretch;
}

.e-datepicker-month-box {
	display: flex;
	padding: 3px 0px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
	cursor: pointer;
	flex-direction: row !important;
}

.e-datepicker-month-box:hover .e-datepicker-month {
	color: var(--PrimaryColor);
}

.e-datepicker-month-num {
	display: flex;
	padding: 3px 0px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
}

.e-datepicker-month {
	color: var(--Typography-Body-1, #000);
	text-align: center;

	/* WEB/Contents - 14 Regular */
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	/* 21px */
	letter-spacing: -0.28px;
}

.e-datepicker-month-num.disabled .e-datepicker-month {
	color: var(--Typography-Placeholder, #D1D1D1) !important;
}

.e-datepicker-month-box.select .e-datepicker-month-num {
	border-radius: 50px;
	background: var(--PrimaryColor);
}

.e-datepicker-month-box.select .e-datepicker-month-num .e-datepicker-month {
	color: var(--Typography-inverse, #FFF);
	font-weight: 600;
}
.e-datepicker-arrow, .e-datepicekr-tit, .e-datepicker-day, .e-datepicker-date-num, .e-datepicker-month-num {
	user-select: none;
}
/* dim 배경막 */
.e-datepicker-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10999;
  background: rgba(0, 0, 0, 0.45);
}

/* 캘린더 팝업을 화면 중앙에 고정 배치 (input 아래 absolute 배치 대체) */
.e-datepicker-drop--modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(92vw, 360px);
  max-height: 86vh;
  z-index: 11000;
}

.e-datepicker-drop--modal .e-datepicker-drop-wrap {
  max-height: 86vh;
  padding: 16px 18px;
  gap: 14px;
}

/* 큰 터치 영역 — 원본 .e-datepicker-arrow는 flex 정렬이 없어 박스를 키우면
   아이콘이 좌상단으로 치우치므로 모달에서는 중앙 정렬을 명시한다 */
.e-datepicker-drop--modal .e-datepicker-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.e-datepicker-drop--modal .e-datepicker-tit {
  font-size: 16px;
}

.e-datepicker-drop--modal .e-datepicker-day {
  font-size: 15px;
}

.e-datepicker-drop--modal .e-datepicker-date,
.e-datepicker-drop--modal .e-datepicker-month {
  font-size: 16px;
}

.e-datepicker-drop--modal .e-datepicker-date-box,
.e-datepicker-drop--modal .e-datepicker-month-box {
  padding: 6px 0;
}

.e-datepicker-drop--modal .e-datepicker-date-num {
  min-height: 42px;
}

.e-datepicker-drop--modal .e-datepicker-month-num {
  min-height: 48px;
}
/* DatePicker 데이트피커 */


/* 로딩 컴포넌트 */

.e-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999; /* 더 높은 z-index */
  pointer-events: auto; /* 클릭 이벤트 차단 */
}

.e-loading-image {
  max-width: 80px;
  max-height: 80px;
  width: auto;
  height: auto;
  opacity: 0;
  will-change: opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.e-loading-image.e-image-show {
  animation: e-fade-in 0.5s ease-out forwards;
}

.e-loading-image.e-image-hide {
  animation: e-fade-out 0.3s ease-out forwards;
}

@keyframes e-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes e-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}




/* ⬇️ 2차 인증 팝업 디자인 css추가 25.11.17*/
.e-auth {
  padding: 20px;
  color: var(--BlackColor);
  font-family: 'Pretendard', sans-serif;
  border-radius: 8px;
}

.e-auth_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.e-auth_title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--Typography-Header);
}

/* Tabs */
.e-auth_tabs {
  display: flex;
  justify-content: center;
  background: var(--Gray-50);
  padding: 4px;
  border-radius: 8px;
}

.e-auth_tab-btn {
  flex: 1;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.e-auth_tab-btn.active {
  background: var(--background-primary);
  color: var(--PrimaryColor);
  box-shadow: 0 2px 3px rgba(77, 77, 77, 0.1);
}

/* 입력 그룹 */
.e-auth_group {}

.e-auth_label {
  margin-bottom: 6px;
  display: block;
  font-size: 14px;
  color: var(--Typography-Body-1);
}

.e-auth_input-wrap {
  display: flex;
  gap: 8px;
}

.e-auth_input-wrap input {
  flex: 1;
  background: var(--RoyalBlue50);
}

/* 인증번호 */
.e-auth_label-wrap {
  display: flex;
  justify-content: space-between;
}

.e-auth_timer {
  color: var(--ErrorError);
  font-size: 13px;
}

.e-auth_code-input {
  width: 100%;
  padding-left: 32%;
  height: 44px;
  /* text-align: center; */
  font-size: 24px;
  font-weight: 600;
  border: 1px solid var(--Gray-200);
  border-radius: 5px;
  letter-spacing: 20px;
  text-indent: 6px;
}

.e-auth_code-input:focus {
  border-color: var(--PrimaryColor);
  background: #FEF2F2;
}









/* ///////// */
/* 카테고리미정 */

.e-dimmed {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10001;
	background: rgba(0, 0, 0, 0.50);
}

.e-center {
	top: 50%;
	left: 50%;
}

.e-ellipsis {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

/* 커서스타일 */
.e-pointer {
	cursor: pointer !important;
}



/* ==========================================================================
   e-search-area-horizontal
   출처: https://dev-design.etnersplatform.com/img/e-system.css 의 e-search-area 구조 참고
   기존 e-search-area(vertical, foam 세로 배치)를 유지하면서
   라벨과 입력 필드가 같은 행에 가로로 배치되는 수평 검색 영역 레이아웃
   구조:
     .e-search-area-horizontal
       └─ .e-search-header-horizontal  (제목 + 버튼)
       └─ .e-search-body-horizontal
            └─ .e-search-row-horizontal  (한 줄)
                 └─ .e-search-item-horizontal  (라벨 + 입력 세트)
                      ├─ .e-search-label-horizontal
                      └─ .e-search-value-horizontal
   ========================================================================== */

/* 최상위 래퍼 */
.e-search-area-horizontal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    border-radius: 10px;
}

/* 헤더 영역: 제목 왼쪽, 버튼 오른쪽 */
.e-search-area-horizontal .e-search-header-horizontal {
    display: flex;
    align-items: center;
    gap: 5px;
    align-self: stretch;
}

.e-search-area-horizontal .e-search-header-horizontal h1 {
    display: flex;
    align-items: center;
    flex: 1 0 0;
    color: var(--gtTextStrong, #000);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

/* 버튼 그룹 — 오른쪽 정렬 */
.e-search-area-horizontal .e-search-actions-horizontal {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

/* 바디 영역 */
.e-search-area-horizontal .e-search-body-horizontal {
    display: flex;
    padding: 14px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid var(--gtBorderColor, #D1D1D1);
    background: var(--gtBgBase, #fff);
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
    box-shadow: 0 0 2px rgba(32, 50, 77, 0.1);
}

/* 한 행 */
.e-search-area-horizontal .e-search-row-horizontal {
    display: flex;
    align-items: center;
    gap: 30px;
    align-self: stretch;
    width: 100%;
}

/* 라벨 + 입력 세트 (가로 배치) */
.e-search-area-horizontal .e-search-item-horizontal {
    display: flex;
    align-items: center;
    flex: 1 0 0;
    min-width: 0;
}

/* 라벨 */
.e-search-area-horizontal .e-search-label-horizontal {
    flex-shrink: 0;
    width: 90px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gtTextColor, #333);
    /* white-space: nowrap; */
}

/* 입력 필드 래퍼 */
.e-search-area-horizontal .e-search-value-horizontal {
    flex: 1 0 0;
    min-width: 0;
}

/* 내부 el-input, el-select, input 등 너비 100% */
.e-search-area-horizontal .e-search-value-horizontal .el-input,
.e-search-area-horizontal .e-search-value-horizontal .el-select,
.e-search-area-horizontal .e-search-value-horizontal input {
    width: 100%;
}
