@charset "UTF-8";
/*
* for supported in all modern browsers
* Copyright inpleworks, Co.
* https://xetemplate.com
*/
.push-nav,
body.push-body {
  transition: var(--transition-all);
}

.xet-layout .push-nav {
  z-index: 999999;
  position: fixed;
  width: 100%;
  max-width: 24rem;
  height: calc(100%);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  transition: var(--transition-all);
  box-shadow: var(--box-shadow);
  /* Position */
}
.xet-layout .push-nav.menu-top {
  top: 0;
  left: 0;
  transform: translateY(-100%);
}
.xet-layout .push-nav.menu-bottom {
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
.xet-layout .push-nav.menu-left {
  top: 0;
  left: 0;
  transform: translateX(-100%);
}
.xet-layout .push-nav.menu-right {
  top: 0;
  left: 0;
  transform: translateX(100%);
}
.xet-layout .push-nav .push-nav__body {
  height: 100%;
}

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;
}

.push-nav.push-active {
  opacity: 1;
  visibility: visible;
  /* 메뉴 오픈시 */
}
.push-nav.push-active.menu-top, .push-nav.push-active.menu-bottom {
  transform: translateY(0);
}
.push-nav.push-active.menu-left {
  transform: translateX(0);
}
.push-nav.push-active.menu-right {
  transform: translateX(0);
}

.push-nav-back {
  z-index: 99999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
}