@charset "UTF-8";
/*
* for supported in all modern browsers
* Copyright inpleworks, Co.
* https://xetemplate.com
*/
/* * for supported in all modern browsers * Copyright inpleworks, Co. * https://xetemplate.com */
.push-nav, #js-layout-header, #js-layout-body {
  transition: transform 0.6s cubic-bezier(0.75, 0, 0.175, 1), visibility 0.6s cubic-bezier(0.75, 0, 0.175, 1);
}
.push-nav {
  z-index: 9999;
  position: fixed;
  width: 80%;
  max-width: 400px;
  height: calc(100%);
  overflow: hidden;
  opacity: 1;
  visibility: hidden;
  background-color: var(--xet-theme-content-bg-color);
}
.push-nav a {
  color: var(--xet-theme-text-strong-color);
}
.push-nav.push-top {
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
.push-nav.push-bottom {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.push-nav.push-left {
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
.push-nav.push-right {
  top: 0;
  right: 0;
  transform: translateX(100%);
}
.push-nav .push-nav__body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body.push-body {
  overflow-x: hidden;
}
body.push-body-toright #js-layout-header, body.push-body-toright #js-layout-body {
  transform: translateX(80%);
}
body.push-active {
  overflow: hidden;
  touch-action: none;
}
body.push-active .push-nav {
  opacity: 1;
  visibility: visible;
  /* 메뉴 오픈시 */
}
body.push-active .push-nav.push-top, body.push-active .push-nav.push-bottom {
  transform: translateY(0);
}
body.push-active .push-nav.push-left, body.push-active .push-nav.push-right {
  transform: translateX(0);
}
.push-nav-backdrop {
  z-index: 9998;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.push-nav .push-nav__list {
  height: calc(100dvh - 120px);
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.push-nav .push-nav__list ul {
  margin: 0;
  padding: 1rem 2rem;
  list-style: none;
}
.push-nav .push-nav__list ul li {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(100%);
  animation: menuFadeUp 0.3s ease forwards;
  overflow: hidden;
}
.push-nav .push-nav__list ul li + li {
  border-top: 1px solid var(--xet-theme-border-color);
}
.push-nav .push-nav__list ul li a {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 3rem;
  height: 3rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s linear, background 0.2s linear;
}
.push-nav .push-nav__list ul li > .submenu-indicator {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 3rem;
  font-weight: normal;
  color: var(--xet-theme-text-base-color);
  transition: transform 0.1s linear;
}
.push-nav .push-nav__list ul li ul.submenu {
  display: none;
  padding: 0 0 0.5rem;
  transition: all 0.2s linear;
}
.push-nav .push-nav__list ul li ul.submenu > li {
  padding-left: 1rem;
  border: 0;
}
.push-nav .push-nav__list ul li ul.submenu > li a {
  position: relative;
  height: 2.5rem;
  font-weight: normal;
}
.push-nav .push-nav__list ul li ul.submenu > li > .submenu-indicator {
  height: 2.5rem;
}
.push-nav .push-nav__list ul li ul.submenu > li ul.submenu {
  padding: 0;
}
.push-nav .push-nav__list ul li a.is-active {
  font-weight: 700;
  color: var(--xet-theme-color) !important;
}
.push-nav .push-nav__list ul li.open > a {
  font-weight: 700;
  color: var(--xet-theme-color) !important;
}
.push-nav .push-nav__list ul li.open > ul.submenu {
  display: block;
}
.push-nav .push-nav__list ul li.open > .submenu-indicator {
  transform: rotate(180deg);
}
@keyframes menuFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
.push-nav .push-nav__list .ink {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255, 0, 255, 0.3);
  pointer-events: none;
}
.push-nav .push-nav__list .ink.animate {
  animation: ink-ripple 0.5s ease-out;
}
@keyframes ink-ripple {
  to {
    transform: scale(2.5);
    opacity: 0;
  }
}
body.color_scheme_dark .push-nav .push-nav__list ul li + li {
  border-color: var(--xet-theme-dark-border-color);
}
body.color_scheme_dark .push-nav .push-nav__list ul li a .submenu-indicator {
  color: var(--xet-theme-dark-text-base-color);
}
body.color_scheme_dark .push-nav .push-nav__list .ink {
  background: rgba(255, 255, 255, 0.2);
}
/*# sourceMappingURL=c01e04edeb4dfa4f06611f1e6f017a09b34939fc.push-nav.scss.map */
