body {
  background: rgba(252, 253, 255, 1);
}

:root {
  --sidebar-width: 265px;
  --header-height: 72px;
  --chat--window--width: 500px !important;
	--chat--window--height: 700px !important;
  --chat--color-primary: #194783 !important;
  --chat--header--background: #f2f4f8 !important;
  --chat--color-primary-shade-50: #194783 !important;
  --chat--color-primary-shade-100: #194783 !important;
  --chat--color-secondary: #194783 !important;
  --chat--header--color: #f2f4f8;
}

.nau-template .nav {
  height: 100vh;
  background-color: #fff;
  border-right: 1px solid var(--color--border-default);
  width: var(--sidebar-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: all 0.6s ease;
}
.nau-template .nav .sidebar-menu {
  overflow: auto;
  max-height: calc(100vh - var(--header-height));
}
.nau-template .nav .logo {
  text-align: center;
  margin: 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--color--border-default);
}
.nau-template .nav .logo img {
  display: flex;
  max-height: 75%;
}
.nau-template header {
  height: var(--header-height);
  border-bottom: 1px solid var(--color--border-default);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  padding-left: var(--sidebar-width);
  width: 100%;
  z-index: 99;
  transition: all 0.6s ease;
}

.nau-template header.no-nav {
  padding-left: 0;
}

.nau-template main {
  transition: all 0.6s ease;
  padding-left: var(--sidebar-width);
  padding-top: var(--header-height);
}

.nau-template main.no-nav {
  padding-left: 0;
}

.nau-template main.center {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - var(--header-height));
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.5px;

  color: #7c84a3;
}

footer.fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 24px;
}

.n8n-chat {
  width: calc(100vw - var(--sidebar-width)) !important;
  height: calc(100vh - var(--header-height)) !important;
  position: fixed;
  right: 0;

  ul li {
    padding-left: 8px
  }

  ul li::marker {
    content: "-"
  }
}