@charset "utf-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");
@import url('layout.css');

/********** skip_nav **********/
.skip_nav {position: relative; z-index: 1000; display: block; overflow: hidden; height: 0; background: #000; text-align: center;}
.skip_nav:focus {overflow: auto; height: auto; padding: 5px 0; color: #fff;}

/********** 숨김 **********/
.hide { overflow: hidden; position: absolute; width: 1px; height: 1px; margin: -1px; clip: rect(0 0 0 0); }

/********** overflow-hidden **********/
.overflow-hidden { overflow: hidden; }

:root {
	/********** font **********/
	--head-font: "Notosans";
	--body-font: "Pretendard";

	/********** color **********/
	--primary800: #062A64;
	--primary700: #083886;
	--primary600: #0A48A8;
	--primary500: #0C58CA;
	--primary400: #159EDE;
	--primary300: #6DC5EC;
	--primary200: #D7EAFF;
	--primary100: #E9F2FF;
	
	--secondary400: #FF68A5;
	--secondary300: #FFA0C5;
	--secondary200: #F5CADE;
	--secondary100: #FBEBF4;

	--point700: #6F4B0C;
	--point400: #FFAE1A;

	--gray800: #5C656D;
	--gray700: #7D8890;
	--gray100: #D9E2EC;

	--cate1: #D9F0C6;
	--cate2: #FDE7C5;
	--cate3: #DEE7FB;
	--cate4: #F3E1EC;
	--cate5: #fff7d2;

	--state1: #7FBF4A;
	--state2: #255300;
	--state3: #7E284B;

	--shadow100: #EBF0F5;
	--shadow200: #E0F1FF;

	--black90: rgba(0,0,0,.9);
	--black80: rgba(0,0,0,.8);
	--black70: rgba(0,0,0,.7);
	--black60: rgba(0,0,0,.6);
	--black50: rgba(0,0,0,.5);
	--black40: rgba(0,0,0,.4);
	--black30: rgba(0,0,0,.3);
	--black20: rgba(0,0,0,.2);
	--black10: rgba(0,0,0,.1);
	--gray-33: #333333;
	--gray-44: #444444;
	--gray-55: #555555;
	--gray-66: #666666;
	--gray-75: #757575;
	--gray-99: #999999;
	--gray-aa: #aaaaaa;
	--gray-cc: #cccccc;
	--gray-dd: #dddddd;
	--gray-e5: #e5e5e5;
	--gray-e9: #e9e9e9;
	--gray-f5: #f5f5f5;
	--gray-f6: #f6f6f6;
	--gray-f7: #f7f7f7;
	--gray-f9: #f9f9f9;
	--gray-fa: #fafafa;
	--gray-fc: #fcfcfc;
	--white90: rgba(255,255,255,.9);
	--white80: rgba(255,255,255,.8);
	--white70: rgba(255,255,255,.7);
	--white60: rgba(255,255,255,.6);
	--white50: rgba(255,255,255,.5);
	--white40: rgba(255,255,255,.4);
	--white30: rgba(255,255,255,.3);
	--white20: rgba(255,255,255,.2);
	--white15: rgba(255,255,255,.15);
	--white10: rgba(255,255,255,.1);

	--gray-f8fa: #f8f8fa;
	--light-bg: #F4F8FB;
	--light-bg2: #F6F7F8;

	--kakao: #F6DE02;
	--naver: #2DB400;
}

/* background color */
.bg-000 { background-color: #000; color: #fff; }
.bg-00060 { background-color: var(--black60); }
.bg-gray-33 { background-color: var(--gray-33); color: #fff; }
.bg-gray-44 { background-color: var(--gray-44); color: #fff; }
.bg-gray-55 { background-color: var(--gray-55); color: #fff; }
.bg-gray-66 { background-color: var(--gray-66); color: #fff; }
.bg-gray-99 { background-color: var(--gray-99); color: #fff; }
.bg-gray-dd { background-color: var(--gray-dd); color: #fff; }
.bg-gray-e5 { background-color: var(--gray-e5); }
.bg-gray-f5 { background-color: var(--gray-f5); }
.bg-gray-f7 { background-color: var(--gray-f7); }
.bg-gray-f9 { background-color: var(--gray-f9); }
.bg-gray-fa { background-color: var(--gray-fa); }
.bg-fff { background-color: #ffffff; }
.bg-fff50 { background-color: var(--white50); }
.bg-fff60 { background-color: var(--white60); }
.bg-fff30 { background-color: var(--white30); }
.bg-naver { background-color: var(--naver); }
.bg-kakao { background-color: var(--kakao); }
.bg-primary800 { background-color: var(--primary800); }
.bg-primary700 { background-color: var(--primary700); }
.bg-primary600 { background-color: var(--primary600); }
.bg-primary500 { background-color: var(--primary500); }
.bg-primary400 { background-color: var(--primary400); }
.bg-primary300 { background-color: var(--primary300); }
.bg-primary200 { background-color: var(--primary200); }
.bg-primary100 { background-color: var(--primary100); }
.bg-secondary400 { background-color: var(--secondary400); }
.bg-secondary100 { background-color: var(--secondary100); }
.bg-cate1 { background-color: var(--cate1); }
.bg-cate2 { background-color: var(--cate2); }
.bg-cate3 { background-color: var(--cate3); }
.bg-cate4 { background-color: var(--cate4); }
.bg-gray-f8fa {background-color: var(--gray-f8fa);}
.bg-light {background-color: var(--light-bg);}
.bg-light2 {background-color: var(--light-bg2);}


/* font color */
.fc-000 { color: #000; }
.fc-gray-33 { color: var(--gray-33); }
.fc-gray-44 { color: var(--gray-44); }
.fc-gray-55 { color: var(--gray-55); }
.fc-gray-66 { color: var(--gray-66); }
.fc-gray-75 { color: var(--gray-75); }
.fc-gray-99 { color: var(--gray-99); }
.fc-gray-aa { color: var(--gray-aa); }
.fc-gray-cc { color: var(--gray-cc); }
.fc-gray-dd { color: var(--gray-dd); }
.fc-gray-e5 { color: var(--gray-e5); }
.fc-gray-f5 { color: var(--gray-f5); }
.fc-gray-f9 { color: var(--gray-f9); }
.fc-gray800 { color: var(--gray800); }
.fc-gray700 { color: var(--gray700); }
.fc-fff { color: #fff !important; }
.fc-fff90 { color: var(--white90); }
.fc-fff80 { color: var(--white80); }
.fc-fff70 { color: var(--white70); }
.fc-fff60 { color: var(--white60); }
.fc-fff50 { color: var(--white50); }
.fc-fff40 { color: var(--white40); }
.fc-fff30 { color: var(--white30); }
.fc-fff20 { color: var(--white20); }
.fc-fff10 { color: var(--white10); }
.fc-primary800 { color: var(--primary800); }
.fc-primary700 { color: var(--primary700); }
.fc-primary600 { color: var(--primary600); }
.fc-primary500 { color: var(--primary500); }
.fc-primary400 { color: var(--primary400); }
.fc-primary300 { color: var(--primary300); }
.fc-secondary400 { color: var(--secondary400); }
.fc-state1 { color: var(--state1); }
.fc-state2 { color: var(--state2); }
.fc-state3 { color: var(--state3); }
.fc-point { color: var(--point); }
.fc-point700 { color: var(--point700); }
.fc-point400 { color: var(--point400); }


/* border color */
.bd-000 { border: 1px solid #000; }
.bd-gray-33 { border: 1px solid var(--gray-33); }
.bd-gray-44 { border: 1px solid var(--gray-44); }
.bd-gray-55 { border: 1px solid var(--gray-55); }
.bd-gray-66 { border: 1px solid var(--gray-66); }
.bd-gray-99 { border: 1px solid var(--gray-99); }
.bd-gray-dd { border: 1px solid var(--gray-dd); }
.bd-gray-cc { border: 1px solid var(--gray-cc); }
.bd-gray-e5 { border: 1px solid var(--gray-e5); }
.bd-gray-e9 { border: 1px solid var(--gray-e9); }
.bd-gray-f5 { border: 1px solid var(--gray-f5); }
.bd-gray-f9 { border: 1px solid var(--gray-f9); }
.bd-fff { border: 1px solid #fff; }
.bd-primary800 { border: 1px solid var(--primary800); }
.bd-primary700 { border: 1px solid var(--primary700); }
.bd-primary500 { border: 1px solid var(--primary500); }
.bd-primary400 { border: 1px solid var(--primary400); }

.w-fit {width: fit-content;}

.mx-w-100 { width: 100%; max-width: 100px; margin-left: auto; margin-right: auto; }
.mx-w-200 { width: 100%; max-width: 200px; margin-left: auto; margin-right: auto; }
.mx-w-250 { width: 100%; max-width: 250px; margin-left: auto; margin-right: auto; }
.mx-w-470 { width: 100%; max-width: 470px; margin-left: auto; margin-right: auto; }
.mx-w-500 { width: 100%; max-width: 500px; margin-left: auto; margin-right: auto; }
.mx-w-550 { width: 100%; max-width: 550px; margin-left: auto; margin-right: auto; }
.mx-w-600 { width: 100%; max-width: 600px; margin-left: auto; margin-right: auto; }
.mx-w-800 { width: 100%; max-width: 800px; margin-left: auto; margin-right: auto; }
.mx-w-900 { width: 100%; max-width: 900px; margin-left: auto; margin-right: auto; }
.mx-w-1500 { width: 100%; max-width: 1500px; margin-left: auto; margin-right: auto; }

.mx-h-100 { max-height: 100px; }
.mx-h-150 { max-height: 150px; }


/********** text-style **********/
.txt-65 { display: block; line-height: 1.4; font-size: 65px; word-break: keep-all; }
.txt-60 { display: block; line-height: 1.4; font-size: 60px; word-break: keep-all; }
.txt-54 { display: block; line-height: 1.4; font-size: 54px; word-break: keep-all; }
.txt-50 { display: block; line-height: 1.4; font-size: 50px; word-break: keep-all; }
.txt-48 { display: block; line-height: 1.4; font-size: 48px; word-break: keep-all; }
.txt-45 { display: block; line-height: 1.4; font-size: 45px; word-break: keep-all; }
.txt-42 { display: block; line-height: 1.4; font-size: 42px; word-break: keep-all; }
.txt-40 { display: block; line-height: 1.4; font-size: 40px; word-break: keep-all; }
.txt-36 { display: block; line-height: 1.4; font-size: 36px; word-break: keep-all; }
.txt-32 { display: block; line-height: 1.4; font-size: 32px; word-break: keep-all; }
.txt-30 { display: block; line-height: 1.4; font-size: 30px; word-break: keep-all; }
.txt-28 { display: block; line-height: 1.4; font-size: 28px; word-break: keep-all; }
.txt-26 { display: block; line-height: 1.4; font-size: 26px; word-break: keep-all; }
.txt-24 { display: block; line-height: 1.4; font-size: 24px; word-break: keep-all; }
.txt-22 { display: block; line-height: 1.4; font-size: 22px; word-break: keep-all; }
.txt-20 { display: block; line-height: 1.4; font-size: 20px; word-break: keep-all; }
.txt-18 { display: block; line-height: 1.4; font-size: 18px; word-break: keep-all; }
.txt-17 { display: block; line-height: 1.4; font-size: 17px; word-break: keep-all; }
.txt-16 { display: block; line-height: 1.4; font-size: 16px; word-break: keep-all; }
.txt-15 { display: block; line-height: 1.4; font-size: 15px; word-break: keep-all; }
.txt-14 { display: block; line-height: 1.4; font-size: 14px; word-break: keep-all; }
.txt-13 { display: block; line-height: 1.4; font-size: 13px; word-break: keep-all; }

@media only screen and (max-width: 1300px) {
	.txt-42 {font-size: 32px;}
}

/********** 텍스트 정렬 **********/
.txt-lf {text-align: left;}
.txt-ce {text-align: center;}
.txt-rg {text-align: right;}

/********** font-weight **********/
.fw-300 {font-weight: 300;}
.fw-400 {font-weight: 400;}
.fw-500 {font-weight: 500;}
.fw-600 {font-weight: 600;}
.fw-700 {font-weight: 700;}

/********** font-size **********/
.fz-50 { font-size: 50px; }
.fz-45 { font-size: 45px; }
.fz-40 { font-size: 40px; }
.fz-36 { font-size: 36px; }
.fz-32 { font-size: 32px; }
.fz-28 { font-size: 28px; }
.fz-25 { font-size: 25px; }
.fz-24 { font-size: 24px; }
.fz-23 { font-size: 23px; }
.fz-22 { font-size: 22px; }
.fz-21 { font-size: 21px; }
.fz-20 { font-size: 20px; }
.fz-19 { font-size: 19px; }
.fz-18 { font-size: 18px; }
.fz-17 { font-size: 17px; }
.fz-16 { font-size: 16px; }
.fz-15 { font-size: 15px; }
.fz-14 { font-size: 14px; }
.fz-13 { font-size: 13px; }
.fz-12 { font-size: 12px; }
.fz-11 { font-size: 11px; }


/* 스크롤  애니메이션 */
.trans-text { overflow: hidden; }
.trans-text [data-aos=fade-up] {display: block; -webkit-transform: translate3d(0, 104%, 0);  transform: translate3d(0, 104%, 0);}
.trans-img { overflow: hidden; }
.trans-img img[data-aos=fade-right] { -webkit-transform: translate3d(-101%, 0, 0); transform: translate3d(-101%, 0, 0);}

/********** tab **********/
.tab-btn.tab-st1 { display: flex; gap: 8px; padding: 8px; background-color: var(--gray-f5); border-radius: 10px;}
.tab-btn.tab-st1 > li { flex: 1; }
.tab-btn.tab-st1 > li > a { display: block; width: 100%; height: 45px; line-height: 45px; padding: 0 20px; font-weight: 500; font-size: 18px; background-color: transparent; border-radius: 5px; text-align: center; transition: background 0.3s;}
.tab-btn.tab-st1 > li.on > a { font-weight: 600; color: #fff; background: var(--primary400);}

.tab-btn.tab-st2 { display: flex; }
.tab-btn.tab-st2 > li { flex: 1; }
.tab-btn.tab-st2 > li > a { display: block; width: 100%; height: 50px; line-height: 50px; padding: 0 20px; font-weight: 500; font-size: 18px; color: var(--gray-75); border: 1px solid var(--gray-e5); border-bottom: 2px solid var(--primary500); border-radius: 10px 10px 0 0; text-align: center; transition: border 0.3s;}
.tab-btn.tab-st2 > li.on > a { font-weight: 600; color: #fff; background-color: var(--primary500); border: 1px solid var(--primary500);}

.tab-st3 { display: flex; gap: 5px; padding: 12px 15px 0 !important; background-color: var(--primary500); border-radius: 10px 10px 0 0;}
.tab-st3 > li {line-height: 1.5; padding: 8px 20px; font-size: 18px; color: #fff; background-color: var(--white20); border-radius: 10px 10px 0 0;}
.tab-st3 > li.on { font-weight: 600; color: var(--primary700); background-color: #fff;}
.tab-st3 > li > a { display: block; width: 100%; height: 50px; line-height: 50px; padding: 0 20px; font-weight: 500; font-size: 18px; border-right: 0; border-bottom: 2px solid var(--gray-e5); text-align: center; transition: border 0.3s;}
.tab-st3 > li.on > a { font-weight: 600; color: var(--primary400); border-bottom: 2px solid var(--primary400);}

.tab-btn.tab-st4 { display: flex; align-items: center; gap: 8px; }
.tab-btn.tab-st4 > li {  }
.tab-btn.tab-st4 > li > a { display: block; height: 50px; line-height: 50px; padding: 0 20px; font-weight: 500; font-size: 18px; color: var(--gray800); background-color: var(--gray100); border-radius: 100px; }
.tab-btn.tab-st4 > li.on > a { color: #fff; background-color: var(--primary500);}

.tab-btn.tab-st5 { display: flex; align-items: center; justify-content: center; gap: 20px; }
.tab-btn.tab-st5 > li {  }
.tab-btn.tab-st5 > li > a { position: relative; display: block; font-weight: 500; font-size: 20px; color: #ccc; }
.tab-btn.tab-st5 > li + li > a { padding-left: 20px; }
.tab-btn.tab-st5 > li + li > a::before { content: ""; position: absolute; top: 50%; left: 0; transform: translateY(-50%); display: block; width: 1px; height: 80%; background-color: var(--gray-e5); }
.tab-btn.tab-st5 > li.on > a { font-weight: 700; color: #000; }

.tab-conts .tab-cont { display: none; }
.tab-conts .tab-cont.on { display: block;  }

@media only screen and (max-width: 767px) {
	.tab-btn.tab-st1 > li > a { font-size: 16px; }
	
	.tab-btn.tab-st2 {flex-flow: column wrap; border-radius: 10px 10px 0 0; overflow: hidden;}
	.tab-btn.tab-st2 > li > a { font-size: 16px; }
	.tab-btn.tab-st2 > li:not(:first-child) > a {border-radius: 0;}
	
	.tab-btn.tab-st4 > li > a {height: 40px; line-height: 40px; padding: 0 15px; font-size: 16px; }
}
@media only screen and (max-width: 350px) {
	.tab-btn.tab-st1 {flex-flow: column wrap;}
}

/********** btn **********/
/* 버튼 정렬 */
.btn-lf { display: flex; justify-content: flex-start; gap: 5px; }
.btn-ce { display: flex; justify-content: center; gap: 5px; }
.btn-rg { display: flex; justify-content: flex-end; gap: 5px; }
.btn-spb { display: flex; justify-content: space-between; gap: 5px; }

@media only screen and (max-width: 700px) {
	.btn-spb {flex-wrap: wrap;}
	.btn-spb > .btn-ce {order: 1; width: 100%;}
	.btn-spb a, .btn-spb button {flex: 1; min-width: fit-content;}
}
@media only screen and (max-width: 560px) {
	.btn-ce { flex-wrap: wrap; }
	.btn-ce > a, .btn-ce > button { flex: 1; min-width: fit-content; }
	.btn-lf { flex-wrap: wrap; }
	.btn-lf > a, .btn-lf > button { flex: 1; min-width: fit-content; }
}

.btn-bace1 { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-width: 160px; height: 50px; line-height: 50px; padding: 0 20px; font-family: "Pretendard"; font-size: 16px; border-radius: 6px; text-align: center; transition: background 1s; }
.btn-bace1.bd-000:hover { color: #fff; background: #000; }
.btn-bace1.bg-000:hover { background-color: var(--primary400); }
.btn-bace1.bd-fff:hover { color: #000; background: #fff; }

.btn-bace2 { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-width: fit-content; height: 35px; line-height: 35px; padding: 0 10px; font-size: 16px; border-radius: 6px; }
.btn-bace2-1 { padding: 0 12px; border-radius: 50px; }

.btn-bace3 { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-width: fit-content; height: 40px; line-height: 40px; padding: 0 20px; font-size: 15px; border-radius: 6px; }
.btn-bace4 { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-width: 160px; height: 55px; line-height: 55px; padding: 0 20px; font-family: "Pretendard"; font-size: 18px; border-radius: 6px; text-align: center;}
.btn-bace5 {display: inline-flex; justify-content: center; align-items: center; width: 50px; height: 50px; border-radius: 100%;}

.btn-bace6 { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-width: 160px; height: 50px; line-height: 50px; padding: 0 20px; font-family: "Pretendard"; font-size: 16px; text-align: center; transition: background 1s; }

.list-btn { display: inline-flex; align-items: center; justify-content: center; width: 100px; height: 100px; font-size: 30px; color: #000; border: 1px solid #000; }

.big-btn {display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; padding: 30px; font-family: "Pretendard"; font-weight: 600; font-size: 18px; border-radius: 6px;}

.toggle-btn {display: flex; flex-direction: column; align-items: center; gap: 10px;}
.toggle-btn .toggle {position: relative; width: 60px; height: 35px; cursor: pointer;}
.toggle-btn .track {position: absolute;	inset: 0; border-radius: 100px; background: var(--gray-e9); transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);}
.toggle-btn .thumb {position: absolute; top: 50%; left: 5px; width: 25px; height: 25px; transform: translateY(-50%); border-radius: 100%; background: #fff; transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.16s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform;}
.toggle-btn .toggle input {position: absolute; opacity: 0; width: 0; height: 0;}

.toggle-btn .toggle input:checked ~ .track {background: var(--primary400);}
.toggle-btn .toggle input:checked ~ .thumb {transform: translate(25px, -50%);}

.toggle-btn .toggle input:focus-visible ~ .track {outline: 3px solid rgba(0,122,255,0.5); outline-offset: 2px;}


@media only screen and (max-width: 560px) {
	.btn-bace1 { height: 45px; line-height: 45px; font-size: 15px; }
	.btn-bace2 { font-size: 16px; }
	.list-btn { width: 60px; height: 60px; font-size: 20px; }
}

.more-btn-st1 {display: block; font-weight: 600; text-align: end;}
.more-btn-st1 i {display: inline-block; width: 20px; height: 20px; line-height: 20px; margin-left: 10px; border-radius: 100%; text-align: center;}

.more-btn-st2 {display: flex; align-items: center; gap: 10px; width: fit-content; padding: 8px 16px; font-family: var(--head-font); color: #fff; border: 1px solid #fff; border-radius: 100px;}
.more-btn-st2 i {font-size: 16px;}
.more-btn-st2.bl {color: #222; border: 1px solid var(--black30);}

.more-btn-st3 { display: inline-flex; align-items: center; width: fit-content; font-weight: 500; font-size: 16px; text-transform: uppercase; letter-spacing: 0; cursor: pointer; }
.more-btn-st3 span { position: relative; display: flex; justify-content: center; align-items: center; width: 30px; height: 30px; border-radius: 100%; background-color: #000; overflow: hidden; }
.more-btn-st3 span img { width: 100%; height: auto; }
.more-btn-st3 span img.arrow { position: absolute; width: 50%; }
.more-btn-st3 span img.arrow:last-child { transform: translate(-190%); }

@media only screen and (max-width: 1023px) {
	.more-btn-st1 { font-size: 16px; }
	/* .more-btn-st1 i { width: 30px; height: 30px; } */

	.more-btn-st2 em { padding-left: 10px; font-size: 14px; }
	.more-btn-st2 i { width: 30px; height: 30px; }
	.more-btn-st2 i .arr svg { width: 14px; }
}


/* 에디터 텍스트 */
.editor-text { line-height: 1.4 !important; font-family: "Pretendard" !important; font-size: 17px !important; word-break: break-all; word-wrap: break-word; }
.editor-text img { max-width: 100% !important; height: auto !important; }
.editor-text .youtube-wrap { max-width: 1000px; margin: 0 auto; }
.editor-text .youtube-wrap .youtube { position: relative; width: 100%; height: 0; padding-bottom: 56%; }
.editor-text .youtube-wrap .youtube iframe { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; }

.txt-line-st1 { display: flex; justify-content: center; align-items: center; gap: 20px; }
.txt-line-st1 span { flex-shrink: 0; white-space: nowrap; }
.txt-line-st1::before,
.txt-line-st1::after { content:""; display: inline-block; width: 100%; height: 1px; background-color: var(--gray-e5); }


/********** list **********/
.list {}
.list li {line-height: 1.4;}
.list li + li {margin-top: 10px;}

.list-st1 > li { position: relative; line-height: 1.5; padding-left: 15px;  }
.list-st1 > li::before { content:""; position: absolute; top: 10px; left: 3px; width: 4px; height: 4px; background: var(--gray-66); border-radius: 100%; }

.list-st2 > li { position: relative; line-height: 1.3; padding-left: 12px; color: #444; }
.list-st2 > li::before { content:""; position: absolute; top: 8px; left: 0; width: 5px; height: 1px; background: var(--gray-cc); }
.list-st2 > li + li { margin-top: 5px; }

.list-st3 > li { position: relative; line-height: 1.4; padding-left: 20px; font-weight: 500; word-break: keep-all; }
.list-st3 > li::before { content:""; position: absolute; top: 2px; left: 0; width: 16px; height: 16px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FF256D' class='bi bi-check' viewBox='0 0 16 16'%3E%3Cpath d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z'/%3E%3C/svg%3E") no-repeat center center / auto; }
.list-st3 > li + li { margin-top: 10px; }

.list-st4 > li { position: relative; line-height: 1.4; padding-left: 18px; color: #333; word-break: keep-all; word-wrap: break-word; }
.list-st4 > li + li { margin-top: 10px; }
.list-st4 > li em { position: absolute; top: 0; left: 0; }

.list-st5 {counter-reset: list-counter;}
.list-st5 > li {position: relative; line-height: 1.3; color: #444; counter-increment: list-counter;}
.list-st5 > li::before {content: counter(list-counter) "."; display: inline-block; padding-right: 5px;}
.list-st5 > li + li {margin-top: 5px;}


.sns-list-st1 { display: flex; justify-content: center; align-items: center; gap: 10px; }
.sns-list-st1 li a { display: flex; align-items: center; justify-content: center; width: clamp(50px, 3.125vw, 60px); height: clamp(50px, 3.125vw, 60px); border-radius: 100%; }
.sns-list-st1 li a.bg-naver svg { width: clamp(15px, 1vw, 20px);; height: clamp(15px, 1vw, 20px);; }
.sns-list-st1 li a svg { width: clamp(25px, 1.563vw, 30px); height: clamp(25px, 1.563vw, 30px); object-fit: contain; }


.sns-list-st2 { display: flex; justify-content: center; align-items: center; gap: 20px; }
.sns-list-st2 li a { display: flex; align-items: center; justify-content: center; width: clamp(45px, 2.344vw, 45px); height: clamp(45px, 2.344vw, 45px); border-radius: 100%; }
.sns-list-st2 li a svg { width: clamp(18.75px, 1.172vw, 18.75px); height: clamp(18.75px, 1.172vw, 18.75px); object-fit: contain; }




/********** box **********/
/* bd-box */
.bd-tp-st1 { position: relative; padding-top: 20px; border-top: 1px solid var(--gray-e5); }
.bd-tp-st2 { position: relative; display: flex; border-top: 1px solid #000; }
.bd-tp-st2 .lf { flex-shrink: 0; width: 20%; padding-right: 30px; }
.bd-tp-st2 .rg { flex-grow: 1; }

.bd-bt-st1 { position: relative; padding-bottom: 20px; border-bottom: 1px solid #666; }
.bd-bt-st2 { border-bottom: 1px solid var(--gray-e5); }
.bd-bt-st3 { padding-bottom: 20px; border-bottom: 1px dashed #000; }

.bd-box-st1 { position: relative; display: block; padding: 20px; border: 1px solid var(--gray-e5); border-radius: 6px;}
.bd-box-st2 { position: relative; display: block; padding: 20px; border: 1px solid #000; border-radius: 10px; }

/* bg-box */
.bg-box-st1 { padding: 30px; background: var(--gray-f6); border-radius: 2px; }
.flex-box-st1 { display: flex; }
.flex-box-st1 .lf { flex-grow: 1; padding-right: 30px; }
.flex-box-st1 .rg { max-width: 400px; }
/* .bg-box-st1-1 { padding: 20px; } */
@media only screen and (max-width: 767px) {
	.bg-box-st1 { padding: 20px; }
	
	.flex-box-st1 { flex-direction: column; gap: 30px; }
	.flex-box-st1 .lf { flex-grow: 1; padding-right: 0; }
	.flex-box-st1 .rg { flex-grow: 1; max-width: unset; }
}


.btn-cont-st1 {  }
.btn-cont-st1 .btn { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.btn-cont-st1 .cont { display: none; }
.btn-cont-st1 .cont .bd-box-st1 { border-top: 0; }

/********** info list **********/
.info-st1 { display: flex; align-items: center;}
.info-st1-1 { flex-direction: column; }
.info-st1 > li { position: relative; display: flex; align-items: center; gap: 10px; }
/* .info-st1 > li + li { padding-left: 15px; } */
.info-st1 > li + li::before { content: ""; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 1px; height: 50%; background: var(--black20); }

.info-st2 {  }
.info-st2 > li { display: flex; gap: 10px; }
.info-st2 > li + li { margin-top: 10px; }
.info-st2 > li strong { flex-shrink: 0; width: var(--width); }

.info-st3 {  }
.info-st3 li { display: flex; align-items: center; gap: 20px; }
.info-st3 li + li { margin-top: 10px; }
.info-st3 li strong { flex-shrink: 0; padding: 8px 20px; font-weight: 500; font-size: 16px; color: #fff; background-color: #000; border-radius: 50px; white-space: nowrap; }

.info-st4 {  }
.info-st4 li { position: relative; display: inline-block; }
.info-st4 li + li { margin-left: 16px; padding-left: 16px; }
.info-st4 li + li::before { content:""; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 1px; height: 70%; background: var(--gray-cc); }

.info-st5 {  }
.info-st5 li { display: flex; align-items: flex-start; justify-content: space-between; }
.info-st5 li + li { margin-top: 12px; }

.info-st6 { display: flex; align-items: flex-end; gap: 10px; }
.info-st6 li { flex: 1; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
@media only screen and (max-width: 1023px) {
	.info-st5 li { flex-direction: column; gap: 8px; }
}
@media only screen and (max-width: 767px) {
	.info-st5 li { flex-direction: row; gap: 8px; }
}
@media only screen and (max-width: 490px) {
	.info-st3 { flex-direction: column; }
}


/* input */
.inp-st1 { height: 45px; line-height: 45px; padding: 0 15px; font-size: 15px; border: 1px solid var(--gray-dd); border-radius: 6px; background: #fff; white-space: nowrap; text-overflow: ellipsis; }
select.inp-st1 { padding: 0 40px 0 15px; background: #fff url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.5 7.5'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23666; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M.75.75l6,6L12.75.75'/%3E%3C/svg%3E") no-repeat right 15px center / auto 5px; appearance: none; }
textarea.inp-st1 { min-height: 300px; height: unset; line-height: 1.4; padding: 15px; white-space: unset;}
textarea.inp-st1::placeholder {font-size: 16px;}
input.inp-st1:read-only { background: var(--gray-f5); }
.inp-80 { max-width: 80px; }
.inp-100 { max-width: 100px; }
.inp-150 { max-width: 150px; }
.inp-200 { max-width: 200px; }
.inp-st2 { height: 50px; line-height: 50px; padding: 0 20px; font-size: 15px; border: 1px solid var(--gray-e5); border-radius: 50px; background: #fff; white-space: nowrap; text-overflow: ellipsis; }
input.inp-st2::placeholder {font-size: 15px;}
textarea.inp-st2 { height: 50px; min-height: 50px; resize: none; overflow: hidden; line-height: 1.4; padding: 15px; white-space: unset;}
.inp-st3 { height: 54px; line-height: 54px; padding: 0 15px; font-weight: 500; font-size: 16px; border: 2px solid #000; background: #fff; white-space: nowrap; text-overflow: ellipsis; }
select.inp-st3 { padding: 0 40px 0 15px; background: #fff url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.5 7.5'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M.75.75l6,6L12.75.75'/%3E%3C/svg%3E") no-repeat right 15px center / auto 5px; appearance: none; }
.inp-wrap { display: flex; align-items: center; gap: 5px; }

.sch-inp-st1 { display: flex; flex-wrap: nowrap; align-items: center; width: 100%; max-width: 800px; border: 1px solid var(--gray-e5); border-radius: 6px; overflow: hidden; }
.sch-inp-st1-1 { max-width: unset; }
.sch-inp-st1 select { height: 40px; line-height: 40px; border: 0; padding: 0 35px 0 15px; font-size: 16px; background: #fff url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13.5 7.5'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M.75.75l6,6L12.75.75'/%3E%3C/svg%3E") no-repeat right 15px center / auto 5px; appearance: none; }
.sch-inp-st1 input { width: 100%; height: 40px; line-height: 40px; border: 0; padding: 0 20px; font-size: 16px; }
.sch-inp-st1 input::placeholder {font-size: 16px; color: var(--gray-75); }
.sch-inp-st1 button { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; font-size: 0; background: #fff url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 15L19 19M1 9C1 11.1217 1.84285 13.1566 3.34315 14.6569C4.84344 16.1571 6.87827 17 9 17C11.1217 17 13.1566 16.1571 14.6569 14.6569C16.1571 13.1566 17 11.1217 17 9C17 6.87827 16.1571 4.84344 14.6569 3.34315C13.1566 1.84285 11.1217 1 9 1C6.87827 1 4.84344 1.84285 3.34315 3.34315C1.84285 4.84344 1 6.87827 1 9Z' stroke='%23004899' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center / 15px;}

.sch-inp-st2 {display: flex; align-items: center; gap: 10px; width: 100%; max-width: 800px; overflow: hidden;}
.sch-inp-st2 input {width: 100%; max-width: 600px; height: 60px; line-height: 60px; padding: 0 25px; font-size: 18px; background-color: var(--gray-f5); border-radius: 100px;}
.sch-inp-st2 input::placeholder {font-size: 18px;}
.sch-inp-st2 button {flex-shrink: 0; width: 60px; height: 60px; background: var(--primary500) url("data:image/svg+xml,%3Csvg viewBox='0 0 23 23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.94711 18.7446C14.8056 18.7446 18.7442 14.806 18.7442 9.94748C18.7442 5.08898 14.8056 1.15039 9.94711 1.15039C5.08861 1.15039 1.15002 5.08898 1.15002 9.94748C1.15002 14.806 5.08861 18.7446 9.94711 18.7446Z' stroke='white' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16.1571 16.1797L21.1501 21.1726' stroke='white' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A") no-repeat center / 20px; border-radius: 100%;}

@media only screen and (max-width: 450px) {
	.inp-st1 { padding: 0 10px; }
	select.inp-st1 { padding: 0 30px 0 10px; background-position: right 10px center;; }
	.inp-wrap { flex-wrap: wrap; justify-content: center; }
	.inp-wrap button { width: 100%; }
}

/********** checkbox & radio **********/
/* 리스트 */
.chk-list-st1 { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 20px; }
.chk-list-st2 { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }

/* checkbox */
.chk-st1 { flex-shrink: 0; position: relative; }
.chk-st1 input { appearance:none; position: absolute; top: 50%; left: 0; width: 20px; height: 20px; border: none; background: transparent; transform: translateY(-50%);}
.chk-st1 label { position: relative; display: inline-block; line-height: 1.5; padding-left: 30px; font-size: 16px; cursor: pointer; }
.chk-st1 label::before { content: ""; position: absolute; top: 50%; transform: translateY(-50%); left: 0; z-index: 1; width: 20px; height: 20px; border: 1px solid var(--gray-e5); border-radius: 4px; background: #fff; }
.chk-st1 input:checked + label { font-weight: 600; color: #333; }
.chk-st1 input:checked + label::before { border: 1px solid var(--primary400); background: var(--primary400) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-check-lg' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/%3E%3C/svg%3E") no-repeat center center / auto 15px; }

.chk-st2 { flex-shrink: 0; position: relative; }
.chk-st2 input { appearance:none; position: absolute; top: -1px; left: 0; width: 20px; height: 20px; border: none; background: transparent; }
.chk-st2 label { position: relative; display: inline-block; line-height: 1.5; padding-left: 35px; font-size: 16px; cursor: pointer; }
.chk-st2 label::before { content: ""; position: absolute; top: 50%; transform: translateY(-50%); left: 0; z-index: 1; width: 25px; height: 25px; border: 1px solid var(--gray-e5); border-radius: 100%; background: #fff; }
.chk-st2 input:checked + label { font-weight: 600; color: #333; }
.chk-st2 input:checked + label::before { border: 1px solid var(--primary400); background: var(--primary400) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-check-lg' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/%3E%3C/svg%3E") no-repeat center center / auto 15px; }

.chk-st3 { position: relative; }
.chk-st3 label { position: relative; display: inline-block; width: 18px; height: 18px; background: #fff; border: 1px solid var(--gray-dd); border-radius: 4px; cursor: pointer; }
.chk-st3 input { appearance:none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; margin: 0; padding: 0; cursor: pointer; }
.chk-st3 input:checked + label { border: 1px solid var(--primary100); background: var(--primary100) url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.64 16.16'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23fff; stroke-width: 1px; %7D %3C/style%3E%3C/defs%3E%3Cpolygon class='cls-1' points='0 7.91 1.77 6.14 8.25 12.62 20.87 0 22.64 1.77 8.25 16.16 0 7.91'/%3E%3C/svg%3E") no-repeat center center / 10px 7px; }
.chk-st3 input:disabled + label { background: var(--gray-e9); }

/* radio */
.rdo-st1 { flex-shrink: 0; position: relative; }
.rdo-st1 > input { appearance:none; position: absolute; top: 50%; left: 0; width: 100%; height: 100%; border: none; background: transparent; transform: translateY(-50%);}
.rdo-st1 > label { position: relative; display: inline-block; line-height: 1.5; padding-left: 30px; font-size: 15px; cursor: pointer; }
.rdo-st1 > label::before { content: ""; position: absolute; top: 50%; transform: translateY(-50%); left: 0; z-index: -1; width: 18px; height: 18px; border: 1px solid var(--gray-e5); border-radius: 100%; background: #fff; }
.rdo-st1 > input:checked + label { font-weight: 600; }
.rdo-st1 > input:checked + label::before { border-color: var(--primary500); background-color: var(--primary500);}
.rdo-st1 > input:checked + label::after { content:""; position: absolute; top: 50%; left: 5px; transform: translateY(-50%); width: 8px; height: 8px; background: #fff; border-radius: 100%; }

.rdo-st2 { position: relative; }
.rdo-st2 input { appearance: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; background: transparent; }
.rdo-st2 label { position: relative; display: inline-block; height: 40px; line-height: 40px; padding: 0 12px; font-weight: 500; border: 1px solid var(--gray-e5); border-radius: 2px; text-align: center; cursor: pointer; }
.rdo-st2 input:checked + label { color: #fff; background: #000; border-color: #000; }

.rdo-st3 { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; cursor: pointer; }
.rdo-st3 input { position: relative; appearance: none; margin: 0; padding: 0; width: 20px; height: 20px; border: 1px solid var(--gray-e5); border-radius: 100%; cursor: pointer; }
.rdo-st3 input:checked { border: 1px solid #000; }
.rdo-st3 input:checked::after { content:""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 12px; height: 12px; background: #000; border-radius: 100%; }

.rdo-st4 { position: relative; }
.rdo-st4 input { appearance: none; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; background: transparent; }
.rdo-st4 label { position: relative; display: inline-block; height: 40px; line-height: 40px; padding: 0 18px; font-weight: 500; border: 1px solid var(--gray-e5); border-radius: 50px; text-align: center; cursor: pointer; }
.rdo-st4 input:checked + label { color: var(--primary900); background: var(--primary100); border-color: var(--primary100); }

/********** 폼 **********/
/* .esn { font-size: 14px; color: #e01d1d; } */
.esn { font-size: 14px; color: var(--primary500); }

.flex-st1 { display: flex; align-items: center; gap: 5px; }
.inp-flex-st1 { display: flex; align-items: center; gap: 5px; }
@media only screen and (max-width: 767px) {
	.flex-st1 { flex-wrap: wrap; }
	.flex-st1 .inp-flex-st1 { flex-grow: 1; }
	.flex-st1 .chk-list-st2 { width: 100%; }
	.flex-st1 .chk-list-st2 .rdo-st2 { flex-grow: 1; }
	.flex-st1 .chk-list-st2 .rdo-st2 label { width: 100%; }
	.flex-st1 .btn-bace3 { width: 100%; }
}
@media only screen and (max-width: 390px) {

}

.form-wrap-st1 { padding: 20px; background-color: var(--light-bg); border-radius: 10px;}
.form-wrap-st1.kcb-bg {background-color: var(--secondary200);}
.form-wrap-st1 .form-group {padding-bottom: 30px; }
.form-wrap-st1 .form-group:last-of-type {padding-bottom: 0; }
.form-wrap-st1 .form-group-st2 { align-items: flex-start; }
.form-wrap-st1 .form-group:first-child { padding-top: 0; }
.form-wrap-st1 .form-group .label { flex-shrink: 0; display: inline-block; line-height: 1.2; margin-bottom: 10px; padding-right: 10px; font-weight: 600; font-size: 18px; color: var(--gray-44); word-break: keep-all; }
.form-wrap-st1 .form-group .inp-box { flex-grow: 1; }
.form-wrap-st1 .form-group .inp-box.flex input {flex: 1;}
.form-wrap-st1 .form-group .inp-box input { width: 100%; border-radius: 5px;}
.form-wrap-st1 .form-group .inp-flex { flex-grow: 1; display: flex; align-items: center; gap: 5px; }
.form-wrap-st1 .form-group .inp-flex .timeout { position: absolute; top: 50%; right: 10px; transform: translateY(-50%); color: var(--primary900); }

.form-wrap-st2 .form-flex-box {display: flex; gap: 40px 30px;}
.form-wrap-st2 .form-flex-box + .form-flex-box {margin-top: 40px;}
.form-wrap-st2 .form-group {flex: 1;}
.form-wrap-st2 .form-group:first-child { padding-top: 0; }
.form-wrap-st2 .form-group .label { flex-shrink: 0; display: inline-block; line-height: 1.2; margin-bottom: 10px; font-weight: 600; font-size: 18px; word-break: keep-all; }
.form-wrap-st2 .form-group .inp-box input { width: 100%; border-radius: 5px;}
.form-wrap-st2 .form-group .inp-box textarea { width: 100%; border-radius: 5px;}
.form-wrap-st2 .form-group .inp-flex { flex-grow: 1; display: flex; align-items: center; gap: 5px; }
.form-wrap-st2 .form-group .inp-flex .timeout { position: absolute; top: 50%; right: 10px; transform: translateY(-50%); color: var(--primary900); }

@media only screen and (max-width: 850px) {
	.form-wrap-st1 .form-group { flex-direction: column; align-items: flex-start; }
	.form-wrap-st1 .form-group .label { width: 100%; padding-bottom: 12px; }
	.form-wrap-st1 .form-group .inp-box { width: 100%; }
	.form-wrap-st1 .form-group .inp-flex { flex-direction: column; align-items: baseline; width: 100%; }
	.form-wrap-st1 .form-group .inp-flex.inp-flex-nwrap { flex-direction: row; }
	.form-wrap-st1 .form-group .inp-st1 { width: 100%; max-width: 100%; }
	.form-wrap-st1 .form-group .btn-bace3 { width: 100%; max-width: 100%; }
}
@media only screen and (max-width: 600px) {
	.form-wrap-st2 .form-flex-box {flex-flow: column wrap;}
	.form-wrap-st2 .form-group .inp-box {padding: 0;}
}

/* 게시판 상단 */
.bbs-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 15px; }
.bbs-head .inp-flex { display: flex; align-items: center; gap: 20px;}
.bbs-head .inp-flex .btn {height: 60px; padding: 0 20px;}
.bbs-head .inp-flex select.inp-st1 {height: 60px;}
.bbs-head .filter-wrap { position: relative; padding-left: 15px; }
.bbs-head .filter-wrap::before { content:""; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 1px; height: 10px; background-color: var(--gray-e5); }
.bbs-head .inp-flex .sch-inp-st1 { min-width: 500px; }

@media only screen and (max-width: 767px) {
	.bbs-head .inp-flex { width: 100%; }
    .bbs-head .inp-flex .sch-inp-st1 {min-width: unset; width: 100%; }
    .bbs-head .lf-flex-st1 { flex-direction: column; align-items: baseline; }
    .bbs-head .lf-flex-st1 .filter-wrap { flex-wrap: wrap; width: 100%; padding-left: 0; }
    .bbs-head .lf-flex-st1 .filter-wrap::before { display: none; }
    .bbs-head .lf-flex-st1 .filter-wrap .item { flex-grow: 1; }
    .bbs-head .lf-flex-st1 .filter-wrap .item .btn { width: 100%; }
    .bbs-head .lf-flex-st1 .filter-wrap .btn-bace2-1 { flex-grow: 1; }
}

.bbs-search {display: flex; align-items: center; gap: 20px; width: 100%; margin-bottom: 40px;}
.bbs-search [class^="btn-bace"] {height: 100%;}
.bbs-search .date-btn a.on {color: #fff; background-color: var(--primary400); border: 1px solid var(--primary400);}

@media only screen and (max-width: 1023px) {
	.bbs-search {flex-wrap: wrap;}
}
@media only screen and (max-width: 400px) {
	.bbs-search div {width: 100%;}
	.bbs-search input {width: 100%;}
	.bbs-search [class^="btn-bace"] {width: 100%; max-width: unset;}
}

/* 일반 게시판 */
.bbs-st1 > li + li {margin-top: 15px;}
.bbs-st1 > li a {display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 40px 20px; background-color: #f8f8fa; border-radius: 10px;}

.pin {display: inline-block; padding: 5px 15px; font-weight: 600; color: var(--primary400); background-color: #fff; border: 1px solid var(--primary400); border-radius: 100px;}

@media only screen and (max-width: 767px) {
	.bbs-st1 > li a {flex-wrap: wrap; gap: 8px; padding: 20px;}
	.bbs-st1 > li a > span {margin-left: auto; margin-top: 10px;}
	.bbs-st1 > li a > div {margin-left: auto; margin-top: 10px;}
}

.bbs-st2 {display: flex; flex-wrap: wrap; row-gap: 20px; margin: 0 -10px;}
.bbs-st2 > li {margin: 0 10px;}
.bbs-st2.nth-2 > li {width: calc(50% - 20px);}
.bbs-st2.nth-3 > li {width: calc(33.333% - 20px);}
.bbs-st2.nth-4 > li {width: calc(25% - 20px);}
.bbs-st2 .img-wrap {}

@media only screen and (max-width: 1600px) {
	.bbs-st2.nth-2 > li {width: 100%;}
}
@media only screen and (max-width: 1400px) {
	.bbs-st2.nth-4 > li {width: calc(33.33% - 20px);}
}
@media only screen and (max-width: 1023px) {
	.bbs-st2.nth-4 > li {width: calc(50% - 20px);}
}
@media only screen and (max-width: 767px) {
	.bbs-st2.nth-2 > li {flex-wrap: wrap;}
	.bbs-st2.nth-3 > li {width: calc(50% - 20px);}
	.bbs-st2.nth-4 > li {width: 100%;}
}
@media only screen and (max-width: 500px) {
	.bbs-st2.nth-3 > li {width: 100%;}
}

.no-list { width: 100%; padding: 100px 0; border-top: 1px solid var(--gray-e5); border-bottom: 1px solid var(--gray-e5); text-align: center; }

.bbs-sch-filter { display: flex; align-items: center; justify-content: center; gap: 5px; }
 
.filter-wrap { display: flex; align-items: center; gap: 5px; }
.filter-wrap .item { position: relative; }
.filter-wrap .item .btn { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 35px; line-height: 35px; padding: 0 15px; font-size: 15px; border: 1px solid var(--gray-e5); border-radius: 50px; white-space: nowrap; }
.filter-wrap .item.on .btn { color: var(--primary900); background: var(--primary100); border: 1px solid var(--primary900); }
.filter-wrap .item .btn i { font-size: 12px; transition: all .3s; }
.filter-wrap .item.open .btn i { transform: rotate(180deg); }
.filter-wrap .item .cont { display: none; position: absolute; top: 35px; left: 0; z-index: 1; width: 200px; padding: 20px; background: #fff; border: 1px solid var(--gray-e5); border-radius: 10px; }
.filter-wrap .item.open .cont { display: block; }

.filter-selected { display: flex; align-items: flex-start; gap: 30px; padding: 12px; background: var(--gray-f5); }

.selected-item-list { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 10px; }
.selected-item-list .item { display: flex; align-items: center; gap: 5px; }
.selected-item-list .item span { font-size: 15px; color: #555; }
.selected-item-list .item i { font-size: 13px; color: #555; }

@media only screen and (max-width: 470px) {
	.filter-wrap { position: relative; }
    .filter-wrap .item { position: unset; }
    .filter-wrap .item .cont { width: 100%; }
}


/* 테이블 인풋 반응형 */
@media only screen and (max-width: 600px) {
	.inp-box .inline-flex {display: flex; flex-wrap: wrap;}
	table .rdo-st1 {width: 100%;}
}

/* 일반게시판 상세 */
.bbs-view-st1 {}
.bbs-view-st1 .bbs-header { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; padding: 0 30px 50px; border-bottom: 2px solid var(--primary500); }
.bbs-view-st1 .bbs-header .pin {font-size: 20px;}
.bbs-view-st1 .bbs-header .tit { display: block; width: 100%; line-height: 1.4; font-weight: 700; font-size: 32px; color: #222; word-break: keep-all; word-wrap: break-word; text-align: center; }
.bbs-view-st1 .bbs-header .info { flex-shrink: 0; display: flex; align-items: center; gap: 15px; }
.bbs-view-st1 .bbs-header .info li { position: relative; }
.bbs-view-st1 .bbs-header .info li + li { padding-left: 10px; }
.bbs-view-st1 .bbs-header .info li + li::before { content: ""; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 1px; height: 10px; background-color: var(--gray-cc); }
.bbs-view-st1 .bbs-header .info span {color: var(--gray-75); }
.bbs-view-st1 .bbs-header .info .share-btn { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; color: #000; }
.bbs-view-st1 .info-wrap { padding: 25px 40px; border-bottom: 1px solid var(--gray-e5); }
.bbs-view-st1 .bbs-body { padding: 40px 0; border-bottom: 1px solid var(--gray-e5); }

.bbs-view-st1 .bbs-foot {margin-top: 30px;}
.bbs-view-st1 .bbs-foot .btn-wrap a {padding: 25px; background-color: var(--gray-f7); border-radius: 5px;}
.bbs-view-st1 .bbs-foot .btn-wrap a + a {margin-top: 10px;}

@media only screen and (max-width: 1023px) {
	.bbs-view-st1 .bbs-header .tit { font-size: 3rem; }
	
	.bbs-view-st1 .bbs-foot .btn-wrap {flex-wrap: wrap; justify-content: center;}
	.bbs-view-st1 .bbs-foot .btn-wrap a:not(:nth-child(2)) {flex: unset; width: 100%;}
	.bbs-view-st1 .bbs-foot .btn-wrap a:nth-child(2) {order: 1;}
	.bbs-view-st1 .bbs-foot .btn-wrap a:last-child strong {order: unset;}
}
@media only screen and (max-width: 767px) {
    .bbs-view-st1 .bbs-header { flex-direction: column; gap: 20px; padding: 25px; }  
    .bbs-view-st1 .bbs-header .tit { font-size: 2.4rem; }
    .bbs-view-st1 .bbs-body { padding: 25px 0; }
}


.grid-img {display: flex; flex-wrap: wrap; margin: 0 -10px;}
.grid-img li {flex: 0 0 20%; max-width: 20%; padding: 0 10px;}
.grid-img li a {position: relative; display: block; width: 100%; height: 0; margin-bottom: 20px; padding-bottom: 70%; overflow: hidden;}
.grid-img li img {position: absolute; left: 0; top: 0; width: 100%; height: 100%; object-fit: cover; transition: all .3s;}
.grid-img li a:hover img {transform: scale(1.1, 1.1);}

@media only screen and (max-width: 1023px) {
	.grid-img {margin: 0 -5px;}
	.grid-img li {flex: 0 0 33.33%; max-width: 33.33%; padding: 0 5px;}
	.grid-img li a {margin-bottom: 10px;}
}



/* FAQ 게시판 */
/* .bbs-faq { border-top: 2px solid #000; } */
.bbs-faq .faq-item { background-color: #f8f8fa; border-radius: 10px; overflow: hidden; transition: background .3s;}
.bbs-faq .faq-item.on {background-color: var(--primary100);}
.bbs-faq .faq-item .tit { position: relative; display: flex; align-items: center; gap: 1.5rem; line-height: 1.4; padding: 30px 65px 30px 55px; font-weight: 500; font-size: 1.8rem;}
.bbs-faq .faq-item .tit::before { content:"Q"; position: absolute; top: 50%; left: 25px; display: flex; justify-content: center; align-items: center; height: 34px; font-weight: 600; transform: translateY(-50%); }
.bbs-faq .faq-item .tit::after { content:""; position: absolute; top: 50%; right: 15px; transform: translateY(-50%); display: block; width: 36px; height: 36px; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3E%3C/svg%3E") no-repeat center center / auto; border-radius: 5px; }
.bbs-faq .faq-item.on .tit::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash-lg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8'/%3E%3C/svg%3E"); }
.bbs-faq .faq-item .tit strong { line-height: 1.3; font-weight: 600; font-size: 1.8rem; }
.bbs-faq .faq-item .cont { display: none; margin: 20px; background: #fff; border-radius: 10px;}
.bbs-faq .faq-item .cont .editor-text { position: relative; padding: 30px 30px 30px 60px; }
.bbs-faq .faq-item .cont .editor-text::before { content:"A"; position: absolute; top: 30px; left: 30px; font-weight: 600; }
.bbs-faq .faq-item + .faq-item {margin-top: 10px;}

@media only screen and (max-width: 1023px) {
	.bbs-faq .faq-item .tit { gap: 2rem; padding: 20px 55px 20px 40px; }
	.bbs-faq .faq-item .tit::before { left: 15px; font-size: 14px; }
    .bbs-faq .faq-item .tit strong { font-size: 16px; }
	.bbs-faq .faq-item .cont { margin: 10px;}
	.bbs-faq .faq-item .cont .editor-text { padding: 20px 20px 20px 40px; font-size: 16px; }
	.bbs-faq .faq-item .cont .editor-text::before { top: 22px; left: 15px; font-size: 14px; }
}




/* 페이징 */
.pagination { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.pagination a { flex-shrink: 0; display: inline-block; width: 30px; height: 30px; line-height: 30px; font-family: var(--body-font); font-weight: 700; font-size: 16px; color: var(--gray-75); text-align: center; border-radius: 100px;}
.pagination a.arr { width: 40px; height: 40px; line-height: 40px; font-size: 0; background-position: center; background-repeat: no-repeat; background-size: auto 10px; border: none; border: 1px solid var(--gray-e5); border-radius: 100%; transition: border .3s;}
.pagination a.arr:hover {border: 1px solid var(--primary400);}
.pagination a.first-page { background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35.72 36.34'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23062A64; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='33.72 34.34 17.55 18.17 33.72 2'/%3E%3Cpolyline class='cls-1' points='18.17 34.34 2 18.17 18.17 2'/%3E%3C/svg%3E"); }
.pagination a.last-page { background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35.72 36.34'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23062A64; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='2 2 18.17 18.17 2 34.34'/%3E%3Cpolyline class='cls-1' points='17.55 2 33.72 18.17 17.55 34.34'/%3E%3C/svg%3E"); }
.pagination a.prev-page { margin-right: 5px; background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.17 36.34'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23062A64; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='18.17 34.34 2 18.17 18.17 2'/%3E%3C/svg%3E"); }
.pagination a.next-page { margin-left: 5px; background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.17 36.34'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23062A64; stroke-linecap: round; stroke-linejoin: round; stroke-width: 6px; %7D %3C/style%3E%3C/defs%3E%3Cpolyline class='cls-1' points='2 2 18.17 18.17 2 34.34'/%3E%3C/svg%3E"); }
/* .pagination .unm {padding: 5px; border: 1px solid var(--gray-e5); border-radius: 100px;} */
/* .pagination .unm a + a {margin-left: 8px;} */
/* .pagination a.active {color: #fff; background-color: var(--primary400);} */



/* 첨부파일 리스트 */
.attr-st1 {  }
.attr-st1 li + li { margin-top: 6px; }
.attr-st1 li a { display: flex; gap: 6px; padding: 16px; background: var(--gray-f6);}
.attr-st1 li a span { line-height: 1.4; }
.attr-st1 li a em { line-height: 1.4; }
@media only screen and (max-width: 767px) {
	.attr-st1 li { flex-wrap: wrap; }
    .attr-st1 li a { width: 1005; }
    .attr-st1 li a i { margin-top: 3px; }
}


/******* 첨부파일 *******/
.file-btn-st1 { display: flex; gap: 5px }
.file-btn-st1 input[type="file"] { position: absolute; width: 0; height: 0; padding: 0; margin: -1px; overflow: hidden; border: 0; clip: rect(0, 0, 0, 0); }

.file-btn-st2 {padding: 15px 10px; background-color: var(--gray-f5); border-radius: 6px;}
.file-btn-st2 input[type="file"] { position: absolute; width: 0; height: 0; padding: 0; margin: -1px; overflow: hidden; border: 0; clip: rect(0, 0, 0, 0); }

.file-list-st1 { display: flex; flex-wrap: wrap; gap: 4px; }
.file-list-st1 li { width: 100px; height: 100px; }
.file-list-st1 li .img-wrap { position: relative; width: 100%; height: 0; padding-bottom: 100%; }
.file-list-st1 li .img-wrap img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.file-list-st1 li .img-wrap .delete { position: absolute; top: 5px; right: 5px; z-index: 1; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; background-color: #fff; border: 1px solid #000; border-radius: 100%; }

/* .file-list-st2 { display: flex; flex-wrap: wrap; gap: 4px; } */
.file-list-st2 li + li {margin-top: 15px;}
.file-list-st2 a { display: flex; align-items: center; gap: 2px; }
.file-list-st2 a span { color: #999; }


/********** table **********/

.tableA { width: 100%; border-collapse: collapse;}
.tableA thead tr {background-color: var(--primary100);} 
.tableA thead th {padding: 20px 10px; line-height: 1.2; font-weight: 600; font-size: 16px; color: #333; border-right: 1px solid #fff; text-align: center; } 
.tableA thead th:first-child {border-radius: 10px 0 0 10px;}
.tableA thead th:last-child {border-radius: 0 10px 10px 0; border-right: 0;}
.tableA tbody tr { border-bottom: 1px solid #eee; } 
.tableA tbody tr td { padding: 16px 10px; line-height: 1.2; font-size: 16px; color:#555; border-right: 1px solid #eee; text-align: center; } 
.tableA tbody tr td:last-child {border-right: 0;}
.tableA tbody tr td.noList { padding: 25px 0; }

.tableA .inp-box input {width: 100%;}
.tableA .inp-flex { flex-grow: 1; display: flex; align-items: center; gap: 5px; }

@media only screen and (max-width: 1023px) {
	.tableA:not(.static-table) colgroup { display: none; }
	.tableA:not(.static-table) thead { display: none; }
	.tableA:not(.static-table) tbody tr { position: relative; display: flex; flex-wrap: wrap; align-items: center; gap: 4px; padding: 15px; background-color: var(--light-bg); border: 0; border-radius: 10px;}
	.tableA:not(.static-table) tbody tr + tr {margin-top: 20px;}
	.tableA:not(.static-table) tbody tr td {display: inline-block; width: 100%; padding: 0; font-size: 15px; text-align: left; border: 0;}
	.tableA:not(.static-table) tbody tr td + td {margin-top: 10px;}
	.tableA:not(.static-table) tbody tr td[data-content="구분"] {font-weight: 600; font-size: 18px; color: var(--primary500);}
	.tableA:not(.static-table) tbody tr td::before {content: attr(data-content); display: block; margin-bottom: 5px; font-weight: 500; font-size: 16px; color: var(--gray-75);}
	.tableA:not(.static-table) tbody tr td[data-content="구분"]::before {display: none;}
	.tableA:not(.static-table) tbody tr td[data-content="NO"]::before {display: none;}
}
@media only screen and (max-width: 767px) {
	.tableA tbody tr td { font-size: 14px; }
}


.tableB {width: 100%; border-collapse: collapse; background-color: #fff; border-radius: 10px; overflow: hidden;}
.tableB tr {border-bottom: 1px solid var(--gray-dd);}
.tableB th { padding: 15px; font-weight: 500; font-size: 16px; color: #333; word-break: keep-all; text-align: center;  }
.tableB td { padding: 15px; font-size: 16px; color: #333; word-break: keep-all; text-align: center; }
.tableB td.th {background-color: var(--primary100);}
.tableB td.txt-rg {text-align: right;}
.tableB tr:last-child {border: 0;}

.table-fixed-thead { border: none; border-collapse: separate; border-spacing: -1px; }
.table-fixed-thead thead {  }
.table-fixed-thead thead tr {  }
.table-fixed-thead thead tr th { position: sticky; top: 0; z-index: 1; border-top: 2px solid var(--gray-44); border-bottom: 1px solid var(--gray-e5); }
.table-fixed-thead tbody tr td { border-bottom: 1px solid var(--gray-e5); }


.table-scroll-wrap.pc-scroll { position: relative; overflow-x: scroll; }

.table-sticky-left th:first-child { position: sticky; left: 0; z-index: 1; }

@media only screen and (max-width: 1023px) {
	.tableA th { padding: 10px; font-size: 14px; }
	.tableA td { padding: 10px; font-size: 14px; }
	.tableA tfoot td { padding: 10px; font-size: 14px; }

	.table-scroll-wrap { position: relative; overflow-x: scroll; }
	.table-scroll-event { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; background-color: rgba(255,255,255,0.8); }
	.table-scroll-event.hidden { display: none; }
	.table-scroll-event .inner { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
	.table-scroll-event .inner::before { content:""; display: block; position: absolute; top: -25px; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; background-repeat: no-repeat; background-size: contain; background-position: center; background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg id='icon' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 61 64.28'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; stroke: %23000; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px; %7D %3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath class='cls-1' d='M26.24,52.94s-8.39-7.82-8.39-15.08v-8.7c0-2.32,1.88-4.2,4.2-4.2h0c2.32,0,4.2,1.88,4.2,4.2V6.25c0-2.45,2.11-4.42,4.61-4.18,2.18.21,3.79,2.17,3.79,4.36v12.24c0-2.45,2.11-4.42,4.61-4.18,2.18.21,3.79,2.17,3.79,4.36v3.74c0-2.32,1.88-4.2,4.2-4.2h0c2.32,0,4.2,1.88,4.2,4.2v3.12c0-2.59,2.35-4.64,5.04-4.11,1.99.39,3.35,2.26,3.35,4.3h0c0,5.83.45,10.07-.06,15.51-.12,1.25-.34,2.49-.67,3.7l-2.09,7.84h-30.76Z'/%3E%3Cline class='cls-1' x1='26.24' y1='29.16' x2='26.24' y2='35.78'/%3E%3Cline class='cls-1' x1='34.63' y1='18.67' x2='34.63' y2='29.16'/%3E%3Cline class='cls-1' x1='43.03' y1='20.59' x2='43.03' y2='29.16'/%3E%3Cline class='cls-1' x1='51.42' y1='25.71' x2='51.42' y2='29.16'/%3E%3Crect class='cls-1' x='26.24' y='52.94' width='30.76' height='10.34'/%3E%3C/g%3E%3Cline class='cls-1' x1='40.31' y1='7.05' x2='58.94' y2='7.05'/%3E%3Cpolyline class='cls-1' points='52.89 1 58.94 7.05 52.89 13.11'/%3E%3Cline class='cls-1' x1='19.63' y1='7.05' x2='1' y2='7.05'/%3E%3Cpolyline class='cls-1' points='7.05 1 1 7.05 7.05 13.11'/%3E%3C/svg%3E"); animation: leftRight 2.4s infinite linear; }
	@keyframes leftRight {
		0% { transform: translateX(0px); }
	 	50% { transform: translateX(-20px); }  
		100% { transform: translateX(0px); }
	}
	.table-scroll-event .inner::after { content:"좌우로 스크롤하세요"; display: block; margin-top: 15px; font-size: 14px; text-align: center;}
	.en .table-scroll-event .inner::after { content:"Scroll horizontally"; }
	.table-scroll-wrap table { width: 1100px; }
}
@media only screen and (max-width: 850px) {
	.tableA .inp-flex { flex-direction: column; align-items: baseline; width: 100%; }
	.tableA .inp-flex > * {width: 100%; max-width: unset;}
}
@media only screen and (max-width: 767px) {
	.table-responsive1 colgroup,
    .table-responsive1 thead th { display: none }
    .table-responsive1 tbody tr { position: relative; display: flex; flex-wrap: wrap; padding: 10px; border-bottom: 1px solid var(--gray-e5) }
    .table-responsive1 tbody tr.no-list { justify-content: center; padding: 50px 0; }
    .table-responsive1 tbody tr td { position: relative; display: inline-block; padding: 0; color: #666; border: 0;}
    .table-responsive1 tbody tr td .tit { display: flex; width: 100% !important; padding: 0; text-align: left !important; border-top: none; }
	.table-responsive1 tbody tr td::before { content: attr(data-content); display: inline-block; width: auto; margin-right: 5px; margin-bottom: 5px; font-weight: 500; font-size: 15px; color: #333; text-align: left; }
    .table-responsive1 tbody tr td::after { content: ""; display: inline-block; width: 1px; height: 8px; margin: 0 10px; background: #bbb; vertical-align: middle; }
	.table-responsive1 tbody tr td:last-child::after {display: none;}

	.tableA.word-break tr td[class^="bg-"] {word-break: break-all;}
	.tableA.word-break tr td[rowspan] {word-break: break-all;}
}

@media only screen and (max-width: 620px) {
	.table-responsive2 col {width: 100% !important;}
    .table-responsive2 thead {display: none;}
    .table-responsive2 tbody tr td {position: relative; display: block; width: 100%; padding-left: 110px; border: 0; text-align: left;}
    .table-responsive2 tbody tr td::before {content:attr(data-content); position: absolute; top: 10px; left: 15px; display: inline-block; width: 80px; text-align: left; font-weight: 600;}
    .table-responsive2 tbody tr td::after {content:""; position: absolute; top: 10px; left: 95px; width: 1px; height: 20px; background: #dbdbdb;}
    .table-responsive2 tbody tr td:last-child::after {display: block;}

    .table-responsive2 tbody tr td.wd100 {padding: 30px 15px 10px 15px;}
    .table-responsive2 tbody tr td.wd100::before {width: 100%; top: 15px;}
    .table-responsive2 tbody tr td.wd100:last-child::after {display: none;}
    .table-responsive2 tbody tr td.wd100::after {display: none;}
}
@media only screen and (max-width: 390px) {
    .table-responsive2 tbody tr td {display: block; width: 100%; padding-left: 110px; text-align: left;}
}


/*** category ***/
.cate-st1 {display: inline-block; height: fit-content; padding: 5px 10px; border-radius: 100px;}
.cate-st2 {display: inline-block; height: fit-content; padding: 2px 12px; border-radius: 10px;}
.cate-st3 {display: block; width: fit-content; padding: 10px; border-radius: 8px;}


/*** swiper-control ***/
.swiper-control-st1 { display: flex; align-items: center; gap: 30px; }

.swiper-pagination-st1 { display: flex; align-items: center; gap: 10px; width: fit-content;}
.swiper-pagination-st1 span { font-size: 15px; opacity: .4;; }
.swiper-pagination-st1 span.swiper-pagination-current { opacity: 1; }

/* 이전/다음 */
.swiper-button-st1 { display: flex; align-items: center; gap: 10px; }
.swiper-button-st1 [class^="swiper-button-"] { flex-shrink: 0; position: relative; top: unset; left: unset; right: unset; bottom: unset; width: 40px; height: 40px; margin: 0; padding: 0; background-color: #fff; border: 1px solid var(--gray-e5); border-radius: 100%; cursor: pointer; }
.swiper-button-st1 [class^="swiper-button-"] svg {width: 12px; height: 12px; color: #757575; }


.swiper-button-st2 { display: flex; align-items: center; gap: 10px; }
.swiper-button-st2 [class^="swiper-button-"] { flex-shrink: 0; position: relative; top: unset; left: unset; right: unset; bottom: unset; width: 24px; height: 24px; margin: 0; padding: 0; cursor: pointer; }
.swiper-button-st2 [class^="swiper-button-"] svg {width: 14px; height: 14px; color: #000; }

.swiper-button-st3 {  }
.swiper-button-st3 [class^="swiper-button-"] { flex-shrink: 0; position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; margin: 0; padding: 0; background-color: #fff; border: 1px solid var(--gray-e5); border-radius: 100%; cursor: pointer; }
.swiper-button-st3 [class^="swiper-button-"] svg {width: 16px; height: 16px; color: #000; }

.swiper-button-pause {background: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V14M7 0V14' stroke='white' stroke-width='2'/%3E%3C/svg%3E") no-repeat center center / auto 12px; }
.swiper-button-play {display: none; background: url("data:image/svg+xml,%3Csvg width='8' height='10' viewBox='0 0 8 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0.333374V9.66671L7.33333 5.00004L0 0.333374Z' fill='white'/%3E%3C/svg%3E") no-repeat center center / auto 12px; }
.swiper-button-pause.bl { background: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V14M7 0V14' stroke='black' stroke-width='2'/%3E%3C/svg%3E") no-repeat center center / auto 12px; }
.swiper-button-play.bl {display: none; background: url("data:image/svg+xml,%3Csvg width='8' height='10' viewBox='0 0 8 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0.333374V9.66671L7.33333 5.00004L0 0.333374Z' fill='black'/%3E%3C/svg%3E") no-repeat center center / auto 12px; }
.swiper-button-pause.bg-fff {background-image: url("data:image/svg+xml,%3Csvg width='8' height='14' viewBox='0 0 8 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 0V14M7 0V14' stroke='%23757575' stroke-width='2'/%3E%3C/svg%3E"); background-size: auto 12px; background-position: center; background-repeat: no-repeat;}
.swiper-button-play.bg-fff {display: none; background-image: url("data:image/svg+xml,%3Csvg width='8' height='10' viewBox='0 0 8 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0.333374V9.66671L7.33333 5.00004L0 0.333374Z' fill='%23757575'/%3E%3C/svg%3E");  background-size: auto 12px; background-position: center; background-repeat: no-repeat;}

@media only screen and (max-width: 1023px) {
	.swiper-button-st1 { gap: 5px; }
	.swiper-button-st1 [class^="swiper-button-"] { width: 40px; height: 40px; }
	.swiper-button-st1 [class^="swiper-button-"]::after { font-size: 14px; }
	
	/* .swiper-button-st2 [class^="swiper-button-"] { width: 40px; height: 40px; } */
	.swiper-button-st2 [class^="swiper-button-"]::after { font-size: 12px; }
}
@media only screen and (max-width: 600px) {
	.swiper-button-st1 [class^="swiper-button-"] { width: 32px; height: 32px; }
}
	
/********** 팝업 **********/
.popup-st1 { display: none; position: fixed; top: 0; left: 0; z-index: 100; width: 100%; height: 100%; background: rgba(0,0,0,0.5);}
.popup-st1.active { display: block; }
.popup-st1 .popup-inner { position: absolute; top: 50%; left: 50%; width: 100%; max-width: 700px; padding: 0 20px; transform: translate(-50%, -50%); }
.popup-st1.pop-lg .popup-inner {width: 1000px; max-width: unset;}
.popup-st1 .popup-box1 { position: relative; background: #fff; border-radius: 10px;}
.popup-st1 .popup-box1 .popup-top { padding: 20px 20px 0 20px; }
.popup-st1 .popup-box1 .popup-cont {padding: 30px;}
.popup-st1 .popup-box1 .popup-cont .scroll-box {max-height: calc(100vh - 200px); overflow-y: scroll;}
.popup-st1 .popup-box1 .popup-close-btn { position: absolute; top: 16px; right: 20px; z-index: 1; display: flex; align-items: center; justify-content: center; width: 20px; height: 20px; }
.popup-st1 .popup-box1 .popup-close-btn i { font-size: 20px; color: #000; }
.popup-st1 .popup-box1 .popup-close-btn i::before { font-weight: 900 !important; }

.popup-st2 { display: none; position: fixed; top: 0; left: 0; z-index: 50; align-items: center; justify-content: center; width: 100%; height: 100%; max-height: 100vh; background: rgba(0, 0, 0, 0.5); }
.popup-st2.active { display: flex; }
.popup-st2 .popup-inner { position: relative; max-width: 100%; max-height: 100%; padding: 20px; display: flex; align-items: center; justify-content: center;}
.popup-st2 .popup-inner .popup-close-btn { position: absolute; top: 40px; right: 40px; z-index: 1; display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; font-size: 24px; color: #fff; background: var(--primary400); border-radius: 100%;}
.popup-st2 .popup-inner .img-wrap { position: relative; display: flex; justify-content: center; align-items: center; width: 100%; height: 100%; max-width: 100%; max-height: 100%; overflow: hidden; border-radius: 20px;}
.popup-st2 .popup-inner .img-wrap img { display: block; max-width: 100%; max-height: calc(100vh - 40px); width: auto; height: auto; object-fit: contain; }
.popup-st2 .popup-inner .copy { position: absolute; bottom: 0; right: 0; padding: 10px; color: #fff; background: #000; }

.popup-wrap * {font-family: var(--body-font);}


@media only screen and (max-width: 1020px) {
	.popup-st1 .popup-inner {top: 51%;}
	.popup-st1 .popup-box1 {height: calc(100% - 40px);}
	.popup-st1 .popup-box1 .popup-cont {height: calc(100% - 80px);}
	.popup-st1 .popup-box1 .popup-cont .scroll-box {max-height: 100%;}
}
@media only screen and (max-width: 767px) {
	.popup-st1 .popup-inner-st1 { padding: 0; }
	/* .popup-st1 .popup-box1 .popup-top { padding: 15px 15px 11px 15px; } */
	.popup-st1 .popup-box1 .popup-close-btn { top: 10px; right: 10px; }
	.popup-st1 .popup-box1 .popup-close-btn i { font-size: 20px; }
	.popup-st1 .popup-box1 .popup-cont { padding: 20px; }
}



/********** 이미지 **********/
.img-wrap { display: block; overflow: hidden; }
.img-wrap img { max-width: 100% !important; }
.vod-wrap { display: block; overflow: hidden; }
.vod-wrap video { max-width: 100% !important; }

.no-img { position: relative; background: var(--gray-e5); }
.no-img::before { content:""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 120px; height: 50px; background: url(../images/does/common/logo.png) no-repeat center center / contain; filter: grayscale(100%);}

.img-st45 { position: relative; width: 100%; height: 0; padding-bottom: 45%; overflow: hidden; }
.img-st45 img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.img-st56 { position: relative; width: 100%; height: 0; padding-bottom: 56%; overflow: hidden; }
.img-st56 img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.img-st65 { position: relative; width: 100%; height: 0; padding-bottom: 65%; overflow: hidden; }
.img-st65 img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.img-st100 { position: relative; width: 100%; height: 0; padding-bottom: 100%; overflow: hidden; }
.img-st100 img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.img-st115 { position: relative; width: 100%; height: 0; padding-bottom: 115%; overflow: hidden; }
.img-st115 img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.img-st140 { position: relative; width: 100%; height: 0; padding-bottom: 140%; overflow: hidden; }
.img-st140 img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }


/********** 텍스트 ...처리 **********/
.txt-over1 {display: -webkit-box; display: -ms-flexbox; height: fit-content; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 1;} /* 1줄 */
.txt-over2 {display: -webkit-box; display: -ms-flexbox; height: fit-content; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 2;} /* 2줄 */
.txt-over3 {display: -webkit-box; display: -ms-flexbox; height: fit-content; overflow: hidden; text-overflow: ellipsis; word-break: break-all; -webkit-box-orient: vertical; -webkit-line-clamp: 3;} /* 3줄 */

/********** word-break **********/
.break-all {word-break: break-all;}

/********** 오버플로우 스크롤 **********/
.scroll-y-wrap {display: flex; flex-flow: column nowrap; height: 100dvh;}
.scroll-y-wrap .scroll-y-box {margin-bottom: 90px; padding-bottom: 10px; overflow-y: scroll;}

.ovf-x-scroll {padding-bottom: 10px; overflow-x: scroll; overflow-y: visible;}
.ovf-x-hidden { overflow-x: hidden; }
.ovf-x-scroll::-webkit-scrollbar { height: 6px; }
.ovf-x-scroll::-webkit-scrollbar-track { background-color: var(--gray-fa); } 
.ovf-x-scroll::-webkit-scrollbar-thumb { background-color: var(--gray-cc); }
.ovf-y-scroll {height: 100%; max-height: 300px; overflow-y: scroll; overscroll-behavior: contain; padding-right: 20px;}
.ovf-y-hidden { overflow-y: hidden; }
.ovf-hidden { overflow: hidden; }
.ovf-y-scroll::-webkit-scrollbar { width: 6px; }
.ovf-y-scroll::-webkit-scrollbar-track { background-color: var(--gray-fa); } 
.ovf-y-scroll::-webkit-scrollbar-thumb { background-color: var(--gray-cc); }

::-webkit-scrollbar {
	width: 1px; /* 세로 스크롤바 너비 */
	height: 1px; /* 가로 스크롤바 높이 */
}

::-webkit-scrollbar-track {
	background: transparent; /* 트랙 배경 */
	border-radius: 10px;
}

::-webkit-scrollbar-thumb {
	background: transparent; /* 스크롤바 색상 */
	border-radius: 10px;
}

/* mobile br */
@media only screen and (max-width: 560px) {
	.m-br {display: none;}
}


/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }

/* Flex derection */
.flex-column {flex-direction: column;}

/* Flex wrap */
.flex-wrap { flex-wrap: wrap; }

/* Flex alignment */
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start !important; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.flex-1 {flex: 1;}

/* Flex shrink */
.shrink-0 { flex-shrink: 0; }

/* Position */
.relative {position: relative;}

.position-rt {position: absolute; right: 0; top: 0;}
.position-rb {position: absolute; right: 0; bottom: 0;}
.position-lt {position: absolute; left: 0; top: 0;}
.position-lb {position: absolute; left: 0; bottom: 0;}
.position-ce {position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);}

.absolute {position: absolute;}

.top50p {top: 50%; transform: translateY(-50%);}
.lf50p {left: 50%; transform: translateX(-50%);}

.top10 {top: 10px;}
.top20 {top: 20px;}
.top30 {top: 30px;}
.top40 {top: 40px;}
.top50 {top: 50px;}

.bt10 {bottom: 10px;}
.bt20 {bottom: 20px;}
.bt30 {bottom: 30px;}
.bt40 {bottom: 40px;}
.bt50 {bottom: 50px;}

.lf10 {left: 10px;}
.lf20 {left: 20px;}
.lf30 {left: 30px;}
.lf40 {left: 40px;}
.lf50 {left: 50px;}

.rg10 {rigth: 10px;}
.rg20 {rigth: 20px;}
.rg30 {rigth: 30px;}
.rg40 {rigth: 40px;}
.rg50 {rigth: 50px;}

.index-1 {z-index: -1;}
.index1 {z-index: 1;}

/* Vertical Align (주의: inline 요소/table-cell에서만 적용) */
.align-top { vertical-align: top; }
.align-middle { vertical-align: middle; }
.align-bottom { vertical-align: bottom; }

/* gap */
.gap5 { gap: 5px; }
.gap10 { gap: 10px; }
.gap15 { gap: 15px; }
.gap20 { gap: 20px; }
.gap25 { gap: 25px; }
.gap30 { gap: 30px; }
.gap40 { gap: 40px; }
.gap50 { gap: 50px; }
.gap60 { gap: 60px; }

.bdrd0 { border-radius: 0 !important; }
.bdrd5 { border-radius: 5px !important; }
.bdrd6 { border-radius: 6px !important; }
.bdrd10 { border-radius: 10px !important; }
.bdrd15 { border-radius: 15px !important; }
.bdrd20 { border-radius: 20px !important; }
.bdrd50 { border-radius: 50px !important; }
.bdrd100 { border-radius: 100px !important; }


/* col-12 */
.col-group { display: flex; margin: 0 -20px; }
.col-group [class*="col-"] { padding: 0 20px; }
.col-1 { width: 8.3333%; }
.col-2 { width: 16.6667%; }
.col-3 { width: 25%; }
.col-4 { width: 33.3333%; }
.col-5 { width: 41.6667%; }
.col-6 { width: 50%; }
.col-7 { width: 58.3333%; }
.col-8 { width: 66.6667%; }
.col-9 { width: 75%; }
.col-10 { width: 83.3333%; }
.col-11 { width: 91.6667%; }
.col-12 { width: 100%; }
@media only screen and (max-width: 1023px) {
	.col-group { margin: 0 -10px; }
	.col-group [class*="col-"] { padding: 0 10px; }
}
@media only screen and (max-width: 767px) {
	.col-group { margin: 0 -5px; }
	.col-group [class*="col-"] { padding: 0 5px; }
}

/********** width **********/
.wh100p {width: 100%;}
.wh90p {width: 90%;}
.wh80p {width: 80%;}
.wh70p {width: 70%;}
.wh60p {width: 60%;}
.wh50p {width: 50%;}
.wh40p {width: 40%;}
.wh30p {width: 30%;}
.wh20p {width: 20%;}
.wh5p {width: 5%;}

.w150px { width: 100%; max-width: 150px;}

/********** margin **********/
.mg0 {margin:0;}
/*** margin_top ***/
.mt-33 {margin-top:-33px;}
.mt0 {margin-top:0;}
.mt3 {margin-top:3px;}
.mt5 {margin-top:5px;}
.mt10 {margin-top:10px;}
.mt15 {margin-top:15px;}
.mt20 {margin-top:20px;}
.mt25 {margin-top:25px;}
.mt30 {margin-top:30px;}
.mt35 {margin-top:35px;}
.mt40 {margin-top:40px;}
.mt45 {margin-top:45px;}
.mt50 {margin-top:50px;}
.mt55 {margin-top:55px;}
.mt60 {margin-top:60px;}
.mt65 {margin-top:65px;}
.mt70 {margin-top:70px;}
.mt75 {margin-top:75px;}
.mt80 {margin-top:80px;}
.mt85 {margin-top:85px;}
.mt90 {margin-top:90px;}
.mt95 {margin-top:95px;}
.mt100 {margin-top:100px;}
.mt160 {margin-top:160px;}
/*** margin_bottom ***/
.mb0 {margin-bottom:0;}
.mb5 {margin-bottom:5px;}
.mb10 {margin-bottom:10px;}
.mb15 {margin-bottom:15px;}
.mb20 {margin-bottom:20px;}
.mb25 {margin-bottom:25px;}
.mb30 {margin-bottom:30px;}
.mb35 {margin-bottom:35px;}
.mb40 {margin-bottom:40px;}
.mb45 {margin-bottom:45px;}
.mb50 {margin-bottom:50px;}
.mb55 {margin-bottom:55px;}
.mb60 {margin-bottom:60px;}
.mb65 {margin-bottom:65px;}
.mb70 {margin-bottom:70px;}
.mb75 {margin-bottom:75px;}
.mb80 {margin-bottom:80px;}
.mb85 {margin-bottom:85px;}
.mb90 {margin-bottom:90px;}
.mb95 {margin-bottom:95px;}
.mb100 {margin-bottom:100px;}
/*** margin_left ***/
.ml-auto {margin-left: auto;}
.ml0 {margin-left:0;}
.ml5 {margin-left:5px;}
.ml10 {margin-left:10px;}
.ml15 {margin-left:15px;}
.ml20 {margin-left:20px;}
.ml25 {margin-left:25px;}
.ml30 {margin-left:30px;}
.ml35 {margin-left:35px;}
.ml40 {margin-left:40px;}
.ml45 {margin-left:45px;}
.ml50 {margin-left:50px;}
.ml55 {margin-left:55px;}
.ml60 {margin-left:60px;}
.ml65 {margin-left:65px;}
.ml70 {margin-left:70px;}
.ml75 {margin-left:75px;}
.ml80 {margin-left:80px;}
.ml85 {margin-left:85px;}
.ml90 {margin-left:90px;}
.ml95 {margin-left:95px;}
.ml100 {margin-left:100px;}
/*** margin_right ***/
.mr-auto {margin-right: auto;}
.mr0 {margin-right:0;}
.mr5 {margin-right:5px;}
.mr10 {margin-right:10px;}
.mr15 {margin-right:15px;}
.mr20 {margin-right:20px;}
.mr25 {margin-right:25px;}
.mr30 {margin-right:30px;}
.mr35 {margin-right:35px;}
.mr40 {margin-right:40px;}
.mr45 {margin-right:45px;}
.mr50 {margin-right:50px;}
.mr55 {margin-right:55px;}
.mr60 {margin-right:60px;}
.mr65 {margin-right:65px;}
.mr70 {margin-right:70px;}
.mr75 {margin-right:75px;}
.mr80 {margin-right:80px;}
.mr85 {margin-right:85px;}
.mr90 {margin-right:90px;}
.mr95 {margin-right:95px;}
.mr100 {margin-right:100px;}

.mx-auto {margin-left: auto; margin-right: auto;}
.mx5 {margin-left: 5px; margin-right: 5px;}
.mx10 {margin-left: 10px; margin-right: 10px;}
.mx15 {margin-left: 15px; margin-right: 15px;}
.mx20 {margin-left: 20px; margin-right: 20px;}
.mx25 {margin-left: 25px; margin-right: 25px;}
.mx30 {margin-left: 30px; margin-right: 30px;}
.mx35 {margin-left: 35px; margin-right: 35px;}
.mx40 {margin-left: 40px; margin-right: 40px;}
.mx45 {margin-left: 45px; margin-right: 45px;}
.mx50 {margin-left: 50px; margin-right: 50px;}

.my5 {margin-top: 5px; margin-bottom: 5px;}
.my10 {margin-top: 10px; margin-bottom: 10px;}
.my15 {margin-top: 15px; margin-bottom: 15px;}
.my20 {margin-top: 20px; margin-bottom: 20px;}
.my25 {margin-top: 25px; margin-bottom: 25px;}
.my30 {margin-top: 30px; margin-bottom: 30px;}
.my35 {margin-top: 35px; margin-bottom: 35px;}
.my40 {margin-top: 40px; margin-bottom: 40px;}
.my45 {margin-top: 45px; margin-bottom: 45px;}
.my50 {margin-top: 50px; margin-bottom: 50px;}
.my55 {margin-top: 55px; margin-bottom: 55px;}
.my60 {margin-top: 60px; margin-bottom: 60px;}
.my65 {margin-top: 65px; margin-bottom: 65px;}
.my70 {margin-top: 70px; margin-bottom: 70px;}
.my75 {margin-top: 75px; margin-bottom: 75px;}
.my80 {margin-top: 80px; margin-bottom: 80px;}
.my85 {margin-top: 85px; margin-bottom: 85px;}
.my90 {margin-top: 90px; margin-bottom: 90px;}
.my95 {margin-top: 95px; margin-bottom: 95px;}
.my100 {margin-top: 100px; margin-bottom: 100px;}

@media only screen and (max-width: 560px) {
	.mt60 {margin-top: 30px;}
}

/******************** padding ********************/
.pd0 {padding:0;}
.pd5 {padding:5px;}
.pd10 {padding:10px;}
.pd15 {padding:15px;}
.pd20 {padding:20px;}
.pd25 {padding:25px;}
.pd30 {padding:30px;}
.pd35 {padding:35px;}
.pd40 {padding:40px;}
.pd45 {padding:45px;}
.pd50 {padding:50px;}
.pd55 {padding:55px;}
.pd60 {padding:60px;}
.pd65 {padding:65px;}
.pd70 {padding:70px;}
.pd75 {padding:75px;}
.pd80 {padding:80px;}
.pd85 {padding:85px;}
.pd90 {padding:90px;}
.pd95 {padding:95px;}
.pd100 {padding:100px;}
/*** padding_top ***/
.pt0 {padding-top:0;}
.pt5 {padding-top:5px;}
.pt10 {padding-top:10px;}
.pt15 {padding-top:15px;}
.pt20 {padding-top:20px;}
.pt25 {padding-top:25px;}
.pt30 {padding-top:30px;}
.pt35 {padding-top:35px;}
.pt40 {padding-top:40px;}
.pt45 {padding-top:45px;}
.pt50 {padding-top:50px;}
.pt55 {padding-top:55px;}
.pt60 {padding-top:60px;}
.pt65 {padding-top:65px;}
.pt70 {padding-top:70px;}
.pt75 {padding-top:75px;}
.pt80 {padding-top:80px;}
.pt85 {padding-top:85px;}
.pt90 {padding-top:90px;}
.pt95 {padding-top:95px;}
.pt100 {padding-top:100px;}
/*** padding_bottom ***/
.pb0 {padding-bottom:0;}
.pb5 {padding-bottom:5px;}
.pb10 {padding-bottom:10px;}
.pb15 {padding-bottom:15px;}
.pb20 {padding-bottom:20px;}
.pb25 {padding-bottom:25px;}
.pb30 {padding-bottom:30px;}
.pb35 {padding-bottom:35px;}
.pb40 {padding-bottom:40px;}
.pb45 {padding-bottom:45px;}
.pb50 {padding-bottom:50px;}
.pb55 {padding-bottom:55px;}
.pb60 {padding-bottom:60px;}
.pb65 {padding-bottom:65px;}
.pb70 {padding-bottom:70px;}
.pb75 {padding-bottom:75px;}
.pb80 {padding-bottom:80px;}
.pb85 {padding-bottom:85px;}
.pb90 {padding-bottom:90px;}
.pb95 {padding-bottom:95px;}
.pb100 {padding-bottom:100px;}
/*** padding_left ***/
.pl0 {padding-left:0;}
.pl5 {padding-left:5px;}
.pl10 {padding-left:10px;}
.pl15 {padding-left:15px;}
.pl17 {padding-left:17px;}
.pl20 {padding-left:20px;}
.pl25 {padding-left:25px;}
.pl30 {padding-left:30px;}
.pl35 {padding-left:35px;}
.pl40 {padding-left:40px;}
.pl45 {padding-left:45px;}
.pl50 {padding-left:50px;}
.pl55 {padding-left:55px;}
.pl60 {padding-left:60px;}
.pl65 {padding-left:65px;}
.pl70 {padding-left:70px;}
.pl75 {padding-left:75px;}
.pl80 {padding-left:80px;}
.pl85 {padding-left:85px;}
.pl90 {padding-left:90px;}
.pl95 {padding-left:95px;}
.pl100 {padding-left:100px;}
/*** padding_right ***/
.pr0 {padding-right:0;}
.pr5 {padding-right:5px;}
.pr10 {padding-right:10px;}
.pr15 {padding-right:15px;}
.pr17 {padding-right:17px;}
.pr20 {padding-right:20px;}
.pr25 {padding-right:25px;}
.pr30 {padding-right:30px;}
.pr35 {padding-right:35px;}
.pr40 {padding-right:40px;}
.pr45 {padding-right:45px;}
.pr50 {padding-right:50px;}
.pr55 {padding-right:55px;}
.pr60 {padding-right:60px;}
.pr65 {padding-right:65px;}
.pr70 {padding-right:70px;}
.pr75 {padding-right:75px;}
.pr80 {padding-right:80px;}
.pr85 {padding-right:85px;}
.pr90 {padding-right:90px;}
.pr95 {padding-right:95px;}
.pr100 {padding-right:100px;}


.px5 {padding-left: 5px; padding-right: 5px;}
.px10 {padding-left: 10px; padding-right: 10px;}
.px15 {padding-left: 15px; padding-right: 15px;}
.px20 {padding-left: 20px; padding-right: 20px;}
.px25 {padding-left: 25px; padding-right: 25px;}
.px30 {padding-left: 30px; padding-right: 30px;}
.px35 {padding-left: 35px; padding-right: 35px;}
.px40 {padding-left: 40px; padding-right: 40px;}
.px45 {padding-left: 45px; padding-right: 45px;}
.px50 {padding-left: 50px; padding-right: 50px;}

.py5 {padding-top: 5px; padding-bottom: 5px;}
.py10 {padding-top: 10px; padding-bottom: 10px;}
.py15 {padding-top: 15px; padding-bottom: 15px;}
.py20 {padding-top: 20px; padding-bottom: 20px;}
.py25 {padding-top: 25px; padding-bottom: 25px;}
.py30 {padding-top: 30px; padding-bottom: 30px;}
.py35 {padding-top: 35px; padding-bottom: 35px;}
.py40 {padding-top: 40px; padding-bottom: 40px;}
.py45 {padding-top: 45px; padding-bottom: 45px;}
.py50 {padding-top: 50px; padding-bottom: 50px;}
.py55 {padding-top: 55px; padding-bottom: 55px;}
.py60 {padding-top: 60px; padding-bottom: 60px;}
.py65 {padding-top: 65px; padding-bottom: 65px;}
.py70 {padding-top: 70px; padding-bottom: 70px;}
.py75 {padding-top: 75px; padding-bottom: 75px;}
.py80 {padding-top: 80px; padding-bottom: 80px;}
.py85 {padding-top: 85px; padding-bottom: 85px;}
.py90 {padding-top: 90px; padding-bottom: 90px;}
.py95 {padding-top: 95px; padding-bottom: 95px;}
.py100 {padding-top: 100px; padding-bottom: 100px;}