@charset "UTF-8";
/*
* for supported in all modern browsers
* Copyright inpleworks, Co.
* https://xetemplate.com
*/
/*
XET CSS v2.0.4 2024-08-02 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: 9999;
  position: fixed;
  width: 100%;
  height: calc(100%);
  overflow: hidden;
  opacity: 1;
  visibility: hidden;
  background: #181818;
  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 {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

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;
  /* 메뉴 오픈시 */
}
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);
}

.push-nav-back {
  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(10px);
  backdrop-filter: blur(10px);
}

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