@charset "UTF-8";
/*
XET CSS v2.0.7 2025-08-05 for supported in all modern browsers
By xetemplate(https://xetemplate.com)
*/
.push-nav,
body.push-body {
  transition: var(--xet-theme-transition-all);
}

.push-nav {
  z-index: 98;
  position: fixed;
  width: 100%;
  height: calc(100%);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: var(--xet-theme-transition-all);
  /* Position */
}
.push-nav.push-menu-top {
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
.push-nav.push-menu-bottom {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.push-nav.push-menu-left {
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
.push-nav.push-menu-right {
  top: 0;
  right: 0;
  transform: translateX(100%);
}
.push-nav .push-nav__body {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.push-nav .push-nav__ul {
  margin-top: 70px;
  padding: 1rem 4rem;
  text-align: right;
}
.push-nav .push-nav__ul > li {
  display: block;
  padding: 1rem 0;
  opacity: 0;
  transition: var(--xet-theme-transition-all);
}
.push-nav .push-nav__ul > li > a {
  font-size: 1.25rem;
  font-weight: 800;
}
.push-nav .push-nav__ul > li > ul {
  margin-top: 1rem;
}
.push-nav .push-nav__ul > li > ul > li > a {
  font-size: 1.125rem;
}
.push-nav .push-nav__ul > li > ul > li + li {
  margin-top: 1rem;
}
.push-nav .push-nav__ul a.is-selected {
  font-weight: 800;
  color: var(--xet-theme-color);
}

body.push-body {
  left: 0;
  position: relative;
}
body.push-body-toright {
  left: 100% !important;
}
body.push-body-toleft {
  left: -100% !important;
}

body.push-active {
  overflow: hidden;
  touch-action: none;
}
body.push-active .push-nav {
  opacity: 1;
  visibility: visible;
  border-radius: 0 0 0 50%;
  /* 메뉴 오픈시 */
}
body.push-active .push-nav.push-menu-top, body.push-active .push-nav.push-menu-bottom {
  transform: translateY(0);
}
body.push-active .push-nav.push-menu-left {
  transform: translateX(0);
}
body.push-active .push-nav.push-menu-right {
  transform: translateX(0);
  border-radius: 0;
}
body.push-active .push-nav .push-nav__ul > li {
  opacity: 1;
}

.push-nav-back {
  z-index: 97;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .push-nav {
    width: 320px;
  }
}