@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%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul, li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

td,
th {
  word-break: break-all;
}

textarea {
  resize: none;
}

a,
a:link,
a:visited,
a:active {
  text-decoration: none;
}

i {
  font-style: normal;
}

img,
object,
embed {
  max-width: 100%;
}

em {
  font-style: normal;
}

legend,
caption {
  font-size: 0;
  overflow: hidden;
  text-indent: -9999999px;
  height: 0;
  width: 0;
  line-height: 0;
}

* {
  box-sizing: border-box;
}

/*증감버튼 삭제*/
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/*리셋*/
/*변수*/
/*포지션*/
/*말줄임*/
/*믹스인*/
.ui_wrap {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 1920px;
  height: auto;
  flex-flow: row wrap;
  gap: 1rem;
  margin: 0 auto;
  padding: 5rem 0;
}
.ui_wrap h2 {
  width: 100%;
  height: auto;
  text-align: center;
  font-size: 4rem;
  padding-bottom: 3rem;
  color: #4251A5;
}
.ui_wrap h3 {
  width: 100%;
  height: auto;
  text-align: left;
  font-size: 2rem;
}
.ui_wrap .t1 {
  width: auto;
  height: auto;
  min-width: 15rem;
  text-align: left;
  font-size: 2.4rem;
}
.ui_wrap .ul_type {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  align-content: flex-start;
  flex-direction: column;
  padding: 4rem 0;
}
.ui_wrap .ul_type > ul {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}
.ui_wrap .ui_box {
  position: relative !important;
  width: 100%;
  max-width: 1920px;
  min-width: 300px;
  min-height: 200px;
  margin: 1rem 0 2rem;
  background: #f5f5f5;
}

.form-row {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
  gap: 30px;
  position: relative;
}

.form-row--s {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
  gap: 15px;
  position: relative;
}

/*셀렉트*/
.form_select {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  height: 40px;
  font-size: 22px;
  font-weight: 400;
  color: #000;
}
.form_select label {
  font-weight: 400;
  margin-right: 10px;
}
.form_select select {
  width: auto;
  height: 40px;
  font-size: 22px;
  padding: 0 50px 0 20px;
  appearance: none;
  -webkit-appearance: none; /*select 내부 스타일 제거 (화살표 제거)*/
  -moz-appearance: none;
  -o-appearance: none;
  background: #fff url("../img/icon_select.png") no-repeat right 1.6rem center;
  border: 1px solid #ccc;
  /*익플 10,11이상. 화살표 감추기*/
}
.form_select select ::-ms-expand {
  display: none;
}

/*체크박스*/
.chechbox-n {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 40px;
  font-size: 22px;
  padding-left: 35px;
  font-weight: 400;
  color: #999;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
}
.chechbox-n input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  /* When the checkbox is checked, add a blue background */
  /* Show the checkmark when checked */
}
.chechbox-n input[type=checkbox]:checked ~ .checkmark {
  background-color: #fff;
  border: 1px solid #4251A5;
}
.chechbox-n input[type=checkbox]:checked ~ .checkmark::after {
  border: solid #4251A5;
  border-width: 0 3px 3px 0;
}
.chechbox-n input[type=checkbox]:checked ~ .checkmark:after {
  visibility: visible;
  opacity: 1;
  transform: rotate(45deg);
}
.chechbox-n .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #ccc;
  margin-right: 10px;
  transform: translateY(-50%);
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Style the checkmark/indicator */
}
.chechbox-n .checkmark::after {
  position: absolute;
  top: 4px;
  right: auto;
  bottom: auto;
  left: 8px;
  z-index: 9;
  width: 6px;
  height: 10px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  content: "";
  visibility: visible;
  opacity: 1;
  border: solid #ddd;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.chechbox-nonet {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 40px;
  font-size: 22px;
  padding-left: 0;
  font-weight: 400;
  color: #999;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
}
.chechbox-nonet input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  /* When the checkbox is checked, add a blue background */
  /* Show the checkmark when checked */
}
.chechbox-nonet input[type=checkbox]:checked ~ .checkmark {
  background-color: #fff;
  border: 1px solid #4251A5;
}
.chechbox-nonet input[type=checkbox]:checked ~ .checkmark::after {
  border: solid #4251A5;
  border-width: 0 3px 3px 0;
}
.chechbox-nonet input[type=checkbox]:checked ~ .checkmark:after {
  visibility: visible;
  opacity: 1;
  transform: rotate(45deg);
}
.chechbox-nonet .checkmark {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 25px;
  width: 25px;
  background-color: #fff;
  border: 1px solid #ccc;
  margin-right: 10px;
  transform: translate(-50%, -50%);
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Style the checkmark/indicator */
}
.chechbox-nonet .checkmark::after {
  position: absolute;
  top: 4px;
  right: auto;
  bottom: auto;
  left: 8px;
  z-index: 9;
  width: 6px;
  height: 10px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  content: "";
  visibility: visible;
  opacity: 1;
  border: solid #ddd;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.chechbox-wh {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 1.4rem;
  padding-left: 2.5rem;
  font-weight: 600;
  color: #474747;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  /* 마우스 오버시 모바일에서는 사용안함*/
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
}
.chechbox-wh input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  /* When the checkbox is checked, add a blue background */
  /* Show the checkmark when checked */
}
.chechbox-wh input[type=checkbox]:checked ~ .checkmark {
  background-color: #fff;
  border: 1px solid #333;
}
.chechbox-wh input[type=checkbox]:checked ~ .checkmark::after {
  border: solid #000;
  border-width: 0 2px 2px 0;
}
.chechbox-wh input[type=checkbox]:checked ~ .checkmark:after {
  visibility: visible;
  opacity: 1;
  transform: rotate(45deg);
}
.chechbox-wh .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.8rem;
  width: 1.8rem;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 2rem;
  margin-right: 10px;
  /*transform:translateY(-50%);*/
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Style the checkmark/indicator */
}
.chechbox-wh .checkmark::after {
  position: absolute;
  top: 3px;
  right: auto;
  bottom: auto;
  left: 5px;
  z-index: 9;
  width: 4px;
  height: 7px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  content: "";
  /*display: none;*/
  visibility: visible;
  opacity: 1;
  border: solid #ddd;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.chechbox-wh .checkmark.disabled {
  background: #ddd !important;
}

/*라디오박스*/
.radiobox {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 1.4rem;
  padding-left: 2.5rem;
  font-weight: 600;
  color: #474747;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
  /* 마우스 오버시 모바일에서는 사용안함*/
  /* Hide the browser's default checkbox */
  /* Create a custom checkbox */
}
.radiobox:hover input ~ .checkmark {
  background-color: #CBCBCB;
}
.radiobox input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  /* When the checkbox is checked, add a blue background */
  /* Show the checkmark when checked */
}
.radiobox input[type=radio]:checked ~ .checkmark {
  background-color: #000;
  border: 1px solid #333;
}
.radiobox input[type=radio]:checked ~ .checkmark:after {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 9;
  width: 1rem;
  height: 1rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  content: "";
  background: #fff;
  opacity: 1;
  transform: translate(-50%, -50%);
}
.radiobox .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  height: 1.8rem;
  width: 1.8rem;
  background-color: #CBCBCB;
  border-radius: 2rem;
  margin-right: 10px;
  transform: translateY(-50%);
  /* Create the checkmark/indicator (hidden when not checked) */
  /* Style the checkmark/indicator */
}
.radiobox .checkmark::after {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 9;
  width: 1rem;
  height: 1rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  border-radius: 2rem;
  -webkit-border-radius: 2rem;
  -moz-border-radius: 2rem;
  -ms-border-radius: 2rem;
  -o-border-radius: 2rem;
  content: "";
  opacity: 1;
  background: #fff;
  transform: translate(-50%, -50%);
}
.radiobox .checkmark.disabled {
  background: #ddd !important;
}

/*버튼*/
.btn {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 40px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  padding: 0 15px;
  background: #6651A1;
  border: 1px solid #6651A1;
  cursor: pointer;
}

.btn-l {
  height: 50px;
}

.btn_outline {
  color: #6651A1;
  background: #fff;
  border: 1px solid #6651A1;
}

.btn_outline-active {
  color: #4251A5;
  background: #fff;
  border: 1px solid #4251A5;
}
.btn_outline-active:hover, .btn_outline-active.active {
  color: #fff;
  background: #4251A5;
  border: 1px solid #4251A5;
}

.btn_square {
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.btn_square_active {
  color: #CCCCCC;
  background: #fff;
  border: 1px solid #ccc;
}
.btn_square_active:hover, .btn_square_active.active {
  color: #fff;
  background: #4251A5;
  border: 1px solid #4251A5;
}

.btn-ok {
  background: #4251A5;
  border: 1px solid #6651A1;
}

.btn_blue {
  background: #4251A5;
  border: 1px solid #6651A1;
}

.btn_gray {
  color: #666666;
  background: #ccc;
  border: 1px solid #ccc;
}

.btn_pink {
  background: #C54C7E;
  border: 1px solid #C54C7E;
}

.btn_pink-line {
  color: #C54C7E;
  background: #fff;
  border: 1px solid #C54C7E;
}

.btn_gray02 {
  background: #ACA39A;
  border: 1px solid #ACA39A;
}

.btn_gray02-line {
  color: #ACA39A;
  background: #fff;
  border: 1px solid #ACA39A;
}

.btn-left,
.btn-right {
  width: 45px;
  height: 40px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  background: #fff;
  border: 1px solid #ddd;
}
.btn-left > i,
.btn-right > i {
  width: 0;
  height: 0;
  position: relative;
  left: 12px;
  display: block;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 12px solid #4251A5;
  border-right: 12px solid transparent;
}
.btn-left:hover, .btn-left.active,
.btn-right:hover,
.btn-right.active {
  background: #4251A5;
  border: 1px solid #4251A5;
}
.btn-left:hover > i, .btn-left.active > i,
.btn-right:hover > i,
.btn-right.active > i {
  border-left: 12px solid #fff;
}

.btn-left {
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
}
.btn-left i {
  left: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid #4251A5;
}
.btn-left:hover > i, .btn-left.active > i {
  border-left: 12px solid transparent;
  border-right: 12px solid #fff;
}

.btn-right {
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
}

.btn-left--noneOutline,
.btn-right--noneOutline {
  width: 60px;
  border: 0;
  background: transparent;
}
.btn-left--noneOutline > i,
.btn-right--noneOutline > i {
  width: 0;
  height: 0;
  position: relative;
  left: 18px;
  display: block;
  border-bottom: 8px solid transparent;
  border-top: 8px solid transparent;
  border-left: 12px solid #4251A5;
  border-right: 12px solid transparent;
}

.btn-left--noneOutline i {
  left: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid #4251A5;
}

.btn_memo,
.btn_memo_have {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  color: #fff;
  font-size: 20px;
  background: #ccc;
  border: 0;
}

.btn_memo_have {
  background: #F0B027;
}

/*textarea*/
.textarea_wrap {
  margin-top: 20px;
}
.textarea_wrap textarea {
  width: 100%;
  height: 15rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #545454;
  padding: 1.6rem;
  border: 1px solid #ccc;
}
.textarea_wrap textarea::placeholder {
  color: #999;
  font-weight: 400;
}
.textarea_wrap .count {
  margin-top: 1rem;
  text-align: right;
  font-size: 1.2rem;
  color: #999;
}

/*input */
.board-section .form-row--s {
  gap: 5px;
}
.board-section input[type=text] {
  width: 100%;
  height: 40px;
  font-size: 22px;
  color: #000;
  padding: 0 10px;
  background: #fff;
  border: 1px solid #ccc;
}
.board-section input[type=text]::placeholder {
  color: #ccc;
}

/*board type01*/
.board-section {
  width: 100%;
  height: 100%;
  /*flight info board*/
}
.board-section .board-flight ul li:nth-child(1) {
  width: 60px;
}
.board-section .board-flight ul li:nth-child(2) {
  width: 100px;
}
.board-section .board-flight ul li:nth-child(3) {
  width: 165px;
}
.board-section .board-flight ul li:nth-child(4) {
  width: 150px;
}
.board-section .board-flight ul li:nth-child(5) {
  width: 130px;
}
.board-section .board-flight ul li:nth-child(6) {
  width: 170px;
}
.board-section .board-flight ul li:nth-child(7) {
  width: 280px;
}
.board-section .board-flight ul li:nth-child(8) {
  width: calc((100% - 1055px) / 2);
}
.board-section .board-flight ul li:nth-child(9) {
  width: calc((100% - 1055px) / 2);
}
.board-section .board-buildUp-left ul li:nth-child(1) {
  width: 60px;
}
.board-section .board-buildUp-left ul li:nth-child(2) {
  width: 30px;
}
.board-section .board-buildUp-left ul li:nth-child(3) {
  width: 75px;
}
.board-section .board-buildUp-left ul li:nth-child(4) {
  width: calc(100% - 870px);
}
.board-section .board-buildUp-left ul li:nth-child(5) {
  width: 90px;
}
.board-section .board-buildUp-left ul li:nth-child(6) {
  width: 50px;
}
.board-section .board-buildUp-left ul li:nth-child(7) {
  width: 80px;
}
.board-section .board-buildUp-left ul li:nth-child(8) {
  width: 140px;
}
.board-section .board-buildUp-left ul li:nth-child(9) {
  width: 100px;
}
.board-section .board-buildUp-left ul li:nth-child(10) {
  width: 100px;
}
.board-section .board-buildUp-left ul li:nth-child(11) {
  width: 100px;
}
.board-section .board-buildUp-left ul li:nth-child(12) {
  width: 45px;
}
.board-section .board-buildUp02-left ul li:nth-child(1) {
  width: 60px;
}
.board-section .board-buildUp02-left ul li:nth-child(2) {
  width: 30px;
}
.board-section .board-buildUp02-left ul li:nth-child(3) {
  width: 200px;
}
.board-section .board-buildUp02-left ul li:nth-child(4) {
  width: 85px;
}
.board-section .board-buildUp02-left ul li:nth-child(5) {
  width: 80px;
}
.board-section .board-buildUp02-left ul li:nth-child(6) {
  width: 55px;
}
.board-section .board-buildUp02-left ul li:nth-child(7) {
  width: 70px;
}
.board-section .board-buildUp02-left ul li:nth-child(8) {
  width: 55px;
}
.board-section .board-buildUp02-left ul li:nth-child(9) {
  width: 110px;
}
.board-section .board-buildUp02-left ul li:nth-child(10) {
  width: calc((100% - 745px) / 2);
}
.board-section .board-buildUp02-left ul li:nth-child(10) {
  width: calc((100% - 745px) / 2);
}
.board-section .board-buildUp-right .board-list {
  height: calc(100vh - 345px);
}
.board-section .board-buildUp-right ul li:nth-child(1) {
  width: 60px;
}
.board-section .board-buildUp-right ul li:nth-child(2) {
  width: calc(100% - 510px);
}
.board-section .board-buildUp-right ul li:nth-child(3) {
  width: 85px;
}
.board-section .board-buildUp-right ul li:nth-child(4) {
  width: 100px;
}
.board-section .board-buildUp-right ul li:nth-child(5) {
  width: 125px;
}
.board-section .board-buildUp-right ul li:nth-child(6) {
  width: 70px;
}
.board-section .board-buildUp-right ul li:nth-child(7) {
  width: 70px;
}
.board-section .board-buildUp-right--top .board-list {
  height: calc(100vh - 760px);
}
.board-section .board-buildUp-right--top ul li:nth-child(1) {
  width: calc(100% - 405px);
}
.board-section .board-buildUp-right--top ul li:nth-child(2) {
  width: 115px;
}
.board-section .board-buildUp-right--top ul li:nth-child(3) {
  width: 85px;
}
.board-section .board-buildUp-right--top ul li:nth-child(4) {
  width: 80px;
}
.board-section .board-buildUp-right--top ul li:nth-child(5) {
  width: 75px;
}
.board-section .board-buildUp-right--top ul li:nth-child(6) {
  width: 55px;
}
.board-section .board-buildUp-right--bottom .board-list {
  height: 192px;
}
.board-section .board-buildUp-right--bottom ul li:nth-child(1) {
  width: calc(100% - 370px);
}
.board-section .board-buildUp-right--bottom ul li:nth-child(2) {
  width: 200px;
}
.board-section .board-buildUp-right--bottom ul li:nth-child(3) {
  width: 170px;
}
.board-section .board-top {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  flex-direction: row;
  position: relative;
  border: 1px solid #CCCCCC;
  background: #F4F4F4;
}
.board-section .board-top > li {
  position: relative;
}
.board-section .board-top .board-title {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 60px;
  color: #000;
  font-size: 22px;
}
.board-section .board-top .board-title.--checkbox {
  width: 60px;
}
.board-section .board-top .board-title > button {
  padding-right: 15px;
  border: 0;
  background: transparent;
}
.board-section .board-list {
  width: 100%;
  height: calc(100vh - 270px);
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  overflow-y: scroll;
}
.board-section .board-list--line-set {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  flex-direction: column;
  border: 1px solid #ccc;
  border-top: 0;
}
.board-section .board-list--line {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
  height: auto;
  flex-direction: row;
  flex-shrink: 0;
}
.board-section .board-list--line .--cell {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  height: 60px;
  color: #000;
  font-weight: 400;
  font-size: 22px;
  padding: 0 5px;
}
.board-section .board-list--line .--cell.--checkbox {
  width: 60px;
}
.board-section .board-list--line .--cell .btn-txt {
  width: 100%;
  font-size: 22px;
  text-align: left;
  justify-content: flex-start;
  color: #000;
  border: 0;
  background: transparent;
}
.board-section .board-list--line .one-cell {
  width: 100% !important;
}
.board-section .board-list--line--detail {
  width: 100%;
  height: auto;
  display: none;
  padding: 20px 20px 20px 170px;
  background: #fff;
}
.board-section .board-list--line--detail.active {
  display: flex;
}
.board-section .board-list--line--detail dl {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  flex-flow: row wrap;
}
.board-section .board-list--line--detail dt {
  width: 230px;
  font-size: 22px;
  line-height: 1.5;
  color: #000;
}
.board-section .board-list--line--detail dd {
  width: calc(100% - 230px);
  font-size: 22px;
  line-height: 1.5;
  color: #000;
}
.board-section .checked-scc {
  background: #CAF9D0;
}
.board-section .checked-update {
  background: #FFD6B8;
}
.board-section .checked-barcode {
  background: #FFF8A2;
}
.board-section .checked-checkbox {
  background: #CCD4FF;
}
.board-section .checked-new {
  background: #FFCCDE;
}
.board-section .checked-del {
  position: relative;
}
.board-section .checked-del li {
  color: #ccc !important;
}
.board-section .checked-del button {
  color: #ccc !important;
}
.board-section .checked-del::after {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 5px;
  content: "";
  background: #999;
  opacity: 0.5;
}

.bottom_btns {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 35px;
}
.bottom_btns.--center {
  justify-content: center;
  gap: 20px;
}
.bottom_btns .bottom_btns--left,
.bottom_btns .bottom_btns--right {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 20px;
}
.bottom_btns .bottom_btns--right {
  justify-content: flex-end;
}

.board-list + .bottom_btns {
  margin: 15px 0;
}

/*캘린더*/
.calendar_range_type,
.calendar_type {
  position: relative;
  display: inline-block;
}
.calendar_range_type input[type=text],
.calendar_type input[type=text] {
  width: 100%;
  height: 5.2rem;
  padding: 1.5rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: #545454;
  border: 1px solid #ccc;
  background: #fff;
}
.calendar_range_type:after,
.calendar_type:after {
  position: absolute;
  display: block;
  right: 1.2rem;
  top: 1.4rem;
  width: 24px;
  height: 24px;
  background: url(@/assets/img/icon_calendar.png) no-repeat 0 0;
  content: "";
}
.calendar_range_type .vc-container,
.calendar_type .vc-container {
  position: absolute;
  z-index: 10;
}

.calendar_type {
  width: 15rem;
}

.calendar_range_type {
  width: 24.5rem;
}

button {
  cursor: pointer;
}
button .icon {
  padding-left: 18px;
}
button .trash {
  background: url(@/assets/img/icon_trash_16.svg) no-repeat 0 0;
}

/*form*/
.gnb_wrap {
  width: 100%;
  height: 50px;
  position: relative;
  background: #4251A5;
  /*상단메뉴*/
  /*글로벌 메뉴*/
}
.gnb_wrap .top-nav {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 50px;
  flex-direction: row;
  padding-left: 20px;
}
.gnb_wrap .top-nav .btn_menu {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 24px;
  position: relative;
  flex-direction: column;
  margin-right: 80px;
  padding: 0;
  background: transparent;
  border: 0;
  /*active*/
}
.gnb_wrap .top-nav .btn_menu > span {
  font-size: 0;
  color: #fff;
}
.gnb_wrap .top-nav .btn_menu > i {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 9;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  background: #fff;
  transform: translateX(-50%);
}
.gnb_wrap .top-nav .btn_menu > i:nth-child(2) {
  top: calc(50% - 2px);
}
.gnb_wrap .top-nav .btn_menu > i:nth-child(3) {
  top: auto;
  bottom: 0;
}
.gnb_wrap .top-nav .btn_menu.acitve_menu i:first-child {
  display: none;
}
.gnb_wrap .top-nav .btn_menu.acitve_menu i:nth-child(2) {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 9;
  margin: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.gnb_wrap .top-nav .btn_menu.acitve_menu i:nth-child(3) {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.gnb_wrap .top-nav > nav {
  display: flex;
  gap: 70px;
}
.gnb_wrap .top-nav > nav .quick_menu {
  color: #A9B2E5;
  font-size: 18px;
  cursor: pointer;
}
.gnb_wrap .top-nav > nav .quick_menu.active {
  color: #fff;
}
.gnb_wrap .top-nav .right-info {
  width: 250px;
  height: 100%;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
  background: #2E2E7C;
  margin-left: auto;
  padding: 0 20px;
}
.gnb_wrap .top-nav .right-info p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
.gnb_wrap .top-nav .right-info p > span,
.gnb_wrap .top-nav .right-info p > small {
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  opacity: 0.7;
}
.gnb_wrap .top-nav .right-info p > small {
  font-size: 14px;
}
.gnb_wrap .top-nav .right-info .btn_logout {
  width: 28px;
  height: 30px;
  line-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}
.gnb_wrap .top-nav .right-info .btn_logout > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gnb_wrap .gnb-contents {
  position: fixed;
  top: 50px;
  right: auto;
  bottom: auto;
  left: -195px;
  z-index: 9999;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 195px;
  height: calc(100vh - 50px);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  flex-direction: row;
}
.gnb_wrap .gnb-contents.acitveLeftMenu {
  left: 0;
}
.gnb_wrap .gnb-contents .sub_menu {
  width: 195px;
  height: auto;
  flex-shrink: 0;
  display: block;
}
.gnb_wrap .gnb-contents .sub_menu > ul {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  flex-direction: column;
}
.gnb_wrap .gnb-contents .sub_menu > ul .sub_one,
.gnb_wrap .gnb-contents .sub_menu > ul .sub_two,
.gnb_wrap .gnb-contents .sub_menu > ul .sub_three {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
  position: relative;
  border-bottom: 1px solid #191960;
  cursor: pointer;
}
.gnb_wrap .gnb-contents .sub_menu > ul .sub_one .sub_one_txt,
.gnb_wrap .gnb-contents .sub_menu > ul .sub_two .sub_one_txt,
.gnb_wrap .gnb-contents .sub_menu > ul .sub_three .sub_one_txt {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-align: left;
  padding-left: 30px;
  background: transparent;
  border: 0;
}
.gnb_wrap .gnb-contents .sub_menu.one_depth {
  position: relative;
  z-index: 99;
  background: #2E2E7C;
}
.gnb_wrap .gnb-contents .sub_menu.one_depth .sub_one.active,
.gnb_wrap .gnb-contents .sub_menu.one_depth .sub_one:hover {
  background: rgba(0, 0, 0, 0.5);
}
.gnb_wrap .gnb-contents .sub_menu.one_depth .sub_one.active .sub_one_txt,
.gnb_wrap .gnb-contents .sub_menu.one_depth .sub_one:hover .sub_one_txt {
  color: rgb(255, 255, 255);
}
.gnb_wrap .gnb-contents .sub_menu.two_depth {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 9;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  background: #ACA39A;
}
.gnb_wrap .gnb-contents .sub_menu.two_depth.active {
  left: 196px;
}
.gnb_wrap .gnb-contents .sub_menu.two_depth > ul .sub_two {
  border-bottom: 1px solid #9E9387;
}
.gnb_wrap .gnb-contents .sub_menu.three_depth {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 9;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  background: #EAEBEC;
}
.gnb_wrap .gnb-contents .sub_menu.three_depth.active {
  left: 381px;
}
.gnb_wrap .gnb-contents .sub_menu.three_depth > ul .sub_three {
  border-bottom: 1px solid #D8D8D8;
}
.gnb_wrap .gnb-contents .sub_menu.three_depth > ul .sub_three .sub_one_txt {
  color: rgba(102, 102, 102, 0.8);
}
.gnb_wrap .LeftMenudimm.acitveLeftMenudimm {
  position: fixed;
  top: 50px;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 9997;
  width: 100%;
  height: calc(100vh - 50px);
  display: block;
  background: rgba(0, 0, 0, 0.4);
}

/*메뉴*/
.wrap {
  width: 100%;
  height: auto;
  margin: 0;
}

/*gnb 하단 영역*/
.common_top_bar {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 60px;
  flex-direction: row;
  padding: 10px 30px;
  background: #F6F6F6;
  border: 0;
}
.common_top_bar .select-flt--info-box {
  width: calc(100% - 360px);
  height: 40px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
  margin-left: 20px;
}
.common_top_bar .select-flt--info-box > ul {
  width: calc(100% - 120px);
  height: auto;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
  flex-shrink: 0;
  overflow-x: scroll;
  overflow-y: hidden;
}
.common_top_bar .select-flt--info-box > ul .sfib-list {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 96px;
  height: auto;
  flex-direction: row;
  flex-shrink: 0;
  font-size: 18px;
  color: #302D2C;
  margin-right: 10px;
  overflow: hidden;
}
.common_top_bar .select-flt--info-box > ul .sfib-list.active {
  width: 555px;
}
.common_top_bar .select-flt--info-box > ul .sfib-list.active .sfib-list--info {
  display: block;
}
.common_top_bar .select-flt--info-box > ul .sfib-list.active .btn {
  color: #fff;
  background: #4251A5;
  border: 1px solid #4251A5;
}
.common_top_bar .select-flt--info-box > ul .sfib-list > .btn_outline-active {
  flex-shrink: 0;
  min-width: 96px;
  margin-right: 10px;
}
.common_top_bar .select-flt--info-box > ul .sfib-list .sfib-list--info {
  display: none;
}
/*페이지 타이틀*/
.title-box {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
}
.title-box > span {
  font-size: 24px;
  color: #333;
  margin: 0 10px 0 5px;
}
.title-box > small {
  font-size: 20px;
  color: #999;
}

/*board 타이틀*/
.title-box02 {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
}
.title-box02 > i {
  width: 8px;
  height: 8px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  background: #E60013;
}
.title-box02 > span {
  font-size: 20px;
  color: #333;
  margin: 0 10px 0 5px;
}
.title-box02 > p i {
  font-size: 20px;
  color: #4251A5;
}

/*캘린더*/
.calendar_box {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: auto;
  flex-direction: row;
}
.calendar_box > input {
  width: 280px;
  height: 40px;
  font-size: 20px;
  color: #333;
  text-align: center;
  border: 1px solid #ddd;
  border-left: 0;
  border-right: 0;
}

/*카테고리*/
.category-btns {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-direction: row;
  position: relative;
}
.category-btns .btn_square_active {
  position: relative;
  z-index: 5;
  min-width: 60px;
}
.category-btns .btn_square_active:first-child {
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
}
.category-btns .btn_square_active:nth-child(2) {
  left: -1px;
}
.category-btns .btn_square_active:nth-child(3) {
  left: -2px;
}
.category-btns .btn_square_active:nth-child(4) {
  left: -3px;
}
.category-btns .btn_square_active:nth-child(5) {
  left: -4px;
}
.category-btns .btn_square_active:nth-child(6) {
  left: -5px;
}
.category-btns .btn_square_active:nth-child(7) {
  left: -6px;
}
.category-btns .btn_square_active:last-child {
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
}

/*상단 오른쪽 버튼 박스*/
.right-btns {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 20px;
  position: relative;
  margin-left: auto;
}

/*데이터 상단 영역*/
.top_section01 {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
  padding: 20px 30px;
  /**/
}
.top_section01 .function-btns {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  flex-direction: row;
  gap: 20px;
  position: relative;
  margin-left: 30px;
}

.top_section02 {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: auto;
  flex-direction: row;
  position: relative;
  padding: 20px 30px 10px;
}
.top_section02 .calendar_box {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
}

.top_section03 {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: auto;
  flex-direction: row;
  position: relative;
  padding: 10px 30px 20px;
}

/*컨텐츠 영역*/
.data_container {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: calc(100% - 60px);
  height: calc(100vh - 210px);
  margin: 0 30px;
  box-sizing: border-box;
}
.data_container .data_container--left {
  width: calc(60% - 36px);
  margin-right: 36px;
}
.data_container .data_container--right {
  width: 40%;
}
.data_container .data_container--right .top_section03 {
  padding: 10px 0 20px;
}
.data_container .data_container--right .board-section + .top_section03 {
  padding-top: 0;
}

.data_container--left .top_section02,
.data_container--right .top_section02 {
  padding: 20px 0 10px;
}
.search-form {
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  width: 390px;
  height: 40px;
  flex-direction: row;
  margin-left: auto;
}
.search-form > input {
  border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -ms-border-radius: 10px 0 0 10px;
  -o-border-radius: 10px 0 0 10px;
  width: 100%;
  height: 40px;
  color: #333;
  font-size: 16px;
  padding: 0 20px;
  border-right: 0;
}
.search-form > .btn {
  border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -ms-border-radius: 0 10px 10px 0;
  -o-border-radius: 0 10px 10px 0;
  width: 40px;
  flex-shrink: 0;
  padding: 0;
}

/*카피라이트*/
.footer-section {
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  z-index: 9;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 30px;
  font-size: 14px;
  color: #fff;
  background: #ACA39A;
}

/*레이아웃*/
html {
  font-size: 62.5%;
  /*10px은 1rem,*/
  --antd-wave-shadow-color: #666 !important;
}

* {
  /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/
  font-family: "Nanum Gothic";
  box-sizing: border-box;
}

body {
  /*한글 선택 일 경우*/
  overflow: auto;
}

/*크롬 브라우저 포커스 막기*/
input:focus, select:focus, option:focus, textarea:focus, button:focus {
  outline: none;
}

/*스크롤*/
.scroll::-webkit-scrollbar {
  position: absolute;
  width: 8px;
  height: 6px;
}
.scroll::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #333;
  border: 1px solid #111;
}
.scroll::-webkit-scrollbar-track {
  background-color: #000;
}

.scroll_white::-webkit-scrollbar {
  position: absolute;
  width: 8px;
  height: 6px;
}
.scroll_white::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background-color: #fefefe;
  border: 1px solid #ddd;
}
.scroll_white::-webkit-scrollbar-track {
  background-color: #fff;
}

/*텍스트 정렬*/
.t-r {
  text-align: right !important;
}

.t-l {
  text-align: left !important;
}

.t-c {
  text-align: center !important;
}

/*margin*/
.ml-10 {
  margin-left: 10px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 45px;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/*font*/
.fw-400 {
  font-weight: 400 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.font-red {
  color: #E60013 !important;
}

/*align-row*/
.align-row {
  justify-content: flex-start !important;
}

/*페이지 로딩*/
.page_loading {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
}
.page_loading > .load_bar_circle {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 99999;
  width: 10px;
  height: 40px;
  transform: translate(-50%, -50%);
}
.page_loading > .load_bar_circle .load_bar {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.page_loading > .load_bar_circle .load_bar::before {
  content: "";
  display: block;
  margin: 0 auto;
  width: 30%;
  height: 30%;
  background-color: #1DA061;
  -webkit-animation: load_barFadeDelay 0.8s infinite ease-in-out both;
  animation: load_barFadeDelay 0.8s infinite ease-in-out both;
}
.page_loading > .load_bar_circle .load_bar2 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.page_loading > .load_bar_circle .load_bar3 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.page_loading > .load_bar_circle .load_bar4 {
  -webkit-transform: rotate(125deg);
  -ms-transform: rotate(125deg);
  transform: rotate(125deg);
}
.page_loading > .load_bar_circle .load_bar5 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.page_loading > .load_bar_circle .load_bar6 {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.page_loading > .load_bar_circle .load_bar7 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.page_loading > .load_bar_circle .load_bar8 {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.page_loading > .load_bar_circle .load_bar9 {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}
.page_loading > .load_bar_circle .load_bar2:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.page_loading > .load_bar_circle .load_bar3:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.page_loading > .load_bar_circle .load_bar4:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.page_loading > .load_bar_circle .load_bar5:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.page_loading > .load_bar_circle .load_bar6:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.page_loading > .load_bar_circle .load_bar7:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.page_loading > .load_bar_circle .load_bar8:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.page_loading > .load_bar_circle .load_bar9:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
.page_loading .loading_logo {
  position: absolute;
  top: calc(50% - 20px);
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 99999;
  width: 82px;
  height: 82px;
  display: block;
  transform: translate(-50%, -50%);
}
.page_loading .loading_logo > img {
  width: 100%;
}
.page_loading .lds-roller {
  position: absolute;
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 99999;
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
}
.page_loading .lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.page_loading .lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #17853a;
  margin: -4px 0 0 -4px;
}
.page_loading .lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.page_loading .lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.page_loading .lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.page_loading .lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.page_loading .lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.page_loading .lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.page_loading .lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.page_loading .lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.page_loading .lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.page_loading .lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.page_loading .lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.page_loading .lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.page_loading .lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.page_loading .lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.page_loading .lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.page_loading .lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.title_l {
  font-size: 16px;
}

.btn_report {
  position: fixed;
  top: auto;
  right: 10rem;
  bottom: 10rem;
  left: auto;
  z-index: 99;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: auto;
  height: 4rem;
  border-radius: 5rem;
  -webkit-border-radius: 5rem;
  -moz-border-radius: 5rem;
  -ms-border-radius: 5rem;
  -o-border-radius: 5rem;
  font-size: 1.2rem;
  color: #fff;
  padding: 0 3rem;
  background: #ff0000;
}

/*# sourceMappingURL=style.css.map */
