.app-container {
  width: 100%;
  min-width: 1200px;
}

.app-container .app-contents {
  width: 100%;
  padding-top: 60px;
}

.app-container .app-contents main {
  min-width: 1200px;
  margin: 0 auto;
  min-height: calc(100vh - 100px);
  padding: 3rem 0;
  margin-left : 30px;
  margin-right : 30px;
}

.app-container .app-contents header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--bs-gray-lighter);
  z-index: 100;
  width: 100%;
  background: var(--bs-primary);
}

.app-container .app-contents header .w-con {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-container .app-contents header .w-con h1 {
  display: inline-flex;
  align-items: center;
  margin-right: 3rem;
  font-size: var(--fs-24);
  color: var(--bs-white);
  cursor: pointer;
}

.app-container .app-contents header .w-con h1 span {
  display: block;
  padding-left: 0.5rem;
}

.app-container .app-contents header .w-con ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.app-container .app-contents header .w-con ul > li {
  position: relative;
}

.app-container .app-contents header .w-con ul > li a {
  padding: 0 1rem;
  color: var(--bs-white);
  opacity: 0.6;
  font-size: var(--fs-18);
  font-weight: 700;
  position: relative;
}

.app-container .app-contents header .w-con ul > li a::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}

.app-container .app-contents header .w-con ul > li > a {
  display: block;
  line-height: 60px;
}

.app-container .app-contents header .w-con ul > li:first-of-type {
  padding-left: 0;
  margin-left: 0;
}

.app-container .app-contents header .w-con ul > li:first-of-type > a {
  padding-left: 0;
}

.app-container .app-contents header .w-con ul > li:first-of-type > a::before {
  display: none;
}

.app-container .app-contents header .w-con ul > li .sub-cate {
  position: absolute;
  top: 50px;
  left: calc(50% - 60px);
  border-radius: 0.5rem;
  width: 120px;
  background: var(--bs-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.1s ease-in-out;
}

.app-container .app-contents header .w-con ul > li .sub-cate ul {
  padding: 1rem 0;
  display: block;
}

.app-container .app-contents header .w-con ul > li .sub-cate ul li > a {
  display: block;
  text-align: center;
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-16);
  line-height: 1.25rem;
  color: var(--bs-dark);
  font-weight: 700;
  opacity: 0.8;
}

.app-container .app-contents header .w-con ul > li.active > a {
  opacity: 1;
}

.app-container .app-contents header .w-con ul > li.active > a::after {
  opacity: 1;
  visibility: visible;
}

.app-container .app-contents header .w-con ul > li.active .sub-cate {
  opacity: 1;
  visibility: visible;
}

.app-container .app-contents header .w-con ul > li.on > a {
  opacity: 1;
  color: var(--bs-white);
}

.app-container .app-contents header .w-con .member {
  display: inline-flex;
  justify-content: flex-end;
  align-items: center;
}

.app-container .app-contents header .w-con .member > * {
  font-weight: 400;
  color: var(--bs-white);
}

.app-container .app-contents header .w-con .member > *.btn-icon {
  position: relative;
}

.app-container .app-contents header .w-con .member > *.btn-icon i {
  font-size: var(--fs-24);
}

.app-container .app-contents header .w-con .member > *.btn-alert {
  margin-right: 0.5rem;
}

.app-container .app-contents header .w-con .member > *.btn-alert span {
  position: absolute;
  top: 0;
  right: -0.25rem;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  border: 2px solid var(--bs-white);
  background: var(--bs-danger);
}

.app-container .app-contents header .w-con .member > *.btn-logout {
  padding-left: 2rem;
  margin-left: 1rem;
}

.app-container .app-contents header .w-con .member > *.btn-logout::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}

.app-container .app-contents footer {
  display: flex;
  align-items: center;
  height: 40px;
  background: var(--bs-gray-lighter);
  color: var(--bs-gray-dark);
}

.app-container .app-contents footer .logo {
  margin: 0 2rem 0 0;
}

.app-container .app-contents footer p {
  font-weight: 400;
}

.app-container .app-contents footer p.copyright {
  position: relative;
  margin-left: 0.75rem;
  padding-left: 0.75rem;
}

.app-container .app-contents footer p.copyright::before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  background: rgba(0, 0, 0, 0.25);
}

.app-container .app-contents footer p.copyright span {
  color: var(--bs-dark);
}

.app-container .app-contents footer .btn-underline {
  color: var(--bs-dark) !important;
}

.w-con {
  width: 1200px;
  margin: 0 auto;
}

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

.flex-center > * {
  min-width: 1px;
}

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

.flex-start > * {
  min-width: 1px;
}

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

.flex-end > * {
  min-width: 1px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-between > * {
  min-width: 1px;
}

.flex-auto {
  flex-basis: auto !important;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
}

.fs-10 {
  font-size: var(--fs-10) !important;
}

.fs-11 {
  font-size: var(--fs-11) !important;
}

.fs-12 {
  font-size: var(--fs-12) !important;
}

.fs-14 {
  font-size: var(--fs-14) !important;
}

.fs-16 {
  font-size: var(--fs-16) !important;
}

.fs-18 {
  font-size: var(--fs-18) !important;
}

.fs-20 {
  font-size: var(--fs-20) !important;
}

.fs-24 {
  font-size: var(--fs-24) !important;
}

.fs-28 {
  font-size: var(--fs-28) !important;
}

.fs-32 {
  font-size: var(--fs-32) !important;
}

.fs-36 {
  font-size: var(--fs-36) !important;
}

.fs-48 {
  font-size: var(--fs-48) !important;
}

.fs-64 {
  font-size: var(--fs-64) !important;
}

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

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

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

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

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

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

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

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

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

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

.title-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--bs-border-color);
  margin-bottom: 1rem;
}

.title-area h3 {
  font-size: var(--fs-24);
  line-height: 1.5;
  margin: 0;
}

.title-area p {
  margin: 1rem 0 0;
  font-weight: 400;
  color: var(--bs-gray);
}

.sub-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
}

.sub-title h5 {
  font-size: var(--fs-18);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.sub-title .btn-area {
  margin: 0;
  width: auto;
}

.bg-title {
  color: var(--bs-dark);
  background: var(--bs-th-bg);
  font-size: var(--fs-16);
  font-weight: 700;
  padding: 0.5rem 1rem;
}

.btn-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 1rem 0 0;
}

.btn-area > * {
  margin-left: 0.5rem;
}

.btn-area > *:first-child {
  margin-left: 0;
}

.ellipsis {
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  overflow: hidden;
  width: inherit;
  width: 100%;
}

.ellipsis-line {
  display: block;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-line.line-2 {
  -webkit-line-clamp: 2 !important;
}

.ellipsis-line.line-4 {
  -webkit-line-clamp: 4 !important;
}

form .form-group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.5rem;
}

form .form-group:first-of-type {
  margin-top: 0;
}

form .form-group > * {
  min-width: 1px;
}

form .form-group .form-label {
  margin: 0;
  flex: 0 0 80px;
  padding: 0;
  color: var(--bs-gray-dark);
  font-weight: 700;
}

form .form-group .form-label + * {
  flex-grow: 1;
  font-weight: 400;
  color: var(--bs-dark);
  word-break: break-all;
}

form.align-start .form-group {
  align-items: flex-start;
}

form.align-start .form-group .form-label {
  line-height: 26px;
}

form.column .form-group {
  flex-direction: column;
  align-items: stretch;
}

form.column .form-group .form-label {
  flex: 0 0 auto;
  padding-bottom: 0.25rem;
}

form.label-lg .form-label {
  flex: 0 0 100px;
}

.dl-box dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.5rem;
}

.dl-box dl:first-of-type {
  margin-top: 0;
}

.dl-box dl dt {
  margin: 0;
  flex: 0 0 80px;
  padding: 0;
  color: var(--bs-gray-dark);
  font-weight: 700;
}

.dl-box dl dd {
  flex-grow: 1;
  font-weight: 400;
  color: var(--bs-dark);
  word-break: break-all;
}

.dl-box.align-start dl {
  align-items: flex-start;
}

.dl-box.align-start dl dt {
  line-height: 26px;
}

.dl-box.column dl {
  flex-direction: column;
  align-items: stretch;
}

.dl-box.column dl dt {
  flex: 0 0 auto;
  padding-bottom: 0.25rem;
}

.dl-box.row dl {
  margin: 0;
}

.dl-box.line {
  flex-direction: row;
}

.dl-box.line dl {
  display: inline-flex;
  margin: 0;
  padding: 0 0.5rem;
  position: relative;
}

.dl-box.line dl:before {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  left: 0;
  background: var(-color);
}

.dl-box.line dl:first-of-type {
  padding-left: 0;
}

.dl-box.line dl:first-of-type:before {
  display: none;
}

.border .bg-title {
  border-bottom: 1px solid var(--bs-border-color);
}

.bg-box {
  padding: 0.75rem 1.25rem;
  color: var(--bs-gray-dark);
  font-size: var(--fs-14);
  border-radius: 0;
  word-break: keep-all;
}

.bg-box.bg-primary-light {
  background: var(--bs-primary-light);
}

.bg-box.bg-gray {
  background: var(--bs-gray-lighter);
}

.img-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: transparent;
}

.selected-keyword {
  display: inline-flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0.25rem 0.5rem 0.25rem 0;
  background-color: var(--bs-primary-light);
  border: 1px solid var(--bs-primary-text);
  padding: 0.3rem 2rem 0.3rem 0.75rem;
  border-radius: 0.25rem;
  position: relative;
}

.selected-keyword strong {
  font-size: var(--fs-16);
  line-height: 22px;
  font-weight: 600 !important;
  color: var(--bs-primary) !important;
}

.selected-keyword .btn-delete {
  padding: 0 0.5rem;
  margin-right: -2rem;
  height: 22px;
}

.selected-keyword .btn-delete i {
  font-size: var(--fs-16);
  color: var(--bs-primary);
  margin: 0;
}

.no-data {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: var(--fs-14);
  font-weight: 500;
  text-align: center;
  color: var(--bs-dark);
  padding: 1rem 0;
  min-height: 80px;
  margin: 0;
}

td.no-data {
  min-height: auto;
  padding: 2rem 0;
  display: table-cell;
  text-align: center !important;
}

.annotation {
  color: var(--bs-green);
  display: block;
  margin-bottom: 0.5rem;
}

.annotation:before {
  content: "<!-- ";
}

.annotation:after {
  content: " -->";
}

.annotation.ct {
  display: block;
  text-align: center;
}

.form-check-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.form-check-container .form-check {
  margin-right: 1.5rem;
}

.form-check-container.column {
  flex-direction: column;
}

.form-check-container.center {
  justify-content: center;
}

.form-check-container.center .form-check {
  margin: 0 0.5rem;
}

.check-input-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.check-input-container .form-control {
  width: auto;
  flex: 1;
  min-width: 100px;
}

.input-text-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.input-text-container > * {
  min-width: 1px;
}

.input-text-container span {
  margin: 0 0.5rem;
  flex-shrink: 0;
}

.swiper-wrap {
  position: relative;
  width: 100%;
}

.swiper-wrap .swiper-box {
  height: 100%;
  margin: -1rem 0;
  padding: 1rem 0;
}

.swiper-wrap .swiper-box .swiper-slide {
  width: auto;
}

.swiper-navigation {
  z-index: 2;
}

.swiper-navigation .swiper-button-prev,
.swiper-navigation .swiper-button-next {
  position: absolute;
  top: calc(50% - 20px);
  margin-top: 0;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.5);
}

.swiper-navigation .swiper-button-prev:after,
.swiper-navigation .swiper-button-next:after {
  display: none;
}

.swiper-navigation .swiper-button-prev {
  background-image: url("../images/ic_arrow_prev.png");
}

.swiper-navigation .swiper-button-next {
  background-image: url("../images/ic_arrow_next.png");
}

.form-datepicker,
.form-datetimepicker {
  background: #fff url("../images/ic_calendar.png") no-repeat 0.4rem calc(50% - 1px)/18px auto;
  padding-left: 26px;
  position: relative;
}

.bootstrap-datetimepicker-widget td,
.bootstrap-datetimepicker-widget th {
  font-size: var(--fs-12);
  height: 24px;
}

.bootstrap-datetimepicker-widget th {
  height: 30px;
  background-color: var(--bs-ts);
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  min-width: 280px;
}

.bootstrap-datetimepicker-widget.dropdown-menu span.fa {
  font-size: var(--fs-18);
}

.collapse {
  display: none;
  visibility: hidden;
}

.collapse.show {
  display: block;
  visibility: visible;
}

.table-condensed {
  width: 100%;
}

.logo {
  display: block;
  width: 79px;
  height: 30px;
  background: url("../images/logo.png") no-repeat left center/auto 100%;
  cursor: pointer;
}

.logo.white {
  background-image: url("../images/logo_white.png");
}

.badge-demo {
  font-size: var(--fs-12);
  border: 1px solid var(--bs-gray);
  color: var(--bs-gray-dark);
  background: var(--bs-gray-lighter);
  border-radius: 0.15rem;
  padding: 0.1rem 0.25rem;
  display: inline-flex;
  margin: 0 0.25rem 0 0;
}

.badge-demo.primary {
  border-color: var(--bs-primary);
  color: var(--bs-primary);
  background: transparent;
}

.search-area {
  background: var(--bs-gray-lighter);
  border: 1px solid var(--bs-border-color);
  padding: 1rem;
}

.search-area form .form-group {
  margin-top: 0.75rem;
}

.search-area form .form-group .form-label {
  flex: 0 0 160px;
}

.search-area .btn-area {
  margin-top: 2rem;
}

.search-area.type-row form .row {
  --bs-gutter-x: 0.75rem;
}

.search-area.type-row form .form-group {
  margin: 0;
}

.search-area.type-row form .form-group .form-label {
  flex: 0 0 auto;
  margin-right: 0.5rem;
}

.search-area.type-row form .form-group .form-select {
  width: auto;
  min-width: 100px;
}

.search-area.type-row form .btn-area {
  margin: 0;
  width: auto;
}

.btn-excel {
  background: url("../images/ic_excel.png") no-repeat 0.75rem center;
  padding: 0.4rem 1rem 0.4rem 40px;
  border-color: var(--bs-success);
  color: var(--bs-success);
}

.hover-none {
  pointer-events: none;
}

@media (min-width: 1025px) and (hover: hover) {
  .app-container .app-contents header .w-con ul > li .sub-cate ul li > a:hover {
    opacity: 1;
  }
}

figure.photo {
  display: inline-block;
  width: 140px;
  height: 190px;
  border: 1px solid var(--bs-border-color);
  background-color: var(--bs-th-bg);
  background-image: url("../images/regPhoto_default.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
}
figure.edit {
  cursor: pointer;
}
figure.photo.err:after {
  content: "오류";
  display: block;
  width: 80px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--bs-black);
  border-radius: 0 0 0 1rem;
  position: absolute;
  top: 0;
  right: 0;
  background: #ff6422;
}
