/*sub21~sub21_5±îÁö »ó´Ü text_tab(»ê¼Ò°¡½º,Áú¼Ò°¡½º,¾Ë°ï°¡½º,Çï·ý°¡½º,¾Æ¼¼Æ¿·»,È¥ÇÕ°¡½º*/

.text_tab .tabb {
	display: flex;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.text_tab .tabb li {
	flex: 1;
	box-sizing: border-box;
	border: 0.5px solid #ddd;
	border-bottom: none; /* ¾Æ·¡ Å×µÎ¸®´Â a ÅÂ±×¿¡ À§ÀÓ */
}

.text_tab .tabb li:first-child {
	border-left: 0.5px solid #ddd;
}

.text_tab .tabb li:last-child {
	border-right: 0.5px solid #ddd;
}

.text_tab .tabb li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	font-size: 14px;
	color: #777;
	background-color: #f5f5f5;
	text-decoration: none;
	border-top: 3px solid transparent; /* on »óÅÂ ´ëºñ °ø°£ È®º¸ */
	border-bottom: 1px solid #ddd; /* ±âº» ¾Æ·¡ Å×µÎ¸® */
	box-sizing: border-box;
	transition: all 0.2s ease-in-out;
}

.text_tab .tabb li a.on {
	color: #6A91CC;
	background-color: #fff;
	border-top: 3px solid #6A91CC; /* À§ÂÊ ÆÄ¶õ ¾ð´õ¹Ù */
	border-bottom: none !important; /* ¾Æ·¡ Å×µÎ¸® Á¦°Å */
	font-weight: bold;
}

/* ?? ´­¸° »óÅÂ(li ³»ºÎ)¿¡¼­ ¾Æ·¡ Å×µÎ¸®µµ Á¦°Å */
.text_tab .tabb li a.on + * {
	border-bottom: none !important;
}
.text_tab .tabb li:has(> a.on) {
	border-bottom: none;
}