@charset "UTF-8";
/* title : layout style sheet 쨌  Author : hyeonjin keum 쨌 Create date :2024. 06. 14 */
/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
/* font @import는 basic.css에서 단일 로드 */


/*-------------------------------------------------
title : variables style sheet
Author : Gahye Park
Create date :2021. 12. 06
-------------------------------------------------*/
/* title : mixin style sheet 쨌  Author : Gahye Park 쨌 Create date :2024. 01. 04 */
/*-------------------------------------------------
title : variables style sheet
Author : Gahye Park
Create date :2021. 12. 06
-------------------------------------------------*/
/*************************************
    # dashboard 
************************************/
/* font family */
/* font color */
/* responsive */
/*-- layout common --*/
html {
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: calc(100dvh - 3rem);
  top: 3.4rem;
  left: 0;
  background-color: var(--color-overlay-70);
  z-index: 20;
  pointer-events: none;
}

/*-- header --*/
#header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  /* ?쀬そ header */
  /* nav */
}

.fullOpen #header {
  z-index: 999;
}

#header .hdt-link {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  color: var(--color-gray-900);
  background: var(--color-surface-100);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 媛濡쒕찓??e-cloud */
  /* //媛濡쒕찓??*/
}

#header .hdt-link .ht-tit {
  display: flex;
  justify-content: space-between;
  align-items: end;
  height: 1.5rem;
}

#header .hdt-link .ht-tit .logo {
  width: 10rem;
  height: 1.25rem;
  background: url(../img/layout/logo.svg) no-repeat center/100%;
  margin-right: 0.5rem;
}

#header .hdt-link .ht-tit span {
  font-size: 1rem;
  font-weight: 600;
  width: 6.5rem;
  max-width: 8rem;
  line-height: 1.85;
}

/* 25.05.13 異붽? */
#header .hdt-link .ht-tit .account-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:.25rem .5rem;
  width:fit-content;
  height:1rem;
  border-radius:2.5rem;
  background:var(--color-secondary-220);
  color:var(--color-secondary-700);
  white-space: nowrap;
} 
#header .hdt-link .ht-tit .account-badge span{
  font-size:.7rem;
  font-weight:400;
  width:fit-content;
  color:var(--color-secondary-700);
}

#header .hdt-link .hd-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

#header .hdt-link .hd-menu > ul {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: 100%;
  height: 100%;
  justify-content: center;
  margin: auto;
}

#header .hdt-link .hd-menu > ul > li {
  height: 100%;
  white-space: nowrap;
}

#header .hdt-link .hd-menu > ul > li button {
  height: 100%;
  font-weight: 500;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  font-size: 0.9rem;
  display: inline-block;
}

#header .hdt-link .hd-menu > ul > li button span {
  position: relative;
  display: inline-block;
  text-align: center;
}

#header .hdt-link .hd-menu > ul > li button span:before {
  content: "";
  position: absolute;
  bottom: -1.15rem;
  left: 50%;
  width: 0;
  height: 5px;
  background: var(--color-primary-700);
  border-radius: 0.6rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  color: var(--color-white);
}

#header .hdt-link .hd-menu > ul > li.on > button {
  color: #03629F;
  font-weight: 700;
}

#header .hdt-link .hd-menu > ul > li.on > button span:before {
  width: calc(100% + 2rem);
  background: var(--color-primary-700);
}

#header .hdt-link .depth-wrap {
  position: absolute;
  top: 3.4rem;
  left: 0;
  width: 100%;
  min-height: 12rem;
  color: var(--color-gray-800);
  background: var(--color-white);
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 6px var(--color-overlay-10);
  opacity: 1;
  overflow: hidden;
  z-index: 21;
}

#header .hdt-link .depth-wrap .depth-tit {
  width: 25%;
  align-self: stretch;
  background:url(../img/layout/depth-tit-bg.png) no-repeat bottom left;
  padding: 1rem 3rem;
}

#header .hdt-link .depth-wrap .depth-tit > span {
  color: var(--color-gray-800);
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  text-align: right;
}

#header .hdt-link .depth-wrap .depth-tit .depth-desc {
  color: var(--color-gray-600);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: right;
  margin-top: 0.75rem;
  white-space: pre-line;
  word-break: keep-all;
  overflow-wrap: break-word;
}

#header .hdt-link .depth-wrap .w-1600 {
  display: flex;
  width: calc(1600px - 11.4rem);
  max-width: calc(1600px - 11.4rem);
  height: auto;
  padding: 1rem 0 2rem 2rem;
}

#header .hdt-link .depth-wrap .w-1600 .depth02-w {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 1.5rem;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10.1rem;
  height: 2.05rem;
  border: 1px solid var(--color-gray-300);
  background: var(--color-white);
  color: var(--color-gray-800);
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li > a:before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-gradient-primary);
  opacity: 0;
  z-index: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li > a > span {
  position: relative;
  z-index: 1;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li > a:hover,
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li > a:focus,
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li > a:focus-visible {
  border: none;
  color: var(--color-white);
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li > a:hover:before,
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li > a:focus:before,
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li > a:focus-visible:before {
  opacity: 1;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li.active > a {
  border: none;
  color: var(--color-white);
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w > li.active > a:before {
  opacity: 1;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w .depth03-w {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w .depth03-w > li > a > span {
  position: relative;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w .depth03-w > li > a > span:before {
  content: "";
  position: absolute;
  bottom: -0.15rem;
  left: 50%;
  width: 0;
  height: 1px;
  background: #A0A0AC;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transition: width 0.2s;
  -webkit-transition: width 0.2s;
  -moz-transition: width 0.2s;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w .depth03-w > li > a:hover > span:before,
#header .hdt-link .depth-wrap .w-1600 .depth02-w .depth03-w > li > a:focus > span:before,
#header .hdt-link .depth-wrap .w-1600 .depth02-w .depth03-w > li > a:focus-visible > span:before {
  width: 100%;
}
#header .hdt-link .depth-wrap .w-1600 .depth02-w .depth03-w > li.active > a > span:before {
  width: 100%;
}

#header .hdt-link .util > ul {
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: 100%;
  gap:1.25rem;
  overflow: visible;
  position: relative;
  z-index: 25;
}

#header .hdt-link .util > ul > li {
  position: relative;
  overflow: visible;
}

#header .hdt-link .util > ul > li > a {
  position: relative;
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  padding: 0;
}

#header .hdt-link .util > ul > li > a:hover{
  transform: translateY(-0.1rem);  
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

#header .hdt-link .util > ul > li > a:before {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-gray-900);
  font-size: 1.2rem;
  line-height: 1.2rem;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}


#header .hdt-link .util > ul > li.login > a {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: auto;
  padding: 0.25rem 0.75rem;
  padding-right: 2.2rem;
  border:1px solid var(--color-gray-300);
}

#header .hdt-link .util > ul > li.login > a span {
  position: relative;
  font-weight: 400;
  z-index: 2;
}

#header .hdt-link .util > ul > li.login > a.out:before {
  position: absolute;
  content: "";
  top: calc(50% + 0.25px);
  left: calc(50% + 0.25px);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  border-radius: 1.5rem;
}

#header .hdt-link .util > ul > li.login > a.out > span {
  color: var(--color-white);
}

#header .hdt-link .util > ul > li.login > a.out > span strong {
  color: var(--color-secondary-700);
  margin-left: 0.2rem;
}

#header .hdt-link .util > ul > li.login > a:after {
  content: "\f3c1";
  color: var(--color-gray-150);
  font-family: "Line Awesome Free";
  font-size: 0.7rem;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.7rem;
  height: 1.7rem;
  position: absolute;
  right: 0;
  background: #5C6173;
}

#header .hdt-link .util > ul > li.setting > a,
#header .hdt-link .util > ul > li.alarm > a,
#header .hdt-link .util > ul > li.logout > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  overflow: visible;
}

#header .hdt-link .util > ul > li.setting > a:hover,
#header .hdt-link .util > ul > li.alarm > a:hover,
#header .hdt-link .util > ul > li.logout > a:hover {
  transform: none;
}

#header .hdt-link .util > ul > li.setting > a:before,
#header .hdt-link .util > ul > li.alarm > a:before,
#header .hdt-link .util > ul > li.logout > a:before {
  content: none;
  display: none;
}

#header .hdt-link .util > ul > li > a .util-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-gray-900);
  flex-shrink: 0;
  transition: color 0.3s;
  -webkit-transition: color 0.3s;
  -moz-transition: color 0.3s;
}

@keyframes icon-spin {
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
  }
}

@keyframes icon-ring {
  0%, 100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
  }
  15% {
    transform: rotate(16deg);
    -webkit-transform: rotate(16deg);
    -moz-transform: rotate(16deg);
  }
  30% {
    transform: rotate(-14deg);
    -webkit-transform: rotate(-14deg);
    -moz-transform: rotate(-14deg);
  }
  45% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
    -moz-transform: rotate(10deg);
  }
  60% {
    transform: rotate(-8deg);
    -webkit-transform: rotate(-8deg);
    -moz-transform: rotate(-8deg);
  }
  75% {
    transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
  }
}

@keyframes icon-exit {
  0%, 100% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
  }
  50% {
    transform: translateX(4px);
    -webkit-transform: translateX(4px);
    -moz-transform: translateX(4px);
  }
}

@keyframes icon-badge-pulse {
  0%, 100% {
    transform: translate(45%, -45%) scale(1);
    -webkit-transform: translate(45%, -45%) scale(1);
    -moz-transform: translate(45%, -45%) scale(1);
  }
  50% {
    transform: translate(45%, -45%) scale(1.15);
    -webkit-transform: translate(45%, -45%) scale(1.15);
    -moz-transform: translate(45%, -45%) scale(1.15);
  }
}

#header .hdt-link .util > ul > li.setting > a:hover .util-icon {
  animation: icon-spin 0.6s ease-in-out;
  -webkit-animation: icon-spin 0.6s ease-in-out;
  -moz-animation: icon-spin 0.6s ease-in-out;
}

#header .hdt-link .util > ul > li.alarm > a {
  background: transparent;
}

#header .hdt-link .util > ul > li.alarm > a:hover .util-icon {
  transform-origin: top center;
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  animation: icon-ring 0.6s ease-in-out;
  -webkit-animation: icon-ring 0.6s ease-in-out;
  -moz-animation: icon-ring 0.6s ease-in-out;
}

#header .hdt-link .util > ul > li.alarm > a:hover .alarm-badge--active {
  animation: icon-badge-pulse 0.3s ease-in-out;
  -webkit-animation: icon-badge-pulse 0.3s ease-in-out;
  -moz-animation: icon-badge-pulse 0.3s ease-in-out;
}

#header .hdt-link .util > ul > li.logout > a {
  background: transparent;
}

#header .hdt-link .util > ul > li.logout > a:hover .util-icon {
  animation: icon-exit 0.4s ease-in-out;
  -webkit-animation: icon-exit 0.4s ease-in-out;
  -moz-animation: icon-exit 0.4s ease-in-out;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li > a .txt > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#header .hdt-link .util > ul > li.alarm .util-over-box {
  display: none;
  position: absolute;
  top: 2.5rem;
  right: -1rem;
  width: 20rem;
  background: var(--color-white);
  text-align: left;
  box-shadow: 0 9px 20px 1px var(--color-overlay-30);
}

#header .hdt-link .util > ul > li.alarm .util-over-box:before {
  position: absolute;
  right: 1.25rem;
  top: -0.4rem;
  width: 0;
  height: 0;
  border-bottom: 0.4rem solid var(--color-white);
  border-left: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  content: "";
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont {
  overflow: auto;
  /* 寃???섏젙 */
  height: auto;
  max-height: 21.5rem;
  overflow: auto;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li {
  position: relative;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--color-gray-150);
  background: var(--color-secondary-200);
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li > a {
  display: block;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li > a .img {
  position: relative;
  display: inline-block;
  width: 2.7rem;
  height: 2.7rem;
  margin-right: 0.75rem;
  border: 1px solid #ddd;
  vertical-align: top;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li > a .img.no-profile {
  background: var(--color-secondary-210);
  line-height: 1;
  text-align: center;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li > a .img.no-profile:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  background: url(../img/layout/no_profile.png) no-repeat center/contain;
  content: "";
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li > a .txt {
  display: inline-block;
  width: calc(100% - 4rem);
  vertical-align: top;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li > a .txt > strong {
  color: #222;
  font-size: 0.7rem;
  font-weight: 300;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li > a .txt > span {
  display: block;
  color: var(--color-gray-500);
  font-size: 0.65rem;
  font-weight: 300;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li.no-msg {
  padding: 1rem 0;
  font-size: 0.75rem;
  font-weight: 300;
  text-align: center;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li.no-msg span {
  display: inline-block;
  color: #222;
  vertical-align: middle;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li.check {
  background: var(--color-white);
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont .more {
  display: block;
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont .more > span {
  position: relative;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont .more > span:after {
  font-weight: 900;
  font-family: "Line Awesome Free";
  opacity: 0;
  transform: translateX(0.25rem);
  -webkit-transform: translateX(0.25rem);
  -moz-transform: translateX(0.25rem);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  content: "\f061";
}

#header .hdt-link .util > ul > li.alarm .util-over-box .tit {
  position: relative;
  display: table;
  padding: 0 1.25rem;
  width: 100%;
  height: 3rem;
  border-bottom: 1px solid var(--color-gray-150);
}

#header .hdt-link .util > ul > li.alarm .util-over-box .tit .tit-txt {
  position: relative;
  display: table-cell;
  color: var(--color-black);
  font-size: 0.9rem;
  font-weight: 700;
  vertical-align: middle;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .check-btn {
  position: absolute;
  top: 50%;
  left: 3.5rem;
  color: var(--color-gray-800);
  font-weight: 500;
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  border-radius: 1rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-300);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  vertical-align: middle;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .check-btn:hover {
  background: #f4f4f4;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .close-btn {
  position: absolute;
  top: 50%;
  right: 1rem;
  color: var(--color-gray-600);
  font-size: 1rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
}

#header .hdt-link .util > ul > li.alarm .alarm-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  min-width: 0.9rem;
  height: 0.9rem;
  padding: 0 0.15rem;
  border-radius: 0.45rem;
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transform: translate(45%, -45%);
  -webkit-transform: translate(45%, -45%);
  -moz-transform: translate(45%, -45%);
  z-index: 2;
  pointer-events: none;
}

#header .hdt-link .util > ul > li.alarm .alarm-badge--empty {
  background: var(--color-gray-500);
}

#header .hdt-link .util > ul > li.alarm .alarm-badge--active {
  background: #D22544;
}

/* #header .hdt-link .util > ul > li.alarm > a:hover:before {
  transform-origin: center;
  animation-delay: 0s;
  animation-duration: 5s;
  animation-name: alarmBellRing;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
} */

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > li > a:hover .txt > strong {
  text-decoration: underline;
  text-decoration-color: #9f9b9b;
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont .more:hover > span:after {
  margin-left: 0.25rem;
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
}

#header .hdt-link .util > ul > li.alarm .close-btn:hover {
  transform: translateY(-50%) rotate(360deg);
  -webkit-transform: translateY(-50%) rotate(360deg);
  -moz-transform: translateY(-50%) rotate(360deg);
}

#header .hdt-link .util > ul > li.alarm .util-over-box .cont > ul > .bgY {
  background: var(--color-white) !important;
}


#header .header-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#header .header-wrap .side-wrap {
  position: fixed;
  top: 3rem;
  left: 2rem;
  width: 13rem;
  padding: 1rem;
  z-index: 1;
  background: var(--color-white);
  opacity: 0;
  pointer-events: none;
}

/*-- gnb folding --*/
html.folding #sub_container {
  width: 100%;
}

html.folding #header .header-wrap .side-wrap {
  width: 3rem;
}

html.folding #header .header-wrap .side-wrap .logo {
  width: 10rem;
  height: 3rem;
  background: url(../img/layout/logo.svg) no-repeat center/100%;
}

html.folding #header .header-wrap .side-wrap .gnb-wrap {
  margin-top: 0.85rem;
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li.dep > a:after {
  display: none;
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li > a {
  padding: 0.75rem 1rem 0.85rem 1rem;
  line-height: 1;
  color: var(--color-white);
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li > a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #646675 !important;
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li > a > span {
  font-size: 0;
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li > a > span:before {
  margin-right: 0;
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li > a > span:after {
  bottom: -0.35rem;
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li:last-of-type > a:after {
  content: "";
  position: absolute;
  display: block;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #646675 !important;
  transform: translate(0, 0) rotate(0deg);
  -webkit-transform: translate(0, 0) rotate(0deg);
  -moz-transform: translate(0, 0) rotate(0deg);
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li .depth02 {
  position: absolute;
  top: 0;
  left: 3rem;
  width: 0;
  padding-top: 5.85rem;
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li .depth02:before {
  content: "";
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 200vh;
  background: #3C3D4F;
}

html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li.open .depth02 {
  width: 11rem;
}

#sub_container-member {
  width: 100%;
  height: 100%;
  padding-top: 3rem;
}
#sub_container-member #contents {
  min-height: calc(100vh - 2.7rem);
  padding: 1.5rem;
  background: var(--color-surface-100);
}
#sub_container-member .ht_until {
  padding: 0.25rem 1rem;
  background: #E7E7E7;
}
#sub_container-member .ht_until .location {
  color: #7A7B7D;
  font-size: 0.7rem;
}
#sub_container-member .ht_until .location > * {
  position: relative;
  display: inline-block;
}
#sub_container-member .ht_until .location > * + *:before {
  display: inline-block;
  margin: 0 0.25rem;
  font-family: "Line Awesome Free";
  font-weight: 900;
  content: "\f105";
}
#sub_container-member .ht_until .location > strong {
  color: #5B5B5C;
  font-weight: 700;
}

/* OPEN API 조회*/
#lnb {
  margin-right: 1rem;
  padding-right: 1rem;
}
#lnb li a {
  position: relative;
  display: block;
  font-size: 0.9rem;
  color: var(--color-gray-800);
  font-weight: 600;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  /*?덉갹 icon*/
}
#lnb li a span {
  position: relative;
  z-index: 2;
}
#lnb li a[target=_blank] > span:after {
  display: inline-block;
  margin-left: 0.25rem;
  font-family: "Line Awesome Free";
  content: "\f35d";
}
#lnb li.dep > a:after {
  position: absolute;
  top: 50%;
  right: 0;
  color: #A2A2A2;
  font-family: "Line Awesome Free";
  font-size: 1.2rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  content: "\f106";
}
#lnb .depth01 > ul > li {
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-gray-300);
  /*gnb active*/
}
#lnb .depth01 > ul > li + li {
  margin-top: 0.5rem;
}
#lnb .depth01 > ul > li .depth02 {
  position: relative;
  display: none;
  max-height: 17rem;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  overflow-y: scroll;
}
#lnb .depth01 > ul > li .depth02::-webkit-scrollbar {
  width: 0.15rem;
}
#lnb .depth01 > ul > li .depth02::-webkit-scrollbar-track {
  border-radius: 0.5rem;
  background: #E8E8E8;
}
#lnb .depth01 > ul > li .depth02::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  background: #BFBFBF;
}
#lnb .depth01 > ul > li .depth02:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
}
#lnb .depth01 > ul > li .depth02 li + li {
  margin-top: 0.45rem;
}
#lnb .depth01 > ul > li .depth02 li a {
  color: var(--color-gray-700);
  font-size: 0.8rem;
}
#lnb .depth01 > ul > li.ov > a {
  margin-bottom: 0.5rem;
  color: var(--color-secondary-700);
  font-weight: 700;
}
#lnb .depth01 > ul > li.ov.dep > a:after {
  transform: translateY(-50%) rotate(180deg);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -moz-transform: translateY(-50%) rotate(180deg);
}
#lnb .depth01 > ul > li.open > a:before {
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: #D9D9D9;
  content: "";
}
#lnb .depth01 > ul > li.open .depth02 {
  margin-top: 1rem;
}


/*-- full Menu --*/
.popFullmenu {
  display: none;
  position: fixed;
  left: 0;
  top: 3rem;
  width: 100%;
  height: 100vh;
  z-index: 998;
  background: var(--color-white);
}

#fullMenu {
  position: relative;
  margin: auto;
}

#fullMenu .container {
  position: absolute;
  top: 0;
  left: 50%;
  height: 4rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

#fullMenu > .img {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #656678;
  overflow: hidden;
}

#fullMenu > .img.no-img:before {
  content: "\e9f3";
  font-family: "xeicon";
  font-size: 2rem;
  color: var(--color-white);
  line-height: 1;
  position: absolute;
  top: 0.35rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
}

#fullMenu .nav {
  max-height: calc(100vh - 3rem) !important;
  overflow-x: hidden;
  overflow-y: auto;
}

#fullMenu .nav li {
  width: 100%;
}

#fullMenu .nav li > a[target=_blank] > span:after {
  content: "\e980";
  display: inline-block;
  margin-left: 5px;
  font-family: "xeicon";
}

#fullMenu .nav li .ov > a {
  color: var(--color-gray-800);
}

#fullMenu .nav .depth01 > ul:after {
  content: "";
  display: block;
  clear: both;
}

#fullMenu .nav .depth01 > ul > li {
  position: relative;
  transform: matrix(1, 0, 0, 1, 1, 100);
  -webkit-transform: matrix(1, 0, 0, 1, 1, 100);
  -moz-transform: matrix(1, 0, 0, 1, 1, 100);
  opacity: 0;
}

#fullMenu .nav .depth01 > ul > li:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(69deg, rgba(203, 207, 237, 0.5) 0%, rgba(100, 102, 117, 0.5) 100%) !important;
}

#fullMenu .nav .depth01 > ul > li.dep > a {
  position: relative;
}

#fullMenu .nav .depth01 > ul > li.dep > a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.7rem;
  width: 0.7rem;
  height: 0.1rem;
  border-radius: 0.5rem;
  background: #373C51;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}

#fullMenu .nav .depth01 > ul > li.dep > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.025rem;
  width: 0.1rem;
  height: 0.7rem;
  border-radius: 0.5rem;
  background: #373C51;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
}

#fullMenu .nav .depth01 > ul > li.dep.open > a:before {
  background: #4E5369;
}

#fullMenu .nav .depth01 > ul > li.dep.open > a:after {
  background: #4E5369;
  transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  -moz-transform: translateY(-50%) rotate(90deg);
}

#fullMenu .nav .depth01 > ul > li > a {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 700;
  color: var(--color-gray-800);
  font-size: 0.9rem;
  border-bottom:1px solid var(--color-gray-300);
}

#fullMenu .nav .depth01 > ul > li .depth02 {
  display: none;
}

#fullMenu .nav .depth01 > ul > li .depth02 > ul > li > a {
  display: block;
  padding: 0.55rem 1rem;
  background: var(--color-secondary-200);
  color: var(--color-gray-800);
  font-size: 0.8rem;
  border-bottom: 1px solid var(--color-gray-300);
}

#fullMenu .nav .depth01 > ul > li .depth02 > ul > li > a > span {
  position: relative;
  display: inline-block;
}

#fullMenu .nav .depth01 > ul > li .depth02 > ul > li > a > span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
}

#fullMenu .nav .depth01 > ul > li .depth02 > ul > li.open > a {
  background: var(--color-secondary-200);
}

#fullMenu .nav .depth01 > ul > li .depth02 > ul > li.dep > a {
  position: relative;
}

#fullMenu .nav .depth01 > ul > li .depth02 > ul > li.dep > a:before {
  content: "\e913";
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-family: "xeicon";
  font-size: 0.75rem;
  font-weight: 400;
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
}

#fullMenu .nav .depth01 > ul > li .depth02 > ul > li .depth03 {
  display: none;
  padding: 0.25rem 0;
  background: var(--color-secondary-700);
}

#fullMenu .nav .depth01 > ul > li .depth02 > ul > li .depth03 ul > li > a {
  position: relative;
  display: block;
  padding: 0.25rem 0 0.25rem 1.75rem;
  font-size: 0.75rem;
  color: var(--color-white);
}

#fullMenu .nav .depth01 > ul > li .depth02 > ul > li .depth03 ul > li > a:before {
  content: "";
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  width: 5px;
  height: 1px;
  background: var(--color-white);
}

.fullmenuBtn {
  position: absolute;
  display: none;
  top: 0.5rem;
  left: 1rem;
  width: 32.5px;
  height: 2rem;
  z-index: 1;
  overflow-y: auto;
}

.fullmenuBtn > em {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-0.5px);
  display: inline-block;
  width: calc(100% - 7px);
  height: 2px;
  background: var(--color-gray-800);
  transition: all 0.5s cubic-bezier(0.535, 0, 0, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.535, 0, 0, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.535, 0, 0, 1) 0s;
}

.fullmenuBtn > em:before, .fullmenuBtn > em:after {
  content: "";
  position: absolute;
  border-radius: 0.5rem;
  background: var(--color-gray-800);
  width: 100%;
  height: 2px;
  transition: all 0.5s cubic-bezier(0.535, 0, 0, 1) 0s;
  -webkit-transition: all 0.5s cubic-bezier(0.535, 0, 0, 1) 0s;
  -moz-transition: all 0.5s cubic-bezier(0.535, 0, 0, 1) 0s;
}

.fullmenuBtn > em:before {
  top: -11px;
  left: 0;
}

.fullmenuBtn > em:after {
  bottom: -11px;
  left: 0;
  width: 100%;
}

.fullmenuBtn > em > em {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
}




#fullmenuClose {
  position: absolute;
  top: -2.5rem;
  right: 0;
  transition: all 0s;
}

/*-- full Menu active --*/
.fullOpen .fullmenuBtn > em {
  background: transparent;
}

.fullOpen .fullmenuBtn > em > em:before, .fullOpen .fullmenuBtn > em > em:after {
  width: 0;
}

.fullOpen .fullmenuBtn > em:before, .fullOpen .fullmenuBtn > em:after {
  top: 50%;
  left: 50%;
  background: var(--color-gray-800);
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
}

.fullOpen .fullmenuBtn > em:after {
  width: 100%;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
}

.fullOpen #fullMenu .nav .depth01 > ul > li {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: ease-in-out;
}

/* .fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(2) {
  transition-delay: 0.2s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(3) {
  transition-delay: 0.3s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(4) {
  transition-delay: 0.4s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(5) {
  transition-delay: 0.5s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(5) {
  transition-delay: 0.6s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(6) {
  transition-delay: 0.7s;
} */


.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(2) {
  transition-delay: 0.1s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(3) {
  transition-delay: 0.15s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(4) {
  transition-delay: 0.2s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(5) {
  transition-delay: 0.25s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(5) {
  transition-delay: 0.3s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(6) {
  transition-delay: 0.35s;
}
.fullOpen #fullMenu .nav .depth01 > ul > li:nth-of-type(7) {
  transition-delay: 0.35s;
}

.fullOpen #fullMenu .nav .depth01 > ul > li .depth02 > li.active > a, .fullOpen #fullMenu .nav .depth01 > ul > li .depth02 > li.dep.active > a:after {
  font-weight: 600;
  color: var(--color-white) !important;
}

.fullOpen #fullMenu .nav .depth01 > ul > li .depth02 > li.active > a > span:before {
  width: 100%;
}

.fullOpen #fullMenu .nav .depth01 > ul > li .depth02 > li.dep.active > a:after {
  transform: rotate(180deg);
}

.fullOpen #fullMenu .nav .depth01 > ul > li .depth02 .depth03 > li.active > a {
  color: var(--color-white);
}

.fullOpen #fullMenu .nav .depth01 > ul > li .depth02 .depth03 > li.active > a:before {
  background: var(--color-white);
}

#container {
  min-height: 100vh;
  background: var(--color-surface-100);
}

#sub_container {
  background: var(--color-surface-100);
  padding:4rem 2rem 2rem 2rem;
}

#sub_container #contents .container {
  color: var(--color-gray-800);
  height: 100%;
}

#sub_container #contents .container > section {
  width: 100%;
  height: 100%;
}

/* publish layout.css ??page title */
.page-title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-title-wrap .page-img {
  width: 1.2rem;
  height: 1.2rem;
}
.page-title-wrap .page-img.m-main {
  background: url(/portal/assets/img/layout/user-round-check.png) no-repeat center;
}
.page-title-wrap .page-img.m-0 {
  background: url(/portal/assets/img/layout/user-pen.png) no-repeat center;
}
.page-title-wrap .page-img.m-1 {
  background: url(/portal/assets/img/layout/zap.png) no-repeat center;
}
.page-title-wrap .page-img.m-2 {
  background: url(/portal/assets/img/layout/align-end-horizontal.png) no-repeat center;
}
.page-title-wrap .page-img.m-3 {
  background: url(/portal/assets/img/layout/chart-candlestick.png) no-repeat center;
}
.page-title-wrap .page-img.m-4 {
  background: url(/portal/assets/img/layout/briefcase-business.png) no-repeat center;
}
.page-title-wrap .page-img.m-5 {
  background: url(/portal/assets/img/layout/file-text.png) no-repeat center;
}
.page-title-wrap .page-img.m-6 {
  background: url(/portal/assets/img/layout/messages-square.png) no-repeat center;
}
.page-title-wrap .page-img.m-7 {
  background: url(/portal/assets/img/layout/monitor-cog.png) no-repeat center;
}
.page-title-wrap .page-img.admin-1 {
  background: url(/portal/assets/img/layout/factory.png) no-repeat center;
}
.page-title-wrap .h-tit {
  font-weight: 700;
  color: var(--color-secondary-710);
  font-size: 1.5rem;
}
.page-title-wrap .page-util {
  display: flex;
  margin-left: auto;
  gap: 1em;
  align-items: center;
}
.page-title-wrap .page-util .weather-box {
  padding: 0.4rem 0.5rem;
  background: var(--color-white); 
}
.page-title-wrap .page-util .weather-box li strong {
  font-weight: 800;
}
.page-title-wrap .page-util .weather-box li strong em {
  font-weight: 400;
}
.page-title-wrap .page-util .btn-setting {
  width: 1.7rem;
  height: 1.7rem;
  text-align: center;
  background: var(--color-white) url(/portal/assets/img/main/dashboard-setting.png) no-repeat center;
  border: 1px solid var(--color-secondary-300);
}
.page-title-wrap .breadcrumb ul{
  display: flex;
  gap: 0.4rem;
}
.page-title-wrap .breadcrumb li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size:.75rem;
}
.page-title-wrap .breadcrumb li a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid var(--color-gray-500);
}
.page-title-wrap .breadcrumb li:last-child a {
  font-weight: 700;
  color: var(--color-secondary-700);
}
.page-title-wrap .breadcrumb li:last-child a::after {
  display: none;
}
.weather-box {
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--color-secondary-300);
  background: var(--color-white);
  font-size: .7rem;
}

.weather-box ul {
  display: flex;
  gap: 0.5em;
}

.weather-box > ul > li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.weather-box > ul > li [class^=weather] {
  display: inline-block;
  width: 0.9rem;
  height: 0.9rem;
}

.weather-box > ul > li .weather1 {
  background: url(/portal/assets/img/weather/w-brokencloud_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .weather2 {
  background: url(/portal/assets/img/weather/w-cloudy_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .weather3 {
  background: url(/portal/assets/img/weather/w-manycloud_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .weather4 {
  background: url(/portal/assets/img/weather/w-mist_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .weather5 {
  background: url(/portal/assets/img/weather/w-rain_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .weather6 {
  background: url(/portal/assets/img/weather/w-snow_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .weather7 {
  background: url(/portal/assets/img/weather/w-sun_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .weather8 {
  background: url(/portal/assets/img/weather/w-sunrain_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .weather9 {
  background: url(/portal/assets/img/weather/w-thunder_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .weather10 {
  background: url(/portal/assets/img/weather/w-wind_icon.png) no-repeat center/100%;
}
.weather-box > ul > li .water-icon {
  background: url(/portal/assets/img/weather/water_icon.png) no-repeat center/contain;
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
}

.weather-box > ul > li .txt {
  color: #444;
  font-size: 0.7rem;
  font-weight: 800;
}

.weather-box > ul > li .txt em {
  color: #262626;
  font-size: 0.7rem;
  font-weight: 400;
  margin-right: 0.25rem;
}

/* logout btn */
.m-logout > a {
  height: 1.7rem;
  width: 1.7rem;
  display: block;
  text-align: center;
}

.m-logout a:before {
  content: "\e972";
  font-family: "xeicon";
  font-size: 1rem;
  line-height: 1.7rem;
}


/* responsive */

/* 1600px */
@media (max-width: 1600px) {
  /*-- header --*/
  #header .hdt-link {
    display: none;
  }

  html.folding #header .header-wrap,
  #header .header-wrap .side-wrap {
    width: 100%;display:flex;align-items:center;justify-content:space-between;
  }

  /* 異붽??섏젙 0808 */
  html.folding #header .header-wrap .side-wrap, #header .header-wrap .side-wrap {
    opacity: 1;
    pointer-events: auto;
  }

  /* 異붽??섏젙 */
  #header .header-wrap .side-wrap .gnb-wrap .dep-tit {
    display: none;
  }

  html.folding #header .header-wrap,
  #header .header-wrap {
    position: fixed;
    top: 0;
  }

  html.folding #header .header-wrap .ht_tit,
  #header .header-wrap .ht_tit {
    position: absolute;
    display: block;
    top: 0.65rem;
    left: 50%;
    color: var(--color-gray-800);
    font-size: 1.1rem;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    z-index: 12;
  }

  html.folding #header .header-wrap .side-wrap,
  #header .header-wrap .side-wrap {
    width: 100%;
    height: 3rem;
    border-bottom: 1px solid var(--color-gray-300);
    top: 0;
    left: 0;
    border-radius: 0;
    background: var(--color-white);
  }

  html.folding #header .header-wrap .side-wrap .logo,
  #header .header-wrap .side-wrap .logo {
    position: absolute;
    left: 50%;
    top:0;
    width: 10rem;
    height: 3rem;
    background: url(../img/layout/logo.svg) no-repeat center/100%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
  }

  html.folding #header .header-wrap .side-wrap .member-info,
  #header .header-wrap .side-wrap .member-info {
    display: none;
  }

  html.folding #header .header-wrap .side-wrap .gnb-wrap #gnb,
  #header .header-wrap .side-wrap .gnb-wrap #gnb {
    display: none;
  }

  /*-- full Menu --*/
  .fullmenuBtn {
    display: block;
  }

  /*-- sub layout --*/
  html.folding #sub_container,
  #sub_container {
    width: 100%;
    margin-left: 0;
  }
  #sub_container{
    padding:4rem 1rem 2rem 1rem;
  }
}

@media (min-width: 769px) {
  /*--?뵺 header ?뵺--*/
  #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li:not(.open) > a:hover:before {
    width: 100%;
  }

  #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li .depth02 li a:hover {
    color: var(--color-secondary-700);
    font-weight: 600;
  }

  #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li .depth02 li a:hover span:before {
    width: 100%;
    background: var(--color-secondary-700);
  }

  #header .header-wrap .side-wrap .gnb-wrap #gnb .depth01 > ul > li .depth02 > ul > li > a:hover:before {
    background: var(--color-primary-700);
  }

  #header .hdt-link .hd-menu > ul > li button:hover {
    color: #03629F;
    font-weight: 700;
  }

  #header .hdt-link .hd-menu > ul > li > button:hover span:before {
    width: calc(100% + 2rem);
    background: var(--color-primary-700);
  }
}

/* 768px */
@media (max-width: 768px) {
  #sub_container-member #contents {
    padding:0;
  }
  .fullmenuBtn {
    top: 0.65rem;
    width: 28px;
    height: 1.75rem;
  }

  .fullmenuBtn > em:before {
    top: -9px;
  }

  .fullmenuBtn > em:after {
    bottom: -9px;
  }

  .fullmenuBtn > em > em:before {
    bottom: -3px;
  }

  .fullmenuBtn > em > em:after {
    top: -3px;
  }  
  .weather-box {
    display: none;
  }
  /*상단 페이지 타이틀*/
  .page-title-wrap .h-tit{
    margin-bottom:.5rem;
    line-height: 1.2;
  }
  .page-title-wrap .breadcrumb ul{
    font-size:.7rem;
  }
}
/* 480px */
