
/* basic --------------------------------------------------------------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0px 0px;
  padding: 0px 0px;
  width: 100%;
  height: 100%;
  font-size: 100%;
  font-family: 'Roboto', sans-serif;
  color: #222;
  background-color: #ffffff;
}

ul {
  margin: 0px 0px;
  list-style: none;
  padding-left: 0px;
  cursor: default;
}

a, a:hover, a:focus {
  text-decoration: none;
  color: inherit;
}

label {
  font-weight: normal;
}

input[type='radio'],
input[type='radio']:checked {
  appearance: none;
  margin-left: 3px;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  background-color: #ffffff;
  border: 2px solid #dddddd;
  cursor: pointer;
}

  input[type='radio']:checked {
      background-color: #d8703f;
      border: 0px;
  }


input[type='checkbox'] {
  appearance: none;
  margin-left: 3px;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background-color: #ffffff;
  border: 2px solid #dddddd;
  cursor: pointer;
}

  input[type='checkbox']:checked {
      margin-right: 8px;
      width: 10px;
      height: 15px;
      border: solid #d8703f;
      border-width: 0px 3px 3px 0px;
      transform: rotate(38deg);
  }

/*--------------------------------------------------------------------------------------------------*/

/* float --------------------------------------------------------------------------------------------------*/
.pu_float_left {
  float: left;
}

.pu_float_right {
  float: right;
}

.pu_float_none {
  float: none;
}

/*--------------------------------------------------------------------------------------------------*/

/* align --------------------------------------------------------------------------------------------------*/

.pu_text_left {
  text-align: left !important;
}

.pu_text_center {
  text-align: center !important;
}

.pu_text_right {
  text-align: right !important;
}

/*--------------------------------------------------------------------------------------------------*/

/* row --------------------------------------------------------------------------------------------------*/
.pu_row {
  width: inherit;
}

  .pu_row::before, .pu_row::after {
      display: table;
      content: " ";
  }

  .pu_row::after {
      clear: both;
  }

.pu_row_horizon {
  display: flex;
}

.pu_contents > .pu_row_horizon,
.pu_contents > .pu_row {
  margin-top: 10px;
  margin-bottom: 10px;
}

.pu_top_line {
  border-top: 1px solid #dedede;
}

.pu_bottom_line {
  border-bottom: 1px solid #dedede;
}
/*--------------------------------------------------------------------------------------------------*/

/* input --------------------------------------------------------------------------------------------------*/
.pu_input_text {
  padding: 6px;
  width: 100%;
  outline: none;
  border: 1px solid #dddddd;
  background-color: #ffffff;
  font-size: 14px;
  color: #212121;
}

.pu_input_textarea {
  width: 100%;
  min-height: 250px;
  border: 1px solid #dddddd;
  border-radius: 5px;
  background-color: #ffffff;
  font-size: 14px;
  color: #212121;
}

.pu_input_select {
  padding: 6px;
  width: 100%;
  outline: none;
  border: 1px solid #dddddd;
  background-color: #ffffff;
  font-size: 14px;
  color: #212121;
  cursor: pointer;
}

.pu_input_radio_label,
.pu_input_checkbox_label {
  padding: 0px 5px 0px 5px;
  font-size: 14px;
  background-color: #ffffff;
  display: inline-block;
  cursor: pointer;
  transition: 200ms;
  position: relative;
}

.pu_input_must_sign {
  position: absolute;
  top: -5px;
  left: -3px;
  font-size: 20px;
  color: red;
  display: block;
  transform: rotate( -45deg );
}

/*--------------------------------------------------------------------------------------------------*/

/* col --------------------------------------------------------------------------------------------------*/
[class*="pu_col_lg_"] {
  padding: 0.3% 0.3%;
  min-height: 1px;
  float: left;
  position: relative;
}

.pu_col_lg_1 {
  width: 8.33%;
}

.pu_col_lg_2 {
  width: 16.66%;
}

.pu_col_lg_3 {
  width: 25%;
}

.pu_col_lg_4 {
  width: 33.33%;
}

.pu_col_lg_5 {
  width: 41.66%;
}

.pu_col_lg_6 {
  width: 50%;
}

.pu_col_lg_7 {
  width: 58.33%;
}

.pu_col_lg_8 {
  width: 66.66%;
}

.pu_col_lg_9 {
  width: 75%;
}

.pu_col_lg_10 {
  width: 83.33%;
}

.pu_col_lg_11 {
  width: 91.66%;
}

.pu_col_lg_12 {
  width: 100%;
}
/*--------------------------------------------------------------------------------------------------*/

/* 테이블 --------------------------------------------------------------------------------------------------*/

.pu_table_list,
.pu_table_view,
.pu_table_option {
  width: 100%;
  color: #999;
  table-layout: fixed;
}

  .pu_table_list tr:first-child,
  .pu_table_view tr:first-child {
      border-top: 1px solid #d8703f;
  }

  .pu_table_list tr,
  .pu_table_view tr,
  .pu_table_option tr {
      border-bottom: 1px solid #dddddd;
  }

  .pu_table_list thead tr:last-child,
  .pu_table_view thead tr:last-child {
      border-bottom: 1px double #bfbfbf;
  }

  .pu_table_list thead tr {
      height: 45px;
  }

  .pu_table_list tbody tr,
  .pu_table_option tr {
      height: 35px;
  }

  .pu_table_list tr th {
      font-size: 15px;
      font-weight: bolder;
      text-align: center;
      position: relative;
  }

  .pu_table_list tr td {
      font-size: 14px;
      text-align: center;
      position: relative;
  }

  .pu_table_view tr {
      height: 35px;
  }

      .pu_table_view tr th {
          padding: 10px 10px;
          font-size: 14px;
          font-weight: normal;
          text-align: center;
          background-color: #f5f5f5;
          position: relative;
      }

      .pu_table_view tr td {
          padding: 10px 10px;
          font-size: 14px;
          position: relative;
      }

  .pu_table_option tr th {
      padding: 10px 10px;
  }

  .pu_table_option tr th,
  .pu_table_option tr td {
      font-size: 14px;
      position: relative;
  }

  .pu_table_option ul li {
      margin-right: 7px;
      float: left;
  }

.pu_gubun_option_all:hover {
  cursor: pointer;
  color: #d8703f;
}

.pu_search_option_detail_hide {
  height: 0px;
  opacity: 0;
  transition: 300ms;
}

.pu_search_option_detail_show {
  height: 100%;
  opacity: 1;
  transition: 300ms;
}

/*--------------------------------------------------------------------------------------------------*/
/* 버튼 --------------------------------------------------------------------------------------------------*/
.pu_btn_search {
  width: 60px;
  height: 40px;
  line-height: 35px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  color: #777777;
  display: inline-block;
  transition: 200ms;
}

  .pu_btn_search:hover {
      color: #d8703f;
      transition: 200ms;
  }

.pu_btn {
  width: 100%;
  height: 30px;
  line-height: 30px;
  color: #999999;
  text-align: center;
  background-color:#ffffff;
  border: 1px solid #dddddd;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
}

  .pu_btn i {
      margin-right: 7px;
  }

  .pu_btn.pu_btn_list {
      transition: 200ms;
  }

      .pu_btn.pu_btn_list:hover {
          color: #ffffff;
          background-color: #969696;
          border: 0px;
          transition: 200ms;
      }

  .pu_btn.pu_btn_edit {
      transition: 200ms;
  }

      .pu_btn.pu_btn_edit:hover {
          color: #ffffff;
          background-color: #f0ad4e;
          border: 0px;
          transition: 200ms;
      }

  .pu_btn.pu_btn_regi {
      transition: 200ms;
  }

      .pu_btn.pu_btn_regi:hover {
          color: #ffffff;
          background-color: #0071c1;
          border: 0px;
          transition: 200ms;
      }

  .pu_btn.pu_btn_del {
      transition: 200ms;
  }

      .pu_btn.pu_btn_del:hover {
          color: #ffffff;
          background-color: #9a0000;
          border: 0px;
          transition: 200ms;
      }

  .pu_btn.pu_btn_add {
      transition: 200ms;
  }

      .pu_btn.pu_btn_add:hover {
          color: #ffffff;
          background-color: #33cc33;
          border: 0px;
          transition: 200ms;
      }

  .pu_btn.pu_btn_info {
      transition: 200ms;
  }

      .pu_btn.pu_btn_info:hover {
          color: #ffffff;
          background-color: #99ccff;
          border: 0px;
      }

/*--------------------------------------------------------------------------------------------------*/

/* 표시구분 --------------------------------------------------------------------------------------------------*/

.pu_sign_none {
  display: inline-block;
  width: 35px;
  height: 23px;
}

.pu_sign_yellow {
  display: inline-block;
  width: 35px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
  background-color: #f0ad4e;
  border-radius: 5px;
}

.pu_sign_green {
  display: inline-block;
  width: 35px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
  background-color: #33cc33;
  border-radius: 5px;
}

.pu_sign_gray {
  display: inline-block;
  width: 35px;
  height: 23px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
  background-color: #969696;
  border-radius: 5px;
}

/*색상*/
.pu_text_color_gray {
  color: #d9d9d9;
}

.pu_text_color_yellow {
  color: #ffd633;
}

.far.fa-star, .fas.fa-star {
  cursor: pointer;
}

/* 첨부파일 --------------------------------------------------------------------------------------------------*/

.pu_file_item_ul .pu_file_item_li {
  width: 16.66%;
  float: left;
}

.pu_file_item_wrapper {
  padding: 10px 5px;
  height:140px;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 5px;
  position: relative;
  cursor:pointer;
}

.pu_file_item_img {
  height:66px;
  text-align: center;
}

.pu_file_item_img_img {
  width: 30%;
  max-height: 72px;
}

.pu_file_item_info {
  margin: 5px 0px;
  white-space: nowrap;
  text-overflow: clip;
  overflow: hidden;
}

.pu_file_item_btn_del {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: 20px;
  color: #9a0000;
}

.pu_file_item_rep_yn {
  padding: 3px 0px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  background-color: #0071c1;
  border-radius: 3px;
  transition: 200ms;
  display: none;
  cursor: pointer;
}

/* --------------------------------------------------------------------------------------------------*/

/* 달력 --------------------------------------------------------------------------------------------------*/
.pu_row_calendar {
  display: inline-flex;
}

  .pu_row_calendar input[type='text'] {
      width: 100px;
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px;
  }

      .pu_row_calendar input[type='text']:hover {
          cursor: pointer;
      }

  .pu_row_calendar i.far {
      padding: 7px 0px;
      margin-right: 0px;
      width: 30px;
      font-size: 17px;
      text-align: center;
      background-color: #f5f5f5;
      border-top-left-radius: 5px;
      border-bottom-left-radius: 5px;
      display: inline-block;
  }

  .pu_row_calendar * {
      margin-right: 5px;
  }
/* --------------------------------------------------------------------------------------------------*/

/* ETC --------------------------------------------------------------------------------------------------*/
#searchForm {
  padding-top: 15px;
  min-height: 75px;
}

.pu_alert_empty {
  padding: 70px 0px;
  font-size: 16px;
  text-align: center;
  color: #999;
}

.pu_div_contents {
  margin: 0 auto;
  padding: 10px 20px;
  max-width: 900px;
  min-height: 560px;
}
