@charset "UTF-8";
/*
* Copyright inpleworks, Co.
* https://xetemplate.com
* include/header/css/header.scss
*/
/* header
----------------------------------------------------------------------------*/
.xet-layout__header {
  z-index: 100;
  height: 60px;
  /* 사이즈 설정 */
  /* 로고 */
  /* 로그인 버튼 */
  /* GNB 메뉴 */
}
.xet-layout__header .layout__header__wrp {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0%);
  transition: transform 0.2s linear, background-color 0.1s linear;
}
.xet-layout__header .layout__header__wrp.is-up {
  transform: translateY(-140%);
}
.xet-layout__header .layout__header__wrp__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.xet-layout__header .layout__header__wrp__container .layout__header__wrp__container__left {
  width: 80px;
}
.xet-layout__header .layout__header__wrp__container .layout__header__wrp__container__right {
  width: 80px;
}
.xet-layout__header .layout__header__wrp__container .logo-wrp {
  width: 180px;
}
.xet-layout__header .logo-wrp a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  font-size: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("../../../../layouts/xetemplate_v5_demo/img/xetemplate.svg");
}
.xet-layout__header ul.account {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  list-style: none;
  margin: 0;
  padding: 0;
}
.xet-layout__header ul.account > li .bubble {
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%, 100%);
  text-align: center;
  display: none;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 8px 16px;
  font-size: 12px;
  color: #fff;
  background-color: var(--text-strongColor);
  white-space: pre;
  line-height: 1.25;
  border-radius: 20px;
}
.xet-layout__header ul.account > li .bubble.hide {
  opacity: 0;
  visibility: hidden;
}
.xet-layout__header ul.account > li .bubble::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translate(-50%, -100%);
  border: 5px solid transparent;
  border-bottom-color: var(--text-strongColor);
}
.xet-layout__header ul.account > li .bubble > a {
  margin: 0 4px;
  color: inherit !important;
}
.xet-layout__header ul.account > li:hover .bubble.hide {
  opacity: 1;
  visibility: visible;
  z-index: 3;
}
.xet-layout__header ul.account > li > a, .xet-layout__header ul.account > li > button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  vertical-align: top;
  border: 0;
  margin: 0;
  padding: 0 10px;
  border-radius: 20px;
  background: none;
}
.xet-layout__header ul.account > li > a .profile-image, .xet-layout__header ul.account > li > button .profile-image {
  width: 18px;
  height: 18px;
  overflow: hidden;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.xet-layout__header ul.account > li > a > svg, .xet-layout__header ul.account > li > button > svg {
  fill: var(--text-strongColor);
}
.xet-layout__header ul.account > li > a.download, .xet-layout__header ul.account > li > a.cart {
  display: none;
}
.xet-layout__header ul.account > li > button.login {
  display: none;
}
.xet-layout__header ul.account > li > a.m-login {
  display: flex;
}
.xet-layout__header ul.account > li .member-info {
  display: none;
}
.xet-layout__header ul.account > li .m-member-info {
  display: flex;
}
.xet-layout__header ul.account > li.home {
  display: none;
}
.xet-layout__header .gnb-wrp {
  display: none;
  background-color: #f0f0f0;
  border-top: 0 solid var(--border-color);
  border-bottom: 0 solid var(--border-color);
  /* 2차 메뉴 */
}
.xet-layout__header .gnb-wrp .gnb {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-strongColor);
}
.xet-layout__header .gnb-wrp .gnb > li {
  position: relative;
  margin: 0;
  padding: 0 15px;
  min-width: 100px;
}
.xet-layout__header .gnb-wrp .gnb > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  height: 60px;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
  transition: all 0.2s ease-in;
}
.xet-layout__header .gnb-wrp .gnb > li.is-selected > a {
  font-weight: 700;
}
.xet-layout__header .gnb-wrp .gnb > li.is-selected::after {
  display: none;
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: var(--theme-color);
}
.xet-layout__header .gnb-wrp .gnb-sub {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: -1px;
  text-align: center;
  background: #fff;
  border-top: 0.5px solid var(--border-color);
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container {
  position: relative;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-left: 0 solid var(--border-color);
  border-right: 0 solid var(--border-color);
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul {
  flex: 1;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 40px 0 45px;
  transition: background-color 0.1s ease-in;
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul:hover {
  background-color: #fff;
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul > li > a {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-strongColor);
  margin-bottom: 26px;
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul > li.is-selected > a {
  font-weight: 700;
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul ul > li {
  display: block;
  height: auto;
  margin: 0;
  padding: 0 10px;
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul ul > li a {
  display: block;
  color: var(--text-strongColor);
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul ul > li a:hover {
  text-decoration: underline;
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul ul > li.is-selected a {
  text-decoration: underline;
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul ul li + li {
  margin-top: 16px;
}
.xet-layout__header .gnb-wrp .gnb-sub > .gnb-sub__container > ul + ul {
  border-left: 0.5px solid var(--border-color);
}
/** 메뉴에 마우스 오버시 */
.xet-layout__header.hovered {
  /* show */
}
.xet-layout__header.hovered .gnb-sub {
  opacity: 1;
  visibility: visible;
  transition: all 0.1s linear;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.2);
}
/* member act 실행시 */
.xet-layout.member-act .xet-layout__header .xet-btn.back {
  width: 40px;
  padding: 0;
}
.xet-layout.member-act .xet-layout__header .logo-wrp {
  justify-content: center !important;
}
.xet-layout.member-act .xet-layout__header .logo-wrp a {
  background-image: url("../../../../layouts/xetemplate_v5_demo/img/xetemplate.svg");
}
/* 스크롤 다운 시 헤더 */
.xet-layout__header .layout__header__wrp.is-up {
  background-color: #fff !important;
}
.xet-layout__header .layout__header__wrp.is-down {
  background-color: #fff !important;
  /* 로고 */
  /* 로그인 버튼 */
  /* GNB 메뉴 */
}
.xet-layout__header .layout__header__wrp.is-down .logo-wrp a {
  background-image: url("../../../../layouts/xetemplate_v5_demo/img/xetemplate.svg") !important;
}
.xet-layout__header .layout__header__wrp.is-down ul.account > li > a > svg, .xet-layout__header .layout__header__wrp.is-down ul.account > li > button > svg {
  fill: var(--text-strongColor);
}
.xet-layout__header .layout__header__wrp.is-down .gnb-wrp .gnb {
  color: var(--text-strongColor);
}
/* 모바일 메뉴 오픈 시 */
body.push-active .xet-layout__header .layout__header__wrp {
  /* 로고 */
  /* 로그인 버튼 */
  /* GNB 메뉴 */
}
body.push-active .xet-layout__header .layout__header__wrp:not(.is-down) {
  background-color: #fff;
}
body.push-active .xet-layout__header .layout__header__wrp .logo-wrp a {
  background-image: url("../../../../layouts/xetemplate_v5_demo/img/xetemplate.svg");
}
body.push-active .xet-layout__header .layout__header__wrp ul.account > li > a > svg, body.push-active .xet-layout__header .layout__header__wrp ul.account > li > button > svg {
  fill: var(--text-strongColor);
}
body.push-active .xet-layout__header .layout__header__wrp .gnb-wrp .gnb {
  color: var(--text-strongColor);
}
/* 메인페이지 일때 */
body.main-page .xet-layout__header {
  height: auto;
  /* 로고 */
  /* 로그인 버튼 */
  /* GNB 메뉴 */
}
body.main-page .xet-layout__header .layout__header__wrp {
  background-color: transparent;
}
body.main-page .xet-layout__header .logo-wrp a {
  background-image: url("../../../../layouts/xetemplate_v5_demo/img/xetemplate-w.svg");
}
body.main-page .xet-layout__header ul.account > li > a > svg, body.main-page .xet-layout__header ul.account > li > button > svg {
  fill: #fff;
}
body.main-page .xet-layout__header .gnb-wrp .gnb {
  color: #fff;
}
/* 회원 메뉴 */
.xet-member-menu > li {
  padding: 0 10px;
  display: flex;
  align-items: center;
  flex-basis: 100%;
  min-height: 30px;
}
.xet-member-menu > li.nickname {
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}
.xet-member-menu > li a {
  flex: 1;
  display: block;
}
@media (min-width: 992px) {
  /* member act 실행시 */
  .xet-layout__header {
    height: 120px;
    /* 사이즈 설정 */
    /* 로고 */
    /* 드롭다운 메뉴 */
    /* 로그인 버튼 */
  }
  .xet-layout__header .layout__header__wrp__container .layout__header__wrp__container__left {
    display: none;
  }
  .xet-layout__header .logo-wrp {
    justify-content: flex-start;
  }
  .xet-layout__header .logo-wrp > a {
    max-width: 200px;
  }
  .xet-layout__header .gnb-wrp {
    display: flex;
    justify-content: center;
  }
  .xet-layout__header ul.account > li .bubble {
    display: flex;
  }
  .xet-layout__header ul.account > li > a, .xet-layout__header ul.account > li > button {
    min-width: 60px;
  }
  .xet-layout__header ul.account > li > a.download, .xet-layout__header ul.account > li > a.cart {
    display: flex;
  }
  .xet-layout__header ul.account > li > button.login {
    display: flex;
  }
  .xet-layout__header ul.account > li > a.m-login {
    display: none;
  }
  .xet-layout__header ul.account > li .member-info {
    display: flex;
  }
  .xet-layout__header ul.account > li .m-member-info {
    display: none;
  }
  .xet-layout__header ul.account > li.home {
    display: block;
  }
  .xet-layout__header.act .xet-backBtnWrp {
    flex: 2;
  }
}
@media (min-width: 1200px) {
  .xet-layout__header {
    /* 사이즈 설정 */
    /* 로그인 버튼 */
  }
  .xet-layout__header ul.account > li .bubble {
    bottom: -13px;
  }
}
/*# sourceMappingURL=f920c2f3932cabb435aae2513cf39088f00cc948.header.scss.map */
