@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: "Malgun Gothic", arial, sans-serif;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  font-family: "Malgun Gothic", arial, sans-serif;
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

html {
  overflow: overlay; }
  html ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 17px;
    height: 17px;
    border: 1px solid transparent;
    background-color: #FFFFFF; }
  html ::-webkit-scrollbar-thumb {
    border: 4px solid transparent;
    background-clip: content-box;
    background-color: #DDDDDD; }

body {
  background-color: #f3f3f5; }

.lay_wrap {
  min-width: 1024px; }

/* 컨텐츠 레이아웃 */
.lay_contents_wrap {
  margin-top: 42px;
  padding: 20px 50px; }
  .main .lay_contents_wrap {
    margin-top: 0; }

.content_wrapper {
  padding: 20px;
  border: 1px solid #DADBDC;
  background-color: #FFFFFF; }

.lay_contents_box {
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
  margin-bottom: 10px;
  column-gap: 10px; }
  .lay_contents_box + .lay_contents_box {
    margin-top: 33px; }

.lay_contents_col {
  flex: 1;
  min-width: 0;
  box-sizing: border-box; }
  .lay_contents_col:first-child {
    margin-left: 0; }
  .lay_contents_col .content_body_wrap {
    /*display: flex;
		flex-wrap: wrap;
		.content_body {
			flex: 1;
			& + .content_body {
				margin-left: 10px;
			}
		}*/
    display: table;
    table-layout: fixed;
    width: 100%; }
    .lay_contents_col .content_body_wrap .content_body {
      display: table-cell;
      width: 50%; }
      .lay_contents_col .content_body_wrap .content_body + .content_body {
        padding-left: 18px; }

.lay_contents_arr {
  width: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative; }
  .lay_contents_arr:after {
    content: '';
    display: block;
    border-top: 10px solid transparent;
    border-left: 10px solid #B8BDC0;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-right: -10px;
    position: relative;
    top: calc(50% - 20px); }

.lay_contents_button {
  text-align: center;
  padding-top: 6px;
  padding-bottom: 11px; }
  .lay_contents_button .btn {
    min-width: 125px; }

/* 페이지 타이틀 */
/* 메인 컨텐츠 레이아웃 */
.main_contents_wrap {
  padding: 20px 50px; }

.main_contents_box {
  display: flex;
  margin-bottom: 10px; }

.main_contents_col {
  flex: 1;
  min-width: 0;
  margin-left: 10px;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #DADBDC;
  background-color: #FFFFFF; }
  .main_contents_col:first-child {
    margin-left: 0; }

/* Header Layout */
.lay_header {
  position: relative;
  padding-left: 50px;
  padding-right: 50px;
  border-bottom: 1px solid #d7d7d7;
  background-color: #FFFFFF; }
  .lay_header .header_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    height: 84px; }
  .lay_header .site_title {
    flex: none;
    padding-bottom: 10px; }
  .lay_header .nav_gnb {
    flex: auto; }
  .lay_header .site_right {
    flex: none; }

/* GNB Menu */
.nav_gnb .gnb_root {
  display: flex;
  align-items: center;
  justify-content: center; }

.nav_gnb .gnb_item .link_menu {
  color: #050505;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  display: block;
  padding: 10px 18px 14px;
  position: relative;
  text-decoration: none;
  cursor: pointer; }
  .nav_gnb .gnb_item .link_menu:after {
    content: ' ';
    display: block;
    width: 1px;
    height: 13px;
    position: absolute;
    top: calc(50% - (13px / 2));
    right: 0;
    background-color: #bfbfbf; }

.nav_gnb .gnb_item:last-child .link_menu:after {
  content: none; }

.nav_gnb .gnb_root > .gnb_item:hover .gnb_list_wrap, .nav_gnb .gnb_root > .gnb_item.active .gnb_list_wrap {
  display: block; }

.nav_gnb .gnb_root > .gnb_item:hover .gnb_list_wrap {
  z-index: 5; }

.nav_gnb .gnb_item.active .link_menu,
.nav_gnb .gnb_item:hover .link_menu {
  color: #F85000; }

.nav_gnb .gnb_list_wrap {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  background-color: #343536; }
  .nav_gnb .gnb_list_wrap .gnb_depth2 {
    display: flex;
    justify-content: center; }
    .nav_gnb .gnb_list_wrap .gnb_depth2 .link_menu {
      color: #FFFFFF;
      font-size: 13px;
      text-decoration: none;
      opacity: 0.8; }
      .nav_gnb .gnb_list_wrap .gnb_depth2 .link_menu:hover {
        opacity: 1; }
    .nav_gnb .gnb_list_wrap .gnb_depth2 .gnb_item.active .link_menu {
      opacity: 1; }

/* GNB 우측 컨텐츠 */
.site_right {
  position: relative;
  padding-top: 27px;
  padding-bottom: 12px; }
  .site_right .login_info {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    position: absolute;
    top: 0;
    right: 0; }
    .site_right .login_info .login_user {
      flex: auto;
      color: #7d7d7d;
      font-size: 12px;
      line-height: 1.3;
      white-space: nowrap;
      margin-right: 10px; }
      .site_right .login_info .login_user b {
        color: #050505;
        font-weight: bold; }
    .site_right .login_info .btn {
      flex: none; }
  .site_right .update_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end; }
    .site_right .update_info .update_date {
      color: #7d7d7d;
      font-size: 12px;
      line-height: 28px;
      height: 30px;
      border: 1px solid #D6D7D8;
      border-right-width: 0;
      display: block;
      padding-left: 12px;
      padding-right: 12px;
      box-sizing: border-box; }
      .site_right .update_info .update_date b {
        color: #000000;
        font-weight: bold; }

/* GNB 이미지 */
.img_gnb {
  background-image: url(../images/img_gnb.png); }
  .img_gnb.img_logo {
    font-size: 0;
    color: transparent;
    display: block;
    width: 172px;
    height: 51px;
    background-position: 0 0; }

/* 메인 박스 내 타이틀 영역 */
.box_title {
  color: #050505;
  font-size: 16px;
  line-height: 1.4;
  font-weight: bold; }

/* Footer Layout */
.lay_footer {
  height: 75px;
  padding-left: 50px;
  padding-right: 50px;
  border-top: 1px solid #DBDCDE;
  background-color: #FFFFFF; }
  .lay_footer .footer_wrap {
    display: flex;
    align-items: center;
    height: 100%; }

/* Copyright */
.footer_copyright {
  flex: auto;
  display: flex;
  align-items: flex-end; }
  .footer_copyright .img_logo {
    flex: none;
    margin-right: 10px; }
  .footer_copyright .txt_copyright {
    font-size: 10px;
    line-height: 1.3;
    color: #212121;
    text-transform: uppercase; }

/* 바로가기 */
.footer_shortcut {
  flex: none;
  display: flex; }
  .footer_shortcut .footer_link {
    margin-right: 10px; }
    .footer_shortcut .footer_link:before {
      content: '';
      vertical-align: middle;
      display: inline-block;
      width: 1px;
      height: 12px;
      margin-right: 10px;
      background-color: #D1D2D3; }
    .footer_shortcut .footer_link a {
      color: #999999;
      font-size: 12px;
      line-height: 1.3;
      letter-spacing: -0.02em;
      text-decoration: none; }
    .footer_shortcut .footer_link:first-child:before {
      content: none; }
    .footer_shortcut .footer_link:last-child {
      margin-right: 0; }

/* Footer 이미지 */
.img_footer {
  background-image: url(../images/img_footer.png); }
  .img_footer.img_logo {
    font-size: 0;
    color: transparent;
    display: block;
    width: 72px;
    height: 13px;
    background-position: 0 0; }

/* 메인 박스 내 타이틀 영역 */
.box_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px; }
  .box_header .box_title {
    flex: auto;
    color: #050505;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold; }
  .box_header .box_title_option {
    flex: none; }
  .box_header .box_title_txt {
    font-size: 12px; }
    .box_header .box_title_txt b {
      font-weight: bold; }

/* 페이지 타이틀 */
.page_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #DADBDC;
  padding-bottom: 8px;
  margin-bottom: 10px; }
  .page_header .page_title {
    flex: auto;
    color: #181818;
    font-size: 24px;
    line-height: 1.3; }
  .page_header .page_title_option {
    flex: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px; }
  .page_header .opt_data {
    color: #181818;
    font-size: 14px; }
    .page_header .opt_data b {
      font-weight: bold; }
    .page_header .opt_data .select {
      font-weight: bold;
      margin-left: 5px;
      min-width: 100px; }
    .page_header .opt_data + * {
      margin-left: 10px; }

/* 콘텐츠 타이틀 */
.content_header {
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  padding-top: 13px;
  margin-bottom: 8px; }
  .content_header .content_title {
    flex: auto;
    color: #181818;
    font-size: 20px;
    line-height: 1.3; }
    .ui-dialog-content .content_header .content_title {
      font-size: 14px;
      font-weight: bold; }
  .content_header .content_title_s {
    color: #181818;
    font-size: 16px;
    line-height: 1.3;
    font-weight: bold;
    word-break: keep-all;
    margin-left: 15px;
    padding-left: 16px;
    position: relative; }
    .content_header .content_title_s b {
      color: #fc5000; }
    .content_header .content_title_s:before {
      content: '';
      display: block;
      position: absolute;
      left: 0;
      top: 2px;
      width: 1px;
      height: 17px;
      background-color: #D7D8D9; }
    .content_header .content_title_s .content_title_info {
      font-weight: normal;
      margin-left: 0; }
      .content_header .content_title_s .content_title_info b {
        font-weight: normal; }
  .content_header .content_title_info {
    font-size: 12px;
    color: #181818;
    margin-left: 15px;
    display: inline-block; }
  .content_header .content_title_option {
    flex: none;
    display: inline-flex;
    align-items: center;
    font-size: 14px; }
  .content_header .top_option {
    margin-left: 15px; }
  .content_header .opt_title {
    font-size: 12px;
    color: #181818; }
  .content_header .opt_data {
    color: #181818;
    font-size: 12px; }
    .content_header .opt_data b {
      font-weight: bold; }
    .content_header .opt_data .select {
      font-weight: bold;
      margin-left: 5px;
      min-width: 100px; }
  .content_header .opt_srch {
    display: inline-flex;
    align-items: center;
    margin-left: 10px; }
    .content_header .opt_srch .inp_text {
      width: 130px; }

.opt_status {
  color: #FFFFFF;
  font-size: 12px;
  line-height: 26px;
  text-align: center;
  height: 28px;
  padding: 0 15px;
  border-radius: 14px;
  box-sizing: border-box;
  min-width: 120px;
  margin-left: 10px;
  background-color: #676565; }
  .opt_status.stable {
    background-color: #3F51B5; }
  .opt_status.takenotice {
    background-color: #F85000; }
  .opt_status.discontinue {
    background-color: #B4B4B4; }

.legend_wrap {
  display: inline-flex;
  align-items: center;
  margin-left: 10px; }
  .legend_wrap .legend {
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    box-sizing: border-box; }
    .legend_wrap .legend_1 {
      background-color: #B7B8B9; }
    .legend_wrap .legend_2 {
      background-color: #7E98CA; }
    .legend_wrap .legend_3 {
      background-color: #FB7F43; }
    .legend_wrap .legend_soldout {
      width: 24px;
      height: 24px;
      background-color: #FCEEDC; }
    .legend_wrap .legend_application {
      width: 24px;
      height: 24px;
      background-color: #D7EDFC; }
  .legend_wrap .legend_text {
    font-size: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-weight: bold;
  font-family: inherit;
  cursor: pointer;
  border: 1px solid transparent;
  box-sizing: border-box;
  height: 28px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
  transition: background-color 0.5s, color 0.5s; }
  .btn .btn_ico {
    flex: none; }
  .btn .btn_name {
    line-height: 16px;
    padding-bottom: 1px; }
  .btn .ico_btn + .btn_name {
    margin-left: 2px; }
  .btn[disabled] {
    cursor: default; }

.content_title_option .btn + .btn {
  margin-left: 5px; }

/* 버튼 크기 */
.btn_sm {
  padding: 2px 6px;
  min-width: 70px;
  height: 26px; }
  .btn_sm .btn_name {
    color: #1e1d1d; }

/* 버튼 종류 */
.btn_primary {
  background-color: #F85000; }
  .btn_primary .btn_name {
    color: #FFFFFF; }
  .btn_primary:hover, .btn_primary:active {
    background-color: #5D1E00; }
  .btn_primary[disabled] {
    background-color: rgba(252, 80, 0, 0.5); }
    .btn_primary[disabled] .ico_btn {
      opacity: 0.5; }

.btn_secondary {
  border-color: transparent;
  background-color: #676565; }
  .btn_secondary .btn_name {
    color: #FFFFFF; }
  .btn_secondary:hover, .btn_secondary:active {
    background-color: #353030; }
  .btn_secondary[disabled] {
    background-color: rgba(105, 101, 101, 0.5); }
    .btn_secondary[disabled] .ico_btn {
      opacity: 0.5; }

.btn_dark {
  border-color: transparent;
  background-color: #161718; }
  .btn_dark .btn_name {
    color: #FFFFFF; }
  .btn_dark:hover, .btn_dark:active {
    background-color: #FC5000; }
  .btn_dark[disabled] {
    background-color: rgba(24, 24, 24, 0.5); }
    .btn_dark[disabled] .ico_btn {
      opacity: 0.5; }

.btn_download {
  border-color: transparent;
  background-color: #3F9C5C; }
  .btn_download .btn_name {
    color: #FFFFFF; }
  .btn_download:hover, .btn_download:active {
    background-color: #255634; }
  .btn_download[disabled] {
    background-color: rgba(63, 156, 92, 0.5); }
    .btn_download[disabled] .ico_btn {
      opacity: 0.5; }

.btn_outline_secondary {
  border-color: #C7C7C8;
  background-color: #FFFFFF; }
  .btn_outline_secondary:hover, .btn_outline_secondary:active {
    background-color: #E5E5E5; }
  .btn_outline_secondary[disabled] {
    border-color: rgba(200, 199, 199, 0.5);
    background-color: rgba(255, 255, 255, 0.5); }
    .btn_outline_secondary[disabled] .ico_btn,
    .btn_outline_secondary[disabled] .btn_name {
      opacity: 0.5; }

/* 링크 버튼 */
.link_btn_more {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-decoration: none;
  border: 1px solid #DADBDC;
  box-sizing: border-box;
  height: 26px;
  padding: 2px 6px;
  background-color: #FFFFFF; }
  .link_btn_more .btn_ico {
    flex: none; }
  .link_btn_more .btn_name {
    font-size: inherit;
    color: #636363; }
  .link_btn_more:hover, .link_btn_more:active {
    border-color: #C8C7C7;
    background-color: #E5E5E5; }
  .link_btn_more[disabled] {
    cursor: default;
    border-color: #EDEDED;
    background-color: #FFFFFF; }
    .link_btn_more[disabled] .btn_ico {
      opacity: 0.2; }
    .link_btn_more[disabled] .btn_name {
      opacity: 0.3; }

/* GNB 버튼 */
.btn_gnb_logout {
  color: #FFFFFF;
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  min-width: 66px;
  height: 22px;
  padding-left: 5px;
  padding-right: 5px;
  background-color: #858586; }
  .btn_gnb_logout:hover, .btn_gnb_logout:active {
    background-color: #050505; }

.btn_gnb_update {
  width: 30px;
  height: 30px;
  background-image: url(../images/img_gnb.png);
  background-position: -200px 0;
  background-color: #696565; }
  .btn_gnb_update:hover, .btn_gnb_update:active {
    background-color: #FC5000; }
  .btn_gnb_update[disabled] {
    cursor: default;
    background-color: #DCDCDC; }

/* 텍스트버튼 아이콘 */
.btn_ico {
  position: relative;
  display: inline-block; }
  .btn_ico_more {
    width: 12px;
    height: 12px;
    margin-right: 3px; }
    .btn_ico_more:before, .btn_ico_more:after {
      content: '';
      display: block;
      position: absolute;
      background-color: #7E7F80; }
    .btn_ico_more:before {
      width: 8px;
      height: 2px;
      top: calc(50% - 1px);
      left: calc(50% - 4px); }
    .btn_ico_more:after {
      width: 2px;
      height: 8px;
      top: calc(50% - 4px);
      left: calc(50% - 1px); }

.ico_btn {
  display: inline-block;
  background-image: url(../images/img_component.png); }
  .ico_btn_modify {
    width: 16px;
    height: 16px;
    background-position: 0 -150px; }
  .ico_btn_del {
    width: 16px;
    height: 16px;
    background-position: -50px -150px; }
  .ico_btn_save {
    width: 16px;
    height: 16px;
    background-position: -100px -150px; }
  .ico_btn_cancel {
    width: 16px;
    height: 16px;
    background-position: -150px -150px; }

/* 아이콘버튼 */
.btn_ico_srch {
  display: inline-block;
  width: 28px;
  height: 28px;
  background-image: url(../images/img_component.png);
  background-position: -100px 0;
  background-color: #676565; }
  .btn_ico_srch:hover, .btn_ico_srch:active {
    background-color: #FC5000; }

/* 검색버튼 */
.filter_srch_btn .btn_filter_srch {
  width: 70px;
  height: 100%;
  margin-top: -1px;
  margin-right: -1px;
  background: #676565 url(../images/img_component.png) left top; }
  .filter_srch_btn .btn_filter_srch:hover, .filter_srch_btn .btn_filter_srch:active {
    background-color: #FC5000; }

.label_chk {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  padding-top: 6px;
  user-select: none; }
  .label_chk .inp_chk {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .label_chk .checkmark {
    display: inline-block;
    position: relative;
    width: 18px;
    height: 18px;
    box-sizing: border-box;
    border: 1px solid #D6D7D8;
    background-color: #FFFFFF; }
  .label_chk .chk_text {
    font-size: 12px;
    color: #181818;
    line-height: 1.5;
    display: inline-block; }
  .label_chk .inp_chk:checked ~ .checkmark {
    border-width: 0;
    background-color: #F85000; }
    .label_chk .inp_chk:checked ~ .checkmark:before {
      content: '';
      display: block;
      width: 8px;
      height: 4px;
      border-left: 2px solid #FFFFFF;
      border-bottom: 2px solid #FFFFFF;
      position: absolute;
      top: 4px;
      left: 4px;
      transform: rotate(-47deg); }

.label_radio {
  display: inline-block;
  position: relative;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  padding-top: 6px;
  user-select: none; }
  .label_radio .inp_radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .label_radio .checkmark {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    border: 1px solid #D6D7D8;
    border-radius: 10px;
    background-color: #FFFFFF; }
  .label_radio .inp_radio:checked ~ .checkmark {
    border-width: 0;
    background-color: #F85000; }
    .label_radio .inp_radio:checked ~ .checkmark:before {
      content: '';
      display: block;
      width: 8px;
      height: 4px;
      border-left: 2px solid #FFFFFF;
      border-bottom: 2px solid #FFFFFF;
      position: absolute;
      top: 6px;
      left: 5px;
      transform: rotate(-47deg); }

.ico_checked {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
  background-color: #F85000; }
  .ico_checked:before {
    content: '';
    display: block;
    width: 8px;
    height: 4px;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    position: absolute;
    top: 4px;
    left: 4px;
    transform: rotate(-47deg); }

/* 관심 */
.label_fav {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 26px;
  height: 26px;
  box-sizing: border-box;
  user-select: none; }
  .tbl_grid .label_fav {
    vertical-align: middle; }
  .label_fav .inp_fav {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0; }
  .label_fav .checkmark {
    display: block;
    width: 26px;
    height: 26px;
    box-sizing: border-box;
    user-select: none;
    border: 1px solid #D8D8D8;
    background-color: #F6F6F6; }
    .label_fav .checkmark:before {
      content: '';
      display: block;
      width: 24px;
      height: 24px;
      background-image: url(../images/img_component.png);
      background-position: -102px -52px; }
  .label_fav .inp_fav:checked ~ .checkmark {
    border-color: #FDC605;
    background-color: #FDC605; }
    .label_fav .inp_fav:checked ~ .checkmark:before {
      background-position: -152px -52px; }
  .label_fav .inp_fav[disabled] ~ .checkmark {
    opacity: 0.5;
    cursor: default; }

/* content Header의 checkbox */
.content_title .chk_wrap {
  display: inline-block;
  padding-left: 15px;
  margin-left: 10px;
  margin-right: 5px;
  position: relative; }
  .content_title .chk_wrap:before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 18px;
    position: absolute;
    left: 0;
    bottom: 1px;
    background-color: #D8D8D8; }

.content_title .label_chk,
.align_left .label_chk {
  padding-top: 0; }
  .content_title .label_chk .checkmark,
  .align_left .label_chk .checkmark {
    vertical-align: bottom; }
  .content_title .label_chk .chk_text,
  .align_left .label_chk .chk_text {
    color: #808080;
    font-weight: bold; }
  .content_title .label_chk + .label_chk,
  .align_left .label_chk + .label_chk {
    margin-left: 5px; }

.content_title .inp_chk:checked ~ .chk_text,
.align_left .inp_chk:checked ~ .chk_text {
  color: #181818; }

/* legend_info_box(안내박스)의 checkbox */
.legend_info_box .chk_wrap {
  margin-left: 3px; }
  .legend_info_box .chk_wrap .label_chk {
    margin-right: 13px; }
  .legend_info_box .chk_wrap .checkmark {
    vertical-align: top; }
  .legend_info_box .chk_wrap .chk_text {
    line-height: 1.4;
    vertical-align: top; }

.select {
  font-size: 12px;
  color: #181818;
  border: 1px solid #D6D7D8;
  height: 28px;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 29px;
  appearance: none;
  background: #FFFFFF url(../images/img_select.png) right center no-repeat; }
  .select:focus {
    outline-width: 0;
    border: 1px solid #fb4f00; }
  .select.sel_full {
    width: 100% !important; }

.inp_text {
  font-size: 12px;
  color: #181818;
  border: 1px solid #D6D7D8;
  height: 28px;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px; }
  .inp_text[type=password] {
    width: 86px; }
  .inp_text:focus {
    outline-width: 0;
    border: 1px solid #fb4f00; }

.inp_full {
  width: 100%; }

.filter_srch {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border: 1px solid #DCDDDE;
  box-sizing: border-box;
  min-height: 65px;
  margin-bottom: 23px;
  background-color: #F1F2F3; }
  .filter_srch .filter_srch_title {
    flex: none; }
  .filter_srch .filter_srch_conditions {
    flex: auto; }
  .filter_srch .filter_srch_btn {
    flex: none;
    align-self: stretch; }

.filter_srch_title {
  font-size: 18px;
  line-height: 45px;
  text-align: center;
  width: 86px;
  height: 45px;
  border-right: 1px solid #DCDDDE; }

.filter_srch_conditions {
  padding: 8px 25px 8px 0;
  border-left: 1px solid #FFFFFF; }
  .filter_srch_conditions .conditions_list {
    display: flex;
    flex-wrap: wrap; }
  .filter_srch_conditions .conditions_item {
    flex: none;
    display: flex;
    align-items: center; }
    .filter_srch_conditions .conditions_item.srch_word {
      flex: auto; }
  .filter_srch_conditions .condition_title {
    flex: none;
    font-size: 14px;
    color: #181818;
    font-weight: bold;
    padding-left: 25px;
    padding-right: 8px; }
  .filter_srch_conditions .condition_content {
    flex: auto; }

.filter_srch_btn {
  width: 69px;
  position: relative;
  /*.btn_filter_srch {
		width: 70px;
		height: 65px;
		margin-top: -1px;
		margin-right: -1px;
		background: #676565 url(../images/img_component.png) left top;
		&:hover {
			background-color: #595858;
		}
	}*/ }

.legend_info_box {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 11px 10px;
  box-sizing: border-box;
  margin-bottom: 23px;
  background-color: #F1F2F3; }
  .legend_info_box .legend_info_text_wrap {
    flex: auto;
    display: flex;
    align-items: center;
    position: relative; }
  .legend_info_box .legend_info_title {
    flex: none;
    font-size: 16px;
    line-height: 1.4;
    font-weight: bold;
    text-align: center;
    padding-right: 10px;
    box-sizing: border-box; }
  .legend_info_box .legend_info_bar {
    flex: none;
    width: 1px;
    margin-right: 17px;
    align-self: stretch;
    border-right: 1px solid #FFFFFF;
    background-color: #D8D8D8; }
  .legend_info_box .legend_info_text {
    flex: auto;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: -0.05em;
    color: #181818;
    margin-left: 5px; }
  .legend_info_box .legend_info_text_wrap .legend_info_text {
    font-weight: bold; }
    .legend_info_box .legend_info_text_wrap .legend_info_text b {
      color: #FF0000; }
  .legend_info_box .legend_info_option {
    flex: none;
    display: inline-flex;
    align-items: center; }
  .legend_info_box .legend_option {
    display: flex;
    align-items: center;
    margin-left: 25px; }
  .legend_info_box .legend_soldout,
  .legend_info_box .legend_application {
    border: 1px solid #BEBCBE; }
  .legend_info_box .legend_text {
    font-size: 12px;
    letter-spacing: -0.05em; }
  .legend_info_box .opt_data {
    font-size: 14px;
    letter-spacing: -0.05em;
    color: #181818; }
  .legend_info_box .btn {
    margin-left: 15px; }

.top_option {
  margin-left: 20px; }
  .top_option .opt_title {
    font-size: 12px;
    color: #181818; }
  .top_option .opt_srch {
    display: inline-flex;
    align-items: center;
    margin-left: 10px; }
    .top_option .opt_srch .inp_text {
      width: 130px; }
  .area_left .top_option {
    margin-left: 0;
    margin-right: 20px; }

.content_header + .content_body > .tbl_top:first-of-type {
  border-top: 1px solid #DADBDC;
  padding-top: 10px; }

.registration_feedback {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid #DCDDDE;
  border-width: 1px 0;
  margin-bottom: -1px;
  box-sizing: border-box;
  height: 68px;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #FFFFFF; }
  .registration_feedback .registration_conditions {
    flex: auto; }
  .registration_feedback .registration_btn {
    flex: none; }
  .registration_feedback .registration_conditions .conditions_list {
    display: flex;
    flex-wrap: wrap; }
  .registration_feedback .registration_conditions .conditions_item {
    flex: none;
    display: flex;
    align-items: center; }
    .registration_feedback .registration_conditions .conditions_item .select {
      font-size: 14px;
      width: 140px;
      height: 36px; }
    .registration_feedback .registration_conditions .conditions_item .inp_text {
      font-size: 14px;
      height: 36px; }
    .registration_feedback .registration_conditions .conditions_item.textarea {
      flex: 1; }
    .registration_feedback .registration_conditions .conditions_item + .conditions_item {
      margin-left: 11px; }
  .registration_feedback .registration_conditions .condition_title {
    flex: none;
    font-size: 14px;
    color: #181818;
    font-weight: bold;
    padding-right: 8px; }
  .registration_feedback .registration_conditions .condition_content {
    flex: auto; }
  .registration_feedback .registration_btn {
    width: 100px; }
    .registration_feedback .registration_btn .btn_registration {
      color: #FFFFFF;
      font-size: 14px;
      font-weight: bold;
      width: 100%;
      height: 36px;
      background-color: #676565; }
      .registration_feedback .registration_btn .btn_registration:hover {
        background-color: #595858; }

.registration_simple {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: -1px;
  margin-bottom: -1px;
  box-sizing: border-box;
  background-color: #F1F2F3; }
  .registration_simple .registration_conditions {
    flex: 1;
    border-top: 1px solid #DCDDDE;
    border-bottom: 1px solid #DCDDDE;
    padding: 10px 20px 10px 0; }
  .registration_simple .registration_btn {
    flex: none; }
  .registration_simple .registration_conditions .conditions_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .registration_simple .registration_conditions .conditions_list + .conditions_list {
      margin-top: 6px; }
  .registration_simple .registration_conditions .conditions_item {
    flex: 1;
    display: flex;
    align-items: center; }
    .registration_simple .registration_conditions .conditions_item + .conditions_item {
      margin-left: 11px; }
    .registration_simple .registration_conditions .conditions_item.period {
      flex: none;
      margin-left: auto;
      margin-right: auto; }
      .registration_simple .registration_conditions .conditions_item.period .condition_content {
        width: auto; }
  .registration_simple .registration_conditions .condition_title {
    flex: none;
    font-size: 14px;
    color: #181818;
    font-weight: bold;
    text-align: right;
    padding-right: 8px;
    box-sizing: border-box;
    width: 70px; }
  .registration_simple .registration_conditions .conditions_item + .conditions_item .condition_title {
    width: 95px; }
  .registration_simple .registration_conditions .condition_content {
    flex: auto; }
  .registration_simple .registration_btn {
    width: 100px; }
    .registration_simple .registration_btn .btn_registration {
      color: #FFFFFF;
      font-size: 14px;
      font-weight: bold;
      width: 100%;
      height: 100%;
      background-color: #676565; }
      .registration_simple .registration_btn .btn_registration:hover {
        background-color: #595858; }

.registration_multiline {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-top: -1px;
  margin-bottom: 15px;
  box-sizing: border-box;
  background-color: #F1F2F3; }
  .registration_multiline .registration_conditions {
    flex: 1;
    border: 1px solid #DCDDDE;
    border-right-width: 0;
    padding: 5px 20px 5px 0; }
  .registration_multiline .registration_btn {
    flex: none; }
  .registration_multiline .registration_conditions .conditions_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center; }
    .registration_multiline .registration_conditions .conditions_list + .conditions_list {
      margin-top: 6px; }
  .registration_multiline .registration_conditions .conditions_item {
    flex: none;
    width: calc(50% - 10px);
    display: flex;
    align-items: center;
    margin: 5px; }
    .registration_multiline .registration_conditions .conditions_item.period {
      flex: none;
      margin-left: auto;
      margin-right: auto; }
      .registration_multiline .registration_conditions .conditions_item.period .condition_content {
        width: auto; }
  .registration_multiline .registration_conditions .condition_title {
    flex: none;
    font-size: 14px;
    color: #181818;
    font-weight: bold;
    text-align: right;
    padding-right: 8px;
    box-sizing: border-box;
    width: 70px; }
  .registration_multiline .registration_conditions .conditions_item:nth-child(even) .condition_title {
    width: 95px; }
  .registration_multiline .registration_conditions .condition_content {
    flex: auto; }
  .registration_multiline .registration_conditions .select {
    width: 100%; }
  .registration_multiline .registration_conditions .inp_datepicker [type=text] {
    width: calc(100% - 28px); }
  .registration_multiline .registration_btn {
    width: 100px; }
    .registration_multiline .registration_btn .btn_registration {
      color: #FFFFFF;
      font-size: 14px;
      font-weight: bold;
      width: 100%;
      height: 100%;
      background-color: #676565; }
      .registration_multiline .registration_btn .btn_registration:hover {
        background-color: #595858; }

.pagination {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center; }
  .pagination .page_item.active .page_link {
    color: #FFFFFF;
    background-color: #F85000; }
  .pagination .page_link {
    font-size: 12px;
    color: #4d4d4d;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    height: 25px;
    line-height: 25px;
    display: block;
    box-sizing: border-box;
    min-width: 25px;
    margin: 0 3px; }
    .pagination .page_link:hover {
      color: #FFFFFF;
      background-color: #B8B9BA; }
  .pagination .page_fst,
  .pagination .page_prev,
  .pagination .page_next,
  .pagination .page_lst {
    font-size: 0;
    background-color: #C6C7C8;
    background-image: url(../images/img_component.png); }
  .pagination .page_fst {
    background-position: 0 -100px; }
  .pagination .page_prev {
    background-position: -50px -100px; }
  .pagination .page_next {
    background-position: -100px -100px; }
  .pagination .page_lst {
    background-position: -150px -100px; }

.tbl_guide {
  font-size: 12px;
  line-height: 1.5;
  color: #000000;
  text-indent: -14px;
  word-break: keep-all;
  padding-top: 10px;
  padding-left: 14px;
  padding-bottom: 12px; }
  .tbl_guide:before {
    content: '※ '; }
  .tbl_guide b {
    color: #fc5000; }

.opt_guide {
  font-size: 12px;
  line-height: 1.5;
  color: #181818;
  text-indent: -14px; }
  .opt_guide:before {
    content: '※ '; }
  .opt_guide b {
    color: #fc5000; }
  .opt_guide + .btn {
    margin-left: 10px; }

.content_guide {
  font-size: 13px;
  line-height: 1.4;
  color: #1e1d1d;
  text-indent: -14px;
  text-align: center;
  word-break: keep-all;
  padding-top: 20px;
  padding-left: 14px;
  padding-bottom: 22px; }
  .content_guide b {
    color: #fc5000; }

.content_guide_left {
  font-size: 12px;
  line-height: 1.5;
  color: #181818;
  text-indent: -14px;
  padding-left: 14px;
  padding-top: 8px;
  padding-bottom: 8px; }
  .content_guide_left:before {
    content: '※ '; }
  .content_guide_left b {
    color: #fc5000; }

/* 선택된 패턴 안내 */
.pattern_info {
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;
  font-weight: bold;
  border: 1px solid #DCDDDE;
  box-sizing: border-box;
  height: 55px;
  padding: 10px 30px;
  background-color: #F1F2F3; }
  .pattern_info b {
    color: #fc4100; }

.registration_box {
  text-align: center;
  padding: 12px;
  border: 1px solid #DCDDDE;
  background-color: #F1F2F3; }
  .registration_box .registration_title {
    font-size: 14px;
    color: #181818;
    margin-right: 10px; }

.formbox_single {
  padding: 5px 0; }
  .formbox_single .content_guide_left {
    display: inline-block; }

.layerpop {
  position: absolute;
  z-index: 100;
  width: 235px;
  box-sizing: border-box;
  border: 1px solid #DFE0E1;
  background-color: #FFFFFF; }
  .layerpop:before {
    content: '';
    display: block;
    position: absolute;
    left: -5px;
    top: 90px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #353535; }
  .layerpop.layerpop_m {
    width: 400px; }
    .layerpop.layerpop_m:before {
      left: calc(50% - 2px);
      top: auto;
      bottom: -10px;
      border-right: 5px solid transparent;
      border-left: 5px solid transparent;
      border-top: 5px solid #353535; }
  .layerpop .layerpop_header {
    display: flex;
    align-items: center;
    height: 36px;
    padding-right: 10px;
    background-color: #696565; }
    .layerpop .layerpop_header .layerpop_title {
      flex: auto;
      color: #FFFFFF;
      font-size: 13px;
      font-weight: bold;
      line-height: 36px;
      padding: 0 12px; }
    .layerpop .layerpop_header .btn_layer_close {
      flex: none;
      border-width: 0;
      width: 26px;
      height: 26px;
      padding: 4px;
      position: relative;
      cursor: pointer;
      background-color: transparent; }
    .layerpop .layerpop_header .ico_btn_close {
      display: block;
      width: 20px;
      height: 20px;
      transform: rotate(45deg); }
      .layerpop .layerpop_header .ico_btn_close:before, .layerpop .layerpop_header .ico_btn_close:after {
        content: '';
        display: block;
        position: absolute;
        background-color: #FFFFFF; }
      .layerpop .layerpop_header .ico_btn_close:before {
        width: 20px;
        height: 2px;
        top: 9px;
        left: 0px; }
      .layerpop .layerpop_header .ico_btn_close:after {
        width: 2px;
        height: 20px;
        top: 0px;
        left: 9px; }
  .layerpop .layerpop_body {
    padding: 12px; }

.information {
  display: inline-flex;
  align-items: center;
  position: relative;
  vertical-align: bottom; }
  .information .btn_ico_information {
    line-height: 1;
    width: 24px;
    height: 24px;
    padding: 0;
    background-color: transparent;
    background-image: url(../images/img_component.png);
    background-repeat: no-repeat;
    background-position: -200px 0;
    background-size: 240px 200px; }
    .tbl_default .information .btn_ico_information {
      width: 18px;
      height: 18px;
      background-position: -200px -50px; }

/* 도움말 팝업 */
.layer_information {
  font-size: 13px;
  position: absolute;
  z-index: 100;
  display: none;
  width: 420px;
  box-sizing: border-box;
  padding: 0 19px 19px;
  border: 1px solid #D8D8D8;
  background-color: #FFFFFF; }
  .layer_information.layer_s {
    width: 360px;
    padding-bottom: 15px; }
    .layer_information.layer_s .infolayer_list {
      padding-top: 5px; }
  .layer_information .btn_close {
    position: absolute;
    right: 14px;
    top: 8px;
    padding: 0;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1;
    background-color: transparent; }
    .layer_information .btn_close .btn_ico_close {
      display: block;
      width: 28px;
      height: 28px;
      background-color: transparent;
      background-image: url(../images/img_component.png);
      background-repeat: no-repeat;
      background-position: -200px -100px;
      background-size: 240px 200px; }
  .layer_information .infolayer_header {
    display: flex;
    align-items: center;
    height: 40px;
    border-bottom: 1px solid #dddddd; }
    .layer_information .infolayer_header .infolayer_title {
      font-size: 15px;
      color: #181818;
      font-weight: bold;
      line-height: 1.4; }
  .layer_information .infolayer_list {
    margin-left: 9px; }
  .layer_information .infolayer_item {
    color: #666666;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.05em;
    margin-top: 9px;
    margin-bottom: 5px;
    position: relative;
    word-break: keep-all; }
    .layer_information .infolayer_item + .infolayer_item {
      margin-top: 18px; }
    .layer_information .infolayer_item .red {
      color: #FC5000; }
    .layer_information .infolayer_item:before {
      content: '';
      display: block;
      width: 3px;
      height: 3px;
      position: absolute;
      left: -9px;
      top: 8px;
      background-color: #666666; }

/* 테이블 상단 컨텐츠 */
.tbl_top {
  position: relative;
  z-index: 20;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 13px;
  line-height: 1.4;
  color: #4b4b4b;
  margin-bottom: 8px; }
  .tbl_top .area_left {
    flex: 1;
    display: flex;
    align-items: center; }
  .tbl_top .area_right {
    flex: none;
    display: flex;
    align-items: center; }
  .tbl_top .txt_total {
    font-weight: bold; }
    .tbl_top .txt_total b {
      color: #fc5000; }
  .tbl_top.tbl_top_tab {
    position: relative; }
    .tbl_top.tbl_top_tab .area_right {
      position: absolute;
      right: 0;
      top: -45px; }

/* 테이블 하단 컨텐츠 */
.tbl_bottom {
  position: relative;
  margin-top: 14px;
  height: 28px; }
  .tbl_bottom + .tbl_bottom {
    border-top: 1px solid #D7D8D9;
    padding-top: 15px; }
  .tbl_bottom .btn {
    min-width: 100px; }
  .tbl_bottom .area_left {
    position: relative;
    float: left;
    z-index: 2; }
  .tbl_bottom .area_center {
    text-align: center;
    position: relative;
    z-index: 2; }
  .tbl_bottom .area_right {
    text-align: right;
    position: relative;
    float: right;
    z-index: 2; }
  .tbl_bottom .area_pagination {
    position: absolute;
    top: 1px;
    left: 0;
    right: 0;
    z-index: 1;
    text-align: center;
    flex: 1; }
  .tbl_bottom.has_grid_paginate {
    margin-top: 0;
    height: 0; }
    .tbl_bottom.has_grid_paginate .area_left,
    .tbl_bottom.has_grid_paginate .area_right {
      position: absolute;
      top: -40px; }
    .tbl_bottom.has_grid_paginate .area_left {
      left: 0; }
    .tbl_bottom.has_grid_paginate .area_right {
      right: 0; }

.tbl_scroll {
  overflow-x: auto; }

.ico_reply {
  display: inline-block;
  padding: 3px;
  margin-right: 5px;
  vertical-align: bottom; }
  .ico_reply:before {
    content: '';
    width: 7px;
    height: 9px;
    display: block;
    box-sizing: border-box;
    border-left: 1px dotted #8F9091;
    border-bottom: 1px dotted #8F9091; }

/* Table 내 컨텐츠 */
.data_wrap {
  padding-top: 4px;
  padding-bottom: 6px;
  padding-left: 10px;
  padding-right: 10px; }
  .data_wrap .data_margin {
    margin-right: 5px; }

.tbl_inp_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .tbl_inp_wrap .inp_box,
  .tbl_inp_wrap .inp_label,
  .tbl_inp_wrap .inp_btn_box {
    flex: none;
    margin-bottom: 3px; }
  .tbl_inp_wrap .inp_label {
    margin-right: 8px; }
  .tbl_inp_wrap .inp_box {
    margin-right: 5px; }
  .tbl_inp_wrap .inp_box + .inp_label {
    margin-left: 20px; }

.tbl_data_inp_wrap {
  display: flex;
  align-items: center; }
  .tbl_data_inp_wrap .inp_box {
    flex: auto; }
    .tbl_data_inp_wrap .inp_box .inp_text {
      width: 100%; }
    .tbl_data_inp_wrap .inp_box .inp_text {
      padding: 0 5px; }
  .tbl_data_inp_wrap .inp_label {
    flex: none;
    margin-left: 3px; }

.col_data_inp {
  width: 80px; }

/* 좌측 고정 레이아웃 */
.tbl_frozen {
  display: flex;
  /*.inp_datepicker {
		flex-direction: column;
		.ui-datepicker-trigger {
			margin-top:5px;
		}
	}*/ }
  .tbl_frozen .tbl_frozen_left {
    position: relative;
    z-index: 1;
    flex: none;
    overflow-x: visible;
    margin-right: -1px;
    border: 1px solid #DADBDC;
    border-right-color: #aaaaaa;
    box-sizing: border-box; }
    .tbl_frozen .tbl_frozen_left .tbl_default.tbl_border {
      border-width: 0; }
  .tbl_frozen .tbl_frozen_right {
    flex: auto;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    border: 1px solid #DADBDC;
    border-left-width: 0; }
    .tbl_frozen .tbl_frozen_right .tbl_default.tbl_border {
      border-width: 0; }
    .tbl_frozen .tbl_frozen_right .tbl_group_wrap {
      flex: auto; }
      .tbl_frozen .tbl_frozen_right .tbl_group_wrap + .tbl_group_wrap {
        border-left: 1px solid #DADBDC; }
      .tbl_frozen .tbl_frozen_right .tbl_group_wrap .tbl_ghost {
        padding: 0;
        border-width: 0 !important;
        width: 0; }
    .tbl_frozen .tbl_frozen_right .tbl_default {
      width: 100%; }
  .tbl_frozen .tbl_default .tbl_th {
    line-height: 1; }

.tbl_default {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #DADBDC; }
  .tbl_default + .tbl_default {
    margin-top: 10px; }
  .tbl_default .tbl_th,
  .tbl_default .tbl_td {
    color: #181818;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    box-sizing: border-box;
    height: 36px;
    vertical-align: top;
    padding: 3px 10px;
    border-bottom: 1px solid #DADBDC; }
  .tbl_default .tbl_th {
    padding-top: 7px; }
  .tbl_default .tbl_head .tbl_th {
    font-weight: bold;
    background-color: #F1F2F3; }
  .tbl_default .tbl_head tr:last-child .tbl_th {
    border-bottom: 2px solid #5B5959; }
  .tbl_default .tbl_body {
    border-bottom: 1px solid #DADBDC;
    background-color: #FFFFFF; }
    .tbl_default .tbl_body .tbl_th {
      font-weight: bold;
      background-color: #F1F2F3; }
    .tbl_default .tbl_body .tbl_td .data_b {
      font-weight: bold; }
    .tbl_default .tbl_body .tbl_td .data_big {
      font-size: 14px;
      font-weight: bold; }
    .tbl_default .tbl_body .tbl_td.tbl_bold {
      font-weight: bold; }
      .tbl_default .tbl_body .tbl_td.tbl_bold .hasDatepicker {
        font-weight: bold; }
  .tbl_default .tbl_title {
    font-size: 12px;
    color: #000000;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  .tbl_default .tbl_link {
    font-size: 12px;
    color: #000000;
    text-decoration: none;
    cursor: pointer; }
    .tbl_default .tbl_link:hover {
      text-decoration: underline; }
  .tbl_default.tbl_border {
    border: 1px solid #DADBDC; }
    .tbl_default.tbl_border .tbl_th {
      padding-top: 3px; }
    .tbl_default.tbl_border .tbl_th,
    .tbl_default.tbl_border .tbl_td {
      vertical-align: middle; }
      .tbl_default.tbl_border .tbl_th + .tbl_th,
      .tbl_default.tbl_border .tbl_th + .tbl_td,
      .tbl_default.tbl_border .tbl_td + .tbl_th,
      .tbl_default.tbl_border .tbl_td + .tbl_td {
        border-left: 1px solid #DADBDC; }
    .tbl_default.tbl_border .tbl_body .inp_text {
      text-align: center; }
    .tbl_default.tbl_border .tbl_body .tbl_th {
      background-color: #FFFFFF; }
    .tbl_default.tbl_border .tbl_body .tbl_td {
      text-align: center; }
    .tbl_default.tbl_border .tbl_body tr.active {
      background-color: #F1F2F3; }
  .tbl_default .red {
    color: #fc4700; }
  .tbl_default .grey {
    color: #999999; }
  .tbl_default .align_left {
    text-align: left; }
  .tbl_default .align_left {
    text-align: left; }
  .tbl_default.tbl_hover tbody tr:hover {
    background-color: #F2F2F2; }
  .tbl_default .rowbgGray {
    font-weight: bold;
    background-color: #F2F2F2; }
    .tbl_default .rowbgGray .inp_text {
      font-weight: bold; }
  .tbl_default .last td {
    border-bottom: 1px solid #5D5A5A; }
  .tbl_default .cell_info {
    color: #999999;
    font-weight: normal;
    word-break: keep-all;
    margin-top: 3px;
    margin-bottom: 3px; }

.tbl_dashboard {
  width: 100%;
  border: 1px solid #DADBDC; }
  .tbl_dashboard .tbl_head .tbl_th {
    color: #000000;
    font-size: 12px;
    line-height: 1.3;
    height: 34px;
    vertical-align: middle;
    border-bottom: 1px solid #DADBDC;
    background-color: #F1F2F3; }
    .tbl_dashboard .tbl_head .tbl_th + .tbl_th {
      border-left: 1px solid #DADBDC; }
  .tbl_dashboard .tbl_body {
    vertical-align: middle;
    border-bottom: 1px solid #DADBDC;
    background-color: #FFFFFF; }
    .tbl_dashboard .tbl_body .tbl_td {
      text-align: center;
      height: 39px;
      vertical-align: middle; }
      .tbl_dashboard .tbl_body .tbl_td + .tbl_td {
        border-left: 1px solid #DADBDC; }
  .tbl_dashboard .link_dashboard_data {
    color: #000000;
    font-size: 16px;
    line-height: 1.3;
    font-weight: bold;
    text-decoration: none; }
  .tbl_dashboard .data_important {
    color: #fc5000; }

.board_list {
  width: 100%;
  table-layout: fixed;
  border-top: 1px solid #DADBDC; }
  .board_list .board_th,
  .board_list .board_td {
    color: #181818;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: -0.02em;
    text-align: center;
    box-sizing: border-box;
    height: 36px;
    vertical-align: middle;
    padding: 3px 5px;
    border-bottom: 1px solid #DADBDC; }
    .board_list .board_th .data_wrap,
    .board_list .board_td .data_wrap {
      padding-left: 0;
      padding-right: 0; }
  .board_list .board_th {
    padding-top: 7px; }
  .board_list .board_head .board_th {
    font-weight: bold;
    border-bottom: 2px solid #5B5959;
    background-color: #F1F2F3; }
  .board_list .board_body {
    border-bottom: 1px solid #DADBDC;
    background-color: #FFFFFF; }
    .board_list .board_body .board_th {
      font-weight: bold;
      background-color: #F1F2F3; }
    .board_list .board_body .board_td .data_b {
      font-weight: bold; }
    .board_list .board_body .board_td.board_bold {
      font-weight: bold; }
  .board_list .board_title {
    font-size: 12px;
    color: #000000;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%; }
  .board_list .board_link {
    font-size: 12px;
    color: #000000;
    text-decoration: none;
    cursor: pointer; }
    .board_list .board_link:hover {
      text-decoration: underline; }
  .board_list .red {
    color: #fc4700; }
  .board_list .grey {
    color: #999999; }

/* Table 내 컨텐츠 */
.board_list .data_wrap {
  padding-top: 4px;
  padding-bottom: 6px;
  padding-left: 10px;
  padding-right: 10px; }
  .board_list .data_wrap .data_margin {
    margin-right: 5px; }

.board_list .board_left {
  text-align: left; }

.board_list .feedback_text {
  text-align: left;
  box-sizing: border-box;
  padding: 4px 10px 5px; }
  .board_list .feedback_text[contenteditable] {
    border: 1px solid #D6D7D8; }
    .board_list .feedback_text[contenteditable]:focus {
      outline-width: 0;
      border-color: #fb4f00; }

.feedback_box {
  border-bottom: 1px solid #DCDDDE;
  padding-bottom: 5px; }

@media screen and (max-width: 1130px) {
  .lay_header {
    padding-left: 30px;
    padding-right: 30px; }
  .img_gnb {
    background-size: 200px 80px; }
    .img_gnb.img_logo {
      width: 138px;
      height: 41px; }
  .nav_gnb .gnb_item .link_menu {
    padding: 10px 12px 14px; }
  /* 메인 */
  .main_contents_wrap {
    padding-left: 30px;
    padding-right: 30px; }
  .tbl_dashboard .link_dashboard_data {
    font-size: 14px; }
  /* 컨텐츠 */
  .lay_contents_wrap {
    padding-left: 30px;
    padding-right: 30px; }
  /* 비밀번호 */
  .tbl_inp_wrap .inp_box + .inp_label {
    margin-left: 10px; }
  .tbl_inp_wrap .inp_text[type=password] {
    width: 70px; }
  .tbl_bottom.has_grid_paginate .area_right {
    max-width: 380px; }
  .tbl_bottom .btn {
    margin-bottom: 3px; } }

@media screen and (max-width: 1360px) {
  .legend_info_box.set_min {
    display: block; }
    .legend_info_box.set_min .legend_info_option {
      display: flex;
      border-top: 1px dashed #D8D8D8;
      margin-top: 10px;
      padding-top: 10px; }
    .legend_info_box.set_min .legend_option {
      margin-left: 0;
      margin-right: 25px; } }

.tbl_grid {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box; }
  .tbl_grid .tui-grid-content-area {
    border-left-width: 1px;
    border-right-width: 1px; }

/* Header */
.tui-grid-header-area {
  border-bottom-width: 2px; }

.tui-grid-cell-header {
  font-size: 12px;
  font-weight: bold;
  line-height: 1.3;
  box-sizing: border-box; }

.tui-grid-cell .tui-grid-cell-content {
  line-height: 1.4; }

/* Cell Style */
.cell-bold {
  font-weight: bold; }

.tui-grid-cell .blue {
  color: #2298DD; }

.tui-grid-cell .red {
  color: #FA5C12; }

.tui-grid-cell .grey {
  color: #98999A; }

.tui-grid-cell .rowspan {
  word-break: keep-all; }

.tui-grid-cell .cell_info {
  margin: 0;
  color: #999999;
  font-weight: normal;
  word-break: keep-all;
  margin-top: 3px;
  margin-bottom: 3px; }

.tui-grid-cell input.inp_text_s {
  text-align: right;
  width: 45px; }

.tui-grid-summary-area {
  border-top-color: #333 !important; }
  .tui-grid-summary-area .tui-grid-cell {
    vertical-align: middle;
    text-align: center;
    padding: 0 6px;
    font-weight: bold;
    background-color: #F1F2F3;
    border-color: #D6D7D8;
    border-left-width: 1px;
    border-right-width: 1px;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-color: #333;
    border-bottom-color: #5D5A5A; }

/* 추가된 클래스 */
.tui-grid-table td.rowbgGray {
  font-weight: bold;
  background-color: #F2F2F2; }

.tui-grid-table td.last {
  border-bottom-color: #5D5A5A; }

.tui-grid-table td.rowBold {
  font-weight: bold; }

.tui-grid-table .soldout {
  background-color: #FCEEDC; }

.tui-grid-table .grid_link {
  color: #333333;
  text-decoration: none;
  display: block; }

/* tui-pagination.css Custom */
.tui-pagination {
  /*.tui-page-btn:hover {
		color: #FFFFFF;
		background-color: #B8B9BA;
	}*/ }
  .tui-pagination .tui-page-btn {
    font-size: 12px;
    color: #4d4d4d;
    font-weight: bold;
    width: auto;
    min-width: 25px;
    height: 25px;
    line-height: 25px;
    padding: 0;
    box-sizing: border-box;
    margin: 0 3px !important; }
  .tui-pagination .tui-page-btn {
    border-width: 0 !important; }
  .tui-pagination .tui-is-selected,
  .tui-pagination strong,
  .tui-pagination .tui-is-selected:hover {
    color: #FFFFFF;
    background-color: #F85000; }
  .tui-pagination .tui-first,
  .tui-pagination .tui-prev,
  .tui-pagination .tui-next,
  .tui-pagination .tui-last,
  .tui-pagination .tui-prev-is-ellip,
  .tui-pagination .tui-next-is-ellip {
    padding: 0;
    width: 25px;
    height: 25px;
    border-width: 0; }
  .tui-pagination .tui-ico-first,
  .tui-pagination .tui-ico-prev,
  .tui-pagination .tui-ico-next,
  .tui-pagination .tui-ico-last,
  .tui-pagination .tui-ico-ellip {
    display: block;
    width: 25px;
    height: 25px;
    background-color: #C6C7C8;
    background-image: url(../images/img_component.png); }
  .tui-pagination .tui-prev-is-ellip,
  .tui-pagination .tui-next-is-ellip {
    display: inline-flex;
    align-items: self-start;
    background-color: #C6C7C8; }
  .tui-pagination .tui-ico-ellip {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 15px;
    margin-top: 0; }
  .tui-pagination .tui-ico-first {
    background-position: 0 -100px; }
  .tui-pagination .tui-ico-prev {
    background-position: -50px -100px; }
  .tui-pagination .tui-ico-next {
    background-position: -100px -100px; }
  .tui-pagination .tui-ico-last {
    background-position: -150px -100px; }
  .tui-pagination .tui-is-disabled .tui-ico-first {
    background-position: 0 -100px; }
  .tui-pagination .tui-is-disabled .tui-ico-prev {
    background-position: -50px -100px; }
  .tui-pagination .tui-is-disabled .tui-ico-next {
    background-position: -100px -100px; }
  .tui-pagination .tui-is-disabled .tui-ico-last {
    background-position: -150px -100px; }

/* Dialog */
.ui-dialog {
  padding: 0;
  background-color: #FFFFFF; }
  .ui-dialog .ui-widget-header {
    height: 40px;
    box-sizing: border-box;
    padding: 0 20px;
    background-color: #7C6E6D; }
  .ui-dialog .ui-dialog-title {
    color: #FFFFFF;
    font-size: 15px;
    line-height: 1.4;
    font-weight: bold;
    margin: 0.5em 0; }
  .ui-dialog .ui-dialog-titlebar-close {
    border-width: 0;
    right: 15px;
    background-color: transparent; }
    .ui-dialog .ui-dialog-titlebar-close .ui-icon-closethick {
      width: 19px;
      height: 19px;
      position: absolute;
      transform: rotate(45deg); }
      .ui-dialog .ui-dialog-titlebar-close .ui-icon-closethick:before, .ui-dialog .ui-dialog-titlebar-close .ui-icon-closethick:after {
        content: '';
        display: block;
        position: absolute;
        background-color: #FFFFFF; }
      .ui-dialog .ui-dialog-titlebar-close .ui-icon-closethick:before {
        width: 19px;
        height: 1px;
        top: 9px; }
      .ui-dialog .ui-dialog-titlebar-close .ui-icon-closethick:after {
        width: 1px;
        height: 19px;
        left: 9px; }
  .ui-dialog .ui-dialog-buttonpane {
    margin: -1px 20px 0;
    padding: 13px 0 35px;
    border-top: 1px solid #DCDDDE; }
    .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
      float: none;
      text-align: center; }
    .ui-dialog .ui-dialog-buttonpane button {
      font-size: 12px;
      line-height: 1.3;
      letter-spacing: -0.02em;
      border-width: 0;
      min-width: 100px;
      margin: 0 2.5px; }
    .ui-dialog .ui-dialog-buttonpane .ui-button {
      height: 28px;
      padding: 0 10px; }
    .ui-dialog .ui-dialog-buttonpane .btn_primary {
      color: #FFFFFF; }
    .ui-dialog .ui-dialog-buttonpane .btn_secondary {
      color: #FFFFFF; }
    .ui-dialog .ui-dialog-buttonpane .btn_dark {
      color: #FFFFFF; }

/* 암전 */
.ui-widget-overlay {
  background-color: rgba(0, 0, 0, 0.7); }

/* Datepicker */
.inp_datepicker {
  display: inline-flex;
  align-items: center; }

.hasDatepicker,
.hasMonthpicker {
  font-size: 12px;
  color: #181818;
  border: 1px solid #D6D7D8;
  width: 90px;
  height: 28px;
  box-sizing: border-box;
  padding-left: 10px;
  padding-right: 10px; }
  .hasDatepicker:focus-visible,
  .hasMonthpicker:focus-visible {
    outline-width: 0; }
  .hasDatepicker:focus,
  .hasMonthpicker:focus {
    border: 1px solid #fb4f00; }

.ui-datepicker-trigger,
.ui-monthpicker-trigger {
  width: 28px;
  height: 28px;
  object-fit: none;
  object-position: 0 0;
  margin-left: -1px; }

.ui-datepicker {
  padding: 0;
  z-index: 10; }
  .ui-datepicker.ui-widget-content {
    background-color: #FFFFFF; }
  .ui-datepicker .ui-datepicker-header {
    padding: 9px 0;
    background-color: #676565; }
  .ui-datepicker .ui-datepicker-title {
    color: #FFFFFF;
    font-size: 13px;
    font-weight: bold; }
  .ui-datepicker .ui-datepicker-year {
    font-size: 14px; }
  .ui-datepicker .ui-datepicker-prev,
  .ui-datepicker .ui-datepicker-next {
    width: 28px;
    height: 28px;
    top: 7px; }
    .ui-datepicker .ui-datepicker-prev .ui-icon,
    .ui-datepicker .ui-datepicker-next .ui-icon {
      position: static;
      width: 28px;
      height: 28px;
      margin: 0;
      background-image: url(../images/img_jqueryui.png); }
  .ui-datepicker .ui-datepicker-prev .ui-icon {
    background-position: -100px 0; }
  .ui-datepicker .ui-datepicker-next .ui-icon {
    background-position: -150px 0; }
  .ui-datepicker .ui-datepicker-calendar {
    margin-bottom: 0;
    table-layout: fixed; }
    .ui-datepicker .ui-datepicker-calendar thead th {
      color: #1a1a1a;
      font-size: 11px;
      line-height: 28px;
      padding: 0;
      height: 30px;
      border: 1px solid #DFE0E1;
      background-color: #F0F1F2; }
    .ui-datepicker .ui-datepicker-calendar tbody td {
      padding: 0;
      border: 1px solid #DFE0E1; }
  .ui-datepicker .ui-state-default {
    color: #1a1a1a;
    font-size: 11px;
    line-height: 28px;
    text-align: center;
    height: 30px;
    box-sizing: border-box; }
  .ui-datepicker td span,
  .ui-datepicker td a {
    padding: 0; }
  .ui-datepicker .ui-datepicker-today {
    background-color: #FD5822; }
    .ui-datepicker .ui-datepicker-today a {
      color: #FFFFFF; }
  .ui-datepicker .ui-state-disabled {
    color: #7f7f7f;
    background-color: #F1F2F3; }

/* Monthpicker */
.ui-monthpicker {
  border: 1px solid #BCBBBB;
  border-top-width: 0;
  box-sizing: border-box;
  width: 208px;
  z-index: 100 !important; }
  .ui-monthpicker .ui-datepicker-header {
    margin-left: -1px;
    margin-right: -1px;
    width: calc(100% + 2px); }
  .ui-monthpicker .ui-datepicker-prev {
    left: 50px; }
  .ui-monthpicker .ui-datepicker-next {
    right: 50px; }
  .ui-monthpicker .ui-datepicker-calendar {
    width: calc(100% - 22px);
    margin: 11px;
    border-collapse: separate;
    border-spacing: 3px; }
  .ui-monthpicker .ui-state-default {
    font-size: 12px; }

/* 기간 */
.inp_period {
  display: inline-flex;
  align-items: center; }
  .inp_period label {
    color: #181818;
    font-size: 14px;
    line-height: 1.4;
    margin-right: 12px; }
  .inp_period .dash {
    margin-left: 10px;
    margin-right: 10px; }

/* Tab */
.content_tab .ui-tabs-nav {
  padding: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid #D8D8D8; }
  .content_tab .ui-tabs-nav .ui-tabs-anchor {
    font-size: 14px;
    color: #808080;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    padding: 9px 14px;
    height: 38px;
    min-width: 174px; }

.content_tab .ui-tabs-tab {
  border: 1px solid #D8D8D8;
  background-color: #F2F2F2; }

.content_tab .area_right {
  display: inline-flex;
  float: right; }

.content_tab .ui-state-active {
  background-color: #FFFFFF; }
  .content_tab .ui-state-active .ui-tabs-anchor {
    color: #181818; }

.content_tab .ui-tabs-panel {
  padding: 0; }

.content_header + .content_tab {
  margin-top: -41px; }
  .content_header + .content_tab .ui-tabs-nav {
    display: flex;
    justify-content: flex-end; }
    .content_header + .content_tab .ui-tabs-nav li {
      float: none;
      margin: 1px 0 0 0.2em; }
    .content_header + .content_tab .ui-tabs-nav li.ui-tabs-active {
      margin-bottom: -1px; }
    .content_header + .content_tab .ui-tabs-nav .tab_title {
      align-self: center;
      color: #181818;
      font-size: 12px;
      padding-right: 8px; }

/* Tab - 정보 팝업 */
.information_tab {
  padding: 0; }
  .information_tab .ui-tabs-nav {
    padding: 8px 0 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #D8D8D8; }
    .information_tab .ui-tabs-nav li {
      margin: 0 3px 0 0; }
    .information_tab .ui-tabs-nav .ui-tabs-anchor {
      font-size: 13px;
      color: #808080;
      font-weight: bold;
      text-align: center;
      box-sizing: border-box;
      padding: 6px 14px;
      height: 32px;
      min-width: 100px; }
  .information_tab .ui-tabs-tab {
    border: 1px solid #D8D8D8;
    background-color: #F2F2F2; }
  .information_tab .area_right {
    display: inline-flex;
    float: right; }
  .information_tab .ui-state-active {
    background-color: #FFFFFF; }
    .information_tab .ui-state-active .ui-tabs-anchor {
      color: #181818; }
  .information_tab .ui-tabs-panel {
    padding: 0; }

/* 팝업 내 요소 여백 재정의 */
.ui-dialog .ui-dialog-content {
  padding: 6px 20px 0; }

.select2.select2-container--default .select2-selection--single {
  border-color: #D6D7D8;
  border-radius: 0;
  position: relative; }
  .select2.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 12px;
    color: #181818;
    line-height: 25px;
    padding-left: 10px;
    padding-right: 29px; }
  .select2.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 29px;
    top: 0;
    right: 0;
    background: #FFFFFF url(../images/img_select.png) right center no-repeat; }
    .select2.select2-container--default .select2-selection--single .select2-selection__arrow b {
      visibility: hidden; }

.select2.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #fb4f00; }

.select2-container .select2-results {
  font-size: 12px;
  color: #181818; }

.select2-container.select2-container--open .select2-dropdown--below {
  border-radius: 0; }

.select2-container.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #696565; }

.select2-container.select2-container--default .select2-search--dropdown .select2-search__field {
  font-size: 12px;
  color: #181818;
  border: 1px solid #D6D7D8; }
  .select2-container.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline-width: 0;
    border: 1px solid #fb4f00; }
