@charset "euc-kr";

/* ------------------------------------------------------

	common.css

------------------------------------------------------ */
body { 
	position: relative;
	padding-top: 9rem; 
	background: var(--ged-color-white);
}
.sub main { 
	padding: 0; 
}



/* component ui
------------------------------------------------------ */

/* -------- help class -------- */
.ir { height: 0; line-height: 0; font-size: 0; overflow: hidden; text-indent: -10000px; }
.float-l { position: relative; float: left; }
.float-r { position: relative; float: right; }
.clrfix { clear: both; *zoom: 1; }
.clrfix:after { content: ""; display: block; clear: both; }

/* block */
.in-bl { display: inline-block; }
.di-bl { display: block; }
.cboth { clear: both; }

/* flex */
._col,
._col_l,
._col_c,
._col_r { display: flex; align-items: center; }
._col { justify-content: space-between; }
._col_l { justify-content: flex-start; }
._col_c { justify-content: center; }
._col_r { justify-content: flex-end; }
._col_wrap { flex-wrap: wrap; }
._col_row { flex-direction: row; }
._col_col { flex-direction: column; }

.align-l { text-align: left !important; }
.align-c { text-align: center !important; }
.align-r { 	text-align: right !important; }

.no-mg { margin: 0 !important; }
.no-pd { padding: 0 !important; }
.no-bd { border: 0 !important; }

/* loading bar */
#div_loading { 
	position: fixed; left: 50%; top: 50%;
	margin:-48px 0 0 -48px;
	width: 96px; height:96px;
	overflow: hidden;
	z-index:101; 
}
#div_loading::before { 
	content: "";
	display: block;
	clear: both;
	position: fixed; left: 0; top: 0; right: 0; bottom: 0;
	width: 100%; height: 100%;
	background: rgb(0 0 0/10%);
	/* z-index: -1; */
}


/* -------- style -------- */

/* h group */
h1, h2, h3, h4, h5, h6 { 
	user-select: none; 
}

/* title */
.title-lg { 
	line-height: 1.4;
	font-size: 4rem;
	font-weight: 700;
	color: var(--ged-color-gray9);
}
.title-md { 
	line-height: 1.4;
	font-size: 2.8rem;
	font-weight: 600;
	color: var(--ged-color-gray9);
}
.title-sm {
	line-height: 1.4;
	font-size: 2.4rem;
	font-weight: 600;
	color: var(--ged-color-gray9);
}

/* text */
.text-lg { 
	line-height: 1.4;
	font-size: 1.8rem;
	font-weight: 600;
}
.text-md { 
	line-height: 1.5;
	font-size: 1.6rem;
	font-weight: 400;
}
.text-sm { 
	line-height: 1.5;
	font-size: 1.4rem;
	font-weight: 400;
}

/* caption */
.caption { 
	line-height: 1.4;
	font-size: 1.3rem !important;
	font-weight: 400;
}

/* button */
.btn { 
	display: inline-flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	padding: 0 1.6rem;
	height: 5rem;
	line-height: 1;
	font-size: 1.5rem;
	font-weight: 500;
	color: var(--ged-color-white); 
	background: var(--ged-color-gradient);
	letter-spacing: -0.04em;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
}
.btn-ani { 
	transition: .4s; 
}
.btn-ani:hover { 
	/* background-size: 200% 200%;
	background-position: 50% 100%; */
	background: linear-gradient(120deg, #5e74ed 16%, #26c7b6);
}
.btn + .btn ~ .btn,
.btn-wrap .btn ~ .btn { 
	margin: 0 0 0 0.4rem;
}
.btn-line { 
	color: var(--ged-color-gray7);
	background: transparent;
	border: 0.1rem solid var(--ged-color-gray5);
}
.btn-line.reverse { 
	color: var(--ged-color-white);
	border: 0.1rem solid var(--ged-color-white);
}
.btn-big { 
	height: 6rem !important; 
	font-size: 1.6rem !important;
}
.btn-medium { 
	height: 5rem !important; 
}
.btn-small { 
	padding: 0 1.6rem;
	height: 3.5rem !important; 
	font-size: 1.3rem !important;
}
.btn-mini { 
	padding: 0 1.2rem;
	height: 2.5rem !important;
	font-size: 1.2rem !important;
}
.btn-help { 
	padding: 0 1.6rem;
	height: 3.5rem;
	font-size: 1.3rem;
	font-weight: 500 !important;
	color: var(--ged-color-gray4);
	background: var(--ged-color-gray0);
	border: 0.1rem solid transparent;
	letter-spacing: -0.08em;
}
.btn-help span { 
	display: inline-flex;
	align-items: center;
	margin: 0 0 0 0.4rem;
	animation: arrow-ani .4s ease-in-out infinite alternate; 
}
.btn-help span::after { 
	content: "\ea67";
	display: inline-flex;
	clear: both;
	margin: 0 0 0 0.4rem;
	font-size: 1.16em;
}
@keyframes arrow-ani {
	0% {
		color: var(--ged-color-pink);
	}
	50% {
		color: var(--ged-color-hotpink-ls);
		color: #EC6F66;
		color: #DD5E89;
	}
	100% {
		color: #F3A183;
		color: #F7BB97;
	}
}
.btn-help:hover { 
	color: var(--ged-color-gray4);
	background: var(--ged-color-white);
	border-color: var(--ged-color-gray2);
}
.btn-waiting { 
	color: var(--ged-color-white);
	background: var(--ged-color-green); 
	animation: waiting-ani 1s ease-in-out infinite alternate;
}
@keyframes waiting-ani {
	0% { background: var(--ged-color-green) !important; }
	50% { background: var(--ged-color-green-ds) !important; }
	100% { background: var(--ged-color-green) !important; }
}
.disabled { 
	font-weight: 500 !important;
	color: var(--ged-color-gray3) !important;
	background: var(--ged-color-gray0) !important;
	border: 0 !important;
	cursor: default !important;
	/* cursor: no-drop; */
}
.btn-wrap { 
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: auto;
	width: 70rem;
	max-width: 100%;
}

/* button size */
._full { 
	flex: 1 0 100% !important;
	width: 100% !important;
}
._half { 
	flex: 1 0 49% !important;
	width: 49% !important;
}
._third { 
	flex: 1 0 32.3% !important;
	width: 32.3% !important;
}
._quarter { 
	flex: 1 0 24% !important;
	width: 24% !important;
}
._fifth { 
	flex: 1 0 19% !important;
	width: 19% !important;
}
._four-to-six *:first-child { 
	margin-left: 0;
	margin-right: 1%;
	width: 37%; 
}
._four-to-six *:last-child { 
	margin-left: 1%;
	margin-right: 0;
	width: 61%; 
}

/* label */
.label { 
	display: inline-flex;
	align-items: center;
	cursor: default;
}

/* label-promo */
.label-promo { 
	padding: 0 1.6rem;
	height: 3.2rem;
	font-size: 1.3rem;
	font-weight: 400;
	color: var(--ged-color-white);
	background: var(--ged-color-gradient);
}

/* label-sort */
.label-sort { 
	padding: 0 0.8rem;
	height: 2.4rem;
	line-height: 1;
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--ged-color-white);
	background: var(--ged-color-green);
	border-radius: 0.24rem;
}
.label-text { 
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--ged-color-gray9);
	letter-spacing: -0.04em;
}

/* label-tag */
.label-tag { 
	padding: 0 0.8rem;
	height: 2.2rem;
	line-height: 1;
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--ged-color-gray4);
	/* border: 1px solid #e2e5eb; */
	border: 0.1rem solid var(--ged-color-gray1);
	border-radius: 0.24rem;
	letter-spacing: -0.08em;
}
.label-tag.reverse { 
	color: var(--ged-color-white);
	background: var(--ged-color-gray4);
}


/* -------- tag -------- */
.tag { 
	margin: 1.2rem 0 0;
	white-space: nowrap; 
	overflow-x: auto;
}
.tag .label ~ .label { 
	margin: 0 0 0 0.4rem;
}
.tag .label::before { 
	content: "\edfc";
	display: inline-flex;
	clear: both;
	margin: 0 0 0 -0.3rem;
	font-family: 'remixicon';
}

/* label-stat */
.label-stat { 
	font-size: 1.4rem;
	color: var(--ged-color-gray4);
}

/* bullet */
.bullet { 
}
.bullet::before { 
	content: "";
	display: inline-block;
	clear: both;
	position: relative; top: 0.4rem;
	margin: 0 0.8rem 0 0;
	width: 1em; height: 1em;
	background: url('/images/comm/bullet.png') no-repeat center center;
	background-size: contain;
	transition: .2s;
}
.bullet-dash { 
	display: inline-block;
	position: relative; left: 0; top: -0.4rem;
	margin: 0 1.6rem 0 0.8rem;
	width: 0.4rem; height: 0.8em;
	background: var(--ged-color-gradient);
	transform: skewX(20deg); 
}

/* pre */
xmp { 
	padding: 0.8rem 1.6rem;
	font-family: inherit;
	font-size: 1.2rem;
	background: rgb(255 240 171/0.5);
}
pre {
	font-size: 1rem;
	color: var(--ged-color-gray5);
	letter-spacing: 0;
	white-space: normal;
	cursor: default;
	-webkit-user-select: all;
	-moz-user-select: all;
	-ms-user-select: all;
	user-select: all;
}

/* asterisk */
.asterisk::after { 
	content: "\ea81";
	display: inline-flex;
	clear: both;
	position: relative; left: 0.4rem; top: -0.4rem;
	font-family: remixicon;
	font-size: 1rem;
	font-weight: 700;
	color: var(--ged-color-pink);
}

._box { 
	padding: 1.2rem 1.6rem;
	border: 0.1rem solid var(--ged-color-gray2);
	box-shadow: 0 0.16rem 0.2rem var(--ged-color-gray1); 
}
._box_mini { 
	box-shadow: 0 0.12rem 0 #d9dbe0; 
}
._box_inner { 
	padding: 1.6rem 0 0;
	border-top: 0.1rem solid var(--ged-color-gray1); 
}
._border { 
	padding: 1.2rem 1.6rem;
	line-height: 1.6;
	border: 0.1rem solid var(--ged-color-gray2); 
}
._radius { 
	border-radius: 0.4rem; 
}
._comment { 
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 3.2rem;
	padding: 1.6rem 2.4rem;
	line-height: 1.5;
	font-size: 0.938em;
	color: var(--ged-color-gray5);
	background: var(--ged-color-gray0);
}
._comment p { 
	flex: 0 0 calc(100% - 20rem); 
}
._comment a,
._comment input+label { 
	flex: 0 0 16rem; 
}
._scrollbox { 
	padding: 1.2rem 1.6rem;
	line-height: 1.4;
	font-size: 1.3rem;
	color: var(--ged-color-gray5);
	white-space: pre-wrap;
	overflow-y: scroll; 
}
._list li { 
	position: relative;
	padding: 1.2rem 0.4rem 1.2rem 0.8rem;
	line-height: 1.5;
	border-bottom: 0.1rem solid var(--ged-color-gray2);
}
/* ._list li:first-child { 
	padding-top: 0; 
}
._list li:first-child::before { 
	top: 0.8rem; 
}
._list li:last-child { 
	padding-bottom: 0;
	border-bottom: 0;
} */
._list .bullet::before { 
	content: "";
	display: inline-block;
	clear: both;
	position: relative; top: -0.4rem;
	width: 0.4rem; height: 0.4rem;
	background: var(--ged-color-gray4);
	border-radius: 50%;
}
._border._list,
._box._list { 
	padding: 0.8rem 2.4rem; 
}
._comment._list { 
	display: block; 
	padding: 1.6rem;
}
._comment._list li { 
	padding: 0.4rem 0.4rem 0.4rem 0.8rem; 
	line-height: 1;
	border-bottom: 0;
}
._border._list li:last-child,
._box._list li:last-child,
._comment._list li:last-child { 
	border-bottom: 0; 
}

/* progress */
.prog { 
	appearance: none;
	vertical-align: middle; 
}
.prog::-webkit-progress-bar {
	background: var(--ged-color-gray1);
	border-radius: 0;
}
.prog::-webkit-progress-value {
	position: relative;
	background: var(--ged-color-gradient);
	border-radius: 0;
}
.prog-chapter::-webkit-progress-bar {
	background: var(--ged-color-gray7);
}

/* reminder */
.reminder { 
	display: flex;
	align-items: center;
	/* width: 100%; */
	padding: 0 4% 0 0;
	font-size: 1.4rem;
	font-weight: 500;
	color: var(--ged-color-pink);
	background: var(--ged-color-whitepink);
	border-radius: 4rem;
}
.reminder::before { 
	content: "\ef94";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	align-self: flex-start;
	margin: 0 0.8rem 0 0;
	flex: 0 0 3.2rem;
	width: 3.2rem; height: 3.2rem;
	font-family: 'remixicon' !important;
	font-weight: 300;
	color: var(--ged-color-white);
	background: var(--ged-color-pink);
	background: linear-gradient(-45deg, var(--ged-color-pink), var(--ged-color-lightpink), var(--ged-color-hotpink));
	background-size: 400% 400%;
	border-radius: 50%;
	text-align: center; 
	animation: ringing 1s ease-in-out infinite alternate;
}
.reminder ~ .reminder { 
	margin: 0.4rem 0 0;
}
.reminder._tracking { 
}
.reminder._tracking::before { 
	content: "\f231"; 
	font-size: 1.16em; 
}
@keyframes ringing {
	0% {
		background: var(--ged-color-pink);
		/* background-position: 0% 50%; */
	}
	50% {
		/* background: var(--ged-color-hotpink-ls);
		background: #ec6f66;
		background: #dd5e89; */
		/* background-position: 100% 50%; */
		background: var(--ged-color-lightpink);
	}
	100% {
		/* background: #f3a183;
		background: #f7bb97; */
		/* background-position: 0% 50%; */
		background: var(--ged-color-hotpink);
	}
}
.reminder-msg { 
	flex: 1 0 100%;
	width: 100%;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--ged-color-pink); 
	white-space: normal;
}

._caution { 
	margin: 1.6rem 0 0;
	line-height: 1.5;
	font-size: 0.9em;
	color: var(--ged-color-gray4);
}
._alert { 
	display: inline-flex;
	align-items: center;
	position: relative; top: -0.1rem;
	margin: 0 0.8rem 0 0.4rem;
	padding: 0 0.8rem;
	height: calc(1em + 0.8rem);
	line-height: 0;
	font-size: 0.875em;
	color: var(--ged-color-white);
	background: var(--ged-color-pink);
	border-radius: 1.6rem;
}
._point { 
	font-weight: 500;
	color: var(--ged-color-pink) !important; 
}
._point2 { 
	font-weight: 500;
	color: var(--ged-color-blue4) !important;
}


/* -------- no-item -------- */
.no-item { 
	padding: 6rem 0;
	width: 100%;
	font-weight: 400;
	color: var(--ged-color-gray3);
	text-align: center;
}
.no-item::before { 
	content: "";
	display: block;
	clear: both;
	margin: -0.8rem auto 2.4rem;
	width: 8rem; height: 8rem;
	background: url('/images/comm/no_item.png') no-repeat center center;
	background-size: contain;
	filter: grayscale(1);
	opacity: 0.3;
}


/* -------- table -------- */
.tb { 
	border-collapse: collapse;
	-ms-word-break: break-all;
	word-break: break-all;
}
.tb + .tb { 
	margin-top: 1.6rem;
}
.tb em { 
	font-weight: 500;
	color: var(--ged-color-pink);
}
.tb thead {  
	border-top: 0.1rem solid var(--ged-color-gray7);
}
.tb-thead-x tbody { 
	border-top: 0.1rem solid var(--ged-color-gray2);
}
.tb th { 
	padding: 1.6rem 0; 
	line-height: 1; 
	font-size: 0.95em;
	font-weight: 600;
	background: var(--ged-color-gray0);
	border-bottom: 0.1rem solid var(--ged-color-gray2);
	letter-spacing: -0.04em;
}
.tb td { 
	padding: 1.6rem;
	line-height: 1.6; 
	border-bottom: 0.1rem solid var(--ged-color-gray2);
	text-align: center;
}

/* panel */
.tb-panel td { 
	padding: 1.6rem; 
}
.tb-panel thead th:not(:first-child) { 
	border-left: 0.1rem solid var(--ged-color-white); 
}
.tb-panel tbody { 
	border: 0; 
}

/* bbs */
.tb-bbs { 
	table-layout: fixed; 
}
.tb-bbs td { 
	padding: 1.6rem 0;
	color: var(--ged-color-gray5);
}
.tb-bbs .tb-title a { 
	display: inline-block;
	width: 100%;
	line-height: 1;
	vertical-align: middle;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap; 
}
.tb-bbs .tb-title a>span { 
	font-weight: 600;
	color: var(--ged-color-gray7);
}
.tb-bbs .tb-title a>span.label-reply { 
	margin: 0 0 0 1.2rem; 
}
/* .tb-bbs a>span::after { 
	content: "";
	display: inline-block;
	clear: both;
	position: relative; top: -0.1rem;
	margin: 0 1.2rem 0 0.8rem;
	width: 1px; height: 0.9em;
	background: var(--ged-color-gray4);
	vertical-align: middle;
} */

/* bbs-footer */
.tb-foot { 
	display: flex; 
	justify-content: space-between;
	align-items: center;
	margin: 2.4rem 0 0;
}

/* tb-box */
.tb-box { 
	/* border: 0.1rem solid var(--ged-color-gray2);
	border-width: 0.1rem 0.1rem 0; */
}
.tb-box .tbc1 { 
	width: 16rem; 
}
.tb-box .tbc2 { 
	width: calc(100% - 16rem); 
}
.tb-box th,
.tb-box td { 
	text-align: left;
}
.tb-box tr:last-of-type th,
.tb-box tr:last-of-type td { 
	border-bottom: 0; 
}
.tb-box th { 
	line-height: 5rem;
	color: var(--ged-color-gray7);
	background: transparent;
	vertical-align: top;
}
.tb-box td { 
	padding: 1.2rem; 
}

/* view */
.tb-view { 
}
.tb-view i[class=ri-reply-fill] { 
	transform: rotateX(180deg); 
}

/* paging */
.tb-pager { 
	text-align: center; 
}
.tb-pager a { 
	display: inline-flex;
	vertical-align: middle;
}
.tb-pager span { 
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 3.2rem; height: 3.2rem;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--ged-color-gray5);
	background: var(--ged-color-white);
	border: 0.1rem solid var(--ged-color-gray2);
	vertical-align: middle;
	cursor: pointer;
}
/* .tb-pager span:nth-child(2) ~ span { 
	margin: 0 0 0 0.2rem; 
} */
.tb-pager span:not(.btn-pager) { 
	margin: 0 0 0 0.4rem; 
}
.tb-pager span.on { 
	font-weight: 700; 
	color: var(--ged-color-white);
	background: var(--ged-color-gray7);
	border-color: var(--ged-color-gray7);
}
.tb-pager .btn-pager { 
	margin: 0 0.8rem !important; 
}
.tb-pager .btn-pager + span { 
	margin: 0; 
}
.tb-pager .btn-pager::before {
	display: inline-block;
	clear: both;
	font-family: remixicon;
	font-size: 1.4em;
	font-weight: 300;
}
.tb-pager .btn-prev::before { 
	content: "\ea64"; 
}
.tb-pager .btn-next::before { 
	content: "\ea6e";
}

/* table search */
.tb-srch { 
	display: flex; 
	justify-content: center;
	align-items: center;
	text-align: center;
}
.tb-srch select,
.tb-srch select + input { 
	height: 4rem;
	text-align: left;
}
.tb-srch select { 
	border-right-width: 0; 
}
.tb-srch select ~ button { 
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 4rem; height: 4rem;
	border: 0.1rem solid var(--ged-color-gray2);
	border-left-width: 0;
	cursor: pointer;
}
.tb-srch select ~ button::before { 
	content: "\f0d1";
	display: inline-flex;
	clear: both;
    font-size: 1.16em;
    font-weight: 400 !important;
}


/* -------- owl-carousel -------- */
.owl-carousel .owl-nav button::before { 
	font-family: 'Font Awesome 6 Pro' !important;
}


/* -------- category -------- */
.category { 
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
	margin: 0 0 3.2rem;
	padding: 0 0 2.4rem;
	border-bottom: 0.1rem solid var(--ged-color-gray2);
}
.category a { 
	display: inline-flex;
	align-items: center;
	margin: 0 1.6rem 0 0;
	height: 3.2rem;
	font-size: 1.6rem;
	font-weight: 400;
	color: var(--ged-color-gray4);
	letter-spacing: -0.04em;
	transition: color .4s;
}
.category a:hover,
.category a.active { 
	font-weight: 700;
	color: var(--ged-color-gray7);
}


/* -------- card -------- */
.card { 
	cursor: default;
	user-select: none;
}

/* thumbnail */
.card-thum { 
	position: relative; 
	line-height: 0;
	border-radius: 0.8rem;
	overflow: hidden;
}
.card-thum a { 
	display: block; 
	padding-top: calc(200/300*100%);
	width: 100%; height: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: transform .4s ease-out;
}
.card:hover .card-thum a { 
	transform: scale(1.06); 
}
.card-thum .label-promo { 
	position: absolute; left: 0; bottom: 0;
}

/* description */
.card-dept { 
	padding: 0 0.1rem;
}

/* card title */
.card-dept h4 { 
	margin: 1.2rem 0 0.8rem;
	font-weight: 600;
	color: var(--ged-color-gray9);
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	-ms-word-break: break-all;
	word-break: break-all;
}
.card-dept .tag+h4 { 
	margin-top: 1.2rem; 
}
.card-dept .card-prc + .tag { 
	/* margin-top: 0.8rem; */
}

/* card summary */
.card-dept h4 + p {
	height: auto;
	color: var(--ged-color-gray4);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	white-space: normal;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	word-break: break-all;
}

/* licenseNumber */
.card-dept h6 { 
	margin: 1.2rem 0 0;
	color: var(--ged-color-gray4);
	letter-spacing: -0.04em;
}
.card-dept h6 small { 
	font-size: 100%; 
	vertical-align: top;
}
.card-dept h6 small::after { 
	content: "|";
	display: inline-block;
	clear: both;
	position: relative; top: -0.1rem;
	margin: 0 0.4rem;
	color: var(--ged-color-gray2);
}
.card-dept h6 span::before,
.card-dept h6 span::after {  
	display: inline-block;
	clear: both;
	line-height: 1;
}
.card-dept h6 span::before { 
	content: "\c81c";
	margin: 0 0.4rem 0 0;
}
.card-dept h6 span::after { 
	content: "\d638";
	margin: 0 0 0 0.4rem;
}

/* amount */
.card-prc .label-sort { 
	margin: 0 1.2rem 0 0;
}
.card-prc-title { 
	margin: 0 2.4rem 0 0;
	font-weight: 600; 
}
.card-prc-title i { 
	margin: 0 0.6rem; 
	font-size: 1.2em;
}
.sale-price { 
	position: relative; top: 0;
	margin-right: 0.8rem;
	font-style: italic;
	color: var(--ged-color-gray4); 
}
.sale-price::before { 
	content: "";
	display: block;
	clear: both;
	position: absolute; left: -0.4rem; top: 50%;
	width: calc(100% + 0.8rem); height: 0.1rem;
	background: var(--ged-color-pink);
	transform: translateY(-50%);
}
.card strong,
.sale-price + strong,
.item-cost + div strong,
.order-table-m .fill-amnt strong { 
	font-weight: 900;
	color: var(--ged-color-gray7);
}
.sale-price + strong { 
	color: var(--ged-color-pink) !important; 
}

/* ¿ø Ç¥½Ã */
span.won { 
	font-weight: 900; 
}
.won::after { 
	content: "\c6d0";
	display: inline-flex;
	clear: both;
	margin: 0 0 0 0.2rem;
	font-weight: initial;
}


/* -------- tab -------- */
.tab { 
	display: flex; 
	align-items: center;
}
.tab .tab-link { 
	display: flex;
	align-items: center;
	position: relative;
	font-weight: 400;
	color: var(--ged-color-gray4); 
}
.tab>li .tab-link.active { 
	font-weight: 700;
	color: var(--ged-color-gray7); 
}

/* tab-box */
.tab-box { 
	background: var(--ged-color-gray0);
}
.tab-box > li { 
	flex: 1 0 10%; 
}
.tab-box .tab-link { 
	justify-content: center; 
	height: 6rem;
}
.tab-box .tab-link.active { 
	background: var(--ged-color-white);
	border: 0.1rem solid var(--ged-color-gray6);
}

/* tab-line */
.tab-line {
	position: sticky; top: 9rem;
	display: flex;
	background: var(--ged-color-white);
	white-space: nowrap;
	z-index: 1;
}
.tab-line::before { 
	content: "";
	display: inline-block;
	clear: both;
	position: absolute; bottom: 0;
	width: 100%; height: 0.1rem;
	background: var(--ged-color-gray2);
}
.tab-line>li { 
	margin: 0 2rem 0 0;
}
.tab-line .tab-link { 
	height: 8rem;
}
.tab-line .tab-link::before { 
	content: "";
	display: inline-block;
	clear: both;
	position: absolute; left: 0; bottom: 0;
	width: 0; height: 0.3rem;
	background-color: transparent;
	transition: width .2s;
}
.tab-line .tab-link.active::before { 
	width: 100%;
	background-color: var(--ged-color-blue4);
}

/* tab-content */
.tab-content { 
	padding: 20rem 0 0;
	line-height: 1.8;
	transition: .2s;
}
.tab-content:first-of-type { 
	margin: 0 0 -16rem;
	padding: 0;
	min-height: 0;
}
.tab-content img { 
	display: block; 
	margin: 4% 0;
}


/* -------- faq -------- */
.faq-list li { 
	border-bottom: 0.1rem solid var(--ged-color-gray2);  
}
.faq-list li:first-child { 
	border-top: 0.1rem solid var(--ged-color-gray2); 
}
.faq-list h4 { 
	display: flex;
	align-items: center;
	margin: 0;
	padding: 1.2rem 0;
	min-height: 6rem;
	font-weight: 500;
	cursor: pointer;
}
.faq-list h4 small { 
	flex: 0 0 6rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 6rem; height: inherit;
	font-size: 1.025em;
	font-weight: 700;
	color: var(--ged-color-gray2);
	text-align: center;
	transition: .3s ease-out;
}
.faq-list h4 + div { 
	display: none;
	padding: 2.4rem 6rem;
	color: var(--ged-color-gray5);
	background: var(--ged-color-gray0);
}
.faq-list li.act h4 { 
	font-weight: 700; 
}
.faq-list li.act h4 small { 
	color: var(--ged-color-blue4); 
}



/* layout
------------------------------------------------------ */
.container { 
	margin: 0 auto;
	width: 120rem;
	max-width: 92%;
	transition: width .3s ease-in-out;
}
._wide { 
	width: 100% !important;
	max-width: 100% !important;
}
._no_scroll { 
	width: calc(100% - 17px); height: 100%;
	overflow-y: hidden;
}
._inner { 
	background: var(--ged-color-gray0); 
}

/* overlay */
.overlay {
	position: fixed; left: 0; top: 0; right: 0; bottom: 0;
	width: 100%; height: 100%;
	background-color: rgb(0 0 0/80%);
	z-index: -1;
}
._no_scroll .overlay { 
	z-index: 99;
}

/* sidebar */
.sidebar { 
	transition-timing-function: ease-in-out;
	transition-duration: .3s;
	transition-delay: 0;
}
.sidebar.open { 
	z-index: 101; 
}

/* popup */
.arrPopup { 
	position: absolute;
	box-shadow: 2px 3px 6px rgb(0 0 0/0.3);
}

/* title */
h2 { 
	margin: 0 0 2.4rem;
	letter-spacing: -0.04em;
	transition: .2s;
	user-select: none; 
}
h3 { 
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: 6rem 0 2.4rem;
	letter-spacing: -0.04em;
	transition: .2s;
	user-select: none;
}
h2 + h3 { 
	margin-top: 0; 
}
h3 small { 
	margin: 0 0 0 3.2rem;
	font-size: 0.7em;
	font-weight: 400;
	color: var(--ged-color-gray4);
	letter-spacing: -0.04em;
}
h4 { 
	margin: 3.2rem 0 1.6rem;
	user-select: none;
}

/* more */
.more { 
	justify-content: space-between;
	width: 100%;
}
.more>a { 
	line-height: 0;
	font-size: 1.4rem;
	font-weight: 400;
	color: var(--ged-color-gray4);
}
.more>a::after { 
	content: "\ea6e";
	display: inline-flex;
	align-items: center;
	clear: both;
	position: relative; top: 0;
	margin: 0 0.2rem 0 0.4rem;
	font-family: remixicon;
	font-size: 1.2em;
	font-weight: 300;
	vertical-align: top;
}
.more *:last-child { 
	flex-grow: 0; 
}

/* iconmneu */
.inb { 
	position: relative; top: -0.2rem;
	display: inline-block;
	margin: 0 0.4rem 0 0;
	width: 2.4rem; height: 2.4rem;
	line-height: 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	vertical-align: middle;
}

/* iconmneu - unb */
.btn-login .inb { 
	background-image: url('../../images/comm/i_login.png'); 
}
.btn-join .inb { 
	background-image: url('../../images/comm/i_join.png'); 
}
.btn-logout .inb { 
	background-image: url('../../images/comm/i_logout.png'); 
}
.btn-commu .inb { 
	background-image: url('../../images/comm/i_community.png'); 
}

/* iconmenu - order-table */
.item-kit .inb { 
	width: 2rem; height: 2rem;
	background-image: url('../../images/comm/i_kit.png'); 
}
.item-cost .inb { 
	width: 2rem; height: 2rem;
	background-image: url('../../images/comm/i_wallet.png'); 
}
.item-cart .inb { 
	width: 4rem; height: 4rem;
	background-image: url('../../images/comm/i_cart_w.png'); 
}

/* iconmenu - search */
.srch-close .inb {
	width: 7rem; height: 7rem;
	background-image: url('../../images/comm/i_close.png'); 
}
.srch-del .inb { 
	width: 2.4rem; height: 2.4rem;
	background-image: url('../../images/comm/i_close_s.png'); 
}

/* iconmenu mobile */
.btn-gnb,
.btn-srch,
.btn-unb { 
	display: none; 
}
.btn-gnb .inb,
.btn-srch .inb,
.btn-unb .inb { 
	width: 4rem; height: 4rem;
}
.btn-gnb .inb { 
	background-image: url('../../images/comm/i_gnb.png'); 
}
.btn-srch .inb { 
	background-image: url('../../images/comm/i_search_m.png'); 
}
.btn-unb .inb { 
	background-image: url('../../images/comm/i_unb.png'); 
}

/* icon */
.ico::before { 
	display: inline-flex;
	clear: both;
	position: relative; top: -0.2rem;
	margin: 0 0.8rem 0 0;
	line-height: 0;
	font-family: 'remixicon';
	font-size: 1.16em;
	font-weight: 400;
	color: var(--ged-color-blue1);
	vertical-align: middle;
    transition: .2s;
}
.ico-study-1::before {  
	content: "\ead5"; 
}
.ico-study-2::before {  
	content: "\eb29"; 
}
.ico-study-3::before {  
	content: "\ea8a"; 
}
.ico-study-4::before {  
	content: "\ea89"; 
}
.ico-study-5::before {  
	content: "\ea48"; 
}
.ico-mypage-1::before {  
	content: "\ec0c"; 
}
.ico-mypage-2::before {  
	content: "\f2ae";
}
.ico-mypage-3::before {  
	content: "\ebe8"; 
}
.ico-mypage-4::before {  
	content: "\f26e"; 
}

/* btn-top */
.btn-top { 
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed; right: 1.6rem; bottom: -8rem;
	width: 4rem; height: 4rem;
	background: rgb(0 0 0 / 0.4);
	border-radius: 50%;
	cursor: pointer;
	transition: .5s;
	z-index: 9999; 
}
.btn-top::before { 
	content: "\ea76";
	display: block;
	clear: both;
	font-family: remixicon;
	font-size: 1.8rem;
	color: var(--ged-color-white);
}
.btn-top:hover { 
	background: rgb(0 0 0 / 0.8);
}


/* -------- header -------- */
header { 
	position: fixed; left: 0; top: 0; right: 0;
	width: 100%;
	min-width: 360px;
	background: var(--ged-color-white);
	box-shadow: none;
	z-index: 100;
	box-shadow: none;
	transition: box-shadow .3s;
}
._no_scroll header {
	/* z-index: 61; */
	/* z-index: unset; */
}
header .overlay { 
	display: none; 
}
header .container { 
	display: grid;
	grid-template-columns: minmax(18rem, auto) 2fr 1fr 6fr;
	grid-template-areas: "logo gnb srch unb";
	align-items: center;
	position: relative;
	z-index: 100;
	height: 9rem;
	transition: height .3s;
}
header.scroll-act { 
	box-shadow: 0 0.4rem 0.8rem rgb(0 0 0/12%);
}


/* logo */
.logo { 
	grid-area: logo;
	margin: 0 6rem 0 0;
}
.logo a { 
	display: inline-block;
	width: 21rem;
	width: 16rem;
	transition: width .3s ease-out;
}
.logo a img { 
	height: auto;
}

/* gnb */
.btn-gnb,
.beginning { 
	display: none; 
}
.gnb { 
	grid-area: gnb;
}

/* gnb-1depth */
.gnb .dep1 { 
	display: flex;
	white-space: nowrap;
}
.gnb .dep1>li { 
	position: relative;
	margin: 0 4rem 0 0;
}
.gnb .dep1>li>a { 
	display: flex;
	align-items: center;
	height: 6rem;
	font-size: 2rem;
	font-weight: 600;
	color: var(--ged-color-gray9);
	transition: font-size .3s ease-out;
}
.gnb [name=spec-blog-m] { 
	display: none !important; 
}

/* gnb-2depth */
.gnb .dep2 { 
	position: absolute; left: -3rem; top: 7rem;
	width: 28rem;
	max-height: calc(100vh - 8rem);
	background: var(--ged-color-white);
	border: 0.1rem solid var(--ged-color-gray2);
	opacity: 0;
	visibility: hidden;
	overflow-y: auto;
	z-index: 61;
	transition: .2s;
}
.gnb .dep1>li.specBlog .dep2 { 
	display: none;
}
.gnb .dep1>li>a.active ~ .dep2 {
	top: 5.6rem;
	opacity: 1;
	visibility: visible;
	z-index: 99;
}
.gnb .dep2>li:not(:first-child) { 
	border-top: 0.1rem solid var(--ged-color-gray2); 
}
.gnb .dep2>li>a { 
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 3rem;
	height: 6rem;
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--ged-color-gray7);
}
.gnb .dep2>li>a span::after { 
	content: "\ea4e";
	display: inline-block;
	clear: both;
	position: absolute; left: calc(100% - 4rem); top: 50%;
	line-height: 0;
	font-family: remixicon;
	font-size: 1.16em;
	font-weight: 300;
	color: var(--ged-color-gray4);
	transform: translateY(-50%) rotate(0deg); 
}
.gnb .dep2>li>a.active span::after { 
	transform: rotate(-180deg); 
}
.gnb .dep1>li.specBlog .dep2>li>a::after { 
	content: "\ea6e";
	display: inline-block;
	clear: both;
	position: absolute; left: calc(100% - 4rem); top: 50%;
	line-height: 0;
	font-family: remixicon;
	font-size: 1.16em;
	font-weight: 300;
	color: transparent;
	transform: translateY(-50%); 
	animation: now-here .4s ease-in-out infinite alternate;
}
.gnb .dep1>li.specBlog .dep2>li>a.active::after { 
	color: var(--ged-color-gray7);
}
@keyframes now-here { 
	0% { 
		left: calc(100% - 4rem);
	}
	100% { 
		left: calc(100% - 4.8rem);
	}
}

/* gnb-3depth */
/* .gnb .dep2>li:not(:first-child) .dep3 { */
.gnb .dep2>li .dep3 {
	display: none;
}
.gnb .dep3 { 
	padding: 0 4rem;
	line-height: 1.8;
}
.gnb .dep3>li:last-child { 
	margin-bottom: 2.4rem; 
}
.gnb .dep3 a { 
	position: relative;
	font-size: 1.5rem;
	color: var(--ged-color-gray5);
	transition: .2s;
}
.gnb .dep3 a::before { 
	content: "";
	display: inline-block;
	clear: both;
	position: relative; left: -0.8rem; top: -0.4rem;
	width: 0.3rem; height: 0.3rem;
	background: var(--ged-color-gray2);
	border-radius: 50%;
}
.gnb .dep3 a::after { 
	content: "";
	display: block;
	clear: both;
	position: absolute; left: 0.2rem; bottom: 0;
	width: 0; height: 0.1rem;
	background: var(--ged-color-gray7);
	transition: .4s; 
}
.gnb .dep3 a.active,
.gnb .dep3 a:hover { 
	font-weight: 500;
	color: var(--ged-color-gray7); 
}
.gnb .dep3 a.active::after,
.gnb .dep3 a:hover::after { 
	width: 100%; 
}
.gnb .dep3 .promo {
	font-weight: 500;
	color: var(--ged-color-pink) !important; 
}
.gnb .dep3 .promo::after { 
	background-color: var(--ged-color-pink); 
}

/* search */
.srch { 
	grid-area: srch; 
	position: relative;
}
.btn-srch { 
	display: flex;
	align-items: center;
	height: 6rem;
	font-size: 2.4rem;
	font-weight: 700;
	cursor: pointer;
}
.btn-srch span { 
	display: none; 
}
#srch-help { 
	position: absolute; top: 5rem;
	margin: 0 0 0 -0.4rem;
	padding: 0.8rem 1rem 0.8rem 0.8rem;
	max-width: 8rem;
	line-height: 1;
	font-size: 1.3rem;
	color: var(--ged-color-white);
	background: var(--ged-color-gray9);
	opacity: 0;
	cursor: pointer;
	transition: .2s;
}
#srch-help::before { 
	content: "";
	display: block;
	clear: both;
	position: absolute; top: -0.8rem;
	margin: 0 0 0 1.2rem;
	width: 0; height: 0;
	border-bottom: 0.4rem solid var(--ged-color-gray9);
	border-top: 0.4rem solid transparent;
	border-left: 0.4rem solid var(--ged-color-gray9);
	border-right: 0.4rem solid transparent;
}
.btn-srch:hover + #srch-help { 
	top: 5.6rem;
	opacity: 1;
}
.srch-form { 
	position: fixed; top: calc(-64rem * 2);
	width: 100%; height: 64rem; height: auto;
	min-width: 360px;
	max-height: 100%;
	background-color: var(--ged-color-white);
	overflow-y: auto;
	opacity: 0;
	z-index: 100;
	transition: all .6s;
}
.srch-form.open { 
	top: 0; 
	opacity: 1;
	z-index: 101;
}
.srch-form .container { 
	position: relative;
	padding: 9rem 0 9rem; 
}
.srch-close { 
	position: absolute; top: 0; right: 0;
}
.srch-close::before { 
	content: "\eb99";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	clear: both;
	width: 7rem; height: 7rem;
	font-family: remixicon;
	font-size: 2.4rem;
	font-weight: 300;
}
.srch-form form { 
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 0 3rem 0 0;
	width: 60rem; height: 8rem;
	max-width: 100%;
	border: 0.2rem solid var(--ged-color-gray7); 
	border-radius: 4rem;
	overflow: hidden;
}
.srch-form input { 
	display: inline-flex;
	align-items: center;
	padding: 0 0 0 4.8rem;
	width: calc(100% - 8rem); height: 8rem;
	font-family: inherit;
	font-size: 1.8rem;
	color: var(--ged-color-gray5);
	background: transparent;
	border: 0;
}
.srch-form button { 
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6rem; height: 6rem;
	font-size: 2.4rem;
	background: none;
	border: 0;
	cursor: pointer;
}
.srch-form button::before { 
	content: "\f0d1";
	display: inline-flex;
	clear: both;
    font-size: 1.16em;
    font-weight: 400 !important;
}
.srch-form form + datalist { 
	display: block;
	position: absolute; left: 50%;
	padding: 1.6rem 0;
	width: 60rem; /* height: 48rem; */
	max-width: 100%;
	max-height: 40rem;
	line-height: 1; 
	background: var(--ged-color-white);
	/* border: 0.1rem solid var(--ged-color-gray2); */
	border-radius: 4rem;
	box-shadow: 0 0.4rem 0.8rem rgb(0 0 0/12%);
	transform: translateX(-50%);
	overflow-y: auto;
}
.srch-form form + datalist option { 
	display: block;
	align-items: center;
	padding: 1.1rem 3.6rem 1.4rem;
	line-height: 1;
	cursor: pointer;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.srch-form form + datalist option::before { 
	content: "\ed05";
	display: inline-block;
	clear: both;
	position: relative;
	top: 0.28rem;
	margin: 0 0.8rem 0 0;
	font-family: remixicon;
	font-size: 1.12em;
	font-weight: 300;
	color: var(--ged-color-gray2);
}
.srch-form form + datalist option:not(:first-child) { 
	/* border-top: 0.1rem solid var(--ged-color-gray2); */
}
.srch-form form + datalist option:hover { 
	color: var(--ged-color-gray7); 
	background: var(--ged-color-gray0);
}
.srch-keyword { 
	margin: 8rem 0 0;
	font-size: 1.6rem;
	color: var(--ged-color-gray5); 
	cursor: default;
}
.srch-keyword>div ~ div { 
	margin: 4.8rem 0 0; 
}
.srch-keyword hr { 
	margin: 4.8rem 0 0;
}
.srch-title { 
	margin: 0 0 2.4rem;
	font-weight: 700;
	color: var(--ged-color-gray7);
}
.srch-title + ol { 
	display: flex;
	flex-wrap: wrap;
}
.srch-favor .srch-title + ol { 
	gap: 1.6rem 2%;
}
.srch-title + ol>li { 
	display: flex;
	align-items: center;
	/* margin-right: 24px;
	line-height: 2;  */
}
.srch-favor .srch-title + ol>li { 
	flex: 0 0 32%;
}
.srch-latest .srch-title + ol { 
	line-height: 1.8; 
}
.srch-latest .srch-title + ol>li { 
	margin: 0 3.2rem 0 0;
}
.srch-latest .srch-title + ol>li::before { 
	content: "\ed05";
	display: inline-block;
	clear: both;
	margin: 0 0.4rem 0 0;
	font-family: remixicon;
	font-size: 1.12em;
	font-weight: 300;
	color: var(--ged-color-gray2);
}
.srch-latest .srch-title + ol>li a { 
	display: block;
	line-height: 1;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

/* search best lecture */
.srch-card { 
	display: flex;
	align-items: center;
	width: 100%; height: auto;
	min-width: 28rem;
	background: var(--ged-color-white);
	/* border: 0.1rem solid var(--ged-color-gray2); */
	box-shadow: 0 0.4rem 0.8rem rgb(0 0 0/12%);
	transition: .3s ease-in-out;
}
.srch-card .srch-card-thumb { 
	flex: 0 0 10rem;
	width: 10rem; height: inherit;
	background: var(--ged-color-gray0);
	overflow: hidden;
}
.srch-card .srch-card-thumb a { 
	display: block;
	padding-top: calc(200/300*100%);
	width: 100%; height: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.srch-card .srch-card-dept { 
	flex: 1 0 calc(100% - 10rem);
	padding: 0 0 0 1.6rem;
	width: calc(100% - 10rem);
}
.srch-card .srch-card-title { 
	line-height: 1;
}
.srch-card .srch-card-title a { 
	display: block;
	width: 90%;
	font-size: 1.6rem;
	font-weight: 500;
	color: var(--ged-color-gray7);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden; 
}
.srch-card .srch-card-title p {
	display: block;
	margin: 0.6rem 0 0;
	font-size: 1.2rem;
	font-weight: 400;
	color: var(--ged-color-gray4);
}

/* search rank */
.badge { 
	position: relative; top: -2px;
	font-size: 90%; 
	font-weight: 500;
}
.badge::before { 
	display: inline-flex;
	align-items: center;
	clear: both;
	position: relative; top: 3px;
	margin: 0 0 0 8px;
	font-family: remixicon;
	font-weight: 300;
}
.srch-rank-up { 
	color: var(--ged-color-blue4); 
}
.srch-rank-up::before {
	content: "\ea77";
}
.srch-rank-down { 
	color: var(--ged-color-pink); 
}
.srch-rank-down::before {
	content: "\ea4d";
}

/* search autocomplete*/
.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
.ui-front {
	z-index: 101;
}
.ui-autocomplete {
	position: absolute;
	top: 0;
	left: 0;
	cursor: default;
}
.ui-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: block;
	outline: 0;
}
.ui-menu .ui-menu {
	position: absolute;
}
.ui-menu .ui-menu-item {
	margin: 0;
	cursor: pointer;
	/* support: IE10, see #8844 */
	list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-item-wrapper {
	position: relative;
	padding: 3px 1em 3px .4em;
}
.ui-menu .ui-menu-divider {
	margin: 5px 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
	/* margin: -1px; */
	margin: 0;
}
.ui-menu-icons {
	position: relative;
}
.ui-menu-icons .ui-menu-item-wrapper {
	padding-left: 2em;
}

/* left-aligned */
.ui-menu .ui-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	left: .2em;
	margin: auto 0;
}
.ui-menu .ui-menu-icon {
	left: auto;
	right: 0;
}
.ui-widget {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget .ui-widget {
	font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
	font-family: Arial,Helvetica,sans-serif;
	font-size: 1em;
}
.ui-widget.ui-widget-content {
	border: 1px solid #c5c5c5;
}
.ui-widget-content {
	border: 1px solid #ddd;
	background: #fff;
	color: var(--ged-color-gray7);
}
.ui-widget-content a {
	color: var(--ged-color-gray7);
}
.ui-state-default,
.ui-widget-content .ui-state-default {
	border: 1px solid #c5c5c5;
	background: #f6f6f6;
	font-weight: normal;
	color: #454545;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
.ui-button {
	color: #454545;
	text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus {
	border: 1px solid #cccccc;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
	color: #2b2b2b;
	text-decoration: none;
}
.ui-visual-focus {
	box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}
.ui-state-active,
.ui-widget-content .ui-state-active {
	border: 1px solid #003eff;
	background: #007fff;
	font-weight: normal;
	color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
	border: #003eff;
	background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
	color: #ffffff;
	text-decoration: none;
}
.ui-widget.ui-widget-content { 
	border: 0; 
}
.ui-autocomplete {
	left: 50% !important;
	width: 45.5% !important; height: auto;
	max-height: 36rem;
	line-height: 6rem;
	font-family: inherit;
	font-size: 1.6rem;
	overflow-x: hidden;
	overflow-y: auto;
	transform: translateX(-50%);
}
.ui-menu .ui-menu-item-wrapper { 
	padding: 0 2rem; 
}
.ui-menu-item div.ui-state-hover,
.ui-menu-item div.ui-state-active {
	color: inherit;
	background-color: #f5f6f7;
	background-image: none;
	border: none;
	border-radius: 0;
	text-decoration: none;
}

/* unb */
.unb { 
	grid-area: unb; 
	font-size: 0;
	text-align: right;
}
.unb>a { 
	margin: 0 0 0 1.6rem;
	font-size: 1.5rem;
	font-weight: 500; 
	color: var(--ged-color-gray7);
}
.unb>a:first-child { 
	margin-left: 0; 
}
.unb>a i { 
	margin: 0 0.4rem 0 0; 
	color: var(--ged-color-blue4);
}
.btn-myroom { 
	display: inline-flex;
	align-items: center;
	margin: 0 0 0 2rem !important;
	padding: 0 1.6rem; 
	height: 3.6rem !important;
	line-height: 0;
	color: var(--ged-color-white) !important;
	background: var(--ged-color-blue4);
	border-radius: 0.4rem;
}

/* unb-mobile */
.btn-unb { 
	display: none; 
}
.unb-m { 
	display: none;
}


/* -------- popup -------- */
.popup { 
	position: fixed; left: 50%; bottom: calc(-50% * 2);
	padding: 6rem 0 4.8rem;
	width: 48rem; height: auto;
	min-width: calc(36rem * 0.8);
	min-width: 32rem;
	max-width: 92%; max-height: 84vh;
	background: var(--ged-color-white);
	border-radius: 0.8rem;
	transform: translate(-50%, 50%);
	transition: all .4s ease-in-out;
	box-shadow: 0 4rem 100rem rgb(0 0 0 / 30%);
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 10000;
}
.popup.act { 
	bottom: 50%; 
}
.popup em { 
	font-weight: 700;
	color: var(--ged-color-pink);
}
.popup>div { 
	padding: 0 6rem; 
}
.pop-close { 
	position: absolute; top: 0; right: 0;
	cursor: pointer; 
}
.pop-close::before { 
	content: "\eb99";
	display: inline-flex;
	justify-content: center;
	align-items: center;
	clear: both;
	width: 6rem; height: 6rem;
	font-family: remixicon;
	font-size: 2.2rem; 
	font-weight: 300;
	color: var(--ged-color-gray4);
}
.pop-title { 
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--ged-color-gray9);
	text-align: center; 
	transition: .4s;
}
.pop-msg { 
	margin: 3.2rem 0 2.4rem; 
	line-height: 1.5;
	font-size: 1em;
	color: var(--ged-color-gray5);
	-ms-word-break: keep-all;
	word-break: keep-all;
}
.pop-msg ~ .pop-msg:not(.pop-msg-inner) { 
	margin-bottom: 0; 
}
.pop-msg > p { 
	margin: 0.8rem 0 0;
	font-size: 1.3rem;
	color: var(--ged-color-gray4); 
}
.pop-msg-inner { 
	padding: 3.2rem 6rem 2.4rem !important; 
	line-height: 2;
	font-size: 1.5rem;
	font-weight: 300;
	background: var(--ged-color-gray0);
}
.popup li { 
	display: flex; 
	color: var(--ged-color-gray5);
}
.popup li span { 
	margin: 0 1.2rem 0 0; 
	font-weight: 500;
	color: var(--ged-color-gray7);
	white-space: nowrap;
}
.popup li strong { 
	font-weight: 600;
	color: var(--ged-color-gray9);
}
.popup dl { 
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 1.2rem 0;
	line-height: 2;
	font-size: 0.9em;
	border: double;
	border-width: 0.3rem 0;
}
.popup dd { 
	text-align: right; 
}
.popup .btn-wrap { 
	flex-wrap: wrap;
}
.popup .btn-wrap p { 
	margin: 1.2rem 0 0;
	width: 100%;
	font-size: 1.4rem;
	color: var(--ged-color-gray4);
	text-align: center; 
}
.popup[data-number="4"] { 
	padding-bottom: 2.4rem;
	width: 64rem; 
}
.pop-iframe { 
	margin: 1.6rem auto 0;
	position: relative;
	padding: 0 0 56.25% !important;
	height: 0;
	text-align: left;
}
.pop-iframe>iframe {
	position: absolute;
	width: 100%; height: 100%; 
}
.pop-iframe>iframe * { 
	max-width: 100%; 
}

/* 2023-07-20 ½ÃÇèÇÕ°Ý ½Ã ³ª¿À´Â ÀÌ¹ÌÁö */
.popup .pop-msg.pop-test-pass { 
	padding-top: 59%;
	padding-bottom: 1.6rem;
	background: url('/images/comm/bg_test_pass_pop.png') no-repeat center -3.2rem;
	background-size: contain;
	text-align: center;
}

/* login */
#popLogin { 
	position: fixed; left: 50%; bottom: calc(-50% * 2);
	padding: 4.8rem;
	width: 32rem; height: auto;
	color: var(--ged-color-gray5);
	background: var(--ged-color-white);
	border-radius: 0.8rem;
	transform: translate(-50%, 50%);
	transition: all .4s ease-in-out;
	box-shadow: 0 4rem 100rem rgb(0 0 0 / 40%);
	overflow: hidden;
	z-index: 10000;
}
#popLogin.act { 
	bottom: 50%; 
}
#popLogin .pop-close::before { 
	width: 4.8rem; height: 4.8rem;
}
#popLogin h3 { 
	margin: 0 0 0.8rem; 
	font-weight: 700;
	color: var(--ged-color-gray9);
}
#popLogin form li { 
	font-size: 1.4rem; 
}
#popLogin form li:not(:first-child) { 
	margin: 0.8rem 0 0; 
}
#popLogin form li:last-child { 
	margin-top: 1.2rem; 
}
#popLogin form li:last-child i { 
	color: var(--ged-color-blue1);
}
#popLogin form li input[type="checkbox"],
#popLogin form li i { 
	margin: 0 0.4rem 0 0; 
}
#popLogin form li label::before { 
	color: var(--ged-color-gray7);
}
#popLogin form li label ~ label { 
	margin-left: 1.6rem; 
}

/* page-login */
#pageLogin { 
	margin: 4.8rem auto 0;
	/* background: url('/images/comm/bg_page_login.png') no-repeat center center; */
}
#pageLogin i { 
	margin: 0 0.4rem;
	font-weight: 500;
	color: var(--ged-color-gray7);
}
#pageLogin form { 
	margin: 0 auto;
	padding: 4.8rem 6rem;
	width: 44rem;
	padding: 4.8rem 6rem 4.8rem 56rem;
	width: 90rem;
	max-width: 100%;
	background: #fff url('/images/comm/bg_page_login_img.png') no-repeat left center;
	/* border: 0.1rem solid var(--ged-color-gray6); */
	border-radius: 1.6rem;
	box-shadow: 0 4rem 20rem rgb(0 0 0 / 20%);
	overflow: hidden;
}
#pageLogin form li:not(:first-child) { 
	margin: 2.4rem 0 0; 
}
#pageLogin form li label { 
	display: flex;
	align-items: center;
	margin: 0 0 0.8rem;
	font-size: 0.94em;
}
#pageLogin form li label::before { 
	top: 0;
	color: var(--ged-color-gray7); 
}
#pageLogin form li input[type=checkbox] ~ label { 
	display: inline-flex; 
	margin: 0;
}
#pageLogin form li label ~ label { 
	margin: 0 0 0 2.4rem !important; 
}
#pageLogin form > p { 
	margin: 1.6rem 0 0; 
	font-size: 0.94em;
	color: var(--ged-color-gray5);
}
#pageLogin form > p a:last-child { 
	font-weight: 600;
	color: var(--ged-color-gray7);
	text-decoration: underline;
}


/* -------- sub-top -------- */
.sub-top { 
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background: url('/images/comm/bg_sub_10.jpg') no-repeat center 35%;
	background-size: cover;
	transition: height .4s ease-out
}
._no_scroll .sub-top { 
	z-index: -1; 
}
.sub-top>div::before { 
	content: "";
	display: block;
	clear: both;
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%;
	background-color: rgb(0 0 0/40%);
	background-color: rgb(20 20 30/40%);
	backdrop-filter: blur(0.5rem);
}

/* sub-top-img */
.blog .sub-top { background-image: url('/images/comm/bg_sub_08.jpg'); }
.notice .sub-top { background-image: url('/images/comm/bg_sub_07.jpg'); }
.review .sub-top { background-image: url('/images/comm/bg_sub_01.jpg'); }
.mypage .sub-top { background-image: url('/images/comm/bg_sub_03.jpg'); }
.study .sub-top { background-image: url('/images/comm/bg_sub_09.jpg'); }
.cart .sub-top { background-image: url('/images/comm/bg_sub_04.jpg'); }

/* page-title */
.sub-top h2,
.page-title { 
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: 0;
	padding: 2% 0 0;
	line-height: 1;
	height: 18rem;
	/* height: 36rem; */
	font-weight: 600 !important;
	color: var(--ged-color-white);
	letter-spacing: -0.04em;
	text-align: center;
	transition: .2s ease-in-out;
	user-select: none; 
}

/* page-title + tag */
.sub-top h2 ~ .tag,
.page-title ~ .tag { 
	position: absolute; left: 50%; bottom: 0;
	/* position: absolute; left: 50%; top: 64%; */
	margin: 0;
	padding: 0 0 3.2rem;
	width: 120rem;
	max-width: 90%;
	font-size: 0;
	text-align: center;
	white-space: normal;
	transform: translateX(-50%);
	transition: .4s;
}
.sub-top h2 ~ .tag .label-tag,
.page-title ~ .tag .label-tag { 
	font-weight: 300;
	color: var(--ged-color-white); 
}
.page-title ~ .tag { 
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.6rem 0.4rem;
}
.sub-top .tag .label ~ .label { 
	margin: 0; 
}
.sub-top .tag span { 
	vertical-align: middle;
	cursor: pointer; 
}
.sub-top .tag span:first-child::before { 
	display: none; 
}
.sub-top .tag span.on { 
	font-weight: 500;
	color: var(--ged-color-gray7);
	background: var(--ged-color-white);
	/* border-color: var(--ged-color-white); */
	border-color: transparent;
}


/* -------- dep2-sub -------- */
.dep2-menu { 
	display: flex;
	position: relative; bottom: 0;
	max-width: 100%;
	background: rgb(0 0 0/40%);
	background: rgb(12 12 15/40%);
}
.dep2-menu>li { 
	flex: 1 0 20%;
}
.dep2-menu>li>a { 
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 6rem;
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--ged-color-gray4);
	background-color: transparent;
	transition: all .4s ease-out;
}
.dep2-menu>li>a:hover { 
	color: var(--ged-color-white);
	background: rgb(0 0 0/70%);
}
.dep2-menu>li.active>a { 
	font-weight: 700;
	color: var(--ged-color-white);
	background: var(--ged-color-blue4);
	color: var(--ged-color-gray7);
	background: var(--ged-color-white);
}


/* -------- dep3-sub -------- */
.dep3-sub { 
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 3.2rem;
	height: 8rem;
	border-bottom: 0.1rem solid var(--ged-color-gray1);
}
._no_scroll .dep3-sub { 
	position: relative;
	z-index: -1;
}
.dep3-menu { 
	display: flex;
	justify-content: center;
}
.dep3-menu a { 
	font-size: 1.7rem;
	font-weight: 400;
	color: var(--ged-color-gray4);
	white-space: nowrap;
	transition: .4s; 
}
.dep3-menu a:not(:first-child) { 
	margin: 0 0 0 4.8rem; 
}
.dep3-menu a i { 
	margin: 0 1.2rem 0 0;
	font-size: 1.16em;
	color: var(--ged-color-blue1);
	transition: .4s; 
}
.dep3-menu a span { 
	position: relative;
}
.dep3-menu a span::after { 
	content: "";
	display: block;
	clear: both;
	position: absolute; left: 50%; bottom: -0.16rem;
	width: 0; height: 0.8rem;
	background: var(--ged-color-blue0);
	z-index: -1;
	transform: translateX(-50%);
	transition: width .3s; 
}
.dep3-menu a.active i,
.dep3-menu a:hover i { 
	color: var(--ged-color-blue4);
}
.dep3-menu a.active span,
.dep3-menu a:hover span { 
	font-weight: 700;
	color: var(--ged-color-gray7);
}
.dep3-menu a.active span::after,
.dep3-menu a:hover span::after { 
	width: calc(100% + 0.8rem); 
}

/* 2023-07-17 °úÁ¤Ä«¿îÆ® Ãß°¡ */
.dep3-menu a i { 
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative; top: -0.1rem;
	margin: 0 0 0 0.8rem;
	width: 2.2rem; height: 2.2rem;
	line-height: 1;
	font-size: 0.84em;
	font-weight: 700;
	font-style: normal;
	color: var(--ged-color-white) !important;
	background: var(--ged-color-gray2);
	border-radius: 2rem; 
}
.dep3-menu a.active i { 
	background: var(--ged-color-blue4);
}
.dep3-menu a.ico-imp,
.dep3-menu a.ico-imp::before { 
	color: var(--ged-color-pink) !important;
}
.dep3-menu a.ico-imp span::after { 
	background: var(--ged-color-whitepink) !important; 
}
.dep3-menu a.ico-imp i { 
	content: "";
	background: var(--ged-color-pink) !important;
}




/* main
------------------------------------------------------ */
main { 
	padding: 6rem 0 10rem; 
	min-height: 60rem;
}
._no_scroll main { 
	position: relative;
	z-index: -1; 
}

/* landing page */
.landing main { 
	padding: 0; 
}


/* -------- event -------- */
.event { 
	height: 12rem;
	background: #f9e000 url('/images/comm/bn_qrcode.png') no-repeat center center; /* ffe500 */
	background-size: contain;
	transition: height .3s;
}




/* footer
------------------------------------------------------ */
footer { 
	padding: 4rem 0 6rem;
	line-height: 1.6;
	color: var(--ged-color-gray4); 
}
._no_scroll footer { 
	position: relative;
	z-index: -1; 
}
footer hr { 
	margin: 4.8rem 0; 
}

/* f_menu */
.f_menu { 
	display: grid;
	grid-template-columns: 2fr 8fr;
	grid-template-areas: "f_logo fnb";
	align-items: center;
}

/* f_logo */
.f_logo { 
	grid-area: f_logo;
	align-self: flex-start;
}

/* fnb */
.fnb { 
	grid-area: fnb; 
	display: flex;
	width: 100%;
}
.fnb>li { 
	margin: 0 0 0 10%;
	transition: .3s;
}
.fnb>li:first-child { 
	margin: 0;
}
.fnb h5 { 
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--ged-color-gray6); 
}
.fnb ol { 
	margin: 1.2rem 0 0; 
}
.fnb ol li { 
	line-height: 1.6; 
}
.fnb ol li a { 
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--ged-color-gray4);
}

/* iconmenu */
.fnb .inb { 
	margin: 0 0 0 0.8rem;
}
.fnb .inb::before { 
	content: "\f0f5";
	display: inline-block;
	clear: both;
	position: relative; top: 0.6rem;
	font-family: remixicon;
	font-size: 0.84em;
	font-style: normal;
}

/* site_info */
.site_info { 
	font-size: 1.4rem;
	word-break: keep-all;
}
.site_info span ~ span:not(:first-child)::before { 
	content: "|";
	display: inline-block;
	clear: both;
	margin: 0 0.8rem;
	font-weight: 300;
	color: var(--ged-color-gray4);
}
.site_info .bin::before { 
	display: none !important;
}
.copyright { 
	margin: 1.6rem 0 0;
	text-transform: uppercase;
}


/* ÆË¾÷¾È³»
------------------------------------------------------ */
.popup-frame { 
	position: absolute;
	max-width: 36rem;
	box-shadow: 2px 3px 6px rgba(0,0,0,0.3);
	overflow: hidden; 
}
.popup-layer { 
	padding: 0;
	background: transparent;
}
.popup-layer .pop_form {
	font-size: 0.93em;
	font-weight: 300;
	color: var(--ged-color-white);
	background: var(--ged-color-gray7);
}
.popup-layer .pop_form p {
	padding-left: 12px;
	line-height: 40px;
	background: #222;
	background: linear-gradient(45deg, transparent, #222);
}
.popup-layer .pop_form p::after { 
	content: "";
	display: block;
	clear: both;
}
.popup-layer .pop_form label {
	float: left;
	width: 85%;
}
.popup-layer .pop_form label input {
	position: absolute; left: 0; top: 50%;
	transform: translateY(-50%);
}
.popup-layer .pop_form p a {
	float: right;
	width: 15%;
	text-align: center;
}




/* ------------------------------------------------------

	@tbm tablet + mobile (max-width:1023px)

------------------------------------------------------ */
@media all and (max-width:1023px) {

	body { 
		padding-top: 7rem; 
	}



	/* component ui
	------------------------------------------------------ */
	
	/* title */
	.title-lg { 
		font-size: 3.2rem; 
	}
	.title-md { 
		font-size: 2.6rem;
	}
	.title-sm { 
		font-size: 2.2rem;
	}

	/* text */
	.text-lg { 
		font-size: 1.7rem;
	}
	.text-md { 
		font-size: 1.5rem;
	}
	.text-sm { 
		font-size: 1.4rem; 
	}

	/* caption */
	.caption { 
		font-size: 1.2rem !important;
	}

	/* button */
	.btn { 
		font-size: 1.5rem; 
	}
	.btn-help { 
		padding: 0.4rem 0.8rem;
		height: 3rem;
		font-size: 1.2rem; 
	}

	/* bullet */
	.bullet::before { 
		height: 1.16em; 
	}
	.bullet-dash { 
		margin-right: 1.2rem;
	}

	._comment { 
		margin: 0 0 2.4rem;
		padding: 1.2rem 1.6rem;
		font-size: 1.4rem; 
	}
	._comment p { 
		margin: 0 !important;
		align-self: flex-start !important;
	}
	._comment br { 
		display: none; 
	}
	
	._border._list,
	._box._list { 
		padding: 1rem 2rem 0.8rem; 
	}

	/* text-box */
	.txt-box { 
		font-size: 1.4rem; 
	}
	.txt-box br { 
		display: none; 
	}


	/* -------- table -------- */
	.tb th { 
		padding: 1.2rem 0; 
	}

	/* panel */
	.tb-panel td { 
		padding: 1.6rem 0.8rem;
	}

	/* bbs */
	.tb-bbs .tb-title a>span::after { 
		margin: 0 0.8rem; 
	}

	/* reminder */
	.reminder { 
		font-size: 1.3rem; 
	}
	.reminder::before { 
		flex-basis: 3.2rem;
		width: 3.2rem; height: 3.2rem; 
	}

	/* -------- category -------- */
	.category { 
		margin: 0 0 2.4rem; 
		padding: 0 0 1.6rem;
	}
	.category a { 
		margin: 0 1.2rem 0 0;
		height: 3.2rem;
		font-size: 1.5rem;
	}


	/* -------- card -------- */
	.card-prc-title { 
		margin: 0 1.2rem 0 0;
	}


	/* -------- tab -------- */

	/* tab-box */
	.tab-box .tab-link { 
		height: 5rem; 
	}

	/* tab-line */
	.tab-line { 
		top: 7rem; 
	}
	.tab-line .tab-link { 
		height: 6rem;
	}

	/* tab-content */
	.tab-content { 
		padding: 16rem 0 0; 
	}
	.tab-content:first-of-type { 
		margin: 0 0 -12rem; 
	}


	/* -------- faq -------- */
	.faq-list h4 + div { 
		padding: 1.6rem 2.4rem; 
	}



	/* layout
	------------------------------------------------------ */

	/* -------- common -------- */

	/* title */
	h3 { 
		margin: 4.8rem 0 1.6rem; 
	}

	/* -------- header -------- */
	header .container { 
		height: 7rem; 
		max-width: 95%;
	}

	/* logo */
	.logo { 
		margin: 0 2rem 0 0; 
	}
	.logo a { 
		width: 18rem;
		width: 13.5rem;
	}

	/* gnb-1depth */
	.gnb .dep1>li { 
		margin: 0 2rem 0 0; 
	}
	.gnb .dep1>li>a { 
		font-size: 1.8rem; 
	}

	/* gnb-2depth */
	.gnb .dep1>li>a.active ~ .dep2 { 
		left: -2.4rem; top: 5.2rem; 
	}
	.gnb .dep2>li>a { 
		padding: 0 2.4rem; 
	}
	.gnb .dep2>li>a span::after { 
		left: calc(100% - 3.6rem); 
	}

	/* gnb-3depth */
	.gnb .dep3 { 
		padding: 0 3.2rem; 
	}
	.gnb .dep3>li:last-child { 
		margin-bottom: 1.6rem; 
	}

	/* search */
	.srch { 
		width: 4rem; 
	}
	#srch-help { 
		display: none; 
	}
	.srch-favor .srch-title + ol { 
		gap: 1.6rem 3%;
	}
	.srch-favor .srch-title + ol>li { 
		flex: 0 0 48.5%;
		width: 48.5%;
	}

	/* search best lecture */
	.srch-card { 
		min-width: 33rem; 
	}

	/* search autocomplete */
	.ui-autocomplete { 
		width: 69.5% !important; 
	}

	/* unb */
	.unb>a { 
		font-size: 1.45rem; 
	}


	/* -------- popup -------- */

	/* page-login */
	#pageLogin { 
		margin-top: 3.2rem; 
	}
	#pageLogin form { 
		/* padding: 48rem 3.2rem 2.4rem;
		padding: 12% 3.2rem 2.4rem; */
		padding-left: 60%;
		background-position: calc(70% - 27rem) center;
	}


	/* -------- sub-top -------- */
	.sub-top .container { 
		max-width: 100%; 
	}

	/* page-title */
	.sub-top h2,
	.page-title { 
		height: 14rem;
		/* height: 24rem; */
	}

	/* page-title + tag */
	.sub-top h2 ~ .tag,
	.page-title ~ .tag { 
		padding-bottom: 2.4rem;
		overflow-x: auto;
	}


	/* -------- dep2-sub -------- */
	.dep2-menu>li>a { 
		height: 4.8rem;
		font-size: 1.6rem;
		letter-spacing: -0.08em;
	}


	/* -------- dep3-sub -------- */
	.dep3-menu a { 
		font-size: 1.5rem; 
	}
	.dep3-menu a:not(:first-child) { 
		margin-left: 3.2rem; 
	}
	.dep3-menu a i { 
		margin: 0 0 0 0.4rem;
		font-size: 1.2em;
		transform: scale(0.8);
	}



	/* main
	------------------------------------------------------ */
	main { 
		padding: 4.8rem 0 6rem; 
	}

	/* -------- event -------- */
	.event { 
		height: 10rem; 
	}



	/* footer
	------------------------------------------------------ */

	/* fnb */
	.fnb>li { 
		margin: 0 0 0 6%;
	}

}




/* ------------------------------------------------------

	@m mobile (max-width:767px)

------------------------------------------------------ */
@media all and (max-width:767px) { 

	body { 
		padding-top: 6rem; 
	}



	/* component ui
	------------------------------------------------------ */

	/* title */
	.title-lg { 
		font-size: 2.8rem; 
	}
	.title-md { 
		font-size: 2.4rem; 
	}
	.title-sm { 
		font-size: 2rem; 
	}

	/* text */
	.text-lg { 
		font-size: 1.6rem; 
	}
	.text-md { 
		font-size: 1.5rem; 
	}
	.text-sm { 
		font-size: 1.4rem; 
	}

	/* button */
	.btn { 
		/* font-size: 1.4rem; */
		font-weight: 600;
	}
	.btn-big { 
		height: 5.4rem !important; 
		font-size: 1.5rem !important;
	}
	.btn-medium { 
		height: 4.5rem !important; 
	}

	/* label */
	.label-sort { 
		padding: 0 0.6rem;
		height: 2.1rem;
		font-size: 1.1rem;
	}


	/* -------- tag -------- */
	.tag { 
		/* margin: 0.8rem 0 0; */
	}

	._comment { 
		flex-direction: column;
		align-items: flex-start;
		padding: 1.2rem 1.6rem;
	}
	._comment p { 
		flex: 1 0 100%;
		width: 100%;
	}
	._comment a,
	._comment input+label { 
		align-self: flex-end;
		flex: 0 0 auto;
		margin: 0.8rem 0 0;
	}

	/* text-box */
	.txt-box { 
		flex-direction: column;
		padding: 1.2rem 1.6rem;
	}
	.txt-box *:last-child { 
		align-self: flex-end;
		margin: 0.8rem 0 0;
	}

	/* -------- no-item -------- */
	.no-item { 
		padding: 4.8rem 0 4rem; 
	}


	/* -------- table -------- */

	/* panel */
	.tb-panel { 
		border: 0; 
	}
	.tb-panel .tbc { 
		width: 100% !important; 
	}
	.tb-panel thead { 
		display: none; 
	}
	.tb-panel td { 
		display: block;
		padding: 0 0.4rem;
		font-size: 0.9em;
		border-bottom: 0;
	}
	.tb-panel td::before { 
		content: attr(data-th) "";
		display: flex;
		align-items: center;
		clear: both;
		margin: 2.4rem -0.4rem 1.2rem;
		padding: 0.8rem 1.6rem;
		line-height: inherit;
		font-weight: 500;
		color: var(--ged-color-gray7);
		background: var(--ged-color-gray0);
		border-left: 0.1rem solid var(--ged-color-gray7);
	}
	.tb-panel td:first-child::before { 
		margin-top: 0; 
	}

	/* bbs */
	.tb-bbs { 
		display: flex; 
		border-bottom: 0.1rem solid var(--ged-color-gray2);
	}
	.tb-bbs .tbc { 
		width: auto; 
	}
	.tb-bbs thead,
	.tb-bbs tbody { 
		flex: 1 0 100%; 
	}
	.tb-bbs thead { 
		display: none; 
	}
	.tb-bbs tr { 
		display: flex;
		flex-wrap: wrap;
	}
	.tb-bbs td { 
		display: inline-flex;
		align-items: center;
		padding: 0 1.2rem 1.2rem 0.4rem;
		border-bottom: 0;
	}
	.tb-bbs td:not(.tb-title) { 
		font-size: 1.3rem !important;
	}
	.tb-bbs td.tb-title { 
		/* display: block; */
		flex: 1 0 100%;
		width: 100%;
		padding: 0.4rem 0 0;
		border-top: 0.1rem solid var(--ged-color-gray2);
	}
	.tb-bbs td.tb-num { 
		display: none; 
	}
	.tb-bbs td::before { 
		display: inline-block;
		clear: both;
		margin: 0 0.4rem 0 0;
		font-family: remixicon;
		font-size: 1.16em;
		font-weight: 400;
		vertical-align: inherit;
	}
	.tb-bbs .tb-title a { 
		padding: 0.8rem 0;
		line-height: 1.4;
		font-size: 1.5rem;
		white-space: normal; 
	}

	.tb-foot { 
		flex-direction: column; 
	}

	/* tb-box */
	.tb-box th { 
		display: none; 
	}
	.tb-box td { 
		position: relative; 
	}
	.tb-box td::before { 
		content: attr(data-th) "";
		display: inline-block;
		clear: both;
		margin: 0 0 0.8rem;
		width: 100%;
		font-size: 0.9em;
		font-weight: 600;
		color: var(--ged-color-gray7);
	}
	.tb-box td._asterisk::before { 
		margin: 0 0 0.8rem 1.2rem; 
	}
	.tb-box td._asterisk::after { 
		content: "*";
		display: inline-block;
		clear: both;
		position: absolute; left: 1.2rem; top: 1rem;
		font-size: 1.4rem;
		font-weight: 600;
		color: var(--ged-color-pink);
	}

	/* paging */
	.tb-pager { 
		margin: 3.2rem auto 0;
	}

	/* table search */
	.tb-srch { 
		margin: 2.4rem 0 0; 
	}

	/* line-box */
	.line-box { 
		padding: 1.2rem 1.6rem; 
	}

	/* -------- category -------- */
	.category { 
		display: none; 
	}
	.category a { 
		margin: 0 1.2rem 0 0;
		height: 2.8rem;
	}


	/* -------- card -------- */

	/* thumbnail */
	.card-thum { 
		border-radius: 0.4rem; 
	}

	/* card title */
	.card-dept h4 { 
		margin: 1.2rem 0 0.4rem;
	}
	.card-dept .tag+h4 { 
		margin-top: 0.8rem; 
	}


	/* -------- tab -------- */

	/* tab-box */
	.tab-box .tab-link { 
		height: 4.5rem; 
	}

	/* tab-line */
	.tab-line {
		top: 6rem; 
	}
	.tab-line>li {
		margin-right: 1.2rem;
	}
	.tab-line .tab-link { 
		height: 4.8rem; 
	}

	/* tab-content */
	.tab-content { 
		padding: 13rem 0 0; 
	}
	.tab-content:first-of-type { 
		margin: 0 0 -10rem; 
	}


	/* -------- faq -------- */
	.faq-list h4 { 
		min-height: 4.8rem; 
	}
	.faq-list h4 + div { 
		padding: 1.6rem 2rem; 
	}



	/* layout
	------------------------------------------------------ */
	.container { 
		/* max-width: 92%; */
	}

	/* -------- common -------- */
	._no_scroll { 
		width: 100%;
	}

	/* popup */
	.arrPopup { 
		position: fixed; left: 50% !important; /* top: calc(50% + 12rem) !important; */ top: 50% !important;
		/* width: 94% !important; */
		min-width: 30rem !important;
		box-shadow: none;
		transform: translate(-50%, -50%) scale(0.7) !important;
	}
	.arrPopup > iframe { 
		position: absolute; left: 50%; top: 50%; 
		min-width: 30rem;
		transform: translate(-50%, -50%); 
		filter: Alpha(Opacity=35);
	}

	/* title */
	h2 { 
		margin-bottom: 1.6rem;
	}
	h3 { 
		margin-top: 3.2rem;
	}
	h3 small { 
		margin: 0 0 0 1.6rem; 
	}

	/* iconmenu */
	.inb { 
		margin: 0; 
	}


	/* -------- header -------- */
	header .overlay { 
		display: block; 
	}
	header .container { 
		grid-template-columns: minmax(auto, 5rem) minmax(2.4rem, auto) minmax(auto, 4rem) minmax(auto, 6rem);
		grid-template-areas: "gnb logo srch unb";
		padding-right: 0.8rem;
		height: 6rem;
		min-width: 100%;
	}
	header .btn-mobile { 
		font-weight: 600;
	}

	/* logo */
	.logo { 
		margin: 0;
	}
	.logo a { 
		/* width: 12rem; */
	}

	/* gnb */
	.btn-gnb { 
		grid-area: gnb;
		display: block;
		text-align: center;
	}
	.gnb { 
		position: fixed; left: -30rem; top: 0;
		width: 30rem; height: 100vh;
		background: var(--ged-color-white);
		overflow-x: hidden;
		transition: left .3s;
		z-index: 100;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.gnb::-webkit-scrollbar { 
		display: none;
	}
	.gnb.open { 
		left: 0; 
	}

	/* gnb-top */
	.beginning { 
		display: block;
		padding: 3.2rem;
		line-height: 1.4;
		font-size: 1.6rem;
		color: var(--ged-color-gray5);
		background: var(--ged-color-gray1);
	}
	.beginning p ~ p { 
		margin: 1.6rem 0 0;
		line-height: 1;
	}

	/* gnb-1depth */
	.gnb .dep1 {
		position: relative; 
	}
	.gnb .dep1>li { 
		flex-basis: 50%;
		position: static;
		width: 50%;
		margin: 0;
		background: var(--ged-color-gray1);
	}
	.gnb .dep1>li>a { 
		justify-content: center;
		font-weight: 500;
		color: var(--ged-color-gray4);
	}
	.gnb .dep1>li>a.active { 
		font-weight: 700;
		color: var(--ged-color-gray7);
		background: var(--ged-color-white);
	}
	.gnb [name=spec-blog] { 
		display: none !important; 
	}
	.gnb [name=spec-blog-m] { 
		display: flex !important; 
	}

	/* gnb 2depth */
	.gnb .dep2 { 
		left: -30rem;
		width: 30rem;
		border: 0;
		opacity: 1;
		visibility: visible;
		transition: none;
	}
	.gnb .dep1>li.specBlog .dep2 { 
		display: block; 
	}
	.gnb .dep1>li>a.active ~ .dep2 {
		left: 0; top: 6rem;
		width: 30rem;
		transition: none;
	}

	/* search */
	.srch { 
		margin: auto;
	}
	.btn-srch { 
		justify-content: center;
		height: 4rem;
		font-weight: 500;
		color: var(--ged-color-gray7);
		text-align: center; 
	}
	.btn-srch .inb { 
		display: none; 
	}
	.btn-srch span { 
		display: inline-flex; 
	}
	.srch-form { 
		top: -100%;
		height: 100vh;
		background-color: transparent;
		overflow-y: auto;
	}
	.srch-form .container { 
		padding: 6rem 8%;
		width: 100vw;
		max-width: 100%;
		min-width: 100%;
	}
	.srch-form.open .srch-close { 
		position: fixed; 
	}
	.srch-close::before { 
		width: 5rem; height: 6rem;
		color: var(--ged-color-white); 
	}
	.srch-form form { 
		padding: 0;
		height: 6rem;
		border-width: 0 0 0.1rem;
		border-color: var(--ged-color-white); 
		border-radius: 0;
	}
	.srch-form input { 
		padding: 0 1.2rem;
		width: calc(100% - 6rem); height: 6rem;
		font-size: 1.6rem;
		color: var(--ged-color-white); 
		border-bottom: 0;
	}
	.srch-form button { 
		font-size: 1.8rem;
		color: var(--ged-color-white); 
	}
	.srch-form form + datalist { 
		position: static;
		padding: 1.6rem 0 0;
		max-height: fit-content;
		background: transparent;
		border-radius: 0;
		transform: none;
	}
	.srch-form form + datalist option { 
		padding: 0.5rem 0 0.8rem; 
		color: var(--ged-color-white);
	}
	.srch-form form + datalist option::before { 
		color: var(--ged-color-gray4);
	}
	.srch-form form + datalist option:hover { 
		color: unset;
		background: unset; 
	}
	.srch-keyword { 
		font-weight: 500;
		color: var(--ged-color-white); 
	}
	.srch-keyword>div ~ div { 
		margin: 6rem 0 0; 
	}
	.srch-keyword hr { 
		display: none;
	}
	.srch-title { 
		color: var(--ged-color-white); 
	}
	.srch-close::before,
	.srch-del::before { 
		color:var(--ged-color-white); 
	}
	.srch-latest .srch-title + ol>li { 
		margin: 0;
		width: 100%;
		overflow: hidden;
	}
	.srch-latest .srch-title + ol>li::before { 
		color: var(--ged-color-gray4); 
	}

	/* search best lecture */
	.srch-card { 
		flex-wrap: wrap;
		width: 100%; height: auto;
		min-width: 100%;
		box-shadow: none;
	}
	.srch-card .srch-card-thumb,
	.srch-card .srch-card-dept { 
		flex: 1 0 100%;
		width: 100%;
	}
	.srch-card .srch-card-dept { 
		padding: 1.2rem; 
	}
	.srch-card .srch-card-title a { 
		font-size: 1.5rem; 
	}
	.srch-card .srch-card-title p { 
		margin: 0.4rem 0 0;
		font-size: 1.1rem; 
	}

	/* search autocomplete */
	.ui-autocomplete { 
		width: 45.5% !important; 
	}

	/* unb */
	.unb { 
		margin: auto; 
	}

	/* unb-mobile */
	.unb>a { 
		margin: 0; 
	}
	.unb>a:not(.btn-unb) { 
		display: none; 
	}
	.btn-unb { 
		grid-area: unb;
		display: flex;
		font-weight: 500;
		color: var(--ged-color-gray7);
		text-align: center;
	}
	.unb-m { 
		position: fixed; top: 0; right: -30rem;
		display: block;
		width: 30rem; height: 100vh;
		background: var(--ged-color-white);
		overflow-x: hidden;
		overflow-y: auto;
		text-align: left;
		z-index: 100;
		transition-property: right;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.unb-m::-webkit-scrollbar { 
		display: none;
	}
	.unb-m.open { 
		right: 0; 
	}

	/* unb-m top */
	.unb-m p { 
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 0 3.2rem;
		height: 6rem;
	}
	.unb-m p span { 
		font-size: 1.6rem;
		font-weight: 500;
		color: var(--ged-color-gray4); 
	}
	.unb-m p span em { 
		font-weight: 700;
		color: var(--ged-color-gray7);
		text-decoration: underline;
	}
	.unb-m p .btn-myroom { 
		margin: 0 !important;
		padding: 0 1.2rem;
		height: 3rem;
		font-size: 0.875em;
	}

	/* unb-m favor */
	.unb-m .favor { 
		display: flex;
		flex-wrap: wrap;
		padding: 2.4rem;
		background: var(--ged-color-gray0); 
	}
	.unb-m .favor>a { 
		flex: 0 0 33.33333%;
		display: block;
		width: 33.33333%;
		font-size: 1.3rem;
		font-weight: 600;
		color: var(--ged-color-gray4);
		text-align: center;
	}
	.unb-m .favor>a:nth-child(n+4) { 
		margin-top: 2.4rem; 
	}
	.unb-m .favor .inb {
		top: 0;
		display: block;
		margin: 0 auto;
		width: 4.8rem; height: 3.2rem; 
	}
	.favor-study .inb { 
		background-image: url('/images/comm/i_favor_study.png'); 
	}
	.favor-cart .inb { 
		background-image: url('/images/comm/i_favor_cart.png'); 
	}
	.favor-logout .inb { 
		background-image: url('/images/comm/i_favor_logout.png'); 
	}

	/* unb-m 1depth */
	.unb-m .dep1>li { 
		border-top: 0.1rem solid var(--ged-color-gray2); 
	}
	.unb-m .favor + .dep1>li:first-child { 
		border-top: 0; 
	}
	.unb-m .dep1>li>a { 
		display: flex;
		align-items: center;
		position: relative;
		padding: 0 3.2rem;
		height: 6rem;
		font-size: 1.8rem;
		font-weight: 700;
		color: var(--ged-color-gray7);
	}
	.unb-m .dep1>li>a span::after { 
		content: "\ea4e";
		display: inline-block;
		clear: both;
		position: absolute; left: calc(100% - 3.6rem); top: 50%;
		line-height: 0;
		font-family: remixicon;
		font-size: 1.16em;
		font-weight: 300;
		color: var(--ged-color-gray4);
		transform: translateY(-50%) rotate(0deg); 
	}
	.unb-m .dep1>li>a.active span::after { 
		transform: rotate(-180deg); 
	}

	/* unb-m 2depth */
	/* .unb-m .dep1>li:not(:first-child) .dep2 { */ 
	.unb-m .dep1>li .dep2 { 
		display: none;
	}
	.unb-m .dep2 { 
		display: block;
		padding: 0 3.2rem;
		line-height: 2;
	}
	.unb-m .dep2>li:last-child { 
		margin-bottom: 2.4rem; 
	}
	.unb-m .dep2>li>a { 
		display: block;
		position: relative;
		font-size: 1.6rem;
		font-weight: 500;
		color: var(--ged-color-gray7);
		transition: .2s;
	}
	.unb-m .dep2>li>a.active { 
		color: var(--ged-color-gray3); 
	}
	/*
	.unb-m .dep2>li>a::after { 
		content: "\f18e";
		display: inline-block;
		clear: both;
		position: absolute; top: 50%; right: 0;
		line-height: 0;
		font-family: remixicon;
		font-size: 1.16em;
		font-size: 0.84em;
		font-weight: 300;
		color: transparent;
		transform: translateY(-50%); 
		animation: now-here-2 .4s ease-in-out infinite alternate;
	}
	.unb-m .dep2>li>a.active::after { 
		color: var(--ged-color-gray7);
	}
	@keyframes now-here-2 { 
		0% { 
			opacity: 0.4;
		}
		100% { 
			opacity: 1;
		}
	}
	*/

	/* unb-m 3depth */
	.unb-m .dep3 { 
		padding: 0.4rem 2.4rem 1.6rem; 
		line-height: 1.8;
	}
	.unb-m .dep2>li:last-child .dep3 { 
		padding-bottom: 0; 
	}
	.unb-m .dep3 a { 
		position: relative;
		font-size: 1.5rem;
		color: var(--ged-color-gray5);
	}
	.unb-m .dep3 a::before { 
		content: "";
		display: inline-block;
		clear: both;
		position: relative; left: -0.6rem; top: -0.4rem;
		width: 0.3rem; height: 0.3rem;
		background: var(--ged-color-gray2);
		border-radius: 50%;
	}
	.unb-m .dep3 a::after { 
		content: "";
		display: block;
		clear: both;
		position: absolute; left: 0.2rem; bottom: 0;
		width: 0; height: 0.1rem;
		background: var(--ged-color-gray7);
		transition: .4s; 
	}
	.unb-m .dep3 a.active { 
		font-weight: 500;
		color: var(--ged-color-gray7); 
	}
	.unb-m .dep3 a.active::after { 
		width: 100%; 
	}


	/* -------- popup -------- */
	.popup { 
		padding: 4rem 0 3.6rem; 
	}
	.popup>div { 
		padding: 0 3.2rem; 
	}
	.pop-title { 
		font-size: 2.4rem; 
	}
	.pop-msg { 
		margin: 2.4rem 0 1.6rem; 
	}
	.pop-msg-inner { 
		padding: 2.4rem 3.2rem 2rem !important; 
		font-size: 1.4rem;
		font-weight: 400;
	}
	.popup li span { 
		margin: 0 0.8rem 0 0; 
	}

	/* login */
	#popLogin { 
		padding: 3.2rem 4rem;
		width: 100%;
		max-width: 100%; min-height: 30vh;
		border-radius: 0;
		transform: translate(-50%, 0);
	}
	#popLogin.act { 
		bottom: 0; 
	}

	#popLogin h3 { 
		margin: 0 0 0.8rem; 
		font-weight: 700;
	}
	#popLogin form li:not(:first-child) { 
		margin: 0.8rem 0 0; 
	}
	#popLogin form li:last-child { 
		margin-top: 1.2rem; 
	}
	#popLogin form li:last-child i { 
		color: var(--ged-color-blue1);
	}
	#popLogin form li input[type="checkbox"],
	#popLogin form li i { 
		margin: 0 0.4rem 0 0; 
	}

	/* page-login */
	#pageLogin { 
		margin-top: 1.6rem; 
	}
	#pageLogin form { 
		padding: 86% 3.2rem 2.4rem;
		background-position: center top;
		background-size: contain;
	}


	/* -------- sub-top -------- */

	/* page-title */
	.sub-top h2,
	.page-title { 
		height: 10rem;
		/* height: 18rem; */
	}

	/* page-title + tag */
	.sub-top h2 ~ .tag,
	.page-title ~ .tag { 
		padding-bottom: 2rem;
		white-space: nowrap;
	}
	.page-title ~ .tag {
		justify-content: flex-start;
		flex-wrap: nowrap; 
	}
	.sub-top h2 ~ .tag .label-tag,
	.page-title ~ .tag .label-tag {
		height: 1.8rem;
		font-size: 1.1rem; 
	}


	/* -------- dep2-sub -------- */
	.dep2-menu>li>a { 
		height: 4.4rem;
		font-size: 1.5rem;
	}
	
	
	/* -------- dep3-sub -------- */
	.dep3-sub { 
		justify-content: flex-start;
		padding: 0 1.6rem;
		height: 6rem;
		overflow: auto;
		white-space: nowrap;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.dep3-sub::-webkit-scrollbar { 
		display: none;
	}
	.dep3-menu a { 
		margin: 0 2rem 0 0 !important;
		font-size: 1.48rem;
	}
	.dep3-menu a:last-child { 
		margin-right: 0 !important; 
	}



	/* main
	------------------------------------------------------ */
	main { 
		padding: 2.4rem 0 4.8rem; 
		min-height: 48rem;
	}

	/* -------- event -------- */
	.event { 
		/* height: 8rem; */
	}
	.event-mobile { 
		height: 20rem;
		background-image: url('/images/comm/bn_qrcode_m.png'); 
	}



	/* footer
	------------------------------------------------------ */
	footer { 
		padding: 2.4rem 0 4rem; 
	}
	footer hr { 
		margin: 3.2rem 0; 
	}

	/* f_menu */
	.f_menu { 
		display: flex;
		flex-flow: column wrap;
	}

	/* f_logo */
	.f_logo { 
		width: 100%;
	}
	.f_logo img { 
		width: 10rem; height: auto; 
	}

	/* fnb */
	.fnb { 
		flex-direction: column;
		flex-wrap: wrap; 
		margin: 2.4rem 0 0;
	}
	.fnb>li { 
		width: 100%;
	}
	.fnb>li:nth-child(n+1) { 
		margin: 1.6rem 0 0; 
	}
	.fnb>li:first-child { 
		margin-top: 0;
	}
	.fnb h5 { 
		font-size: 1.5rem;
	}
	.fnb ol { 
		display: flex;
		margin: 0;
	}
	.fnb ol li:not(:first-child) { 
		margin-left: 1.6rem;
	}
	.fnb ol li a { 
		font-size: 1.4rem;
	}
	.fnb .inb { 
		margin: 0 0 0 0.4rem; 
	}

	/* site_info */
	.site_info {
		font-size: 1.2rem;
	}
	.site_info span { 
		display: block; 
	}
	.site_info span::before,
	.site_info br { 
		display: none !important;
	}


	/* ÆË¾÷¾È³»
	------------------------------------------------------ */
	.popup-frame { 
		position: fixed !important; left: 50% !important; top: 50% !important;
		text-align: center !important;
		transform: translateX(-50%) translateY(-50%) !important;
		z-index: 15000 !important;
	}
	.popup-frame::before { 
		content: "";
		display: block;
		clear: both;
		position: fixed; left: 0; top: 0; right: 0;
		width: 100%; height: 100%;
		background: rgb(0 0 0/0.5); 
		z-index: -1;
	}
	.popup-layer .pop_form > div > div { 
		margin: auto;
		width: 90%; 
	}
	.popup-layer .pop_form img { 
		max-width: 100%; 
	}

}




/* ------------------------------------------------------

	@xs mobile (max-width:359px)

------------------------------------------------------ */
@media all and (max-width:359px) { 

	html,
	body,
	header,
	.srch-form { 
		min-width: 320px !important; 
	}
	header .container { 
		grid-template-columns: minmax(auto, 4rem) minmax(2.4rem, auto) minmax(auto, 4rem) minmax(auto, 6rem);
		padding-right: 0.4rem;
	}
	.logo a { 
		width: 12rem; 
	}
	.btn-gnb .inb, 
	.btn-srch .inb, 
	.btn-unb .inb { 
		width: 3.6rem; height: 3.6rem; 
	}

	.strong-point li h3 small::before { 
		display: none;
		margin-top:0.4rem;
	}

	.lec-item .lec-prog { 
		font-size: 1.2rem !important; 
	}
	.lec-item .card-dept h4 + p span { 
		display: none; 
	}
	.reminder { 
		font-size: 1.2rem !important; 
	}
	.reminder::before { 
		flex-basis: 2.4rem;
		width: 2.4rem; height: 2.4rem;
	}

}
