@charset "UTF-8";
@import "/font/v5/Pretendard.css";
@import "/font/v5/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;
	/**/
	--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-width: 1140px;
	--contents-width2: 800px; /* 충전/결제 */
	--contents-width3: 648px; /* 자료요청 */
	--contents-min-width: 320px;
	/**/
	--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) !important;
}

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

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

* {
	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;
}

/* 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 */

.Shell > .Inner {
	margin: 0 auto;
	width: var(--contents-width);
}

.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: var(--color7);
	background-color: rgba(0, 0, 0, 0.05);
}

.Button_12.Style2 {
	color: var(--white);
	background-color: #4979F4;
}

.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;
	text-decoration: none;
}

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

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

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

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

.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: var(--secondary);
}

.Flag_7.Style2 {
	background-color: var(--tertiary);
}

.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/v5/doc/detailView/icon_8_1.svg") no-repeat;
}

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

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

.Flag_9 {
	max-width: 100px;
	padding: 7px 10px;
	display: block;
	font-size: 11px;
	font-weight: 700;
	color: var(--color4);
	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/v5/doc/detailView/icon_30_1.svg") no-repeat;
}

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

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

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

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

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

.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: var(--secondary);
	border-color: var(--secondary);
}

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

.Flag_12.Style4 {
	color: var(--color13);
	border-color: var(--color13);
}

.Flag_12.Style5 {
	color: var(--secondary);
	border-color: var(--secondary);
}

.Flag_12.Style6 {
	color: var(--color12);
	border-color: var(--color12);
}

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

.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 var(--color13);
	border-radius: 8px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.ToggleUi_2 .Item {
	border-bottom: 1px solid var(--color14);
}

.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;
}

.ToggleUi_2 .Item .Btn .Title {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color7);
	transition: color 0.3s ease;
}

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

.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);
}

.FloatingBtn {
	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.3s ease-in-out, visibility 0.3s ease-in-out;
	cursor: pointer;
}

.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: absolute;
	top: 50%;
	left: 50%;
	z-index: 100;
	transform: translate(-50%, -50%);
	width: 574px;
	padding: 32px;
	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 .Link {
	font-weight: 700;
	color: #4979F4;
	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;
}

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

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

.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;
	background-color: var(--color16);
}

.ToastPopup_2 {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 30px;
	left: 0;
	z-index: 100;
	transform: translateY(45px);
	width: 100%;
	padding: 16px;
	background-color: var(--error2);
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	text-align: left;
	border-radius: 10px;
	border: 1px solid var(--color13);
	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);
	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);
}

.TextAreaUi_2 {
	width: 100%;
	height: 302px;
	overflow: hidden;
	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;
}

.Box_chkbox {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

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

.Box_chkbox .CheckBoxUi[data-size=Lg] {
	width: 24px;
}

.Box_chkbox .CheckBoxUi[data-size=Lg] + .Text {
	font-size: 18px;
}

.Box_chkbox .CheckBoxUi[data-size=Md] {
	width: 20px;
}

.Box_chkbox .CheckBoxUi[data-size=Md] + .Text {
	font-size: 16px;
}

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

.Box_chkbox .CheckBoxUi[data-size=Sm] + .Text {
	font-size: 14px;
}

.Box_chkbox .CheckBoxUi[data-size=Xs] {
	width: 14px;
}

.Box_chkbox .CheckBoxUi[data-size=Xs] + .Text {
	font-size: 14px;
}

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

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

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

.Box_chkbox .Text {
	font-weight: 400;
	color: var(--color7);
	cursor: pointer;
}

.Sec-FCJQLBZ {
	background-color: var(--color1);
}

.Sec-FCJQLBZ .GridBox {
	height: 370px;
	padding-top: 32px;
	display: grid;
	grid-template-columns: 1fr 440px;
	gap: 0;
}

.Sec-FCJQLBZ .GridBox > .First .FlagBox {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.Sec-FCJQLBZ .GridBox > .First .FlagBox .ExceptionAiFlag {
	padding: 0;
	border: 0;
}

.Sec-FCJQLBZ .GridBox > .First .FlagBox .ExceptionAiFlag > .ImgBox {
	display: inline-block;
	height: 21px;
}

.Sec-FCJQLBZ .GridBox > .First .FlagBox .ExceptionAiFlag > .ImgBox > img {
	height: 100%;
}

.Sec-FCJQLBZ .GridBox > .First .Category {
	margin-top: 12px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 500;
	color: #9EA4AB;
}

.Sec-FCJQLBZ .GridBox > .First .Category > a {
	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;
}

.Sec-FCJQLBZ .GridBox > .First .Title {
	margin-top: 20px;
	font-size: 34px;
	font-weight: 500;
	color: var(--white);
	line-height: 49px;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: none;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: -0.5px;
}

.Sec-FCJQLBZ .GridBox > .First .Sub {
	margin-top: 16px;
	font-size: 16px;
	font-weight: 400;
	color: #9EA4AB;
	line-height: 24px;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	letter-spacing: -0.5px;
}

.Sec-FCJQLBZ .GridBox > .First .Info {
	margin-top: 28px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Sec-FCJQLBZ .GridBox > .First .Info > .Page {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
}

.Sec-FCJQLBZ .GridBox > .First .Info > .Page > .Type {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.Sec-FCJQLBZ .GridBox > .First .Info > .Date {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 24px;
	font-size: 14px;
	font-weight: 400;
	color: #9EA4AB;
}

.Sec-FCJQLBZ .GridBox > .First .Info > .Date > span > strong {
	margin-left: 8px;
	font-weight: 500;
	color: var(--white);
}

.Sec-FCJQLBZ .GridBox > .First .Box-QY1A5E8 {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.Sec-FCJQLBZ .GridBox > .First .Box-QY1A5E8 > .TagBox {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}

.Sec-FCJQLBZ .GridBox > .First .Box-QY1A5E8 > .TagBox > a:hover {
	text-decoration: none;
}

.Sec-FCJQLBZ .GridBox > .First .Box-QY1A5E8 > .PriceBox {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}

.Sec-FCJQLBZ .GridBox > .First .Box-QY1A5E8 > .PriceBox > .Discount {
	width: 40px;
	height: 20px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	background: var(--secondary);
	border-radius: 50px;
}

.Sec-FCJQLBZ .GridBox > .First .Box-QY1A5E8 > .PriceBox > .Regular {
	font-size: 14px;
	font-weight: 400;
	color: var(--color10);
}

.Sec-FCJQLBZ .GridBox > .First .Box-QY1A5E8 > .PriceBox > .Regular > span {
	position: relative;
}

.Sec-FCJQLBZ .GridBox > .First .Box-QY1A5E8 > .PriceBox > .Regular > span::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 1px;
	background-color: var(--color10);
}

.Sec-FCJQLBZ .GridBox > .First .Box-QY1A5E8 > .PriceBox > .Price {
	font-size: 16px;
	font-weight: 500;
	color: var(--white);
}

.Sec-FCJQLBZ .GridBox > .Second {
	position: relative;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: flex-end;
	gap: 0;
	background: url("/images/v5/doc/detailView/img_2.png") center top/360px 420px no-repeat;
}

.Sec-FCJQLBZ .GridBox > .Second > .Data {
	position: absolute;
	right: 40px;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;
	width: 195px;
	height: 276px;
	pointer-events: none;
}

.Sec-FCJQLBZ .GridBox > .Second > .Data > img {
	width: 195px;
}

.Sec-FCJQLBZ .GridBox > .Second .Preview {
	position: absolute;
	bottom: 13px;
	right: 18px;
	z-index: 10;
	padding: 0 12px;
	height: 36px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	color: var(--white);
	background: var(--color7);
	border-radius: 400px;
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.24);
	pointer-events: none;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 30;
	max-width: 696px;
	padding: 40px;
	background-color: var(--color7);
	border-radius: 12px;
	box-shadow: 8px 6px 20px 0 rgba(0, 0, 0, 0.41);
	transition: opacity 0.25s ease-in-out, visibility 0s 0.25s ease-in-out;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN::after {
	content: "";
	width: 18px;
	height: 13px;
	background-color: var(--color7);
	position: absolute;
	top: -5px;
	right: 140px;
	transform: rotate(45deg);
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN.On {
	opacity: 1;
	visibility: visible;
	transition: opacity 0.25s ease-in-out;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .BtnLayerClose {
	position: absolute;
	top: 20px;
	right: 20px;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .Guide {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--white);
	line-height: 20px;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .Guide .Text > span {
	display: block;
	font-size: 12px;
	font-weight: 500;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .Swiper-L759VRB {
	width: 524px;
	margin-top: 20px;
	margin-left: 46px;
	margin-right: 46px;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .Swiper-L759VRB .swiper-slide {
	border: 4px solid transparent;
	transition: border 0.25s ease-in-out;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .Swiper-L759VRB .swiper-slide:hover {
	border: 4px solid var(--primary);
	box-shadow: 4px 4px 5px 0 rgba(0, 0, 0, 0.82);
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-button-prev:after, .Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-rtl .swiper-button-next:after,
.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-button-next:after, .Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-rtl .swiper-button-prev:after {
	display: none;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-button-prev, .Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-rtl .swiper-button-next,
.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-button-next, .Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-rtl .swiper-button-prev {
	width: auto;
	height: auto;
	margin-top: 0;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-button-prev, .Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-rtl .swiper-button-next {
	left: 40px;
}

.Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-button-next, .Sec-FCJQLBZ .GridBox > .Second .Layer-ER6RUHN .Body .SwiperBtnBox-L759VRB .swiper-rtl .swiper-button-prev {
	right: 40px;
}

.Sec-FCJQLBZ .GridBox > .Second .BtnLayerThumbnail {
	width: 300px;
	height: 310px;
}

.Sec-FCJQLBZ .GridBox > .Second .BtnLayerThumbnail > button {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 300px;
	height: auto;
	border-top-left-radius: 7px;
	border-top-right-radius: 20px;
	box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.24);
}

.SwiperBtnBox-L759VRB .thum_next, .SwiperBtnBox-L759VRB .thum_pre {
	position: absolute;
}

.thumb_list_w .thumb_list .b_n {
	font-weight: bold;
	line-height: 11px;
	font-size: 11px;
	color: var(--color5);
	position: absolute;
	right: 4px;
	bottom: 4px;
}

.thumb_list_w .thumb_list .mask {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #2f323a;
	opacity: 0.40;
	filter: alpha(opacity=40)
}

.thumb_list_w .thumb_list .p_n {
	text-align: center;
	font-size: 20px;
	color: var(--white);
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
}

.thumb_list_w .thumb_list li {
	position: relative;
}

.zoom_ov2 {
	position: absolute;
	top: 0;
	left: 0;
	background: url("/images/v4/document/d_hover.png") scroll 50% 50%
}

.Sec-FCJQLBZ .GridBox > .Second .Image {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	gap: 0;
	background: url("/images/v5/doc/detailView/img_2.png") center bottom/490px 350px no-repeat;
}

.Sec-FCJQLBZ .GridBox > .Second .Image > img {
	position: absolute;
	top: 74px;
	left: 50%;
	transform: translateX(-50%);
	width: 300px;
	height: auto;
	border-top-left-radius: 7px;
	border-top-right-radius: 20px;
}

.TabMenu {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 20;
	background-color: var(--white);
	border-bottom: 1px solid var(--color14);
}

.TabMenu .TabsContainer {
	position: relative;
	width: 100%;
	height: 63px;
	display: flex;
	flex-direction: row;
	gap: 88px;
	background-color: var(--white);
	z-index: 10;
}

.TabMenu .TabsContainer--sticky {
	position: sticky;
}

.TabMenu .TabsContainer .Menu {
	height: 63px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 18px;
	font-weight: 500;
	color: var(--color9);
	border-bottom: 3px solid transparent;
	transition: all 0.25s ease-in-out;
	text-decoration: none;
}

.TabMenu .TabsContainer .Menu.Active {
	color: var(--color7);
	font-weight: 700;
}

.TabMenu .TabsContainer .Menu > .Num {
	font-family: "Roboto", sans-serif;
	margin-left: 4px;
	height: 16px;
	padding: 0 6px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	background-color: var(--primary);
	border-radius: 16px;
}

.TabMenu .TabsContainer .MenuSlider {
	position: absolute;
	bottom: 0;
	width: 0;
	height: 3px;
	background: var(--color7);
	transition: height 0.25s ease-in-out;
}

.ContentWrap {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-auto-flow: column;
	gap: 72px;
	padding-bottom: 60px;
}

.ContentWrap .Left {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.ContentWrap .Left > ul > li + li {
	margin-top: 60px;
}

.ContentWrap .Left > ul .TabContent:first-child {
	padding-top: 40px;
}

.ContentWrap .Left > ul .TabContent .Text-SMKQ60M {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 4px;
	padding: 16px;
	border: 1px solid var(--color13);
	border-radius: 10px;
	box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.1);
}

.ContentWrap .Left > ul .TabContent .Text-SMKQ60M.Style2 {
	padding: 20px;
	border: 1px solid var(--color13);
	border-radius: 10px;
}

.ContentWrap .Left > ul .TabContent .Text-SMKQ60M > img {
	width: 20px;
	aspect-ratio: 1/1;
}

.ContentWrap .Left > ul .TabContent .Text-SMKQ60M > span {
	flex: 1 1 0%;
	font-size: 12px;
	font-weight: 500;
	color: var(--color9);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.ContentWrap .Left > ul .TabContent .Text-SMKQ60M > span > strong {
	font-weight: 700;
	color: var(--primary);
}

.ContentWrap .Right {
	margin-top: 40px;
	width: 300px;
}

.ContentWrap .Right .StickyBox {
	position: sticky;
	top: 100px;
}

.ContentWrap .Right .StickyBox > li + li {
	margin-top: 16px;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK {
	margin-top: 8px;
	width: 100%;
	overflow: hidden;
	border: 1px solid var(--color11);
	border-radius: 8px;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First {
	padding: 28px 17px 21px 17px;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First > .PriceBox {
	margin-bottom: 12px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 8px;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First > .PriceBox > .Discount {
	width: 40px;
	height: 20px;
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 12px;
	font-weight: 700;
	color: var(--white);
	background: var(--secondary);
	border-radius: 50px;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First > .PriceBox > .Regular {
	font-size: 15px;
	font-weight: 400;
	color: var(--color10);
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First > .PriceBox > .Regular > span {
	position: relative;
}

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

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First > .PriceBox > .Price {
	font-size: 20px;
	font-weight: 700;
	color: var(--color7);
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First .BtnBox {
	position: relative;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First .BtnBox > button + button {
	margin-top: 8px;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First .LinkBox {
	position: relative;
	margin-top: 30px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First .LinkBox > .BtnLink {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 400;
	color: #495057;
	text-decoration: none;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First .LinkBox > .BtnLink > span {
	border-bottom: 1px solid transparent;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First .LinkBox > .BtnLink:hover > span {
	border-bottom: 1px solid #495057;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First .LinkBox > .BtnLink .Type2 {
	display: none;
	font-weight: 700;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First .LinkBox > .BtnLink.On .Type1 {
	display: none;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .First .LinkBox > .BtnLink.On .Type2 {
	display: block;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second {
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second > ul {
	padding: 24px;
	background-color: var(--color16);
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second > ul > li + li {
	margin-top: 16px;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second > ul > li {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 44px;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second > ul > li .Title {
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second > ul > li .Detail {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 4px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second > ul > li .Detail.Style2 {
	gap: 8px;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second > ul > li .Detail > .Underline {
	display: inline-block;
	max-width: 124px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: auto;
	text-decoration-thickness: auto;
	text-underline-position: from-font;
	text-transform: uppercase;
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second > ul > li .Detail > .Type {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color10);
}

.ContentWrap .Right .StickyBox .Box-XI0XW9FK .Second > ul > li .Detail > .Type > img {
	width: 12px;
}

.Text-UTIE21H {
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 28px;
}

.Text-UTIE21H.Style2 {
	padding: 20px;
	font-size: 16px;
	background-color: var(--color16);
	border-radius: 8px;
}

.Text-9KNZZLG7 {
	padding: 20px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 28px;
	background-color: var(--color16);
	border-radius: 8px;
	border: 1px solid var(--color13);
}

.Text-RW59HP0J {
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 28px;
}

.Text-RW59HP0J > ul > li + li {
	margin-top: 16px;
}

.Text-RW59HP0J > ul > li .Accent {
	font-weight: 700;
}

.Text-RW59HP0J > ul > li .Desc {
	margin-top: 8px;
	margin-left: 12px;
	line-height: 28px;
}

.Text-K3MM4BM7 {
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 28px;
}

.Box-2Q35OPJ {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 16px;
	background: var(--white);
	border: 1px solid var(--color11);
	border-radius: 8px;
}

.Box-2Q35OPJ .First {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	color: #495057;
}

.Box-2Q35OPJ .First > strong {
	font-size: 15px;
	font-weight: 500;
	color: var(--color7);
}

.Box-2Q35OPJ .Second .BtnGetCoupon {
	height: 32px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 6px;
	padding: 0 12px;
	font-size: 12px;
	font-weight: 700;
	color: var(--color7);
	background: var(--color14);
	border-radius: 100px;
	text-decoration: none;
}

.Box-GI7U95M {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 16px;
	background: var(--white);
	border: 1px solid var(--color13);
	border-radius: 8px;
}

.Box-GI7U95M .First {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Box-GI7U95M .First .Swiper-AK9XFNC {
	width: 234px;
}

.Box-GI7U95M .First .Swiper-AK9XFNC .Item .Title {
	font-size: 15px;
	font-weight: 700;
	color: var(--color7);
}

.Box-GI7U95M .First .Swiper-AK9XFNC .Item .Sub {
	margin-top: 4px;
	font-size: 11px;
	font-weight: 400;
	color: var(--color7);
}

.Box-GI7U95M .Second .BtnLayerInfoInquiry {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
}

.Box-GI7U95M .Second .SwiperBtnBox-AK9XFNC .swiper-horizontal > .swiper-pagination-bullets,
.Box-GI7U95M .Second .SwiperBtnBox-AK9XFNC .swiper-pagination-bullets.swiper-pagination-horizontal,
.Box-GI7U95M .Second .SwiperBtnBox-AK9XFNC .swiper-pagination-custom, .Box-GI7U95M .Second .SwiperBtnBox-AK9XFNC .swiper-pagination-fraction {
	position: static;
}

.TabContent > article + article {
	margin-top: 60px;
}

.TabContent .ContentTitle {
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.TabContent .ContentTitle .First {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	font-weight: 600;
	color: var(--color5);
}

.TabContent .ContentTitle .Second {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
}

.TabContent .ContentTitle .Second .Btn-RS8113J {
	display: inline-flex;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
}

.TabContent .ContentTitle .Second .Btn-RS8113J > img {
	transition: transform 0.25s ease-in-out;
}

.TabContent .ContentTitle .Second .Btn-RS8113J.Active > img {
	transform: rotate(180deg);
}

.Box-OOM1QBMU {
	position: relative;
	opacity: 1;
	display: block;
	max-height: 600px;
	transition: opacity 0.25s ease-in-out, max-height 0.25s ease-in-out;
}

.Box-OOM1QBMU.Hidden {
	opacity: 0;
	max-height: 0;
}

.Box-OOM1QBMU .Swiper-ZTX714XZ {
	padding-top: 20px;
	width: 580px;
}

.Box-OOM1QBMU .Swiper-ZTX714XZ .swiper-slide {
	width: 100%;
	height: 540px;
	background-color: var(--white);
	border: 1px solid #929292;
	border-radius: 10px;
}

.Box-OOM1QBMU .Swiper-ZTX714XZ .swiper-slide.swiper-slide-active {
	border: 1px solid var(--color7);
}

.Box-OOM1QBMU .Swiper-ZTX714XZ .swiper-pagination-fraction {
	bottom: 19px;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
}

.Box-OOM1QBMU .Swiper-ZTX714XZ .swiper-pagination-fraction .swiper-pagination-current {
	font-weight: 700;
	color: var(--color7);
}

.Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-button-prev:after, .Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-rtl .swiper-button-next:after,
.Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-button-next:after, .Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-rtl .swiper-button-prev:after {
	display: none;
}

.Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-button-prev, .Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-rtl .swiper-button-next,
.Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-button-next, .Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-rtl .swiper-button-prev {
	width: auto;
	transition: opacity 0.25s ease-in-out;
}

.Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-button-prev, .Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-rtl .swiper-button-next {
	left: 90px;
}

.Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-button-next, .Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-rtl .swiper-button-prev {
	right: 90px;
}

.Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-button-next.swiper-button-disabled, .Box-OOM1QBMU .SwiperBtnBox-ZTX714XZ .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

.Box-OOM1QBMU .Box-S1BLNR9 {
	position: absolute;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	width: 350px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 12px;
	font-size: 12px;
	font-weight: 400;
	color: var(--white);
	background-color: var(--color1);
	border-radius: 8px;
	box-shadow: 4px 5px 7px 0 rgba(0, 0, 0, 0.3);
	z-index: 2;
}

.Box-OOM1QBMU .Box-S1BLNR9.Active {
	display: none;
}

.Box-OOM1QBMU .Box-S1BLNR9 > .Btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	width: 66px;
	height: 26px;
	font-size: 12px;
	font-weight: 700;
	color: var(--color7);
	background-color: var(--white);
	border-radius: 8px;
	text-decoration: none;
}

.Ul-OHFDIJH {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.Ul-OHFDIJH > li > a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: 6px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color7);
	background-color: var(--color15);
	border-radius: 2px;
	text-decoration: none;
}

.Ul-OHFDIJH > li > a:hover {
	text-decoration: none;
}

.Text-7AA1X1MV {
	max-height: 390px;
	overflow: auto;
	padding: 40px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color7);
	line-height: 28px;
	background-color: var(--color16);
	border-radius: 28px;
}

/* 자료후기 Style_1 swiper 버전 */
.Box-LTE6VSUH {
	position: relative;
	height: 156px;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 {
	width: 768px;
	overflow: hidden;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide {
	width: 300px;
	height: 156px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 20px 20px 0 20px;
	background-color: var(--white);
	border: 1px solid #D8DFEB;
	border-radius: 12px;
	transition: height 0.25s ease-in-out;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide.swiper-slide-active {
	cursor: pointer;
	border: 1px solid var(--primary);
	box-shadow: 4px 2px 8px 0 rgba(0, 0, 0, 0.1);
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB {
	width: 100%;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide.Clicked .Box-T6LGXITB {
	position: relative;
	overflow: visible;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide.Clicked .Box-T6LGXITB > .Desc,
.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide.Clicked .Box-T6LGXITB > .Review {
	display: block;
	height: auto;
	max-height: none;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide.Clicked .Box-T6LGXITB > .BtnMore > img {
	transform: rotate(180deg);
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB {
	position: relative;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB > .Title {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB > .Desc {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
	line-height: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 40px;
	max-height: 40px;;
	transition: max-height 0.25s ease-in-out;
	margin-bottom: 27px;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB > .Info {
	font-family: "Roboto", sans-serif;
	margin-bottom: 8px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB > .Info .Rating {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB > .Info .Date {
	font-size: 14px;
	font-weight: 400;
	color: #999;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB > .User {
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: 400;
	color: #999;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB > .Review {
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	min-height: 40px;
	max-height: 40px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
	line-height: 20px;
	transition: max-height 0.25s ease-in-out;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB > .BtnMore {
	margin-top: 20px;
	display: block;
	width: 100%;
	height: 27px;
	text-align: center;
}

.Box-LTE6VSUH .Swiper-RMYD9B23 .swiper-slide .Box-T6LGXITB > .BtnMore > img {
	transition: transform 0.25s ease-in-out;
}

.Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-button-prev:after, .Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-rtl .swiper-button-next:after,
.Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-button-next:after, .Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-rtl .swiper-button-prev:after {
	display: none;
}

.Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-button-prev, .Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-rtl .swiper-button-next,
.Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-button-next, .Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-rtl .swiper-button-prev {
	top: 80px;
	width: auto;
	transition: opacity 0.25s ease-in-out;
}

.Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-button-prev, .Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-rtl .swiper-button-next {
	left: 0;
}

.Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-button-next, .Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-rtl .swiper-button-prev {
	right: 0;
}

.Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-button-next.swiper-button-disabled, .Box-LTE6VSUH .SwiperBtnBox-RMYD9B23 .swiper-button-prev.swiper-button-disabled {
	opacity: 0;
}

.Btn-1XK9GMVR {
	width: 100%;
	height: 52px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 400;
	color: var(--color9);
}

.ContentWrap .Left > ul > li a:hover {
	text-decoration: none;
}

.Btn-1XK9GMVR > img {
	margin-top: -3px;
	width: 12px;
	height: 11px;
}

.Box-WO7P6K4Z {
}

.Box-WO7P6K4Z > .Title {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	font-weight: 700;
	color: var(--color5);
}

.Box-WO7P6K4Z > .Title .Accent {
	color: var(--primary);
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}

.Box-WO7P6K4Z > .Title .Text-FSA1I9Y {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
}

.Box-WO7P6K4Z > .Title .Text-FSA1I9Y > .Ellipsis {
	max-width: 300px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	color: var(--primary);
	border-bottom: 2px solid var(--primary);
	text-decoration: none;
}

.Box-WO7P6K4Z > .Title .Text-FSA1I9Y > span {
	border-bottom: 2px solid transparent;
}

.Box-WO7P6K4Z .Ul-GFAVCI1 {
	margin-top: 16px;
}

.Box-WO7P6K4Z .Ul-GFAVCI1 > li {
	border-bottom: 1px solid var(--color14);
}

.Box-WO7P6K4Z .Ul-GFAVCI1 > li > a {
	display: block;
	padding: 20px 0;
}

.Box-WO7P6K4Z .Ul-GFAVCI1 > li > a:hover {
	text-decoration: none;
}

.Box-WO7P6K4Z .Ul-GFAVCI1 > li > a:hover .Title .Text {
	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;
}

.Box-WO7P6K4Z .Ul-GFAVCI1 > li > a .Title {
	display: flex;
	align-items: flex-start;
	gap: 4px;
}

.Box-WO7P6K4Z .Ul-GFAVCI1 > li > a .Title .Text {
	flex: 1 1 0%;
	font-size: 14px;
	font-weight: 600;
	color: var(--primary);
	letter-spacing: -0.5px;
}

.Box-WO7P6K4Z .Ul-GFAVCI1 > li > a .Title .Page {
	font-size: 12px;
	font-weight: 400;
	color: #999;
	letter-spacing: -0.5px;
}

.Box-WO7P6K4Z .Ul-GFAVCI1 > li > a .Detail {
	margin-top: 8px;
	padding-left: 20px;
	font-size: 13px;
	font-weight: 400;
	color: var(--color9);
	line-height: 16px;
	letter-spacing: -0.2px;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.Sec-DNETZRO6A {
	padding: 36px 0;
	background-color: var(--color15);
}

.Sec-DNETZRO6A .Title {
	font-size: 22px;
	font-weight: 600;
	color: var(--color5);
}

.Sec-DNETZRO6A .Title > .Sub {
	margin-top: 6px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
}

.Box-O26VHIAM {
	position: relative;
	width: 700px;
}

.Box-O26VHIAM .SwiperBtnBox-UICOXIWF {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}

.Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-button-prev:after, .Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-rtl .swiper-button-next:after,
.Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-button-next:after, .Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-rtl .swiper-button-prev:after {
	display: none;
}

.Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-button-prev, .Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-rtl .swiper-button-next,
.Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-button-next, .Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-rtl .swiper-button-prev {
	position: static;
	margin-top: 0;
	width: 40px;
	transition: opacity 0.25s ease-in-out;
}

.Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-button-next.swiper-button-disabled, .Box-O26VHIAM .SwiperBtnBox-UICOXIWF .swiper-button-prev.swiper-button-disabled {
	opacity: 0.3;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Thumbnail {
	position: relative;
	display: block;
	width: 132px;
	height: 183px;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Thumbnail .ImgBox {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--color13);
	border-radius: 4px 8px 8px 4px;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Thumbnail .ImgBox > img {
	width: 100%;
	height: 100%;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Thumbnail .ContentBox {
	position: absolute;
	top: 12px;
	left: 15px;
	width: 109px;
	height: 154px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	line-height: 21px;
	transition: transform 0.25s ease-in-out;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Thumbnail .ContentBox > .Text {
	margin-top: 15px;
	width: 105px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Detail {
	margin-top: 20px;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Detail > li + li {
	margin-top: 8px;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Detail .Category > a {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	text-decoration: none;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Detail .Category > a > span {
	border-bottom: 1px solid transparent;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Detail .Title {
	font-size: 14px;
	font-weight: 400;
	color: var(--color5);
	line-height: 18px;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: all 0.25s ease-in-out;
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Detail .Info {
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Detail .Price {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Thumbnail:hover .Text {
	transform: scale(1.05);
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Detail .Category > a:hover > span {
	border-bottom: 1px solid var(--color9);
}

.Box-O26VHIAM .Swiper-UICOXIWF .swiper-slide .Detail .Title:hover {
	text-decoration: underline;
}

.Box-8XWCGHUT {
	margin-top: 60px;
}

.Box-8XWCGHUT .Title {
	font-size: 20px;
	font-weight: 700;
	color: var(--color5);
}

.Box-8XWCGHUT .Title > .Accent {
	color: var(--primary);
}

.Box-8XWCGHUT .Content {
	margin-top: 20px;
}

.Box-8XWCGHUT .Content > li + li {
	margin-top: 16px;
}

.Box-8XWCGHUT .Content > li > .Subject {
	display: flex;
	align-items: center;
	gap: 4px;
}

.Box-8XWCGHUT .Content > li > .Subject .Text {
	max-width: 614px;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
}

.Box-8XWCGHUT .Content > li > .Subject .Page {
	font-size: 12px;
	font-weight: 400;
	color: #999;
}

.Box-IHCMUAGJ {
	display: grid;
	grid-template-columns: 96px 164px 1fr;
	gap: 20px;
}

.Box-IHCMUAGJ .Image {
	width: 96px;
	height: 130px;
	overflow: hidden;
	border-radius: 0 8px 8px 0;
	border: 1px solid var(--color7);
	border-left: 6px solid var(--color7);
}

.Box-IHCMUAGJ .Image > img {
	width: 100%;
}

.Box-IHCMUAGJ .Text {
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
}

.Box-IHCMUAGJ .Text .Link {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	text-decoration: none;
}

.Box-IHCMUAGJ .Text .Title {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Box-IHCMUAGJ .Text .Author {
	margin-top: 8px;
}

.Box-IHCMUAGJ .Text .Author a {
	text-decoration: none;
}

.Box-IHCMUAGJ .Data .Category {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Box-IHCMUAGJ .Data .Category .First {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
}

.Box-IHCMUAGJ .Data .Category .First > span + span {
	margin-left: 8px;
}

.Box-IHCMUAGJ .Data .Category .First > span:nth-child(1) {
	font-size: 16px;
	font-weight: 700;
	color: var(--color5);
}

.Box-IHCMUAGJ .Data .Category .First > span:nth-child(2) {
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
}

.Box-IHCMUAGJ .Data .Category .First > span:nth-child(2) .Accent {
	font-family: "Roboto", sans-serif;
	font-weight: 700;
}

.Box-IHCMUAGJ .Data .Category .First > span:nth-child(2) .Link {
	color: var(--color5);
	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;
}

.Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

.Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-pagination,
.Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-button-prev, .Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-rtl .swiper-button-next,
.Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-button-next, .Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-rtl .swiper-button-prev {
	position: static;
}

.Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-pagination {
	margin-right: 4px;
	width: auto;
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 700;
	color: var(--color9);
}

.Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-button-prev:after, .Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-rtl .swiper-button-next:after,
.Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-button-next:after, .Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-rtl .swiper-button-prev:after {
	display: none;
}

.Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-button-next,
.Box-IHCMUAGJ .Data .Category .Second .SwiperBtnBox-M2HD2QHF .swiper-button-prev {
	margin-top: 0;
	height: auto;
}

.Box-IHCMUAGJ .Data .Swiper-M2HD2QHF {
	margin-top: 6px;
	width: 468px;
}

.Box-IHCMUAGJ .Data .Swiper-M2HD2QHF .swiper-wrapper .swiper-slide > ul > li + li {
	margin-top: 2px;
}

.Box-IHCMUAGJ .Data .Swiper-M2HD2QHF .swiper-wrapper .swiper-slide > ul > .Item {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 4px;
}

.Box-IHCMUAGJ .Data .Swiper-M2HD2QHF .swiper-wrapper .swiper-slide > ul > .Item .Title {
	width: 100%;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 12px;
	font-weight: 500;
	color: var(--color7);
}

.Box-IHCMUAGJ .Data .Swiper-M2HD2QHF .swiper-wrapper .swiper-slide > ul > .Item .Page {
	font-size: 12px;
	font-weight: 400;
	color: #999;
}

.Sec-IAXE0CAA {
	margin-top: 28px;
}

.Sec-IAXE0CAA .Title {
	font-size: 24px;
	font-weight: 700;
	color: var(--color5);
}

.Sec-IAXE0CAA .Content {
	margin-top: 36px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
}

.Sec-JCZV8B60 {
	margin-top: 60px;
}

a:hover {
	text-decoration: none;
}

/* 20250418 오른쪽 광고배너 수정 */
.Box-2Q35OPJ {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 16px;
	background: var(--white);
	border: 1px solid var(--color11);
	border-radius: 8px;
	letter-spacing: -0.5px;
}

.Box-2Q35OPJ .First {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 4px;
	font-size: 14px;
}

.Box-2Q35OPJ .First > strong {
	font-size: 15px;
	font-weight: 600;
	color: var(--color7);
}

.Box-2Q35OPJ .First > .subtxt {
	font-size: 11px;
	color: var(--color7);
}

.Box-2Q35OPJ .Second .BtnGetCoupon {
	height: 28px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	padding: 0 8px;
	font-size: 11px;
	font-weight: 400;
	color: var(--color7);
	background: var(--color14);
	border-radius: 100px;
	text-decoration: none;
}

/* 자료후기 Style_2 :: 20250523154406 */
.Box-ELISYKIG .SummaryArea {
	padding: 20px;
	background-color: var(--color16);
	border: 1px solid var(--color14);
	border-radius: 12px;
	margin-top: 20px;
}

.Box-ELISYKIG .SummaryArea > .Title {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Box-ELISYKIG .SummaryArea > .Detail {
	margin-top: 16px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color7);
	line-height: 20px;
}

.Box-ELISYKIG .CommentArea {
	margin-top: 20px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO.Open > li:nth-child(n+6) {
	display: block;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO.Open + .BtnBox-CQEMVIY9 .BtnMore > img {
	transform: rotate(0);
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li + li {
	margin-top: 20px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li:nth-child(n+6) {
	display: none;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Reviewer .Meta > .RatingRow {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Reviewer .Meta > .RatingRow > .Rating {
	font-size: 14px;
	font-weight: 700;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Reviewer .Meta > .RatingRow > .Date {
	font-size: 14px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Reviewer .Meta > .Nickname {
	margin-top: 4px;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Reviewer > .ReviewText {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Seller {
	margin-top: 8px;
	padding: 20px;
	background-color: var(--color16);
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Seller > .Info {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Seller > .Info .Nickname {
	font-size: 12px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Seller > .Info .Date {
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Seller > .ReviewText {
	margin-top: 8px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
	letter-spacing: -0.3px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Seller > .BtnBox-4LYRWIQ {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: end;
	align-items: center;
	gap: 0;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Seller > .BtnBox-4LYRWIQ > button {
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li > .Seller > .BtnBox-4LYRWIQ > .Line {
	margin: 0 8px;
	width: 1px;
	height: 12px;
	background-color: var(--color7);
}

.Box-ELISYKIG .CommentArea .Ul-0MFKRBO > li .BtnBox {
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	justify-content: end;
	align-items: center;
	gap: 0;
}

.Box-ELISYKIG .CommentArea .BtnBox-CQEMVIY9 {
	margin-top: 20px;
	text-align: center;
}

.Box-ELISYKIG .CommentArea .BtnBox-CQEMVIY9 > .BtnMore {
	display: inline-flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	letter-spacing: -0.3px;
}

.Box-ELISYKIG .CommentArea .BtnBox-CQEMVIY9 > .BtnMore > img {
	transform: rotate(180deg);
	transition: transform 0.25s ease-in-out;
}

.Textarea_1 {
	width: 100%;
}

.Textarea_1.TextareaMd > .TextField > textarea {
	height: 128px;
}

.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-size: 16px;
	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;
}

/* 20250602 AI와 토픽 톺아보기 영억 수정 */
.Topic_Detail {
	margin-top: 24px;
	padding: 28px;
	background-color: #F8F8F8;
	border-radius: 20px;
}

.Topic_Detail .First > li + li {
	margin-top: 20px;
}

.Topic_Detail .First > li .SubTitle {
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
}

.Topic_Detail .First > li .Desc {
	margin-top: 4px;
	padding-left: 15px;
	font-size: 14px;
	font-weight: 400;
	color: var(--color7);
	line-height: 20px;
}

.Topic_Detail .First > li .ToggleBox {
	margin-top: 20px;
}

.Topic_Detail .First > li .ToggleBox > .BtnToggle {
	width: 100%;
	height: 52px;
	padding: 0 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	font-size: 14px;
	font-weight: 700;
	color: var(--color5);
	letter-spacing: -0.3px;
	background-color: var(--white);
	border-radius: 16px;
}

.Topic_Detail .First > li .ToggleBox > .BtnToggle > img {
	transition: transform 0.25s ease-in-out;
}

.Topic_Detail .First > li .ToggleBox > .Content {
	display: none;
	padding: 20px;
	background-color: var(--white);
	border-radius: 0 0 16px 16px;
	transition: transform 0.25s ease-in-out;
}

.Topic_Detail .First > li .ToggleBox > .Content.On {
	display: block;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .Thumbnail {
	position: relative;
	display: block;
	width: 132px;
	height: 183px;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .Thumbnail .ImgBox {
	width: 100%;
	height: 100%;
	overflow: hidden;
	border: 1px solid #DEE2E6;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .Thumbnail .ImgBox > img {
	width: 100%;
	height: 100%;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .Thumbnail .ContentBox {
	position: absolute;
	top: 12px;
	left: 15px;
	width: 109px;
	height: 154px;
	transition: transform 0.25s ease-in-out;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .Thumbnail .ContentBox > .Text {
	margin-top: 15px;
	width: 105px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	font-size: 16px;
	font-weight: 700;
	color: var(--color7);
	line-height: 20px;
	letter-spacing: -0.3px;
	transition: transform 0.25s ease-in-out;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .Thumbnail:hover .Text {
	transform: scale(1.05);
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .InfoText {
	margin-top: 20px;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .InfoText .Category {
	display: inline-flex;
	flex-direction: row;
	gap: 0;
	font-size: 12px;
	font-weight: 400;
	color: var(--color9);
	letter-spacing: -0.3px;
	align-items: center;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .InfoText .Category > span {
	border-bottom: 1px solid transparent;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .InfoText .Category:hover > span {
	border-bottom: 1px solid var(--color9);
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .InfoText .Title {
	margin-top: 4px;
	font-size: 14px;
	font-weight: 700;
	color: var(--color5);
	line-height: 18px;
	width: 100%;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.Topic_Detail .First > li .ToggleBox > .Content > .Ul-K5WFDA4 > li .InfoText .Title:hover {
	text-decoration: underline;
}

.Topic_Detail .First > li .ToggleBox > .Content > .BtnBox {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	gap: 0;
}

.Topic_Detail .Second {
	margin-top: 16px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.Topic_Detail .Second > li > a {
	height: 28px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0 12px;
	font-size: 12px;
	font-weight: 500;
	color: rgba(61, 61, 61, 0.8);
	background-color: var(--white);
	border: 1px solid rgba(61, 61, 61, 0.4);
	border-radius: 20px;
}

.Topic_Detail .Second > li > a:hover {
	color: var(--primary);
	border-color: var(--primary);
}

