@charset "UTF-8";
@import "/font/Pretendard.css";
@import "/font/Roboto.css";

:root {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	cursor: default;
	overflow-wrap: break-word;
	word-break: break-word;
	tab-size: 4;
}

* {
	margin: 0;
	padding: 0;
	font: inherit;
	color: inherit;
}

*,
:after,
:before {
	box-sizing: border-box;
	flex-shrink: 0;
}

img,
picture,
video,
canvas,
svg {
	max-width: 100%;
	height: auto;
}

button {
	background: none;
	outline: none;
	border: 0;
	cursor: pointer;
}

a {
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* iOS safari 클릭 딜레이 방지 */
html {
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

ul {
	list-style: none;
}

html,
body {
	line-height: 1;
}

[disabled] {
	pointer-events: none;
}

strong {
	font-weight: 700;
}

/*Chrome Input Background Autofill Delete*/
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px transparent inset;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
}

/* 모바일 터치시 영역 색상  */
button, input, select, textarea {
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

:root {
	/**/
	--body-min-wid: 1536px;
	--contents-side-padding: 20px;
	--contents-top-padding: 30px;
	--contents-top-padding2: 0; /* 토픽광장 */
	--contents-bottom-padding: 150px;
	--contents-bottom-padding2: 133px; /* 토픽광장 */
	--contents-min-width: 320px;
	--contents-width: 1140px;
	--contents-width2: 800px; /* 충전/결제 */
	--contents-width3: 648px; /* 자료요청 */
	/**/
	--header-hei: 64px;
	--footer-hei: 60px;
	/* Color_Primary */
	--primary: #067DFD;
	--secondary: #FF5B16;
	--tertiary: #FFD400;
	--error: #E03131;
	--error2: #FFF5F5;
	--disabled: #E1E1E1;
	--disabled2: #B1B1B1;
	--white: #FFF;
	/* Color_Variation */
	--color1: #16283B;
	--color2: #868E96;
	--color3: #D1E3F3;
	--color4: #A5D8FF;
	--color17: #0066D4;
	/* Color_GrayScale */
	--color5: #000;
	--color6: #2E2E2E;
	--color7: #333;
	--color8: #5E5E5E;
	--color9: #757575;
	--color10: #959595;
	--color11: #B8B8B8;
	--color12: #D9D9D9;
	--color13: #DEE2E6;
	--color14: #E9ECEF;
	--color15: #F5F5F5;
	--color16: #F8F9FA;
	/* Color_Dimmed */
	--color18: rgba(0, 0, 0, 0.10);
	--color19: rgba(0, 0, 0, 0.20);
	--color20: rgba(0, 0, 0, 0.60);
	--color21: rgba(0, 0, 0, 0.80);
}

/* 1280px 이상 화면 */
@media screen and (min-width: 1024px) {
	:root {
		--contents-side-padding: 130px;
		--contents-top-padding2: 24px; /* 토픽광장 */
		--contents-bottom-padding2: 80px; /* 토픽광장 */
	}
}

.Color_Primary {
	color: var(--primary);
}

.Color_White {
	color: var(--white);
}

.Color_Error {
	color: var(--error);
}

html, body, input, select, textarea, input, select, button, table, tr, th, td {
	font-family: "Pretendard", sans-serif;
}

.Shell > .Inner {
	margin: 0 auto;
	min-width: 360px;
}

@media screen and (min-width: 1024px) {
	.Shell > .Inner {
		width: var(--contents-width);
	}
}

.Shell > .Inner.Style2 {
	width: var(--contents-width2);
}

@media screen and (min-width: 1024px) {
	.Shell > .Inner.Style2 {
		width: var(--contents-width2);
	}
}

.Shell > .Inner.Style3 {
	width: 100%;
	padding: 0 20px;
}

@media screen and (min-width: 648px) {
	.Shell > .Inner.Style3 {
		padding: 0 40px;
	}
}

/* MediaQuery */
[data-only-view] {
	display: none;
}

/* 1023px 이하 화면 */
@media screen and (max-width: 1023px) {
	[data-only-view=MO] {
		display: block;
	}
}

/* 1024px 이상 화면 */
@media screen and (min-width: 1024px) {
	[data-only-view=PC] {
		display: block;
	}
}

.H1 {
	font-weight: 700;
	font-size: 22px;
}

.H2 {
	font-weight: 700;
	font-size: 20px;
}

.H3 {
	font-weight: 700;
	font-size: 18px;
}

.CenterLeft {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 0;
}

.CenterRight {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.CenterCenter {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.CenterBetween {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

/* 2024102817104 :: 디버깅시 사용 :: START */
.RR {
	outline: 1px dashed red;
}

.RRR > * {
	outline: 1px dashed blue;
}

/* 2024102817104 :: 디버깅시 사용 :: END */
.TabUi_1 .Button {
	width: 80px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	font-size: 16px;
	font-weight: 700;
	color: #A8A69D;
	border-bottom: 2px solid #D0D0D0;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

.TabUi_1 .Button.On {
	color: var(--primary);
	border-bottom-color: var(--primary);
}

.TabUi_1 .Wrap {
	border-top: 2px solid #D0D0D0;
	margin-top: -2px;
	padding-top: 24px;
	padding-left: 20px;
}

.TabUi_1 .Wrap .Content {
	display: none;
	max-height: 809px;
	overflow: auto;
}

.TabUi_1 .Wrap .Content.On {
	display: block;
}

.TabUi_2 .Button {
	height: 31px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0 15px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	background-color: var(--white);
	border: 1px solid #E6E6EA;
	border-radius: 17px;
	cursor: pointer;
}

.TabUi_2 .Button.On {
	color: var(--primary);
	font-weight: 700;
	background-color: rgba(65, 115, 245, 0.1);
	border-color: rgba(65, 115, 245, 0.3);
}

.TabUi_2 .Wrap .Content {
	display: none;
	margin-top: 18px;
	padding: 5px 20px;
	min-height: 97px;
	height: calc(100dvh - 440px);
	overflow: auto;
}

.TabUi_2 .Wrap .Content.On {
	display: block;
}

.TabUi_3 {
	display: flex;
	justify-content: center;
	gap: 7px;
}

.TabUi_3 .Button {
	width: 55px;
	height: 32px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	border-bottom: 2px solid transparent;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

.TabUi_3 .Button.On {
	color: var(--primary);
	border-bottom: 2px solid var(--primary);
}

.TabUi_3 .Box {
	border-top: 2px solid #F4F4F4;
	margin-top: -2px;
	padding-top: 24px;
	padding-left: 20px;
}

.TabUi_3 .Box .Content {
	display: none;
	max-height: 809px;
	overflow: auto;
}

.TabUi_3 .Box .Content.On {
	display: block;
}

.TabUi_4 .Menu {
	display: flex;
	justify-content: center;
}

.TabUi_4 .Button {
	flex: 1 1 0;
	height: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 10px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	border-bottom: 2px solid #E1E3EA;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

.TabUi_4 .Button.On {
	font-weight: 600;
	color: var(--primary);
	border-bottom-color: var(--primary);
}

.TabUi_4 .Sub {
	padding-top: 20px;
}

.TabUi_4 .Sub .Content {
	display: none;
	font-size: 13px;
	font-weight: 400;
	color: #6D7584;
	line-height: 22px;
}

.TabUi_4 .Sub .Content.On {
	display: block;
}

.TabUi_5 .TabList {
	position: relative;
	display: flex;
	padding: 0 20px;
	border-bottom: 1px solid var(--color13);
}

.TabUi_5 .TabList > button {
	flex: 1;
	height: 40px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	text-align: center;
	padding: 12px 0;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	position: relative;
	border-bottom: 2px solid transparent;
	transition: color 0.25s ease-in-out, border-bottom-color 0.25s ease-in-out;
}

@media screen and (min-width: 648px) {
	.TabUi_5 .TabList > button {
		flex: none;
		width: 100px;
	}
}

.TabUi_5 .TabList > button.On {
	border-bottom-color: var(--primary);
}

.TabUi_5 .TabList > button > .Badge {
	display: inline-block;
	min-width: 16px;
	height: 16px;
	line-height: 14px;
	padding: 0 4px;
	font-size: 12px;
	font-weight: 400;
	border-radius: 32px;
	border: 1px solid transparent;
}

.TabUi_5 .TabList > button > .Badge.Style1 {
	color: var(--primary);
	border-color: var(--primary);
}

.TabUi_5 .TabList > button > .Badge.Style2 {
	color: var(--white);
	background-color: var(--primary);
}

.TabUi_5 .TabList > button > .Badge.Style3 {
	color: var(--white);
	background-color: var(--disabled2);
}

.TabUi_5 .TabContentWrap {
	padding: 20px;
}

.TabUi_5 .TabContentWrap .TabContent {
	display: none;
	/* Custom Area */
}

.TabUi_5 .TabContentWrap .TabContent.On {
	display: block;
}

.TabUi_6 {
	display: flex;
	justify-content: center;
	gap: 70px;
}

.TabUi_6 .TabList {
	width: 230px;
	padding: 80px 50px 80px 0;
	border-right: 1px solid #EAEAEA;
}

.TabUi_6 .TabList > li + li {
	margin-top: 24px;
}

.TabUi_6 .TabList > li {
	position: relative;
	padding-left: 16px;
	font-size: 15px;
	font-weight: 400;
	color: var(--color7);
	cursor: pointer;
}

.TabUi_6 .TabList > li::before {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	content: "";
	display: inline-block;
	width: 7px;
	height: 12px;
	background: url("/icon/hanwoolSociety/icon_1.svg") no-repeat;
}

.TabUi_6 .TabList > li.On {
	font-size: 19px;
	font-weight: 700;
	color: var(--color17);
}

.TabUi_6 .TabList > li.On::before {
	background: url("/icon/hanwoolSociety/icon_1_on.svg") no-repeat;
}

.TabUi_6 .TabContentWrap {
	flex: 1 1 0;
	padding: 80px 0;
}

.TabUi_6 .TabContentWrap .TabContent {
	display: none;
	/* Custom Area */
}

.TabUi_6 .TabContentWrap .TabContent.On {
	display: block;
}

.TabUi_7 .TabList {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

@media screen and (min-width: 1140px) {
	.TabUi_7 .TabList {
		gap: 40px;
		border-bottom: 1px solid var(--color13);
	}
}

.TabUi_7 .TabList > button {
	height: 60px;
	padding: 0 8px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--color5);
	letter-spacing: -0.3px;
	cursor: pointer;
	border-bottom: 3px solid transparent;
	transition: border-bottom-color 0.25s ease-in-out;
}

.TabUi_7 .TabList > button.On {
	font-weight: 700;
	color: var(--primary);
	border-bottom-color: var(--primary);
}

.TabUi_7 .TabContentWrap {
	padding: 40px 20px 0;
}

@media screen and (min-width: 1140px) {
	.TabUi_7 .TabContentWrap {
		padding: 120px 0 0 0;
		width: 1140px;
		margin: 0 auto;
	}
}

.TabUi_7 .TabContentWrap .TabContent {
	display: none;
	/* Custom Area */
}

.TabUi_7 .TabContentWrap .TabContent.On {
	display: block;
}

.TabUi_8 .TabList {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 22px;
}

@media screen and (min-width: 648px) {
	.TabUi_8 .TabList {
		justify-content: flex-start;
	}
}

.TabUi_8 .TabList > button {
	height: 32px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--color9);
	letter-spacing: -0.3px;
	cursor: pointer;
	border-bottom: 2px solid transparent;
	transition: border-bottom-color 0.25s ease-in-out;
}

.TabUi_8 .TabList > button.On {
	font-weight: 700;
	color: var(--color7);
	border-bottom-color: var(--color7);
}

.TabUi_8 .TabContentWrap {
	padding-top: 20px;
}

@media screen and (min-width: 648px) {
	.TabUi_8 .TabContentWrap {
		padding-top: 40px;
	}
}

.TabUi_8 .TabContentWrap .TabContent {
	display: none;
	/* Custom Area */
}

.TabUi_8 .TabContentWrap .TabContent.On {
	display: block;
}

.Wrap-1NB3QRC {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	text-align: center;
	font-size: 20px;
	font-weight: 700;
	color: #898989;
	line-height: 33px;
	letter-spacing: -0.1px;
}

@media screen and (max-width: 647px) {
	.Wrap-1NB3QRC {
		font-size: 14px;
		line-height: 24px;
	}
}

.Wrap-1NB3QRC .Loader_1 {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 5px solid #E8EDF9;
	border-top: 5px solid var(--primary);
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.Tooltip_1 {
	position: relative;
	display: inline-block;
	width: 16px;
	height: 16px;
}

.Tooltip_1 .Content {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 25px;
	left: 0;
	z-index: 10;
	min-width: 400px;
	padding: 8px 8px 18px 20px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	background-color: var(--white);
	border: 1px solid #EEE;
	border-radius: 10px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}

@media screen and (max-width: 1023px) {
	.Tooltip_1 .Content {
		left: -133px;
		min-width: 213px;
		padding: 16px 8px 20px 20px;
		font-size: 14px;
	}
}

.Tooltip_1 .Content.On {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

@media screen and (max-width: 1023px) {
	.Tooltip_1 .Content .BtnTooltipClose > img {
		width: 24px;
	}
}

.Tooltip_1 .Content > .Sub {
	margin-top: 6px;
	color: rgba(126, 130, 137, 0.8);
	line-height: normal;
}

@media screen and (max-width: 1023px) {
	.Tooltip_1 .Content > .Sub {
		font-size: 13px;
	}
}

@media screen and (max-width: 1023px) {
	.Tooltip_1 .Content > .Sub .Block {
		display: block;
	}
}

.Box-X1PZ5R6 {
	position: relative;
}

.Box-X1PZ5R6 .Tooltip_2 {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 38px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 110;
	padding: 0 8px;
	height: 23px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 11px;
	font-weight: 700;
	color: var(--color6);
	letter-spacing: -0.3px;
	white-space: nowrap;
	background-color: var(--color15);
	border: 1px solid var(--color6);
	border-radius: 20px;
	transition: opacity 0.25s ease-in-out;
}

.Box-X1PZ5R6 .Tooltip_2::after {
	content: "";
	position: absolute;
	top: -4px;
	left: 50%;
	transform: translateX(-50%) rotate(-45deg);
	display: inline-block;
	width: 6px;
	height: 6px;
	background-color: var(--color15);
	border: 1px solid var(--color6);
	border-left: none;
	border-bottom: none;
}

.Box-X1PZ5R6:hover .Tooltip_2 {
	opacity: 1;
	visibility: visible;
}

.Tooltip_3 {
	display: none;
	position: absolute;
	top: 26px;
	left: 0;
	z-index: 10;
	padding: 8px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--color8);
	letter-spacing: -0.3px;
	white-space: nowrap;
	background-color: var(--white);
	border: 1px solid #DEE2E6;
	border-radius: 8px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.Box-C1PVVQD {
	position: relative;
	width: 16px;
	height: 16px;
}

.Tooltip_4 {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 25px;
	left: 0;
	z-index: 10;
	width: 400px;
	padding: 20px;
	background-color: var(--white);
	border: 1px solid var(--color13);
	border-radius: 12px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
	transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
}

.Tooltip_4 > .Content > li + li {
	margin-top: 8px;
}

.Tooltip_4 > .Content > li > .Title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Tooltip_4 > .Content > li > .Desc {
	margin: 12px 12px 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--color8);
	line-height: 24px;
	letter-spacing: -0.3px;
}

.Tooltip_4 > .Content > li > .Desc > li + li {
	margin-top: 8px;
}

.Tooltip_4 > .Content > li > .Desc > li .BtnBox {
	text-align: right;
}

.Tooltip_4.On {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.Tooltip_4.Style2 {
	top: 44px;
	left: 385px;
}

.Tooltip_4.Style3 {
	top: 44px;
	left: 578px;
}

.Flag_1 {
	width: 48px;
	height: 22px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--primary);
	background-color: rgba(63, 99, 191, 0.07);
	border: 1px solid rgba(63, 99, 191, 0.28);
	border-radius: 20px;
}

.Flag_2,
.Flag_3 {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
	line-height: 20px;
	background-color: var(--white);
	border: 1px solid #A8A69D;
	border-radius: 20px;
}

.Flag_2.Flag_2,
.Flag_3.Flag_2 {
	padding: 20px;
}

.Flag_2.Flag_3,
.Flag_3.Flag_3 {
	display: block;
	width: 100%;
	max-width: 350px;
	padding: 10px 16px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Flag_2:hover,
.Flag_3:hover {
	border-color: var(--primary);
	box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.15);
	transition: all 0.25s ease-in-out;
}

.Flag_4 {
	padding: 8px 11px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--color7);
	background-color: var(--white);
	border-radius: 20px;
}

.Flag_5 {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 4px 5px;
	font-size: 8px;
	font-weight: 700;
	white-space: nowrap;
	border-width: 1px;
	border-style: solid;
	border-radius: 18px;
}

.Flag_5.Style1 {
	color: #303038;
	border-color: #303038;
}

.Flag_5.Style2 {
	color: #FF7700;
	border-color: #FF7700;
}

.Flag_6 {
	height: 24px;
	padding: 0 8px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	background-color: #5647FF;
	border-radius: 20px;
}

.Flag_7 {
	position: relative;
	height: 20px;
	padding: 0 12px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	color: var(--white);
	white-space: nowrap;
	border-radius: 10px;
}

.Flag_7.Style1 {
	background-color: #FF5B16;
}

.Flag_7.Style2 {
	background-color: #FFD400;
}

.Flag_7:hover .Tooltip_3 {
	display: flex;
}

.Flag_8 {
	font-family: "Roboto", sans-serif;
	position: relative;
	width: 27px;
	height: 22px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	white-space: nowrap;
}

.Flag_8 > span {
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Flag_8.Style1 {
	background: url("/icon/detailView/icon_8_1.svg") no-repeat;
}

.Flag_8.Style2 {
	background: url("/icon/detailView/icon_8_2.svg") no-repeat;
}

.Flag_8.Style3 {
	background: url("/icon/detailView/icon_8_3.svg") no-repeat;
}

.Flag_9 {
	max-width: 100px;
	padding: 7px 10px;
	display: block;
	font-size: 11px;
	font-weight: 700;
	color: #A5D8FF;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	background-color: #0F3359;
	border-radius: 32px;
}

.Flag_10 {
	font-family: "Roboto", sans-serif;
	width: 14px;
	height: 14px;
	padding-top: 1px;
	padding-left: 2px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 8px;
	font-weight: 700;
	color: var(--white);
	white-space: nowrap;
	line-height: 10px;
}

.Flag_10.Style1 {
	background: url("/icon/detailView/icon_30_1.svg") no-repeat;
}

.Flag_10.Style2 {
	background: url("/icon/detailView/icon_30_2.svg") no-repeat;
}

.Flag_10.Style3 {
	background: url("/icon/detailView/icon_30_3.svg") no-repeat;
}

.Flag_10.Style4 {
	background: url("/icon/detailView/icon_30_4.svg") no-repeat;
}

.Flag_10.Style5 {
	background: url("/icon/detailView/icon_30_5.svg") no-repeat;
}

.Flag_10.Style6 {
	color: var(--color10);
	background: url("/icon/detailView/icon_30_6.svg") no-repeat;
}

.Flag_11 {
	height: 19px;
	padding: 0 4px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 11px;
	font-weight: 500;
	color: var(--color9);
	white-space: nowrap;
	background-color: rgba(194, 194, 194, 0.25);
	border-radius: 4px;
}

.Flag_12 {
	position: relative;
	padding: 0 8px;
	height: 21px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
	border-width: 1px;
	border-style: solid;
	border-radius: 10px;
}

.Flag_12.Style1 {
	color: var(--primary);
	border-color: var(--primary);
}

.Flag_12.Style2 {
	color: #FF5B16;
	border-color: #FF5B16;
}

.Flag_12.Style3 {
	color: #FFD400;
	border-color: #FFD400;
}

.Flag_12.Style4 {
	color: #DEE2E6;
	border-color: #DEE2E6;
}

.Flag_12.Style5 {
	color: #FF5B16;
	border-color: #FF5B16;
}

.Flag_12.Style6 {
	color: #D9D9D9;
	border-color: #D9D9D9;
}

.Flag_12:hover .Tooltip_3 {
	display: flex;
}

.Flag_13 {
	height: 20px;
	padding: 0 8px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	white-space: nowrap;
	border-radius: 20px;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.Flag_13.Style1 {
	background-color: var(--white);
	border-color: var(--color5);
}

.Flag_13.Style2 {
	background-color: var(--color15);
	border-color: var(--color10);
}

.Flag_13.Style3 {
	background-color: var(--tertiary);
	border-color: var(--tertiary);
}

.Flag_13.Style4 {
	color: var(--color9);
	background-color: var(--white);
	border-color: var(--color11);
}

.Flag_13.Style5 {
	background-color: var(--disabled);
	border-color: var(--disabled);
}

.Flag_14 {
	height: 17px;
	padding: 0 8px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 9px;
	font-weight: 700;
	color: var(--primary);
	white-space: nowrap;
	background-color: var(--white);
	border-radius: 12px;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.Flag_14.Style1 {
	border-color: var(--primary);
}

.Flag_14.Style2 {
	border-color: var(--color4);
}

.Flag_14.Style3 {
	color: var(--secondary);
	border-color: var(--secondary);
}

.Flag_14.Style4 {
	color: var(--color9);
	background-color: var(--color15);
	border-color: var(--color15);
}

.Flag_15 {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 0;
	background-repeat: no-repeat;
	background-size: contain;
}

.Flag_15.Style1 {
	width: 68px;
	height: 22px;
	background-image: url("/images/searchResults/img_1_1.png");
}

.Flag_15.Style2 {
	width: 68px;
	height: 22px;
	background-image: url("/images/searchResults/img_1_2.png");
}

.Flag_15.Style3 {
	width: 34px;
	height: 22px;
	background-image: url("/images/searchResults/img_1_3.png");
}

.Flag_15.Style4 {
	width: 38px;
	height: 22px;
	background-image: url("/images/searchResults/img_1_4.png");
}

.Flag_15.Style5 {
	width: 32px;
	height: 25px;
	background-image: url("/images/searchResults/img_1_5.png");
}

.Flag_15.Style6 {
	width: 28px;
	height: 17px;
	background-image: url("/images/searchResults/img_1_6.png");
}

.Flag_16 {
	height: 17px;
	padding: 0 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 9px;
	font-weight: 700;
	white-space: nowrap;
	background-color: var(--white);
	border-radius: 12px;
	border-width: 1px;
	border-style: solid;
	border-color: transparent;
}

.Flag_16.Style1 {
	color: var(--color8);
	border-color: var(--color8);
}

.Flag_17 {
	height: 26px;
	padding: 0 11px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: -0.3px;
	white-space: nowrap;
	background-color: var(--color15);
	border-radius: 12px;
}

.Flag_18 {
	height: 22px;
	padding: 0 8px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--primary);
	white-space: nowrap;
	background-color: var(--white);
	border: 1px solid rgba(73, 120, 244, 0.8);
	border-radius: 20px;
}

.Badge_1 {
	padding: 0 8px;
	height: 20px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.3px;
	white-space: nowrap;
	background-color: var(--secondary);
	border-radius: 50px;
}

.Badge_2 {
	height: 20px;
	padding: 0 4px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--primary);
	background-color: var(--color3);
	border-radius: 4px;
}

.Badge_3 {
	height: 27px;
	padding: 0 8px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 15px;
	font-weight: 500;
	color: var(--color6);
	border: 1px solid var(--color12);
	border-radius: 5px;
}

.Badge_4 {
	height: 18px;
	padding: 0 4px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 10px;
	font-weight: 400;
	color: var(--white);
	letter-spacing: -0.3px;
	background-color: rgba(0, 0, 0, 0.8);
	border-radius: 4px 0 8px 0;
}

.ToastPopup {
	display: none;
	position: absolute;
	top: -28px;
	left: -12px;
	z-index: 10;
	height: 36px;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding-left: 13px;
	font-size: 12px;
	font-weight: 500;
	color: var(--white);
	border-radius: 10px;
	background: linear-gradient(90deg, #4978F4 0%, #49AEF4 100%);
	box-shadow: 1px 2px 4px 0 rgba(0, 0, 0, 0.12);
}

.ToastPopup.Mo {
	position: relative;
	top: auto;
	left: auto;
	margin: 20px auto;
	gap: 0;
	font-weight: 700;
}

.ToastPopup::after {
	content: "";
	position: absolute;
	top: 29px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 13px;
	height: 8px;
	background-color: #4A94F5;
}

.ToastPopup.On {
	display: flex;
}

.ToastPopup.Type2 {
	top: 90px;
	left: 20px;
}

.ToastPopup_2 {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 100;
	transform: translateY(45px);
	width: 100%;
	padding: 16px;
	background-color: #FFF5F5;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	text-align: left;
	border-radius: 10px;
	border: 1px solid #DEE2E6;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
	transition: opacity 1s ease, transform 1s ease;
}

.ToastPopup_2.Show {
	visibility: visible;
	opacity: 1;
	transform: translateY(25px);
}

.ToastPopup_2 > div + div {
	margin-top: 8px;
}

.ToastPopup_2 .Accent {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	color: var(--error);
	font-weight: 700;
}

.ToastPopup_3 {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 100;
	transform: translateY(20px);
	width: 100%;
	padding: 22px 12px;
	background-color: var(--color7);
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.12);
	transition: opacity 1s ease, transform 1s ease;
}

.ToastPopup_3.Show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.ToastPopup_4 {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 40px;
	right: -30px;
	z-index: 100;
	transform: translateY(20px);
	height: 37px;
	padding: 0 16px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 500;
	color: var(--white);
	line-height: 36px; /*행간 적용해야 개발 서버에서 텍스트 흔들리지 않음.*/
	white-space: nowrap;
	background-color: var(--primary);
	border-radius: 20px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	transition: opacity 1s ease, transform 1s ease;
	animation: Bounce 2.5s infinite ease-in-out;
}

.ToastPopup_4::after {
	content: "";
	position: absolute;
	top: -8px;
	right: 55px;
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url("/icon/main/icon_10.svg") no-repeat;
	pointer-events: none;
}

.ToastPopup_4.Show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.ToastPopup_4 > a {
	line-height: 36px; /*행간 적용해야 개발 서버에서 텍스트 흔들리지 않음.*/
}

.ToastPopup_4 > a strong {
	font-weight: 700;
}

.ToastPopup_4 .BtnToastClose {
	margin-left: 8px;
	margin-right: 16px;
}

.ToastPopup_4.Style2 {
	margin-top: 16px;
	visibility: visible;
	opacity: 1;
	transform: none;
	position: relative;
	top: auto;
	right: auto;
	z-index: initial;
	animation: none;
	display: inline-flex;
}

@media screen and (max-width: 1023px) {
	.ToastPopup_4.Style2 {
		display: flex;
		flex-direction: column;
		height: auto;
		padding: 12px 20px;
	}
}

.ToastPopup_4.Style2::after {
	left: 30px;
}

.ToastPopup_4.Style2 .Box-2WW769U {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

@media screen and (max-width: 1023px) {
	.ToastPopup_4.Style2 .Box-2WW769U {
		flex-direction: column;
		align-items: flex-start;
	}
}

.ToastPopup_4.Style2 .Box-2WW769U > .TextCell {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	line-height: 14px;
	letter-spacing: -0.3px;
}

@media screen and (max-width: 1023px) {
	.ToastPopup_4.Style2 .Box-2WW769U > .TextCell {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
	}
}

.ToastPopup_4.Style2 .Box-2WW769U > .TextCell .Title {
	margin-left: 4px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
}

.ToastPopup_4.Style2 .Box-2WW769U > .TextCell .Title > .OriginalText {
	max-width: 600px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

@media screen and (max-width: 1023px) {
	.ToastPopup_4.Style2 .Box-2WW769U > .TextCell .Title > .OriginalText {
		width: calc(100vw - 110px);
		min-width: 265px;
		max-width: fit-content;
	}
}

@media screen and (max-width: 1023px) {
	.ToastPopup_4.Style2 .Box-2WW769U > .TextCell .SubDesc {
		width: 100%;
		text-align: right;
	}
}

.ToastPopup_4.Style2 .Box-2WW769U > .Date {
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	line-height: 12px;
	letter-spacing: -0.3px;
}

@media screen and (max-width: 1023px) {
	.ToastPopup_4.Style2 .Box-2WW769U > .Date {
		align-self: flex-end;
	}
}

@keyframes Bounce {
	0% {
		top: 40px;
	}
	25% {
		top: 43px;
	}
	50% {
		top: 40px;
	}
	75% {
		top: 43px;
	}
	100% {
		top: 40px;
	}
}

.ToastPopup_5 {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: -35px;
	right: 215px;
	z-index: 100;
	transform: translateY(20px);
	height: 36px;
	padding: 0 16px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	line-height: 36px; /*행간 적용해야 개발 서버에서 텍스트 흔들리지 않음.*/
	white-space: nowrap;
	background-color: var(--primary);
	border-radius: 20px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	transition: opacity 1s ease, transform 1s ease;
	animation: Bounce2 2.5s infinite ease-in-out;
}

.ToastPopup_5 > a {
	line-height: 36px; /*행간 적용해야 개발 서버에서 텍스트 흔들리지 않음.*/
}

.ToastPopup_5::after {
	content: "";
	position: absolute;
	top: 35px;
	right: 55px;
	display: inline-block;
	width: 12px;
	height: 12px;
	background: url("/icon/payment/icon_5.svg") no-repeat;
	pointer-events: none;
}

.ToastPopup_5.Show {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
}

.ToastPopup_5 .BtnToastClose {
	margin-left: 8px;
}

@keyframes Bounce2 {
	0% {
		top: -35px;
	}
	25% {
		top: -38px;
	}
	50% {
		top: -35px;
	}
	75% {
		top: -38px;
	}
	100% {
		top: -35px;
	}
}

.TextAreaUi_1 {
	width: 100%;
	padding: 10px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
	border: 1px solid #AEB6CC;
	border-radius: 6px;
	resize: none;
	outline: none;
}

.TextAreaUi_1::placeholder {
	color: #6D7584;
}

.TextAreaUi_2 {
	width: 100%;
	height: 302px;
	padding: 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
	line-height: 20px;
	background-color: var(--white);
	border: 1px solid #898989;
	border-radius: 6px;
	resize: none;
	outline: none;
}

.TextAreaUi_2::placeholder {
	color: #6D7584;
}

.TextInput_1 {
	position: relative;
	width: 100%;
	height: 48px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding-left: 16px;
	padding-right: 16px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	background-color: var(--white);
	border-radius: 8px;
	border-width: 1px;
	border-style: solid;
	border-color: #D0D0D0;
}

.TextInput_1 > input {
	flex: 1 1 0;
	display: block;
	width: 0;
	background-color: transparent;
	outline-width: 0;
	border: none;
}

.TextInput_1 > button {
	width: 24px;
	height: 24px;
	-webkit-appearance: button;
	background-color: transparent;
	background-image: none;
}

.TextInput_2 {
	position: relative;
	width: 554px;
	height: 48px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding-left: 28px;
	padding-right: 28px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	background-color: var(--white);
	border-radius: 24px;
	border-width: 2px;
	border-style: solid;
	border-color: var(--primary);
}

@media screen and (max-width: 1023px) {
	.TextInput_2 {
		width: 100%;
	}
}

.TextInput_2 > input {
	display: block;
	width: 0;
	flex: 1 1 0;
	background-color: transparent;
	outline: none;
	border: none;
}

.TextInput_2 > input::placeholder {
	color: rgba(61, 61, 61, 0.5);
}

.TextInput_2 > button {
	width: 22px;
	height: 22px;
	-webkit-appearance: button;
}

.TextInput_2.Focused {
	border-width: 1px;
	border-color: #EEE;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.13);
}

@media screen and (max-width: 1023px) {
	.TextInput_2.Focused {
		border-width: 2px;
		border-color: var(--primary);
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
		box-shadow: none;
	}
}

.TextInput_2:focus-within {
	border-width: 1px;
	border-color: #EEE;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.13);
}

@media screen and (max-width: 1023px) {
	.TextInput_2:focus-within {
		border-width: 2px;
		border-color: var(--primary) !important;
		border-bottom-left-radius: 24px;
		border-bottom-right-radius: 24px;
		box-shadow: none;
	}
}

.TextInput_2.NoFocused {
	border-color: var(--primary);
}

.TextInput_2 .RecentSearches {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	width: 100%;
	overflow-y: auto;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	background-color: var(--white);
	border: 1px solid #EEE;
	border-radius: 0 0 24px 24px;
	box-shadow: 0 5px 2px 0 rgba(0, 0, 0, 0.05), 0 5px 8px 0 rgba(0, 0, 0, 0.08);
}

.TextInput_2 .RecentSearches .Searching {
	padding: 12px 0;
}

.TextInput_2 .RecentSearches .Searching > li > a {
	display: block;
	padding: 13px 28px;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.TextInput_2 .RecentSearches .Searching > li > a:hover {
	background-color: #F5F6F7;
}

.TextInput_2 .RecentSearches .Searching > li > a .Text {
	flex: 1 1 0;
	padding: 0;
	display: block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.TextInput_2 .RecentSearches .Recent .Title {
	padding: 20px 28px;
	display: flex;
	justify-content: space-between;
}

.TextInput_2 .RecentSearches .Recent .Title .Text {
	font-weight: 700;
}

.TextInput_2 .RecentSearches .Recent .Title .BtnDelete {
	color: rgba(61, 61, 61, 0.4);
}

.TextInput_2 .RecentSearches .Recent .Content .Type1 {
	display: none;
	padding: 13px 28px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
}

.TextInput_2 .RecentSearches .Recent .Content .Type2 {
	margin-bottom: 12px;
}

.TextInput_2 .RecentSearches .Recent .Content .Type2 > li {
	padding: 0 14px 0 28px;
}

.TextInput_2 .RecentSearches .Recent .Content .Type2 > li:hover {
	background-color: #F5F6F7;
}

.TextInput_2 .RecentSearches .Recent .Content .Type2 > li > .Text {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 34px;
}

.TextInput_2 .RecentSearches .Recent .Content .Type2 > li > .Text .Word {
	flex: 1 1 0;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 40px;
}

.TextInput_2 .RecentSearches .Recent .Content .Type2 > li > .Text .Sub {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	color: rgba(61, 61, 61, 0.4);
}

.TextInput_2 .RecentSearches .Recent .BtnClose {
	height: 40px;
	padding: 0 28px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: rgba(61, 61, 61, 0.4);
	border-top: 1px solid #F0F0F3;
}

.Layer-DEATENQ {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
	width: 100%;
	height: 100%;
	background-color: var(--white);
}

.Layer-DEATENQ.On {
	display: block;
}

.Layer-DEATENQ .Head {
	display: flex;
	align-items: center;
	padding: 15px 10px 15px 0;
}

.Layer-DEATENQ .Head .TextInput_1.Mo,
.Layer-DEATENQ .Head .TextInput_2.Mo {
	flex: 1 1 0;
	width: 100%;
}

.Layer-DEATENQ .RecentSearches {
	height: calc(100dvh - 78px);
	overflow: auto;
	padding: 0 20px;
}

.Layer-DEATENQ .RecentSearches .Searching > li > a {
	padding: 12px 0;
	display: flex;
	align-items: center;
	gap: 6px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Layer-DEATENQ .RecentSearches .Searching > li > a .Text {
	flex: 1 1 0;
	display: block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Layer-DEATENQ .RecentSearches .Recent {
	margin-top: 10px;
}

.Layer-DEATENQ .RecentSearches .Recent .Title {
	display: flex;
	justify-content: space-between;
}

.Layer-DEATENQ .RecentSearches .Recent .Title .BtnDelete {
	color: rgba(61, 61, 61, 0.4);
}

.Layer-DEATENQ .RecentSearches .Recent .Content {
	margin-top: 20px;
}

.Layer-DEATENQ .RecentSearches .Recent .Content .Type1 {
	display: none;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
}

.Layer-DEATENQ .RecentSearches .Recent .Content .Type2 {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.Layer-DEATENQ .RecentSearches .Recent .Content .Type2 > li > a {
	height: 32px;
	padding: 0 12px;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	border: 1px solid #E1E3EA;
	border-radius: 20px;
}

.Layer-DEATENQ .RecentSearches .Recent .Content .Type2 > li > a .Text {
	flex: 1 1 0;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Layer-DEATENQ .RecentSearches .Recent .Content .Type2 > li > a .Sub {
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	color: rgba(61, 61, 61, 0.4);
}

.Layer-DEATENQ .RecentSearches .Recent .BtnClose {
	height: 40px;
	padding: 0 28px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: rgba(61, 61, 61, 0.4);
	border-top: 1px solid #F0F0F3;
}

.Layer-DEATENQ .Text-SMWL8B2 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	min-width: 219px;
	padding: 15px 45px;
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	background-color: rgba(61, 61, 61, 0.8);
	border-radius: 50px;
}

.TextInput_3 {
	width: 100%;
}

.TextInput_3.TextInputMd > .TextField {
	height: 36px;
}

.TextInput_3.TextInputMd > .TextField > input {
	font-size: 16px;
}

.TextInput_3.TextInputMd2 > .TextField {
	height: 36px;
}

.TextInput_3.TextInputMd2 > .TextField > input {
	font-size: 14px;
}

.TextInput_3.Focus > .TextField {
	color: var(--color7);
	border-color: var(--color7);
}

.TextInput_3.Filled > .TextField > input {
	color: var(--color7);
}

.TextInput_3.Success > .TextField {
	border-color: var(--primary);
}

.TextInput_3.Success > .TextField > .IconAlert.Success {
	display: block;
}

.TextInput_3.Success > .CommentText {
	color: var(--primary);
}

.TextInput_3.Error > .TextField {
	border-color: var(--error);
}

.TextInput_3.Error > .TextField > .IconAlert.Error {
	display: block;
}

.TextInput_3.Error > .CommentText {
	color: var(--error);
}

.TextInput_3.ReadOnly > .TextField {
	pointer-events: none;
	background-color: var(--disabled);
}

.TextInput_3.ReadOnly > .TextField > input:not(:placeholder-shown) {
	color: var(--color7);
}

.TextInput_3.ReadOnly > .TextField > .BtnDelete {
	display: none;
}

.TextInput_3 > .TextField {
	position: relative;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 12px;
	gap: 12px;
	background-color: var(--white);
	border: 1px solid var(--color12);
	border-radius: 4px;
}

.TextInput_3 > .TextField > input {
	display: block;
	flex: 1 1 0;
	width: 0;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	background-color: transparent;
	border: none;
	outline: none;
}

.TextInput_3 > .TextField > input::placeholder {
	color: var(--color9);
}

.TextInput_3 > .TextField > .BtnDelete {
	display: none;
	width: 16px;
	height: 16px;
}

.TextInput_3 > .TextField > .BtnDelete.On {
	display: block;
}

.TextInput_3 > .TextField > .IconAlert {
	display: none;
}

.TextInput_3 > .CommentText {
	margin: 2px 8px 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	text-align: left;
}

.TextInput_3 > .CommentText > .First {
	flex: 1 1 0;
}

.TextInput_4 {
	flex: 1 1 0;
	position: relative;
	width: 100%;
	height: 48px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: 0 20px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	background-color: var(--white);
	border-radius: 100px;
	border-width: 2px;
	border-style: solid;
	border-color: var(--primary);
}

@media screen and (min-width: 648px) {
	.TextInput_4 {
		height: 64px;
		border-width: 3px;
	}
}

.TextInput_4 > input {
	display: block;
	width: 0;
	flex: 1 1 0;
	background-color: transparent;
	outline: none;
	border: none;
}

.TextInput_4 > input::placeholder {
	color: var(--color10);
}

.TextInput_4 > button {
	-webkit-appearance: button;
}

.TextInput_4 > button > img {
	width: 24px;
	height: 24px;
}

@media screen and (min-width: 648px) {
	.TextInput_4 > button > img {
		width: 28px;
		height: 28px;
	}
}

.TextInput_5 {
	width: 100%;
	height: 32px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	padding: 0 20px;
	background-color: var(--color15);
	border-radius: 8px;
}

@media screen and (min-width: 648px) {
	.TextInput_5 {
		height: 39px;
	}
}

.TextInput_5 > input {
	display: block;
	width: 0;
	flex: 1 1 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--color9);
	letter-spacing: -0.3px;
	background-color: transparent;
	outline: none;
	border: none;
}

.TextInput_5 > input::placeholder {
	font-weight: 400;
	color: var(--color9);
}

.Layer-C2X835T {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 30;
	width: 100%;
	height: 100%;
	background-color: var(--white);
}

@media screen and (min-width: 648px) {
	.Layer-C2X835T {
		width: 648px;
		left: 50%;
		transform: translateX(-50%);
	}
}

.Layer-C2X835T > .Head {
	height: 50px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	padding: 0 20px;
	box-shadow: 0 1px 4px 0 var(--color18);
}

@media screen and (min-width: 648px) {
	.Layer-C2X835T > .Head {
		height: 64px;
		gap: 20px;
	}
}

.Layer-C2X835T > .Head .SearchArea {
	flex: 1 1 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

@media screen and (min-width: 648px) {
	.Layer-C2X835T > .Head .SearchArea {
		gap: 8px;
	}
}

.Layer-C2X835T > .Head .SearchArea .TextInput_5 {
	flex: 1 1 0;
	height: 32px;
}

@media screen and (min-width: 648px) {
	.Layer-C2X835T > .Head .SearchArea .TextInput_5 {
		height: 39px;
	}
}

.Layer-C2X835T > .Head .BtnDataHome > img {
	width: 28px;
	height: 28px;
}

@media screen and (min-width: 648px) {
	.Layer-C2X835T > .Head .BtnDataHome > img {
		width: 32px;
		height: 32px;
	}
}

.Layer-C2X835T > .Body {
	padding: 40px 20px;
}

.Layer-C2X835T > .Body .Keywords > .Title {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--color7);
}

.Layer-C2X835T > .Body .Keywords > .Title > .BtnDelete {
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
}

.Layer-C2X835T > .Body .Keywords > .NoRecent {
	display: none;
	margin-top: 20px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
}

.Layer-C2X835T > .Body .Keywords > .List {
	margin-top: 20px;
}

.Layer-C2X835T > .Body .Keywords > .List > li + li {
	margin-top: 16px;
}

.Layer-C2X835T > .Body .Keywords > .List > li {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
}

.Layer-C2X835T > .Body .Keywords > .List > li > .BtnLink {
	flex: 1 1 0;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 400;
	color: var(--color8);
	letter-spacing: -0.3px;
}

.Layer-C2X835T > .Body .Keywords > .List.Style2 {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.Layer-C2X835T > .Body .Keywords > .List.Style2 .Item {
	height: 30px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: 0 12px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color8);
	letter-spacing: -0.3px;
	background-color: var(--color15);
	border-radius: 20px;
}

.Layer-C2X835T > .Body .Keywords > .List.Style2 .Item > div {
	max-width: 276px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Layer-C2X835T > .Body .Popular {
	margin-top: 20px;
}

.Layer-C2X835T.On {
	display: block;
}

.Pagination_1 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 60px;
}

.Pagination_1 .Btn {
	width: 80px;
	height: 40px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white);
	border: 1px solid #E1E3EA;
	border-radius: 8px;
}

.Pagination_1 .Number {
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: var(--color11);
}

.Pagination_1 .Number > strong {
	font-weight: 700;
	color: var(--color7);
}

.Pagination_2 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.Pagination_2 > * {
	width: 36px;
	height: 36px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--color5);
	background-color: var(--white);
	border-width: 1px;
	border-style: solid;
	border-color: var(--color13);
	border-radius: 8px;
}

.Pagination_2 .Btn.Disabled {
	opacity: 0.5;
	pointer-events: none;
}

.Pagination_2 .On {
	font-weight: 700;
	color: var(--white);
	background-color: var(--color17);
	border-color: var(--color17);
}

.Pagination_2 .Omit {
	border-color: transparent;
}

.FloatingBtn_1 {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	right: 15px;
	bottom: 65px;
	z-index: 20;
	transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
	cursor: pointer;
}

.FloatingBtn_2 {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 20;
	width: 52px;
	height: 52px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 500;
	color: #212224;
	background-color: var(--white);
	border-radius: 26px;
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
	transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
	cursor: pointer;
}

.TableUi_1 {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
	border: 1px solid var(--color14);
}

.TableUi_1 > * > tr > * {
	padding: 10px 16px;
	height: 40px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 17px;
	border: 1px solid var(--color14);
}

.TableUi_1 > * > tr > th {
	font-weight: 700;
	text-align: center;
	background-color: var(--color16);
}

.TableUi_1 > * > tr > th.LeftAligned {
	text-align: left;
}

.TableUi_2 {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
	border-top: 1px solid var(--color14);
	border-bottom: 1px solid var(--color14);
}

.TableUi_2 > * > tr {
	border-bottom: 1px solid var(--color14);
}

.TableUi_2 > * > tr > * {
	height: 56px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	text-align: center;
	letter-spacing: -0.3px;
}

.TableUi_2 > * > tr > th {
	font-weight: 700;
	background-color: var(--color16);
}

.TableUi_2 > * > tr > td > .Box-HYWS37J {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.TableUi_2 > * > tr > td > .Box-HYWS37J > .Flag {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.TableUi_2 > * > tr > td > .Box-HYWS37J > .Flag > .Icon {
	width: 16px;
	height: 16px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.TableUi_2 > * > tr > td > .Box-HYWS37J > .Title {
	flex: 1 1 0;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: left;
}

.TableUi_2 > * > tr > td > .Purchase {
	font-size: 14px;
	font-weight: 700;
	color: var(--error);
}

.TableUi_2 > * > tr > td > .Regular {
	position: relative;
	margin-top: 4px;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: var(--color10);
}

.TableUi_2 > * > tr > td > .Regular::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background-color: var(--color10);
}

.TableUi_3 {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
}

.TableUi_3 > * > tr > * {
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 17px;
	letter-spacing: -0.3px;
	text-align: left;
}

.TableUi_3 > * > tr > th {
	font-weight: 700;
}

.TableUi_3 > * > tr > td {
	padding: 12px 0;
}

.TableUi_3 > * > tr > td.Purchase {
	font-weight: 700;
	color: var(--error);
}

.TableUi_4 {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
	border-top: 1px solid var(--color14);
	border-bottom: 1px solid var(--color14);
}

.TableUi_4 > * > tr {
	border-bottom: 1px solid var(--color14);
}

.TableUi_4 > * > tr > * {
	height: 52px;
	font-size: 14px;
	color: var(--color7);
	line-height: 20px;
}

.TableUi_4 > * > tr > th {
	font-weight: 700;
	text-align: center;
	background-color: var(--color16);
}

.TableUi_4 > * > tr > td {
	padding: 20px;
	font-weight: 400;
	text-align: left;
	letter-spacing: -0.3px;
}

.TableUi_4 > * > tr > td.CenterAligned {
	text-align: center;
}

.TableUi_4 > * > tr > td.RightAligned {
	text-align: right;
}

.TableUi_4 > * > tr > td .EllipsisText {
	display: flex;
	flex-direction: row;
	gap: 4px;
}

.TableUi_4 > * > tr > td .EllipsisText > .Text {
	flex: 1 1 0;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ToggleContainer .ToggleUi.Style2 {
	width: 160px;
	height: 46px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	padding: 4px;
	background: url("/icon/easyai/toggle_2.svg") no-repeat;
	background-size: 160px;
}

.ToggleContainer .ToggleUi.Style2 .BtnToggle {
	width: 76px;
	padding: 11px 0 12px 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	background: transparent;
	border-radius: 20px;
	transition: all 0.25s ease-in-out;
}

.ToggleContainer .ToggleUi.Style2 .BtnToggle.Active {
	background-color: var(--white);
}

.ToggleContainer .ToggleContentWrap .ContentItem {
	display: none;
}

.ToggleContainer .ToggleContentWrap .ContentItem.Active {
	display: block;
}

.ToggleUi_1 .Item {
	border-top: 1px solid #F4F4F4;
}

.ToggleUi_1 .Item .Btn {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.3s;
	font-size: 16px;
	color: var(--color7);
	text-align: left;
	background-color: var(--white);
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.ToggleUi_1 .Item .Btn .Title {
	color: var(--color7);
	font-weight: 400;
	transition: color 0.3s ease;
}

.ToggleUi_1 .Item .Btn .Arrow {
	width: 14px;
	aspect-ratio: 1/1;
	transition: transform 0.3s;
}

.ToggleUi_1 .Item .Btn.Active .Title {
	font-weight: 600;
}

.ToggleUi_1 .Item .Btn.Active .Arrow {
	transform: rotate(180deg);
}

.ToggleUi_1 .Item .Content {
	display: none;
	padding-bottom: 32px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 21px;
	letter-spacing: -0.2px;
	background-color: var(--white);
}

.ToggleUi_2 .Item .Btn {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.25s ease-in-out;
	background-color: var(--white);
	cursor: pointer;
	border-bottom: 1px solid var(--color14);
}

.ToggleUi_2 .Item .Btn .Title {
	flex: 1 1 0;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: color 0.3s ease;
}

.ToggleUi_2 .Item .Btn .Title > img {
	width: 22px;
	height: 18px;
}

.ToggleUi_2 .Item .Btn .Title > .Text {
	flex: 1 1 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--color7);
	letter-spacing: -0.3px;
	text-align: left;
}

.ToggleUi_2 .Item .Btn .Arrow {
	width: 20px;
	height: 20px;
	transition: transform 0.25s ease-in-out;
}

.ToggleUi_2 .Item .Btn.Active .Arrow {
	transform: rotate(180deg);
}

.ToggleUi_2 .Item .Content {
	display: none;
	max-height: 418px;
	overflow: auto;
	padding: 32px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 22px;
	letter-spacing: -0.3px;
	background-color: var(--color16);
}

.ToggleUi_3 .Item .Btn {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background-color 0.25s ease-in-out;
	background-color: var(--white);
	border-bottom: 1px solid var(--color14);
	cursor: pointer;
}

.ToggleUi_3 .Item .Btn .Title {
	flex: 1 1 0;
	display: flex;
	gap: 4px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color7);
	letter-spacing: -0.3px;
	text-align: left;
	transition: color 0.3s ease;
}

.ToggleUi_3 .Item .Btn .Title > .Text {
	flex: 1 1 0;
}

.ToggleUi_3 .Item .Btn .Arrow {
	width: 20px;
	height: 20px;
	transition: transform 0.25s ease-in-out;
}

.ToggleUi_3 .Item .Btn.Active .Arrow {
	transform: rotate(180deg);
}

.ToggleUi_3 .Item .Content {
	display: none;
	padding: 20px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 22px;
	letter-spacing: -0.3px;
	background-color: var(--color16);
}

@media screen and (min-width: 648px) {
	.ToggleUi_3 .Item .Content {
		padding: 32px;
	}
}

.ToggleUi_3 .Item .Content.On {
	display: block;
}

.TextBox_1 {
	padding: 32px;
	background-color: var(--white);
	border: 1px solid var(--color12);
	border-radius: 8px;
}

.TextBox_2 {
	padding: 20px;
	background-color: var(--color15);
	border-radius: 8px;
}

.TextBox_3 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 80px;
	padding: 20px;
	background-color: var(--color15);
	border-radius: 8px;
}

.TextBox_3 > .Left {
	flex: 1 1 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
}

.TextBox_3 > .Left > .Flag {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

.TextBox_3 > .Left > .Flag > .Icon {
	height: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.TextBox_3 > .Left > .Title {
	flex: 1 1 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 21px;
	letter-spacing: -0.3px;
}

.TextBox_3 > .Right > .Purchase {
	font-size: 14px;
	font-weight: 700;
	color: var(--error);
	letter-spacing: -0.3px;
}

.TextBox_3 > .Right > .Regular {
	position: relative;
	margin-top: 4px;
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: var(--color10);
	letter-spacing: -0.3px;
}

.TextBox_3 > .Right > .Regular::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background-color: var(--color10);
}

.TextBox_4 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 20px;
	background-color: var(--color14);
	font-size: 20px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.5px;
}

.TextBox_4 > .Right {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 20px;
}

.TextBox_4 > .Right > .Price {
	font-family: "Roboto", sans-serif;
	color: var(--error);
}

.TextBox_5 {
	text-align: center;
}

.TextBox_5 > .Desc {
	font-size: 34px;
	font-weight: 400;
	color: var(--color7);
}

.TextBox_5 > .Desc > strong {
	font-weight: 700;
}

.TextBox_5 > .Detail {
	margin-top: 20px;
}

.TextBox_5 > .Detail > li + li {
	margin-top: 8px;
}

.TextBox_5 > .Detail > li {
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.TextBox_5 > .Detail > li > strong {
	font-weight: 700;
}

.TextBox_5 > .Detail > li > .BtnLink {
	font-weight: 700;
	color: var(--primary);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.TextBox_5 > .Detail > li > .BtnInfo {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.NotifyBox_1 {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 8px;
	padding: 16px;
	background-color: var(--white);
	border: 1px solid var(--color13);
	border-radius: 10px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.NotifyBox_1 > .Text {
	flex: 1 1 0;
}

.NotifyBox_1 > .Text > .Title {
	font-size: 14px;
	font-weight: 700;
	color: var(--error);
	letter-spacing: -1px;
	line-height: 16px;
}

.NotifyBox_1 > .Text > .Desc {
	margin-top: 12px;
}

.NotifyBox_1 > .Text > .Desc > li + li {
	margin-top: 8px;
}

.NotifyBox_1 > .Text > .Desc > li {
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.NotifyBox_1 > .Text > .Desc > li > .Error {
	color: var(--error);
}

.NotifyBox_1 > .Text > .Desc > li > .BtnLink {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.TermsBox_1 {
	height: 128px;
	overflow: auto;
	padding: 8px 12px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	border: 1px solid var(--color12);
	border-radius: 4px;
}

.Divider_1 {
	margin: 20px 0;
	width: 100%;
	height: 1px;
	background-color: var(--color13);
}

.ProgressBar_1 .StepText {
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	text-align: right;
}

.ProgressBar_1 .Bar {
	margin-top: 8px;
	position: relative;
	width: 100%;
	height: 8px;
	background-color: var(--color14);
	border-radius: 8px;
}

.ProgressBar_1 .Bar .Fill {
	/* width값은 inline 표시 */
	height: 100%;
	background-color: var(--primary);
	border-radius: 8px;
}

.ui-datepicker {
	font-family: "Roboto", sans-serif;
	width: 280px;
	padding: 0;
	overflow: hidden;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 22px;
	border: none;
	border-radius: 12px;
	box-shadow: 0 2px 8px 0 var(--color18);
}

.ui-datepicker .ui-datepicker-header {
	padding: 12px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--color13);
	border-radius: 0;
}

.ui-datepicker .ui-datepicker-title {
	font-weight: 400;
}

.ui-datepicker .ui-icon-circle-triangle-w {
	background-image: url("/icon/dataRequest/icon_17_1.svg");
	background-position: initial;
}

.ui-datepicker .ui-icon-circle-triangle-e {
	background-image: url("/icon/dataRequest/icon_17_2.svg");
	background-position: initial;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.ui-datepicker .ui-datepicker-prev > span,
.ui-datepicker .ui-datepicker-next > span {
	position: initial;
	margin: 0;
}

.ui-datepicker .ui-datepicker-prev {
	left: 20px;
}

.ui-datepicker .ui-datepicker-next {
	right: 20px;
}

.ui-datepicker .ui-state-hover,
.ui-datepicker .ui-widget-content .ui-state-hover,
.ui-datepicker .ui-widget-header .ui-state-hover,
.ui-datepicker .ui-state-focus,
.ui-datepicker .ui-widget-content .ui-state-focus,
.ui-datepicker .ui-widget-header .ui-state-focus,
.ui-datepicker .ui-button:hover,
.ui-datepicker .ui-button:focus {
	border: none;
	background: transparent;
}

.ui-datepicker table.ui-datepicker-calendar th {
	width: 36px;
	font-weight: 400;
}

.ui-datepicker table.ui-datepicker-calendar td {
	text-align: center;
}

.ui-datepicker table.ui-datepicker-calendar td .ui-state-default {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	background-color: transparent;
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 50%;
}

.ui-datepicker table.ui-datepicker-calendar td .ui-state-default.ui-state-active {
	color: var(--white);
	background-color: var(--primary);
	border: 1px solid var(--primary);
}

.ui-datepicker table.ui-datepicker-calendar td .ui-state-default.ui-state-highlight {
	border: 1px solid var(--primary);
}

.ui-datepicker .ui-datepicker-buttonpane {
	height: 48px;
	padding: 0;
	border-top: 1px solid var(--color13);
}

.ui-datepicker .ui-datepicker-buttonpane > button {
	display: block;
	opacity: 1;
	margin: 0;
	width: 100%;
	height: 100%;
	padding: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--primary);
	letter-spacing: -0.3px;
	background-color: transparent;
	border: none;
}

.ui-datepicker .ui-datepicker-buttonpane > button.ui-datepicker-close {
	display: none;
}

.ButtonLg,
.ButtonMd,
.ButtonSm,
.ButtonSsm,
.ButtonXs,
.ButtonXs2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding-left: 20px;
	padding-right: 20px;
	white-space: nowrap;
}

.ButtonLg.ButtonStyle1,
.ButtonMd.ButtonStyle1,
.ButtonSm.ButtonStyle1,
.ButtonSsm.ButtonStyle1,
.ButtonXs.ButtonStyle1,
.ButtonXs2.ButtonStyle1 {
	color: var(--white);
	background-color: var(--primary);
	border: 1px solid var(--primary);
}

.ButtonLg.ButtonStyle1.Type2,
.ButtonMd.ButtonStyle1.Type2,
.ButtonSm.ButtonStyle1.Type2,
.ButtonSsm.ButtonStyle1.Type2,
.ButtonXs.ButtonStyle1.Type2,
.ButtonXs2.ButtonStyle1.Type2 {
	border-radius: 0;
}

.ButtonLg.ButtonStyle1:hover,
.ButtonMd.ButtonStyle1:hover,
.ButtonSm.ButtonStyle1:hover,
.ButtonSsm.ButtonStyle1:hover,
.ButtonXs.ButtonStyle1:hover,
.ButtonXs2.ButtonStyle1:hover {
	background-color: #0564CA;
}

.ButtonLg.ButtonStyle1:disabled,
.ButtonMd.ButtonStyle1:disabled,
.ButtonSm.ButtonStyle1:disabled,
.ButtonSsm.ButtonStyle1:disabled,
.ButtonXs.ButtonStyle1:disabled,
.ButtonXs2.ButtonStyle1:disabled {
	color: var(--color10);
	background-color: var(--disabled);
	border-color: var(--disabled);
}

.ButtonLg.ButtonStyle2,
.ButtonMd.ButtonStyle2,
.ButtonSm.ButtonStyle2,
.ButtonSsm.ButtonStyle2,
.ButtonXs.ButtonStyle2,
.ButtonXs2.ButtonStyle2 {
	color: var(--primary);
	background-color: var(--white);
	border: 1px solid var(--primary);
}

.ButtonLg.ButtonStyle2:hover,
.ButtonMd.ButtonStyle2:hover,
.ButtonSm.ButtonStyle2:hover,
.ButtonSsm.ButtonStyle2:hover,
.ButtonXs.ButtonStyle2:hover,
.ButtonXs2.ButtonStyle2:hover {
	background-color: var(--color15);
}

.ButtonLg.ButtonStyle2:disabled,
.ButtonMd.ButtonStyle2:disabled,
.ButtonSm.ButtonStyle2:disabled,
.ButtonSsm.ButtonStyle2:disabled,
.ButtonXs.ButtonStyle2:disabled,
.ButtonXs2.ButtonStyle2:disabled {
	color: var(--color10);
	background-color: var(--disabled);
	border-color: var(--disabled);
}

.ButtonLg.ButtonStyle3,
.ButtonMd.ButtonStyle3,
.ButtonSm.ButtonStyle3,
.ButtonSsm.ButtonStyle3,
.ButtonXs.ButtonStyle3,
.ButtonXs2.ButtonStyle3 {
	color: var(--color7);
	background-color: var(--white);
	border: 1px solid var(--color11);
}

.ButtonLg.ButtonStyle3:hover,
.ButtonMd.ButtonStyle3:hover,
.ButtonSm.ButtonStyle3:hover,
.ButtonSsm.ButtonStyle3:hover,
.ButtonXs.ButtonStyle3:hover,
.ButtonXs2.ButtonStyle3:hover {
	background-color: var(--color15);
}

.ButtonLg.ButtonStyle3:disabled,
.ButtonMd.ButtonStyle3:disabled,
.ButtonSm.ButtonStyle3:disabled,
.ButtonSsm.ButtonStyle3:disabled,
.ButtonXs.ButtonStyle3:disabled,
.ButtonXs2.ButtonStyle3:disabled {
	color: var(--color10);
	background-color: var(--disabled);
	border-color: var(--disabled);
}

.ButtonLg.ButtonStyle4,
.ButtonMd.ButtonStyle4,
.ButtonSm.ButtonStyle4,
.ButtonSsm.ButtonStyle4,
.ButtonXs.ButtonStyle4,
.ButtonXs2.ButtonStyle4 {
	color: var(--color8);
	background-color: var(--color15);
	border: 1px solid var(--color15);
}

.ButtonLg.ButtonStyle4:hover,
.ButtonMd.ButtonStyle4:hover,
.ButtonSm.ButtonStyle4:hover,
.ButtonSsm.ButtonStyle4:hover,
.ButtonXs.ButtonStyle4:hover,
.ButtonXs2.ButtonStyle4:hover {
	border-color: var(--color11);
}

.ButtonLg.ButtonStyle4:disabled,
.ButtonMd.ButtonStyle4:disabled,
.ButtonSm.ButtonStyle4:disabled,
.ButtonSsm.ButtonStyle4:disabled,
.ButtonXs.ButtonStyle4:disabled,
.ButtonXs2.ButtonStyle4:disabled {
	color: var(--color10);
	background-color: var(--disabled);
	border-color: var(--disabled);
}

.ButtonLg.ButtonStyle5,
.ButtonMd.ButtonStyle5,
.ButtonSm.ButtonStyle5,
.ButtonSsm.ButtonStyle5,
.ButtonXs.ButtonStyle5,
.ButtonXs2.ButtonStyle5 {
	min-width: auto !important;
	color: var(--white);
	background-color: var(--color6);
	border: 1px solid var(--color6);
	border-radius: 30px;
}

.ButtonLg.ButtonStyle5:hover,
.ButtonMd.ButtonStyle5:hover,
.ButtonSm.ButtonStyle5:hover,
.ButtonSsm.ButtonStyle5:hover,
.ButtonXs.ButtonStyle5:hover,
.ButtonXs2.ButtonStyle5:hover {
	background-color: var(--color8);
	border-color: var(--color8);
}

.ButtonLg.ButtonStyle5:disabled,
.ButtonMd.ButtonStyle5:disabled,
.ButtonSm.ButtonStyle5:disabled,
.ButtonSsm.ButtonStyle5:disabled,
.ButtonXs.ButtonStyle5:disabled,
.ButtonXs2.ButtonStyle5:disabled {
	color: var(--color10);
	background-color: var(--disabled);
	border-color: var(--disabled);
}

.ButtonLg.ButtonStyle6,
.ButtonMd.ButtonStyle6,
.ButtonSm.ButtonStyle6,
.ButtonSsm.ButtonStyle6,
.ButtonXs.ButtonStyle6,
.ButtonXs2.ButtonStyle6 {
	padding-left: 16px;
	padding-right: 16px;
	font-weight: 700;
	color: var(--color7);
	background-color: var(--white);
	border: 1px solid var(--color5);
	border-radius: 30px;
}

.ButtonLg.ButtonStyle6:hover,
.ButtonMd.ButtonStyle6:hover,
.ButtonSm.ButtonStyle6:hover,
.ButtonSsm.ButtonStyle6:hover,
.ButtonXs.ButtonStyle6:hover,
.ButtonXs2.ButtonStyle6:hover {
	color: var(--white);
	background-color: var(--color8);
	border-color: var(--color8);
}

.ButtonLg.ButtonStyle6:disabled,
.ButtonMd.ButtonStyle6:disabled,
.ButtonSm.ButtonStyle6:disabled,
.ButtonSsm.ButtonStyle6:disabled,
.ButtonXs.ButtonStyle6:disabled,
.ButtonXs2.ButtonStyle6:disabled {
	color: var(--color10);
	background-color: var(--disabled);
	border-color: var(--disabled);
}

.ButtonLg {
	min-width: 200px;
	height: 48px;
	font-size: 18px;
	font-weight: 700;
	border-radius: 8px;
}

.ButtonMd {
	min-width: 200px;
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 8px;
}

.ButtonSm {
	min-width: 200px;
	height: 40px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 6px;
}

.ButtonSsm {
	height: 36px;
	font-size: 16px;
	font-weight: 400;
	border-radius: 4px;
}

.ButtonXs {
	height: 28px;
	font-size: 12px;
	font-weight: 400;
	border-radius: 4px;
}

.ButtonXs2 {
	height: 24px;
	font-size: 12px;
	font-weight: 400;
	border-radius: 4px;
	padding-left: 8px;
	padding-right: 8px;
}

.ButtonXl2,
.ButtonLg2,
.ButtonMd2,
.ButtonSm2,
.ButtonSsm2,
.ButtonXss2,
.ButtonTiny2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding-left: 20px;
	padding-right: 20px;
	white-space: nowrap;
	letter-spacing: -0.3px;
	border-radius: 30px;
}

.ButtonXl2.ButtonStyle5,
.ButtonLg2.ButtonStyle5,
.ButtonMd2.ButtonStyle5,
.ButtonSm2.ButtonStyle5,
.ButtonSsm2.ButtonStyle5,
.ButtonXss2.ButtonStyle5,
.ButtonTiny2.ButtonStyle5 {
	color: var(--white);
	background-color: var(--color6);
	border: 1px solid var(--color6);
	border-radius: 30px;
}

.ButtonXl2.ButtonStyle5:hover,
.ButtonLg2.ButtonStyle5:hover,
.ButtonMd2.ButtonStyle5:hover,
.ButtonSm2.ButtonStyle5:hover,
.ButtonSsm2.ButtonStyle5:hover,
.ButtonXss2.ButtonStyle5:hover,
.ButtonTiny2.ButtonStyle5:hover {
	background-color: var(--color8);
	border-color: var(--color8);
}

.ButtonXl2.ButtonStyle5:disabled,
.ButtonLg2.ButtonStyle5:disabled,
.ButtonMd2.ButtonStyle5:disabled,
.ButtonSm2.ButtonStyle5:disabled,
.ButtonSsm2.ButtonStyle5:disabled,
.ButtonXss2.ButtonStyle5:disabled,
.ButtonTiny2.ButtonStyle5:disabled {
	color: var(--color10);
	background-color: var(--disabled);
	border-color: var(--disabled);
}

.ButtonXl2.ButtonStyle6,
.ButtonLg2.ButtonStyle6,
.ButtonMd2.ButtonStyle6,
.ButtonSm2.ButtonStyle6,
.ButtonSsm2.ButtonStyle6,
.ButtonXss2.ButtonStyle6,
.ButtonTiny2.ButtonStyle6 {
	padding-left: 16px;
	padding-right: 16px;
	font-weight: 700;
	color: var(--color7);
	background-color: var(--white);
	border: 1px solid var(--color5);
	border-radius: 30px;
}

.ButtonXl2.ButtonStyle6:hover,
.ButtonLg2.ButtonStyle6:hover,
.ButtonMd2.ButtonStyle6:hover,
.ButtonSm2.ButtonStyle6:hover,
.ButtonSsm2.ButtonStyle6:hover,
.ButtonXss2.ButtonStyle6:hover,
.ButtonTiny2.ButtonStyle6:hover {
	color: var(--white);
	background-color: var(--color8);
	border-color: var(--color8);
}

.ButtonXl2.ButtonStyle6:disabled,
.ButtonLg2.ButtonStyle6:disabled,
.ButtonMd2.ButtonStyle6:disabled,
.ButtonSm2.ButtonStyle6:disabled,
.ButtonSsm2.ButtonStyle6:disabled,
.ButtonXss2.ButtonStyle6:disabled,
.ButtonTiny2.ButtonStyle6:disabled {
	color: var(--color10);
	background-color: var(--disabled);
	border-color: var(--disabled);
}

.ButtonLg2 {
	height: 48px;
	font-size: 16px;
	font-weight: 700;
}

.ButtonMd2 {
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 30px;
}

.ButtonSm2 {
	height: 40px;
	font-size: 16px;
	font-weight: 500;
}

.ButtonSsm2 {
	height: 36px;
	font-size: 16px;
	font-weight: 500;
}

.ButtonXss2 {
	height: 28px;
	font-size: 16px;
	font-weight: 500;
}

.ButtonTiny2 {
	padding-left: 12px;
	padding-right: 12px;
	height: 24px;
	font-size: 12px;
	font-weight: 400;
}

.Button_1 {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	height: 34px;
	padding-left: 12px;
	padding-right: 12px;
	background-color: var(--white);
	border: 1px solid #5481F5;
	border-radius: 12px;
}

.Button_2 {
	position: relative;
	margin: 0 auto;
	width: 80px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.Button_2::before {
	height: 0;
	content: "";
	display: block;
	width: 10px;
	background-color: #4979F4;
	border-radius: 12px;
	position: absolute;
	top: 50%;
	left: -6px;
	transform: translateY(-18px);
	transition: all 0.25s ease-in-out;
}

.Button_2:hover::before, .Button_2.On::before {
	height: 36px;
}

.Button_2 > .Text {
	font-size: 12px;
	font-weight: 500;
	color: var(--color7);
	letter-spacing: -0.6px;
}

.Button_3 {
	width: 88px !important;
	height: 32px !important;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--primary);
	border: 1px solid var(--primary);
	border-radius: 17px;
}

.Button_4 {
	width: 100%;
	height: 80px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--color7);
	background-color: #F8F6F6;
}

.Button_5 {
	width: 114px;
	height: 60px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	font-size: 16px;
	font-weight: 700;
	color: var(--primary);
	background-color: #F5F6F7;
	border: 1px solid var(--primary);
	border-radius: 16px;
	box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
}

.Button_6 {
	height: 44px;
	padding: 0 27px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	background-color: #303038;
	border-radius: 30px;
}

@media screen and (max-width: 1023px) {
	.Button_6 {
		width: 100%;
	}
}

.Button_7 {
	width: 100%;
	height: 42px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 500;
	color: #A8A69D;
	background-color: #E1E3EA;
	border: 1px solid #E1E3EA;
	border-radius: 6px;
	transition: all 0.25s ease-in-out;
}

.Button_7.Style1:hover {
	color: var(--primary);
	background-color: var(--white);
	border: 1px solid var(--primary);
}

.Button_7.Style2:hover {
	color: #5647FF;
	background-color: var(--white);
	border: 1px solid #5647FF;
}

.Button_8 {
	flex: 1 1 0;
	width: 100%;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	background-color: #E1E3EA;
	border-radius: 12px;
}

.Button_8.Style1 {
	color: rgba(61, 61, 61, 0.85);
	background-color: rgba(0, 0, 0, 0.05);
}

.Button_8.Style2 {
	color: var(--white);
	background-color: var(--primary);
}

.Button_9 {
	width: 140px;
	height: 44px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 15px;
	font-weight: 700;
	border-radius: 6px;
}

@media screen and (max-width: 1023px) {
	.Button_9 {
		flex: 1 1 0;
	}
}

.Button_9.Style1 {
	color: rgba(61, 61, 61, 0.85);
	background-color: rgba(0, 0, 0, 0.05);
}

.Button_9.Style2 {
	color: var(--white);
	background-color: var(--primary);
}

.Button_10 {
	flex: 1 1 0;
	width: 100%;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 15px;
	font-weight: 700;
	border-radius: 6px;
	border-width: 1px;
	border-style: solid;
}

.Button_10.Style1 {
	color: var(--primary);
	background-color: var(--white);
	border-color: var(--primary);
}

.Button_10.Style2 {
	color: var(--white);
	background-color: #FF4036;
	border-color: #FF4036;
}

.Button_11 {
	width: 100%;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 15px;
	font-weight: 400;
	color: rgba(61, 61, 61, 0.6);
	background-color: var(--white);
	border-width: 1px;
	border-style: solid;
	border-color: #D8DFEB;
}

.Button_12 {
	width: 180px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
}

.Button_12.Style1 {
	color: rgba(61, 61, 61, 0.85);
	background-color: rgba(0, 0, 0, 0.05);
}

.Button_12.Style2 {
	color: var(--white);
	background-color: var(--primary);
}

.Button_13 {
	height: 24px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: 0 8px;
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	background-color: transparent;
	border: 1px solid var(--white);
	border-radius: 2px;
}

.Button_14 {
	flex: 1 1 0;
	width: 100%;
	height: 50px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 18px;
	font-weight: 700;
	border-width: 1px;
	border-style: solid;
	border-radius: 8px;
	transition: background-color 0.25s ease-in-out;
}

.Button_14.Style1 {
	color: var(--white);
	background-color: var(--primary);
	border-color: var(--primary);
}

.Button_14.Style1:hover {
	background-color: #0067D5;
}

.Button_14.Style2 {
	color: var(--color7);
	background-color: var(--white);
	border-color: var(--color11);
}

.Button_14.Style2:hover {
	background-color: var(--color15);
}

.Button_15 {
	flex: 1 1 0;
	width: 100%;
	height: 52px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 500;
	border-width: 1px;
	border-style: solid;
	border-radius: 10px;
}

.Button_15.Style1 {
	color: #3C1E1E;
	background-color: #FFDE00;
	border-color: #FFDE00;
}

.Button_15.Style2 {
	color: var(--white);
	background-color: #00C73C;
	border-color: #00C73C;
}

.Button_15.Style3 {
	color: var(--white);
	background-color: var(--color5);
	border-color: var(--color5);
}

.Button_15.Style4 {
	color: var(--white);
	background-color: #FF2233;
	border-color: #FF2233;
}

.Button_15.Style5 {
	color: var(--white);
	background-color: var(--primary);
	border-color: var(--primary);
}

.Button_15.Style6 {
	color: var(--primary);
	background-color: var(--color16);
	border-color: var(--color11);
}

.Button_15.Style7 {
	color: var(--color7);
	background-color: var(--color15);
	border-color: transparent;
}

.Button_15.Style7 > .Flag {
	width: 28px;
	height: 16px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 11px;
	font-weight: 500;
	color: var(--color9);
	background-color: var(--white);
	border: 1px solid #E8EAEC;
	border-radius: 8px;
}

.Button_15.Style7 .Desc {
	margin-bottom: 4px;
	display: block;
	font-size: 11px;
	font-weight: 500;
	color: var(--color9);
}

.Button_16 {
	width: 100%;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--primary);
	border-width: 1px;
	border-style: solid;
	border-color: var(--primary);
	border-radius: 8px;
}

.Button_17 {
	width: 100%;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
	background-color: var(--primary);
	border-radius: 12px;
}

.Button_18 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	text-align: center;
}

.Button_18.Style2 {
	font-weight: 700;
}

.Button_18 > img.Rotate {
	transform: rotate(180deg);
}

.Button_19 {
	flex: 1 1 0;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 500;
	color: var(--color5);
	letter-spacing: -0.3px;
	background-color: var(--color16);
}

.Button_19:active {
	background-color: #d1e3f3;
}

.Button_19.Style2 {
	font-weight: 700;
	color: var(--primary);
	background-color: var(--white);
}

.Modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Modal.On {
	display: flex;
}

.Modal.Type2 {
	display: inline-block;
	max-width: 420px;
	height: auto;
	top: auto;
	left: auto;
	right: 100px;
	bottom: 30px;
}

.Modal > .Overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.Modal > .ContentWrap {
	position: fixed;
	margin-top: -240px;
	top: 50%;
	max-height: 95vh;
	overflow: hidden;
	padding: 20px;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.12) inset, 0 0 2px 1px rgba(0, 0, 0, 0.05), 0 4px 20px 0 rgba(0, 0, 0, 0.22);
}

@media screen and (min-width: 648px) {
	.Modal > .ContentWrap {
		padding: 36px;
	}
}

.Modal > .ContentWrap .BtnBox {
	text-align: right;
}

.Modal > .ContentWrap > .Head {
	font-size: 20px;
	font-weight: 700;
	color: var(--color7);
}

.Modal > .ContentWrap > .Body {
	margin-top: 20px;
	max-height: calc(95vh - 195px);
	overflow-y: auto;
}

.Modal > .ContentWrap > .Foot {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 16px;
}

.Modal_1 {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	width: 420px;
	padding: 32px 20px 20px;
	text-align: center;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 22px;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.12) inset, 0 0 2px 1px rgba(0, 0, 0, 0.05), 0 4px 20px 0 rgba(0, 0, 0, 0.22);
}

@media screen and (max-width: 1023px) {
	.Modal_1 {
		width: 320px;
		line-height: 20px;
	}
}

.Modal_1.On {
	display: block;
}

.Modal_1 .Title {
	margin-bottom: 28px;
	font-size: 20px;
	font-weight: 700;
}

.Modal_1 .Btn {
	margin-top: 28px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 14px;
}

.Modal_1 .Circle {
	margin: 0 auto 28px;
	width: 60px;
	height: 60px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	border: 2px solid var(--color7);
	border-radius: 50%;
}

.Modal_3 {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 100;
	transform: translate(-50%, -50%);
	width: 420px;
	padding: 16px 20px 20px;
	text-align: left;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.12) inset, 0 0 2px 1px rgba(0, 0, 0, 0.05), 0 4px 20px 0 rgba(0, 0, 0, 0.22);
}

.Modal_3.On {
	display: block;
}

.Modal_3 .BtnBox {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.Modal_3 .Head {
	margin-top: 10px;
	font-size: 20px;
	font-weight: 700;
	color: var(--color5);
	text-align: center;
}

.Modal_3 .Body {
	margin-top: 20px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
}

.Modal_3 .Body .ImgBox {
	margin-top: 20px;
	text-align: center;
}

.Modal_3 .Body .ImgBox > img {
	width: 99px;
}

.Modal_3 .Foot {
	margin-top: 28px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	line-height: 15px;
}

.Modal_4 {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	width: 544px;
	padding: 32px 20px 20px;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0 0 2px 0 rgba(255, 255, 255, 0.12) inset, 0 0 2px 1px rgba(0, 0, 0, 0.05), 0 4px 20px 0 rgba(0, 0, 0, 0.22);
}

.Modal_4.On {
	display: block;
}

.Modal_4 > .Head {
	margin-top: 10px;
	font-size: 20px;
	font-weight: 700;
	color: var(--color5);
}

.Modal_4 > .Body {
	margin-top: 12px;
}

.Modal_4 > .Body > .Sub {
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
}

.Modal_4 > .Body > .Sub > li + li {
	margin-top: 8px;
}

.Modal_4 > .Body > .Sub > li {
	position: relative;
	padding-left: 8px;
}

.Modal_4 > .Body > .Sub > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Modal_4 > .Body > .Sub > li .Link {
	font-weight: 700;
	color: var(--primary);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.Modal_4 > .Body > .Content {
	margin-top: 28px;
}

.Modal_4 > .Body > .Content .Title {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
	line-height: 17px;
}

.Modal_4 > .Body > .Content .Title .Text {
	flex: 1 1 0;
}

.Modal_4 > .Body > .Content .Text-LBW65SW {
	margin-top: 8px;
}

.Modal_4 > .Body > .Content .Text-OXQRZT3 {
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Modal_4 > .Body > .Content .Text-OXQRZT3 .Count {
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
}

.Modal_4 > .Foot {
	margin-top: 28px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 14px;
}

.Modal_5 > .ContentWrap {
	width: 320px;
}

@media screen and (min-width: 648px) {
	.Modal_5 > .ContentWrap {
		width: 420px;
	}
}

.Modal_5 > .ContentWrap > .Head {
	font-size: 20px;
	font-weight: 700;
	color: var(--color7);
	text-align: center;
}

.Modal_5 > .ContentWrap > .Body {
	margin-top: 20px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
	word-break: keep-all;
}

.Modal_5 > .ContentWrap > .Body .Ul-KZNIU4V > li + li {
	margin-top: 20px;
}

.Modal_5 > .ContentWrap > .Body .Ul-KZNIU4V > li {
	text-align: center;
}

.Modal_5 > .ContentWrap > .Body .Ul-KZNIU4V > li .Circle {
	margin: 0 auto;
	width: 60px;
	height: 60px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-weight: 700;
	border: 2px solid var(--color7);
	border-radius: 50%;
}

.Modal_5 > .ContentWrap > .Foot {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 14px;
}

.Modal_5.Style2 > .ContentWrap > .Body .Ul-PT939OC > li + li {
	margin-top: 20px;
}

.Modal_5.Style2 > .ContentWrap > .Body .Ul-PT939OC > li > .Title {
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
	line-height: 20px;
}

.Modal_5.Style2 > .ContentWrap > .Body .Ul-PT939OC > li > .Desc {
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
}

.Modal_5.Style2 > .ContentWrap > .Body .Ul-PT939OC > li > .Desc > span {
	font-size: 8px;
	line-height: 10px;
	vertical-align: middle;
}

.Modal_5.Style2 > .ContentWrap > .Body .Ul-PT939OC > li > .SubComment {
	color: var(--color9);
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	letter-spacing: -0.3px;
}

.Modal_5.Style3 > .ContentWrap {
	width: auto;
}

.Modal_5.Style4 > .ContentWrap > .Body .Text-RMULF90J .DescList > li {
	position: relative;
	padding-left: 8px;
	font-size: 14px;
	font-weight: 600;
	color: var(--color7);
	line-height: 20px;
}

.Modal_5.Style4 > .ContentWrap > .Body .Text-RMULF90J .DescList > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Modal_5.Style4 > .ContentWrap > .Body .Text-RMULF90J .SubText {
	margin-top: 4px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Modal_6 > .ContentWrap {
	width: 501px;
}

.Modal_6 > .ContentWrap > .Body .Ul-F6NKS45 > li + li {
	margin-top: 8px;
}

.Modal_6 > .ContentWrap > .Body .Ul-F6NKS45 > li {
	position: relative;
	padding-left: 8px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Modal_6 > .ContentWrap > .Body .Ul-F6NKS45 > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Modal_6 > .ContentWrap > .Body .Ul-F6NKS45 > li > .BtnLink {
	color: var(--primary);
}

.Modal_6 > .ContentWrap > .Body .Ul-F6NKS45 > li > .Accent {
	color: var(--error);
}

.Modal_6 > .ContentWrap > .Body .Box-V3UEQZR {
	margin-top: 20px;
}

.Modal_6.Style2 > .ContentWrap {
	width: 800px;
}

.Modal_6.Style2 > .ContentWrap > .Body .Box-436JNVS {
	margin-top: 20px;
}

.Modal_6.Style2 > .ContentWrap > .Body .Text-CDGD52B {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 20px;
	background-color: var(--color14);
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Modal_6.Style2 > .ContentWrap > .Body .Text-CDGD52B > strong {
	color: var(--error);
}

.Modal_6.Style3 > .ContentWrap {
	width: 488px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Text-3GXBAML {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
	line-height: 20px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-Q220GRQ {
	margin-top: 12px;
	text-align: center;
	padding: 20px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	background-color: var(--color15);
	border-radius: 8px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-Q220GRQ > .Second {
	margin-top: 4px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 16px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-Q220GRQ > .Second > strong {
	font-weight: 700;
	color: var(--primary);
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-Q220GRQ > .Third {
	margin-top: 12px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
	font-weight: 700;
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-Q220GRQ > .Third strong {
	margin-left: 4px;
	color: var(--primary);
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-NSSES8L {
	margin-top: 40px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-NSSES8L > .Title {
	font-size: 14px;
	font-weight: 500;
	color: var(--color8);
	letter-spacing: -0.5px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-NSSES8L > .Desc {
	position: relative;
	margin-top: 8px;
	padding-left: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.5px;
	line-height: 20px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-NSSES8L > .Desc::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-TAIKA2C {
	margin-top: 20px;
	padding: 12px;
	background-color: var(--color16);
	border-radius: 8px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-TAIKA2C > li + li {
	margin-top: 8px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-TAIKA2C > li {
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	text-align: center;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-TAIKA2C > li > .RatingArea {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-TAIKA2C > li > strong {
	font-weight: 700;
}

.Modal_6.Style3 > .ContentWrap > .Body .Box-ZV99U39 {
	margin-top: 20px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-11VTFE0 {
	margin-top: 12px;
	overflow: hidden;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-11VTFE0 > li + li {
	margin-top: 4px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-11VTFE0 > li {
	position: relative;
	padding-left: 8px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-11VTFE0 > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Modal_6.Style3 > .ContentWrap > .Body .Ul-11VTFE0 > li > .BtnLink {
	color: var(--primary);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

@media screen and (min-width: 648px) {
	.Modal_6.Style4 {
		left: 50%;
		transform: translateX(-50%);
		width: 648px;
	}
}

.Modal_6.Style4 > .ContentWrap {
	width: 320px;
}

@media screen and (min-width: 648px) {
	.Modal_6.Style4 > .ContentWrap {
		width: 488px;
	}
}

.Modal_6.Style4 > .ContentWrap > .Body {
	box-sizing: border-box;
}

.Modal_6.Style4 > .ContentWrap > .Body .Text-3GXBAML {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
	line-height: 20px;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-TAIKA2C {
	margin-top: 20px;
	padding: 12px;
	background-color: var(--color16);
	border-radius: 8px;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-TAIKA2C > li + li {
	margin-top: 8px;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-TAIKA2C > li {
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	text-align: center;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-TAIKA2C > li > .RatingArea {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-TAIKA2C > li > .RatingArea > img {
	appearance: button;
	-webkit-appearance: button;
	cursor: pointer;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-TAIKA2C > li > strong {
	font-weight: 700;
}

.Modal_6.Style4 > .ContentWrap > .Body .Box-ZV99U39 {
	margin-top: 20px;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-11VTFE0 {
	margin-top: 12px;
	overflow: hidden;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-11VTFE0 > li + li {
	margin-top: 4px;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-11VTFE0 > li {
	position: relative;
	padding-left: 8px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-11VTFE0 > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Modal_6.Style4 > .ContentWrap > .Body .Ul-11VTFE0 > li > .BtnLink {
	color: var(--primary);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.Modal_6.Style4 > .ContentWrap > .Foot > button {
	flex: 1 1 0;
	min-width: auto;
}

.Modal_7 > .ContentWrap {
	width: 320px;
}

@media screen and (min-width: 648px) {
	.Modal_7 > .ContentWrap {
		width: 488px;
	}
}

.Modal_7 > .ContentWrap > .Head {
	text-align: center;
}

.Modal_7 > .ContentWrap > .Body {
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
}

.Modal_7 > .ContentWrap > .Body .Accent {
	font-weight: 700;
	color: var(--error);
}

.Modal_7 > .ContentWrap > .Foot > button {
	flex: 1 1 0;
	min-width: auto;
}

.Modal_8 > .ContentWrap {
	width: 320px;
}

@media screen and (min-width: 648px) {
	.Modal_8 > .ContentWrap {
		width: 420px;
	}
}

.Modal_8 > .ContentWrap > .Head {
	text-align: center;
}

.Modal_8 > .ContentWrap > .Body {
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
}

.Modal_8 > .ContentWrap > .Body .Accent {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	font-weight: 700;
	color: var(--primary);
}

.Modal_8 > .ContentWrap > .Body .Accent .Ellipsis {
	max-width: 115px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Modal_8 > .ContentWrap > .Foot {
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.Modal_8 > .ContentWrap > .Foot > .CheckBox {
	align-self: flex-end;
}

.Modal_8 > .ContentWrap > .Foot > .CheckBox .Text {
	color: var(--color9);
}

.Modal_9 > .ContentWrap {
	width: 320px;
	padding: 0;
	background-color: transparent;
}

.Modal_9 > .ContentWrap > .Body {
	margin-top: 0;
}

.Modal_9 > .ContentWrap > .Body .Swiper-U1FFP30 .swiper-slide > a {
	display: block;
	width: 100%;
	height: 406px;
}

.Modal_9 > .ContentWrap > .Body .Swiper-U1FFP30 .swiper-slide > a > img {
	width: 100%;
	height: 100%;
}

.Modal_9 > .ContentWrap > .Body .Swiper-U1FFP30 .swiper-pagination {
	bottom: 12px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

.Modal_9 > .ContentWrap > .Body .Swiper-U1FFP30 .swiper-pagination .swiper-pagination-bullet {
	margin: 0;
	opacity: 1;
	background-color: var(--white);
}

.Modal_9 > .ContentWrap > .Body .Swiper-U1FFP30 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background-color: var(--color5);
}

.Modal_9 > .ContentWrap > .Foot {
	margin-top: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 16px;
	background-color: rgba(0, 0, 0, 0.8);
}

.Modal_9 > .ContentWrap > .Foot .CheckBox .Text {
	color: var(--white);
}

.Modal_9 > .ContentWrap > .Foot > button {
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	letter-spacing: -0.3px;
}

.Modal_10 > .ContentWrap {
	width: 320px;
}

@media screen and (min-width: 648px) {
	.Modal_10 > .ContentWrap {
		width: 488px;
	}
}

.Modal_10 > .ContentWrap > .Body {
	box-sizing: border-box;
}

.Modal_10 > .ContentWrap > .Body .Text-U1HBLZS > .Desc {
	font-size: 16px;
	font-weight: 700;
	color: var(--color6);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.Modal_10 > .ContentWrap > .Body .Text-U1HBLZS > .SelectRadioArea {
	margin-top: 20px;
	margin-left: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.Modal_10 > .ContentWrap > .Body .Text-U3HPPFR > .Desc {
	font-size: 14px;
	font-weight: 400;
	color: var(--color8);
	line-height: 16px;
	letter-spacing: -0.3px;
}

.Modal_10 > .ContentWrap > .Body .Text-U3HPPFR > .ButtonArea {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.Modal_10 > .ContentWrap > .Foot > button {
	flex: 1 1 0;
	min-width: auto;
}

.Modal_11 > .ContentWrap {
	width: 320px;
}

@media screen and (min-width: 648px) {
	.Modal_11 > .ContentWrap {
		width: 420px;
	}
}

.Modal_11 > .ContentWrap > .Head {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.Modal_11 > .ContentWrap > .Body {
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
	text-align: center;
}

.Modal_11 > .ContentWrap > .Body .Accent {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	font-weight: 700;
	color: var(--primary);
}

.Modal_11 > .ContentWrap > .Foot {
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.Modal_11 > .ContentWrap > .Foot > .CheckBox {
	align-self: flex-end;
}

.Modal_11 > .ContentWrap > .Foot > .CheckBox .Text {
	color: var(--color9);
}

.Modal_12 > .ContentWrap {
	width: 320px;
}

.Modal_12 > .ContentWrap > .Body {
	box-sizing: border-box;
}

.Modal_12 > .ContentWrap > .Body .Text-TIZR5AO .Title {
	font-size: 16px;
	font-weight: 600;
	color: var(--color7);
	line-height: 20px;
}

@media screen and (min-width: 648px) {
	.Modal_12 > .ContentWrap > .Body .Text-TIZR5AO .Title {
		font-size: 20px;
	}
}

.Modal_12 > .ContentWrap > .Body .Text-TIZR5AO .Desc {
	margin-top: 8px;
	margin-left: 12px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
	line-height: 16px;
	letter-spacing: -0.3px;
}

@media screen and (min-width: 648px) {
	.Modal_12 > .ContentWrap > .Body .Text-TIZR5AO .Desc {
		margin-top: 12px;
	}
}

.Modal_12 > .ContentWrap > .Body .Text-TIZR5AO .DetailAraa {
	margin-top: 12px;
}

@media screen and (min-width: 648px) {
	.Modal_12 > .ContentWrap > .Body .Text-TIZR5AO .DetailAraa {
		margin-top: 24px;
	}
}

.CommonSheet {
	display: none;
	inset: 0;
	position: fixed;
	z-index: 10;
}

@media screen and (min-width: 648px) {
	.CommonSheet {
		left: 50%;
		transform: translateX(-50%);
		width: 648px;
	}
}

.CommonSheet.On {
	display: block;
}

.CommonSheet.On > .ContentWrap {
	bottom: 0;
}

.CommonSheet > .Overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.CommonSheet > .ContentWrap {
	position: absolute;
	bottom: -100%;
	left: 0;
	right: 0;
	background-color: var(--white);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	overflow: hidden;
	transition: bottom 0.25s ease-in-out;
}

.CommonSheet > .ContentWrap .HandleBar {
	width: 100%;
	height: 60px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	cursor: pointer;
}

.CommonSheet > .ContentWrap .HandleBar > .Line {
	display: inline-block;
	width: 80px;
	height: 6px;
	background-color: var(--color5);
	border-radius: 20px;
	margin: 0 auto;
}

.CommonSheet > .ContentWrap .Content {
	padding: 0 20px 40px;
	max-height: calc(100dvh - 95px);
	overflow: auto;
}

@media screen and (min-width: 648px) {
	.CommonSheet > .ContentWrap .Content {
		padding: 0 40px 40px;
	}
}

.CommonSheet > .ContentWrap .Content .HeadBtnBox {
	margin-bottom: 16px;
	text-align: right;
}

.BottomSheet_1 > .ContentWrap .Content > ul > li + li {
	margin-top: 16px;
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Nickname {
	font-size: 22px;
	font-weight: 700;
	color: var(--color6);
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Category {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Category > li {
	position: relative;
	padding-left: 8px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color6);
	letter-spacing: -0.3px;
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Category > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Thumb {
	text-align: center;
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Thumb > img {
	width: 78px;
	height: 78px;
	border-radius: 50%;
	overflow: hidden;
}

@media screen and (min-width: 648px) {
	.BottomSheet_1 > .ContentWrap .Content > ul > li .Thumb > img {
		width: 86px;
		height: 86px;
	}
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Desc {
	font-size: 16px;
	font-weight: 400;
	color: var(--color8);
	line-height: 20px;
	letter-spacing: -0.3px;
	text-align: center;
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Price {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Price > .Num {
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	color: var(--primary);
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Tag {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Tag > li {
	height: 27px;
	padding: 0 8px;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 2px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color8);
	letter-spacing: -0.3px;
	background-color: var(--color14);
	border-radius: 20px;
}

@media screen and (min-width: 648px) {
	.BottomSheet_1 > .ContentWrap .Content > ul > li .Tag > li {
		height: 32px;
		padding: 0 12px;
	}
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Line {
	width: 100%;
	height: 1px;
	background-color: var(--color13);
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Message > .Title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color6);
}

.BottomSheet_1 > .ContentWrap .Content > ul > li .Message > .Detail {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color6);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li + li {
	margin-top: 40px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Text-ZCCI4PE {
	padding: 20px;
	border: 1px solid var(--color13);
	border-radius: 10px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Text-ZCCI4PE > .Desc {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Text-ZCCI4PE > .Detail {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li + li {
	margin-top: 16px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li.Line {
	margin: 16px 0;
	width: 100%;
	height: 1px;
	background-color: var(--color13);
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .Summary {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .Summary > .Num {
	font-family: "Roboto", sans-serif;
	letter-spacing: -0.5px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage {
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

@media screen and (min-width: 648px) {
	.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .First,
	.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .Second {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		gap: 0;
	}
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .First > .TextBox,
.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .Second > .TextBox {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

@media screen and (min-width: 648px) {
	.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .First > .TextBox,
	.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .Second > .TextBox {
		justify-content: flex-start;
		gap: 10px;
	}
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .First > .Price,
.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .Second > .Price {
	margin-top: 16px;
	font-weight: 700;
	text-align: right;
}

@media screen and (min-width: 648px) {
	.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .First > .Price,
	.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .Second > .Price {
		margin-top: 0;
	}
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .CreditUsage > .Second {
	margin-top: 16px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .TotalAmount {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .Ul-T93EQ5P > li .TotalAmount > .Num {
	font-family: "Roboto", sans-serif;
	color: var(--primary);
	letter-spacing: -0.5px;
}

.BottomSheet_2 > .ContentWrap .Content .Ul-8NLKWT9 > li .BtnBox-5UIGZ7J > button {
	width: 100%;
}

.BottomSheet_3 > .ContentWrap .Content > .Title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.BottomSheet_3 > .ContentWrap .Content > .Desc {
	margin-top: 8px;
}

.BottomSheet_3 > .ContentWrap .Content > .Desc > li + li {
	margin-top: 4px;
}

.BottomSheet_3 > .ContentWrap .Content > .Desc > li {
	position: relative;
	padding-left: 8px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.BottomSheet_3 > .ContentWrap .Content > .Desc > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.BottomSheet_3 > .ContentWrap .Content > .Textarea_1 {
	margin-top: 8px;
}

.BottomSheet_3 > .ContentWrap .Content > .BtnBox-Z2WXLP3 {
	margin-top: 20px;
}

.BottomSheet_3 > .ContentWrap .Content > .BtnBox-Z2WXLP3 > button {
	width: 100%;
}

.BottomSheet_4 > .ContentWrap .Content > .Title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
	text-align: center;
}

.BottomSheet_4 > .ContentWrap .Content > .BtnBox {
	margin-top: 40px;
}

.BottomSheet_4 > .ContentWrap .Content > .BtnBox > button {
	width: 100%;
}

.BottomSheet_5 > .ContentWrap .Content .Ul-ELY7ZGU > li + li {
	margin-top: 20px;
}

.BottomSheet_5 > .ContentWrap .Content .Ul-ELY7ZGU > li .Title {
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.BottomSheet_5 > .ContentWrap .Content .Ul-ELY7ZGU > li .Detail {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color9);
	letter-spacing: -0.3px;
	text-align: right;
}

.BottomSheet_5 > .ContentWrap .Content .Ul-ELY7ZGU > li .BtnBox > button {
	width: 100%;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li + li {
	margin-top: 8px;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .Title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .Desc {
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	line-height: 16px;
	letter-spacing: -0.3px;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .SubInfo {
	display: flex;
	align-items: flex-start;
	gap: 0;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .SubInfo > .Text {
	flex: 1 1 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	line-height: 16px;
	letter-spacing: -0.3px;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .SubInfo > .Text > .Sub {
	color: var(--color9);
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .FileUploadWrap {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .FileUploadWrap.HasFile .FileDisplay {
	border: 1px solid var(--color7);
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .FileUploadWrap.HasFile .FileDisplay .BtnDelete {
	display: block;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .FileUploadWrap .HiddenInput {
	display: none;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .FileUploadWrap .FileDisplay {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 12px;
	border: 1px solid var(--color12);
	border-radius: 4px;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .FileUploadWrap .FileDisplay .FileName {
	flex: 1;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	border-radius: 4px;
	border: none;
	outline: none;
	cursor: default;
	pointer-events: none;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .FileUploadWrap .FileDisplay .BtnDelete {
	display: none;
	width: 16px;
	height: 16px;
}

.BottomSheet_6 > .ContentWrap .Content .Ul-170RAI1 > li .FileUploadWrap .BtnAttach {
	align-self: flex-end;
	cursor: pointer;
}

.BottomSheet_6 > .ContentWrap .Content .BtnBox {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 0;
}

.BottomSheet_6 > .ContentWrap .Content .BtnBox > button {
	width: 100%;
}

.BottomSheet_7 {
	width: 100%;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB {
	max-height: calc(100dvh - 178px);
	overflow: auto;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li + li {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #EBEDF0;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .TitleArea {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 6px;
	font-size: 16px;
	font-weight: 700;
	color: #3D3D3D;
	line-height: 24px;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .TitleArea .Text {
	flex: 1 1 0;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc {
	margin-top: 8px;
	padding-left: 20px;
	padding-right: 20px;
	font-size: 16px;
	font-weight: 400;
	color: #3D3D3D;
	line-height: 24px;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc > .AccentText {
	margin-top: 16px;
	padding: 4px 8px;
	background-color: #F8F6F6;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc .ListItemWrap > li + li {
	margin-top: 20px;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc .ListItemWrap > li {
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 24px;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc .ListItemWrap > li > .Title {
	font-weight: 700;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc .ListItemWrap > li > .Sub {
	position: relative;
	padding-left: 8px;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc .ListItemWrap > li > .Sub::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc .ListItemWrap > li > .Sub.AccentText {
	font-weight: 700;
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc .ListItemWrap > li > .Sub.AccentText.Style1 {
	color: var(--primary);
}

.BottomSheet_7 > .ContentWrap > .Content .Ul-VGUH41JB > li .Desc .ListItemWrap > li > .Sub.AccentText.Style2 {
	color: var(--error);
}

.TableUi {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
	border-top: 3px solid var(--color7);
	border-bottom: 1px solid #F8F6F6;
}

.TableUi.Center {
	text-align: center;
}

.TableUi.Center tr > * {
	padding: 10px;
	height: 40px;
	border: 1px solid #B1B1B1;
}

.TableUi.Center tr > th {
	font-weight: 700;
	background-color: #F0F0F3;
}

.TableUi.Style1 {
	border: 1px solid #EBEDF0;
}

.TableUi.Style1.CenterMode {
	text-align: center;
}

.TableUi.Style1 > * > tr > * {
	border: none;
}

.TableUi.Style1 > * > tr > th {
	height: 40px;
	font-size: 14px;
	font-weight: 700;
	background-color: var(--white);
	border: 1px solid #EBEDF0;
}

.TableUi.Style1 > * > tr > td {
	padding: 20px;
	align-content: baseline;
	font-weight: 400;
	text-align: left;
	line-height: 20px;
	background-color: var(--white);
	border: 1px solid #EBEDF0;
}

.CheckBox {
	display: inline-flex;
	gap: 4px;
}

.CheckBox .CheckBoxUi {
	aspect-ratio: 1/1;
	background-repeat: no-repeat;
	background-size: contain;
	appearance: none;
	cursor: pointer;
}

.CheckBox .CheckBoxUi[data-size=Lg] {
	width: 20px;
	height: 20px;
}

.CheckBox .CheckBoxUi[data-size=Lg] + .Text {
	font-size: 16px;
	line-height: 20px;
}

.CheckBox .CheckBoxUi[data-size=Md] {
	width: 18px;
	height: 18px;
}

.CheckBox .CheckBoxUi[data-size=Md] + .Text {
	font-size: 14px;
	line-height: 18px;
}

.CheckBox .CheckBoxUi[data-size=Sm] {
	width: 16px;
	height: 16px;
}

.CheckBox .CheckBoxUi[data-size=Sm] + .Text {
	font-size: 14px;
	line-height: 16px;
}

.CheckBox .CheckBoxUi.Style1 {
	background-image: url(/icon/chk_1.svg);
}

.CheckBox .CheckBoxUi.Style1:checked {
	background-image: url(/icon/chk_1_on.svg);
}

.CheckBox .CheckBoxUi.Style1[disabled] {
	opacity: 0.5;
	background-image: url(/icon/chk_1.svg);
}

.CheckBox .CheckBoxUi.Style2 {
	background-image: url(/icon/chk_2.svg);
}

.CheckBox .CheckBoxUi.Style2:checked {
	background-image: url(/icon/chk_2_on.svg);
}

.CheckBox .CheckBoxUi.Style2[disabled] {
	opacity: 0.5;
	background-image: url(/icon/chk_2.svg);
}

.CheckBox .Text {
	font-weight: 400;
	color: var(--color5);
	cursor: pointer;
}

.RadioBox {
	display: inline-flex;
	gap: 4px;
}

.RadioBox .RadioBoxUi {
	aspect-ratio: 1/1;
	background-repeat: no-repeat;
	background-size: contain;
	appearance: none;
	cursor: pointer;
}

.RadioBox .RadioBoxUi[data-size=Lg] {
	width: 20px;
	height: 20px;
}

.RadioBox .RadioBoxUi[data-size=Lg] + .Text {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
}

.RadioBox .RadioBoxUi[data-size=Md] {
	width: 18px;
	height: 18px;
}

.RadioBox .RadioBoxUi[data-size=Md] + .Text {
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
}

.RadioBox .RadioBoxUi[data-size=Sm] {
	width: 16px;
	height: 16px;
}

.RadioBox .RadioBoxUi[data-size=Sm] + .Text {
	font-size: 14px;
	font-weight: 400;
	line-height: 16px;
}

.RadioBox .RadioBoxUi.Style1 {
	background-image: url(/icon/rdo_1.svg);
}

.RadioBox .RadioBoxUi.Style1:checked {
	background-image: url(/icon/rdo_1_on.svg);
}

.RadioBox .RadioBoxUi.Style1[disabled] {
	opacity: 0.5;
	background-image: url(/icon/rdo_1.svg);
}

.RadioBox .Text {
	color: var(--color5);
	cursor: pointer;
}

.Textarea_1 {
	width: 100%;
}

.Textarea_1.TextareaMd > .TextField > textarea {
	height: 128px;
	font-size: 16px;
}

.Textarea_1.TextareaMd2 > .TextField > textarea {
	height: 128px;
	font-size: 14px;
}

.Textarea_1.Focus > .TextField > textarea {
	color: var(--color7);
	border-color: var(--color7);
}

.Textarea_1.Filled > .TextField > textarea {
	color: var(--color7);
}

.Textarea_1.Error > .TextField > textarea {
	border-color: var(--error);
}

.Textarea_1.Error > .CommentText {
	color: var(--error);
}

.Textarea_1 > .TextField > textarea {
	width: 100%;
	overflow-y: auto;
	padding: 8px 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	line-height: 20px;
	background-color: var(--white);
	border: 1px solid var(--color12);
	border-radius: 4px;
	resize: none;
	outline: none;
}

.Textarea_1 > .TextField > textarea::placeholder {
	color: var(--color9);
}

.Textarea_1 > .CommentText {
	margin: 2px 8px 0;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 8px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	text-align: left;
}

.Textarea_1 > .CommentText > .First {
	flex: 1 1 0;
}

.SelectBox_1.SelectBoxLg {
	width: 100%;
}

.SelectBox_1.SelectBoxLg .SelectInput > .SelectedOption {
	height: 40px;
}

.SelectBox_1.SelectBoxLg .SelectInput > .SelectedOption > .Text {
	font-weight: 500;
}

.SelectBox_1.SelectBoxLg .SelectInput > .DropdownBox > .Option {
	height: 40px;
	font-size: 16px;
	font-weight: 500;
	line-height: 40px;
}

.SelectBox_1.SelectBoxMd {
	width: 100%;
}

.SelectBox_1.SelectBoxMd .SelectInput > .SelectedOption {
	height: 36px;
}

.SelectBox_1.SelectBoxMd2 {
	width: 100%;
}

.SelectBox_1.SelectBoxMd2 .SelectInput > .SelectedOption {
	height: 36px;
}

.SelectBox_1.SelectBoxMd2 .SelectInput > .SelectedOption > .Text {
	font-size: 14px;
}

.SelectBox_1.SelectBoxMd2 .SelectInput > .DropdownBox > .Option {
	font-size: 14px;
}

.SelectBox_1.SelectBoxSm {
	width: 100%;
}

.SelectBox_1.SelectBoxSm .SelectInput > .SelectedOption {
	height: 32px;
}

.SelectBox_1.SelectBoxSm .SelectInput > .SelectedOption > .Text {
	font-size: 13px;
}

.SelectBox_1.SelectBoxSm .SelectInput > .DropdownBox > .Option {
	height: 32px;
	font-size: 13px;
	line-height: 32px;
}

.SelectBox_1.Focus .SelectInput {
	border-color: var(--color7);
}

.SelectBox_1.Focus .SelectInput > .SelectedOption > .Text {
	color: var(--color7);
}

.SelectBox_1.Active .SelectInput {
	border-color: var(--color7);
}

.SelectBox_1.Active .SelectInput > .SelectedOption > .Text {
	color: var(--color7);
}

.SelectBox_1.Active .SelectInput > .SelectedOption > .Arrow {
	transform: rotate(180deg);
}

.SelectBox_1.Active .SelectInput .DropdownBox {
	display: block;
}

.SelectBox_1.Selected .SelectInput > .SelectedOption > .Text {
	font-weight: 700;
	color: var(--color7);
}

.SelectBox_1.Disabled {
	pointer-events: none;
}

.SelectBox_1.Disabled .SelectInput > .SelectedOption {
	background-color: var(--disabled);
}

.SelectBox_1.Disabled .SelectInput > .SelectedOption > .Text {
	color: var(--color7);
}

.SelectBox_1.Error .SelectInput {
	border-color: var(--error);
}

.SelectBox_1.Error .SelectInput > .SelectedOption > .Text {
	color: var(--error);
}

.SelectBox_1.Error .SelectInput > .SelectedOption > .Arrow {
	display: none;
}

.SelectBox_1.Error .SelectInput > .SelectedOption > .Arrow.Error {
	display: block;
}

.SelectBox_1.Error .SelectInput ~ .ErrorText {
	display: block;
}

.SelectBox_1 .SelectInput {
	position: relative;
	margin: 0 auto;
	width: 100%;
	border: 1px solid var(--color12);
	border-radius: 4px;
	outline: none;
	cursor: pointer;
}

.SelectBox_1 .SelectInput > .SelectedOption {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 0 10px;
	background-color: var(--white);
	border-radius: 4px;
}

.SelectBox_1 .SelectInput > .SelectedOption > .Text {
	flex: 1 1 0;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	text-align: left;
}

.SelectBox_1 .SelectInput > .SelectedOption > .Arrow {
	transition: transform 0.25s ease-in-out;
}

.SelectBox_1 .SelectInput > .SelectedOption > .Arrow.Error {
	display: none;
}

.SelectBox_1 .SelectInput > .DropdownBox {
	display: none;
	position: absolute;
	top: 103%;
	left: 0;
	right: 0;
	max-height: 108px;
	background-color: var(--white);
	border: 1px solid var(--color12);
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	overflow-y: auto;
	z-index: 10;
}

.SelectBox_1 .SelectInput > .DropdownBox > li + li {
	border-top: 1px solid var(--color14);
}

.SelectBox_1 .SelectInput > .DropdownBox > .Option {
	width: 100%;
	height: 36px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: 0 12px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	line-height: 36px;
	text-align: left;
	cursor: pointer;
}

.SelectBox_1 .SelectInput > .DropdownBox > .Option:hover {
	font-weight: 700;
	background-color: var(--color15);
}

.SelectBox_1 .ErrorText {
	display: none;
	margin-top: 2px;
	margin-left: 8px;
	margin-right: 8px;
	font-size: 16px;
	font-weight: 400;
	color: var(--error);
	letter-spacing: -0.3px;
}

.ToggleUi {
	width: 48px;
	height: 28px;
	appearance: none;
	cursor: pointer;
	background-repeat: no-repeat;
	background-size: contain;
	transition: background-image 300ms cubic-bezier(0.33, 1, 0.68, 1);
	will-change: auto;
}

.ToggleUi.Style1 {
	background-image: url(/icon/easyai/toggle_1.svg);
}

.ToggleUi.Style1:checked {
	background-image: url(/icon/easyai/toggle_1_on.svg);
}

.ToggleUi.Style1[disabled] {
	opacity: 0.4;
	cursor: default;
}

.Container .Header_2 {
	position: relative;
	width: 100%;
	height: var(--header-hei);
	padding: 0 20px;
	background-color: var(--white);
	border-bottom: 1px solid #EBEDF0;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.03);
}

.Container .Header_2 > .Inner {
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Container .Header_2 > .Inner .HeaderLogo {
	width: 72px;
	height: 35px;
}

.Container .Header_2 > .Inner .SubscriptionBar {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.Container .Header_2 > .Inner .SubscriptionBar .TicketInfo {
	height: 26px;
	padding: 0 12px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	background-color: var(--color14);
	border-radius: 18px;
}

.Container .Header_2 > .Inner .SubscriptionBar .TicketInfo > strong {
	font-weight: 700;
	margin-right: 4px;
}

.Container .Header_2 > .Inner .SubscriptionBar .HeaderHomeBtn > img {
	width: 26px;
	height: 26px;
}

.Container .Footer_2 {
	position: relative;
	width: 100%;
	height: var(--footer-hei);
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--white);
	border-top: 1px solid #EBEDF0;
}

.Container .Footer_2 > .Inner .Ul-GY5DKI9 {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 26px;
	color: #A8A69D;
	text-align: center;
	font-size: 14px;
}

.Container .Footer_2 > .Inner .Ul-GY5DKI9 > li + li {
	padding-left: 26px;
	border-left: 1px solid #DBDAD5;
}

.Container .Footer_2 > .Inner .Ul-GY5DKI9 > li > a {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Container .Footer_2 > .Inner .LogoArea {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
}

.Container .MainWrap > .Inner {
	display: flex;
	flex-direction: row;
	height: calc(100vh - var(--header-hei) - var(--footer-hei));
	overflow: hidden;
}

.Container .MainWrap > .Inner .CmnSectionWrap {
	flex: 1 1 0;
	padding: 40px;
	overflow-y: auto;
	background-color: #F5F6F7;
}

.Container .MainWrap > .Inner .CmnSectionWrap.Style2 {
	padding: 0;
	background-color: var(--white);
}

.Container .MainWrap > .Inner .CmnSectionWrap > .Inner {
	margin: 0 auto;
}

.Container .MainWrap > .Inner .CmnSectionWrap > .Inner.Style1 {
	position: relative;
	min-height: 401px;
	height: 100%;
}

.Container .MainWrap > .Inner .CmnSectionWrap > .Inner.Style2 {
	padding-top: 100px;
	padding-bottom: 100px;
	min-width: auto;
}

.Container .MainWrap > .Inner .CmnSectionWrap > .Inner.Style3 {
	padding-top: 140px;
	padding-bottom: 100px;
	min-width: auto;
}

.Container .Lnb {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0;
	background-color: var(--white);
	border-right: 1px solid #EBEDF0;
	box-shadow: 0 4px 50px 0 rgba(0, 0, 0, 0.1);
}

.Container .Lnb .FirstDepth {
	padding-top: 16px;
	width: 80px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Container .Lnb .FirstDepth > ul > li + li {
	margin-top: 12px;
}

.Container .Lnb .FirstDepth > ul > li .BtnFirstMenu {
	position: relative;
	margin: 0 auto;
	width: 80px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.Container .Lnb .FirstDepth > ul > li .BtnFirstMenu::before {
	height: 0;
	content: "";
	display: block;
	width: 10px;
	background-color: var(--primary);
	border-radius: 12px;
	position: absolute;
	top: 50%;
	left: -6px;
	transform: translateY(-18px);
	transition: all 0.25s ease-in-out;
}

.Container .Lnb .FirstDepth > ul > li .BtnFirstMenu:hover::before, .Container .Lnb .FirstDepth > ul > li .BtnFirstMenu.On::before {
	height: 36px;
}

.Container .Lnb .FirstDepth > ul > li .BtnFirstMenu > .Text {
	font-size: 12px;
	font-weight: 500;
	color: var(--color7);
	letter-spacing: -0.6px;
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap {
	width: 60px;
	padding: 16px 4px;
	margin: 0 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	background-color: var(--color16);
	border-radius: 12px;
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .Icon {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox {
	position: relative;
	animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
	from {
		transform: translateY(-10px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox .ToggleIndicator {
	position: absolute;
	left: 50%;
	z-index: 1;
	width: 52px;
	height: 32px;
	transform: translateX(-50%);
	background-color: var(--white);
	border-radius: 8px;
	border: 1px solid var(--color15);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox .ToggleIndicator.Type1 {
	top: 0;
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox .ToggleIndicator.Type2 {
	top: 40px;
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox .ToggleIndicator.Type3 {
	top: 80px;
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox .ToggleIndicator.Type4 {
	top: 120px;
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox .ListBox {
	position: relative;
	z-index: 2;
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox .ListBox > button + button {
	margin-top: 8px;
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox .ListBox .BtnSecondMenu {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	cursor: pointer;
	width: 100%;
	height: 32px;
	border-radius: 8px;
	transition: all 0.25s ease-in-out;
	font-size: 12px;
	font-weight: 500;
	color: var(--color7);
}

.Container .Lnb .FirstDepth > ul > li .SecondMenuWrap .ButtonBox .ListBox .BtnSecondMenu.Active {
	color: var(--color17);
}

.Container .Lnb .FirstDepth .BtnMyCoin {
	width: 100%;
	height: 110px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	color: var(--color7);
	background-color: #F8F6F6;
}

.Container .Lnb .SecondDepth {
	display: none;
	width: 250px;
	height: 100%;
	padding-top: 20px;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	background-color: var(--white);
}

.Container .Lnb .SecondDepth.Open {
	display: flex;
}

.Container .Lnb .SecondDepth > .First {
	width: 224px;
	height: calc(100% - 158px);
	padding: 20px;
	background-color: #F5F6F7;
	border-radius: 8px;
}

.Container .Lnb .SecondDepth > .First .RadioBtnBox {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList {
	margin-top: 28px;
	width: 100%;
	height: calc(100% - 44px);
	overflow-x: hidden;
	overflow-y: auto;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li + li {
	margin-top: 16px;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li {
	padding: 11px;
	background: var(--white);
	border: 1px solid var(--color12);
	border-radius: 12px;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li {
	margin-bottom: 4px;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li:last-child {
	margin-bottom: 0;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li > .Item {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li > .Item:hover .BtnKebabMenu {
	display: inline-flex;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li > .Item .TitleText {
	position: relative;
	padding-left: 8px;
	width: 123px;
	display: block;
	overflow: hidden;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li > .Item .TitleText::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 3px;
	height: 3px;
	background-color: #A9ACB0;
	border-radius: 50%;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li > .Item .BtnKebabMenu {
	display: none;
	width: 20px;
	height: 20px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li > .Item .Layer-8X7EZWCK {
	display: none;
	position: fixed;
	z-index: 50;
	width: 136px;
	padding: 4px 6px;
	font-size: 14px;
	background-color: var(--white);
	border: 1px solid #E1E3EA;
	border-radius: 12px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li > .Item .Layer-8X7EZWCK .Btn {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 0;
	padding: 6px;
	border-radius: 6px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li > .Item .Layer-8X7EZWCK .Btn:hover {
	background-color: #F5F6F7;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .ListItemWrap > li > .Item .Layer-8X7EZWCK .Btn:active {
	color: var(--primary);
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .DateBox {
	margin-top: 12px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.Container .Lnb .SecondDepth > .First .CreatHistoryList > li .DateBox > .Date {
	padding: 4px 8px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	background-color: var(--color14);
	border-radius: 20px;
}

.Container .Lnb .SecondDepth > .Second {
	width: 100%;
	padding: 12px;
	background-color: #F5F6F7;
}

.Container .Lnb .SecondDepth > .Second .RightAligned {
	text-align: right;
}

.Container .Lnb .SecondDepth > .Second .RightAligned .BtnLink {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 500;
	color: #5C5C5C;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea .Box-RV39MDY {
	position: relative;
	width: 14px;
	height: 14px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea .Box-RV39MDY .BtnTooltipTg {
	width: 14px;
	height: 14px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: calc(100% + 10px);
	bottom: 0;
	z-index: 10;
	width: 400px;
	padding: 9px 9px 18px 20px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	background-color: var(--white);
	border: 1px solid #A8A69D;
	border-radius: 10px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
	transform: translateY(-10px);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide.On {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Head {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Body {
	margin-top: 6px;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Body > ul > li + li {
	margin-top: 10px;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Body > ul > li {
	position: relative;
	padding-left: 8px;
	font-size: 13px;
	font-weight: 400;
	color: var(--color9);
	line-height: 20px;
	letter-spacing: -1px;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Body > ul > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .DetailArea {
	margin-top: 8px;
	margin-left: 8px;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .DetailArea > li + li {
	margin-top: 8px;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .DetailArea > li {
	position: relative;
	padding-left: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .DetailArea > li::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 3px;
	height: 3px;
	background-color: #ABACB0;
	border-radius: 50%;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .DetailArea > li .SubText {
	display: inline-block;
	font-size: 11px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Container .Lnb .SecondDepth > .Second .TicketInfoBox .DetailArea > li .SubText .Accent {
	color: var(--error);
}

.Container .Lnb .SecondDepth .BtnSecondClose {
	position: absolute;
	top: 50%;
	right: -18px;
	transform: translateY(-50%);
	z-index: 10;
	width: 36px;
	height: 36px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.SectionTitleArea {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.SectionTitleArea > .TextBox {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.SectionTitleArea > .TextBox .Main {
	font-size: 20px;
	font-weight: 600;
	color: var(--color7);
}

.SectionTitleArea > .TextBox .Sub {
	font-size: 14px;
	font-weight: 400;
	color: #3F4254;
	letter-spacing: -0.3px;
}

.SectionTitleArea > .Breadcrumb {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
}

.SectionTitleArea > .Breadcrumb > li {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 500;
	color: var(--disabled2);
	letter-spacing: -0.3px;
}

.SectionTitleArea > .Breadcrumb > li:not(:last-child)::after {
	content: "";
	width: 64px;
	height: 1px;
	background-color: var(--color12);
	margin: 0 8px;
}

.SectionTitleArea > .Breadcrumb > li.On {
	color: var(--color7);
}

.SectionTitleArea > .Breadcrumb > li.On:not(:last-child)::after {
	background-color: var(--primary);
}

.SectionTitleArea > .Breadcrumb > li.On > .Num {
	font-size: 0;
	background-image: url("/icon/easyai/icon_53_on.svg");
	border: none;
}

.SectionTitleArea > .Breadcrumb > li.On + li {
	color: var(--color7);
}

.SectionTitleArea > .Breadcrumb > li.On + li > .Num {
	color: var(--primary);
	border-color: var(--primary);
}

.SectionTitleArea > .Breadcrumb > li > .Num {
	font-family: "Roboto", sans-serif;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: 24px;
	height: 24px;
	font-size: 16px;
	font-weight: 400;
	color: var(--disabled2);
	letter-spacing: -0.3px;
	border: 1px solid var(--disabled2);
	border-radius: 50%;
}

.SectionContentArea {
	margin-top: 20px;
	min-height: calc(100vh - 249px);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 36px;
}

.SectionContentArea > .Left,
.SectionContentArea > .Right {
	background-color: var(--white);
	border: 1px solid var(--color12);
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px var(--color18), 0 4px 6px -4px var(--color18);
}

.SectionContentArea > .Left {
	width: 340px;
	padding: 36px 16px;
}

.SectionContentArea > .Right {
	padding: 36px;
	min-width: 1000px;
}

.SectionContentArea > .Right .Inner {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.SectionContentArea > .Right .Inner.Style2 {
	justify-content: center;
}

.SectionContentArea > .Right .Inner > .MainText {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
}

.SectionContentArea > .Right .Inner > .MainText > img {
	width: 24px;
	height: 24px;
}

.SectionContentArea > .Right .Inner > .MainText > .Text {
	font-size: 20px;
	font-weight: 500;
	color: var(--color9);
	line-height: 24px;
}

.SectionContentArea > .Right .Inner > .MainText > .Text > span {
	color: var(--primary);
}

.Header_Mo {
	position: relative;
	width: 100%;
	height: 50px;
	padding: 0 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.03);
}

.Header_Mo.Type2 {
	position: relative;
	justify-content: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--color5);
}

.Header_Mo.Type2 > .Left,
.Header_Mo.Type2 > .Right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.Header_Mo.Type2 > .Left {
	left: 20px;
}

.Header_Mo.Type2 > .Right {
	right: 20px;
}

.Header_Mo.Type2 > .Right .BtnDataHome {
	display: inline-block;
	width: 28px;
	height: 28px;
}

@media screen and (min-width: 648px) {
	.Header_Mo.Type2 > .Right .BtnDataHome {
		width: 32px;
		height: 32px;
	}
}

.Header_Mo.Type2 > .Right .BtnDataHome > img {
	width: 100%;
	height: 100%;
}

.Header_Mo .SubscriptionBar {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.Header_Mo .SubscriptionBar .TicketInfo {
	height: 26px;
	padding: 0 12px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	background-color: var(--color14);
	border-radius: 18px;
}

.Header_Mo .SubscriptionBar .TicketInfo > strong {
	font-weight: 700;
	margin-right: 4px;
}

.Header_Mo .SubscriptionBar .HeaderHomeBtn > img {
	width: 26px;
	height: 26px;
}

.Header_Mo .SideNavWrap {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}

.Header_Mo .SideNavWrap.Open {
	opacity: 1;
	visibility: visible;
}

.Header_Mo .SideNavWrap.Open > .Overlay {
	opacity: 1;
	visibility: visible;
}

.Header_Mo .SideNavWrap.Open > .ContentBox {
	transform: translateX(0%);
}

.Header_Mo .SideNavWrap > .Overlay {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}

.Header_Mo .SideNavWrap > .ContentBox {
	position: fixed;
	top: 0;
	left: 0;
	width: 305px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: var(--white);
	z-index: 10;
	transform: translateX(-100%);
	transition: transform 0.25s ease-in-out;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body {
	padding: 0 20px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .BtnBox {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth {
	margin-top: 5px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li + li {
	margin-top: 8px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .BtnFirstMenu {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	width: 100%;
	height: 40px;
	padding: 8px;
	border-radius: 8px;
	border: 1px solid transparent;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .BtnFirstMenu.Style2 {
	background-color: var(--color16);
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .BtnFirstMenu.Style2:hover {
	border-color: var(--color14);
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth {
	display: none;
	padding-left: 12px;
	width: 100%;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth.Open {
	display: block;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth > .Inner {
	padding: 20px;
	background-color: #F5F6F7;
	border-radius: 8px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .RadioBtnBox {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList {
	margin-top: 20px;
	width: 100%;
	min-height: 77px;
	max-height: calc(100dvh - 520px);
	overflow-x: hidden;
	overflow-y: auto;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li + li {
	margin-top: 20px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li {
	padding: 11px;
	background: var(--white);
	border: 1px solid var(--color12);
	border-radius: 12px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li {
	margin-bottom: 8px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li:last-child {
	margin-bottom: 0;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li > .Item {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li > .Item .TitleText {
	flex: 1 1 0;
	position: relative;
	padding-left: 8px;
	display: block;
	overflow: hidden;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li > .Item .TitleText::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 3px;
	height: 3px;
	background-color: #A9ACB0;
	border-radius: 50%;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li > .Item .BtnKebabMenu {
	width: 20px;
	height: 20px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li > .Item .Layer-8X7EZWCK {
	display: none;
	position: fixed;
	z-index: 50;
	width: 136px;
	padding: 4px 6px;
	font-size: 14px;
	background-color: var(--white);
	border: 1px solid #E1E3EA;
	border-radius: 12px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.07);
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li > .Item .Layer-8X7EZWCK .Btn {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 0;
	padding: 6px;
	border-radius: 6px;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li > .Item .Layer-8X7EZWCK .Btn:hover {
	background-color: #F5F6F7;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .ListItemWrap > li > .Item .Layer-8X7EZWCK .Btn:active {
	color: var(--primary);
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .DateBox {
	margin-top: 12px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.Header_Mo .SideNavWrap > .ContentBox > .Body > .FirstDepth > li .SecondDepth .CreatHistoryList > li .DateBox > .Date {
	padding: 4px 8px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	background-color: var(--color14);
	border-radius: 20px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .BtnLogin {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	width: 100%;
	height: 60px;
	padding: 0 16px;
	background-color: #F8F6F6;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap {
	width: 100%;
	padding: 12px 20px;
	background-color: #F8F6F6;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .RightAligned {
	text-align: right;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .RightAligned .BtnLink {
	display: inline-flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 500;
	color: #5C5C5C;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	font-size: 16px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea .Box-RV39MDY {
	position: relative;
	width: 14px;
	height: 14px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea .Box-RV39MDY .BtnTooltipTg {
	width: 14px;
	height: 14px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: -158px;
	bottom: calc(100% + 10px);
	z-index: 10;
	transform: translateY(-10px);
	width: 280px;
	padding: 9px 9px 18px 20px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	background-color: var(--white);
	border: 1px solid #A8A69D;
	border-radius: 10px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide.On {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Head {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Body {
	margin-top: 6px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Body > ul > li + li {
	margin-top: 10px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Body > ul > li {
	position: relative;
	padding-left: 8px;
	font-size: 13px;
	font-weight: 400;
	color: var(--color9);
	line-height: 20px;
	letter-spacing: -1px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .TitleArea .Box-RV39MDY .LayerCashGuide > .Body > ul > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .DetailArea {
	margin-top: 8px;
	margin-left: 8px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .DetailArea > li + li {
	margin-top: 8px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .DetailArea > li {
	position: relative;
	padding-left: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .DetailArea > li::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 3px;
	height: 3px;
	background-color: #ABACB0;
	border-radius: 50%;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .DetailArea > li .SubText {
	display: inline-block;
	font-size: 11px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Header_Mo .SideNavWrap > .ContentBox > .Foot .UserInfoWrap .TicketInfoBox .DetailArea > li .SubText .Accent {
	color: var(--error);
}

.Footer_Mo {
	width: 100%;
	padding: 20px;
	font-size: 14px;
	color: #898989;
	font-weight: 400;
	border-top: 1px solid #EBEDF0;
}

.Footer_Mo .Ul-R2IJQOE3 {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.Footer_Mo .Ul-R2IJQOE3 .Line {
	width: 1px;
	height: 14px;
	background-color: #A8A69D;
}

.Footer_Mo .Ul-R2IJQOE3 .Text {
	margin-top: 10px;
	font-size: 13px;
	line-height: 22px;
}

.FooterMo_2 {
	width: 100%;
	padding: 20px;
	border-top: 1px solid #EBEDF0;
}

.FooterMo_2 .FootMenu {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.FooterMo_2 .FootMenu > li + li {
	padding-left: 8px;
	border-left: 1px solid #A8A69D;
}

.FooterMo_2 .FootMenu > li > a {
	font-size: 14px;
	color: #878787;
	font-weight: 400;
}

.FooterMo_2 .FootLogo {
	margin-top: 32px;
	text-align: right;
}

.MainWrap_Mo {
	background-color: #F5F6F7;
}

.MainWrap_Mo > .Inner {
	padding: 20px 0;
}

.MainWrap_Mo > .Inner > section + section {
	margin-top: 20px;
}

@media screen and (min-width: 648px) {
	.MainWrap_Mo > .Inner > section + section {
		margin-top: 40px;
	}
}

.MainWrap_Mo > .Inner > section > .Shell {
	padding: 0 20px;
}

.MainWrap_Mo > .Inner.Style2 {
	padding: 40px 0;
}

.MainWrap_Mo.Type2 {
	background-color: var(--white);
}

.Wrap-3EHCXQ1 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.Wrap-3EHCXQ1 .MainTextArea .Title {
	margin: 0 auto;
	font-size: 36px;
	font-weight: 600;
	color: var(--color5);
	text-align: center;
}

.Wrap-3EHCXQ1 .MainTextArea .Title .Accent {
	color: var(--primary);
}

.Wrap-3EHCXQ1 .MainTextArea .Title > .Sub {
	margin-top: 8px;
	font-size: 24px;
	font-weight: 400;
	color: var(--color7);
}

.Wrap-3EHCXQ1 .MainTextArea .Desc {
	margin-top: 24px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color9);
	letter-spacing: -0.3px;
	text-align: center;
}

.Wrap-3EHCXQ1 .TextInputArea {
	margin: 35px auto;
	width: 840px;
	height: 60px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	background-color: var(--primary);
	overflow: hidden;
	border: 1px solid var(--primary);
	border-radius: 12px;
	box-shadow: 0 4px 9px 0 var(--color19);
}

.Wrap-3EHCXQ1 .TextInputArea .InputBox {
	flex: 1 1 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
	padding: 0 28px;
	background-color: var(--white);
}

.Wrap-3EHCXQ1 .TextInputArea .InputBox > input {
	flex: 1 1 0;
	display: block;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	background-color: transparent;
	border: none;
	outline: none;
}

.Wrap-3EHCXQ1 .TextInputArea .InputBox > input::placeholder {
	color: #9CA3AF;
}

.Wrap-3EHCXQ1 .TextInputArea .BtnCreate {
	width: 106px;
	height: 100%;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 7px;
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
	background-color: var(--primary);
}

.Wrap-3EHCXQ1 .CardListBox {
	margin-top: 36px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.Wrap-3EHCXQ1 .CardListBox > li > .Item {
	position: relative;
	width: 240px;
	height: 162px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0;
	background-color: var(--white);
	border: 1px solid transparent;
	border-radius: 14px;
	box-shadow: 0 10px 30px 0 var(--color18);
	transition: transform 0.25s ease-in-out;
}

.Wrap-3EHCXQ1 .CardListBox > li > .Item:hover {
	border-color: var(--color12);
	transform: translateY(-9px);
}

.Wrap-3EHCXQ1 .CardListBox > li > .Item > .Icon {
	width: 36px;
	height: 36px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Wrap-3EHCXQ1 .CardListBox > li > .Item > .Icon > img {
	width: 100%;
	height: 100%;
}

.Wrap-3EHCXQ1 .CardListBox > li > .Item > .TextArea .Sub {
	font-size: 13px;
	font-weight: 700;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Wrap-3EHCXQ1 .CardListBox > li > .Item > .TextArea .Main {
	margin-top: 8px;
	font-size: 22px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-3EHCXQ1 .CardListBox > li > .Item > .TextArea .Main.Type2 {
	color: var(--disabled);
}

.Wrap-3EHCXQ1 .CardListBox > li > .Item > .CardToastPopup {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	height: 30px;
	padding: 0 12px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	white-space: nowrap;
	background-color: var(--color21);
	border-radius: 8px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	transition: opacity 0.25s ease-in-out;
}

.Wrap-3EHCXQ1 .CardListBox > li > .Item > .CardToastPopup.Show {
	opacity: 1;
}

.InputListWrap > li + li {
	margin-top: 24px;
}

.InputListWrap > li .TitleArea {
	margin-bottom: 12px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}

.InputListWrap > li .TitleArea .Main {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.InputListWrap > li .TitleArea .Main > .Asterisk {
	color: var(--error);
}

.InputListWrap > li .TitleArea .Desc {
	flex-shrink: 1;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	line-height: 16px;
	letter-spacing: -0.3px;
}

.InputListWrap > li .TitleArea .Desc > .Text {
	flex-shrink: 1;
}

.InputListWrap > li .BtnBox {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.Box-VZLITUB {
	max-width: 100%;
	padding: 12px;
	border-radius: 6px;
	border: 1px solid var(--color12);
}

.Box-VZLITUB:focus-within {
	border-color: var(--color7);
	outline: none;
}

.Box-VZLITUB .GuideText {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color9);
}

.Box-VZLITUB .UploadArea {
	position: relative;
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
	text-align: right;
}

.Box-VZLITUB .UploadArea .InputFile {
	display: none;
}

.Box-VZLITUB .UploadArea .BtnFileUpload {
	width: 28px;
	height: 28px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	background-color: var(--color15);
	border-radius: 50%;
}

.Box-VZLITUB .UploadArea .BtnFileUpload:hover {
	background-color: var(--color14);
}

.Box-VZLITUB .UploadArea .BtnFileUpload:hover ~ .TooltipText {
	display: inline-flex;
}

.Box-VZLITUB .UploadArea .TooltipText {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	right: -12px;
	height: 19px;
	padding: 4px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 11px;
	font-weight: 400;
	color: var(--white);
	background-color: var(--color21);
	border-radius: 4px;
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.36);
	pointer-events: none;
}

.FileListWrap > li + li {
	margin-top: 8px;
}

.FileListWrap > li.FileItem {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	padding: 12px;
	background-color: var(--color15);
	border-radius: 8px;
}

.FileListWrap > li.FileItem .FileName {
	flex: 1 1 0;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 13px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.FileListWrap > li.FileItem .FileName:hover + .FileNameTooltip {
	display: block;
}

.FileListWrap > li.FileItem .FileNameTooltip {
	display: none;
	position: absolute;
	top: calc(100% + 2px);
	left: 0;
	z-index: 10;
	max-width: 292px;
	padding: 4px;
	font-size: 11px;
	font-weight: 400;
	color: var(--white);
	line-height: 16px;
	letter-spacing: -0.3px;
	background-color: var(--color21);
	border-radius: 4px;
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.36);
	pointer-events: none;
}

.FileListWrap > li.FileItem .FileInfo {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.FileListWrap > li.FileItem .FileInfo .FileExtension {
	font-size: 13px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.FileListWrap > li.FileItem .FileInfo .BtnRemove {
	width: 16px;
	height: 16px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	cursor: pointer;
}

.FileListWrap > li.FileItem .FileInfo .BtnRemove > img {
	pointer-events: none;
}

.List-ZSVXJ9P {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 24px;
}

.List-ZSVXJ9P > li {
	flex: 1 1 0;
	max-width: 264px;
	padding: 34px;
	border: 1px solid var(--color13);
	border-radius: 16px;
}

.List-ZSVXJ9P > li .Main {
	font-size: 18px;
	font-weight: 700;
	color: var(--color7);
	line-height: 24px;
}

.List-ZSVXJ9P > li .Main > span {
	color: var(--color17);
}

.List-ZSVXJ9P > li .Desc {
	margin-top: 18px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color9);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.LoadingSkeleton_1 {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.LoadingSkeleton_1.Style2 {
	min-height: 441px;
	height: calc(100vh - 435px);
	position: relative;
}

.LoadingSkeleton_1 .SkeletonWrap {
	width: 100%;
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li + li {
	margin-top: 20px;
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li.DemoSection .Skeleton {
	margin-bottom: 12px;
	position: relative;
	overflow: hidden;
	background-color: #F8F8F8;
	border-radius: 6px;
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li.DemoSection .Skeleton::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent 0%, #E9E9E9 50%, transparent 100%);
	animation: Shimmer 2s infinite;
	transform: translateX(-100%);
}

@keyframes Shimmer {
	0% {
		transform: translateX(-100%);
	}
	50% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(100%);
	}
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow {
	height: 17px;
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type1 {
	width: 13%;
	height: 20px;
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type2 {
	width: 22%;
	height: 23px;
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type3 {
	width: 33%;
	height: 35px;
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type4 {
	width: 46%;
	height: 18px;
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type5 {
	width: 100%;
}

.LoadingSkeleton_1 .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.LineType1 {
	width: 100%;
	height: 1px;
}

.LoadingSkeleton_1 .ModalRoading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 10;
	width: 320px;
	padding: 40px;
	background-color: var(--white);
	border: 1px solid var(--color13);
	border-radius: 40px;
	box-shadow: 0 4px 4px 0 var(--color19);
}

.LoadingSkeleton_1 .ModalRoading .Loader_1 {
	margin: 0 auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 5px solid #E8EDF9;
	border-top: 5px solid var(--primary);
	animation: Spin 2s linear infinite;
}

@keyframes Spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.LoadingSkeleton_1 .ModalRoading .TextArea {
	margin-top: 10px;
	text-align: center;
}

.LoadingSkeleton_1 .ModalRoading .TextArea .GuideText {
	font-size: 20px;
	font-weight: 500;
	color: var(--color7);
	line-height: 24px;
	letter-spacing: -0.8px;
}

.LoadingSkeleton_1 .ModalRoading .TextArea .GuideText > Strong {
	font-weight: 600;
}

.LoadingSkeleton_1 .ModalRoading .TextArea .ElapsedTime {
	margin-top: 10px;
	font-size: 20px;
	font-weight: 500;
	color: var(--color7);
}

.LoadingSkeleton_1 .ModalRoading .TextArea .ElapsedTime > span {
	color: var(--primary);
}

.LoadingSkeleton_1 .ModalRoading .TextArea .RequiredTime {
	margin-top: 10px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color9);
}

.LoadingSkeleton_1.Mo {
	height: auto;
	min-height: 300px;
}

.LoadingSkeleton_1.Mo .SkeletonWrap > ul > li + li {
	margin-top: 12px;
}

.LoadingSkeleton_1.Mo .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type1 {
	width: 34%;
}

.LoadingSkeleton_1.Mo .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type2 {
	width: 55%;
}

.LoadingSkeleton_1.Mo .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type3 {
	width: 83%;
}

.LoadingSkeleton_1.Mo .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type4 {
	width: 100%;
}

.LoadingSkeleton_1.Mo .SkeletonWrap > ul > li.DemoSection .Skeleton.SkeletonRow.Type5 {
	width: 100%;
}

.LoadingSkeleton_1.Mo .ModalRoading {
	width: 280px;
}

.LoadingSkeleton_1.Mo .ModalRoading .TextArea .GuideText {
	font-size: 16px;
	line-height: 24px;
}

.LoadingSkeleton_1.Mo .ModalRoading .TextArea .ElapsedTime {
	font-size: 16px;
}

.Box-RRJ4IXNN {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px 20px;
	flex-wrap: wrap;
	position: relative;
}

.Box-RRJ4IXNN .Overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: transparent; /* 완전 투명 */
	z-index: 10;
	display: none;
}

.Box-RRJ4IXNN .RadioBox input[type=radio] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.Box-RRJ4IXNN .RadioBox input[type=radio]:checked ~ .Text {
	color: var(--primary);
	font-weight: 700;
	background-color: rgba(25, 113, 194, 0.2);
	border-color: var(--primary);
	border-width: 2px;
}

.Box-RRJ4IXNN .RadioBox input[type=radio]:checked ~ .Text .IconChecked {
	display: block;
}

.Box-RRJ4IXNN .RadioBox input[type=radio]:disabled ~ .Text {
	color: var(--disabled2);
	background-color: var(--disabled);
	pointer-events: none;
}

.Box-RRJ4IXNN .RadioBox .Text {
	width: 100%;
	height: 48px;
	padding: 0 20px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	background-color: var(--color15);
	border: 1px solid var(--color13);
	border-radius: 100px;
	cursor: pointer;
}

.Box-RRJ4IXNN .RadioBox .Text > .IconChecked {
	display: none;
}

.Box-RRJ4IXNN.Mo {
	margin-top: 24px;
	justify-content: flex-start;
	gap: 8px;
	flex-wrap: nowrap;
	overflow-x: auto;
}

.Box-RRJ4IXNN.Mo .RadioBox .Text {
	height: 40px;
	padding: 0 16px;
	font-size: 14px;
}

.Box-6IMHQT7A {
	width: 100%;
}

.Box-6IMHQT7A > ul > li {
	margin-bottom: 20px;
	width: 100%;
}

.Box-6IMHQT7A > ul > li:last-child {
	margin-bottom: 0;
}

.Box-6IMHQT7A > ul > li .RadioBox {
	width: 100%;
}

.Box-6IMHQT7A > ul > li .RadioBox input[type=radio] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.Box-6IMHQT7A > ul > li .RadioBox input[type=radio]:checked ~ .Text {
	font-weight: 700;
	border-color: var(--primary);
	border-width: 2px;
	box-shadow: 0 4px 4px 0 var(--color18);
}

.Box-6IMHQT7A > ul > li .RadioBox input[type=radio]:disabled ~ .Text {
	color: var(--disabled2);
	background-color: var(--disabled);
	pointer-events: none;
}

.Box-6IMHQT7A > ul > li .RadioBox .Text {
	width: 100%;
	padding: 20px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	font-size: 18px;
	font-weight: 500;
	color: var(--color7);
	line-height: 24px;
	border: 1px solid var(--color12);
	border-radius: 12px;
	cursor: pointer;
}

.Box-6IMHQT7A > ul > li .RadioBox .Text > .DirectInputLabel {
	margin-right: 2px;
	font-weight: 700;
}

.Box-6IMHQT7A > ul > li .RadioBox.Style2 .Text {
	display: block;
	border-color: var(--color7);
}

.Box-6IMHQT7A > .BtnBox {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.Box-6IMHQT7A.Mo {
	margin-top: 24px;
	min-height: auto;
}

.Box-6IMHQT7A.Mo > ul > li + li {
	margin-top: 16px;
}

.Box-6IMHQT7A.Mo > ul > li .RadioBox .Text {
	height: auto;
	padding: 16px;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
}

.SplitContainer {
	width: 100%;
	height: 100%;
	display: flex;
	gap: 40px;
}

.SplitContainer .gutter {
	width: 16px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	border-radius: 12px;
	background-color: var(--color15);
	background-image: url("/icon/easyai/icon_58.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 6px 24px;
	box-shadow: 2px 1px 10px 0 var(--color18) inset;
	cursor: col-resize;
}

.SplitContainer .SplitLeftArea {
	min-width: 320px;
	max-width: 460px;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0;
	height: 100%;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .GuideText {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 4px;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .GuideText > img {
	width: 20px;
	height: 20px;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .GuideText > .Text {
	flex: 1 1 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--color9);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList {
	margin-top: 20px;
	min-height: 308px;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList > li + li {
	margin-top: 20px;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList > li {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0;
	padding: 8px;
	background-color: var(--color16);
	border-radius: 12px;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList > li.Active {
	background-color: var(--color15) !important;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList > li .FormWrap {
	flex: 1 1 0;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList > li .FormWrap .CmnTitleText {
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList > li .FormWrap > .Second {
	margin-top: 20px;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList > li .FormWrap > .Second .Textarea_1 .TextField > textarea {
	height: 64px;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList > li .FormWrap > .BtnBoxDelete {
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.SplitContainer .SplitLeftArea .Box-8GW3YOU > .ContentWrap .TableList > li > .DragIconBox {
	cursor: move;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.SplitContainer .SplitLeftArea .BtnBox-9XG68XM {
	margin-top: 64px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
}

.SplitContainer .SplitLeftArea .BtnBox-9XG68XM > .BtnListAdd {
	width: 100%;
}

.SplitContainer .SplitLeftArea .BtnBox-9XG68XM > .BtnBoxBottom {
	margin-top: 20px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.SplitContainer .SplitLeftArea .BtnBox-9XG68XM > .BtnBoxBottom > button {
	flex: 1 1 0;
	min-width: auto;
	width: 100%;
}

.SplitContainer .SplitRightArea {
	position: relative;
	flex: 1;
}

.SplitContainer .SplitRightArea .Modal {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: none;
}

.SplitContainer .SplitRightArea .Modal > .ContentWrap > .Body {
	min-height: 345px;
	max-height: calc(95vh - 545px);
}

.Box-JF1CXNR > .Head {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.Box-JF1CXNR > .Head .BtnCopy {
	position: relative;
}

.Box-JF1CXNR > .Head .BtnCopy:hover::before {
	opacity: 1;
}

.Box-JF1CXNR > .Head .BtnCopy::before {
	content: "복사하기";
	opacity: 0;
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%);
	height: 19px;
	padding: 4px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 11px;
	font-weight: 400;
	color: var(--white);
	white-space: nowrap;
	background-color: var(--color21);
	border-radius: 4px;
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.36);
	pointer-events: none;
}

.Box-JF1CXNR > .Body {
	position: relative;
	margin-top: 12px;
	min-height: 457px;
	overflow: hidden;
	border-bottom: 1px solid var(--color11);
}

.Box-JF1CXNR > .Body .TitleArea .TitleText {
	margin: 12px 0 0 8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--color6);
	line-height: 24px;
}

.Box-JF1CXNR > .Body .DetailArea {
	margin-top: 40px;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText {
	margin-top: 12px;
	font-size: 16px;
	color: var(--color7);
	line-height: 28px;
	letter-spacing: -0.3px;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText .Depth.Style1 {
	font-weight: 700;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText .Depth.Style2 {
	font-weight: 500;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText .Depth.Style3 {
	margin-top: 20px;
	font-weight: 500;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText .Depth.Style4 {
	margin-top: 20px;
	font-weight: 400;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText .Depth .Highlight {
	position: relative;
	font-weight: 500;
	color: var(--color17);
	display: inline;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText .Depth .Highlight:hover .OriginText {
	display: inline-flex;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText .Depth .Highlight .OriginText {
	display: none;
	position: absolute;
	top: 22px;
	left: -10px;
	height: 19px;
	padding: 4px;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 11px;
	font-weight: 400;
	color: var(--white);
	white-space: nowrap;
	background-color: var(--color21);
	border-radius: 4px;
	box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.36);
}

.Box-JF1CXNR > .Body .DetailArea .DetailText h1 {
	margin: 0 20px 20px 8px;
	font-weight: 400;
	line-height: 24px;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText h2 {
	margin: 0 20px 0 16px;
	font-weight: 600;
	color: var(--color5);
}

.Box-JF1CXNR > .Body .DetailArea .DetailText h3 {
	margin: 0 20px 0 28px;
	font-weight: 500;
	color: var(--color6);
}

.Box-JF1CXNR > .Body .DetailArea .DetailText h4 {
	margin: 0 20px 0 28px;
	font-weight: 500;
}

.Box-JF1CXNR > .Body .DetailArea .DetailText p {
	margin: 4px 20px 20px 50px;
	font-size: 15px;
	line-height: 24px;
	letter-spacing: -0.5px;
}

.Box-JF1CXNR > .Foot {
	margin-top: 20px;
}

.Box-JF1CXNR > .Foot .DescText {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 0;
}

.Box-JF1CXNR > .Foot .DescText > .Text {
	flex-shrink: 1;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	line-height: 16px;
	letter-spacing: -0.3px;
}

.Box-JF1CXNR > .Foot .DescText > .Text > .Accent {
	font-weight: 700;
	color: var(--error);
}

.Box-JF1CXNR > .Foot .BtnBoxRadio {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}

.Box-JF1CXNR > .Foot .BtnBoxRadio .FlagNum {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	height: 26px;
	padding: 0 8px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	border-radius: 20px;
	border: 1px solid var(--color13);
	background-color: var(--color15);
}

.Box-JF1CXNR > .Foot .FootBtnBox {
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.Box-JF1CXNR > .Foot .FootBtnBox .ButtonDownLoad {
	height: 44px;
	padding: 0 27px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	background-color: #303038;
	border-radius: 30px;
}

.Box-JF1CXNR > .Foot .FootBtnBox .ButtonDownLoad strong {
	color: #FF7700;
}

.Wrap-ZSTTB3T {
	width: 1008px;
	margin: 0 auto;
}

.Wrap-ZSTTB3T .MainTextArea {
	text-align: center;
}

.Wrap-ZSTTB3T .MainTextArea .Title {
	font-size: 40px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -1px;
}

.Wrap-ZSTTB3T .MainTextArea .Desc {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-ZSTTB3T .MainTextArea .Desc > strong {
	color: var(--primary);
}

.Wrap-ZSTTB3T .MainTextArea .PromoBanner {
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 20px;
	font-weight: 600;
	color: var(--color7);
}

.Wrap-ZSTTB3T .MainTextArea .PromoBanner > img {
	width: 24px;
	height: 24px;
}

.Wrap-ZSTTB3T .CardListBox {
	margin-top: 80px;
}

.Wrap-ZSTTB3T .CardListBox .SubTitle {
	font-size: 20px;
	font-weight: 600;
	color: var(--color7);
}

.Wrap-ZSTTB3T .CardListBox > ul {
	margin-top: 28px;
	display: grid;
	grid-template-columns: repeat(2, 430px);
	justify-content: center;
	gap: 28px 34px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item {
	height: 372px;
	padding: 36px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	background-color: var(--white);
	border-radius: 16px;
	border: 1px solid transparent;
	box-shadow: 0 -4px 10px 0 #E7E7E7;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item:hover {
	border-color: var(--primary);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul {
	width: 100%;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li + li {
	margin-top: 36px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .Title {
	font-size: 22px;
	font-weight: 700;
	color: var(--color9);
	text-align: center;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .Title > strong {
	color: var(--primary);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .PriceArea {
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .PriceArea > div + div {
	margin-left: 30px;
	padding-left: 30px;
	border-left: 1px solid var(--color12);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .PriceArea > .Left .Flag {
	width: 86px;
	height: 25px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--color9);
	letter-spacing: -0.3px;
	background-color: var(--color15);
	border-radius: 20px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .PriceArea > .Left .Text {
	margin-top: 12px;
	color: var(--color10);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .PriceArea > .Left .Text > .Num {
	font-family: "Roboto", sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.42px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .PriceArea > .Right .Flag {
	width: 86px;
	height: 25px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
	letter-spacing: -0.3px;
	background-color: var(--color17);
	border-radius: 20px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .PriceArea > .Right .Flag > span {
	margin-right: 2px;
	font-family: "Roboto", sans-serif;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .PriceArea > .Right .Text {
	margin-top: 12px;
	color: var(--primary);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .PriceArea > .Right .Text > .Num {
	font-family: "Roboto", sans-serif;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: -0.42px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .DescList > li + li {
	margin-top: 4px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .DescList > li {
	position: relative;
	padding-left: 20px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color7);
	line-height: 20px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item > ul > li .DescList > li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("/icon/easyai/icon_63.svg") no-repeat;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Style2 > ul > li + li {
	margin-top: 18px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Style2 > ul > li .Title {
	color: var(--color7);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Style2 > ul > li .PriceArea {
	display: flex;
	flex-direction: row;
	gap: 0;
	font-size: 20px;
	font-weight: 600;
	color: var(--primary);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Style2 > ul > li .PriceArea > .Num {
	font-family: "Roboto", sans-serif;
	font-size: 34px;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Disabled {
	pointer-events: none;
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Disabled > ul > li .Title {
	color: var(--disabled2);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Disabled > ul > li .Title > strong {
	color: var(--disabled2);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Disabled > ul > li .PriceArea {
	color: var(--disabled2);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Disabled > ul > li .PriceArea > .Left .Flag {
	color: var(--disabled2);
	background-color: var(--color15);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Disabled > ul > li .PriceArea > .Left .Text {
	color: var(--disabled2);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Disabled > ul > li .PriceArea > .Right .Flag {
	color: var(--disabled2);
	background-color: var(--color15);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Disabled > ul > li .PriceArea > .Right .Text {
	color: var(--disabled2);
}

.Wrap-ZSTTB3T .CardListBox > ul > li > .Item.Disabled > ul > li .DescList > li {
	color: var(--disabled2);
}

.Wrap-ZSTTB3T .CashBuyService {
	margin-top: 80px;
}

.Wrap-ZSTTB3T .CashBuyService .SubTitle {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-ZSTTB3T .CashBuyService .CashList {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
}

.Wrap-ZSTTB3T .CashBuyService .CashList > li {
	height: 126px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	border-radius: 10px;
	box-shadow: -5px 4px 8px 0 rgba(0, 0, 0, 0.25);
}

.Wrap-ZSTTB3T .CashBuyService .CashList > li > .Left {
	width: 200px;
	height: 100%;
	padding: 20px;
	background-color: var(--white);
	border: 1px solid var(--color12);
	border-radius: 10px 0 0 10px;
}

.Wrap-ZSTTB3T .CashBuyService .CashList > li > .Left .Title {
	font-size: 16px;
	font-weight: 600;
	color: var(--color7);
}

.Wrap-ZSTTB3T .CashBuyService .CashList > li > .Left .Title > strong {
	color: var(--primary);
}

.Wrap-ZSTTB3T .CashBuyService .CashList > li > .Left .Price {
	margin-top: 7px;
	font-family: "Roboto", sans-serif;
	font-size: 40px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.5px;
}

.Wrap-ZSTTB3T .CashBuyService .CashList > li > .Left .Desc {
	margin-top: 6px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Wrap-ZSTTB3T .CashBuyService .CashList > li > .Right {
	width: 126px;
	height: 126px;
	overflow: hidden;
}

.Wrap-ZSTTB3T .CashBuyService .CashList > li > .Right > button {
	width: 100%;
	height: 100%;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.3px;
	background: url("/icon/easyai/icon_61.svg") no-repeat;
	background-size: cover;
}

.Wrap-ZSTTB3T .CautionArea {
	margin-top: 80px;
}

.Wrap-ZSTTB3T .CautionArea .SubTitle {
	font-size: 20px;
	font-weight: 600;
	color: var(--color7);
}

.Wrap-ZSTTB3T .CautionArea > ul {
	margin-top: 32px;
}

.Wrap-ZSTTB3T .CautionArea > ul > li + li {
	margin-top: 32px;
}

.Wrap-ZSTTB3T .CautionArea > ul > li {
	position: relative;
	padding-left: 20px;
}

.Wrap-ZSTTB3T .CautionArea > ul > li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("/icon/easyai/icon_63.svg") no-repeat;
}

.Wrap-ZSTTB3T .CautionArea > ul > li .FirstTitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	line-height: 24px;
}

.Wrap-ZSTTB3T .CautionArea > ul > li > .SecondList {
	margin-top: 6px;
}

.Wrap-ZSTTB3T .CautionArea > ul > li > .SecondList > li + li {
	margin-top: 4px;
}

.Wrap-ZSTTB3T .CautionArea > ul > li > .SecondList > li {
	position: relative;
	padding-left: 8px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color7);
	line-height: 20px;
}

.Wrap-ZSTTB3T .CautionArea > ul > li > .SecondList > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Wrap-ZSTTB3T .CautionArea > ul > li > .SecondList > li .SubDesc {
	margin-top: 4px;
	line-height: 24px;
}

.Wrap-2ARY8PXX {
	margin: 0 auto;
	width: 800px;
}

.Wrap-2ARY8PXX .MainTextArea {
	font-size: 40px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -1px;
	text-align: center;
}

.Wrap-2ARY8PXX .GuideBox_1 {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Wrap-2ARY8PXX .GuideBox_1 > button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Wrap-2ARY8PXX .BtnBox-7N7ZQ7H {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

/* payment.scss */
.TextBox_1 {
	margin-top: 64px;
}

.TextBox_1 .ContentList_1 > li + li {
	margin-top: 60px;
}

.TextBox_1 .ContentList_1.Style2 > li + li {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 2px solid var(--color13);
}

.TextBox_1 .ContentList_1.Style2 > li .ContentTitle_2 {
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.TextBox_1 .ContentList_1.Style2 > li .ContentTitle_2 .First {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

.TextBox_1 .ContentList_1.Style2 > li .ContentTitle_2 .First .MainText {
	font-size: 18px;
	font-weight: 700;
	color: var(--color7);
}

.TextBox_1 .ContentList_1.Style2 > li .ContentTitle_2 .Second {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.TextBox_1 .ContentList_1.Style2 > li .ContentTitle_2 .Second > .BtnLink {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.TextBox_1 .ContentList_1.Style2 > li .ContentBox_2 {
	margin: 0 20px;
}

.List-9FUXDYG {
	padding: 20px;
	background-color: var(--color15);
	border-radius: 8px;
}

.List-9FUXDYG > li + li {
	margin-top: 4px;
}

.List-9FUXDYG > li {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.List-9FUXDYG > li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("/icon/easyai/icon_63.svg") no-repeat;
}

.Text-LKXWNDL .UsagePeriod {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Text-LKXWNDL .UsagePeriod.Style2 {
	margin-top: 20px;
	padding-top: 20px;
	padding-left: 20px;
	font-size: 14px;
	border-top: 1px solid var(--color13);
}

.Text-LKXWNDL .UsagePeriod > .Date {
	font-family: "Roboto", sans-serif;
	letter-spacing: -0.5px;
}

.Text-LKXWNDL .UsagePeriod > .Price {
	font-size: 16px;
}

.Text-LKXWNDL .UsagePeriod > .Price > .Num {
	font-family: "Roboto", sans-serif;
}

.Text-LKXWNDL .UsagePeriod > .Price > .Sub {
	margin-left: 2px;
	font-size: 14px;
	font-weight: 400;
}

.Text-LKXWNDL .DepositDetail {
	margin-top: 20px;
	padding-top: 20px;
	padding-left: 20px;
	border-top: 1px solid var(--color13);
}

.Text-LKXWNDL .DepositDetail > ul > li + li {
	margin-top: 20px;
}

.Text-LKXWNDL .DepositDetail > ul > li {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Text-LKXWNDL .DepositDetail > ul > li > .Price {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2px;
	font-size: 16px;
	font-weight: 700;
}

.Text-LKXWNDL .DepositDetail > ul > li > .Price > .Num {
	font-family: "Roboto", sans-serif;
}

.Text-LKXWNDL .DepositDetail > ul > li > .Price > .Sub {
	font-size: 14px;
	font-weight: 400;
}

.Text-LKXWNDL .TotalPrice {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 20px;
	background-color: var(--color14);
}

.Text-LKXWNDL .TotalPrice > .Left {
	font-size: 20px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.5px;
}

.Text-LKXWNDL .TotalPrice > .Right {
	text-align: right;
}

.Text-LKXWNDL .TotalPrice > .Right > .Price {
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--error);
	letter-spacing: -0.5px;
}

.Text-LKXWNDL .TotalPrice > .Right > .SubDesc {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.PaymentWrap_1.Style2 {
	margin-top: 20px;
}

.PaymentWrap_1.Style2 > .PayMethodArea {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.PaymentWrap_1 > .PayMethodArea {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px 8px;
}

.PaymentWrap_1 > .PayMethodArea .RadioBox_2 input[type=radio] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.PaymentWrap_1 > .PayMethodArea .RadioBox_2 input[type=radio]:checked ~ .Text {
	background-color: rgba(25, 113, 194, 0.2);
	border-color: var(--primary);
}

.PaymentWrap_1 > .PayMethodArea .RadioBox_2 .Text {
	width: 100%;
	height: 76px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
	border: 1px solid var(--color12);
	border-radius: 12px;
	cursor: pointer;
}

.PaymentWrap_1 > .PayMethodArea .RadioBox_2 .Text > img {
	width: 70px;
}

.PaymentWrap_1 > .PayMethodArea .RadioBox_2 input[type=radio]:checked ~ .RadioBox_2.Popular::after {
	display: flex;
}

.PaymentWrap_1 > .TabContent {
	margin-top: 12px;
}

.PaymentWrap_1 > .TabContent .Ul-98JYY8O {
	display: none;
}

.PaymentWrap_1 > .TabContent .Ul-98JYY8O > li + li {
	margin-top: 12px;
}

.PaymentWrap_1 > .TabContent .Ul-98JYY8O > li {
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.PaymentWrap_1 > .TabContent .Ul-98JYY8O > li > .Title {
	font-weight: 700;
}

.PaymentWrap_1 > .TabContent .Ul-98JYY8O > li > .Desc {
	margin-top: 6px;
	line-height: 18px;
	word-break: keep-all;
}

.PaymentWrap_1 > .TabContent .Ul-98JYY8O > li > .Desc > .BtnMore,
.PaymentWrap_1 > .TabContent .Ul-98JYY8O > li > .Desc > .BtnLink {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.PaymentWrap_1 > .TabContent .Ul-98JYY8O > li > .Desc.Style2 {
	position: relative;
	padding-left: 8px;
}

.PaymentWrap_1 > .TabContent .Ul-98JYY8O > li > .Desc.Style2::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.PaymentWrap_1 > .TabContent .Ul-98JYY8O.On {
	display: block;
}

.ToggleContainer {
	overflow: hidden;
}

.ToggleContainer .ToggleContentWrap .ContentItem > article + article {
	margin-top: 120px;
}

.ToggleContainer .ToggleContentWrap .ContentItem .CmnSubTitle {
	margin-top: 120px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	text-align: center;
}

.ToggleContainer .ToggleContentWrap .ContentItem .CmnSubTitle > .Sub {
	font-size: 20px;
	font-weight: 700;
	color: #6D7584;
}

.ToggleContainer .ToggleContentWrap .ContentItem .CmnSubTitle > .Main {
	font-size: 42px;
	font-weight: 700;
	color: var(--color5);
	line-height: 52px;
}

.ToggleContainer .ToggleContentWrap .ContentItem .CmnSubTitle > .Main > span {
	color: var(--white);
}

.ToggleContainer .ToggleContentWrap .ContentItem .CmnSubTitle.Style2 > .Sub {
	color: #D0D0D0;
}

.ToggleContainer .ToggleContentWrap .ContentItem .CmnSubTitle.Style2 > .Main {
	color: #D0D0D0;
}

.Wrap-6YKGT36,
.Wrap-BWDFPKDO > .Inner,
.Wrap-1OWEZ1KL > .Inner,
.Wrap-K4KUO985,
.Wrap-DW8JF9EQ,
.Wrap-VZQMCYBJ {
	width: 1080px;
	margin: 0 auto;
	padding: 0;
}

.Wrap-6YKGT36 {
	margin-top: 12px;
}

.Wrap-6YKGT36 .MainTitleArea .MainTitle {
	font-size: 58px;
	font-weight: 700;
	color: var(--color5);
	text-align: center;
}

.Wrap-6YKGT36 .MainTitleArea .MainTitle > .AccentText {
	font-size: 58px;
	background: linear-gradient(106deg, #4F6FFF 0%, #97C6FF 49%, #6898FF 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.Wrap-6YKGT36 .MainTitleArea .MainTitle > .SubDesc {
	display: block;
	margin-top: 11px;
	font-size: 58px;
}

.Wrap-6YKGT36 .MainTitleArea .Desc {
	margin-top: 12px;
	font-size: 20px;
	font-weight: 500;
	color: #A8A69D;
	text-align: center;
}

.Wrap-6YKGT36 .ServiceCardList {
	margin-top: 120px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.Wrap-6YKGT36 .ServiceCardList > li {
	flex: 1 1 0;
	width: 100%;
	height: 400px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;
	border-radius: 20px;
}

.Wrap-6YKGT36 .ServiceCardList > li:nth-child(1) {
	background: url("/icon/easyai/icon_30.svg") no-repeat;
}

.Wrap-6YKGT36 .ServiceCardList > li:nth-child(2) {
	background: url("/icon/easyai/icon_31.svg") no-repeat;
}

.Wrap-6YKGT36 .ServiceCardList > li:nth-child(3) {
	background: url("/icon/easyai/icon_32.svg") no-repeat;
}

.Wrap-6YKGT36 .ServiceCardList > li > .CardIcon > img {
	width: 48px;
	height: 48px;
}

.Wrap-6YKGT36 .ServiceCardList > li > .CardContent > .Title {
	font-size: 28px;
	font-weight: 700;
	color: var(--white);
}

.Wrap-6YKGT36 .ServiceCardList > li > .CardContent > .Desc {
	margin-top: 18px;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: var(--white);
	line-height: 24px;
}

.Wrap-6YKGT36 .ServiceCardList > li > .CardContent > .Desc > span {
	font-weight: 700;
}

.Wrap-BWDFPKDO {
	background: linear-gradient(180deg, #FFF 0%, #DFE8FF 20%, #EDF9FF 35%, #FFF 65%);
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I {
	margin-top: 168px;
	position: relative;
	height: 169px;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide {
	width: 300px;
	height: 169px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
	background-color: var(--white);
	border: 1px solid #D0D0D0;
	border-radius: 20px;
	transition: height 0.25s ease-in-out;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide .Title {
	margin-top: 26px;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 15px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide .preview, .Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide .detail {
	margin-top: 7px;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 13px;
	font-weight: 500;
	color: #898989;
	line-height: 20px;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide .BtnClose {
	opacity: 0;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 10;
	width: 52px;
	aspect-ratio: 1/1;
	background: url("/icon/easyai/icon_close.svg") no-repeat center center;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide.swiper-slide-active {
	cursor: pointer;
	border: 1px solid var(--primary);
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide.swiper-slide-active.Clicked {
	height: 400px;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide.swiper-slide-active.Clicked .Flag_1 {
	display: none;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide.swiper-slide-active.Clicked .Title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	font-size: 16px;
	line-height: 20px;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide.swiper-slide-active.Clicked .detail {
	margin-top: 20px;
	display: block;
	max-height: 280px;
	overflow: auto;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide.swiper-slide-active.Clicked .BtnClose {
	opacity: 1;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide .detail {
	display: none;
}


.Wrap-BWDFPKDO .Swiper-RJEZZ7I .swiper-slide.swiper-slide-active.Clicked .preview {
	display: none;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .SwiperBtnBox-XMXJ3LD51 .swiper-button-prev,
.Wrap-BWDFPKDO .Swiper-RJEZZ7I .SwiperBtnBox-XMXJ3LD51 .swiper-button-next {
	width: 48px;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .SwiperBtnBox-XMXJ3LD51 .swiper-button-prev, .Wrap-BWDFPKDO .Swiper-RJEZZ7I .SwiperBtnBox-XMXJ3LD51 .swiper-rtl .swiper-button-next {
	left: -64px;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .SwiperBtnBox-XMXJ3LD51 .swiper-button-next, .Wrap-BWDFPKDO .Swiper-RJEZZ7I .SwiperBtnBox-XMXJ3LD51 .swiper-rtl .swiper-button-prev {
	right: -64px;
}

.Wrap-BWDFPKDO .Swiper-RJEZZ7I .SwiperBtnBox-XMXJ3LD51 .swiper-button-next:after, .Wrap-BWDFPKDO .Swiper-RJEZZ7I .SwiperBtnBox-XMXJ3LD51 .swiper-button-prev:after {
	display: none;
}

.Wrap-BWDFPKDO .AiIntroArea {
	margin-top: 120px;
	padding: 36px 42px;
	background-color: #303038;
	border-radius: 24px;
}

.Wrap-BWDFPKDO .AiIntroArea .Title {
	font-size: 26px;
	font-weight: 700;
	color: var(--white);
}

.Wrap-BWDFPKDO .AiIntroArea .DescList {
	margin-top: 24px;
}

.Wrap-BWDFPKDO .AiIntroArea .DescList > li {
	font-size: 20px;
	font-weight: 400;
	color: #A8A69D;
	line-height: 29px;
}

.Wrap-BWDFPKDO .AiIntroArea .DescList > li > span {
	font-weight: 500;
	color: var(--white);
}

.Wrap-1OWEZ1KL {
	padding-top: 60px;
	padding-bottom: 300px;
	background-color: #343B46;
}

.Wrap-1OWEZ1KL .ReviewList {
	margin-top: 140px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
}

.Wrap-1OWEZ1KL .ReviewList > li:nth-child(2), .Wrap-1OWEZ1KL .ReviewList > li:nth-child(4) {
	margin-top: 84px;
}

.Wrap-1OWEZ1KL .ReviewList > li > .Item {
	width: 252px;
	height: 220px;
	padding: 20px;
	background-color: var(--white);
	border-radius: 16px;
}

.Wrap-1OWEZ1KL .ReviewList > li > .Item:nth-child(2) {
	margin-top: 20px;
}

.Wrap-1OWEZ1KL .ReviewList > li > .Item .UserInfoArea {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Wrap-1OWEZ1KL .ReviewList > li > .Item .UserInfoArea .Info {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-1OWEZ1KL .ReviewList > li > .Item .Post {
	margin-top: 17px;
	font-size: 13px;
	font-weight: 500;
	color: var(--color7);
	line-height: 18px;
}

.Wrap-K4KUO985 .AiFeatureList {
	margin-top: 104px;
}

.Wrap-K4KUO985 .AiFeatureList > li + li {
	margin-top: 29px;
}

.Wrap-K4KUO985 .AiFeatureList > li .Item {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 40px;
	background-color: #F0F0FF;
	border-radius: 20px;
}

.Wrap-K4KUO985 .AiFeatureList > li .Item .TextArea .Title {
	display: flex;
	flex-direction: row;
	gap: 2px;
	font-size: 24px;
	font-weight: 700;
	color: var(--color7);
	line-height: 31px;
}

.Wrap-K4KUO985 .AiFeatureList > li .Item .TextArea .Title .Accent {
	color: #898989;
}

.Wrap-K4KUO985 .AiFeatureList > li .Item .TextArea .Desc {
	margin-top: 8px;
	padding-left: 23px;
	font-size: 16px;
	font-weight: 400;
	color: #898989;
	line-height: 22px;
}

.Wrap-K4KUO985 .AiFeatureList > li .Item .VideoContent {
	margin-top: 60px;
	max-width: 700px;
	border-radius: 20px;
	box-shadow: 5px -7px 13px 7px rgba(0, 0, 0, 0.08);
}

.Wrap-K4KUO985 .AiFeatureList > li:nth-child(3) {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 29px;
}

.Wrap-K4KUO985 .AiFeatureList > li:nth-child(3) > .Item {
	flex: 1 1 0;
	height: 520px;
}

.Wrap-DW8JF9EQ .FaqAnswerList {
	margin-top: 104px;
}

.Wrap-DW8JF9EQ .FaqAnswerList > li.Item {
	border-top: 1px solid #D0D0D0;
}

.Wrap-DW8JF9EQ .FaqAnswerList > li.Item .BtnFaqToggle {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 22px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.Wrap-DW8JF9EQ .FaqAnswerList > li.Item .BtnFaqToggle .Title {
	flex: 1 1 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 22px;
	letter-spacing: -0.2px;
	text-align: left;
}

.Wrap-DW8JF9EQ .FaqAnswerList > li.Item .BtnFaqToggle .ArrowIcon {
	width: 14px;
	height: 14px;
	transition: transform 0.25s ease-in-out;
}

.Wrap-DW8JF9EQ .FaqAnswerList > li.Item .BtnFaqToggle.Active .Title {
	font-weight: 600;
}

.Wrap-DW8JF9EQ .FaqAnswerList > li.Item .BtnFaqToggle.Active .ArrowIcon {
	transform: rotate(180deg);
}

.Wrap-DW8JF9EQ .FaqAnswerList > li.Item .Content {
	display: none;
	padding-bottom: 32px;
}

.Wrap-DW8JF9EQ .FaqAnswerList > li.Item .Content.On {
	display: block;
}

.Wrap-DW8JF9EQ .FaqAnswerList > li.Item .Content > .Text {
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 21px;
	letter-spacing: -0.2px;
}

.Wrap-DW8JF9EQ .FaqBtnBox {
	margin-top: 24px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Wrap-DW8JF9EQ .FaqBtnBox > button {
	width: 380px;
}

.Wrap-VZQMCYBJ {
	margin-top: 60px;
}

.Wrap-VZQMCYBJ .TipDetailList > li + li {
	margin-top: 60px;
	padding-top: 60px;
	border-top: 1px solid #E9E9F0;
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnTitleArea {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnTitleArea > .Text {
	font-size: 40px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnTitleArea > .Text > .Accent {
	color: var(--primary);
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnContent {
	margin-top: 32px;
	margin-left: 20px;
	font-size: 18px;
	font-weight: 400;
	color: var(--color7);
	line-height: 32px;
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnContent .HighlightBox {
	background-color: rgba(73, 121, 244, 0.1);
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnContent .SubDescList > li + li {
	margin-top: 30px;
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnContent .SubDescList .Depth1 {
	font-weight: 700;
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnContent .SubDescList .Depth2 {
	position: relative;
	padding-left: 12px;
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnContent .SubDescList .Depth2::before {
	content: "-";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnContent .SubDescList .Depth2.Accent {
	font-weight: 700;
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnContent .SubDescList .Depth2.Accent.Style1 {
	color: var(--primary);
}

.Wrap-VZQMCYBJ .TipDetailList > li .CmnContent .SubDescList .Depth2.Accent.Style2 {
	color: var(--error);
}

.Wrap-VZQMCYBJ .TipDetailList .Line {
	width: 100%;
	height: 1px;
	background-color: #EBEDF0;
}

.Text-JERL78V {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
}

.Text-JERL78V > img {
	width: 24px;
	height: 24px;
}

.Text-JERL78V > .Text {
	font-size: 20px;
	font-weight: 500;
	color: var(--color9);
	line-height: 24px;
	letter-spacing: -0.1px;
}

.Text-JERL78V > .Text > .Accent {
	color: var(--primary);
}

.Wrap-S830GCQ {
	margin-top: 50px;
}

.Wrap-S830GCQ .MainTextArea .Title {
	font-size: 24px;
	font-weight: 700;
	color: var(--color5);
	text-align: center;
}

.Wrap-S830GCQ .MainTextArea .Title .Accent {
	color: var(--primary);
}

.Wrap-S830GCQ .MainTextArea .Title > .Sub {
	margin-top: 8px;
	font-size: 18px;
	font-weight: 400;
	color: var(--color7);
}

.Wrap-S830GCQ .MainTextArea .Desc {
	margin-top: 24px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color9);
	letter-spacing: -0.3px;
	text-align: center;
}

.Spacer-5HHYJIP {
	margin-top: 40px !important;
}

.Wrap-VFQXVYOW {
	position: relative;
}

.Wrap-VFQXVYOW .CardListBox {
	display: grid;
	grid-template-columns: repeat(2, auto);
	grid-auto-rows: 1fr;
	justify-content: center;
	gap: 12px;
}

.Wrap-VFQXVYOW .CardListBox > li {
	display: flex;
}

.Wrap-VFQXVYOW .CardListBox > li > .Item {
	flex: 1;
	width: 146px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 12px;
	background-color: var(--white);
	border: 1px solid transparent;
	border-radius: 14px;
	box-shadow: 0 10px 30px 0 var(--color18);
	transition: transform 0.25s ease-in-out;
}

.Wrap-VFQXVYOW .CardListBox > li > .Item:hover {
	border-color: var(--color12);
	transform: translateY(-9px);
}

@media (hover: hover) and (pointer: fine) {
	.Wrap-VFQXVYOW .CardListBox > li > .Item:hover {
		border-color: var(--color12);
		transform: translateY(-9px);
	}
}

@media (hover: none) and (pointer: coarse) {
	.Wrap-VFQXVYOW .CardListBox > li > .Item:hover {
		transform: none;
		border-color: transparent;
	}
}

.Wrap-VFQXVYOW .CardListBox > li > .Item > .Icon {
	width: 36px;
	height: 36px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Wrap-VFQXVYOW .CardListBox > li > .Item > .Icon > img {
	width: 100%;
	height: 100%;
}

.Wrap-VFQXVYOW .CardListBox > li > .Item > .TextArea .Sub {
	font-size: 13px;
	font-weight: 700;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Wrap-VFQXVYOW .CardListBox > li > .Item > .TextArea .Main {
	margin-top: 8px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-VFQXVYOW .CardListBox > li > .Item > .TextArea .Main.Type2 {
	color: var(--disabled);
}

.Wrap-VFQXVYOW:has(.CardToastPopup.Show) .CardListBox > li .Item {
	pointer-events: none;
}

.Wrap-VFQXVYOW:has(.CardToastPopup.Show) .CardListBox > li .Item:hover {
	transform: none !important;
}

.Wrap-VFQXVYOW > .CardToastPopup {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100;
	height: 30px;
	padding: 0 12px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--white);
	letter-spacing: -0.3px;
	white-space: nowrap;
	background-color: var(--color21);
	border-radius: 8px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	transition: opacity 0.25s ease-in-out;
}

.Wrap-VFQXVYOW > .CardToastPopup.Show {
	opacity: 1;
}

.CmnStickySection {
	position: sticky;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 7px;
	padding: 12px 20px;
	background-color: #F5F6F7;
}

.CmnStickySection > button {
	flex: 1 1 0;
	width: 100%;
	min-width: auto;
}

.Wrap-9LICJAIA {
	width: 100%;
}

.Wrap-9LICJAIA .TextInputArea {
	width: 100%;
	height: 50px;
	padding: 0 8px 0 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	background-color: var(--white);
	overflow: hidden;
	border: 1px solid var(--primary);
	border-radius: 24px;
	box-shadow: 0 4px 9px 0 var(--color19);
}

.Wrap-9LICJAIA .TextInputArea .InputBox {
	flex: 1 1 0;
	width: 0;
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 8px;
	background-color: transparent;
}

.Wrap-9LICJAIA .TextInputArea .InputBox > input {
	flex: 1 1 0;
	display: block;
	width: 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	background-color: transparent;
	border: none;
	outline: none;
}

.Wrap-9LICJAIA .TextInputArea .InputBox > input::placeholder {
	color: #9CA3AF;
}

.Wrap-9LICJAIA .TextInputArea .BtnCreate {
	width: 34px;
	height: 34px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 7px;
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
}

.CmnWrap-IOT6F7LE .MainTitle {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 700;
	color: var(--color7);
}

.CmnWrap-IOT6F7LE .StepIndication {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.CmnWrap-IOT6F7LE .StepIndication::before {
	content: "";
	position: absolute;
	top: 30px;
	left: 15px;
	right: 15px;
	height: 1px;
	background-color: #D7DFE8;
	z-index: 1;
}

.CmnWrap-IOT6F7LE .StepIndication .StepItem {
	position: relative;
	flex: 1;
	text-align: center;
}

.CmnWrap-IOT6F7LE .StepIndication .StepItem.Active .Label {
	font-weight: 700;
	color: var(--white);
	background-color: var(--primary);
}

.CmnWrap-IOT6F7LE .StepIndication .StepItem.Active .Circle {
	width: 13px;
	height: 13px;
	border-width: 3px;
	border-color: var(--primary);
}

.CmnWrap-IOT6F7LE .StepIndication .StepItem .Label {
	height: 20px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: 0 8px;
	font-size: 12px;
	font-weight: 400;
	color: #6B7989;
	border-radius: 12px;
	background-color: transparent;
}

.CmnWrap-IOT6F7LE .StepIndication .StepItem .Circle {
	position: relative;
	z-index: 3;
	margin: 4px auto;
	width: 9px;
	height: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	background-color: var(--white);
	border-width: 2px;
	border-style: solid;
	border-color: #AFBFD2;
	border-radius: 50%;
}

.CmnWrap-3MJ0P5Q {
	padding: 16px;
	background-color: var(--white);
	border: 1px solid #E1E3EA;
	border-radius: 12px;
	box-shadow: 0 10px 15px -3px var(--color18), 0 4px 6px -4px var(--color18);
}

.CmnWrap-3MJ0P5Q > .MainText {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
}

.CmnWrap-3MJ0P5Q > .MainText > img {
	width: 16px;
	height: 16px;
}

.CmnWrap-3MJ0P5Q > .MainText > .Text {
	flex: 1 1 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
	line-height: 18px;
	letter-spacing: -0.3px;
}

.Box-F6TGDLW {
	margin-top: 16px;
}

.Box-F6TGDLW > .TableList > li + li {
	margin-top: 16px;
}

.Box-F6TGDLW > .TableList > li {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0;
	padding: 16px;
	background-color: var(--color16);
	border-radius: 8px;
}

.Box-F6TGDLW > .TableList > li .FormWrap {
	width: 100%;
}

.Box-F6TGDLW > .TableList > li .FormWrap.On > .ItemHeader .BtnItemToggle {
	transform: rotate(180deg);
}

.Box-F6TGDLW > .TableList > li .FormWrap.On > .ItemContent {
	display: none;
}

.Box-F6TGDLW > .TableList > li .FormWrap .CmnTitleText {
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
}

.Box-F6TGDLW > .TableList > li .FormWrap > .ItemHeader {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Box-F6TGDLW > .TableList > li .FormWrap > .ItemHeader .BtnItemToggle {
	transition: transform 0.25s ease-in-out;
}

.Box-F6TGDLW > .TableList > li .FormWrap > .ItemContent .TextInput_3 {
	margin-top: 8px;
}

.Box-F6TGDLW > .TableList > li .FormWrap > .ItemContent .DetailContent {
	margin-top: 8px;
}

.Box-F6TGDLW > .TableList > li .FormWrap > .ItemContent .DetailContent .Textarea_1 {
	margin-top: 8px;
}

.Box-F6TGDLW > .TableList > li .FormWrap > .ItemContent .BtnBoxDelete {
	margin-top: 8px;
	text-align: right;
}

.Box-F6TGDLW > .BtnBox {
	margin-top: 10px;
}

.Box-F6TGDLW > .BtnBox > button {
	width: 100%;
}

.Wrap-SYJCXAW > .MainTitle {
	font-size: 18px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-SYJCXAW > .ContentBox {
	margin-top: 40px;
}

.Wrap-SYJCXAW > .ContentBox > .Head .BtnBox {
	text-align: right;
}

.Wrap-SYJCXAW > .ContentBox > .Head .Title {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 600;
	color: var(--color7);
	line-height: 20px;
}

.Wrap-SYJCXAW > .ContentBox > .Head .FlagBox {
	margin-top: 12px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 4px;
}

.Wrap-SYJCXAW > .ContentBox > .Head .FlagBox > li {
	height: 24px;
	padding: 0 6px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	background-color: var(--color14);
	border-radius: 100px;
}

.Wrap-SYJCXAW > .ContentBox > .Body {
	margin-top: 20px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
	line-height: 21px;
}

.Wrap-SYJCXAW > .ContentBox > .Body h1 {
	margin-bottom: 20px;
	font-size: 15px;
	font-weight: 500;
	line-height: 20px;
}

.Wrap-SYJCXAW > .ContentBox > .Body h2 {
	margin-left: 8px;
	font-weight: 500;
	color: var(--color5);
}

.Wrap-SYJCXAW > .ContentBox > .Body h2 + p {
	margin: 4px 0 20px 18px;
}

.Wrap-SYJCXAW > .ContentBox > .Body h3 {
	margin-left: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color6);
}

.Wrap-SYJCXAW > .ContentBox > .Body h4 {
	margin: 0 20px 0 28px;
	font-weight: 500;
}

.Wrap-SYJCXAW > .ContentBox > .Body p {
	margin: 8px 0 20px 16px;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: -0.5px;
}

.Sec-7C0PDXX .DescText {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0;
}

.Sec-7C0PDXX .DescText > .Text {
	flex: 1 1 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	line-height: 16px;
	letter-spacing: -0.3px;
}

.Sec-7C0PDXX .DescText > .Text > .Accent {
	font-weight: 700;
	color: var(--error);
}

.Sec-7C0PDXX .BtnBoxRadio {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}

.Wrap-E67NIOC .MainTitleArea .MainTitle {
	font-size: 18px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-E67NIOC .MainTitleArea .Desc {
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Wrap-E67NIOC .MainTitleArea .Desc > img {
	width: 20px;
	height: 20px;
}

.Wrap-C0P28V6 .CardListBox {
	margin-top: 20px;
}

.Wrap-C0P28V6 .CardListBox > .SubTitle {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Wrap-C0P28V6 .CardListBox > ul {
	display: grid;
	grid-template-columns: repeat(2, 156px);
	justify-content: center;
	align-items: stretch;
	gap: 20px 8px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item {
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0 -4px 10px 0 #E7E7E7;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li + li {
	margin-top: 12px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .ItemTitle {
	font-size: 16px;
	font-weight: 500;
	color: var(--color9);
	text-align: center;
	letter-spacing: -0.3px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .ItemTitle > strong {
	font-weight: 700;
	color: var(--primary);
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .PriceArea {
	text-align: center;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .PriceArea > div + div {
	margin-top: 8px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .PriceArea .Regular .Flag {
	width: 59px;
	height: 20px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	background-color: var(--color15);
	border-radius: 20px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .PriceArea .Regular .Text {
	margin-top: 4px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color10);
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .PriceArea .Regular .Text > .Num {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .PriceArea .Price .Flag {
	width: 59px;
	height: 20px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	letter-spacing: -0.3px;
	background-color: var(--color17);
	border-radius: 20px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .PriceArea .Price .Flag > span {
	margin-right: 2px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .PriceArea .Price .Text {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 400;
	color: var(--primary);
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .PriceArea .Price .Text > .Num {
	font-family: "Roboto", sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .ViewMoreBox.On .BtnMore > img {
	transform: rotate(180deg);
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .ViewMoreBox.On .DescList {
	display: block;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .ViewMoreBox .BtnMore {
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .ViewMoreBox .BtnMore > img {
	transition: transform 0.25s ease-in-out;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .ViewMoreBox .DescList {
	display: none;
	margin-top: 8px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .ViewMoreBox .DescList > li + li {
	margin-top: 8px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item > ul > li .ViewMoreBox .DescList > li {
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item .BtnBoxBottom {
	margin-top: 8px;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item.Style2 > ul > li .PriceArea .Price .Text {
	margin: 38px 0;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item.Disabled {
	pointer-events: none;
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item.Disabled > ul > li .ItemTitle {
	color: var(--disabled2);
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item.Disabled > ul > li .ItemTitle > strong {
	color: var(--disabled2);
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item.Disabled > ul > li .PriceArea .Regular .Flag {
	color: var(--disabled2);
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item.Disabled > ul > li .PriceArea .Regular .Text {
	color: var(--color10);
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item.Disabled > ul > li .PriceArea .Price .Flag {
	color: var(--disabled2);
	background-color: var(--color15);
}

.Wrap-C0P28V6 .CardListBox > ul > li > .Item.Disabled > ul > li .PriceArea .Price .Text {
	color: var(--disabled2);
}

.Sec-M4AX6FU {
	margin-top: 40px !important;
}

.Sec-M4AX6FU .CashBuyService > .MainTitle {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Sec-M4AX6FU .CashBuyService .CashList > li + li {
	margin-top: 22px;
}

.Sec-M4AX6FU .CashBuyService .CashList > li {
	margin: 0 auto;
	width: 252px;
	height: 100px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	border-radius: 10px;
	box-shadow: -5px 4px 8px 0 rgba(0, 0, 0, 0.25);
}

.Sec-M4AX6FU .CashBuyService .CashList > li > .Left {
	width: 152px;
	height: 100%;
	padding: 16px;
	background-color: var(--white);
	border: 1px solid var(--color12);
	border-radius: 10px 0 0 10px;
}

.Sec-M4AX6FU .CashBuyService .CashList > li > .Left > .Title {
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
}

.Sec-M4AX6FU .CashBuyService .CashList > li > .Left > .Title > strong {
	color: var(--primary);
}

.Sec-M4AX6FU .CashBuyService .CashList > li > .Left > .Price {
	margin-top: 4px;
	font-family: "Roboto", sans-serif;
	font-size: 28px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.5px;
}

.Sec-M4AX6FU .CashBuyService .CashList > li > .Left > .Desc {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Sec-M4AX6FU .CashBuyService .CashList > li > .Right {
	width: 100px;
	height: 100%;
	overflow: hidden;
}

.Sec-M4AX6FU .CashBuyService .CashList > li > .Right > button {
	width: 100%;
	height: 100%;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: -0.3px;
	background: url("/icon/easyai/icon_61.svg") no-repeat;
	background-size: contain;
}

.Sec-AXTV570 {
	margin-top: 40px !important;
}

.Sec-AXTV570 .CautionArea > .SubTitle {
	margin-bottom: 12px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Sec-AXTV570 .CautionArea .CautionList > li + li {
	margin-top: 12px;
}

.Sec-AXTV570 .CautionArea .CautionList > li {
	position: relative;
	padding-left: 20px;
}

.Sec-AXTV570 .CautionArea .CautionList > li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("/icon/easyai/icon_63.svg") no-repeat;
}

.Sec-AXTV570 .CautionArea .CautionList > li .FirstTitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	line-height: 24px;
}

.Sec-AXTV570 .CautionArea .CautionList > li > .SecondList {
	margin-top: 6px;
}

.Sec-AXTV570 .CautionArea .CautionList > li > .SecondList > li + li {
	margin-top: 4px;
}

.Sec-AXTV570 .CautionArea .CautionList > li > .SecondList > li {
	position: relative;
	padding-left: 8px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color7);
	line-height: 20px;
}

.Sec-AXTV570 .CautionArea .CautionList > li > .SecondList > li::before {
	content: "·";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Sec-AXTV570 .CautionArea .CautionList > li > .SecondList > li .SubDesc {
	margin-top: 4px;
	line-height: 24px;
}

.CmnSectionLine {
	width: 100%;
	height: 4px;
	background-color: var(--color14);
}

.Text-GSH04D4M {
	padding: 20px;
	border: 1px solid var(--color12);
	border-radius: 8px;
}

.Text-GSH04D4M .Title {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Text-GSH04D4M .DescList {
	margin-top: 8px;
}

.Text-GSH04D4M .DescList > li + li {
	margin-top: 8px;
}

.Text-GSH04D4M .DescList > li {
	position: relative;
	padding-left: 20px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color7);
	line-height: 20px;
}

.Text-GSH04D4M .DescList > li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background: url("/icon/easyai/icon_67.svg") no-repeat;
	background-position: center left;
}

.Sec-0EFRX9E .SubTitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-0EFRX9E .Text-T52VS48 {
	margin-top: 26px;
}

.Sec-0EFRX9E .Text-T52VS48 .UsagePeriod {
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-0EFRX9E .Text-T52VS48 .UsagePeriod.Style2 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Sec-0EFRX9E .Text-T52VS48 .UsagePeriod > .Date {
	margin-top: 8px;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
	letter-spacing: -0.5px;
}

.Sec-0EFRX9E .Text-T52VS48 .UsagePeriod > .Price {
	font-size: 16px;
}

.Sec-0EFRX9E .Text-T52VS48 .DepositDetail {
	margin-top: 20px;
	padding-top: 20px;
	padding-left: 20px;
	border-top: 1px solid var(--color13);
}

.Sec-0EFRX9E .Text-T52VS48 .DepositDetail > ul > li + li {
	margin-top: 20px;
}

.Sec-0EFRX9E .Text-T52VS48 .DepositDetail > ul > li {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-0EFRX9E .Text-T52VS48 .DepositDetail > ul > li > .Price {
	font-size: 16px;
	text-align: right;
}

.Sec-0EFRX9E .Text-T52VS48 .DepositDetail > ul > li > .Price > .Num {
	font-family: "Roboto", sans-serif;
}

.Sec-0EFRX9E .Text-T52VS48 .DepositDetail > ul > li > .Price > .Sub {
	margin-top: 4px;
	font-size: 13px;
	font-weight: 400;
}

.Sec-0EFRX9E .Text-T52VS48 .TotalPrice {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 20px;
	background-color: var(--color14);
}

.Sec-0EFRX9E .Text-T52VS48 .TotalPrice.Style2 {
	display: block;
}

.Sec-0EFRX9E .Text-T52VS48 .TotalPrice.Style2 .Label {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-0EFRX9E .Text-T52VS48 .TotalPrice.Style2 .Amount {
	margin-top: 8px;
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--error);
	letter-spacing: -0.5px;
	text-align: right;
}

.Sec-0EFRX9E .Text-T52VS48 .TotalPrice > .Left {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-0EFRX9E .Text-T52VS48 .TotalPrice > .Right {
	text-align: right;
}

.Sec-0EFRX9E .Text-T52VS48 .TotalPrice > .Right > .Price {
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--error);
	letter-spacing: -0.5px;
}

.Sec-0EFRX9E .Text-T52VS48 .TotalPrice > .Right > .SubDesc {
	margin-top: 8px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Sec-0EFRX9E .GuideBox_1 {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Sec-0EFRX9E .GuideBox_1 > button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-SPZ6OKUR {
	text-align: center;
}

.Sec-582SUYV .SubTitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-582SUYV .GuideBox_1 {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Sec-582SUYV .GuideBox_1 > button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-5Z8OZIE {
	text-align: center;
}

.Text-X1HYCXNK .Title {
	font-size: 20px;
	font-weight: 400;
	color: var(--color7);
	text-align: center;
}

.Text-X1HYCXNK .DescList {
	margin-top: 12px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 18px;
	letter-spacing: -0.3px;
}

.Text-X1HYCXNK .DescList > li + li {
	margin-top: 8px;
}

.Sec-BF8Q3FZ {
	margin-top: 40px !important;
}

.Sec-BF8Q3FZ .Text-OW47EZT > .First {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Sec-BF8Q3FZ .Text-OW47EZT > .First > .Text {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-BF8Q3FZ .Text-OW47EZT > .First > .Sub {
	font-size: 14px;
	font-weight: 700;
	color: var(--primary);
	letter-spacing: -0.3px;
}

.Sec-BF8Q3FZ .Text-OW47EZT > .Second {
	margin-top: 26px;
	margin-left: 8px;
	padding-left: 8px;
	border-left: 2px solid var(--color14);
}

.Sec-BF8Q3FZ .Text-OW47EZT > .Second > li + li {
	margin-top: 12px;
}

.Sec-BF8Q3FZ .Text-OW47EZT > .Second > li {
	font-size: 16px;
	font-weight: 500;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Sec-BF8Q3FZ .Text-OW47EZT > .Second > li > .Num {
	margin-top: 8px;
	font-weight: 600;
}

.Text-GITQMJKM {
	padding: 20px;
	background-color: var(--color14);
}

.Text-GITQMJKM .Label {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Text-GITQMJKM .Amount {
	margin-top: 8px;
	font-family: "Roboto", sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: var(--error);
	letter-spacing: -0.5px;
	text-align: right;
}

.Text-GITQMJKM .BtnBoxReceipt {
	margin-top: 20px;
}

.Text-GITQMJKM .BtnBoxReceipt > button {
	width: 100%;
}

.ToggleContainer.Mo .ToggleContentWrap .ContentItem > article + article {
	margin-top: 40px;
}

.ToggleContainer.Mo .ToggleContentWrap .ContentItem .CmnSubTitle {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
	text-align: center;
}

.ToggleContainer.Mo .ToggleContentWrap .ContentItem .CmnSubTitle > .Sub {
	font-size: 16px;
	font-weight: 700;
	color: #6D7584;
}

.ToggleContainer.Mo .ToggleContentWrap .ContentItem .CmnSubTitle > .Main {
	margin-top: 12px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color5);
	line-height: 20px;
}

.ToggleContainer.Mo .ToggleContentWrap .ContentItem .CmnSubTitle > .Main > span {
	color: var(--white);
}

.ToggleContainer.Mo .ToggleContentWrap .ContentItem .CmnSubTitle.Style2 > .Sub {
	color: #D0D0D0;
}

.ToggleContainer.Mo .ToggleContentWrap .ContentItem .CmnSubTitle.Style2 > .Main {
	color: #D0D0D0;
}

.Wrap-BD47M7V,
.Wrap-GU9WEQ08 > .Inner,
.Wrap-DWJIAGH6,
.Wrap-MW4JAXG,
.Wrap-DUSNYAP {
	padding: 0 20px;
}

.Wrap-BD47M7V {
	margin-top: 12px;
}

.Wrap-BD47M7V .MainTitleArea .MainTitle {
	font-size: 24px;
	font-weight: 700;
	color: var(--color5);
	text-align: center;
}

.Wrap-BD47M7V .MainTitleArea .MainTitle > .AccentText {
	font-size: 40px;
	background: linear-gradient(106deg, #4F6FFF 0%, #97C6FF 49%, #6898FF 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.Wrap-BD47M7V .MainTitleArea .MainTitle > .SubDesc {
	display: block;
	margin-top: 8px;
	font-size: 16px;
}

.Wrap-BD47M7V .MainTitleArea .Desc {
	margin-top: 20px;
	font-size: 16px;
	font-weight: 500;
	color: #A8A69D;
	text-align: center;
}

.Wrap-BD47M7V .ServiceCardList {
	margin-top: 40px;
	width: 100%;
}

.Wrap-BD47M7V .ServiceCardList > li + li {
	margin-top: 20px;
}

.Wrap-BD47M7V .ServiceCardList > li {
	width: 100%;
	height: 192px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;
	border-radius: 20px;
}

.Wrap-BD47M7V .ServiceCardList > li:nth-child(1) {
	background: url("/icon/easyai/mo/icon_13_1.svg") no-repeat;
	background-size: cover;
}

.Wrap-BD47M7V .ServiceCardList > li:nth-child(2) {
	background: url("/icon/easyai/icon_31.svg") no-repeat;
	background-size: cover;
}

.Wrap-BD47M7V .ServiceCardList > li:nth-child(3) {
	background: url("/icon/easyai/icon_32.svg") no-repeat;
	background-size: cover;
}

.Wrap-BD47M7V .ServiceCardList > li > .TitleArea {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.Wrap-BD47M7V .ServiceCardList > li > .TitleArea > .CardIcon > img {
	width: 24px;
	height: 24px;
}

.Wrap-BD47M7V .ServiceCardList > li > .TitleArea > .Title {
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
}

.Wrap-BD47M7V .ServiceCardList > li > .CardContent > .Desc {
	margin-top: 18px;
	width: 100%;
	font-size: 16px;
	font-weight: 400;
	color: var(--white);
	line-height: 24px;
}

.Wrap-BD47M7V .ServiceCardList > li > .CardContent > .Desc > span {
	font-weight: 700;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 {
	margin-top: 40px;
	position: relative;
	height: 169px;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide {
	width: 300px;
	height: 169px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px;
	background-color: var(--white);
	border: 1px solid #D0D0D0;
	border-radius: 20px;
	transition: height 0.25s ease-in-out;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide .Title {
	margin-top: 26px;
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 15px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide .Text, .Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide .detail {
	margin-top: 7px;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 13px;
	font-weight: 500;
	color: #898989;
	line-height: 20px;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide .detail {
	display: none;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide.Clicked .preview {
	display: none;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide.Clicked .detail {
	display: block;
	margin-top: 10px;
	max-height: 270px;
	overflow: auto;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide .BtnMoreView {
	margin-top: 8px;
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	transition: transform 0.25s ease-in-out;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide .BtnMoreView > img {
	width: 14px;
	height: 14px;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide.swiper-slide-active {
	cursor: pointer;
	border: 1px solid var(--primary);
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide.swiper-slide-active.Clicked {
	height: 400px;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide.swiper-slide-active.Clicked .Title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	font-size: 16px;
	line-height: 20px;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide.swiper-slide-active.Clicked .Text {
	margin-top: 20px;
	display: block;
	max-height: 228px;
	overflow: auto;
}

.Wrap-GU9WEQ08 .Swiper-4GOPTVE0 .swiper-slide.swiper-slide-active.Clicked .BtnMoreView > img {
	transform: rotate(180deg);
}

.Wrap-GU9WEQ08 .AiIntroArea {
	margin-top: 30px;
	padding: 27px 30px;
	background-color: #303038;
	border-radius: 24px;
}

.Wrap-GU9WEQ08 .AiIntroArea .Title {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
}

.Wrap-GU9WEQ08 .AiIntroArea .DescList {
	margin-top: 18px;
}

.Wrap-GU9WEQ08 .AiIntroArea .DescList > li + li {
	margin-top: 22px;
}

.Wrap-GU9WEQ08 .AiIntroArea .DescList > li {
	font-size: 16px;
	font-weight: 400;
	color: #A8A69D;
	line-height: 24px;
}

.Wrap-GU9WEQ08 .AiIntroArea .DescList > li > span {
	font-weight: 500;
	color: var(--white);
}

.Wrap-9Y7KOWC {
	margin-top: 80px;
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #343B46;
}

.Wrap-9Y7KOWC .Swiper-7NWKTBH {
	margin-top: 40px;
}

.Wrap-9Y7KOWC .Swiper-7NWKTBH .swiper-slide {
	width: 320px;
	height: 220px;
	overflow: hidden;
	padding: 20px;
	background-color: var(--white);
	border-radius: 20px;
}

.Wrap-9Y7KOWC .Swiper-7NWKTBH .swiper-slide > .Item .UserInfoArea {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Wrap-9Y7KOWC .Swiper-7NWKTBH .swiper-slide > .Item .UserInfoArea .Info {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Wrap-9Y7KOWC .Swiper-7NWKTBH .swiper-slide > .Item .Post {
	margin-top: 17px;
	font-size: 13px;
	font-weight: 500;
	color: var(--color7);
	line-height: 18px;
}

.Wrap-DWJIAGH6 .AiFeatureList {
	margin-top: 24px;
}

.Wrap-DWJIAGH6 .AiFeatureList > li + li {
	margin-top: 40px;
}

.Wrap-DWJIAGH6 .AiFeatureList > li .Item {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 20px 20px 0 20px;
	background-color: #F0F0FF;
	border-radius: 20px;
}

.Wrap-DWJIAGH6 .AiFeatureList > li .Item .TextArea .Title {
	display: flex;
	flex-direction: row;
	gap: 2px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	line-height: 20px;
}

.Wrap-DWJIAGH6 .AiFeatureList > li .Item .TextArea .Title .Accent {
	color: #898989;
}

.Wrap-DWJIAGH6 .AiFeatureList > li .Item .TextArea .Desc {
	margin-top: 8px;
	padding-left: 23px;
	font-size: 16px;
	font-weight: 400;
	color: #898989;
	line-height: 22px;
}

.Wrap-MW4JAXG .FaqAnswerList {
	margin-top: 50px;
}

.Wrap-MW4JAXG .FaqAnswerList > li.Item {
	border-top: 1px solid #D0D0D0;
}

.Wrap-MW4JAXG .FaqAnswerList > li.Item .BtnFaqToggle {
	width: 100%;
	height: 70px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 22px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

.Wrap-MW4JAXG .FaqAnswerList > li.Item .BtnFaqToggle .Title {
	flex: 1 1 0;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 22px;
	letter-spacing: -0.2px;
	text-align: left;
}

.Wrap-MW4JAXG .FaqAnswerList > li.Item .BtnFaqToggle .ArrowIcon {
	width: 14px;
	height: 14px;
	transition: transform 0.25s ease-in-out;
}

.Wrap-MW4JAXG .FaqAnswerList > li.Item .BtnFaqToggle.Active .Title {
	font-weight: 600;
}

.Wrap-MW4JAXG .FaqAnswerList > li.Item .BtnFaqToggle.Active .ArrowIcon {
	transform: rotate(180deg);
}

.Wrap-MW4JAXG .FaqAnswerList > li.Item .Content {
	display: none;
	padding-bottom: 32px;
}

.Wrap-MW4JAXG .FaqAnswerList > li.Item .Content.On {
	display: block;
}

.Wrap-MW4JAXG .FaqAnswerList > li.Item .Content > .Text {
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 21px;
	letter-spacing: -0.2px;
}

.Wrap-MW4JAXG .FaqBtnBox {
	margin-top: 24px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Wrap-MW4JAXG .FaqBtnBox > button {
	width: 100%;
}

.Wrap-DUSNYAP {
	margin-top: 12px;
}

.Wrap-DUSNYAP .TipDetailList > li + li {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #E9E9F0;
}

.Wrap-DUSNYAP .TipDetailList > li .CmnTitleArea {
	display: flex;
	flex-direction: row;
	gap: 4px;
}

.Wrap-DUSNYAP .TipDetailList > li .CmnTitleArea > .Text {
	flex: 1 1 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	line-height: 24px;
}

.Wrap-DUSNYAP .TipDetailList > li .CmnTitleArea > .Text > .Accent {
	color: var(--primary);
}

.Wrap-DUSNYAP .TipDetailList > li .CmnContent {
	margin-top: 8px;
	margin-left: 20px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 24px;
}

.Wrap-DUSNYAP .TipDetailList > li .CmnContent .HighlightBox {
	margin-top: 16px;
	padding: 4px 8px;
	background-color: rgba(73, 121, 244, 0.1);
}

.Wrap-DUSNYAP .TipDetailList > li .CmnContent .SubDescList > li + li {
	margin-top: 30px;
}

.Wrap-DUSNYAP .TipDetailList > li .CmnContent .SubDescList .Depth1 {
	font-weight: 700;
}

.Wrap-DUSNYAP .TipDetailList > li .CmnContent .SubDescList .Depth2 {
	position: relative;
	padding-left: 12px;
}

.Wrap-DUSNYAP .TipDetailList > li .CmnContent .SubDescList .Depth2::before {
	content: "-";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

.Wrap-DUSNYAP .TipDetailList > li .CmnContent .SubDescList .Depth2.Accent {
	font-weight: 700;
}

.Wrap-DUSNYAP .TipDetailList > li .CmnContent .SubDescList .Depth2.Accent.Style1 {
	color: var(--primary);
}

.Wrap-DUSNYAP .TipDetailList > li .CmnContent .SubDescList .Depth2.Accent.Style2 {
	color: var(--error);
}

#paymethodHelpText.TabContent {
	line-height: 20px;
}

#paymethodHelpText.TabContent b {
	font-weight: bold;
}

.PayComplete.SectionContent_1 {
	background-color: var(--color16);
	width: 100%;
}

.PayComplete.SectionContent_1 .Shell .Inner {
	padding: 120px 60px 0;
}

.PayComplete.SectionContent_1 .Shell .Inner > article + article {
	margin-top: 60px;
}

.PayComplete.SectionContent_1 .Shell .Inner > article > .ContentList_1 > li + li {
	margin-top: 60px;
}

.PayComplete.SectionContent_1 .Shell .Inner > article > .ContentList_1.Style2 > li + li {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 2px solid var(--color13);
}

.PayComplete .ContentTitle_2 {
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.PayComplete .ContentTitle_2 .First {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
	color: var(--color7);
}

.PayComplete .ContentTitle_2 .Second {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.PayComplete .ContentBox_2 {
	margin: 0 20px;
}

.PayComplete .Box-B2CSC6J > .Title {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding-bottom: 20px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
	border-bottom: 1px solid var(--color13);
}

.PayComplete .Box-B2CSC6J > .Title > .Right {
	font-weight: 700;
}

.PayComplete .Box-B2CSC6J .Ul-88QJYCW {
	margin-top: 20px;
	border-left: 4px solid var(--color13);
}

.PayComplete .Box-B2CSC6J .Ul-88QJYCW > li + li {
	margin-top: 20px;
}

.PayComplete .Box-B2CSC6J .Ul-88QJYCW > li {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding-left: 8px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.PayComplete .Box-B2CSC6J .Ul-88QJYCW > li > .Right {
	font-weight: 700;
}

.PayComplete .Box-B2CSC6J .Ul-88QJYCW > li > .Right > .Error {
	color: var(--error);
}

.PayComplete .BtnBox-JNTSD863 {
	text-align: center;
}