@charset "utf-8";
/* CSS Document */
@import url('ibootstrap.css');
@import url('/common/fonts/notosans/notosans.css');
@import url('/common/fonts/Paperlogy/Paperlogy.css');

:root {
  /* font */
  --font-type01: 'NotoSansKR';
  --font-type02: 'Paperlogy';
  --font-icon: 'material-Icons';
  /* main */
  --main-color01: #034EA2;
  --main-color01-hover: #064183;
  --main-color02: #1580f7;
  --main-color02-hover: #116cd2;
  /* point */
  --point-color01: #00BC70;
  --point-color01-hover: #00995c;
  /* Color */
  --primary: #034EA2;
  --primary-hover: #07488f;
  --secondary: #58638b;
  --secondary-hover: #4a5476;
  /* gray */
  --bg-color01: #eff6ff;
  /* main bg */
  --bg-color02: #F0F1F5;
  --bg-color03: #e0e2eb;
  --bg-color04: #F6F4FA;
  --bg-color05: #eefbf7;

  /* bootstrap */
  --danger: #e52361;

  /* padding */
  --padding-basic: 7px 15px;
}

/*****************************************************
	Icon
*****************************************************/
@font-face {
  font-family: 'material-Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/common/fonts/MaterialIcons-Regular.eot);
  src: url(/common/fonts/MaterialIcons-Regular.eot?#iefix) format('embedded-opentype'), url(/common/fonts/MaterialIcons-Regular.woff) format('woff'), url(/common/fonts/MaterialIcons-Regular.ttf) format('truetype');
}

.material-icons {
  font-family: 'material-Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 1.5rem;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'liga';
  vertical-align: middle;
}

/*****************************************************
	Common
*****************************************************/
html,
body {
  font-family: var(--font-type01), 'Helvetica', sans-serif;
  font-size: 14px;
  line-height: 1.2;
  min-height: 100vh;
  color: #333;
}

body {
  min-width: 360px;
  max-width: 100%;
  background: #fff;
}

caption {
  font-size: 0;
  width: 0;
  height: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  background: none;
  overflow: hidden;
}

a:hover,
a:focus {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* scrollbar */
body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 50px;
  border: 1px solid #eee;
}

body::-webkit-scrollbar-track {
  background-color: #eee;
}

/* accessibility */
#accessibility {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999
}

#accessibility ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#accessibility li {
  margin: 0;
  padding: 0;
  list-style-type: none
}

#accessibility a {
  display: block;
  position: absolute;
  top: -9999px;
  left: 0;
  width: 100%;
  height: 26px;
  line-height: 18px;
  text-align: center;
  background: #333;
  color: #fff;
  text-decoration: none;
  font-size: 12px
}

#accessibility a:focus,
#accessibility a:active {
  top: 0;
  padding: 4px 0;
  font-weight: 600
}

#mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  background: rgba(0, 0, 0, 0.5);
}

/* row */
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px
}

.row>.col,
.row>[class*=col-] {
  padding-right: 5px;
  padding-left: 5px
}

/* Margin & Padding */
.line-gap {
  width: 100%;
  margin: 30px 0;
  clear: both;
  border-top: 2px dotted #e4e4e4;
}

/* Font */
.font-size15 {
  font-size: 15px !important;
}

.font-size16 {
  font-size: 16px !important;
}

.font-size17 {
  font-size: 17px !important;
}

.font-size18 {
  font-size: 18px !important;
}

.font-size19 {
  font-size: 19px !important;
}

.font-size20 {
  font-size: 20px !important;
}

.font-size22 {
  font-size: 22px !important;
}

.font-size23 {
  font-size: 23px !important;
}

.font-size25 {
  font-size: 25px !important;
}

.font-size27 {
  font-size: 27px !important;
}

.font-size30 {
  font-size: 30px !important;
}

.font-size35 {
  font-size: 35px !important;
}

.font-size40 {
  font-size: 40px !important;
}

/* Color */
.text-primary {
  color: var(--primary) !important;
}

.text-secondary {
  color: var(--secondary) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-gray {
  color: #777 !important;
}

/* BG */
.bg-primary {
  background-color: #e8f8ff !important;
}

.bg-secondary {
  background-color: var(--grey-color01) !important;
}

.bg-warning {
  background-color: #fff6da !important;
}

.bg-danger {
  background-color: #fff1f3 !important;
}

/* border-radius */
.rounded-sm {
  border-radius: .2rem !important
}

.rounded-lg {
  border-radius: .3rem !important
}

.rounded-xl {
  border-radius: .6rem !important
}

.rounded-xxl {
  border-radius: .9rem !important
}

/* responsibility */
.responsibility {
  background-color: #f7f7f7;
  border: 1px solid #eee;
  padding: 1rem 1.3rem;
}

.responsibility ul {
  margin: 0 !important;
}

.responsibility ul>li {
  float: left;
  margin-right: 1.2rem !important;
}

.responsibility ul>li>strong {
  margin-right: 0.5rem;
  font-weight: 600;
  color: #0b3d91;
}

@keyframes zoom-in-zoom-out {
  0% {transform: scale(1, 1);}
  50% {transform: scale(0.9, 0.9);}
  100% {transform: scale(1, 1);}
}

@media(max-width: 1199px) {
  #mask.cover-bg {
    display: block;
  }
}

@media(min-width: 1600px) {
  .col-xxl {
    flex: 1 0 0%;
    max-width: 100%
  }

  .row-cols-xxl-auto>* {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
  }

  .row-cols-xxl-1>* {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%
  }

  .row-cols-xxl-2>* {
    flex: 0 0 auto;
    width: 50%;
    max-width: 50%
  }

  .row-cols-xxl-3>* {
    flex: 0 0 auto;
    width: 33.3333333333%;
    max-width: 33.3333333333%
  }

  .row-cols-xxl-4>* {
    flex: 0 0 auto;
    width: 25%;
    max-width: 25%
  }

  .row-cols-xxl-5>* {
    flex: 0 0 auto;
    width: 20%;
    max-width: 20%
  }

  .row-cols-xxl-6>* {
    flex: 0 0 auto;
    width: 16.6666666667%;
    max-width: 16.6666666667%
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%
  }

  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
    max-width: 8.33333333%
  }

  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
    max-width: 16.66666667%
  }

  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
    max-width: 25%
  }

  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
    max-width: 33.33333333%
  }

  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
    max-width: 41.66666667%
  }

  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
    max-width: 50%
  }

  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
    max-width: 58.33333333%
  }

  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
    max-width: 66.66666667%
  }

  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%;
    max-width: 75%
  }

  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
    max-width: 83.33333333%
  }

  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
    max-width: 91.66666667%
  }

  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .d-xxl-none {
    display: none !important
  }

  .d-xxl-inline {
    display: inline !important
  }

  .d-xxl-inline-block {
    display: inline-block !important
  }

  .d-xxl-block {
    display: block !important
  }

  .d-xxl-table {
    display: table !important
  }

  .d-xxl-table-row {
    display: table-row !important
  }

  .d-xxl-table-cell {
    display: table-cell !important
  }

  .d-xxl-flex {
    display: -ms-flexbox !important;
    display: flex !important
  }

  .d-xxl-inline-flex {
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
  }
}



/*****************************************************
	Components
*****************************************************/

/* btn */
.btn {
  margin: 0;
  padding: 3px 6px;
}

.btn:not(:last-child) {
  margin-right: 1px;
}

.btn-sm,
.btn-group-sm>.btn {
  font-size: 14px;
  line-height: 1.2;
}

[class*="btn-outline-"] {
  background-color: #fff;
}

.card .input-group .btn,
.card .btn-wrap .btn,
.form-group .btn {
  min-width: 35px;
}

.card .card-body .input-group .btn+.btn {
  border-left: none;
}

.card .input-group>.btn:last-child {
  border-radius: 0 4px 4px 0;
}

.btn .material-icons {
  font-size: 0.875rem;
}

.sub-container .btn-lg .material-icons {
  font-size: 1.1rem;
}

.btn-icon-split {
  padding: 0;
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
}

.btn-icon-split .icon {
  background: rgba(0, 0, 0, 0.15);
  display: inline-block;
  padding: 0.375rem 0.75rem;
}

.btn-icon-split .text {
  display: inline-block;
  padding: 0.375rem 0.75rem;
}

.btn-icon-split.btn-xs .icon,
.btn-group-xs>.btn-icon-split.btn .icon {
  padding: 0.15rem 0.5rem;
  font-weight: 600;
}

.btn-icon-split.btn-xs .text,
.btn-group-xs>.btn-icon-split.btn .text {
  padding: 0.15rem 0.5rem;
}

.btn-icon-split.btn-sm .icon,
.btn-group-sm>.btn-icon-split.btn .icon {
  padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-sm .text,
.btn-group-sm>.btn-icon-split.btn .text {
  padding: 0.25rem 0.5rem;
}

.btn-icon-split.btn-lg .icon,
.btn-group-lg>.btn-icon-split.btn .icon {
  padding: 0.5rem 1rem;
}

.btn-icon-split.btn-lg .text,
.btn-group-lg>.btn-icon-split.btn .text {
  padding: 0.5rem 1rem;
}

.btn-icon-split.btn-light {
  background-color: #f8f9fc;
  border-color: #f8f9fc;
}

.btn-link {}

.btn-link .material-icons {
  padding: 0 3px
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary-hover);
}

.btn-primary:hover {
  color: #fff;
  background-color: var(--primary-hover);
}

.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #0139d1;
  border-color: #0139d1;
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-dark {
  background-color: #2B3662;
  border-color: #2B3662;
}

.btn-dark:hover {
  color: #fff;
  background-color: #1A213C;
  border-color: #1A213C;
}

.btn-dark.focus,
.btn-dark:focus {
  color: #fff;
  background-color: #1A213C;
  border-color: #1A213C;
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  color: #fff;
  background-color: #4a5375;
  border-color: #4a5375;
}

.btn-secondary.focus,
.btn-secondary:focus {
  color: #fff;
  background-color: #4a5375;
  border-color: #4a5375;
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-outline-primary {
  color: #025ce1;
  border-color: #025ce1
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #025ce1;
  border-color: #025ce1;
}

.btn-outline-primary.focus,
.btn-outline-primary:focus {
  box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-dark {
  color: #2B3662;
  border-color: #2B3662;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #2B3662;
  border-color: #2B3662;
}

.btn-outline-dark.focus,
.btn-outline-dark:focus {
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn-outline-secondary {
  color: #58638b;
  border-color: #58638b;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #58638b;
  border-color: #58638b;
}

.btn-outline-secondary.focus,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 .2rem rgba(38, 143, 255, .5);
}

.btn .material-icons {
  font-size: 16px;
  line-height: 1;
}

/* badge */
.badge {
  height: 17px;
  vertical-align: middle;
}

.badge-danger {
  background-color: var(--danger)
}

/* card */
.card {
  border: #d2d2d2 solid 1px;
  margin-bottom: 10px;
}

.card-header {
  background-color: #fff;
  padding: var(--padding-basic);
}

.card-header.point-primary {
  background: var(--bg-color01);
  border: 1px solid var(--main-color01)
}

.card-header.point-danger {
  background: #fff8f8;
  border: 1px solid var(--danger)
}

.card-header .row {
  justify-content: flex-end;
  align-items: center;
  min-height: 30px;
}

.card-header .row .col .form-inline,
.card-header .row .col .form-group {
  margin-bottom: 0;
}

.card-header .card-header-title {
  display: inline-block;
  margin: 0;
  padding: 0;
  background: none;
  font-family: var(--font-type02);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.card-header .card-header-title .sub-title {
  display: block;
  margin: 0;
}

.card-header .card-header-title .sub-title,
.card-header .col>strong {
  color: #666;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
}

.card-header .col>strong .text-danger {
  font-family: var(--font-type02);
  font-weight: 500;
}

.card-header .col .form-inline label {
  margin-bottom: 3px;
  padding: 0 8px 0 0
}

.card-header .col.mt-1 {
  margin-top: 0 !important;
}

.card .card-header+.card-header {
  padding: var(--padding-basic);
  background: #f8f8fb;
  border-bottom: 1px solid rgba(0, 0, 0, .125);
}


.card-header .row [class*=col]:last-child,
.card-header .row [class*=col-]:last-child,
.card-header .row [class*=col]:only-child,
.card-header .row [class*=col-]:only-child,
.card-header:nth-child(2) .row .col:last-child {
  text-align: right;
}

.card-header:first-child .row .col.tit,
.card-header:nth-child(2) .row [class*=col]:only-child,
.card-header:nth-child(2) .row [class*=col-]:only-child {
  text-align: left;
}

.card-header:nth-child(2) .row {
  align-items: center;
  justify-content: space-between;
}

.card-body {
  position: relative;
  padding: var(--padding-basic);
}

.card-body.pre-scrollable:not(textarea) {
  white-space: normal;
  min-height: 240px;
  overflow: auto;
}
.card-body.pre-scrollable-640:not(textarea) {
  max-height: 640px;
  overflow-y: scroll;
}
.card-body.pre-scrollable-540:not(textarea) {
  white-space: normal;
  max-height: 540px;
  overflow-y: auto;  
}
.card-body.pre-scrollable-440:not(textarea) {
    white-space: normal;
    max-height: 440px;
    overflow-y: auto;
}
.card-body.pre-scrollable-340:not(textarea) {
    white-space: normal;
    max-height: 340px;
    overflow-y: auto;
}

.card-body.pre-scrollable>.table-responsive {
  overflow-x: initial;
  width: calc(100% - 1px);
}

.card-body label {
  font-weight: 600;
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  line-height: 1;
}

.card-body>textarea {
  margin: 5px;
}

.card-body .form-group:last-child {
  margin-bottom: 0;
}

.card-body.p-0 .table,
.card-body.p-0 .table tr>th:first-child,
.card-body.p-0 .table-bordered tr>td:first-child {
  border-left: 0;
}

.card-body.p-0 .table tr>th:last-child,
.card-body.p-0 .table-bordered tr>td:last-child {
  border-right: 0;
}

.card-footer {
  background: #f8f8fb;
  padding: var(--padding-basic);
}

.card-footer .row {
  align-items: center;
  justify-content: space-between;
}

.card-footer .row [class*=col]:last-child,
.card-footer .row [class*=col-]:last-child,
.card-footer .row [class*=col]:only-child,
.card-footer .row [class*=col-]:only-child {
  text-align: right;
}

.card-footer-btn {
  padding: 0;
}

/* Forms */
/* form-control */
.form-control[type="number"] {
  text-align: right;
}

.input-group .input-group-prepend select {
  min-width: 100px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* select */
select.form-control {
  /* reset */
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: .375rem 2rem .375rem .75rem;
  background: #fff url(/common/images/select-arrow.svg) no-repeat right 12px center;
}

/* form-check */
.form-check {
  padding-left: 0;
}

.form-check input {
  appearance: none;
}

.form-check input:focus+label:after {
  border: 2px solid var(--main-color01);
}

.form-check label {
  position: relative;
  padding-left: 25px;
  margin: 0 25px 7px 0;
  font-weight: 400;
}

.table th .form-check label,
.table td .form-check label {
  margin: 0;
}

.form-check label.sr-only {
  width: 18px;
  height: 24px;
  margin: 0;
  padding-left: 20px;
}

.form-check label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  display: block;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid var(--bg-color03);
}

.form-check input:disabled+label:after {
  background-color: var(--bg-color03);
}

.form-check input:checked:disabled+label:before {
  background-color: #89a0b7;
}

.form-check label:before {
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.form-check [type="checkbox"]+label:after {
  border-radius: 5px;
}

.form-check input:checked:disabled+label:after {
  border-color: #89a0b7;
  background-color: #89a0b7;
}

.form-check [type="checkbox"]:checked+label:after {
  background-color: var(--main-color01);
  border: none;
}

.form-check [type="checkbox"]:checked+label:before {
  content: '\e5ca';
  left: 1px;
  font-family: var(--font-icon);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

.form-check [type="radio"]+label:after {
  border-radius: 22px;
}

.form-check [type="radio"]:checked+label:after {
  border-color: var(--main-color01);
}

.form-check [type="radio"]:checked+label:before {
  content: '';
  left: 5px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 11px;
  background-color: var(--main-color01);
}

select {
  appearance: none;
  background: url(/common/v2/images/arr-01.png) no-repeat calc(100% - 10px) 50%;
}


/* check-box */
.check-box {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 20px;
}

.check-box .item {
  position: relative;
  display: flex;
  flex: 0 0 calc(50% - 10px);
  height: 110px;
  text-align: center;
  padding: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid transparent;
  background: var(--grey-color04);
  transition: 0.3s
}

.check-box .item:hover,
.check-box .item:focus {
  border-color: var(--grey-color05);
}

.check-box .item.checked {
  background: #fff;
  border: 2px solid var(--main-color01);
}

.check-box .item.checked:after {
  content: '\F26B';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  line-height: 1;
  height: 20px;
  border-radius: 20px;
  font-family: var(--font-icon);
  color: var(--main-color01);
  background: #f5f8ff;
}

.check-box .item .img {
  max-width: 40px;
}

.check-box .item .tit {
  margin-top: 5px;
}

.check-box .item.checked .tit {}

@media (min-width: 992px) {
  .check-box .item {
    flex: 0 0 auto;
    min-width: 180px;
  }
}

/* scroll */
.auto-scroll,
textarea.form-control {
  overflow: hidden;
  overflow-y: auto;
  min-height: 80px;
  width: calc(100% - 10px);
}

textarea::-webkit-scrollbar {
  width: 7px;
}

textarea::-webkit-scrollbar-thumb {
  background-color: var(--secondary);
  border-radius: 50px;
  border: 1px solid #eee;
}

textarea::-webkit-scrollbar-track {
  background-color: #eee;
}

/* contents scrollbar */
/* 스크롤바의 폭 너비 */
.table-responsive::-webkit-scrollbar,
.card-body::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.table-responsive::-webkit-scrollbar-thumb,
.card-body::-webkit-scrollbar-thumb {
  background: var(--point-color01);
  /* 스크롤바 색상 */
  border-radius: 10px;
  /* 스크롤바 둥근 테두리 */
}

.table-responsive::-webkit-scrollbar-track,
.card-body::-webkit-scrollbar-track {
  background: #eaeaea
    /*스크롤바 뒷 배경 색상*/
}


/* Pagination */
.pagination {
  gap: 6px;
  align-items: center;
}

.page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50px !important;
  background-color: transparent;
  border: none;
  color: #222;
}

.page-item .page-link:hover,
.page-item .page-link:focus {
  font-weight: 600;
}

.page-item.active .page-link {
  background-color: var(--main-color02);
  border-color: var(--main-color02);
  box-shadow: 2px 2px 10px 0px rgba(69, 111, 228, 0.2);
}

.pagination-sm .page-item:first-child .page-link,
.pagination-sm .page-item:last-child .page-link {
  font-size: 17px;
  line-height: 25px;
}

.pagination-sm .page-item:first-child .page-link span,
.pagination-sm .page-item:last-child .page-link span {
  line-height: 1rem;
  vertical-align: middle;
  margin-bottom: 4px;
}

.page-navi {
  position: relative;
}

.page-navi:before {
  content: '';
  position: absolute;
  display: inline-block;
  bottom: 0;
  width: 100%;
  height: 1px;
}

.page-navi .navbar {
  padding: 0;
  border-left: 1px solid #64676d;
  border-right: 1px solid #64676d;
}

.page-navi .navbar .navbar-nav {
  width: 100%;
  display: inline-block;
}

.page-navi .navbar .navbar-nav>.nav-item {
  position: inherit;
  width: 50%;
  float: left;
  border-right: 1px solid #64676d;
  border-bottom: 1px solid #64676d;
  margin-bottom: 1px;
}

.page-navi .navbar .navbar-nav>.nav-item:first-child {
  display: none;
}

.page-navi .navbar .navbar-nav>.nav-item .nav-link {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: #c3c3c3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-navi .navbar .navbar-nav>.nav-item .nav-link:before {
  content: '\e313';
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-family: 'material-Icons';
  color: #888;
  text-decoration: none
}

.page-navi .navbar .navbar-nav>.nav-item .nav-link:hover:before {
  text-decoration: underline
}

.page-navi .navbar .navbar-nav>.nav-item .nav-link:hover:before {
  text-decoration: none
    /* ie 상쇄 */
}

.page-navi .navbar .navbar-nav>.nav-item:nth-child(2n+1) {
  border-right: none;
}

.page-navi .navbar .navbar-nav>.nav-item .nav-link:hover,
.page-navi .navbar .navbar-nav>.nav-item .nav-link:focus {
  color: #fff;
  text-decoration: underline;
}

.page-navi .navbar .navbar-nav>.nav-item .dropdown-toggle::after {
  display: none;
}

.page-navi .navbar .navbar-nav>.nav-item .dropdown-menu {
  position: absolute;
  width: 100%;
  border-radius: 0;
  margin-top: 0;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
}

.page-navi .navbar .navbar-nav>.nav-item .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  color: #666;
  white-space: inherit;
}

.page-navi .navbar .navbar-nav>.nav-item .dropdown-menu .dropdown-item.active {
  background-color: #1d50bd;
  color: #fff;
  font-weight: 600;
}

.page-navi .navbar .navbar-nav>.nav-item .dropdown-menu .dropdown-item:hover,
.page-navi .navbar .navbar-nav>.nav-item .dropdown-menu .dropdown-item:focus {
  color: #1d50bd;
  font-weight: 600;
}

.page-navi .navbar .navbar-nav>.nav-item .dropdown-menu .dropdown-item.active:hover,
.page-navi .navbar .navbar-nav>.nav-item .dropdown-menu .dropdown-item.active:focus {
  color: #fff;
  background-color: #113e9e;
}

/* nav */
.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover,
.nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
}

.nav-tabs {
  margin-bottom: 15px;
  background-color: var(--main-color02);
  border-bottom: none;
  padding: 0;
  border-radius: 5px;
  border-top-right-radius: 16px;
  gap: 3px;
  box-shadow: 7px 7px 20px 0px rgba(69, 111, 228, 0.15);
}

.nav-tabs .nav-item {
  margin: 0px -1px 0 0;
  padding: 0;
  background: none;
}

.nav-tabs .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 12px;
  font-family: var(--font-type02);
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  color: #fff;
  border-color: transparent;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  position: relative;
  background: transparent;
  border: none;
  color: var(--main-color01);
  font-weight: 600;
}

.nav-tabs .nav-link.active {
  transform: translate(-8px, -8px);
  background: #fff;
  border: 1px solid var(--main-color01);
  border-radius: 4px;
}

.nav-tabs .nav-link.active::after {
  content: '';
  display: inline-block;
  margin: 0 0 0 5px;
  padding: 0 0 0 10px;
  width: 14px;
  height: 14px;
  background: url(/site/resource/cs/images/menu-on.png) no-repeat center;
  opacity: 0.7;
}

.nav-tabs .nav-link.active:hover,
.nav-tabs .nav-item.show .nav-link:focus {
  text-decoration: none;
}

.tab-type02 {
  margin-bottom: 5px;
}

.tab-type02 .nav-tabs {
  display: flex;
  gap: 7px 20px;
  background: var(--bg-color01);
  box-shadow: none;
  border-radius: 0;
  padding: 4px 15px;
}

.tab-type02 .nav-tabs .nav-link {
  position: relative;
  display: inline-block;
  color: #666;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 5px 5px 5px 22px;
}

.tab-type02 .nav-tabs .nav-link:before {
  content: '';
  position: absolute;
  top: 13px;
  left: 5px;
  width: 9px;
  height: 2px;
  background: #999;
  transition: transform .3s
}

.tab-type02 .nav-tabs .nav-link:after {
  content: '';
  position: absolute;
  top: 9px;
  left: 0;
  width: 9px;
  height: 2px;
  background: #999;
  opacity: 0;
  transition: opacity, transform .4s
}

.tab-type02 .nav-tabs .nav-link.active,
.tab-type02 .nav-tabs .nav-link:hover,
.tab-type02 .nav-tabs .nav-link:focus {
  color: #222;
  font-weight: 500;
}

.tab-type02 .nav-tabs .nav-link.active {
  transform: inherit;
  box-shadow: none;
  background: #fff;
  border-radius: 50px;
}

.tab-type02 .nav-tabs .nav-link.active:before {
  width: 6px;
  background: var(--point-color01);
  transform: rotate(45deg);
}

.tab-type02 .nav-tabs .nav-link.active:after {
  width: 10px;
  top: 12px;
  left: 3px;
  background: var(--point-color01);
  opacity: 1;
  transform: rotate(-45deg);
}


/* progress */
.bar-color01 {
  background-color: #00b4d8
}

.bar-color02 {
  background-color: #0096c7
}

.bar-color03 {
  background-color: #0077b6
}

.bar-color04 {
  background-color: #023e8a
}

.bar-color05 {
  background-color: #03045e
}

/* modal */
.modal-dialog .modal-header {
  position: relative;
  background-color: #fff;
  border-bottom: none;
}

.modal-dialog .modal-header .modal-title {
  color: #222;
  font-family: var(--font-type02);
  font-weight: 600;
  font-size: 20px;
  padding: 0;
  margin: 0;
}

.modal-dialog .modal-header .modal-title::before {
  display: none;
}

.modal-dialog .modal-header .close {
  position: relative;
  display: inline-block;
  color: #555;
  font-weight: 400;
  font-size: 30px;
  float: none;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
}

.modal-dialog .modal-header .close span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.modal-dialog .modal-header .close:hover,
.modal-dialog .modal-header .close:focus {
  color: #222;
  cursor: pointer;
}

.modal-dialog .modal-header .close::before,
.modal-dialog .modal-header .close::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 3px;
  background: #222;
  height: 2px;
  width: 24px;
  transition: 0.3s;
  z-index: 10;
}

.modal-dialog .modal-header .close::before {
  transform: rotate(45deg);
}

.modal-dialog .modal-header .close::after {
  transform: rotate(-45deg);
}


.modal-dialog .modal-header .close:hover::before,
.modal-dialog .modal-header .close:focus::before {
  transform: rotate(-45deg);
}

.modal-dialog .modal-header .close:hover::after,
.modal-dialog .modal-header .close:focus::after {
  transform: rotate(45deg);
}

.modal-dialog .modal-body::-webkit-scrollbar {
  width: 3px;
}

.modal-dialog .modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, transparent, var(--point-color01));
  border-radius: 50px;
}
.modal-body .table,
.modal-body .table tr>th:first-child,
.modal-body .table-bordered tr>td:first-child {
  border-left: 1px solid #dee2e6 !important;!I;!;
}
.modal-footer {
  background: #f8f8fb;
}

.modal-footer .btn {
  margin-left: 2px;
}

/* popup */
body.popup {
  max-width: 100%;
}

body.popup .navbar {
  margin: 5px;
  padding: 8px 0;
  border-radius: 5px;
  border-bottom-right-radius: 16px;
  background: linear-gradient(45deg, var(--main-color01), var(--main-color02)) !important;
}

body.popup .navbar h3 {
  margin: 0;
  color: #fff;
  font-family: var(--font-type02);
  font-weight: 600;
  font-size: 18px;
}

body.popup .sub-container {
  padding: 70px 0 15px 0;
  margin: 0;
}

body.popup .container {
  max-width: none;
}

.layer-popup {
  z-index: 9999;
  position: absolute;
  margin-bottom: 30px;
  background-color: #fff;
}

.layer-popup .layer-cont {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.layer-popup .layer-cont div,
.layer-popup .layer-cont p,
.layer-popup .layer-cont ol,
.layer-popup .layer-cont ul,
.layer-popup .layer-cont li {
  padding: 0;
  margin: 0;
}

.layer-popup .layer-footer {
  position: absolute;
  width: 100%;
  right: 0;
  left: 0;
  bottom: -30px;
  height: 30px;
  padding: 0.4rem 0.5rem;
  background-color: #000;
  display: inline-block;
}

.layer-popup .layer-footer a {
  color: #efefef;
  font-size: 0.85rem;
}

.layer-popup .layer-footer a:hover,
.layer-popup .layer-footer a:focus {
  color: #fff;
  text-decoration: underline;
}


/* pagination */
.pager {
  margin-bottom: 2rem;
}

.pager .pager-navi {
  display: block;
  font-weight: 600;
  color: #124fb6;
}

.pager .next {
  text-align: right
}

.pager .pager-title {
  display: inline-block;
  padding: 0 0.5rem;
}

.pager .prev a,
.pager .next a {
  display: block;
}

.pager a:hover .pager-title,
.pager a:focus .pager-title {
  text-decoration: underline;
  color: #000;
}


@media(min-width: 768px) {
  .card-header .card-header-title .sub-title {
    display: inline-block;
    margin: 0 3px;
  }
}

@media(min-width: 992px) {
  .card-header .row {
    flex-direction: row
  }
}

@media(max-width: 1199px) {
  .nav-tabs {
    gap: 3px;
    border-bottom: 0;
  }

  .nav-tabs .nav-item {
    margin: 0;
  }
}

@media(min-width: 1400px) {
  .card-list01 .card-body .inner .count {
    display: inline-block;
  }

  .card-list01 .card-body .inner>.num {
    margin-bottom: 5px;
  }

}



/*****************************************************
	Sub Style
*****************************************************/
.sub-container {
  position: relative;
  letter-spacing: -1px;
}

.sub-container.container {
  max-width: none;
}

.content-box {
  min-height: 500px;
  margin-bottom: 5.5rem;
}

/* Title */
.cont-title {
  position: relative;
}

.cont-title h2 {
  margin-right: 2rem;
}

.cont-title .cont-btns {
  position: absolute;
  top: 5px;
  right: 0;
}

.cont-title .cont-btns .d-print-none {
  display: none;
}

.cont-title .cont-btns button {
  background: transparent;
  border: none;
  color: #788190;
  cursor: pointer;
  transition: 0.5s;
}

.cont-title .cont-btns button .material-icons {
  font-size: 1.8rem;
}

.cont-title .cont-btns .dropdown-menu .dropdown-item {
  padding: 0.25rem 1rem;
}

.cont-title .cont-btns .dropdown-menu .dropdown-item>img {
  width: 18px;
  margin-right: 0.4rem !important;
}

/* Info-box */
.info-box {
  position: relative;
  padding: 10px 15px;
  padding-left: 40px;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #555;
  background-image: url(/common/images/ico-info01.png);
  background-color: var(--bg-color04);
  background-repeat: no-repeat;
  background-position: left 10px top 10px;
}

.info-box.type01 {
  background-image: url(/common/images/ico-info02.png);
}

.info-box.type02 {
  background-image: url(/common/images/ico-info03.png);
}

.info-box.type03 {
  background-image: url(/common/images/ico-info04.png);
}

.info-box.type04 {
  background-image: url(/common/images/ico-info05.png);
}

.info-box.type05 {
  background-image: url(/common/images/ico-info06.png);
}

.info-box.type06 {
  background-image: url(/common/images/ico-info07.png);
}


.info-box>p,
.info-box>ul {
  margin-bottom: 0;
}

.info-box>p {
  position: relative;
  margin-bottom: 0;
}

.info-box>p::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 30px;
  font-family: var(--font-icon);

}

.info-box>p+ul {
  margin-top: 10px;
}

.info-box>ul.list-style01 {
  padding-left: 0;
}

/* Table */
.table {
  border-collapse: collapse;
  border-spacing: 0;
}

.card-body .table {
  width: calc(100% - 1px);
  margin-bottom: 0;
}

.table td,
.table th {
  vertical-align: middle;
  padding: 5px;
  line-height: 21px;
}

.table thead {
  position: relative;
  border-top: 1px solid #ddd;
  box-shadow: 0 2px 2px rgba(69, 100, 157, .08);
}

.table:not(.table-board) thead:after {
  left: 0;
  top: -1px;
  background: #e9e9e9;
  z-index: 1;
}

.table thead tr th {
  vertical-align: middle;
  padding: 0.4286rem;
  background-color: #f7f7f7;
  border-bottom-width: 0;
  font-weight: 500;
  color: #222;
  text-align: center;
}


.table tbody th {
  font-weight: 500;
  color: var(--main-color01);
  background: var(--bg-color01);
}

.table ul {
  margin-bottom: 0;
}

.table-primary,
.table-primary>td,
.table-primary>th {
  background-color: #b8daff !important;
}

.table-success,
.table-success>td,
.table-success>th {
  background-color: #def2f5 !important;
}

.table-secondary,
.table-secondary>td,
.table-secondary>th {
  background-color: #b4caea !important;
}

.table-danger,
.table-danger>td,
.table-danger>th {
  background-color: #f5c6cb !important;
}

.table-warning,
.table-warning>td,
.table-warning>th {
  background-color: #ffeeba !important;
}

.table-info,
.table-info>td,
.table-info>th {
  background-color: #d6d8db !important;
}

.table-light,
.table-light>td,
.table-light>th {
  background-color: #fdfdfe !important;
}

.table-dark,
.table-dark>td,
.table-dark>th {
  background-color: #c6c8ca !important;
}

.table-hover tbody tr:hover td,
.table-hover tbody tr:focus td {
  background-color: transparent;
}

.table .btn {
  padding: 1px 8px;
  font-size: 13px;
}

/* sticky-top */
.table .sticky-header, .table.sticky-table, .table.table-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  border-top: none;
}

.table .sticky-header:after, .table.sticky-table thead:after, .table.table-sticky thead:after {
  /*content: '';*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #DEDEDE
}

.table .sticky-header tr>th, .table.sticky-table .sticky-header tr>th, .table.table-sticky .sticky-header tr>th {
  position: relative;
  /*border: 0;*/
  z-index: 0;
}

.table .sticky-header tr>th::after, .table.sticky-table .sticky-header tr>th::after, .table.table-sticky .sticky-header tr>th::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border: 1px solid #DEDEDE;
  z-index: -1;
}

.table .sticky-header tr>th:last-child::after, .table.sticky-table .sticky-header tr>th:last-child::after, .table.table-sticky .sticky-header tr>th:last-child::after {
  border-right: none;
}

/* legend */
.table-legend {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 0;
  color: #555;
}

.table-legend li>strong {
  color: var(--point-color01)
}

.table-legend li>span {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.table-legend li>span[class|="bg"] {
  border: 1px solid #ddd;
}

/* table-responsive */
.table-responsive {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-mw-1000 .table {
  min-width: 1000px;
}

.table-mw-1100 .table {
  min-width: 1100px;
}

.table-mw-1200 .table {
  min-width: 1200px;
}

.table-mw-1300 .table {
  min-width: 1300px;
}

.table-mw-1400 .table {
  min-width: 1400px;
}

th[rowspan],
th[colspan],
td[rowspan],
td[colspan] {
  border-right: 1px solid #dee2e6;
}

th[rowspan]:last-child,
th[colspan]:last-child,
td[rowspan]:last-child,
td[colspan]:last-child {
  border-right: 0;
}

.table-bordered th[rowspan],
.table-bordered th[colspan],
.table-bordered td[rowspan],
.table-bordered td[colspan] {
  border-right: 1px solid #dee2e6;
}


/* Box */
.box-info {
  display: block;
  padding: 1.3rem 1.3rem;
  margin-bottom: 1.5rem;
  word-break: keep-all;
  border-top: 1px dotted #c8c8c8;
  background-color: #fbfcff;
  border-bottom: 1px dotted #c8c8c8;
}

.box-info p,
.box-info ul {
  margin: 0;
}

.box-line {
  background: url('../images/box-line.gif') repeat 0 0;
  padding: 5px;
}

.box-line .inner {
  padding: 1.5rem 2rem;
  background-color: #fff;
}

.box-line p,
.box-line ul {
  margin: 0;
}


/* Search-form */
.search-form {
  position: relative;
  margin-bottom: 2rem !important;
  border: 1px solid transparent;
  border-radius: 5px;
  background-image: linear-gradient(var(--bg-color01), #fff), linear-gradient(to bottom right, var(--main-color01), var(--main-color02), var(--point-color01));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  overflow: hidden;
}

.search-form .card-body {
  padding: var(--padding-basic);
}

.search-form .card-footer {
  background: #fff;
  border-top: 1px dashed #ddd;
}

.search-form .form-group {
  margin-bottom: 0.25rem;
}

.search-form .border-top {
  border-top: 1px solid #eaeaea !important
}

/* form */
.btn-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.btn-switch .btn {
  min-width: 100px;
  margin: 1px 0;
}

/* b-table-box */
.b-table-box {border: 1px solid #dee2e6;border-bottom: none;background: #e8f0f9;} 
.b-table-box .b-row-box {position: relative;display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;gap: 1px 0;} 
.b-table-box .b-row-item {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-flex: 0;-ms-flex: 0 0 100%;flex: 0 0 100%;max-width: 100%;border-bottom: 1px dotted #dee2e6;min-height: 38px;} 
.b-table-box .b-title-box {position: relative;display: flex;align-items: center;flex-wrap: wrap;flex: 0 0 110px;max-width: 110px;padding: 4px 10px 4px 2px;box-sizing: border-box;background: var(--bg-color01);color: var(--main-color01);font-size: 14px;font-weight: 700;line-height: 1.2;justify-content: flex-end;text-align: right;} 
.b-table-box .b-title-box label { margin-bottom: 0; font-weight: 500; word-break: keep-all; } 
.b-row-footer {display: flex;justify-content: flex-end;padding: 4px;background: #fff;}
 label.req::before,
 th.req nobr::before,
 th.req .w2grid_span::before {content: "*";display: inline-block;width: 8px;margin-right: 2px;font-family: var(--font-type01);font-weight: 500;font-size: 20px;color: var(--danger);} 
 .b-table-box .b-con-box {position: relative;display: -webkit-box;display: -ms-flexbox;display: flex;-ms-flex-wrap: wrap;flex-wrap: wrap;-webkit-box-align: center;-ms-flex-align: center;align-items: center;width: 100%;padding: 0 4px;background: #fff;color: #212529;} 
 .b-table-box .b-con-box .btn {margin: 4px 0;} 
 .b-table-box .form-group { display: flex; flex-wrap: wrap; align-items: center; width: 100%; } 
 .b-table-box .form-group:last-child { margin-bottom: 0; } 
 .b-table-box .form-group-inline { margin-right: 5px; width: auto; } 
 .b-table-box .form-group .form-control { flex-grow: 1; flex-basis: 0; } 
 .b-table-box .form-control,
 .b-table-box .w2inputCalendar_div,
 .b-table-box .w2spinner {margin-top: 4px;margin-bottom: 4px;} 
 .b-table-box .b-con-box .form-row { width: 100%; margin: 0; align-items: center; } 
 .b-table-box .b-con-box .ht-full { height: calc(100% - 6px) !important; } 

.card-body .b-table-box {border:none;}

 @media(min-width: 768px) { 
 .b-table-box .b-row-item,
 .flex-col-2 .b-row-item { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } 
 .flex-col-1 .b-row-item { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } 
 .b-table-box .b-row-item.merge-2,
 .flex-col-2 .b-row-item.merge-2 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } 
 
 .flex-col-3 .b-row-item:last-child,
 .flex-col-3 .b-row-item.merge-2,
 .flex-col-3 .b-row-item.merge-prev { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } 
 
 .flex-col-4 .b-row-item.merge-2,
 .flex-col-4 .b-row-item.merge-3,
 .flex-col-4 .b-row-item.merge-4,
 .flex-col-4 .b-row-item.merge-prev,
 .flex-col-4 .b-row-item.merge-next,
 .flex-col-4 .b-row-item.merge-3+.b-row-item { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } 
 
 .flex-col-5 .b-row-item:last-child,
 .flex-col-5 .b-row-item.merge-prev,
 .flex-col-5 .b-row-item.merge-next:nth-child(4),
 .flex-col-5 .b-row-item.merge-3,
 .flex-col-5 .b-row-item.merge-3+.merge-next,
 .flex-col-5 .b-row-item.merge-4 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } 
 .flex-col-5 .b-row-item.merge-prev:nth-child(2),
 .flex-col-5 .b-row-item.merge-next,
 .flex-col-5 .b-row-item.merge-next+.b-row-item,
 .flex-col-5 .b-row-item.merge-3+.b-row-item+.b-row-item { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } 
 .flex-col-5.side-merge .b-row-item.merge-prev { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } 
 } 
 @media(min-width: 992px) { 
 .div-2 {display: flex;flex-direction: row;gap: 1px;justify-content: space-between;}
 }

 @media(min-width: 1400px) { 
 .flex-col-3 .b-row-item,
 .flex-col-3 .b-row-item:last-child,
 .flex-col-3 .b-row-item.merge-prev { -webkit-box-flex: 0; -ms-flex: 0 0 33.333333%; flex: 0 0 33.333333%; max-width: 33.333333%; } 
 .flex-col-3 .b-row-item.merge-2 { -webkit-box-flex: 0; -ms-flex: 0 0 66.666666%; flex: 0 0 66.666666%; max-width: 66.666666% } 
 .flex-col-3 .b-row-item.merge-3 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100% } 
 
 .flex-col-5.side-merge .b-row-item.merge-2,
 .flex-col-5.side-merge .b-row-item.merge-prev,
 .flex-col-5.side-merge .b-row-item.merge-prev:nth-child(2) { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } 
 .flex-col-5.side-merge .b-row-item.merge-prev+.merge-2 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100% } 
 } 
 
 @media(min-width: 1600px) { 
 .flex-col-4 .b-row-item,
 .flex-col-4 .b-row-item.merge-prev,
 .flex-col-4 .b-row-item.merge-next,
 .flex-col-4 .b-row-item.merge-3+.b-row-item { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } 
 .flex-col-4 .b-row-item.merge-2 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } 
 .flex-col-4 .b-row-item.merge-3 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } 
 .flex-col-4 .b-row-item.merge-4 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100% } 
 
 .flex-col-5 .b-row-item,
 .flex-col-5 .b-row-item.merge-prev.merge-3-prev { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } 
 .flex-col-5 .b-row-item:last-child { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } 
 .flex-col-5 .b-row-item.merge-2,
 .flex-col-5 .b-row-item.merge-prev,
 .flex-col-5 .b-row-item.merge-next:nth-child(4) { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } 
 .flex-col-5 .b-row-item.merge-2:last-child,
 .flex-col-5 .b-row-item.merge-3+.b-row-item+.b-row-item,
 .flex-col-5 .b-row-item.merge-3:last-child,
 .flex-col-5 .b-row-item.merge-4-prev { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } 
 .flex-col-5 .b-row-item.merge-prev:nth-child(2),
 .flex-col-5 .b-row-item.merge-3 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } 
 } 
 
 @media(min-width: 1800px) { 
 .flex-col-5 .b-row-item,
 .flex-col-5 .b-row-item:last-child,
 .flex-col-5 .b-row-item.merge-prev,
 .flex-col-5 .b-row-item.merge-next,
 .flex-col-5 .b-row-item.merge-next+.b-row-item,
 .flex-col-5 .b-row-item.merge-prev:nth-child(2),
 .flex-col-5 .b-row-item.merge-next:nth-child(4),
 .flex-col-5 .b-row-item.merge-3+.b-row-item+.b-row-item,
 .flex-col-5 .b-row-item.merge-3+.merge-next,
 .flex-col-5 .b-row-item.merge-prev.merge-3-prev { -webkit-box-flex: 0; -ms-flex: 0 0 20%; flex: 0 0 20%; max-width: 20%; } 
 .flex-col-5 .b-row-item.merge-2,
 .flex-col-5 .b-row-item.merge-2:last-child { -webkit-box-flex: 0; -ms-flex: 0 0 40%; flex: 0 0 40%; max-width: 40%; } 
 .flex-col-5 .b-row-item.merge-3,
 .flex-col-5 .b-row-item.merge-3:last-child { -webkit-box-flex: 0; -ms-flex: 0 0 60%; flex: 0 0 60%; max-width: 60%; } 
 .flex-col-5 .b-row-item.merge-4 { -webkit-box-flex: 0; -ms-flex: 0 0 80%; flex: 0 0 80%; max-width: 80%; } 
 .flex-col-5 .b-row-item.merge-5 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } 
 .flex-col-5.side-merge .b-row-item.merge-2,
 .flex-col-5.side-merge .b-row-item.merge-2:last-child { -webkit-box-flex: 0; -ms-flex: 0 0 40%; flex: 0 0 40%; max-width: 40%; } 
 .flex-col-5.side-merge .b-row-item.merge-prev,
 .flex-col-5.side-merge .b-row-item.merge-prev:nth-child(2) { -webkit-box-flex: 0; -ms-flex: 0 0 20%; flex: 0 0 20%; max-width: 20%; } 
 } 
 
 /* btb blank */
 .b-table-box .b-row-item.b-blank { min-height: 0 !important; border-bottom: none; } 
 
 @media(min-width: 768px) { 
 .b-table-box .b-row-item.b-blank { border-bottom: 1px solid #DEE1E8; margin-top: -1px; } 
 } 
 
 @media(min-width: 1400px) { 
 .flex-col-3 .b-row-item.b-blank { min-height: 44px; border-bottom: 1px solid #DEE1E8; } 
 } 
 
 @media(min-width: 1600px) { 
 .flex-col-4 .b-row-item.b-blank,
 .flex-col-4 .b-row-item.b-blank.merge-2 { min-height: 44px; border-bottom: 1px solid #DEE1E8; } 
 .flex-col-5 .b-row-item.b-blank { min-height: 44px; border-bottom: 1px solid #DEE1E8; } 
 } 
 
 @media(min-width: 1800px) { 
 .flex-col-5 .b-row-item.b-blank { min-height: 44px; border-bottom: 1px solid #DEE1E8; } 
 } 


/* Profile */
.profile .photo {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 70px;
  height: 70px;
  overflow: hidden;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
}

.profile .photo img {
  width: 100%;
  height: 100%;
}

.profile .myinfo {
  position: relative;
  margin: 0 0 2rem 0;
  padding: 26px 0 0 110px;
  min-height: 70px;
}

.profile .myinfo .name {
  margin: 0 0 4px 0;
  padding: 0;
  font-weight: 600;
  font-size: 20px;
  color: #202020;
  line-height: 1.25em;
}

.profile .myinfo .id {
  margin: 0;
  padding: 0;
  font-weight: 600;
  color: #16a5bb;
  font-size: 1rem;
  line-height: 1.25em;
}

/* list-tab */
.card-body .list-info {
  padding: 0.4286rem 0 0 0;
}

.card-body .list-info .btn {
  position: relative;
  border: none;
  background: none;
}

.card-body .list-info .btn:after {
  content: '';
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 1px;
  height: 12px;
  background: #ccc;
}

.card-body .list-info .btn:first-child:after {
  display: none;
}

.card-body .list-info .btn:hover,
.card-body .list-info .btn:focus {
  text-decoration: underline;
}

.card-body .list-info .btn .badge {
  padding: 0.2143rem 0.4em;
}

/* highchart */
.highcharts-figure-box {
  padding: 15px;
  background: #F8F8FB
}

.highcharts-figure-box.success {
  position: relative;
  overflow: hidden;
}

.highcharts-figure-box+.highcharts-figure-box {
  margin-top: 10px;
}

.highcharts-figure-box:only-child,
.highcharts-figure {
  margin-bottom: 0;
}

.highcharts-figure-box.success::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  background: url(/site/resource/cs/images/chart-deco01.png) repeat-x center top;
  z-index: 10;
  animation: zoom-in-zoom-out 2s ease infinite;
}

code {
  font-size: 1rem;
}

code>textarea {
  width: 100%;
  height: 5rem;
  margin-top: 1rem;
  padding: 0.4rem 1rem;
  background: #f0f0f0;
  border: dashed 1px #555;
  font-family: monospace, sans-serif;
  font-size: 0.72rem;
}


/* Professor */
.professor-item {
  position: relative;
  display: inline-block;
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 1.5rem;
  padding: 2.1rem 1.6rem;
}

.professor-item .thum {
  float: left;
  width: 30%;
  height: auto;
  overflow: hidden;
  text-align: center;
}

.professor-item .thum img {
  width: 90%;
}

.professor-item .professor-cont {
  float: right;
  width: 65%;
}

.professor-item .professor-cont:after {
  content: '';
  clear: both;
}

.professor-item .professor-cont .name {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  margin-bottom: 1.3rem;
}

.professor-item .professor-cont ul {
  margin: 0;
}

.professor-item .professor-cont ul>li {
  position: relative;
  word-break: break-word;
  padding-left: 5.2rem;
  color: #777;
}

.professor-item .professor-cont ul>li>span {
  position: absolute;
  top: 0;
  left: 0.7rem;
  color: #000;
}

.professor-item .professor-btn {
  position: absolute;
  top: 1.1rem;
  right: 0.9rem;
}

.professor-item .professor-btn>a {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0.2rem;
  text-align: center;
  background-color: #e3e8ec;
  border-radius: 50%;
  color: #5c6069;
  transition: 0.5s;
}

.professor-item .professor-btn>a:hover,
.professor-item .professor-btn>a:focus {
  color: #0949ab;
}

.professor-item .professor-btn>a>.material-icons {
  line-height: 2.5rem
}

#professor-modal .modal-body {
  max-height: 600px;
  overflow: hidden;
  overflow-y: scroll;
}

#professor-modal .modal-body .professor-item {
  border: none;
  border-bottom: 1px solid #354e73;
  padding: 0 0 1.2rem 0;
  margin-bottom: 0;
}

#professor-modal .modal-body .professor-item .thum {
  width: 25%
}

#professor-modal .modal-body .professor-item .professor-cont {
  width: 70%
}

/* PDF */
.pdf-viewer {
  display: block;
  padding: 1.3rem 1.3rem;
  margin-bottom: 1.5rem;
  word-break: keep-all;
  border-top: 1px dotted #c8c8c8;
  background-color: #fbfcff;
  border-bottom: 1px dotted #c8c8c8;
}

.pdf-viewer>ul {
  margin: 0;
}

/* FAQ */
.faq .f-box,
.faq .q-box {
  display: inline-block;
  width: 1.5rem;
  height: 1.3rem;
  background-color: #546073;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.faq .f-box {
  background-color: #0e55c1;
}

/* Calendar */
.calendar table tr th,
.calendar table tr td {
  padding: 0.35rem;
}

.calendar-top {
  position: relative;
}

.calendar-btn-left {
  position: absolute;
  left: 15px;
  top: 15px;
}

.calendar-btn-right {
  position: absolute;
  right: 15px;
  top: 15px;
}

.calendar-btn-left i,
.calendar-btn-right i {
  font-size: 2.2rem;
}

.calendar-btn-left,
.calendar-btn-right {
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  margin: 0.2rem;
  text-align: center;
  background-color: #e3e8ec;
  border-radius: 50%;
  color: #5c6069;
  transition: 0.5s;
}

.calendar-btn-left .material-icons,
.calendar-btn-right .material-icons {
  line-height: 2.2rem
}

.calendar-top .left-year {
  position: absolute;
  left: 0;
  padding-left: 70px;
  top: 25px;
  font-size: 1.2rem;
}

.calendar-top .right-year {
  position: absolute;
  right: 0;
  padding-right: 70px;
  top: 25px;
  font-size: 1.2rem;
}

.calendar-wrap .card .card-body ul.calendar-list {
  padding: 0.5rem;
}

/* Calendar-rice */
.calendar .calendar-header {
  margin-bottom: 1rem;
}

.calendar .calendar-header .text-center {
  font-weight: 600;
  font-size: 1.1rem;
  color: #124fb6;
}

.calendar table {
  table-layout: fixed
}

.calendar table td {
  height: 100px;
  vertical-align: top;
}

.calendar table td .txt-wrap {
  position: relative;
  font-size: 12px;
  height: 100%;
  padding-bottom: 34px;
  vertical-align: top !important;
}

.calendar table .float-left {
  line-height: 24px;
}

.calendar table .other-month>div {
  color: #ccc
}

.calendar table .btn.float-right {
  position: absolute;
  top: -3px;
  right: 0;
  padding: 0 0.25rem;
}

.calendar table a.btn.float-right>i {
  color: #999;
  font-size: 1rem;
}

.calendar table a.btn.float-right:hover>i,
.calendar table a.btn.float-right:focus>i {
  color: #124fb6;
}

.calendar .list-item>a {
  display: block;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
  margin-top: 2px;
  padding: 0 1px;
  background: #3a87ad;
  border-radius: 3px;
  color: #fff;
}

.calendar .calendar-month .sun {
  color: #660000;
}

.calendar .calendar-month .sat {
  color: #003399;
}

.calendar .calendar-month .other-month {
  color: #a0a0a0;
}

.calendar .calendar-month .today {
  background-color: #ECFDFF;
}

.calendar .calendar-month .today .num {
  color: #007bff;
  font-weight: 600;
}

.calendar table td .txt-wrap .btn.bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 100%;
}

.calendar .table-responsive>.table-bordered {
  min-width: 490px
}

/* ellipsis */
.ellipsis {
  display: inline-block;
  height: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* dashboard */
.dash-banner {
  position: relative;
  max-width: 450px;
  padding: 30px 20px;
  background: url(/site/resource/cs/images/dashboard-icon.png) no-repeat right 8% center;
}

.dash-banner .txt {
  color: #b5b5b5;
  font-family: var(--font-type02);
  font-weight: 700
}

.dash-banner p {
  font-family: var(--font-type02);
  font-size: 20px;
}

.dash-banner p>strong {
  display: block;
  color: var(--main-color01);
  font-size: 20px;
}


@media (max-width: 575px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-sm>.table-bordered {
    border: 0;
  }
}

@media (max-width: 767px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-md>.table-bordered {
    border: 0;
  }
}

@media (max-width: 991px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-lg>.table-bordered {
    border: 0;
  }
}

@media (max-width: 1199px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }

  .table-responsive-xl>.table-bordered {
    border: 0;
  }

  .card-body .row [class*=col] .highcharts-figure-box {
    margin: 5px 0
  }

}

@media (min-width: 768px) {
  .pdf-viewer {
    padding-left: 10.5rem;
    background: #fbfcff url(../images/pdf-img.png) no-repeat 2rem 1.5rem;
  }

  .btn-switch .form-group {
    display: flex;
    flex-direction: column
  }

  .btn-switch .btn>.material-icons {
    transform: rotate(-90deg);
  }

  .dash-banner {
    padding: 56px 20px;
  }
}

@media (min-width:768px) and (max-width:991px) {
  .pager-calendar .card .card-body .table tr td {
    padding: 0.30rem;
    font-size: 0.8rem;
  }

  .pager-calendar .card .card-body .table thead th {
    padding: 0.30rem;
    font-size: 0.8rem;
  }

  .pager-calendar .card .card-header {
    font-size: 1rem;
  }

  .pager-calendar .card .card-body ul.calendar-list li {
    font-size: 0.9rem;
    margin: 0.2rem;
  }

  .pager-calendar .card .card-body ul.calendar-list {
    padding: 0.5rem;
  }
}

@media (min-width: 992px) {
  .sub-container {
    max-width: none !important;
  }

  .pager-calendar .card .card-body .table tr td,
  .pager-calendar .card .card-body .table thead th {
    padding: 0.5rem 0.45rem;
    font-size: 14px;
  }

  .pager-calendar .card .card-body ul.calendar-list {
    padding: 0.5rem 0;
  }

  .pager-calendar .card .card-body .table {
    border-right: 1px solid #eee;
  }

  .pager-calendar .card .card-body .table tr:last-child td {
    border-bottom: 0;
  }

  /* page-navi */
  .page-navi .navbar {
    border: none;
  }

  .page-navi .navbar .navbar-nav>.nav-item:nth-child(2n+1) {
    border-right: 1px solid #64676d;
  }

  .page-navi .navbar .navbar-nav>.nav-item {
    position: relative;
    width: auto;
    height: 50px;
    min-width: 190px;
    border-bottom: 0;
    color: black;
    border: none;
    border-right: 1px solid #64676d;
  }

  .page-navi .navbar .navbar-nav>.nav-item:first-child {
    display: block;
    width: 50px;
    min-width: inherit;
    border-left: 1px solid #64676d;
  }

  .page-navi .navbar .navbar-nav>.nav-item .nav-link {
    font-size: 1rem;
    padding: 0.8rem 2rem 0.8rem 1rem;
  }

  .page-navi .navbar .navbar-nav>.nav-item:first-child .nav-link {
    padding: 0.8rem 0;
    display: block;
    height: 100%;
    text-align: center;
  }

  .page-navi .navbar .navbar-nav>.nav-item .nav-link:before {
    top: 0.6rem;
    font-size: 1.3rem;
  }

  .page-navi .navbar .navbar-nav>.nav-item:first-child .nav-link:before {
    display: none;
  }

}

@media (min-width: 1400px) {
  .container {
    max-width: 1340px;
  }

  .pager-calendar table tr th,
  .calendar table tr td {
    padding: 0.75rem;
  }
}

/* ricee - form-check-inline */
.sub-container ul.form-check-inline {
  display: block;
}

.sub-container ul.form-check-inline li {
  position: relative;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.sub-container ul.form-check-inline label {
  margin-bottom: 0;
}

.sub-container ul.form-check-inline input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

/*****************************************************
	Common Contetns
*****************************************************/

/* Login */
.login-body {
  background-image: linear-gradient(to right top, #e4f0ff, #c7e1fd, #c7e1fd, #c7e1fd, #c7e1fd, #b5d8ff, #8ac1ff, #8ac1ff, #55ccff, #3bd6f1, #2fcfbd, #1ce996);
  width: 100%;
  max-width: 100%;
  height: 100%;
  overflow: auto;
  margin: 0;
  padding: 0;
}

.login-body.init {
  background: url(/site/resource/cs/images/login_init.jpg) no-repeat center;
}

.login-body .login-box {
  width: 90%;
  max-width: 500px;
  padding: 0;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
}

.login-body .login-box h1 {
  display: flex;
  align-items: center;
}

.login-body .login-box h1 .logo {
  max-width: 140px;
}

.login-body .login-box h1>strong {
  margin: 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.login-body .login-box>.container {
  position: relative;
  padding: 0;
}

.login-body .login-box>.container .cont-top {
  background: #fff;
  border: #fff solid 1px;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  padding: 50px;
  margin: 20px auto;
}

.login-body .login-box>.container .cont-top .txt {
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
  color: #666;
}

.login-body .login-box>.container .form-signin {
  padding-top: 0px;
}

.login-body .login-box>.container .form-signin .form-signin-heading {
  margin: 0 0 10px 0;
  padding: 0;
  min-height: 25px;
  font-size: 24px;
  font-weight: 800;
  color: var(--main-color01);
  line-height: 1em;
  font-family: var(--font-type01);
}

.login-body .login-box>.container .form-group {
  margin-bottom: 10px;
}

.login-body .login-box>.container .form-group .form-control {
  padding: 20px;
  border: none;
  background: #e8eef3;
  color: #858585;
  font-size: 14px;
}

.login-body .login-box>.container .form-group .form-control:hover,
.login-body .login-box>.container .form-group .form-control:focus {
  font-weight: 600;
}

.login-body .login-box>.container .btn-login {
  width: 100%;
  padding: 20px 0;
  border: none;
  background: var(--main-color01);
}

.login-body .login-box>.container .btn-login:hover,
.login-body .login-box>.container .btn-login:focus {
  background: var(--main-color01-hover);
}

@media all and (min-width:768px) {
  .login-body {
    min-height: 540px;
  }

  .login-body .login-box {
    top: 20%
  }

  .login-body .login-box>.container .cont-top {
    padding: 58px 60px;
  }

  .login-body .login-box>.container .login-img {
    top: -280px;
  }
}

/* site-map */
.site-map h3 {
  position: relative;
  color: #124fb6;
  font-size: 1.4rem;
  background: none;
  padding: 1rem 0 0 0;
  margin-bottom: 1rem;
  word-break: normal;
}

.site-map h3:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40%;
  height: 0.2rem;
  background-color: #124fb6;
}

.site-map .site-map-list {
  background-color: #f3f4f8;
  padding: 0.3rem 1.6rem 1.3rem;
  margin-bottom: 3.5rem;
}

.site-map .site-map-list h4 {
  font-size: 1.1rem;
}

.site-map .site-map-list h4>a {
  display: block;
  color: #000;
}

.site-map .site-map-list h4>a:hover,
.site-map .site-map-list h4>a:focus {
  text-decoration: underline;
}

.site-map .site-map-list ul {
  margin-bottom: 0.5rem;
}

.site-map .site-map-list ul>li>a:hover,
.site-map .site-map-list ul>li>a:focus {
  text-decoration: underline;
}

.site-map .site-map-list ul>li>ul {
  margin: 0.2rem 0 0.8rem;
}

.site-map .site-map-list ul>li>ul>li {
  background: url(/common/images/bullet04.png) no-repeat 0px 10px;
  margin: 0.1rem 0;
  padding-left: 0.8rem;
}

.site-map .site-map-list ul>li>ul>li>a {
  font-size: 0.9rem;
  color: #999;
}

@media (min-width: 576px) {
  .site-map .site-map-list {
    background-color: transparent;
    padding: 0;
    border-top: 1px solid #ccc;
  }
}

@media (min-width: 768px) {
  .site-map h3 {
    font-size: 1.8rem;
    padding-top: 1.3rem;
    margin-bottom: 0;
  }

  .site-map h3:after {
    width: 100%;
  }

  .site-map .site-map-list h4 {
    font-size: 1.2rem;
  }
}

/* Non Page */
.non-page {
  text-align: center;
  max-width: 100%;
  padding: 30px 0;
}

.non-page .img {
  display: block;
  width: 60%;
  max-width: 100%;
  margin: 0 auto;
}

.non-page h3 {
  font-family: var(--font-type02);
  font-weight: 600;
  font-size: 17px;
  color: #12294a;
  margin-bottom: 10px;
  text-align: center;
}

.non-page img+h3 {
  margin-top: 20px;
}

.non-page {
  text-align: center;
  color: #999;
  margin-bottom: 0;
}

.non-page .btn-wrap {
  justify-content: center;
  margin-top: 30px;
  gap: 0 10px;
}

.non-page .btn-wrap>button {
  min-width: 100px;
  padding: 8px 15px;
}

@media (min-width: 576px) {
  .non-page .img {
    width: auto;
  }
}

/* error-page */
.error-page {
  text-align: center;
}

.error-page img {
  margin-bottom: 50px;
  max-width: 100%;
}

.error-page>h1 {
  color: #242850;
  font-weight: 700;
  font-family: var(--font-type02);
  font-size: 60px;
}

.error-page .btn {
  position: relative;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 15px 20px;
  min-width: 150px;
  margin-top: 50px;
  overflow: hidden;
}

.error-page .btn::after {
  background: var(--grey-color04);
  content: '';
  position: absolute;
  z-index: -1;
  height: 100%;
  left: -35%;
  top: 0;
  transform: skew(50deg);
  transition-duration: 0.6s;
  transform-origin: top left;
  width: 0;
}

.error-page .btn:hover,
.error-page .btn:focus {
  color: var(--main-color01);
  border-color: var(--main-color01);
}

.error-page .btn:hover:after,
.error-page .btn:focus:after {
  height: 100%;
  width: 135%;
}

@media (min-width:1400px) {
  .error-page {
    padding-top: 80px;
  }
}

/*****************************************************
	Board
*****************************************************/
/* Board-view */
.board-view .board-view-title {
  border-bottom: 1px solid #ddd;
  padding: 0.65rem;
  padding-top: 0;
}

.board-view .board-view-title h4 {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.3;
  margin: 0 0 0.9rem 0;
}

.board-view .board-info {
  line-height: 1.429rem;
  margin-bottom: 0;
}

.board-view .board-info span {
  position: relative;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  color: #666;
}

.board-view .board-info span>strong {
  color: #333;
}

.board-view .board-info span:first-child {
  margin-left: 0;
  padding-left: 0;
}

.board-view .board-info span:after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 4px;
  width: 1px;
  height: 9px;
  background-color: #d2d3d6;
}

.board-view .board-info span:first-child:after {
  display: none;
}

.board-view .board-info span .material-icons {
  font-size: 1rem;
  color: #cdcfd3;
  margin-right: 0.2rem;
}

.board-view .board-view-files {
  position: relative;
  border-bottom: 1px solid #ddd;
  padding: 0.8rem 0.65rem;
}

.board-view .board-view-files h5 {
  color: #666;
  font-size: 1rem;
  margin-top: 0;
}

.board-view .board-view-files ul {
  margin-bottom: 0;
}

.board-view .board-view-files ul>li {
  position: relative;
  padding-left: 1.75rem;
}


.board-view .board-view-files ul>li>a:after {
  position: absolute;
  top: 0;
  left: 0.625rem;
  content: '\e226';
  font-family: 'material-Icons';
  display: inline-block;
  vertical-align: middle;
  font-size: 1rem;
  color: #999;
}

.board-view .board-view-files ul>li>a:hover,
.board-view .board-view-files ul>li>a:focus {
  text-decoration: underline;
}

.board-view .board-view-files ul>li>a:hover:after,
.board-view .board-view-files ul>li>a:focus:after {
  color: #0056b3;
  text-decoration: underline;
}

.board-view .board-view-files ul>li>a:hover:after,
.board-view .board-view-files ul>li>a:focus:after {
  text-decoration: none;
}

.board-view .board-view-cont {
  padding: 1rem 0.5rem 2rem;
}

.board-view .board-view-cont img {
  max-width: 100%;
}

/* Board-comment */
.board-comment {
  margin-bottom: 1.5rem;
}

.board-comment h3 {
  background: none;
  padding: 0 0 0.6rem 0;
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 0;
  border-bottom: 1px solid #777;
}

.board-comment h3 .badge {
  font-size: 0.8rem;
}

.board-comment .messages {
  border-top: 1px dotted #bfbfbf;
  padding-top: 1.5rem;
}

.board-comment .messages:first-child {
  border-top: none;
  padding-top: 0;
}

.board-comment .messages>.messages {
  position: relative;
  border-top: 1px dotted #bfbfbf;
  border-bottom: none;
  padding-left: 2.7rem;
}

.board-comment .messages>.messages:after {
  content: '';
  position: absolute;
  left: 1.3rem;
  top: 1.5rem;
  width: 0.65rem;
  height: 0.7rem;
  border-left: 1px solid #b1b1b1;
  border-bottom: 1px solid #b1b1b1;
}

.board-comment .messages .heading {
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.board-comment .messages .heading .date {
  font-weight: 100;
  color: #888;
  margin-left: 0.2rem;
  font-size: 0.8rem;
}

.board-comment .messages .heading .comment-btn {
  float: right;
  display: inline-block;
}

.board-comment .messages .heading .comment-btn .btn {
  padding: 0 0.1rem;
  background-color: transparent;
  color: #888;
}

.board-comment .messages .comment {
  margin-bottom: 1.5rem;
}

.board-bottom {
  border-top: 1px solid #555;
  padding-top: 2.5rem;
  margin-top: 3rem;
}

/* Gallery */
.board-gallery a {
  display: block;
}

.board-gallery a .thum {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  overflow: hidden;
  background: #f2f2f2 url(../../../../common/images/thumb-non.png) no-repeat 50% 50%;
  transition: all 0.5s;
}

.board-gallery a .thum>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: all .4s ease-in-out;
}

.board-gallery a:hover .thum>img,
.board-gallery a:focus .thum>img {
  transform: scale(1.1);
}

.board-gallery a .txt-box {
  position: relative;
  padding: 1.4rem 1.3rem;
  min-height: 160px;
  background-color: #f7f7f7;
}

.board-gallery a .txt-box .category {
  display: block;
  margin-bottom: 0.1rem;
}

.board-gallery a .txt-box .tit {
  font-size: 1rem;
  margin-bottom: 1rem;
  min-height: 40px;
  color: #333;
  font-weight: 600;
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: keep-all;
  word-wrap: break-word;
  transition: 0.5s;
}

.board-gallery a:hover .txt-box .tit,
.board-gallery a:focus .txt-box .tit {
  text-decoration: underline;
}

.board-gallery a .txt-box .date {
  position: absolute;
  left: 1.3rem;
  bottom: 1.4rem;
  font-size: 0.8rem;
  margin-right: 0.7rem;
  color: #888;
}

.board-gallery.style-2 a .thum {
  padding-bottom: 90%;
}

.board-gallery.style-2 a .txt-box {
  min-height: auto
}

.board-gallery.style-2 a .txt-box .tit {
  margin-bottom: 0;
}

.board-gallery.style-2 a .txt-box .date {
  display: none;
}

/* Webzine */
.board-webzine .webzine-item a {
  display: inline-block;
}

.board-webzine .webzine-item a .thum {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 0;
  padding-bottom: 60%;
  overflow: hidden;
  background: #d5d7dc url(/common/images/thumb-non.png) no-repeat 50% 50%;
  transition: all 0.5s;
}

.board-webzine .webzine-item a .thum>img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .4s ease-in-out;
}

.board-webzine .webzine-item a:hover .thum>img,
.board-webzine .webzine-item a:focus .thum>img {
  transform: scale(1.1);
}

.board-webzine .webzine-item a .txt-box {
  padding: 1.4rem 1.3rem;
  background-color: #f7f7f7;
}

.board-webzine .webzine-item a .txt-box .category {
  display: block;
  margin-bottom: 0.2rem;
}

.board-webzine .webzine-item a .txt-box .tit {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #333;
}

.board-webzine .webzine-item a:hover .txt-box .tit,
.board-webzine .webzine-item a:focus .txt-box .tit {
  text-decoration: underline;
  color: #0b3d92;
}

.board-webzine .webzine-item a .txt-box .txt {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #777;
}

.board-webzine .webzine-item a:hover .txt-box .txt,
.board-webzine .webzine-item a:focus .txt-box .txt {
  color: #333;
}

.board-webzine .webzine-item a .txt-box .date {
  display: block;
  font-size: 0.9rem;
  margin-top: 1.7rem;
  color: #999;
}

@media (min-width: 576px) {
  .board-view .board-view-files {
    padding-left: 9rem;
  }

  .board-view .board-view-files h5 {
    position: absolute;
    top: 1.1rem;
    left: 0.75rem;
    margin: 0;
    color: #333;
    /* font-size: 0.8125rem;*/
    font-size: 1rem
  }

  .board-view .board-view-files ul {
    position: relative;
  }

  .board-view .board-view-files ul:after {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    display: block;
    background: #d2d3d5;
    width: 1px;
    height: 100%;
  }
}

@media (min-width: 992px) {
  .board-view .board-view-files {
    padding-left: 14rem;
  }

  .board-webzine .webzine-item {
    float: none;
    display: block;
    clear: both;
    border-top: 1px dotted #ccc;
    padding-top: 2rem;
  }

  .board-webzine .webzine-item:first-child {
    border-top: none;
    padding-top: 0;
  }

  .board-webzine .webzine-item a .thum {
    float: left;
    width: 30%;
    padding-bottom: 18%;
  }

  .board-webzine .webzine-item a .txt-box {
    float: right;
    background-color: transparent;
    width: 70%;
    padding: 0.35rem 1.6rem;
  }

  .board-webzine .webzine-item a .txt-box .tit {
    font-size: 1.6rem;
    -webkit-line-clamp: 1;
  }

  .board-webzine .webzine-item a .txt-box .txt {
    -webkit-line-clamp: 3;
  }
}

@media (min-width: 1200px) {
  .board-webzine .webzine-item a .txt-box .date {
    font-size: 1rem;
  }
}

@media (min-width: 1400px) {
  .board-webzine .webzine-item a .txt-box .tit {
    -webkit-line-clamp: 2;
  }
}

/*****************************************************
	Dashboard
*****************************************************/
/* card-list01 */
.card-list01 {
  margin-bottom: 15px;
}

.card-list01 .card .card-header,
.card-list01 .card .card-footer {
  background: none;
}

.card-list01 .card {
  margin-bottom: 8px;
  background: var(--bg-color01);
  border: none;
  border-top-right-radius: 20px;
}

.card-list01 .card .card-header {
  position: relative;
  border-bottom: none;
}

.card-list01 .card .card-header .row [class*=col],
.card-list01 .card .card-header .row [class*=col-] {
  text-align: left;
}

.card-list01 .card .card-header .more-btn {
  padding: 2px 6px;
}

.card-list01 .card .card-header .more-btn::before {
  display: block;
  content: '\e145';
  font-family: var(--font-icon);
  font-size: 21px;
  line-height: 1;
  transition: .3s;
}

.card-list01 .card .card-header .more-btn:hover::before,
.card-list01 .card .card-header .more-btn:focus::before {
  transform: rotate(90deg);
}

.card-list01 .card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 15px;
}

.card-list01 .card-body .inner>.num {
  position: relative;
  display: inline-block;
  margin: 4px 0;
  padding-left: 15px;
  font-size: 25px;
  font-weight: 600;
}

.card-list01 .card.up .card-body .inner>.num,
.card-list01 .card.up .card-body .inner>.num .material-icons {
  color: var(--danger)
}

.card-list01 .card.down .card-body .inner>.num {
  color: var(--main-color01)
}

.card-list01 .card-body .inner>.num::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50px;
  background: var(--point-color01);
  font-size: 20px;
  vertical-align: middle
}

.card-list01 .card.up .card-body .inner>.num::before,
.card-list01 .card.down .card-body .inner>.num::before {
  background: none;
  border: none;
  border-radius: 0;
  height: 0;
  border-style: solid;

}

.card-list01 .card.up .card-body .inner>.num::before {
  border-width: 0px 6px 10px 6px;
  border-color: transparent transparent var(--danger) transparent;
}

.card-list01 .card.down .card-body .inner>.num::before {
  border-width: 10px 6px 0px 6px;
  border-color: var(--main-color01-hover) transparent transparent transparent;
}

.card-list01 .card-body .inner .count {
  display: inline-block;
  color: #555;
}

.card-list01 .card-body .inner .count .num {
  position: relative;
  margin: 0 4px;
  padding: 4px 10px 4px 24px;
  border-radius: 50px;
  background: #999;
  color: #fff;
  font-size: 12px;
}

.card-list01 .card.down .card-body .inner .count .num {
  background: var(--main-color01);
}

.card-list01 .card.up .card-body .inner .count .num {
  background: var(--danger);
}

.card-list01 .card-body .inner .count .num::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 2px;
  background: #fff;
}

.card-list01 .card.up .card-body .inner .count .num::before,
.card-list01 .card.down .card-body .inner .count .num::before {
  font-size: 10px;
  top: 7px;
  background: transparent;
}

.card-list01 .card.up .card-body .inner .count .num::before {
  content: '▲';

}

.card-list01 .card.down .card-body .inner .count .num::before {
  content: '▼';
}

.card-list01 .card-body .inner .icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #fff;

}

.card-list01 .card-body .inner .icon .material-icons {
  color: #7382a5;
  font-size: 26px;
}

.card-list01 .card .card-footer {
  position: relative;
  border-top: none;
}

.card-list01 .card-footer .table-legend {
  padding: 0;
  gap: 2px;
}

.card-list01 .card-footer::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: calc(100% - 40px);
  height: 1px;
  border-top: 2px dotted #ddd;
}

.card-list01 .card-footer .table-legend li {
  font-size: 12px;
}