@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap");

:root {
  --main-font: "Nanum Gothic", sans-serif;

  /* 모노 컬러 */
  --mono-00: #fff;
  --mono-01: #fafafa;
  --mono-02: #f0f0f0;
  --mono-03: #d7d7d7;
  --mono-04: #a5a5a5;
  --mono-05: #505050;
  --mono-06: #232323;

  /* 메인 컬러 */
  --main-01: #3c4655;
  --main-02: #232d3c;

  /* 포인트 컬러 */
  --point-text-01: #ff6464;
  --up-02: #f00;
  --down-01: #06f;
  --point-01: #232d3c;
  --point-02: #3c64f0;
  --point-03: #ffaaaa;
  --naver-color: #03c75a;
  --kakao-color: #fee500;
  --orange: #ff7f22;
  --red: #ff375f;

  /* 카테고리 컬러 */
  --cate-01: #ffd7d7;
  --cate-02: #ebffe6;
  --cate-03: #feffb7;
  --cate-04: #d2e1ff;
}

/* 초기화 */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-family: var(--main-font);
  background: var(--mono-00);
  color: var(--mono-05);
}
body.swal2-shown {
  padding-right: 0 !important;
}
html,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
img {
  margin: 0;
  padding: 0;
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--main-font);
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}
legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999em;
  overflow: hidden;
}
label,
input,
button,
select,
img {
  vertical-align: middle;
}
input,
button {
  margin: 0;
  padding: 0;
  font-family: var(--main-font);
}
input[type="submit"] {
  cursor: pointer;
}
button {
  cursor: pointer;
}

textarea,
select {
  font-family: var(--main-font);
  font-size: 1rem;
}
textarea {
  font-size: 1.3rem;
}
select {
  margin: 0;
}
p {
  margin: 0;
  padding: 0;
  word-break: break-all;
}
hr {
  display: none;
}
pre {
  overflow-x: scroll;
  font-size: 1.1rem;
}
a {
  color: var(--mono-05);
  text-decoration: none;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.placeholdersjs {
  color: #aaa !important;
}

.text-success {
  color: var(--down-01) !important;
}

.chk_box {
  position: relative;
}
.chk_box input[type="checkbox"] + label {
  color: #676e70;
}
.chk_box input[type="checkbox"] + label:hover {
  color: #2172f8;
}
.chk_box input[type="checkbox"] + label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  display: block;
  margin: 0;
  background: #fff;
  border: 1px solid var(--mono-04);
  border-radius: 3px;
}
.chk_box input[type="checkbox"]:checked + label {
  color: #000;
}
.chk_box input[type="checkbox"]:checked + label span {
  background: url(./img/chk.png) no-repeat 50% 50% var(--main-02);
  border-color: var(--main-02);
  border-radius: 3px;
}

/* 레이아웃 크기 지정 */
#hd,
#wrapper,
#ft {
  min-width: 1240px;
}

#hd_pop,
#hd_wrapper,
#tnb .inner,
#gnb .gnb_wrap,
#container_wr {
  width: 1240px;
}

/* 팝업레이어 */
#hd_pop {
  z-index: 1000;
  position: relative;
  margin: 0 auto;
  height: 0;
}
#hd_pop h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.hd_pops {
  position: absolute;
  border: 1px solid #e9e9e9;
  background: #fff;
}
.hd_pops img {
  max-width: 100%;
}
.hd_pops_con {
}
.hd_pops_footer {
  padding: 0;
  background: #000;
  color: #fff;
  text-align: left;
  position: relative;
}
.hd_pops_footer:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.hd_pops_footer button {
  padding: 10px;
  border: 0;
  color: #fff;
}
.hd_pops_footer .hd_pops_reject {
  background: #000;
  text-align: left;
}
.hd_pops_footer .hd_pops_close {
  background: #393939;
  position: absolute;
  top: 0;
  right: 0;
}

/* 상단 레이아웃 */
#hd_h1 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

#tnb {
  border-bottom: 1px solid #383838;
  margin: 0 auto;
}
#tnb:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#tnb .inner {
  margin: 0 auto;
}

#hd_wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding-top: 3rem;
  zoom: 1;
}
#hd_wrapper:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}

#logo {
  float: left;
  font-size: 32px;
  font-weight: 700;
}

#logo a img {
  width: 18rem;
}

.hd_sch_wr {
  float: left;
  padding: 30px 0;
  width: 445px;
  margin-left: 25px;
}
#hd_sch {
  border-radius: 0.6rem;
  overflow: hidden;
}
#hd_sch legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999rem;
  overflow: hidden;
}
#hd_sch #sch_stx {
  float: left;
  width: 385px;
  height: 45px;
  padding: 0 2rem;
  border-radius: 0.6rem 0 0 0.6rem;
  border: 0.24rem solid var(--main-02);
  border-right: 0;
  font-size: 1.4rem;
  color: var(--mono-06);
  outline: none;
}
#hd_sch #sch_submit {
  float: left;
  padding: 0 2rem;
  height: 45px;
  border: 0;
  color: var(--main-02);
  background: initial;
  border-radius: 0 0.6rem 0.6rem 0;
  border: 0.24rem solid var(--main-02);
  border-left: 0;
  cursor: pointer;
  font-size: 1.6rem;
  outline: none;
}

#hd_define {
  float: left;
}
#hd_define:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#hd_define li {
  float: left;
  font-size: 1.083rem;
  line-height: 14px;
  border-right: 1px solid #4a4a4a;
  position: relative;
  text-align: center;
  margin: 15px 10px 15px 0;
  padding-right: 10px;
}
#hd_define li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
#hd_define li a {
  display: inline-block;
  color: #919191;
}
#hd_define li.active a {
  color: #fff;
}

#hd_qnb {
  float: right;
  text-align: right;
}
#hd_qnb:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#hd_qnb li {
  float: left;
  font-size: 1.083rem;
  line-height: 14px;
  border-right: 1px solid #4a4a4a;
  position: relative;
  text-align: center;
  margin: 15px 10px 15px 0;
  padding-right: 10px;
}
#hd_qnb li:last-child {
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
#hd_qnb li span {
  display: block;
  margin-top: 5px;
  font-size: 0.92rem;
}
#hd_qnb li a {
  display: inline-block;
  color: #919191;
}
#hd_qnb .visit .visit-num {
  display: inline-block;
  line-height: 16px;
  padding: 0 5px;
  margin-left: 5px;
  border-radius: 10px;
  background: #da22f5;
  color: #fff;
  font-size: 10px;
}

/* 메인메뉴 */
#gnb {
  position: relative;
  background: #fff;
}
#gnb > h2 {
  position: absolute;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
#gnb .gnb_wrap {
  margin: 0 auto;
  position: relative;
}
#gnb .gnb_wrap:hover,
#gnb .gnb_wrap:focus,
#gnb .gnb_wrap:active {
  z-index: 3;
}
#gnb_1dul {
  display: flex;
  justify-content: center;
  padding: 0 14rem;
  background: var(--main-02);
}
#gnb #gnb_1dul {
  font-size: 1.083rem;
  zoom: 1;
}
#gnb ul:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#gnb .gnb_1dli {
  float: left;
  line-height: 55px;
  padding: 0px;
  position: relative;
  background: var(--main-02);
}
#gnb .gnb_1dli:hover > a {
  color: var(--main-02);
  background: #fff;
}

.gnb_1dli .bg {
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  text-indent: -999px;
}
.gnb_1da {
  display: block;
  font-weight: bold;
  width: 16rem;
  padding: 0 2rem;
  text-align: center;
  text-decoration: none;
  color: var(--mono-02);
  font-size: 1.6rem;
  font-weight: 600;
  border-top: 0.3rem solid var(--main-02);
}
.gnb_1da_1 {
  position: relative;
  bottom: 0.3rem;
}
.gnb_1dli.gnb_al_li_plus .gnb_1da {
}
.gnb_2dli:first-child {
  border: 0;
}
.gnb_2dul {
  display: none;
  position: absolute;
  top: 5.8rem;
  min-width: 16rem;
  padding-top: 2px;
}
.gnb_2dul .gnb_2dul_box {
  border-top: 0;
  padding: 0;
  -webkit-box-shadow: 0px 1px 5px rgba(97, 97, 97, 0.2);
  -moz-box-shadow: 0px 1px 5px rgba(97, 97, 97, 0.2);
  box-shadow: 0px 1px 5px rgba(97, 97, 97, 0.2);
}
.gnb_2da {
  display: block;
  padding: 1rem 1.5rem;
  line-height: 1.5rem;
  background: var(--main-02);
  font-size: 1.3rem;
  color: var(--mono-00);
  text-align: left;
  text-decoration: none;
}
a.gnb_2da:hover {
  color: var(--main-02);
  background: var(--mono-00);
  font-weight: 600;
}

.gnb_2da:focus,
.gnb_2da:hover {
  color: var(--mono-00);
  font-weight: 600;
}
.gnb_1dli_over .gnb_2dul {
  display: block;
  left: 0;
}
.gnb_1dli_over2 .gnb_2dul {
  display: block;
  right: 0;
}
.gnb_wrap .gnb_empty {
  padding: 10px 0;
  width: 100%;
  text-align: center;
  line-height: 2.7rem;
  color: #080808;
}
.gnb_wrap .gnb_empty a {
  color: #3a8afd;
  text-decoration: underline;
}
.gnb_wrap .gnb_al_ul .gnb_empty,
.gnb_wrap .gnb_al_ul .gnb_empty a {
  color: #555;
}

#gnb .gnb_menu_btn {
  background: #4158d1;
  color: #fff;
  width: 50px;
  height: 55px;
  border: 0;
  vertical-align: top;
  font-size: 18px;
}
#gnb .gnb_close_btn {
  background: #fff;
  color: #b6b9bb;
  width: 50px;
  height: 50px;
  border: 0;
  vertical-align: top;
  font-size: 18px;
  position: absolute;
  top: 0;
  right: 0;
}
#gnb .gnb_mnal {
  float: right;
  padding: 0;
}

#gnb_all {
  display: none;
  position: absolute;
  border: 1px solid #c5d6da;
  width: 100%;
  background: #fff;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#gnb_all h2 {
  font-size: 1.3rem;
  padding: 15px 20px;
  border-bottom: 1px solid #e7eeef;
}
#gnb_all .gnb_al_ul:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#gnb_all .gnb_al_ul > li:nth-child(5n + 1) {
  border-left: 0;
}
#gnb_all .gnb_al_li {
  float: left;
  width: 20%;
  min-height: 150px;
  padding: 20px;
  border-left: 1px solid #e7eeef;
}
#gnb_all .gnb_al_li .gnb_al_a {
  font-size: 1.2rem;
  display: block;
  position: relative;
  margin-bottom: 10px;
  font-weight: bold;
  color: #3a8afd;
}
#gnb_all .gnb_al_li li {
  line-height: 2rem;
}
#gnb_all .gnb_al_li li a {
  color: #555;
}
#gnb_all_bg {
  display: none;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

/* 중간 레이아웃 */
#container_wr:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#container_wr {
  margin: 0 auto;
  padding: 0 1rem;
  zoom: 1;
}
#aside {
  float: right;
  width: 300px;
  padding: 0;
  height: 100%;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#container {
  position: relative;
  float: left;
  min-height: 1080px;
  height: auto !important;
  margin: 2rem 0;
  font-size: 1.3rem;
  width: 900px;
  zoom: 1;
}
#container:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
#container_title {
  font-size: 1.3rem;
  margin: 0 auto;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#container_title span {
  display: block;
}

.lt_wr {
  width: 32%;
}
.lt_wr:nth-child(3n + 1) {
  clear: both;
}
.latest_wr {
  margin-bottom: 20px;
  border: 0.2rem solid var(--mono-02);
}
.latest_top_wr {
  border: 0.2rem solid var(--mono-02);
  margin-bottom: 20px;
}
.latest_bottom_wr {
  margin-bottom: 0;
}
.latest_wr .lt_more {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 0 0.6rem;
  background: initial;
  border: 0;
}
.latest_wr .lt_more .lt_more_icon {
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
  background: var(--point-01);
}
.latest_half_wrapper {
  display: flex;
  gap: 2.4rem;
}

/* 메인 페이지 section */
.section-list1,
.section-list2 {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section-list1__half {
  width: 59.8rem;
}
.section-list1__tab {
  display: flex;
  gap: 1.5rem;
  padding: 0 1.5rem 0 3rem;
}
.nav-tabs.section-list1__tab {
  --bs-nav-tabs-border-width: 0.2rem;
  --bs-nav-tabs-border-color: var(--mono-02);
  --bs-nav-tabs-link-active-color: var(--point-01);
}
.nav-item.section-list1__title .nav-link {
  height: 6rem;
  font-size: 1.4rem;
  font-weight: 600;
  border: 0;
  color: var(--mono-04);
}
.nav-item.section-list1__title .nav-link:hover,
.nav-item.section-list1__title .nav-link:focus {
  color: var(--point-01);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--point-01);
}
.nav-item.section-list1__title .nav-link.active {
  color: var(--point-01);
  border-bottom: var(--bs-nav-tabs-border-width) solid var(--point-01);
  border-top: 0;
  border-left: 0;
  border-right: 0;
}
.section-list1__item .section-list1__item-list:nth-child(even) {
  background: var(--mono-01);
}
.section-list1__item-list {
  display: flex;
}
.section-list1__item-link {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--mono-05);
  font-size: 1.4rem;
  padding: 1rem;
}
.section-list1__item-list--end {
  border-top: 0.2rem solid var(--mono-02);
}
.section-list1__item-link--index {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-list1__index-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--mono-05);
}
.section-list1__index-value-wrap {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.section-list1__index-value-wrap--up {
  color: var(--up-02);
}
.section-list1__index-value-wrap--down {
  color: var(--down-01);
}

.section-list2 {
  background: var(--mono-01);
}
.section-list2__tab {
  display: flex;
  padding: 1.4rem 1rem 1.4rem 1.5rem;
  border-bottom: 0.1rem solid var(--mono-02);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--point-01);
}
.section-list2__tab h2 {
  color: var(--point-01);
  font-size: 1.5rem;
  font-weight: 600;
}
.section-list2__item {
  padding: 1rem 1.5rem;
  font-size: 1.3rem;
}
.section-list2__item li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}
.section-list2__item--content1 {
  display: flex;
  align-items: center;
}
.section-list2__item--content1 i {
  margin-right: 0.3rem;
}
.section-list2__item--content1 a {
  width: 20rem;
  display: flex;
}
.section-list2__item--content2 {
  display: flex;
  width: 6rem;
}
.section-list2__list-more {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.6rem;
  background: initial;
  border: 0;
}
.section-list2__list-more-icon {
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100rem;
  background: var(--point-01);
  color: #fff;
}

.section-list2__rank-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.section-list2__rank-content .rank_bg {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--point-01);
}
.section-list2__rank-profile img {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
}
.section-list2__rank-info {
  display: flex;
  flex-direction: column;
}
.section-list2__rank-info .rank_name {
  font-size: 1.4rem;
  font-weight: 600;
}
.section-list2__rank-info .profile_img {
  display: none;
}
.section-list2__rank-info .rank_name .sv_wrap {
  font-weight: 600;
}
section-list2__rank-info .rank_level {
  font-size: 1.3rem;
}
.section-list2__rank-change {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.3rem;
}
.section-list2__rank-change--up {
  color: var(--up-02);
}
.section-list2__rank-change--down {
  color: var(--down-01);
}
.section-list2__rank-change--none {
  color: var(--mono-04);
}

#main-tab-setting {
  position: absolute;
  top: 0.6rem;
  right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.6rem;
  background: initial;
  border: 0;
}

/* 하단 광고 배너 */
.footer-ad-banner {
  margin: 20px auto 0;
  width: 1240px;
  padding: 0 10px;
}
.footer-ad-banner__img {
  width: 100%;
}

/* 하단 최신글 */
.footer-latest-container {
  margin: 20px auto 0;
  width: 1240px;
  padding: 0 10px;
  font-size: 1.3rem;
}

/* 하단 레이아웃 */
#ft {
  background: var(--main-02);
  margin: 4.8rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#ft_wr {
  width: 100%;
  padding: 1.5rem 3rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 0.1rem solid var(--mono-02);
}
#ft_wr .ft_dv_bar {
  display: flex;
  align-items: center;
  height: 1.2rem;
  margin: 0 1rem;
  border-right: 0.1rem solid #fff;
}
#ft_wr2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 3.5rem 0;
}
#ft_link {
  display: flex;
  align-items: center;
}
#ft_link a {
  display: flex;
  color: #fff;
  font-size: 1.1rem;
  padding: 0 1rem;
}
#ft_catch {
  display: flex;
  justify-content: center;
  margin: 20px 0 10px;
}
#ft_address {
  color: var(--mono-00);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
#ft_copy {
  color: var(--mono-00);
  font-size: 1.1rem;
}

/* 게시물 선택복사 선택이동 */
#copymove {
}
#copymove .win_desc {
  text-align: center;
  display: block;
}
#copymove .tbl_wrap {
  margin: 20px;
}
#copymove .win_btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  margin: 2rem;
}
.copymove_current {
  background: var(--point-01);
  padding: 3px 6px;
  color: var(--mono-00);
  border-radius: 3px;
}
.copymove_currentbg {
  background: #f4f4f4;
}

/* 화면낭독기 사용자용 */
#hd_login_msg {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.msg_sound_only,
.sound_only {
  display: inline-block !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
  border: 0 !important;
  overflow: hidden !important;
}

/* 본문 바로가기 */
#skip_to_container a {
  z-index: 100000;
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
#skip_to_container a:focus,
#skip_to_container a:active {
  width: 100%;
  height: 75px;
  background: #21272e;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 3.3rem;
}

/* ie6 이미지 너비 지정 */
.img_fix {
  width: 100%;
  height: auto;
}

/* 캡챠 자동등록(입력)방지 기본 -pc */
#captcha {
  display: inline-block;
  position: relative;
}
#captcha legend {
  position: absolute;
  margin: 0;
  padding: 0;
  font-size: 0;
  line-height: 0;
  text-indent: -9999rem;
  overflow: hidden;
}
#captcha #captcha_img {
  height: 40px;
  border: 1px solid #898989;
  vertical-align: top;
  padding: 0;
  margin: 0;
}
#captcha #captcha_mp3 {
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  vertical-align: middle;
  overflow: hidden;
  cursor: pointer;
  background: url("../../../img/captcha2.png") no-repeat;
  text-indent: -999px;
  border-radius: 3px;
}
#captcha #captcha_reload {
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  vertical-align: middle;
  overflow: hidden;
  cursor: pointer;
  background: url("../../../img/captcha2.png") no-repeat 0 -40px;
  text-indent: -999px;
  border-radius: 3px;
}
#captcha #captcha_key {
  margin: 0 0 0 3px;
  padding: 0 5px;
  width: 90px;
  height: 40px;
  border: 1px solid #ccc;
  background: #fff;
  font-size: 1.333rem;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  vertical-align: top;
}
#captcha #captcha_info {
  display: block;
  margin: 5px 0 0;
  font-size: 0.95rem;
  letter-spacing: -0.1rem;
}

/* 캡챠 자동등록(입력)방지 기본 - mobile */
#captcha.m_captcha audio {
  display: block;
  margin: 0 0 5px;
  width: 187px;
}
#captcha.m_captcha #captcha_img {
  width: 160px;
  height: 60px;
  border: 1px solid #e9e9e9;
  margin-bottom: 3px;
  margin-top: 5px;
  display: block;
}
#captcha.m_captcha #captcha_reload {
  position: static;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  vertical-align: middle;
  overflow: hidden;
  cursor: pointer;
  background: url("../../../img/captcha2.png") no-repeat 0 -40px;
  text-indent: -999px;
}
#captcha.m_captcha #captcha_reload span {
  display: none;
}
#captcha.m_captcha #captcha_key {
  margin: 0;
  padding: 0 5px;
  width: 115px;
  height: 29px;
  border: 1px solid #b8c9c2;
  background: #f7f7f7;
  font-size: 1.333rem;
  font-weight: bold;
  text-align: center;
  line-height: 29px;
  margin-left: 3px;
}
#captcha.m_captcha #captcha_info {
  display: block;
  margin: 5px 0 0;
  font-size: 0.95rem;
  letter-spacing: -0.1rem;
}
#captcha.m_captcha #captcha_mp3 {
  width: 31px;
  height: 31px;
  background: url("../../../img/captcha2.png") no-repeat 0 0;
  vertical-align: top;
  overflow: hidden;
  cursor: pointer;
  text-indent: -9999px;
  border: none;
}

/* ckeditor 5 */
.ck.ck-editor__editable {
  min-height: 600px !important;
}
#bo_v_con div {
  position: relative;
  margin-bottom: 1rem;
}
#bo_v_con iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.ck-powered-by {
  display: none !important;
}

/* ckeditor 단축키 */
.cke_sc {
  margin: 0 0 5px;
  text-align: right;
}
.btn_cke_sc {
  display: inline-block;
  padding: 0 10px;
  height: 23px;
  border: 1px solid #ccc;
  background: #fafafa;
  color: #000;
  text-decoration: none;
  line-height: 1.9rem;
  vertical-align: middle;
  cursor: pointer;
}
.cke_sc_def {
  margin: 0 0 5px;
  padding: 10px;
  border: 1px solid #ccc;
  background: #f7f7f7;
  text-align: center;
}
.cke_sc_def dl {
  margin: 0 0 5px;
  text-align: left;
  zoom: 1;
}
.cke_sc_def dl:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.cke_sc_def dt,
.cke_sc_def dd {
  float: left;
  margin: 0;
  padding: 5px 0;
  border-bottom: 1px solid #e9e9e9;
}
.cke_sc_def dt {
  width: 20%;
  font-weight: bold;
}
.cke_sc_def dd {
  width: 30%;
}

/* ckeditor 태그 기본값 */
#bo_v_con ul {
  display: block;
  list-style-type: disc;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
#bo_v_con ol {
  display: block;
  list-style-type: decimal;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: 0;
  margin-right: 0;
  padding-left: 40px;
}
#bo_v_con li {
  display: list-item;
}

/* 버튼 */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  font-size: 1.5rem;
  font-weight: 400;
  padding: 0;
  box-shadow: none;
  border-radius: 0.6rem;
}
.btn-default {
  --bs-btn-color: var(--mono-02);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-02);
  --bs-btn-hover-bg: var(--point-01);
  --bs-btn-hover-border-color: var(--point-01);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: var(--mono-02);
  --bs-btn-active-bg: var(--point-01);
  --bs-btn-active-border-color: var(--point-01);
  --bs-btn-disabled-color: var(--mono-02);
  --bs-btn-disabled-bg: var(--point-01);
  --bs-btn-disabled-border-color: var(--point-01);
  box-shadow: none;
  height: 5.5rem;
}
.btn-icon {
  --bs-btn-color: var(--mono-04);
  --bs-btn-bg: none;
  --bs-btn-border-color: none;
  --bs-btn-hover-color: var(--point-01);
  --bs-btn-hover-bg: none;
  --bs-btn-hover-border-color: none;
  --bs-btn-focus-shadow-rgb: var(--point-01);
  --bs-btn-active-color: var(--point-01);
  --bs-btn-active-bg: none;
  --bs-btn-active-border-color: none;
  --bs-btn-disabled-color: var(--mono-04);
  --bs-btn-disabled-bg: none;
  --bs-btn-disabled-border-color: none;
  box-shadow: none;
  width: 2.4rem;
  height: 2.4rem;
}
.btn-icon-2 {
  --bs-btn-color: var(--point-01);
  --bs-btn-bg: none;
  --bs-btn-border-color: none;
  --bs-btn-hover-color: var(--mono-04);
  --bs-btn-hover-bg: none;
  --bs-btn-hover-border-color: none;
  --bs-btn-focus-shadow-rgb: var(--point-01);
  --bs-btn-active-color: var(--mono-04);
  --bs-btn-active-bg: none;
  --bs-btn-active-border-color: none;
  --bs-btn-disabled-color: var(--mono-04);
  --bs-btn-disabled-bg: none;
  --bs-btn-disabled-border-color: none;
  box-shadow: none;
  width: 2.4rem;
  height: 2.4rem;
}
.btn-icon-outline {
  --bs-btn-color: var(--mono-03);
  --bs-btn-bg: var(--mono-00);
  --bs-btn-border-color: var(--mono-02);
  --bs-btn-hover-color: var(--mono-03);
  --bs-btn-hover-bg: var(--mono-02);
  --bs-btn-hover-border-color: var(--mono-02);
  --bs-btn-focus-shadow-rgb: var(--main-02);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--point-01);
  --bs-btn-active-border-color: var(--point-01);
  --bs-btn-disabled-color: var(--mono-03);
  --bs-btn-disabled-bg: var(--mono-00);
  --bs-btn-disabled-border-color: var(--mono-02);
  box-shadow: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;
}
.btn-icon-text {
  --bs-btn-color: var(--mono-00);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--main-01);
  --bs-btn-hover-border-color: var(--main-01);
  --bs-btn-focus-shadow-rgb: var(--main-02);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--main-02);
  --bs-btn-active-border-color: var(--main-02);
  --bs-btn-disabled-color: var(--mono-00);
  --bs-btn-disabled-bg: var(--point-01);
  --bs-btn-disabled-border-color: var(--point-01);
  gap: 0.6rem;
  box-shadow: none;
  height: 2.4rem;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-size: 1.1rem;
}
.btn-text {
  --bs-btn-color: var(--mono-00);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--main-01);
  --bs-btn-hover-border-color: var(--main-01);
  --bs-btn-focus-shadow-rgb: var(--main-02);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--main-02);
  --bs-btn-active-border-color: var(--main-02);
  --bs-btn-disabled-color: var(--mono-00);
  --bs-btn-disabled-bg: var(--point-01);
  --bs-btn-disabled-border-color: var(--point-01);
  box-shadow: none;
  height: 2.4rem;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-size: 1.1rem;
}
.btn-text-2 {
  --bs-btn-color: var(--mono-05);
  --bs-btn-bg: var(--mono-03);
  --bs-btn-border-color: var(--mono-03);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--mono-04);
  --bs-btn-hover-border-color: var(--mono-04);
  --bs-btn-focus-shadow-rgb: var(--mono-05);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--mono-05);
  --bs-btn-active-border-color: var(--mono-05);
  --bs-btn-disabled-color: var(--mono-05);
  --bs-btn-disabled-bg: var(--mono-03);
  --bs-btn-disabled-border-color: var(--mono-03);
  box-shadow: none;
  height: 2.4rem;
  border-radius: 0.5rem;
  padding: 0 1rem;
  font-size: 1.1rem;
}
.btn-icon-text-box-1 {
  --bs-btn-color: var(--mono-04);
  --bs-btn-bg: var(--mono-02);
  --bs-btn-border-color: var(--mono-02);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--mono-04);
  --bs-btn-hover-border-color: var(--mono-04);
  --bs-btn-focus-shadow-rgb: var(--main-05);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--mono-05);
  --bs-btn-active-border-color: var(--mono-05);
  --bs-btn-disabled-color: var(--mono-02);
  --bs-btn-disabled-bg: var(--mono-04);
  --bs-btn-disabled-border-color: var(--mono-04);
  box-shadow: none;
  display: flex;
  gap: 0.6rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  width: 9rem;
  height: 3rem;
}
.btn-icon-text-box-2 {
  --bs-btn-color: var(--mono-00);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-00);
  --bs-btn-hover-bg: var(--main-01);
  --bs-btn-hover-border-color: var(--main-01);
  --bs-btn-focus-shadow-rgb: var(--main-02);
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--main-02);
  --bs-btn-active-border-color: var(--main-02);
  --bs-btn-disabled-color: var(--mono-00);
  --bs-btn-disabled-bg: var(--point-01);
  --bs-btn-disabled-border-color: var(--point-01);
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  width: 9rem;
  height: 3rem;
}
.btn-icon-text-box-2__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.btn-round-text {
  --bs-btn-color: var(--mono-05);
  --bs-btn-bg: var(--mono-00);
  --bs-btn-border-color: var(--mono-03);
  --bs-btn-hover-color: var(--mono-05);
  --bs-btn-hover-bg: var(--mono-02);
  --bs-btn-hover-border-color: var(--mono-03);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: var(--mono-00);
  --bs-btn-active-bg: var(--point-01);
  --bs-btn-active-border-color: var(--point-01);
  --bs-btn-disabled-color: var(--mono-05);
  --bs-btn-disabled-bg: var(--mono-00);
  --bs-btn-disabled-border-color: var(--mono-03);
  box-shadow: none;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  border-radius: 5rem;
  width: 8rem;
}
.btn-round-text-2 {
  --bs-btn-color: var(--mono-00);
  --bs-btn-bg: var(--point-01);
  --bs-btn-border-color: var(--point-01);
  --bs-btn-hover-color: var(--mono-05);
  --bs-btn-hover-bg: var(--mono-02);
  --bs-btn-hover-border-color: var(--mono-03);
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: var(--mono-05);
  --bs-btn-active-bg: var(--mono-00);
  --bs-btn-active-border-color: var(--mono-03);
  --bs-btn-disabled-color: var(--mono-05);
  --bs-btn-disabled-bg: var(--mono-00);
  --bs-btn-disabled-border-color: var(--mono-03);
  box-shadow: none;
  padding: 0.8rem 0;
  font-size: 1.1rem;
  border-radius: 5rem;
  width: 8rem;
}

/* form control */
.form-check-input {
  margin-top: 0.15em;
  font-size: 1.6rem;
}
.form-check-input:checked {
  background-color: var(--main-02);
  border-color: var(--main-02);
}
.form-check-input[type="checkbox"] {
  border-radius: 0.3rem;
}
.form-select {
  --bs-form-select-bg-img: url("../img/select_drop.svg");
  display: block;
  width: 100%;
  min-width: 15rem;
  height: 4rem;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img),
    var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid var(--mono-02);
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form-select__search-category {
  font-size: 1.1rem;
  color: var(--mono-05);
  padding: 1.2rem 1rem;
  border: 0.1rem solid var(--mono-02);
}

/* modal */
.modal-search {
  --bs-modal-width: 400px;
  --bs-modal-footer-border-color: var(--mono-02);
}
.modal-sm {
  --bs-modal-width: 400px;
}

/* 게시판 검색창 */
.modal-search .modal-header {
  padding: 1rem 1.5rem;
  border-bottom: 0;
}
.modal-search .modal-title {
  font-size: 1.8rem;
  font-weight: 600;
}
.modal-search .modal-body {
  padding: 1.5rem 2.5rem;
}
.modal-search .modal-body form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-search .modal-footer {
  padding: 2rem;
  margin: 0 1rem;
}
.modal-search .modal-footer .btn {
  width: 6rem;
}
.modal-search .form-control {
  font-size: 1.3rem;
}
.modal-open {
  overflow: auto;
  padding-right: 0 !important;
}

/* dropdown */
.dropdown-menu {
  --bs-dropdown-zindex: 1000;
  --bs-dropdown-min-width: 10rem;
  --bs-dropdown-padding-x: 0;
  --bs-dropdown-padding-y: 0.5rem;
  --bs-dropdown-spacer: 0.125rem;
  --bs-dropdown-font-size: 1.1rem;
  --bs-dropdown-color: var(--bs-body-color);
  --bs-dropdown-bg: var(--bs-body-bg);
  --bs-dropdown-border-color: var(--bs-border-color-translucent);
  --bs-dropdown-border-radius: var(--bs-border-radius);
  --bs-dropdown-border-width: var(--bs-border-width);
  --bs-dropdown-inner-border-radius: calc(
    var(--bs-border-radius) - var(--bs-border-width)
  );
  --bs-dropdown-divider-bg: var(--bs-border-color-translucent);
  --bs-dropdown-divider-margin-y: 0.5rem;
  --bs-dropdown-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-dropdown-link-color: var(--bs-body-color);
  --bs-dropdown-link-hover-color: var(--mono-05);
  --bs-dropdown-link-hover-bg: var(--mono-01);
  --bs-dropdown-link-active-color: var(--mono-05);
  --bs-dropdown-link-active-bg: var(--mono-02);
  --bs-dropdown-link-disabled-color: var(--bs-tertiary-color);
  --bs-dropdown-item-padding-x: 1rem;
  --bs-dropdown-item-padding-y: 0.25rem;
  --bs-dropdown-header-color: #6c757d;
  --bs-dropdown-header-padding-x: 1rem;
  --bs-dropdown-header-padding-y: 0.5rem;
  position: absolute;
  z-index: var(--bs-dropdown-zindex);
  display: none;
  min-width: var(--bs-dropdown-min-width);
  padding: var(--bs-dropdown-padding-y) var(--bs-dropdown-padding-x);
  margin: 0;
  font-size: var(--bs-dropdown-font-size);
  color: var(--bs-dropdown-color);
  text-align: left;
  list-style: none;
  background-color: var(--bs-dropdown-bg);
  background-clip: padding-box;
  border: var(--bs-dropdown-border-width) solid var(--bs-dropdown-border-color);
  border-radius: var(--bs-dropdown-border-radius);
}

.btn_close {
  border: 1px solid #dcdcdc;
  cursor: pointer;
  border-radius: 3px;
  background: #fff;
}
a.btn_close {
  text-align: center;
  line-height: 50px;
}

a.btn_frmline,
button.btn_frmline {
  display: inline-block;
  width: 128px;
  padding: 0 5px;
  height: 40px;
  border: 0;
  background: #434a54;
  border-radius: 3px;
  color: #fff;
  text-decoration: none;
  vertical-align: top;
} /* 우편번호검색버튼 등 */
a.btn_frmline {
}
button.btn_frmline {
  font-size: 1rem;
}

/* 기본테이블 */
.tbl_wrap table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0 5px;
  background: #fff;
  border-top: 1px solid var(--mono-02);
  border-bottom: 1px solid var(--mono-02);
}
.tbl_wrap caption {
  padding: 10px 0;
  font-weight: bold;
  text-align: left;
}
.tbl_head01 {
  margin: 0 0 10px;
}
.tbl_head01 caption {
  padding: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.tbl_head01 thead th {
  padding: 2rem 0;
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--mono-04);
  text-align: center;
  border-bottom: 0.1rem solid var(--mono-02);
  height: 40px;
}
.tbl_head01 thead th a {
  color: var(--mono-04);
}
.tbl_head01 thead th.th_left {
  text-align: left;
}
.tbl_head01 thead th input {
  vertical-align: top;
} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head01 tfoot th,
.tbl_head01 tfoot td {
  padding: 10px 0;
  border-top: 0.1rem solid var(--mono-02);
  border-bottom: 0.1rem solid var(--mono-02);
  background: #d7e0e2;
  text-align: center;
}
.tbl_head01 tbody th {
  padding: 8px 0;
  border-bottom: 0.1rem solid var(--mono-02);
}
.tbl_head01 td {
  color: #666;
  padding: 10px 5px;
  border-top: 0.1rem solid var(--mono-02);
  border-bottom: 0.1rem solid var(--mono-02);
  height: 4.5rem;
  word-break: break-all;
}
.tbl_head01 tbody tr:hover td {
  background: #fafafa;
}

.tbl_head02 {
  margin: 0 0 10px;
}
.tbl_head02 caption {
  padding: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}
.tbl_head02 thead th {
  padding: 5px 0;
  border-top: 1px solid #d1dee2;
  border-bottom: 1px solid #d1dee2;
  background: #e5ecef;
  color: #383838;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: -0.1rem;
}
.tbl_head02 thead a {
  color: #383838;
}
.tbl_head02 thead th input {
  vertical-align: top;
} /* middle 로 하면 게시판 읽기에서 목록 사용시 체크박스 라인 깨짐 */
.tbl_head02 tfoot th,
.tbl_head02 tfoot td {
  padding: 10px 0;
  border-top: 1px solid #c1d1d5;
  border-bottom: 1px solid #c1d1d5;
  background: #d7e0e2;
  text-align: center;
}
.tbl_head02 tbody th {
  padding: 5px 0;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
}
.tbl_head02 td {
  padding: 5px 3px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  background: #fff;
  line-height: 1.4rem;
  word-break: break-all;
}
.tbl_head02 a {
}

/* 폼 테이블 */
.tbl_frm01 {
  margin: 0 0 20px;
}
.tbl_frm01 table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.tbl_frm01 th {
  width: 70px;
  padding: 7px 13px;
  border: 1px solid #e9e9e9;
  border-left: 0;
  background: #f5f8f9;
  text-align: left;
}
.tbl_frm01 td {
  padding: 7px 10px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  background: transparent;
}
.wr_content textarea,
.tbl_frm01 textarea,
.form_01 textarea,
.frm_input {
  border: 1px solid var(--mono-02);
  background: #fff;
  color: #000;
  vertical-align: middle;
  border-radius: 5px;
  padding: 5px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.tbl_frm01 textarea {
  padding: 2px 2px 3px;
}
.frm_input {
  height: 40px;
}

.full_input {
  width: 100%;
}
.half_input {
  width: 49.5%;
}
.twopart_input {
  width: 385px;
  margin-right: 10px;
}
.tbl_frm01 textarea,
.write_div textarea {
  width: 100%;
  height: 100px;
}
.tbl_frm01 a {
  text-decoration: none;
}
.tbl_frm01 .frm_file {
  display: block;
  margin-bottom: 5px;
}
.tbl_frm01 .frm_info {
  display: block;
  padding: 0 0 5px;
  line-height: 155%;
  font-size: 1.3rem;
}

.form-control {
  display: block;
  width: auto;
  height: 4rem;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--mono-05);
  background-color: var(--mono-00);
  background-clip: padding-box;
  border: 0.1rem solid var(--mono-02);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.4rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.register-input {
  flex-grow: 1;
  width: 100%;
  border: 0.1rem solid var(--mono-02);
}
.register-input::placeholder {
  color: var(--mono-04);
}

/*기본 리스트*/
.list_01 ul {
  border-top: 1px solid #ececec;
}
.list_01 li {
  border-bottom: 1px solid #ececec;
  background: #fff;
  padding: 10px 15px;
  list-style: none;
  position: relative;
}
.list_01 li:nth-child(odd) {
  background: #f6f6f6;
}
.list_01 li:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.list_01 li:hover {
  background: #f9f9f9;
}
.list_01 li.empty_li {
  text-align: center;
  padding: 20px 0;
  color: #666;
}

/*폼 리스트*/
.form_01 h2 {
  font-size: 1.167rem;
}
.form_01 li {
  margin-bottom: 10px;
}
.form_01 ul:after,
.form_01 li:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.form_01 .left_input {
  float: left;
}
.form_01 .margin_input {
  margin-right: 1%;
}
.form_01 textarea {
  height: 100px;
  width: 100%;
}
.form_01 .frm_label {
  display: inline-block;
  width: 130px;
}

/* 자료 없는 목록 */
.empty_table {
  padding: 50px 0 !important;
  text-align: center;
}
.empty_list {
  padding: 20px 0 !important;
  color: #666;
  text-align: center;
}

/* 필수입력 */
.required,
textarea.required {
  background-image: url("../img/require.png") !important;
  background-repeat: no-repeat !important;
  background-position: right top !important;
}

/* 테이블 항목별 정의 */
.td_board {
  width: 80px;
  text-align: center;
}
.td_category {
  width: 80px;
  text-align: center;
}
.td_chk {
  text-align: center;
}
.td_date {
  width: 60px;
  text-align: center;
}
.td_datetime {
  width: 110px;
  text-align: center;
}
.td_group {
  width: 80px;
  text-align: center;
}
.td_mb_id {
  width: 100px;
  text-align: center;
}
.td_mng {
  width: 80px;
  text-align: center;
}
.td_name {
  width: 100px;
  text-align: left;
}
.td_nick {
  width: 100px;
  text-align: center;
}
.td_num {
  width: 50px;
  text-align: center;
}
.td_numbig {
  width: 80px;
  text-align: center;
}
.td_stat {
  width: 60px;
  text-align: center;
}

.txt_active {
  color: #5d910b;
}
.txt_done {
  color: #e8180c;
}
.txt_expired {
  color: #ccc;
}
.txt_rdy {
  color: #8abc2a;
}

/* 새창 기본 스타일 */
.new_win {
  position: relative;
}
.new_win .tbl_wrap {
  margin: 0 20px;
}
.new_win #win_title {
  font-size: 1.3rem;
  height: 50px;
  line-height: 30px;
  padding: 10px 20px;
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}
.new_win #win_title .sv {
  font-size: 0.75rem;
  line-height: 1.2rem;
}
.new_win .win_ul {
  margin-bottom: 15px;
  padding: 0 20px;
}
.new_win .win_ul:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.new_win .win_ul li {
  float: left;
  background: #fff;
  text-align: center;
  padding: 0 10px;
  border: 1px solid #d6e9ff;
  border-radius: 30px;
  margin-left: 5px;
}
.new_win .win_ul li:first-child {
  margin-left: 0;
}
.new_win .win_ul li a {
  display: block;
  padding: 8px 0;
  color: #6794d3;
}
.new_win .win_ul .selected {
  background: #3a8afd;
  border-color: #3a8afd;
  position: relative;
  z-index: 5;
}
.new_win .win_ul .selected a {
  color: #fff;
  font-weight: bold;
}
.new_win .win_desc {
  position: relative;
  margin: 10px;
  border-radius: 5px;
  font-size: 1rem;
  background: #f2838f;
  color: #fff;
  line-height: 50px;
  text-align: left;
  padding: 0 20px;
}
.new_win .win_desc i {
  font-size: 1.2rem;
  vertical-align: baseline;
}
.new_win .win_desc:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 50px;
  background: #da4453;
  border-radius: 3px 0 0 3px;
}
.new_win .frm_info {
  font-size: 0.92rem;
  color: #919191;
}
.new_win .win_total {
  float: right;
  display: inline-block;
  line-height: 30px;
  font-weight: normal;
  font-size: 0.75rem;
  color: #3a8afd;
  background: #f6f6f6;
  padding: 0 10px;
  border-radius: 5px;
}
.new_win .new_win_con {
  margin: 20px 0;
  padding: 0 20px 20px;
}
.new_win .new_win_con:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.new_win .new_win_con2 {
  margin: 20px 0;
}
.new_win .btn_confirm:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.new_win .win_btn {
  text-align: center;
}
.new_win .cert_btn {
  margin-bottom: 30px;
  text-align: center;
}
.new_win .btn {
  width: 8rem;
  letter-spacing: -1.2px;
}

/* 검색결과 색상 */
.sch_word {
  color: var(--red);
  font-weight: 600;
  line-height: 18px;
}

/* 자바스크립트 alert 대안 */
#validation_check {
  margin: 100px auto;
  width: 500px;
}
#validation_check h1 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}
#validation_check p {
  margin-bottom: 20px;
  padding: 30px 20px;
  border: 1px solid #e9e9e9;
  background: #fff;
}

/* 사이드뷰 */
.sv_wrap {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: normal;
}
.sv_wrap .sv {
  z-index: 1000;
  display: none;
  margin: 5px 0 0;
  font-size: 1.3rem;
  background: var(--mono-00);
  text-align: center;
  -webkit-box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
}
.sv_wrap .sv a:last-child {
  border-bottom: 0;
}
.sv_wrap .sv a {
  display: inline-block;
  margin: 0;
  padding: 8px 12px;
  white-space: nowrap;
  font-weight: 400;
  line-height: initial;
  text-decoration: none;
  border-bottom: 0.1rem solid var(--mono-02);
}
.sv_wrap .sv a:hover {
  color: #000;
}
.sv_wrap .profile_img {
  display: flex;
  align-items: center;
}
.sv_member {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--mono-05);
  white-space: nowrap;
}
.sv_member .profile_img img {
  width: 1.5rem;
  height: 1.5rem;
}
.sv_on {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: 23px;
  left: 0px;
  width: auto;
  height: auto;
}
.sv_nojs .sv {
  display: block;
}

/* 페이징 */
.pg_wrap {
  clear: both;
  float: left;
  display: inline-block;
  margin: 3rem 0;
}
.pg_wrap:after {
  display: block;
  visibility: hidden;
  clear: both;
  content: "";
}
.pg {
  text-align: center;
}
.pg_page,
.pg_current {
  display: inline-block;
  vertical-align: middle;
  background: var(--mono-00);
  border: 1px solid var(--mono-02);
}
.pg a:focus,
.pg a:hover {
  text-decoration: none;
}
.pg_page {
  color: var(--mono-05);
  font-size: 1.2rem;
  height: 24px;
  line-height: 20px;
  min-width: 24px;
  text-decoration: none;
  border-radius: 0.5rem;
}
.pg_page:hover {
  background-color: #fafafa;
}
.pg_prev {
  /* text-indent: -999px; */
  /* overflow: hidden; */
  /* background: url("../img/btn_prev.gif") no-repeat 50% 50% var(--mono-00); */
  padding: 0;
  /* border: 1px solid var(--mono-02); */
  border: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.pg_next {
  /* text-indent: -999px; */
  /* overflow: hidden; */
  /* background: url("../img/btn_next.gif") no-repeat 50% 50% var(--mono-00); */
  padding: 0;
  /* border: 1px solid var(--mono-02); */
  border: 0;
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.pg_start:hover,
.pg_prev:hover,
.pg_end:hover,
.pg_next:hover {
  background-color: #fafafa;
}

.pg_current {
  display: inline-block;
  background: var(--point-01);
  border: 1px solid var(--point-01);
  font-size: 1.2rem;
  color: var(--mono-00);
  height: 24px;
  line-height: 20px;
  min-width: 24px;
  border-radius: 0.5rem;
}

/* cheditor 이슈 */
.cheditor-popup-window *,
.cheditor-popup-window :after,
.cheditor-popup-window :before {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/* Mobile화면으로 */
#device_change {
  display: block;
  margin: 0.3rem;
  padding: 0.5rem 0;
  border: 1px solid #eee;
  border-radius: 2rem;
  background: #fff;
  color: #000;
  font-size: 2rem;
  text-decoration: none;
  text-align: center;
}

/* custom components */
/* 게시판 틀 */
.board-wrap {
  width: 900px;
  min-height: 1080px;
  height: auto !important;
  border: 0.2rem solid var(--mono-02);
  border-radius: 0.5rem;
}
.board-wrap__title {
  border-bottom: 0.2rem solid var(--mono-02);
  padding: 1.6rem 3rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--main-02);
}
.board-wrap__title a,
.board-wrap__title span {
  margin-bottom: 0;
  padding: 0 0.5rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--main-02);
}
.board-wrap__body {
  padding: 0 1rem;
}
.board-wrap__tab-wrap {
  padding: 1rem 2rem;
  border-bottom: 0.2rem solid var(--mono-02);
}
.board-wrap__tab {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.board-wrap__tab-item {
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  color: var(--mono-04);
}
.board-wrap__tab-item a {
  color: var(--mono-04);
}
.board-wrap__tab-item__active {
  color: var(--point-01);
  font-weight: 600;
  border-bottom: 0.2rem solid var(--point-01);
}
.board-wrap__tab-item__active a {
  color: var(--point-01);
}
.board-wrap__tab-item:focus,
.board-wrap__tab-item:hover,
.board-wrap__tab-item:active {
  font-weight: 600;
  color: var(--point-01);
  border-bottom: 0.2rem solid var(--point-01);
}

/* custom function class */
.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.collapsing {
  transition: height 0.1s ease;
}

/* sweet alert 2 */
div:where(.swal2-container) .swal2-html-container {
  font-size: 1.3rem !important;
  margin: 0 !important;
  padding: 0 3rem 2rem !important;
}
.swal2-modal {
  width: 350px !important;
  padding: 0 0 3.2rem;
  z-index: 100001;
}
.alert__title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--main-02);
  padding: 3.6rem 3rem 2rem;
}
.alert__text {
  font-size: 1.3rem;
  color: var(--mono-05);
}
.alert__confirm-btn {
  font-size: 1.1rem !important;
  color: var(--mono-00) !important;
  padding: 0 1rem !important;
  width: 8rem !important;
  height: 2.4rem !important;
  background: var(--point-01) !important;
}
.alert__cancel-btn {
  font-size: 1.1rem !important;
  color: var(--mono-05) !important;
  padding: 0 1rem !important;
  width: 8rem !important;
  height: 2.4rem !important;
  background: var(--mono-03) !important;
}

.add-favorite {
  color: var(--point-01) !important;
}

.level-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
