/**
 * Isolated flyout nav styles. Loads after header-modern.css.
 * Does not edit header-modern.css / style_window.css.
 */
body.ww-drawer-open {
  overflow: hidden !important;
}

body.ww-site-modern .ww-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100048;
  background: rgba(20, 18, 24, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

body.ww-site-modern .ww-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.ww-site-modern .slide-menu-wrapper {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  left: auto !important;
  bottom: 0 !important;
  width: min(400px, 100vw) !important;
  max-width: 100% !important;
  height: 100% !important;
  height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  display: flex !important;
  flex-direction: column;
  background: #fff !important;
  border: 0 !important;
  border-left: 1px solid #e7e4ea !important;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.12) !important;
  z-index: 100050 !important;
  overflow: hidden !important;
  box-sizing: border-box;
  text-align: left !important;
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s;
}

body.ww-site-modern .slide-menu-wrapper.is-open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
}

body.ww-site-modern .slide-menu-wrapper .ww-drawer {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 18px 16px 28px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

body.ww-site-modern .ww-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

body.ww-site-modern .ww-drawer__user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

body.ww-site-modern .ww-drawer__avatar-link {
  flex: 0 0 auto;
  line-height: 0;
}

body.ww-site-modern .ww-drawer__avatar,
body.ww-site-modern .slide-menu-wrapper .ww-drawer__avatar.photo {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 1px solid #e7e4ea !important;
  display: block;
  background: #111;
}

body.ww-site-modern .ww-drawer__user-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

body.ww-site-modern .ww-drawer__name {
  font-family: 'Roboto', 'Malgun Gothic', Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--ww-h-ink, #262525) !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
  transition: color 0.15s ease;
}

body.ww-site-modern .ww-drawer__name:hover {
  color: var(--ww-h-accent, #874390) !important;
}

body.ww-site-modern .ww-drawer__plan {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  background: #f3f4f6;
  color: #4b5563 !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  line-height: 1.4 !important;
  text-decoration: none !important;
}

body.ww-site-modern .ww-drawer__plan--free {
  background: #dcfce7;
  color: #166534 !important;
}

body.ww-site-modern .ww-drawer__close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

body.ww-site-modern .ww-drawer__close:hover,
body.ww-site-modern .ww-drawer__close:focus {
  background: var(--ww-h-accent-soft, rgba(135, 67, 144, 0.1));
  border-color: var(--ww-h-accent, #874390);
  color: var(--ww-h-accent, #874390);
  outline: none;
}

body.ww-site-modern .ww-drawer__actions {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
}

body.ww-site-modern .slide-menu-wrapper .ww-drawer__project,
body.ww-site-modern .slide-menu-wrapper .mobile-menu-create-project {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 6px !important;
  margin: 0 !important;
  padding: 8px 16px !important;
  border-radius: 999px !important;
  border: 1.5px solid var(--ww-h-accent, #874390) !important;
  background: #fff !important;
  color: var(--ww-h-accent, #874390) !important;
  font-family: 'Poppins', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  line-height: 1.2 !important;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

body.ww-site-modern .slide-menu-wrapper .ww-drawer__project:hover,
body.ww-site-modern .slide-menu-wrapper .mobile-menu-create-project:hover {
  background: var(--ww-h-accent, #874390) !important;
  color: #fff !important;
  border-color: var(--ww-h-accent, #874390) !important;
}

body.ww-site-modern .slide-menu-wrapper .mobile-menu-nav,
body.ww-site-modern .slide-menu-wrapper .mobile-menu-nav nav,
body.ww-site-modern .slide-menu-wrapper .mobile-menu-nav ul {
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  text-align: left !important;
}

body.ww-site-modern .slide-menu-wrapper .mobile-menu-nav ul li {
  display: block !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 0 !important;
}

body.ww-site-modern .slide-menu-wrapper .mobile-menu-nav li.ww-mobile-nav__heading {
  padding: 18px 8px 8px !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ww-h-accent, #874390) !important;
  border-bottom: 0 !important;
}

body.ww-site-modern .slide-menu-wrapper .mobile-menu-nav li.ww-mobile-nav__heading:first-child {
  padding-top: 4px !important;
}

body.ww-site-modern .slide-menu-wrapper .ww-drawer__link {
  display: flex !important;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0 0 2px;
  padding: 10px 10px 10px 8px !important;
  border-radius: 14px;
  background: transparent;
  color: var(--ww-h-ink, #262525) !important;
  font-family: 'Roboto', 'Malgun Gothic', Arial, sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  box-sizing: border-box;
  transition: color 0.15s ease, background 0.15s ease;
}

body.ww-site-modern .slide-menu-wrapper .ww-drawer__link:hover,
body.ww-site-modern .slide-menu-wrapper .ww-drawer__link:focus {
  background: var(--ww-h-accent-soft, rgba(135, 67, 144, 0.1)) !important;
  color: var(--ww-h-accent, #874390) !important;
  outline: none;
}

body.ww-site-modern .slide-menu-wrapper .ww-drawer__link.is-active {
  background: var(--ww-h-accent-soft, rgba(135, 67, 144, 0.1)) !important;
  color: var(--ww-h-accent, #874390) !important;
}

body.ww-site-modern .ww-drawer__label {
  flex: 1 1 auto;
  min-width: 0;
}

body.ww-site-modern .ww-drawer__link::before {
  content: '';
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: var(--ww-h-wash, #f5f3f7);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  transition: background-color 0.15s ease;
}

body.ww-site-modern .ww-drawer__link:hover::before,
body.ww-site-modern .ww-drawer__link:focus::before,
body.ww-site-modern .ww-drawer__link.is-active::before {
  background-color: rgba(135, 67, 144, 0.14);
}

body.ww-site-modern .ww-drawer__link::after {
  content: '';
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 2px solid var(--ww-h-muted, #5f5b63);
  border-bottom: 2px solid var(--ww-h-muted, #5f5b63);
  transform: rotate(-45deg);
  transition: border-color 0.15s ease;
}

body.ww-site-modern .ww-drawer__link:hover::after,
body.ww-site-modern .ww-drawer__link:focus::after {
  border-right-color: var(--ww-h-accent, #874390);
  border-bottom-color: var(--ww-h-accent, #874390);
}

body.ww-site-modern .ww-drawer__link.is-active::after {
  width: 12px;
  height: 7px;
  border-right: 0;
  border-bottom: 2px solid var(--ww-h-accent, #874390);
  border-left: 2px solid var(--ww-h-accent, #874390);
  border-top: 0;
  transform: rotate(-45deg);
  margin-bottom: 4px;
}

body.ww-site-modern .ww-drawer__link[data-ww-icon="windows"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='4' width='18' height='14' rx='2'/%3E%3Cpath d='M3 8h18M8 21h8M12 18v3'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="popups"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M3 9l1.5-5h15L21 9M3 9h18v11H3zM3 9l2 3h14l2-3M10 20v-6h4v6'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="interiors"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 13v6h16v-6M4 13a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2M2 19h20M8 11V8a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v3'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="packaging"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M21 8l-9-5-9 5v8l9 5 9-5zM3 8l9 5 9-5M12 13v8'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="archives"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='5' rx='1'/%3E%3Cpath d='M5 8v12h14V8M10 12h4'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="ecommerce"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M6 6h15l-1.5 9h-12zM6 6L5 3H2'/%3E%3Ccircle cx='9' cy='20' r='1'/%3E%3Ccircle cx='18' cy='20' r='1'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="products"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpath d='M3.3 7L12 12l8.7-5M12 22V12'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="email"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='M3 7l9 7 9-7'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="arvr"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M2 12s3-7 10-7 10 7 10 7-3 7-10 7-10-7-10-7z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="instagram"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='.8' fill='%23111111' stroke='none'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="facebook"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M14 9h3V6h-3c-2.2 0-4 1.8-4 4v2H8v3h2v7h3v-7h3l1-3h-4V10c0-.6.4-1 1-1z'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="youtube"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='2' y='6' width='20' height='12' rx='3'/%3E%3Cpath d='M10 9.5v5l5-2.5z'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="events"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M8 3v4M16 3v4M3 10h18'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="members"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M16 21v-2a4 4 0 0 0-4-4H6a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='9' cy='7' r='4'/%3E%3Cpath d='M22 21v-2a4 4 0 0 0-3-3.87M16 3.13a4 4 0 0 1 0 7.75'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="specialists"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l2.9 6.9L22 10l-5 4.4L18.2 22 12 18.3 5.8 22 7 14.4 2 10l7.1-1.1z'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="schools"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M22 10L12 5 2 10l10 5 10-5zM6 12v5c3 2 9 2 12 0v-5'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="channels"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M4 11a9 9 0 0 1 9 9M4 4a16 16 0 0 1 16 16'/%3E%3Ccircle cx='5' cy='19' r='1'/%3E%3C/svg%3E");
}
body.ww-site-modern .ww-drawer__link[data-ww-icon="logout"]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24'%3E%3Cpath d='M9 21H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h4M16 17l5-5-5-5M21 12H9'/%3E%3C/svg%3E");
}

body.ww-site-modern .slide-menu-show {
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 1260px) {
  body.ww-site-modern .mobile-menu,
  body.ww-site-modern .ww-header-wrap {
    overflow: visible !important;
  }
}

@media (max-width: 767px) {
  body.ww-site-modern .slide-menu-wrapper {
    width: min(100vw, 400px) !important;
  }
}

@media screen and (min-width: 1261px) {
  body.ww-site-modern .slide-menu-wrapper,
  body.ww-site-modern .ww-drawer-backdrop {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}
