@charset "UTF-8";
/* NexiGrid – _reset.scss */
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  box-shadow: none;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: transparent;
  color: #000;
}

*:focus:not(:focus-visible) {
  outline: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--np-color-primary);
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6, p {
  overflow-wrap: break-word;
}

img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  padding: 0;
  cursor: pointer;
}

ul, ol {
  list-style: none;
  list-style-position: outside;
}

ul, ol {
  padding-left: 1.25rem;
}

ul ul, ol ol {
  padding-left: 1.25rem;
}

.ng-label {
  font-family: var(--ng-font-base);
  font-size: 1rem;
  line-height: 1.4;
  color: currentColor;
  font-weight: 500;
}
.ng-label.display {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
}
.ng-label.small {
  font-size: 0.8rem;
  opacity: 0.8;
}
.ng-label.ghost {
  font-size: 0.9rem;
  color: var(--ng-color-text-muted);
  opacity: 0.5;
}

:root {
  --ng-color-primary: rgb(40, 42, 60);
  --ng-color-primary-dark: rgb(26, 27, 38);
  --ng-color-primary-middle: rgb(69, 73, 107);
  --ng-color-primary-light: rgb(100, 99, 119);
  --ng-color-text: rgb(242, 242, 242);
  --ng-global-text: rgb(40, 42, 60);
  --ng-global-background: rgb(240,245,255);
  --ng-global-divider: rgb(225,230,240);
  --ng-ngi-default: rgb(154,158,194);
  --ng-color-alt_1: rgb(207, 20, 68);
  --ng-color-alt_2: rgb(247, 79, 50);
  --ng-color-white: rgb(255, 255, 255);
  --ng-color-black: rgb(0, 0, 0);
  --ng-color-grey: rgba(200, 200, 200, 1);
  --ng-color-grey_middle: rgba(120,120,120,1.0);
  --ng-color-grey_dark: rgba(80,80,80,1.0);
  --ng-color-bg: rgba(255, 255, 255,1);
  --ng-color-border-dark: rgba(26,27,38,1.0);
  --ng-color-border-middle: rgba(115,121,167,1.0);
  --ng-color-border-light: rgba(191,194,215,1.0);
  --ng-radius: 0.3125rem;
  --ng-radius-lg: 0.625rem;
  --ng-radius-xl: 0.9375rem;
  --ng-link-color: rgb(40, 42, 60);
  --ng-link-color-background: transparent;
  --ng-link-color-border: transparent;
  --ng-link-color-hover: rgb(207, 20, 68);
  --ng-link-color-hover-background: transparent;
  --ng-link-color-active: green;
  --ng-font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ng-font-heading: var(--ng-font-base);
  --ng-font-code: monospace;
  --ng-font-size: 16px;
  --ng-body-color: rgb(40,42,60);
  --ng-body-background: rgb(255,255,255);
  --ng-header-color: rgb(34,34,34);
  --ng-header-bg: rgba(240,245,255,1);
  --ng-header-border: rgba(80,80,80,0.2);
  --ng-header-shadow: 0 2px 6px rgba(80,80,80,0.5);
  --ng-header-title: rgb(207, 20, 68);
  --ng-header-muted: rgb(102,102,102);
  --ng-header-font-size: 0.88rem;
  --ng-header-width-logo: 50px;
  --ng-header-color-logo: rgba(207, 20, 68,1);
  --ng-header-color-scrolled: rgb(255,255,255);
  --ng-header-bg-scrolled: rgba(0,19,35,0.5);
  --ng-header-top-color: #26262e;
  --ng-header-top-background: unset;
  --ng-header-bottom-color: #26262e;
  --ng-header-bottom-background: unset;
  --ng-btn-size: 1.7rem;
  --ng-dropdown-color: rgb(40,42,60);
  --ng-dropdown-background: unset;
  --ng-dropdown-border: none;
  --ng-dropdown-padding: 0.5rem 1rem;
  --ng-dropdown-color-hover: rgb(207,20,68);
  --ng-dropdown-background-hover: unset;
  --ng-dropdown-item-color: rgb(40, 42, 60);
  --ng-dropdown-item-background: rgb(255,255,255);
  --ng-dropdown-item-color-hover: rgb(207,20,68);
  --ng-dropdown-item-background-hover: rgba(225,215,210,0.4);
  --ng-dropdown-item-border: none;
  --ng-dropdown-item-radius: 0;
  --ng-dropdown-item-title-color: rgb(207,20,68);
  --ng-dropdown-item-title-background: unset;
  --ng-nav-gap: 0.65rem;
  --ng-nav-font-size: font-size: 0.875rem;
  --ng-gap: 1rem;
  --ng-transition: all 0.2s ease-in-out;
  --ng-fill-width: 200px;
}

a.ng-line-hover-left, a.ng-line-hover-right, a.ng-line-hover-center {
  text-decoration: none;
  position: relative;
}
a.ng-line-hover-left::after, a.ng-line-hover-right::after, a.ng-line-hover-center::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: var(--ng-color-alt_1);
  transition: width 0.4s ease;
}
a.ng-line-hover-left:hover::after, a.ng-line-hover-right:hover::after, a.ng-line-hover-center:hover::after, a.ng-line-hover-left:focus::after, a.ng-line-hover-right:focus::after, a.ng-line-hover-center:focus::after {
  width: 100%;
}

body {
  font-family: var(--ng-font-base);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ng-global-text);
}

.ng-layout {
  display: flex;
  flex-direction: row;
  min-height: 100%;
}
.ng-layout.ng-sidebar-right {
  flex-direction: row-reverse;
}
.ng-layout > * {
  min-width: 0;
}

.ng-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ng-content pre {
  overflow-x: auto;
  max-width: 100%;
}

.ng-container {
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ng-container.container-fix-400 {
  max-width: 400px;
}
.ng-container.container-fix-576 {
  max-width: 576px;
}
.ng-container.container-fix-768 {
  max-width: 768px;
}
.ng-container.container-fix-992 {
  max-width: 992px;
}
.ng-container.container-fix-1280 {
  max-width: 1280px;
}
.ng-container.container-fix-1400 {
  max-width: 1400px;
}
.ng-container.container-center {
  margin-left: auto;
  margin-right: auto;
}

.ng-sidebar {
  width: var(--sidebar-width, 260px);
  background-color: var(--ng-color-primary);
  color: var(--ng-color-grey);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 0 0 1rem 0;
  font-size: 0.95rem;
  transition: transform 0.3s ease;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
}
.ng-sidebar .logo {
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--ng-color-white);
  padding: calc(var(--ng-gap) * 1) calc(var(--ng-gap) * 1.4);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ng-sidebar .logo a {
  color: var(--ng-color-grey);
}
.ng-sidebar nav {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ng-sidebar nav .section-label {
  padding: 0.7rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ng-color-white);
  background-color: var(--ng-color-primary-middle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.ng-sidebar nav .section-label .label-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ng-sidebar nav .section-label .label-left i {
  font-size: 1rem;
  color: var(--ng-color-white);
}
.ng-sidebar nav .section-label .label-toggle {
  font-size: 1rem;
  color: var(--ng-color-white);
  opacity: 1;
}
.ng-sidebar nav .section-label .label-toggle:hover {
  opacity: 0.6;
}
.ng-sidebar nav ul.submenu-3, .ng-sidebar nav ul.submenu {
  background-color: var(--ng-color-primary);
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 0.0625rem;
}
.ng-sidebar nav ul.submenu li.divider {
  border-top: 1px solid var(--ng-color-primary-middle);
  margin: 0.4rem 1.2rem;
  height: 0;
  pointer-events: none;
}
.ng-sidebar nav ul.submenu li {
  position: relative;
}
.ng-sidebar nav ul.submenu li a {
  font-size: 0.85rem;
  padding: 0.4rem 1.5rem;
  color: var(--ng-color-white);
  display: block;
  text-decoration: none;
}
.ng-sidebar nav ul.submenu li a::before {
  position: relative;
  top: -1px;
  content: "•";
  font-size: 1rem;
  opacity: 0.6;
  margin-right: 0.4rem;
}
.ng-sidebar nav ul.submenu li a:hover {
  color: var(--ng-color-white);
  background-color: var(--ng-color-primary-dark);
}
.ng-sidebar nav ul.submenu li a.active {
  background-color: var(--ng-color-alt_1);
  color: var(--ng-color-white);
  font-weight: 600;
}
.ng-sidebar nav ul.submenu li a.active::before {
  opacity: 1;
}
.ng-sidebar nav ul.submenu li .ng-badge {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
}
.ng-sidebar nav ul.submenu-3 {
  background-color: var(--ng-color-primary-dark);
}
.ng-sidebar nav ul.submenu-3 li {
  position: relative;
}
.ng-sidebar nav ul.submenu-3 li a {
  font-size: 0.82rem;
  padding: 0.35rem 1.5rem 0.35rem 2.25rem;
  color: var(--ng-color-white);
  display: block;
  text-decoration: none;
}
.ng-sidebar nav ul.submenu-3 li a::before {
  content: "›";
  opacity: 0.6;
  margin-right: 0.35rem;
  position: relative;
  top: -1px;
}
.ng-sidebar nav ul.submenu-3 li a:hover {
  background-color: var(--ng-color-primary-middle);
}
.ng-sidebar nav ul.submenu-3 li a.active {
  background-color: var(--ng-color-alt_1);
  color: var(--ng-color-white);
  font-weight: 600;
}
.ng-sidebar nav ul.submenu-3 li a.active::before {
  opacity: 1;
}
.ng-sidebar nav ul.submenu-3 li .ng-badge {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
}
.ng-sidebar nav li.has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ng-sidebar nav li.has-children > a .item-toggle {
  color: var(--ng-color-white);
  font-size: 1rem;
  opacity: 1;
  cursor: pointer;
}
.ng-sidebar nav li.has-children > a .item-toggle:hover {
  opacity: 0.7;
}
.ng-sidebar .sidebar-footer {
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 0.75rem 0;
  border-top: 1px solid var(--ng-color-primary-dark);
  margin-top: auto;
}
.ng-sidebar .sidebar-footer button, .ng-sidebar .sidebar-footer a {
  background: none;
  border: none;
  color: var(--ng-color-white);
  font-size: 1rem;
  cursor: pointer;
}
.ng-sidebar .sidebar-footer button:hover, .ng-sidebar .sidebar-footer a:hover {
  color: var(--ng-color-white);
}

.ng-header {
  position: relative;
  color: var(--ng-header-color);
  background: var(--ng-header-bg);
  backdrop-filter: blur(12px);
  font-size: var(--ng-header-font-size);
  box-shadow: var(--ng-header-shadow);
  z-index: 200;
  transition: background-color 0.9s ease;
}
.ng-header.scrolled {
  color: var(--ng-header-color-scrolled);
  background-color: var(--ng-header-bg-scrolled);
}
.ng-header .ng-header-logo {
  vertical-align: middle;
  display: inline-block;
  width: var(--ng-header-width-logo);
  color: var(--ng-header-color-logo);
}
.ng-header .ng-header-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem 20px;
  color: var(--ng-header-color);
  transition: opacity 0.2s ease;
}
.ng-header .ng-header-toggle:hover {
  opacity: 0.7;
}
.ng-header .header-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--ng-gap);
  align-items: center;
  width: 100%;
}
.ng-header .header-col {
  position: relative;
  text-align: center;
}
.ng-header .header-col:last-child {
  text-align: right;
}
.ng-header .header-col:first-child {
  text-align: left;
}
.ng-header .header-col i.ph {
  vertical-align: middle;
  position: relative;
  top: 0;
}
.ng-header .header-col a.active {
  color: var(--ng-header-muted);
  font-weight: 600;
}
.ng-header .header-col a.active.no-cursor {
  pointer-events: none;
  cursor: default;
}
.ng-header .header-col a.active.pill {
  background-color: rgba(180, 180, 180, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: var(--ng-radius);
}
.ng-header .header-col a.active.point::before {
  content: "●";
  color: var(--ng-color-alt_1);
  margin-right: 0.35rem;
  font-size: 0.5rem;
  vertical-align: middle;
}
.ng-header .header-col > a {
  text-decoration: none;
  transition: color 0.2s;
  color: var(--ng-header-color);
}
.ng-header .header-col > a:hover {
  color: var(--ng-link-color-hover);
}
.ng-header .header-col > a:hover i {
  color: inherit;
}
.ng-header .header-col > a, .ng-header .header-col .ng-dropdown > a {
  margin-right: 1.25rem;
}
.ng-header .header-top {
  display: block;
  border-bottom: 1px solid var(--ng-header-border);
  font-size: 0.875rem;
  color: var(--ng-header-top-color);
  background: var(--ng-header-top-background);
}
.ng-header .header-bottom {
  border-top: 1px solid var(--ng-header-border);
  font-size: 0.875rem;
  color: var(--ng-header-bottom-color);
  background: var(--ng-header-bottom-background);
}

@media (max-width: 768px) {
  .ng-header {
    color: var(--ng-header-color);
    background: var(--ng-header-bg);
    font-size: var(--ng-header-font-size);
  }
  .ng-header .ng-header-toggle {
    display: block;
  }
  .ng-header nav.header-inner {
    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }
  .ng-header nav.header-inner.is-open {
    display: block;
    pointer-events: auto;
    max-height: min(80dvh, 600px);
    opacity: 1;
    transform: translateY(0);
  }
  .ng-header .header-container {
    display: grid;
    grid-template-columns: 1fr !important;
  }
  .ng-header .header-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left !important;
    padding: 0.5rem 20px;
  }
  .ng-header .header-col:last-child {
    border-bottom: none;
  }
  .ng-header .header-col a {
    margin-right: 0;
  }
  .ng-header .ng-dropdown {
    display: block;
    max-height: none !important;
    overflow: visible !important;
  }
  .ng-header .ng-dropdown .dropdown-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
    color: var(--ng-link-block);
    cursor: pointer;
  }
  .ng-header .ng-dropdown .dropdown-menu {
    position: relative;
    margin-bottom: 10px;
    display: block !important;
    width: 100%;
    box-shadow: none;
    color: var(--ng-dropdown-color);
    background: var(--ng-dropdown-background);
    border: 1px solid var(--ng-dropdown-border);
    border-radius: 0;
    max-height: 0;
    opacity: 1;
    transform: none;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .ng-header .ng-dropdown .dropdown-menu.show {
    max-height: 300px;
    overflow: auto;
    pointer-events: auto;
  }
  .ng-header .ng-dropdown .dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.83rem;
    text-align: left;
    text-decoration: none;
    margin-right: 0;
    color: var(--ng-dropdown-item-color);
    background: var(--ng-dropdown-item-background);
    transition: background 0.2s ease, color 0.1s ease;
  }
  .ng-header .ng-dropdown .dropdown-menu a:hover {
    color: var(--ng-dropdown-item-color-hover);
    background: var(--ng-dropdown-item-background-hover);
  }
  .ng-header .ng-dropdown .dropdown-menu .title {
    padding: 0.5rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ng-dropdown-item-title-color);
    background: var(--ng-dropdown-item-title-background);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    pointer-events: none;
  }
  .ng-header .ng-dropdown .dropdown-menu .divider {
    height: 15px;
    background: var(--ng-dropdown-item-background);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.ng-footer {
  width: 100%;
  padding: var(--ng-gap) 0;
  background: var(--ng-footer-bg, #f5f5f5);
  color: var(--ng-footer-color, #333);
  font-size: 0.875rem;
  margin-top: auto;
  margin-bottom: 0;
}
.ng-footer .ng-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--ng-gap);
  align-items: center;
  width: 100%;
  padding: 0 var(--ng-gap);
}
.ng-footer .ng-footer-col .ng-footer-nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ng-footer .ng-footer-col .ng-footer-nav a {
  color: inherit;
  text-decoration: none;
}
.ng-footer .ng-footer-col .ng-footer-nav a:hover {
  text-decoration: underline;
}
.ng-footer .ng-footer-col, .ng-footer .ng-footer-bottom {
  text-align: left;
}
.ng-footer .ng-footer-col.center, .ng-footer .ng-footer-bottom.center {
  text-align: center;
}
.ng-footer .ng-footer-col.right, .ng-footer .ng-footer-bottom.right {
  text-align: right;
}
.ng-footer .ng-footer-bottom {
  margin-top: var(--ng-gap);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: var(--ng-gap);
  font-size: 0.75rem;
  color: var(--ng-footer-muted, #888);
}

.ng-overlay, .ng-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 600;
}
.ng-overlay.visible, .visible.ng-backdrop {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 1024px) {
  .ng-layout.ng-sidebar-compact .ng-sidebar {
    width: var(--sidebar-compact-width, 72px);
  }
  .ng-sidebar-toggle {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .ng-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: var(--sidebar-mobile-width, 260px);
    max-width: 85vw;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    z-index: 150;
  }
  .ng-layout.ng-sidebar-open .ng-sidebar {
    transform: translateX(0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  }
  .ng-layout.ng-sidebar-open .ng-overlay, .ng-layout.ng-sidebar-open .ng-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
}
.ng-sidebar-toggle,
.ng-sidebar-compact-toggle {
  appearance: none;
  border: 0;
  background: none;
  cursor: pointer;
  line-height: 1;
}

/*==============================================================
NexiGrid — GRID SYSTEM (Flex Grid + Lanes & Grid) - v1.0
Pagina: _ng_grid.php
==============================================================*/
.ng-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.ng-row.go-column {
  flex-direction: column;
}
.ng-row.same-height {
  align-items: stretch;
}

.ng-col {
  box-sizing: border-box;
  flex: 1 0 0%;
}

.ng-col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.ng-col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.ng-col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.ng-col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.ng-col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.ng-col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.ng-col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.ng-col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.ng-col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.ng-col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.ng-col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.ng-col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .ng-col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ng-col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ng-col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ng-col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ng-col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ng-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ng-col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ng-col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ng-col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ng-col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ng-col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ng-col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .ng-col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ng-col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ng-col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ng-col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ng-col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ng-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ng-col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ng-col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ng-col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ng-col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ng-col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ng-col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 896px) {
  .ng-col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ng-col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ng-col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ng-col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ng-col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ng-col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ng-col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ng-col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ng-col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ng-col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ng-col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ng-col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1024px) {
  .ng-col-xlg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ng-col-xlg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ng-col-xlg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ng-col-xlg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ng-col-xlg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ng-col-xlg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ng-col-xlg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ng-col-xlg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ng-col-xlg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ng-col-xlg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ng-col-xlg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ng-col-xlg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1280px) {
  .ng-col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ng-col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ng-col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ng-col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ng-col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ng-col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ng-col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ng-col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ng-col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ng-col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ng-col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ng-col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .ng-col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .ng-col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .ng-col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ng-col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .ng-col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .ng-col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ng-col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .ng-col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .ng-col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ng-col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .ng-col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .ng-col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.ng-gutter-0 > .ng-col {
  padding-left: 0;
  padding-right: 0;
}

.ng-gutter-xs > .ng-col {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.ng-gutter-sm > .ng-col {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.ng-gutter-md > .ng-col {
  padding-left: 1rem;
  padding-right: 1rem;
}

.ng-gutter-lg > .ng-col {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.ng-gutter-xl > .ng-col {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ng-offset-0 {
  margin-left: 0;
}

.ng-offset-1 {
  margin-left: 8.3333333333%;
}

.ng-offset-2 {
  margin-left: 16.6666666667%;
}

.ng-offset-3 {
  margin-left: 25%;
}

.ng-offset-4 {
  margin-left: 33.3333333333%;
}

.ng-offset-5 {
  margin-left: 41.6666666667%;
}

.ng-offset-6 {
  margin-left: 50%;
}

.ng-offset-7 {
  margin-left: 58.3333333333%;
}

.ng-offset-8 {
  margin-left: 66.6666666667%;
}

.ng-offset-9 {
  margin-left: 75%;
}

.ng-offset-10 {
  margin-left: 83.3333333333%;
}

.ng-offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .ng-offset-sm-0 {
    margin-left: 0;
  }
  .ng-offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .ng-offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .ng-offset-sm-3 {
    margin-left: 25%;
  }
  .ng-offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .ng-offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .ng-offset-sm-6 {
    margin-left: 50%;
  }
  .ng-offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .ng-offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .ng-offset-sm-9 {
    margin-left: 75%;
  }
  .ng-offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .ng-offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .ng-offset-md-0 {
    margin-left: 0;
  }
  .ng-offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .ng-offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .ng-offset-md-3 {
    margin-left: 25%;
  }
  .ng-offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .ng-offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .ng-offset-md-6 {
    margin-left: 50%;
  }
  .ng-offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .ng-offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .ng-offset-md-9 {
    margin-left: 75%;
  }
  .ng-offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .ng-offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 896px) {
  .ng-offset-lg-0 {
    margin-left: 0;
  }
  .ng-offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .ng-offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .ng-offset-lg-3 {
    margin-left: 25%;
  }
  .ng-offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .ng-offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .ng-offset-lg-6 {
    margin-left: 50%;
  }
  .ng-offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .ng-offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .ng-offset-lg-9 {
    margin-left: 75%;
  }
  .ng-offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .ng-offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1024px) {
  .ng-offset-xlg-0 {
    margin-left: 0;
  }
  .ng-offset-xlg-1 {
    margin-left: 8.3333333333%;
  }
  .ng-offset-xlg-2 {
    margin-left: 16.6666666667%;
  }
  .ng-offset-xlg-3 {
    margin-left: 25%;
  }
  .ng-offset-xlg-4 {
    margin-left: 33.3333333333%;
  }
  .ng-offset-xlg-5 {
    margin-left: 41.6666666667%;
  }
  .ng-offset-xlg-6 {
    margin-left: 50%;
  }
  .ng-offset-xlg-7 {
    margin-left: 58.3333333333%;
  }
  .ng-offset-xlg-8 {
    margin-left: 66.6666666667%;
  }
  .ng-offset-xlg-9 {
    margin-left: 75%;
  }
  .ng-offset-xlg-10 {
    margin-left: 83.3333333333%;
  }
  .ng-offset-xlg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1280px) {
  .ng-offset-xl-0 {
    margin-left: 0;
  }
  .ng-offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .ng-offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .ng-offset-xl-3 {
    margin-left: 25%;
  }
  .ng-offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .ng-offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .ng-offset-xl-6 {
    margin-left: 50%;
  }
  .ng-offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .ng-offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .ng-offset-xl-9 {
    margin-left: 75%;
  }
  .ng-offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .ng-offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .ng-offset-xxl-0 {
    margin-left: 0;
  }
  .ng-offset-xxl-1 {
    margin-left: 8.3333333333%;
  }
  .ng-offset-xxl-2 {
    margin-left: 16.6666666667%;
  }
  .ng-offset-xxl-3 {
    margin-left: 25%;
  }
  .ng-offset-xxl-4 {
    margin-left: 33.3333333333%;
  }
  .ng-offset-xxl-5 {
    margin-left: 41.6666666667%;
  }
  .ng-offset-xxl-6 {
    margin-left: 50%;
  }
  .ng-offset-xxl-7 {
    margin-left: 58.3333333333%;
  }
  .ng-offset-xxl-8 {
    margin-left: 66.6666666667%;
  }
  .ng-offset-xxl-9 {
    margin-left: 75%;
  }
  .ng-offset-xxl-10 {
    margin-left: 83.3333333333%;
  }
  .ng-offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 576px) {
  .ng-order-sm-0 {
    order: 0;
  }
  .ng-order-sm-1 {
    order: 1;
  }
  .ng-order-sm-2 {
    order: 2;
  }
  .ng-order-sm-3 {
    order: 3;
  }
  .ng-order-sm-4 {
    order: 4;
  }
  .ng-order-sm-5 {
    order: 5;
  }
  .ng-order-sm-6 {
    order: 6;
  }
  .ng-order-sm-7 {
    order: 7;
  }
  .ng-order-sm-8 {
    order: 8;
  }
  .ng-order-sm-9 {
    order: 9;
  }
  .ng-order-sm-10 {
    order: 10;
  }
  .ng-order-sm-11 {
    order: 11;
  }
  .ng-order-sm-12 {
    order: 12;
  }
}
@media (min-width: 768px) {
  .ng-order-md-0 {
    order: 0;
  }
  .ng-order-md-1 {
    order: 1;
  }
  .ng-order-md-2 {
    order: 2;
  }
  .ng-order-md-3 {
    order: 3;
  }
  .ng-order-md-4 {
    order: 4;
  }
  .ng-order-md-5 {
    order: 5;
  }
  .ng-order-md-6 {
    order: 6;
  }
  .ng-order-md-7 {
    order: 7;
  }
  .ng-order-md-8 {
    order: 8;
  }
  .ng-order-md-9 {
    order: 9;
  }
  .ng-order-md-10 {
    order: 10;
  }
  .ng-order-md-11 {
    order: 11;
  }
  .ng-order-md-12 {
    order: 12;
  }
}
@media (min-width: 896px) {
  .ng-order-lg-0 {
    order: 0;
  }
  .ng-order-lg-1 {
    order: 1;
  }
  .ng-order-lg-2 {
    order: 2;
  }
  .ng-order-lg-3 {
    order: 3;
  }
  .ng-order-lg-4 {
    order: 4;
  }
  .ng-order-lg-5 {
    order: 5;
  }
  .ng-order-lg-6 {
    order: 6;
  }
  .ng-order-lg-7 {
    order: 7;
  }
  .ng-order-lg-8 {
    order: 8;
  }
  .ng-order-lg-9 {
    order: 9;
  }
  .ng-order-lg-10 {
    order: 10;
  }
  .ng-order-lg-11 {
    order: 11;
  }
  .ng-order-lg-12 {
    order: 12;
  }
}
@media (min-width: 1024px) {
  .ng-order-xlg-0 {
    order: 0;
  }
  .ng-order-xlg-1 {
    order: 1;
  }
  .ng-order-xlg-2 {
    order: 2;
  }
  .ng-order-xlg-3 {
    order: 3;
  }
  .ng-order-xlg-4 {
    order: 4;
  }
  .ng-order-xlg-5 {
    order: 5;
  }
  .ng-order-xlg-6 {
    order: 6;
  }
  .ng-order-xlg-7 {
    order: 7;
  }
  .ng-order-xlg-8 {
    order: 8;
  }
  .ng-order-xlg-9 {
    order: 9;
  }
  .ng-order-xlg-10 {
    order: 10;
  }
  .ng-order-xlg-11 {
    order: 11;
  }
  .ng-order-xlg-12 {
    order: 12;
  }
}
@media (min-width: 1280px) {
  .ng-order-xl-0 {
    order: 0;
  }
  .ng-order-xl-1 {
    order: 1;
  }
  .ng-order-xl-2 {
    order: 2;
  }
  .ng-order-xl-3 {
    order: 3;
  }
  .ng-order-xl-4 {
    order: 4;
  }
  .ng-order-xl-5 {
    order: 5;
  }
  .ng-order-xl-6 {
    order: 6;
  }
  .ng-order-xl-7 {
    order: 7;
  }
  .ng-order-xl-8 {
    order: 8;
  }
  .ng-order-xl-9 {
    order: 9;
  }
  .ng-order-xl-10 {
    order: 10;
  }
  .ng-order-xl-11 {
    order: 11;
  }
  .ng-order-xl-12 {
    order: 12;
  }
}
@media (min-width: 1400px) {
  .ng-order-xxl-0 {
    order: 0;
  }
  .ng-order-xxl-1 {
    order: 1;
  }
  .ng-order-xxl-2 {
    order: 2;
  }
  .ng-order-xxl-3 {
    order: 3;
  }
  .ng-order-xxl-4 {
    order: 4;
  }
  .ng-order-xxl-5 {
    order: 5;
  }
  .ng-order-xxl-6 {
    order: 6;
  }
  .ng-order-xxl-7 {
    order: 7;
  }
  .ng-order-xxl-8 {
    order: 8;
  }
  .ng-order-xxl-9 {
    order: 9;
  }
  .ng-order-xxl-10 {
    order: 10;
  }
  .ng-order-xxl-11 {
    order: 11;
  }
  .ng-order-xxl-12 {
    order: 12;
  }
}
.ng-row-justify-start {
  justify-content: flex-start !important;
}

.ng-row-justify-center {
  justify-content: center !important;
}

.ng-row-justify-end {
  justify-content: flex-end !important;
}

.ng-row-justify-between {
  justify-content: space-between !important;
}

.ng-row-justify-around {
  justify-content: space-around !important;
}

.ng-row-justify-evenly {
  justify-content: space-evenly !important;
}

.ng-row-align-start {
  align-items: flex-start !important;
}

.ng-col-align-start {
  align-self: flex-start !important;
}

.ng-row-align-center {
  align-items: center !important;
}

.ng-col-align-center {
  align-self: center !important;
}

.ng-row-align-end {
  align-items: flex-end !important;
}

.ng-col-align-end {
  align-self: flex-end !important;
}

.ng-row-align-stretch {
  align-items: stretch !important;
}

.ng-col-align-stretch {
  align-self: stretch !important;
}

.ng-row-align-baseline {
  align-items: baseline !important;
}

.ng-col-align-baseline {
  align-self: baseline !important;
}

.ng-row-align-top {
  align-items: flex-start !important;
}

.ng-col-align-top {
  align-self: flex-start !important;
}

.ng-row-align-bottom {
  align-items: flex-end !important;
}

.ng-col-align-bottom {
  align-self: flex-end !important;
}

@media (max-width: 575.98px) {
  [class^=ng-col-], [class*=" ng-col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
  [class^=ng-offset-], [class*=" ng-offset-"] {
    margin-left: 0 !important;
  }
}
.ng-grid {
  display: grid;
  box-sizing: border-box;
}

.ng-lanes-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.ng-lanes-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ng-lanes-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ng-lanes-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ng-lanes-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ng-lanes-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ng-lanes-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.ng-lanes-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.ng-lanes-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.ng-lanes-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.ng-lanes-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.ng-lanes-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

@media (min-width: 576px) {
  .ng-lanes-sm-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ng-lanes-sm-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ng-lanes-sm-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ng-lanes-sm-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ng-lanes-sm-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ng-lanes-sm-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ng-lanes-sm-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ng-lanes-sm-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ng-lanes-sm-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ng-lanes-sm-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ng-lanes-sm-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ng-lanes-sm-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .ng-lanes-md-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ng-lanes-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ng-lanes-md-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ng-lanes-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ng-lanes-md-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ng-lanes-md-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ng-lanes-md-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ng-lanes-md-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ng-lanes-md-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ng-lanes-md-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ng-lanes-md-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ng-lanes-md-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 896px) {
  .ng-lanes-lg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ng-lanes-lg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ng-lanes-lg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ng-lanes-lg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ng-lanes-lg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ng-lanes-lg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ng-lanes-lg-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ng-lanes-lg-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ng-lanes-lg-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ng-lanes-lg-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ng-lanes-lg-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ng-lanes-lg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .ng-lanes-xlg-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ng-lanes-xlg-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ng-lanes-xlg-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ng-lanes-xlg-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ng-lanes-xlg-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ng-lanes-xlg-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ng-lanes-xlg-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ng-lanes-xlg-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ng-lanes-xlg-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ng-lanes-xlg-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ng-lanes-xlg-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ng-lanes-xlg-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .ng-lanes-xl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ng-lanes-xl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ng-lanes-xl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ng-lanes-xl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ng-lanes-xl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ng-lanes-xl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ng-lanes-xl-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ng-lanes-xl-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ng-lanes-xl-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ng-lanes-xl-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ng-lanes-xl-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ng-lanes-xl-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
@media (min-width: 1400px) {
  .ng-lanes-xxl-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .ng-lanes-xxl-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ng-lanes-xxl-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .ng-lanes-xxl-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .ng-lanes-xxl-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ng-lanes-xxl-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .ng-lanes-xxl-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
  .ng-lanes-xxl-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .ng-lanes-xxl-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }
  .ng-lanes-xxl-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .ng-lanes-xxl-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }
  .ng-lanes-xxl-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
.ng-autolanes-xs {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.ng-autolanes-s {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.ng-autolanes-m {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.ng-autolanes-l {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ng-autolanes-xl {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

@media (min-width: 576px) {
  .ng-autolanes-sm-xs {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .ng-autolanes-sm-s {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .ng-autolanes-sm-m {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .ng-autolanes-sm-l {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .ng-autolanes-sm-xl {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}
@media (min-width: 768px) {
  .ng-autolanes-md-xs {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .ng-autolanes-md-s {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .ng-autolanes-md-m {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .ng-autolanes-md-l {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .ng-autolanes-md-xl {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}
@media (min-width: 896px) {
  .ng-autolanes-lg-xs {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .ng-autolanes-lg-s {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .ng-autolanes-lg-m {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .ng-autolanes-lg-l {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .ng-autolanes-lg-xl {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}
@media (min-width: 1024px) {
  .ng-autolanes-xlg-xs {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .ng-autolanes-xlg-s {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .ng-autolanes-xlg-m {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .ng-autolanes-xlg-l {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .ng-autolanes-xlg-xl {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}
@media (min-width: 1280px) {
  .ng-autolanes-xl-xs {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .ng-autolanes-xl-s {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .ng-autolanes-xl-m {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .ng-autolanes-xl-l {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .ng-autolanes-xl-xl {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}
@media (min-width: 1400px) {
  .ng-autolanes-xxl-xs {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
  .ng-autolanes-xxl-s {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .ng-autolanes-xxl-m {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .ng-autolanes-xxl-l {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .ng-autolanes-xxl-xl {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}
.ng-gap-0 {
  gap: 0;
}

.ng-gap-xs {
  gap: 0.25rem;
}

.ng-gap-sm {
  gap: 0.5rem;
}

.ng-gap-md {
  gap: 1rem;
}

.ng-gap-lg {
  gap: 1.5rem;
}

.ng-gap-xl {
  gap: 2rem;
}

@media (min-width: 576px) {
  .ng-gap-sm-0 {
    gap: 0;
  }
  .ng-gap-sm-xs {
    gap: 0.25rem;
  }
  .ng-gap-sm-sm {
    gap: 0.5rem;
  }
  .ng-gap-sm-md {
    gap: 1rem;
  }
  .ng-gap-sm-lg {
    gap: 1.5rem;
  }
  .ng-gap-sm-xl {
    gap: 2rem;
  }
}
@media (min-width: 768px) {
  .ng-gap-md-0 {
    gap: 0;
  }
  .ng-gap-md-xs {
    gap: 0.25rem;
  }
  .ng-gap-md-sm {
    gap: 0.5rem;
  }
  .ng-gap-md-md {
    gap: 1rem;
  }
  .ng-gap-md-lg {
    gap: 1.5rem;
  }
  .ng-gap-md-xl {
    gap: 2rem;
  }
}
@media (min-width: 896px) {
  .ng-gap-lg-0 {
    gap: 0;
  }
  .ng-gap-lg-xs {
    gap: 0.25rem;
  }
  .ng-gap-lg-sm {
    gap: 0.5rem;
  }
  .ng-gap-lg-md {
    gap: 1rem;
  }
  .ng-gap-lg-lg {
    gap: 1.5rem;
  }
  .ng-gap-lg-xl {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .ng-gap-xlg-0 {
    gap: 0;
  }
  .ng-gap-xlg-xs {
    gap: 0.25rem;
  }
  .ng-gap-xlg-sm {
    gap: 0.5rem;
  }
  .ng-gap-xlg-md {
    gap: 1rem;
  }
  .ng-gap-xlg-lg {
    gap: 1.5rem;
  }
  .ng-gap-xlg-xl {
    gap: 2rem;
  }
}
@media (min-width: 1280px) {
  .ng-gap-xl-0 {
    gap: 0;
  }
  .ng-gap-xl-xs {
    gap: 0.25rem;
  }
  .ng-gap-xl-sm {
    gap: 0.5rem;
  }
  .ng-gap-xl-md {
    gap: 1rem;
  }
  .ng-gap-xl-lg {
    gap: 1.5rem;
  }
  .ng-gap-xl-xl {
    gap: 2rem;
  }
}
@media (min-width: 1400px) {
  .ng-gap-xxl-0 {
    gap: 0;
  }
  .ng-gap-xxl-xs {
    gap: 0.25rem;
  }
  .ng-gap-xxl-sm {
    gap: 0.5rem;
  }
  .ng-gap-xxl-md {
    gap: 1rem;
  }
  .ng-gap-xxl-lg {
    gap: 1.5rem;
  }
  .ng-gap-xxl-xl {
    gap: 2rem;
  }
}
.ng-wide-1 {
  grid-column: span 1;
  flex: none;
}

.ng-wide-2 {
  grid-column: span 2;
  flex: none;
}

.ng-wide-3 {
  grid-column: span 3;
  flex: none;
}

.ng-wide-4 {
  grid-column: span 4;
  flex: none;
}

.ng-wide-5 {
  grid-column: span 5;
  flex: none;
}

.ng-wide-6 {
  grid-column: span 6;
  flex: none;
}

.ng-wide-7 {
  grid-column: span 7;
  flex: none;
}

.ng-wide-8 {
  grid-column: span 8;
  flex: none;
}

.ng-wide-9 {
  grid-column: span 9;
  flex: none;
}

.ng-wide-10 {
  grid-column: span 10;
  flex: none;
}

.ng-wide-11 {
  grid-column: span 11;
  flex: none;
}

.ng-wide-12 {
  grid-column: span 12;
  flex: none;
}

@media (min-width: 576px) {
  .ng-wide-sm-1 {
    grid-column: span 1;
  }
  .ng-wide-sm-2 {
    grid-column: span 2;
  }
  .ng-wide-sm-3 {
    grid-column: span 3;
  }
  .ng-wide-sm-4 {
    grid-column: span 4;
  }
  .ng-wide-sm-5 {
    grid-column: span 5;
  }
  .ng-wide-sm-6 {
    grid-column: span 6;
  }
  .ng-wide-sm-7 {
    grid-column: span 7;
  }
  .ng-wide-sm-8 {
    grid-column: span 8;
  }
  .ng-wide-sm-9 {
    grid-column: span 9;
  }
  .ng-wide-sm-10 {
    grid-column: span 10;
  }
  .ng-wide-sm-11 {
    grid-column: span 11;
  }
  .ng-wide-sm-12 {
    grid-column: span 12;
  }
}
@media (min-width: 768px) {
  .ng-wide-md-1 {
    grid-column: span 1;
  }
  .ng-wide-md-2 {
    grid-column: span 2;
  }
  .ng-wide-md-3 {
    grid-column: span 3;
  }
  .ng-wide-md-4 {
    grid-column: span 4;
  }
  .ng-wide-md-5 {
    grid-column: span 5;
  }
  .ng-wide-md-6 {
    grid-column: span 6;
  }
  .ng-wide-md-7 {
    grid-column: span 7;
  }
  .ng-wide-md-8 {
    grid-column: span 8;
  }
  .ng-wide-md-9 {
    grid-column: span 9;
  }
  .ng-wide-md-10 {
    grid-column: span 10;
  }
  .ng-wide-md-11 {
    grid-column: span 11;
  }
  .ng-wide-md-12 {
    grid-column: span 12;
  }
}
@media (min-width: 896px) {
  .ng-wide-lg-1 {
    grid-column: span 1;
  }
  .ng-wide-lg-2 {
    grid-column: span 2;
  }
  .ng-wide-lg-3 {
    grid-column: span 3;
  }
  .ng-wide-lg-4 {
    grid-column: span 4;
  }
  .ng-wide-lg-5 {
    grid-column: span 5;
  }
  .ng-wide-lg-6 {
    grid-column: span 6;
  }
  .ng-wide-lg-7 {
    grid-column: span 7;
  }
  .ng-wide-lg-8 {
    grid-column: span 8;
  }
  .ng-wide-lg-9 {
    grid-column: span 9;
  }
  .ng-wide-lg-10 {
    grid-column: span 10;
  }
  .ng-wide-lg-11 {
    grid-column: span 11;
  }
  .ng-wide-lg-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1024px) {
  .ng-wide-xlg-1 {
    grid-column: span 1;
  }
  .ng-wide-xlg-2 {
    grid-column: span 2;
  }
  .ng-wide-xlg-3 {
    grid-column: span 3;
  }
  .ng-wide-xlg-4 {
    grid-column: span 4;
  }
  .ng-wide-xlg-5 {
    grid-column: span 5;
  }
  .ng-wide-xlg-6 {
    grid-column: span 6;
  }
  .ng-wide-xlg-7 {
    grid-column: span 7;
  }
  .ng-wide-xlg-8 {
    grid-column: span 8;
  }
  .ng-wide-xlg-9 {
    grid-column: span 9;
  }
  .ng-wide-xlg-10 {
    grid-column: span 10;
  }
  .ng-wide-xlg-11 {
    grid-column: span 11;
  }
  .ng-wide-xlg-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1280px) {
  .ng-wide-xl-1 {
    grid-column: span 1;
  }
  .ng-wide-xl-2 {
    grid-column: span 2;
  }
  .ng-wide-xl-3 {
    grid-column: span 3;
  }
  .ng-wide-xl-4 {
    grid-column: span 4;
  }
  .ng-wide-xl-5 {
    grid-column: span 5;
  }
  .ng-wide-xl-6 {
    grid-column: span 6;
  }
  .ng-wide-xl-7 {
    grid-column: span 7;
  }
  .ng-wide-xl-8 {
    grid-column: span 8;
  }
  .ng-wide-xl-9 {
    grid-column: span 9;
  }
  .ng-wide-xl-10 {
    grid-column: span 10;
  }
  .ng-wide-xl-11 {
    grid-column: span 11;
  }
  .ng-wide-xl-12 {
    grid-column: span 12;
  }
}
@media (min-width: 1400px) {
  .ng-wide-xxl-1 {
    grid-column: span 1;
  }
  .ng-wide-xxl-2 {
    grid-column: span 2;
  }
  .ng-wide-xxl-3 {
    grid-column: span 3;
  }
  .ng-wide-xxl-4 {
    grid-column: span 4;
  }
  .ng-wide-xxl-5 {
    grid-column: span 5;
  }
  .ng-wide-xxl-6 {
    grid-column: span 6;
  }
  .ng-wide-xxl-7 {
    grid-column: span 7;
  }
  .ng-wide-xxl-8 {
    grid-column: span 8;
  }
  .ng-wide-xxl-9 {
    grid-column: span 9;
  }
  .ng-wide-xxl-10 {
    grid-column: span 10;
  }
  .ng-wide-xxl-11 {
    grid-column: span 11;
  }
  .ng-wide-xxl-12 {
    grid-column: span 12;
  }
}
.ng-flow-start {
  justify-content: flex-start !important;
}

.ng-flow-center {
  justify-content: center !important;
}

.ng-flow-end {
  justify-content: flex-end !important;
}

.ng-flow-between {
  justify-content: space-between !important;
}

.ng-flow-around {
  justify-content: space-around !important;
}

.ng-flow-evenly {
  justify-content: space-evenly !important;
}

.ng-stack-start {
  align-items: flex-start !important;
}

.ng-stack-center {
  align-items: center !important;
}

.ng-stack-end {
  align-items: flex-end !important;
}

.ng-stack-stretch {
  align-items: stretch !important;
}

.ng-self-start {
  align-self: flex-start !important;
}

.ng-self-center {
  align-self: center !important;
}

.ng-self-end {
  align-self: flex-end !important;
}

.ng-self-stretch {
  align-self: stretch !important;
}

.ng-box {
  min-width: 0;
  min-height: 0;
}

@media (max-width: 575.98px) {
  .ng-grid:not(.ng-mobile-grid) {
    grid-template-columns: 1fr !important;
  }
  .ng-grid:not(.ng-mobile-grid) > * {
    grid-column: 1/-1;
  }
}
.ng-debug {
  background-color: #2d2d44;
}
.ng-debug > .ng-col, .ng-debug .ng-box {
  padding: 12px 18px;
  color: var(--ng-color-white);
  background-color: #545482;
  border: 1px solid #f2f2f2;
}

/*
*** =================================================
TYPOGRAPHY — NexiGrid (Refactored)
*** =================================================
Sistema tipografico moderno e ottimizzato per designer.
Include font-family, scale logiche per size/weight/line-height,
elementi semantici e utility essenziali.
*** =================================================
*/
:root {
  --ng-font-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ng-font-mono: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
}

a {
  color: var(--ng-link-color);
  background: var(--ng-link-color-background);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover, a:focus {
  color: var(--ng-link-color-hover);
  background: var(--ng-link-color-hover-background);
  text-decoration: none;
}
a:active {
  opacity: 0.8;
}

a.ng-line-hover-center, a.ng-line-hover-right, a.ng-line-hover-left {
  position: relative;
  text-decoration: none;
}
a.ng-line-hover-center::after, a.ng-line-hover-right::after, a.ng-line-hover-left::after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 1px;
  background-color: var(--ng-color-alt_1);
  transition: width 0.4s ease;
}
a.ng-line-hover-center:hover::after, a.ng-line-hover-right:hover::after, a.ng-line-hover-left:hover::after, a.ng-line-hover-center:focus::after, a.ng-line-hover-right:focus::after, a.ng-line-hover-left:focus::after {
  width: 100%;
}

a.ng-line-hover-left::after {
  left: 0;
}

a.ng-line-hover-right::after {
  right: 0;
  left: auto;
  transform-origin: right;
}

a.ng-line-hover-center::after {
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center;
}

.fs-2xs {
  font-size: 0.6875rem !important;
}

.fs-xs {
  font-size: 0.75rem !important;
}

.fs-sm {
  font-size: 0.875rem !important;
}

.fs-base {
  font-size: 1rem !important;
}

.fs-lg {
  font-size: 1.125rem !important;
}

.fs-xl {
  font-size: 1.25rem !important;
}

.fs-2xl {
  font-size: 1.5rem !important;
}

.fs-3xl {
  font-size: 2rem !important;
}

.fs-4xl {
  font-size: 3rem !important;
}

.fs-5xl {
  font-size: 3.75rem !important;
}

.fs-6xl {
  font-size: 4.5rem !important;
}

.fs-2xl, .fs-3xl, .fs-4xl, .fs-5xl, .fs-6xl {
  line-height: 1.1;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.font-ln-tight {
  line-height: 1.25 !important;
}

.font-ln-normal {
  line-height: 1.5 !important;
}

.font-ln-relaxed {
  line-height: 1.75 !important;
}

.font-ln-loose {
  line-height: 2 !important;
}

.italic {
  font-style: italic !important;
}

.not-italic {
  font-style: normal !important;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  color: inherit;
}

p, ul, ol {
  line-height: 1.6;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.6em;
  font-weight: 400;
  opacity: 0.7;
}

code {
  font-family: var(--ng-font-mono);
  background: rgba(0, 0, 0, 0.05);
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-size: 0.875em;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

pre {
  font-family: var(--ng-font-mono);
  background: rgba(0, 0, 0, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
pre code {
  background: none;
  padding: 0;
  border: none;
  font-size: inherit;
}

blockquote {
  border-left: 4px solid var(--ng-color-primary);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  opacity: 0.8;
}

cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-style: normal;
  opacity: 0.7;
}
cite::before {
  content: "— ";
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-wrap {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-accent {
  border-left: 4px solid var(--ng-color-alt_1);
  padding-left: 1rem;
}

.list-none {
  list-style: none !important;
}

.list-disc {
  list-style: disc !important;
}

.list-decimal {
  list-style: decimal !important;
}

ul, ol {
  padding-left: 1.5rem;
}
ul ul, ul ol, ol ul, ol ol {
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 575px) {
  .text-sm-center {
    text-align: center !important;
  }
  .text-sm-left {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-center {
    text-align: center !important;
  }
  .text-md-right {
    text-align: right !important;
  }
}
.hljs-ln-numbers {
  padding: 0 15px 0 5px !important;
  border-right: 1px solid #e5e8ff;
}

.hljs-ln-code {
  padding-left: 15px !important;
}

.hljs {
  background-color: whitesmoke;
}

.ng-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3125em;
  font-size: 0.95rem;
  font-family: var(--ng-font-base);
  font-weight: 500;
  line-height: 1.375;
  border-radius: var(--ng-radius);
  transition: var(--ng-transition);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
}
.ng-btn:disabled, .ng-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.ng-btn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.25);
  outline-offset: 2px;
}
.ng-btn i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
}
.ng-btn i.icon-sx {
  margin-right: 0.35em;
}
.ng-btn i.icon-dx {
  margin-left: 0.35em;
}
.ng-btn i + * {
  position: relative;
  top: 1px;
}
.ng-btn.btn-sm {
  font-size: 0.85rem;
  padding: 0.4em 1em;
}
.ng-btn.btn-md {
  font-size: 1rem;
  padding: 0.5em 1.2em;
}
.ng-btn.btn-lg {
  font-size: 1.15rem;
  padding: 0.65em 1.5em;
}
.ng-btn.btn-xl {
  font-size: 1.3rem;
  padding: 0.75em 1.8em;
}
.ng-btn.btn-xxl {
  font-size: 1.5rem;
  padding: 0.85em 2em;
}
.ng-btn.btn-square {
  aspect-ratio: 1/1;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: inherit;
  block-size: 100%;
  inline-size: auto;
  padding: 5px;
}
.ng-btn.btn-pill {
  border-radius: 999px;
  padding: 0.6em 1em;
}
.ng-btn.btn-petal {
  border-radius: 999px 0 999px 0;
  padding: 1em 1.5em;
}

a.btn-primary,
button.btn-primary,
.btn-primary {
  background-color: #0275ae;
  color: #ffffff;
}
a.btn-primary:hover,
button.btn-primary:hover,
.btn-primary:hover {
  background-color: rgb(1.7, 99.45, 147.9);
}

a.btn-primary-light,
button.btn-primary-light,
.btn-primary-light {
  background-color: rgb(182.355, 230.3675, 254.165);
  color: #0275ae;
  border: 1px solid rgb(130.5678545455, 212.8074909091, 253.5697454545);
  font-weight: 500;
}
a.btn-primary-light:hover,
button.btn-primary-light:hover,
.btn-primary-light:hover {
  background-color: rgb(139.1990454545, 215.7341590909, 253.6689545455);
}

a.btn-primary-outline,
button.btn-primary-outline,
.btn-primary-outline {
  background-color: transparent;
  color: #0275ae;
  border: 1px solid #026097;
}
a.btn-primary-outline:hover,
button.btn-primary-outline:hover,
.btn-primary-outline:hover {
  background-color: #0275ae;
  color: #ffffff;
}

.btn-check:checked + .btn-primary-outline {
  background-color: #0275ae;
  color: #ffffff;
  border-color: #026097;
}

a.btn-secondary,
button.btn-secondary,
.btn-secondary {
  background-color: #cd1842;
  color: #ffffff;
}
a.btn-secondary:hover,
button.btn-secondary:hover,
.btn-secondary:hover {
  background-color: rgb(174.25, 20.4, 56.1);
}

a.btn-secondary-light,
button.btn-secondary-light,
.btn-secondary-light {
  background-color: rgb(248.5210480349, 199.6589519651, 210.9971179039);
  color: #cd1842;
  border: 1px solid rgb(242.8845484716, 151.5138515284, 172.7158917031);
  font-weight: 500;
}
a.btn-secondary-light:hover,
button.btn-secondary-light:hover,
.btn-secondary-light:hover {
  background-color: rgb(243.8239650655, 159.5380349345, 179.0960960699);
}

a.btn-secondary-outline,
button.btn-secondary-outline,
.btn-secondary-outline {
  background-color: transparent;
  color: #cd1842;
  border: 1px solid #a01335;
}
a.btn-secondary-outline:hover,
button.btn-secondary-outline:hover,
.btn-secondary-outline:hover {
  background-color: #cd1842;
  color: #ffffff;
}

.btn-check:checked + .btn-secondary-outline {
  background-color: #cd1842;
  color: #ffffff;
  border-color: #a01335;
}

a.btn-success,
button.btn-success,
.btn-success {
  background-color: #1eac75;
  color: #ffffff;
}
a.btn-success:hover,
button.btn-success:hover,
.btn-success:hover {
  background-color: rgb(25.5, 146.2, 99.45);
}

a.btn-success-light,
button.btn-success-light,
.btn-success-light {
  background-color: rgb(197.3033663366, 244.9366336634, 226.4871287129);
  color: #1eac75;
  border: 1px solid rgb(152.1160712871, 237.0551287129, 204.1561980198);
  font-weight: 500;
}
a.btn-success-light:hover,
button.btn-success-light:hover,
.btn-success-light:hover {
  background-color: rgb(159.6472871287, 238.3687128713, 207.878019802);
}

a.btn-success-outline,
button.btn-success-outline,
.btn-success-outline {
  background-color: transparent;
  color: #1eac75;
  border: 1px solid #168f62;
}
a.btn-success-outline:hover,
button.btn-success-outline:hover,
.btn-success-outline:hover {
  background-color: #1eac75;
  color: #ffffff;
}

.btn-check:checked + .btn-success-outline {
  background-color: #1eac75;
  color: #ffffff;
  border-color: #168f62;
}

a.btn-info,
button.btn-info,
.btn-info {
  background-color: #12a5ea;
  color: #ffffff;
}
a.btn-info:hover,
button.btn-info:hover,
.btn-info:hover {
  background-color: rgb(15.3, 140.25, 198.9);
}

a.btn-info-light,
button.btn-info-light,
.btn-info-light {
  background-color: rgb(202.2942857143, 235.4042857143, 250.9457142857);
  color: #12a5ea;
  border: 1px solid rgb(151.7904, 216.6272, 247.0608);
  font-weight: 500;
}
a.btn-info-light:hover,
button.btn-info-light:hover,
.btn-info-light:hover {
  background-color: rgb(160.2077142857, 219.7567142857, 247.7082857143);
}

a.btn-info-outline,
button.btn-info-outline,
.btn-info-outline {
  background-color: transparent;
  color: #12a5ea;
  border: 1px solid #0d8fcc;
}
a.btn-info-outline:hover,
button.btn-info-outline:hover,
.btn-info-outline:hover {
  background-color: #12a5ea;
  color: #ffffff;
}

.btn-check:checked + .btn-info-outline {
  background-color: #12a5ea;
  color: #ffffff;
  border-color: #0d8fcc;
}

a.btn-warning,
button.btn-warning,
.btn-warning {
  background-color: #f48600;
  color: #ffffff;
}
a.btn-warning:hover,
button.btn-warning:hover,
.btn-warning:hover {
  background-color: rgb(207.4, 113.9, 0);
}

a.btn-warning-light,
button.btn-warning-light,
.btn-warning-light {
  background-color: rgb(255, 228.6180327869, 196.48);
  color: #f48600;
  border: 1px solid rgb(255, 204.193704918, 142.3024);
  font-weight: 500;
}
a.btn-warning-light:hover,
button.btn-warning-light:hover,
.btn-warning-light:hover {
  background-color: rgb(255, 208.2644262295, 151.332);
}

a.btn-warning-outline,
button.btn-warning-outline,
.btn-warning-outline {
  background-color: transparent;
  color: #f48600;
  border: 1px solid #d76f00;
}
a.btn-warning-outline:hover,
button.btn-warning-outline:hover,
.btn-warning-outline:hover {
  background-color: #f48600;
  color: #ffffff;
}

.btn-check:checked + .btn-warning-outline {
  background-color: #f48600;
  color: #ffffff;
  border-color: #d76f00;
}

a.btn-danger,
button.btn-danger,
.btn-danger {
  background-color: #f2415c;
  color: #ffffff;
}
a.btn-danger:hover,
button.btn-danger:hover,
.btn-danger:hover {
  background-color: rgb(239.0509852217, 21.8990147783, 55.0238916256);
}

a.btn-danger-light,
button.btn-danger-light,
.btn-danger-light {
  background-color: rgb(252.14, 213.2, 219.14);
  color: #f2415c;
  border: 1px solid rgb(248.5639881773, 160.9352118227, 174.3023133005);
  font-weight: 500;
}
a.btn-danger-light:hover,
button.btn-danger-light:hover,
.btn-danger-light:hover {
  background-color: rgb(249.1599901478, 169.6460098522, 181.7752610837);
}

a.btn-danger-outline,
button.btn-danger-outline,
.btn-danger-outline {
  background-color: transparent;
  color: #f2415c;
  border: 1px solid #d82e47;
}
a.btn-danger-outline:hover,
button.btn-danger-outline:hover,
.btn-danger-outline:hover {
  background-color: #f2415c;
  color: #ffffff;
}

.btn-check:checked + .btn-danger-outline {
  background-color: #f2415c;
  color: #ffffff;
  border-color: #d82e47;
}

a.btn-alert,
button.btn-alert,
.btn-alert {
  background-color: #cf25f6;
  color: #ffffff;
}
a.btn-alert:hover,
button.btn-alert:hover,
.btn-alert:hover {
  background-color: rgb(189.6848017621, 9.5372246696, 231.0127753304);
}

a.btn-alert-light,
button.btn-alert-light,
.btn-alert-light {
  background-color: rgb(244.44, 207.04, 253.02);
  color: #cf25f6;
  border: 1px solid rgb(232.766230837, 154.0216317181, 250.8311682819);
  font-weight: 500;
}
a.btn-alert-light:hover,
button.btn-alert-light:hover,
.btn-alert-light:hover {
  background-color: rgb(234.7118590308, 162.8580264317, 251.1959735683);
}

a.btn-alert-outline,
button.btn-alert-outline,
.btn-alert-outline {
  background-color: transparent;
  color: #cf25f6;
  border: 1px solid #8e07ae;
}
a.btn-alert-outline:hover,
button.btn-alert-outline:hover,
.btn-alert-outline:hover {
  background-color: #cf25f6;
  color: #ffffff;
}

.btn-check:checked + .btn-alert-outline {
  background-color: #cf25f6;
  color: #ffffff;
  border-color: #8e07ae;
}

a.btn-mute,
button.btn-mute,
.btn-mute {
  background-color: #c8c8c8;
  color: #646464;
}
a.btn-mute:hover,
button.btn-mute:hover,
.btn-mute:hover {
  background-color: #aaaaaa;
}

a.btn-mute-light,
button.btn-mute-light,
.btn-mute-light {
  background-color: rgb(242.9, 242.9, 242.9);
  color: #c8c8c8;
  border: 1px solid rgb(213.752, 213.752, 213.752);
  font-weight: 500;
}
a.btn-mute-light:hover,
button.btn-mute-light:hover,
.btn-mute-light:hover {
  background-color: rgb(218.61, 218.61, 218.61);
}

a.btn-mute-outline,
button.btn-mute-outline,
.btn-mute-outline {
  background-color: transparent;
  color: #c8c8c8;
  border: 1px solid #dcdcdc;
}
a.btn-mute-outline:hover,
button.btn-mute-outline:hover,
.btn-mute-outline:hover {
  background-color: #c8c8c8;
  color: #646464;
}

.btn-check:checked + .btn-mute-outline {
  background-color: #c8c8c8;
  color: #646464;
  border-color: #dcdcdc;
}

a.btn-blue,
button.btn-blue,
.btn-blue {
  background-color: #3b82f6;
  color: #ffffff;
}
a.btn-blue:hover,
button.btn-blue:hover,
.btn-blue:hover {
  background-color: rgb(15.2585365854, 102.1036585366, 243.9914634146);
}

a.btn-blue-light,
button.btn-blue-light,
.btn-blue-light {
  background-color: rgb(211.88, 227.5, 253.02);
  color: #3b82f6;
  border: 1px solid rgb(158.5412292683, 193.4829268293, 250.5707707317);
  font-weight: 500;
}
a.btn-blue-light:hover,
button.btn-blue-light:hover,
.btn-blue-light:hover {
  background-color: rgb(167.4310243902, 199.1524390244, 250.9789756098);
}

a.btn-blue-outline,
button.btn-blue-outline,
.btn-blue-outline {
  background-color: transparent;
  color: #3b82f6;
  border: 1px solid #2563eb;
}
a.btn-blue-outline:hover,
button.btn-blue-outline:hover,
.btn-blue-outline:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-check:checked + .btn-blue-outline {
  background-color: #3b82f6;
  color: #ffffff;
  border-color: #2563eb;
}

a.btn-blue-sky,
button.btn-blue-sky,
.btn-blue-sky {
  background-color: #00a5fe;
  color: #ffffff;
}
a.btn-blue-sky:hover,
button.btn-blue-sky:hover,
.btn-blue-sky:hover {
  background-color: rgb(0, 140.25, 215.9);
}

a.btn-blue-sky-light,
button.btn-blue-sky-light,
.btn-blue-sky-light {
  background-color: rgb(198.68, 235.2658267717, 255);
  color: #00a5fe;
  border: 1px solid rgb(144.2384, 216.1898330709, 255);
  font-weight: 500;
}
a.btn-blue-sky-light:hover,
button.btn-blue-sky-light:hover,
.btn-blue-sky-light:hover {
  background-color: rgb(153.312, 219.3691653543, 255);
}

a.btn-blue-sky-outline,
button.btn-blue-sky-outline,
.btn-blue-sky-outline {
  background-color: transparent;
  color: #00a5fe;
  border: 1px solid #0086d1;
}
a.btn-blue-sky-outline:hover,
button.btn-blue-sky-outline:hover,
.btn-blue-sky-outline:hover {
  background-color: #00a5fe;
  color: #ffffff;
}

.btn-check:checked + .btn-blue-sky-outline {
  background-color: #00a5fe;
  color: #ffffff;
  border-color: #0086d1;
}

a.btn-green,
button.btn-green,
.btn-green {
  background-color: #25bf5e;
  color: #ffffff;
}
a.btn-green:hover,
button.btn-green:hover,
.btn-green:hover {
  background-color: rgb(31.45, 162.35, 79.9);
}

a.btn-green-light,
button.btn-green-light,
.btn-green-light {
  background-color: rgb(203.0278947368, 244.9321052632, 218.5378947368);
  color: #25bf5e;
  border: 1px solid rgb(157.9961263158, 236.2086736842, 186.9449263158);
  font-weight: 500;
}
a.btn-green-light:hover,
button.btn-green-light:hover,
.btn-green-light:hover {
  background-color: rgb(165.5014210526, 237.6625789474, 192.2104210526);
}

a.btn-green-outline,
button.btn-green-outline,
.btn-green-outline {
  background-color: transparent;
  color: #25bf5e;
  border: 1px solid #1d994d;
}
a.btn-green-outline:hover,
button.btn-green-outline:hover,
.btn-green-outline:hover {
  background-color: #25bf5e;
  color: #ffffff;
}

.btn-check:checked + .btn-green-outline {
  background-color: #25bf5e;
  color: #ffffff;
  border-color: #1d994d;
}

a.btn-lime,
button.btn-lime,
.btn-lime {
  background-color: #97d900;
  color: #ffffff;
}
a.btn-lime:hover,
button.btn-lime:hover,
.btn-lime:hover {
  background-color: rgb(128.35, 184.45, 0);
}

a.btn-lime-light,
button.btn-lime-light,
.btn-lime-light {
  background-color: rgb(235.3946543779, 255, 190.54);
  color: #97d900;
  border: 1px solid rgb(219.1334709677, 255, 137.0752);
  font-weight: 500;
}
a.btn-lime-light:hover,
button.btn-lime-light:hover,
.btn-lime-light:hover {
  background-color: rgb(221.8436682028, 255, 145.986);
}

a.btn-lime-outline,
button.btn-lime-outline,
.btn-lime-outline {
  background-color: transparent;
  color: #97d900;
  border: 1px solid #8bc700;
}
a.btn-lime-outline:hover,
button.btn-lime-outline:hover,
.btn-lime-outline:hover {
  background-color: #97d900;
  color: #ffffff;
}

.btn-check:checked + .btn-lime-outline {
  background-color: #97d900;
  color: #ffffff;
  border-color: #8bc700;
}

a.btn-aguagreen,
button.btn-aguagreen,
.btn-aguagreen {
  background-color: #22bf9e;
  color: #ffffff;
}
a.btn-aguagreen:hover,
button.btn-aguagreen:hover,
.btn-aguagreen:hover {
  background-color: rgb(28.9, 162.35, 134.3);
}

a.btn-aguagreen-light,
button.btn-aguagreen-light,
.btn-aguagreen-light {
  background-color: rgb(201.7746666667, 245.5253333333, 236.3293333333);
  color: #22bf9e;
  border: 1px solid rgb(156.2097066667, 237.4142933333, 220.3458133333);
  font-weight: 500;
}
a.btn-aguagreen-light:hover,
button.btn-aguagreen-light:hover,
.btn-aguagreen-light:hover {
  background-color: rgb(163.8038666667, 238.7661333333, 223.0097333333);
}

a.btn-aguagreen-outline,
button.btn-aguagreen-outline,
.btn-aguagreen-outline {
  background-color: transparent;
  color: #22bf9e;
  border: 1px solid #199e83;
}
a.btn-aguagreen-outline:hover,
button.btn-aguagreen-outline:hover,
.btn-aguagreen-outline:hover {
  background-color: #22bf9e;
  color: #ffffff;
}

.btn-check:checked + .btn-aguagreen-outline {
  background-color: #22bf9e;
  color: #ffffff;
  border-color: #199e83;
}

a.btn-orange,
button.btn-orange,
.btn-orange {
  background-color: #f5850a;
  color: #ffffff;
}
a.btn-orange:hover,
button.btn-orange:hover,
.btn-orange:hover {
  background-color: rgb(208.25, 113.05, 8.5);
}

a.btn-orange-light,
button.btn-orange-light,
.btn-orange-light {
  background-color: rgb(252.8, 228.16, 201.1);
  color: #f5850a;
  border: 1px solid rgb(250.664, 202.1008, 148.768);
  font-weight: 500;
}
a.btn-orange-light:hover,
button.btn-orange-light:hover,
.btn-orange-light:hover {
  background-color: rgb(251.02, 206.444, 157.49);
}

a.btn-orange-outline,
button.btn-orange-outline,
.btn-orange-outline {
  background-color: transparent;
  color: #f5850a;
  border: 1px solid #d46e00;
}
a.btn-orange-outline:hover,
button.btn-orange-outline:hover,
.btn-orange-outline:hover {
  background-color: #f5850a;
  color: #ffffff;
}

.btn-check:checked + .btn-orange-outline {
  background-color: #f5850a;
  color: #ffffff;
  border-color: #d46e00;
}

a.btn-purple,
button.btn-purple,
.btn-purple {
  background-color: #a027f0;
  color: #ffffff;
}
a.btn-purple:hover,
button.btn-purple:hover,
.btn-purple:hover {
  background-color: rgb(139.6207792208, 15.3993506494, 221.7506493506);
}

a.btn-purple-light,
button.btn-purple-light,
.btn-purple-light {
  background-color: rgb(234.1, 207.48, 251.7);
  color: #a027f0;
  border: 1px solid rgb(211.4391688312, 155.956425974, 248.121974026);
  font-weight: 500;
}
a.btn-purple-light:hover,
button.btn-purple-light:hover,
.btn-purple-light:hover {
  background-color: rgb(215.215974026, 164.5436883117, 248.7183116883);
}

a.btn-purple-outline,
button.btn-purple-outline,
.btn-purple-outline {
  background-color: transparent;
  color: #a027f0;
  border: 1px solid #810ecb;
}
a.btn-purple-outline:hover,
button.btn-purple-outline:hover,
.btn-purple-outline:hover {
  background-color: #a027f0;
  color: #ffffff;
}

.btn-check:checked + .btn-purple-outline {
  background-color: #a027f0;
  color: #ffffff;
  border-color: #810ecb;
}

a.btn-cyan,
button.btn-cyan,
.btn-cyan {
  background-color: #00ffff;
  color: #000000;
}
a.btn-cyan:hover,
button.btn-cyan:hover,
.btn-cyan:hover {
  background-color: rgb(0, 216.75, 216.75);
}

a.btn-cyan-light,
button.btn-cyan-light,
.btn-cyan-light {
  background-color: rgb(198.9, 255, 255);
  color: #00ffff;
  border: 1px solid rgb(144.432, 255, 255);
  font-weight: 500;
}
a.btn-cyan-light:hover,
button.btn-cyan-light:hover,
.btn-cyan-light:hover {
  background-color: rgb(153.51, 255, 255);
}

a.btn-cyan-outline,
button.btn-cyan-outline,
.btn-cyan-outline {
  background-color: transparent;
  color: #00ffff;
  border: 1px solid #00cfcf;
}
a.btn-cyan-outline:hover,
button.btn-cyan-outline:hover,
.btn-cyan-outline:hover {
  background-color: #00ffff;
  color: #000000;
}

.btn-check:checked + .btn-cyan-outline {
  background-color: #00ffff;
  color: #000000;
  border-color: #00cfcf;
}

a.btn-magenta,
button.btn-magenta,
.btn-magenta {
  background-color: #ff00ff;
  color: #ffffff;
}
a.btn-magenta:hover,
button.btn-magenta:hover,
.btn-magenta:hover {
  background-color: rgb(216.75, 0, 216.75);
}

a.btn-magenta-light,
button.btn-magenta-light,
.btn-magenta-light {
  background-color: rgb(255, 198.9, 255);
  color: #ff00ff;
  border: 1px solid rgb(255, 144.432, 255);
  font-weight: 500;
}
a.btn-magenta-light:hover,
button.btn-magenta-light:hover,
.btn-magenta-light:hover {
  background-color: rgb(255, 153.51, 255);
}

a.btn-magenta-outline,
button.btn-magenta-outline,
.btn-magenta-outline {
  background-color: transparent;
  color: #ff00ff;
  border: 1px solid #d100d1;
}
a.btn-magenta-outline:hover,
button.btn-magenta-outline:hover,
.btn-magenta-outline:hover {
  background-color: #ff00ff;
  color: #ffffff;
}

.btn-check:checked + .btn-magenta-outline {
  background-color: #ff00ff;
  color: #ffffff;
  border-color: #d100d1;
}

a.btn-yellow,
button.btn-yellow,
.btn-yellow {
  background-color: #ffff00;
  color: #000000;
}
a.btn-yellow:hover,
button.btn-yellow:hover,
.btn-yellow:hover {
  background-color: rgb(216.75, 216.75, 0);
}

a.btn-yellow-light,
button.btn-yellow-light,
.btn-yellow-light {
  background-color: rgb(255, 255, 198.9);
  color: #ffff00;
  border: 1px solid rgb(255, 255, 144.432);
  font-weight: 500;
}
a.btn-yellow-light:hover,
button.btn-yellow-light:hover,
.btn-yellow-light:hover {
  background-color: rgb(255, 255, 153.51);
}

a.btn-yellow-outline,
button.btn-yellow-outline,
.btn-yellow-outline {
  background-color: transparent;
  color: #ffff00;
  border: 1px solid #d1d100;
}
a.btn-yellow-outline:hover,
button.btn-yellow-outline:hover,
.btn-yellow-outline:hover {
  background-color: #ffff00;
  color: #000000;
}

.btn-check:checked + .btn-yellow-outline {
  background-color: #ffff00;
  color: #000000;
  border-color: #d1d100;
}

a.btn-gray,
button.btn-gray,
.btn-gray {
  background-color: #6b7280;
  color: #ffffff;
}
a.btn-gray:hover,
button.btn-gray:hover,
.btn-gray:hover {
  background-color: rgb(90.95, 96.9, 108.8);
}

a.btn-gray-light,
button.btn-gray-light,
.btn-gray-light {
  background-color: rgb(222.0468085106, 223.8489361702, 227.4531914894);
  color: #6b7280;
  border: 1px solid rgb(192.6667234043, 196.0755744681, 202.8932765957);
  font-weight: 500;
}
a.btn-gray-light:hover,
button.btn-gray-light:hover,
.btn-gray-light:hover {
  background-color: rgb(197.5634042553, 200.7044680851, 206.9865957447);
}

a.btn-gray-outline,
button.btn-gray-outline,
.btn-gray-outline {
  background-color: transparent;
  color: #6b7280;
  border: 1px solid #4b5563;
}
a.btn-gray-outline:hover,
button.btn-gray-outline:hover,
.btn-gray-outline:hover {
  background-color: #6b7280;
  color: #ffffff;
}

.btn-check:checked + .btn-gray-outline {
  background-color: #6b7280;
  color: #ffffff;
  border-color: #4b5563;
}

a.btn-light,
button.btn-light,
.btn-light {
  background-color: #f3f4f6;
  color: #111827;
}
a.btn-light:hover,
button.btn-light:hover,
.btn-light:hover {
  background-color: rgb(201.0857142857, 205.5785714286, 214.5642857143);
}

a.btn-light-light,
button.btn-light-light,
.btn-light-light {
  background-color: rgb(252.36, 252.58, 253.02);
  color: #f3f4f6;
  border: 1px solid rgb(217.7053714286, 220.8132571429, 227.0290285714);
  font-weight: 500;
}
a.btn-light-light:hover,
button.btn-light-light:hover,
.btn-light-light:hover {
  background-color: rgb(223.4811428571, 226.1077142857, 231.3608571429);
}

a.btn-light-outline,
button.btn-light-outline,
.btn-light-outline {
  background-color: transparent;
  color: #f3f4f6;
  border: 1px solid #d1d5db;
}
a.btn-light-outline:hover,
button.btn-light-outline:hover,
.btn-light-outline:hover {
  background-color: #f3f4f6;
  color: #111827;
}

.btn-check:checked + .btn-light-outline {
  background-color: #f3f4f6;
  color: #111827;
  border-color: #d1d5db;
}

a.btn-dark,
button.btn-dark,
.btn-dark {
  background-color: #374151;
  color: #ffffff;
}
a.btn-dark:hover,
button.btn-dark:hover,
.btn-dark:hover {
  background-color: rgb(46.75, 55.25, 68.85);
}

a.btn-dark-light,
button.btn-dark-light,
.btn-dark-light {
  background-color: rgb(205.995, 212.045, 221.725);
  color: #374151;
  border: 1px solid rgb(175.4256, 185.2496, 200.968);
  font-weight: 500;
}
a.btn-dark-light:hover,
button.btn-dark-light:hover,
.btn-dark-light:hover {
  background-color: rgb(180.5205, 189.7155, 204.4275);
}

a.btn-dark-outline,
button.btn-dark-outline,
.btn-dark-outline {
  background-color: transparent;
  color: #374151;
  border: 1px solid #1f2937;
}
a.btn-dark-outline:hover,
button.btn-dark-outline:hover,
.btn-dark-outline:hover {
  background-color: #374151;
  color: #ffffff;
}

.btn-check:checked + .btn-dark-outline {
  background-color: #374151;
  color: #ffffff;
  border-color: #1f2937;
}

.ng-btn-check {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.ng-btn-group {
  display: inline-flex;
  vertical-align: middle;
  align-items: stretch;
}
.ng-btn-group > .ng-btn,
.ng-btn-group > .ng-dropdown .ng-btn {
  border-radius: 0;
  margin: 0;
  margin-left: -1px;
  height: auto;
  align-self: stretch;
}
.ng-btn-group > .ng-btn:first-child,
.ng-btn-group > .ng-dropdown:first-child .ng-btn {
  border-top-left-radius: var(--ng-radius);
  border-bottom-left-radius: var(--ng-radius);
  margin-left: 0;
}
.ng-btn-group > .ng-btn:last-child,
.ng-btn-group > .ng-dropdown:last-child .ng-btn {
  border-top-right-radius: var(--ng-radius);
  border-bottom-right-radius: var(--ng-radius);
}
.ng-btn-group > .ng-dropdown {
  display: flex;
  align-items: stretch;
}
.ng-btn-group > .ng-dropdown .ng-btn {
  padding: 0.48em 0.75em;
}
.ng-btn-group > .ng-dropdown .dropdown-menu {
  right: 0;
  left: auto;
}

.ng-btn-group-equal {
  display: flex;
}
.ng-btn-group-equal > .ng-btn,
.ng-btn-group-equal > .ng-dropdown {
  flex: 1 1 0;
  min-width: 0;
}
.ng-btn-group-equal > .ng-dropdown .ng-btn {
  width: 100%;
  justify-content: center;
}

.ng-btn-group-vertical {
  display: flex;
  flex-direction: column;
}
.ng-btn-group-vertical > .ng-btn {
  width: 100%;
  border-radius: 0;
  margin: 0;
}
.ng-btn-group-vertical > .ng-btn:first-of-type {
  border-top-left-radius: var(--ng-radius);
  border-top-right-radius: var(--ng-radius);
}
.ng-btn-group-vertical > .ng-btn:last-of-type {
  border-bottom-left-radius: var(--ng-radius);
  border-bottom-right-radius: var(--ng-radius);
}

.ng-btn-check:checked + .ng-btn-primary {
  background-color: rgb(1.6, 93.6, 139.2);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-primary-light {
  background-color: rgb(130.5678545455, 212.8074909091, 253.5697454545);
  border-color: rgb(130.5678545455, 212.8074909091, 253.5697454545);
  color: #0275ae;
}

.ng-btn-check:checked + .ng-btn-secondary {
  background-color: rgb(164, 19.2, 52.8);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-secondary-light {
  background-color: rgb(242.8845484716, 151.5138515284, 172.7158917031);
  border-color: rgb(242.8845484716, 151.5138515284, 172.7158917031);
  color: #cd1842;
}

.ng-btn-check:checked + .ng-btn-success {
  background-color: rgb(24, 137.6, 93.6);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-success-light {
  background-color: rgb(152.1160712871, 237.0551287129, 204.1561980198);
  border-color: rgb(152.1160712871, 237.0551287129, 204.1561980198);
  color: #1eac75;
}

.ng-btn-check:checked + .ng-btn-info {
  background-color: rgb(14.4, 132, 187.2);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-info-light {
  background-color: rgb(151.7904, 216.6272, 247.0608);
  border-color: rgb(151.7904, 216.6272, 247.0608);
  color: #12a5ea;
}

.ng-btn-check:checked + .ng-btn-warning {
  background-color: rgb(195.2, 107.2, 0);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-warning-light {
  background-color: rgb(255, 204.193704918, 142.3024);
  border-color: rgb(255, 204.193704918, 142.3024);
  color: #f48600;
}

.ng-btn-check:checked + .ng-btn-danger {
  background-color: rgb(229.8719211823, 15.7280788177, 48.39408867);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-danger-light {
  background-color: rgb(248.5639881773, 160.9352118227, 174.3023133005);
  border-color: rgb(248.5639881773, 160.9352118227, 174.3023133005);
  color: #f2415c;
}

.ng-btn-check:checked + .ng-btn-alert {
  background-color: rgb(178.5268722467, 8.9762114537, 217.4237885463);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-alert-light {
  background-color: rgb(232.766230837, 154.0216317181, 250.8311682819);
  border-color: rgb(232.766230837, 154.0216317181, 250.8311682819);
  color: #cf25f6;
}

.ng-btn-check:checked + .ng-btn-mute {
  background-color: #a0a0a0;
  color: #646464;
}

.ng-btn-check:checked + .ng-btn-mute-light {
  background-color: rgb(213.752, 213.752, 213.752);
  border-color: rgb(213.752, 213.752, 213.752);
  color: #c8c8c8;
}

.ng-btn-check:checked + .ng-btn-blue {
  background-color: rgb(10.712195122, 95.2195121951, 233.287804878);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-blue-light {
  background-color: rgb(158.5412292683, 193.4829268293, 250.5707707317);
  border-color: rgb(158.5412292683, 193.4829268293, 250.5707707317);
  color: #3b82f6;
}

.ng-btn-check:checked + .ng-btn-blue-sky {
  background-color: rgb(0, 132, 203.2);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-blue-sky-light {
  background-color: rgb(144.2384, 216.1898330709, 255);
  border-color: rgb(144.2384, 216.1898330709, 255);
  color: #00a5fe;
}

.ng-btn-check:checked + .ng-btn-green {
  background-color: rgb(29.6, 152.8, 75.2);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-green-light {
  background-color: rgb(157.9961263158, 236.2086736842, 186.9449263158);
  border-color: rgb(157.9961263158, 236.2086736842, 186.9449263158);
  color: #25bf5e;
}

.ng-btn-check:checked + .ng-btn-lime {
  background-color: rgb(120.8, 173.6, 0);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-lime-light {
  background-color: rgb(219.1334709677, 255, 137.0752);
  border-color: rgb(219.1334709677, 255, 137.0752);
  color: #97d900;
}

.ng-btn-check:checked + .ng-btn-aguagreen {
  background-color: rgb(27.2, 152.8, 126.4);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-aguagreen-light {
  background-color: rgb(156.2097066667, 237.4142933333, 220.3458133333);
  border-color: rgb(156.2097066667, 237.4142933333, 220.3458133333);
  color: #22bf9e;
}

.ng-btn-check:checked + .ng-btn-orange {
  background-color: rgb(196, 106.4, 8);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-orange-light {
  background-color: rgb(250.664, 202.1008, 148.768);
  border-color: rgb(250.664, 202.1008, 148.768);
  color: #f5850a;
}

.ng-btn-check:checked + .ng-btn-purple {
  background-color: rgb(131.4077922078, 14.4935064935, 208.7064935065);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-purple-light {
  background-color: rgb(211.4391688312, 155.956425974, 248.121974026);
  border-color: rgb(211.4391688312, 155.956425974, 248.121974026);
  color: #a027f0;
}

.ng-btn-check:checked + .ng-btn-cyan {
  background-color: #00cccc;
  color: #000000;
}

.ng-btn-check:checked + .ng-btn-cyan-light {
  background-color: rgb(144.432, 255, 255);
  border-color: rgb(144.432, 255, 255);
  color: #00ffff;
}

.ng-btn-check:checked + .ng-btn-magenta {
  background-color: #cc00cc;
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-magenta-light {
  background-color: rgb(255, 144.432, 255);
  border-color: rgb(255, 144.432, 255);
  color: #ff00ff;
}

.ng-btn-check:checked + .ng-btn-yellow {
  background-color: #cccc00;
  color: #000000;
}

.ng-btn-check:checked + .ng-btn-yellow-light {
  background-color: rgb(255, 255, 144.432);
  border-color: rgb(255, 255, 144.432);
  color: #ffff00;
}

.ng-btn-check:checked + .ng-btn-gray {
  background-color: rgb(85.6, 91.2, 102.4);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-gray-light {
  background-color: rgb(192.6667234043, 196.0755744681, 202.8932765957);
  border-color: rgb(192.6667234043, 196.0755744681, 202.8932765957);
  color: #6b7280;
}

.ng-btn-check:checked + .ng-btn-light {
  background-color: rgb(187.1142857143, 192.7714285714, 204.0857142857);
  color: #111827;
}

.ng-btn-check:checked + .ng-btn-light-light {
  background-color: rgb(217.7053714286, 220.8132571429, 227.0290285714);
  border-color: rgb(217.7053714286, 220.8132571429, 227.0290285714);
  color: #f3f4f6;
}

.ng-btn-check:checked + .ng-btn-dark {
  background-color: rgb(44, 52, 64.8);
  color: #ffffff;
}

.ng-btn-check:checked + .ng-btn-dark-light {
  background-color: rgb(175.4256, 185.2496, 200.968);
  border-color: rgb(175.4256, 185.2496, 200.968);
  color: #374151;
}

.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.7;
  color: transparent !important;
}

.is-loading::after {
  content: "";
  position: absolute;
  width: 1.25em;
  height: 1.25em;
  border: 2.5px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.4s linear infinite;
  will-change: transform;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.ng-dropdown {
  position: relative;
  display: inline-block;
  color: var(--ng-dropdown-color);
  z-index: 300;
  /* base freccia */
}
.ng-dropdown .dropdown-trigger:not(.ng-btn) {
  color: var(--ng-dropdown-color);
  background: var(--ng-dropdown-background);
  border: var(--ng-dropdown-border);
  font: inherit;
  cursor: pointer;
  transition: var(--ng-transition);
}
.ng-dropdown .dropdown-trigger:not(.ng-btn):hover {
  color: var(--ng-dropdown-color-hover);
}
.ng-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 160px;
  color: var(--ng-dropdown-item-color);
  background: var(--ng-dropdown-item-background);
  border: var(--ng-dropdown-item-border);
  border-radius: var(--ng-radius);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: none;
  z-index: 301;
}
.ng-dropdown .dropdown-menu p {
  padding: var(--ng-dropdown-padding);
}
.ng-dropdown .dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--ng-dropdown-item-color);
  background: var(--ng-dropdown-item-background);
  text-decoration: none;
  font-size: 0.83rem;
  text-align: left;
  margin-right: 0;
  transition: var(--ng-transition);
}
.ng-dropdown .dropdown-menu a:hover {
  color: var(--ng-dropdown-item-color-hover);
  background: var(--ng-dropdown-item-background-hover);
}
.ng-dropdown .dropdown-menu a.active {
  font-weight: bold;
}
.ng-dropdown .dropdown-menu a.active:after {
  content: "•";
  margin-left: 3px;
  color: var(--ng-dropdown-item-color-hover);
}
.ng-dropdown .dropdown-menu .title {
  padding: var(--ng-dropdown-padding);
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ng-dropdown-item-title-color);
  background: var(--ng-dropdown-item-title-background);
  letter-spacing: 0.03em;
  pointer-events: none;
}
.ng-dropdown .dropdown-menu .divider {
  height: 15px;
  background: var(--ng-dropdown-item-background);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ng-dropdown .dropdown-menu.show, .ng-dropdown.hover-mode:hover .dropdown-menu, .ng-dropdown.click-mode.active .dropdown-menu {
  opacity: 1;
  transform: translateY(8px);
  pointer-events: auto;
}
.ng-dropdown.align-left .dropdown-menu {
  left: 0;
  right: auto;
}
.ng-dropdown.align-right .dropdown-menu {
  right: 0;
  left: auto;
}
.ng-dropdown.align-center .dropdown-menu {
  left: 50%;
  right: auto;
  transform: translate(-50%, 8px);
}
.ng-dropdown.align-center .dropdown-menu.show, .ng-dropdown.align-center.hover-mode:hover .dropdown-menu, .ng-dropdown.align-center.click-mode.active .dropdown-menu {
  transform: translate(-50%, 8px);
}
.ng-dropdown .dropdown-menu::before {
  display: none;
}
.ng-dropdown.with-arrow .dropdown-menu::before {
  display: block !important;
  content: "";
  position: absolute;
  top: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--ng-link-block-border);
}

/* allineamenti dinamici freccia */
.ng-dropdown.with-arrow.align-left .dropdown-menu::before {
  left: 16px;
}

.ng-dropdown.with-arrow.align-right .dropdown-menu::before {
  right: 21px;
}

.ng-dropdown.with-arrow.align-center .dropdown-menu::before {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

/* allineamenti dinamici freccia + icona */
.ng-dropdown.with-arrow.align-left:has(.dropdown-trigger i.ph) .dropdown-menu::before {
  left: 3px;
}

.ng-dropdown.with-arrow.align-right:has(.dropdown-trigger i.ph) .dropdown-menu::before {
  right: 25px;
}

.ng-dropdown.with-arrow.align-center:has(.dropdown-trigger i.ph) .dropdown-trigger {
  margin-right: 0;
}

.ng-tabs-layout {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ng-tabs-layout.left {
  flex-direction: row;
}
.ng-tabs-layout.right {
  flex-direction: row-reverse;
}
.ng-tabs-layout.top {
  flex-direction: column;
}
.ng-tabs-layout.bottom {
  flex-direction: column-reverse;
}

.ng-tabs-container {
  flex: 1 1 auto;
}

.ng-tabs-layout.bottom .ng-tabs .tab::after {
  top: -1px;
  bottom: auto;
}

.ng-tabs-layout.bottom .ng-tabs,
.ng-tabs-layout.bottom .ng-tabs .tab.ng-line-hover-slide::after,
.ng-tabs-layout.bottom .ng-tabs .tab.ng-line-hover-line-top::after,
.ng-tabs-layout.bottom .ng-tabs .tab.ng-line-hover-led::after {
  top: -1px;
  bottom: auto;
  border-bottom: 0;
  border-top: 1px solid var(--ng-color-border-light);
}

.ng-tabs-container {
  flex: 1 1 auto;
}

.ng-tabs .tab .ng-dropdown .dropdown-trigger, .ng-tabs-vertical .tab .ng-dropdown .dropdown-trigger {
  padding: 0;
}

.ng-tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 1rem;
  border-bottom: 1px solid var(--ng-color-border-light);
}
.ng-tabs.left {
  justify-content: flex-start;
}
.ng-tabs.center {
  justify-content: center;
}
.ng-tabs.right {
  justify-content: flex-end;
}
.ng-tabs.spread {
  justify-content: space-between;
}
.ng-tabs.spaced {
  justify-content: space-around;
}
.ng-tabs.spaced-strict {
  justify-content: space-evenly;
}
.ng-tabs .tab {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--ng-color-grey_middle);
  text-decoration: none;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s ease;
}
.ng-tabs .tab:hover {
  color: var(--ng-color-alt_1);
}
.ng-tabs .tab::after {
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--ng-color-alt_1);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
}
.ng-tabs .tab.ng-line-hover-slide::after {
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
}
.ng-tabs .tab.ng-line-hover-slide:hover::after, .ng-tabs .tab.active.ng-line-hover-slide::after {
  transform: translateX(-50%) scaleX(1);
}
.ng-tabs .tab.ng-line-hover-led::after {
  left: 50%;
  transform: translateX(-50%) scaleX(0.1) scaleY(3);
  transform-origin: center;
}
.ng-tabs .tab.ng-line-hover-led:hover::after, .ng-tabs .tab.active.ng-line-hover-led::after {
  transform: translateX(-50%) scaleX(1) scaleY(1.8);
}
.ng-tabs .tab.active {
  color: var(--ng-color-alt_1);
  font-weight: 600;
}
.ng-tabs .tab.active::after {
  transform: scaleX(1);
}

.ng-tabs-vertical {
  width: max-content;
  max-width: 200px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ng-tabs-vertical .tab {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--ng-color-grey_middle);
  text-align: left;
  cursor: pointer;
  border: none;
  background: none;
  transition: color 0.2s ease;
}
.ng-tabs-vertical .tab:hover {
  color: var(--ng-color-alt_1);
}
.ng-tabs-vertical .tab::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--ng-color-alt_1);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}
.ng-tabs-layout.left .ng-tabs-vertical .tab::after {
  left: 0;
  transform-origin: top;
}
.ng-tabs-layout.right .ng-tabs-vertical .tab::after {
  right: 0;
  transform-origin: top;
}
.ng-tabs-vertical .tab.active {
  color: var(--ng-color-alt_1);
  font-weight: 600;
}
.ng-tabs-vertical .tab.active::after {
  transform: scaleY(1);
}

.ng-tabs-layout.left > .ng-tabs-vertical {
  padding-right: 15px;
  border-right: 1px solid #ccc;
}

.ng-tabs-layout.right > .ng-tabs-vertical {
  padding-left: 15px;
  border-left: 1px solid #ccc;
}

.ng-tabs.pills .tab,
.ng-tabs-vertical.pills .tab {
  border-radius: var(--ng-radius, 20px);
  background-color: var(--ng-color-bg-soft, #f2f2f2);
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  line-height: 1.2;
}

.ng-tabs.pills .tab:hover,
.ng-tabs-vertical.pills .tab:hover {
  background-color: var(--ng-color-bg-hover, #e6e6e6);
  color: var(--ng-color-alt_1);
}

.ng-tabs.pills .tab.active,
.ng-tabs-vertical.pills .tab.active {
  background-color: var(--ng-color-alt_1);
  color: #fff;
}
.ng-tabs.pills .tab.active::after,
.ng-tabs-vertical.pills .tab.active::after {
  display: none;
}

.ng-tabs.pills,
.ng-tabs-vertical.pills {
  border: none;
}

.tab.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.ng-accordion.nofill > .acc-item > .toggle-trigger {
  background: transparent;
}
.ng-accordion .acc-header {
  padding: 1.5rem;
  background: var(--ng-light-bg);
  text-align: center;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
}
.ng-accordion .acc-item {
  border: 1px solid transparent;
}
.ng-accordion .acc-item .toggle-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  cursor: pointer;
  background: var(--ng-light-bg);
  color: var(--ng-dark-c);
  text-decoration: none;
  transition: background 0.2s ease;
  margin-bottom: 0.375rem;
}
.ng-accordion .acc-item .toggle-trigger:hover {
  background: rgb(124, 124, 170);
  color: var(--ng-light-c);
}
.ng-accordion .acc-item .ng-toggle-target {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
}
.ng-accordion .acc-item .ng-toggle-target > * {
  padding: 20px;
}
.ng-accordion .acc-item .ng-toggle-target.is-open {
  opacity: 1;
  transform: translateY(0);
}

.ng-card {
  background: #fff;
  border: 1px solid transparent;
  border-radius: var(--ng-radius);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease;
  box-shadow: 0px 0px 12px 5px rgba(0, 0, 0, 0.08);
}
.ng-card .header-circle-top {
  width: 100%;
  aspect-ratio: 2/1;
  background: var(--ng-color-alt_1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  padding: 0 20%;
  text-align: center;
  border-bottom-left-radius: 50% 100%;
  border-bottom-right-radius: 50% 100%;
}
.ng-card .header-circle-top.header-curve-0 {
  border-bottom-left-radius: 0 0;
  border-bottom-right-radius: 0 0;
}
.ng-card .header-circle-top.header-curve-15 {
  border-bottom-left-radius: 15% 25%;
  border-bottom-right-radius: 15% 25%;
}
.ng-card .header-circle-top.header-curve-left {
  border-bottom-left-radius: 100% 100%;
  border-bottom-right-radius: 0% 100%;
  text-align: right;
  align-items: initial;
  padding-right: 15px;
  padding-top: 10px;
}
.ng-card .header-circle-top.header-curve-right {
  border-bottom-left-radius: 0% 100%;
  border-bottom-right-radius: 100% 100%;
  text-align: left;
  align-items: initial;
  padding-left: 15px;
  padding-top: 10px;
}
.ng-card .img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ng-card .img.top {
  order: -1;
}
.ng-card .img.bottom {
  order: 1;
}
.ng-card.img-left, .ng-card.img-right {
  flex-direction: row;
  align-items: stretch;
}
.ng-card.img-left .img, .ng-card.img-right .img {
  width: 40%;
  height: auto;
  object-fit: cover;
}
.ng-card.img-left .img.left, .ng-card.img-right .img.left {
  margin-right: 1rem;
}
.ng-card.img-left .img.right, .ng-card.img-right .img.right {
  order: 1;
  margin-left: 1rem;
}
.ng-card.img-left .body, .ng-card.img-right .body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem 0.5rem 1rem;
}
.ng-card:not(.img-left):not(.img-right) .body {
  padding: 1rem;
}
.ng-card .title {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.ng-card p {
  flex: 1;
  margin: 0 0 1rem 0;
  color: var(--color-text, #333);
  line-height: 1.5;
}
.ng-card .footer {
  display: flex;
  flex-wrap: wrap;
  order: 2;
  padding: 0.75rem 0 0 0;
  border-top: 1px solid var(--ng-color-border-light);
}
.ng-card .footer > * {
  flex: 1;
  padding: 0.5rem 0.5rem;
  text-align: left;
}
.ng-card .footer.c2 > * {
  width: 50%;
}
.ng-card .footer.c3 > * {
  width: 33.333%;
}
.ng-card .footer.c4 > * {
  width: 25%;
}
.ng-card .footer.c5 > * {
  width: 20%;
}
.ng-card .footer.center > * {
  text-align: center;
}
.ng-card.hover:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ng-navigator {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ng-nav-gap);
  font-size: var(--ng-nav-font-size);
}
.ng-navigator > .separator {
  display: inline-block;
  user-select: none;
  pointer-events: none;
  color: var(--ng-muted, #999);
  font-size: 0.9em;
  line-height: 1;
}

.ng-tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  z-index: 9999;
}
.ng-tooltip::before, .ng-tooltip::after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  pointer-events: none;
  z-index: 10000;
}
.ng-tooltip:hover::before, .ng-tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}
.ng-tooltip::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}
.ng-tooltip::after {
  content: attr(data-tooltip);
  background: var(--ng-color-primary-dark, #333);
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  font-family: sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.ng-tooltip[data-placement=top]::after {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
}
.ng-tooltip[data-placement=top]::before {
  border-width: 6px 6px 0 6px;
  border-color: var(--ng-color-primary-dark, #333) transparent transparent transparent;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-2px);
}
.ng-tooltip[data-placement=bottom]::after {
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
}
.ng-tooltip[data-placement=bottom]::before {
  border-width: 0 6px 6px 6px;
  border-color: transparent transparent var(--ng-color-primary-dark, #333) transparent;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(2px);
}
.ng-tooltip[data-placement=left]::after {
  right: 100%;
  top: 50%;
  transform: translateX(-8px) translateY(-50%);
}
.ng-tooltip[data-placement=left]::before {
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent var(--ng-color-primary-dark, #333);
  right: 100%;
  top: 50%;
  transform: translateX(-2px) translateY(-50%);
}
.ng-tooltip[data-placement=right]::after {
  left: 100%;
  top: 50%;
  transform: translateX(8px) translateY(-50%);
}
.ng-tooltip[data-placement=right]::before {
  border-width: 6px 6px 6px 0;
  border-color: transparent var(--ng-color-primary-dark, #333) transparent transparent;
  left: 100%;
  top: 50%;
  transform: translateX(2px) translateY(-50%);
}

.ng-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 5px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  border-radius: 4px;
  justify-content: center;
  gap: 0.4em;
  vertical-align: middle;
}
.ng-badge.small {
  padding: 2px 4px;
  font-size: 0.65rem;
}
.ng-badge.large {
  padding: 4px 8px;
  font-size: 1rem;
}
.ng-badge.circle {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  min-height: 1.35rem;
  min-width: 1.35rem;
  padding: 0;
  line-height: 0;
  font-weight: 800;
  margin: 0.125rem;
}
.ng-badge .ng-badge .ng-icon,
.ng-badge .ng-badge ngi {
  vertical-align: middle;
}
.ng-badge.status-primary {
  background-color: #0275ae;
  color: #ffffff;
}
.ng-badge.status-primary.badge-invert {
  background-color: #ffffff;
  color: #0275ae;
}
.ng-badge.status-primary.outline {
  background-color: #ffffff;
  color: #0275ae;
  border: 1px solid #026097;
}
.ng-badge.status-secondary {
  background-color: #cd1842;
  color: #ffffff;
}
.ng-badge.status-secondary.badge-invert {
  background-color: #ffffff;
  color: #cd1842;
}
.ng-badge.status-secondary.outline {
  background-color: #ffffff;
  color: #cd1842;
  border: 1px solid #a01335;
}
.ng-badge.status-success {
  background-color: #1eac75;
  color: #ffffff;
}
.ng-badge.status-success.badge-invert {
  background-color: #ffffff;
  color: #1eac75;
}
.ng-badge.status-success.outline {
  background-color: #ffffff;
  color: #1eac75;
  border: 1px solid #168f62;
}
.ng-badge.status-info {
  background-color: #12a5ea;
  color: #ffffff;
}
.ng-badge.status-info.badge-invert {
  background-color: #ffffff;
  color: #12a5ea;
}
.ng-badge.status-info.outline {
  background-color: #ffffff;
  color: #12a5ea;
  border: 1px solid #0d8fcc;
}
.ng-badge.status-warning {
  background-color: #f48600;
  color: #ffffff;
}
.ng-badge.status-warning.badge-invert {
  background-color: #ffffff;
  color: #f48600;
}
.ng-badge.status-warning.outline {
  background-color: #ffffff;
  color: #f48600;
  border: 1px solid #d76f00;
}
.ng-badge.status-danger {
  background-color: #f2415c;
  color: #ffffff;
}
.ng-badge.status-danger.badge-invert {
  background-color: #ffffff;
  color: #f2415c;
}
.ng-badge.status-danger.outline {
  background-color: #ffffff;
  color: #f2415c;
  border: 1px solid #d82e47;
}
.ng-badge.status-alert {
  background-color: #cf25f6;
  color: #ffffff;
}
.ng-badge.status-alert.badge-invert {
  background-color: #ffffff;
  color: #cf25f6;
}
.ng-badge.status-alert.outline {
  background-color: #ffffff;
  color: #cf25f6;
  border: 1px solid #8e07ae;
}
.ng-badge.status-mute {
  background-color: #c8c8c8;
  color: #646464;
}
.ng-badge.status-mute.badge-invert {
  background-color: #646464;
  color: #c8c8c8;
}
.ng-badge.status-mute.outline {
  background-color: #646464;
  color: #c8c8c8;
  border: 1px solid #dcdcdc;
}
.ng-badge.status-blue {
  background-color: #3b82f6;
  color: #ffffff;
}
.ng-badge.status-blue.badge-invert {
  background-color: #ffffff;
  color: #3b82f6;
}
.ng-badge.status-blue.outline {
  background-color: #ffffff;
  color: #3b82f6;
  border: 1px solid #2563eb;
}
.ng-badge.status-blue-sky {
  background-color: #00a5fe;
  color: #ffffff;
}
.ng-badge.status-blue-sky.badge-invert {
  background-color: #ffffff;
  color: #00a5fe;
}
.ng-badge.status-blue-sky.outline {
  background-color: #ffffff;
  color: #00a5fe;
  border: 1px solid #0086d1;
}
.ng-badge.status-green {
  background-color: #25bf5e;
  color: #ffffff;
}
.ng-badge.status-green.badge-invert {
  background-color: #ffffff;
  color: #25bf5e;
}
.ng-badge.status-green.outline {
  background-color: #ffffff;
  color: #25bf5e;
  border: 1px solid #1d994d;
}
.ng-badge.status-lime {
  background-color: #97d900;
  color: #ffffff;
}
.ng-badge.status-lime.badge-invert {
  background-color: #c0ff25;
  color: #75a700;
}
.ng-badge.status-lime.outline {
  background-color: #ffffff;
  color: #97d900;
  border: 1px solid #8bc700;
}
.ng-badge.status-aguagreen {
  background-color: #22bf9e;
  color: #ffffff;
}
.ng-badge.status-aguagreen.badge-invert {
  background-color: #ffffff;
  color: #22bf9e;
}
.ng-badge.status-aguagreen.outline {
  background-color: #ffffff;
  color: #22bf9e;
  border: 1px solid #199e83;
}
.ng-badge.status-orange {
  background-color: #f5850a;
  color: #ffffff;
}
.ng-badge.status-orange.badge-invert {
  background-color: #ffffff;
  color: #f5850a;
}
.ng-badge.status-orange.outline {
  background-color: #ffffff;
  color: #f5850a;
  border: 1px solid #d46e00;
}
.ng-badge.status-purple {
  background-color: #a027f0;
  color: #ffffff;
}
.ng-badge.status-purple.badge-invert {
  background-color: #ffffff;
  color: #a027f0;
}
.ng-badge.status-purple.outline {
  background-color: #ffffff;
  color: #a027f0;
  border: 1px solid #810ecb;
}
.ng-badge.status-cyan {
  background-color: #00ffff;
  color: #000000;
}
.ng-badge.status-cyan.badge-invert {
  background-color: #000000;
  color: #00ffff;
}
.ng-badge.status-cyan.outline {
  background-color: #000000;
  color: #00ffff;
  border: 1px solid #00cfcf;
}
.ng-badge.status-magenta {
  background-color: #ff00ff;
  color: #ffffff;
}
.ng-badge.status-magenta.badge-invert {
  background-color: #000000;
  color: #ff00ff;
}
.ng-badge.status-magenta.outline {
  background-color: #ffffff;
  color: #ff00ff;
  border: 1px solid #d100d1;
}
.ng-badge.status-yellow {
  background-color: #ffff00;
  color: #000000;
}
.ng-badge.status-yellow.badge-invert {
  background-color: #000000;
  color: #ffff00;
}
.ng-badge.status-yellow.outline {
  background-color: #000000;
  color: #ffff00;
  border: 1px solid #d1d100;
}
.ng-badge.status-gray {
  background-color: #6b7280;
  color: #ffffff;
}
.ng-badge.status-gray.badge-invert {
  background-color: #ffffff;
  color: #6b7280;
}
.ng-badge.status-gray.outline {
  background-color: #ffffff;
  color: #6b7280;
  border: 1px solid #4b5563;
}
.ng-badge.status-light {
  background-color: #f3f4f6;
  color: #111827;
}
.ng-badge.status-light.badge-invert {
  background-color: #111827;
  color: #f3f4f6;
}
.ng-badge.status-light.outline {
  background-color: #111827;
  color: #f3f4f6;
  border: 1px solid #d1d5db;
}
.ng-badge.status-dark {
  background-color: #374151;
  color: #ffffff;
}
.ng-badge.status-dark.badge-invert {
  background-color: #ffffff;
  color: #374151;
}
.ng-badge.status-dark.outline {
  background-color: #ffffff;
  color: #374151;
  border: 1px solid #1f2937;
}

.ng-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: ng-spin 0.7s linear infinite;
  margin: auto;
}

@keyframes ng-spin {
  to {
    transform: rotate(360deg);
  }
}
.ng-page-loader {
  position: fixed;
  inset: 0;
  background: rgba(151, 151, 188, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.ng-page-loader.hide {
  opacity: 0;
  pointer-events: none;
}

/* ======================= CONFIG ======================= */
/* ======================= MIXIN / FUN ======================= */
/* ======================= BASE ======================= */
.ng-code {
  --ng-code-bg: #2d2d44;
  --ng-code-fg: #e6e6e6;
  --ng-code-comment: #7a818e;
  --ng-code-keyword: #64bdf7;
  --ng-code-string: #ffffff;
  --ng-code-number: #a8f600;
  --ng-code-attr: #f2a7de;
  --ng-code-tag: #ffd580;
  --ng-code-var: #0fefff;
  --ng-code-func: #f6d500;
  --ng-code-op: #c7cdd8;
  --ng-code-line-hl: rgba(255, 255, 255, 0.06);
  --ng-code-border: rgba(0, 0, 0, 0.08);
  --ng-code-copy-border: rgba(255, 255, 255, 0.5);
  --ng-code-copy-fg: #fff;
  --ng-code-copy-bg: transparent;
  display: block;
  padding: 0.875rem 1rem;
  margin-bottom: 20px;
  border: 1px solid var(--ng-code-border);
  border-radius: 0.5rem;
  background: var(--ng-code-bg);
  color: var(--ng-code-fg);
  overflow: auto;
  tab-size: 4;
  white-space: pre;
  font: 12.5px/1.6 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-variant-ligatures: none;
  background-clip: padding-box;
}

.ng-token-comment {
  color: var(--ng-code-comment, var(--ng-code-number));
}

.ng-token-keyword {
  color: var(--ng-code-keyword, var(--ng-code-number));
}

.ng-token-string {
  color: var(--ng-code-string, var(--ng-code-number));
}

.ng-token-number {
  color: var(--ng-code-number, var(--ng-code-number));
}

.ng-token-attr {
  color: var(--ng-code-attr, var(--ng-code-number));
}

.ng-token-tag {
  color: var(--ng-code-tag, var(--ng-code-number));
}

.ng-token-var {
  color: var(--ng-code-var, var(--ng-code-number));
}

.ng-token-func {
  color: var(--ng-code-func, var(--ng-code-number));
}

.ng-token-op {
  color: var(--ng-code-op, var(--ng-code-number));
}

.ng-token-entity {
  color: var(--ng-code-entity, var(--ng-code-number));
}

.ng-token-comment {
  font-style: italic;
}

.ng-token-keyword {
  font-weight: 600;
}

.ng-token-number {
  font-weight: 600;
}

.ng-token-tag {
  font-weight: 600;
}

.ng-token-func {
  border-bottom: 1px dashed currentColor;
  padding-bottom: 3px;
}

/* ======================= Addons: line numbers & copy ======================= */
pre.ng-code {
  position: relative;
  counter-reset: ln;
}

pre.ng-code code {
  display: block;
}

pre.ng-code .ng-line {
  display: block;
  padding-left: 2.5rem;
  position: relative;
}

pre.ng-code .ng-line::before {
  content: counter(ln);
  counter-increment: ln;
  position: absolute;
  left: 0.5rem;
  width: 1.5rem;
  text-align: right;
  opacity: 0.6;
}

pre.ng-code .ng-line.hl {
  background: var(--ng-code-line-hl);
}

pre.ng-code .ng-code-copy {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font: inherit;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--ng-code-copy-border);
  color: var(--ng-code-copy-fg);
  background: var(--ng-code-copy-bg);
  border-radius: 0.35rem;
}

pre.ng-code .ng-code-copy.ok {
  background: rgb(20, 145, 50);
  color: #fff;
}

/* ======================= Header (markup-driven) ======================= */
.ng-code-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 0.35rem 0;
  font-weight: 600;
  opacity: 0.9;
}

.ng-code-head .ng-code-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ng-code-head .ng-code-download {
  font: inherit;
  padding: 0.2rem 0.5rem;
}

/* ======================= THEME HOOKS ======================= */
.ng-syntax--dark .ng-code,
.ng-code[data-syntax-theme=dark] {
  --ng-code-bg: #2d2d44;
  --ng-code-fg: #e6e6e6;
  --ng-code-comment: #7a818e;
  --ng-code-keyword: #64bdf7;
  --ng-code-string: #ffffff;
  --ng-code-number: #a8f600;
  --ng-code-attr: #f2a7de;
  --ng-code-tag: #ffd580;
  --ng-code-var: #0fefff;
  --ng-code-func: #f6d500;
  --ng-code-op: #c7cdd8;
  --ng-code-line-hl: rgba(255, 255, 255, 0.06);
  --ng-code-border: rgba(0, 0, 0, 0.08);
  --ng-code-copy-border: rgba(255, 255, 255, 0.5);
  --ng-code-copy-fg: #fff;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--light .ng-code,
.ng-code[data-syntax-theme=light] {
  --ng-code-bg: #f7f7fb;
  --ng-code-fg: #1f2330;
  --ng-code-comment: #7a8090;
  --ng-code-keyword: #0057b8;
  --ng-code-string: #0b6e4f;
  --ng-code-number: #b03a00;
  --ng-code-attr: #8a1c7c;
  --ng-code-tag: #7c5b00;
  --ng-code-var: #005f73;
  --ng-code-func: #b8860b;
  --ng-code-op: #586174;
  --ng-code-line-hl: rgba(0, 0, 0, 0.06);
  --ng-code-border: rgba(0, 0, 0, 0.08);
  --ng-code-copy-border: rgba(0, 0, 0, 0.35);
  --ng-code-copy-fg: #1f2330;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--monokai .ng-code,
.ng-code[data-syntax-theme=monokai] {
  --ng-code-bg: #272822;
  --ng-code-fg: #f8f8f2;
  --ng-code-comment: #75715e;
  --ng-code-keyword: #f92672;
  --ng-code-string: #e6db74;
  --ng-code-number: #ae81ff;
  --ng-code-attr: #a6e22e;
  --ng-code-tag: #f92672;
  --ng-code-var: #fd971f;
  --ng-code-func: #a6e22e;
  --ng-code-op: #66d9ef;
  --ng-code-line-hl: #3e3d32;
  --ng-code-border: #3e3d32;
  --ng-code-copy-border: rgba(248, 248, 242, 0.35);
  --ng-code-copy-fg: #f8f8f2;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--nord .ng-code,
.ng-code[data-syntax-theme=nord] {
  --ng-code-bg: #2e3440;
  --ng-code-fg: #d8dee9;
  --ng-code-comment: #616e87;
  --ng-code-keyword: #81a1c1;
  --ng-code-string: #a3be8c;
  --ng-code-number: #b48ead;
  --ng-code-attr: #88c0d0;
  --ng-code-tag: #81a1c1;
  --ng-code-var: #8fbcbb;
  --ng-code-func: #88c0d0;
  --ng-code-op: #5e81ac;
  --ng-code-line-hl: #3b4252;
  --ng-code-border: #3b4252;
  --ng-code-copy-border: rgba(216, 222, 233, 0.35);
  --ng-code-copy-fg: #d8dee9;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--dracula .ng-code,
.ng-code[data-syntax-theme=dracula] {
  --ng-code-bg: #282a36;
  --ng-code-fg: #f8f8f2;
  --ng-code-comment: #6272a4;
  --ng-code-keyword: #ff79c6;
  --ng-code-string: #f1fa8c;
  --ng-code-number: #bd93f9;
  --ng-code-attr: #50fa7b;
  --ng-code-tag: #ff79c6;
  --ng-code-var: #8be9fd;
  --ng-code-func: #50fa7b;
  --ng-code-op: #ffb86c;
  --ng-code-line-hl: #44475a;
  --ng-code-border: #44475a;
  --ng-code-copy-border: rgba(248, 248, 242, 0.35);
  --ng-code-copy-fg: #f8f8f2;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--solarized-dark .ng-code,
.ng-code[data-syntax-theme=solarized-dark] {
  --ng-code-bg: #002b36;
  --ng-code-fg: #93a1a1;
  --ng-code-comment: #586e75;
  --ng-code-keyword: #859900;
  --ng-code-string: #2aa198;
  --ng-code-number: #d33682;
  --ng-code-attr: #b58900;
  --ng-code-tag: #268bd2;
  --ng-code-var: #cb4b16;
  --ng-code-func: #268bd2;
  --ng-code-op: #6c71c4;
  --ng-code-line-hl: #073642;
  --ng-code-border: #073642;
  --ng-code-copy-border: rgba(147, 161, 161, 0.35);
  --ng-code-copy-fg: #93a1a1;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--solarized-light .ng-code,
.ng-code[data-syntax-theme=solarized-light] {
  --ng-code-bg: #fdf6e3;
  --ng-code-fg: #657b83;
  --ng-code-comment: #93a1a1;
  --ng-code-keyword: #859900;
  --ng-code-string: #2aa198;
  --ng-code-number: #d33682;
  --ng-code-attr: #b58900;
  --ng-code-tag: #268bd2;
  --ng-code-var: #cb4b16;
  --ng-code-func: #268bd2;
  --ng-code-op: #6c71c4;
  --ng-code-line-hl: #eee8d5;
  --ng-code-border: #eee8d5;
  --ng-code-copy-border: rgba(101, 123, 131, 0.35);
  --ng-code-copy-fg: #657b83;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--one-dark .ng-code,
.ng-code[data-syntax-theme=one-dark] {
  --ng-code-bg: #282c34;
  --ng-code-fg: #abb2bf;
  --ng-code-comment: #5c6370;
  --ng-code-keyword: #c678dd;
  --ng-code-string: #98c379;
  --ng-code-number: #d19a66;
  --ng-code-attr: #56b6c2;
  --ng-code-tag: #e06c75;
  --ng-code-var: #e5c07b;
  --ng-code-func: #61afef;
  --ng-code-op: #56b6c2;
  --ng-code-line-hl: #2c313c;
  --ng-code-border: #2c313c;
  --ng-code-copy-border: rgba(171, 178, 191, 0.35);
  --ng-code-copy-fg: #abb2bf;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--tomorrow-night .ng-code,
.ng-code[data-syntax-theme=tomorrow-night] {
  --ng-code-bg: #1d1f21;
  --ng-code-fg: #c5c8c6;
  --ng-code-comment: #969896;
  --ng-code-keyword: #b294bb;
  --ng-code-string: #b5bd68;
  --ng-code-number: #de935f;
  --ng-code-attr: #81a2be;
  --ng-code-tag: #cc6666;
  --ng-code-var: #f0c674;
  --ng-code-func: #81a2be;
  --ng-code-op: #8abeb7;
  --ng-code-line-hl: #282a2e;
  --ng-code-border: #282a2e;
  --ng-code-copy-border: rgba(197, 200, 198, 0.35);
  --ng-code-copy-fg: #c5c8c6;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--gruvbox .ng-code,
.ng-code[data-syntax-theme=gruvbox] {
  --ng-code-bg: #282828;
  --ng-code-fg: #ebdbb2;
  --ng-code-comment: #928374;
  --ng-code-keyword: #fb4934;
  --ng-code-string: #b8bb26;
  --ng-code-number: #d3869b;
  --ng-code-attr: #fabd2f;
  --ng-code-tag: #83a598;
  --ng-code-var: #fe8019;
  --ng-code-func: #8ec07c;
  --ng-code-op: #d79921;
  --ng-code-line-hl: #3c3836;
  --ng-code-border: #3c3836;
  --ng-code-copy-border: rgba(235, 219, 178, 0.35);
  --ng-code-copy-fg: #ebdbb2;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--base16 .ng-code,
.ng-code[data-syntax-theme=base16] {
  --ng-code-bg: #151515;
  --ng-code-fg: #d0d0d0;
  --ng-code-comment: #505050;
  --ng-code-keyword: #ac4142;
  --ng-code-string: #90a959;
  --ng-code-number: #aa759f;
  --ng-code-attr: #f4bf75;
  --ng-code-tag: #6a9fb5;
  --ng-code-var: #d28445;
  --ng-code-func: #75b5aa;
  --ng-code-op: #8f5536;
  --ng-code-line-hl: #202020;
  --ng-code-border: #202020;
  --ng-code-copy-border: rgba(208, 208, 208, 0.35);
  --ng-code-copy-fg: #d0d0d0;
  --ng-code-copy-bg: transparent;
}

.ng-syntax--tokyo-night .ng-code,
.ng-code[data-syntax-theme=tokyo-night] {
  --ng-code-bg: #1a1b26;
  --ng-code-fg: #a9b1d6;
  --ng-code-comment: #565f89;
  --ng-code-keyword: #bb9af7;
  --ng-code-string: #9ece6a;
  --ng-code-number: #ff9e64;
  --ng-code-attr: #7dcfff;
  --ng-code-tag: #f7768e;
  --ng-code-var: #e0af68;
  --ng-code-func: #2ac3de;
  --ng-code-op: #89ddff;
  --ng-code-line-hl: #24283b;
  --ng-code-border: #24283b;
  --ng-code-copy-border: rgba(169, 177, 214, 0.35);
  --ng-code-copy-fg: #a9b1d6;
  --ng-code-copy-bg: transparent;
}

hr {
  display: block;
  width: 100%;
  border: none;
  border-top: 1px solid rgb(220, 220, 220);
  margin: calc(var(--ng-gap) * 1.8) 0 calc(var(--ng-gap) * 2.8);
}

.ng-toggle-target {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
}
.ng-toggle-target.is-open {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
}

.ng-toggle-trigger {
  display: inline-block;
  cursor: pointer;
  user-select: none;
  transition: opacity 0.2s ease;
}
.ng-toggle-trigger:hover {
  opacity: 0.8;
}

input[type=submit],
input[type=button],
input[type=reset] {
  border: none;
  appearance: none;
}

.mt-4 {
  margin-top: 0.25rem;
}

.mb-4 {
  margin-bottom: 0.25rem;
}

.ml-4 {
  margin-left: 0.25rem;
}

.mr-4 {
  margin-right: 0.25rem;
}

.my-4 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.mx-4 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.-mt-4 {
  margin-top: -0.25rem;
}

.-mb-4 {
  margin-bottom: -0.25rem;
}

.-ml-4 {
  margin-left: -0.25rem;
}

.-mr-4 {
  margin-right: -0.25rem;
}

.-my-4 {
  margin-top: -0.25rem;
  margin-bottom: -0.25rem;
}

.-mx-4 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

.pt-4 {
  padding-top: 0.25rem;
}

.pb-4 {
  padding-bottom: 0.25rem;
}

.pl-4 {
  padding-left: 0.25rem;
}

.pr-4 {
  padding-right: 0.25rem;
}

.py-4 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.px-4 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.mt-8 {
  margin-top: 0.5rem;
}

.mb-8 {
  margin-bottom: 0.5rem;
}

.ml-8 {
  margin-left: 0.5rem;
}

.mr-8 {
  margin-right: 0.5rem;
}

.my-8 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mx-8 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.-mt-8 {
  margin-top: -0.5rem;
}

.-mb-8 {
  margin-bottom: -0.5rem;
}

.-ml-8 {
  margin-left: -0.5rem;
}

.-mr-8 {
  margin-right: -0.5rem;
}

.-my-8 {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}

.-mx-8 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.pt-8 {
  padding-top: 0.5rem;
}

.pb-8 {
  padding-bottom: 0.5rem;
}

.pl-8 {
  padding-left: 0.5rem;
}

.pr-8 {
  padding-right: 0.5rem;
}

.py-8 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-8 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.mt-12 {
  margin-top: 0.75rem;
}

.mb-12 {
  margin-bottom: 0.75rem;
}

.ml-12 {
  margin-left: 0.75rem;
}

.mr-12 {
  margin-right: 0.75rem;
}

.my-12 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.mx-12 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}

.-mt-12 {
  margin-top: -0.75rem;
}

.-mb-12 {
  margin-bottom: -0.75rem;
}

.-ml-12 {
  margin-left: -0.75rem;
}

.-mr-12 {
  margin-right: -0.75rem;
}

.-my-12 {
  margin-top: -0.75rem;
  margin-bottom: -0.75rem;
}

.-mx-12 {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.pt-12 {
  padding-top: 0.75rem;
}

.pb-12 {
  padding-bottom: 0.75rem;
}

.pl-12 {
  padding-left: 0.75rem;
}

.pr-12 {
  padding-right: 0.75rem;
}

.py-12 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-12 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.mt-16 {
  margin-top: 1rem;
}

.mb-16 {
  margin-bottom: 1rem;
}

.ml-16 {
  margin-left: 1rem;
}

.mr-16 {
  margin-right: 1rem;
}

.my-16 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mx-16 {
  margin-left: 1rem;
  margin-right: 1rem;
}

.-mt-16 {
  margin-top: -1rem;
}

.-mb-16 {
  margin-bottom: -1rem;
}

.-ml-16 {
  margin-left: -1rem;
}

.-mr-16 {
  margin-right: -1rem;
}

.-my-16 {
  margin-top: -1rem;
  margin-bottom: -1rem;
}

.-mx-16 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.pt-16 {
  padding-top: 1rem;
}

.pb-16 {
  padding-bottom: 1rem;
}

.pl-16 {
  padding-left: 1rem;
}

.pr-16 {
  padding-right: 1rem;
}

.py-16 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-16 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.mt-20 {
  margin-top: 1.25rem;
}

.mb-20 {
  margin-bottom: 1.25rem;
}

.ml-20 {
  margin-left: 1.25rem;
}

.mr-20 {
  margin-right: 1.25rem;
}

.my-20 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}

.mx-20 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}

.-mt-20 {
  margin-top: -1.25rem;
}

.-mb-20 {
  margin-bottom: -1.25rem;
}

.-ml-20 {
  margin-left: -1.25rem;
}

.-mr-20 {
  margin-right: -1.25rem;
}

.-my-20 {
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.-mx-20 {
  margin-left: -1.25rem;
  margin-right: -1.25rem;
}

.pt-20 {
  padding-top: 1.25rem;
}

.pb-20 {
  padding-bottom: 1.25rem;
}

.pl-20 {
  padding-left: 1.25rem;
}

.pr-20 {
  padding-right: 1.25rem;
}

.py-20 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.px-20 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.mt-24 {
  margin-top: 1.5rem;
}

.mb-24 {
  margin-bottom: 1.5rem;
}

.ml-24 {
  margin-left: 1.5rem;
}

.mr-24 {
  margin-right: 1.5rem;
}

.my-24 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.mx-24 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

.-mt-24 {
  margin-top: -1.5rem;
}

.-mb-24 {
  margin-bottom: -1.5rem;
}

.-ml-24 {
  margin-left: -1.5rem;
}

.-mr-24 {
  margin-right: -1.5rem;
}

.-my-24 {
  margin-top: -1.5rem;
  margin-bottom: -1.5rem;
}

.-mx-24 {
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.pt-24 {
  padding-top: 1.5rem;
}

.pb-24 {
  padding-bottom: 1.5rem;
}

.pl-24 {
  padding-left: 1.5rem;
}

.pr-24 {
  padding-right: 1.5rem;
}

.py-24 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-24 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.mt-32 {
  margin-top: 2rem;
}

.mb-32 {
  margin-bottom: 2rem;
}

.ml-32 {
  margin-left: 2rem;
}

.mr-32 {
  margin-right: 2rem;
}

.my-32 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mx-32 {
  margin-left: 2rem;
  margin-right: 2rem;
}

.-mt-32 {
  margin-top: -2rem;
}

.-mb-32 {
  margin-bottom: -2rem;
}

.-ml-32 {
  margin-left: -2rem;
}

.-mr-32 {
  margin-right: -2rem;
}

.-my-32 {
  margin-top: -2rem;
  margin-bottom: -2rem;
}

.-mx-32 {
  margin-left: -2rem;
  margin-right: -2rem;
}

.pt-32 {
  padding-top: 2rem;
}

.pb-32 {
  padding-bottom: 2rem;
}

.pl-32 {
  padding-left: 2rem;
}

.pr-32 {
  padding-right: 2rem;
}

.py-32 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.px-32 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.mt-40 {
  margin-top: 2.5rem;
}

.mb-40 {
  margin-bottom: 2.5rem;
}

.ml-40 {
  margin-left: 2.5rem;
}

.mr-40 {
  margin-right: 2.5rem;
}

.my-40 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.mx-40 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}

.-mt-40 {
  margin-top: -2.5rem;
}

.-mb-40 {
  margin-bottom: -2.5rem;
}

.-ml-40 {
  margin-left: -2.5rem;
}

.-mr-40 {
  margin-right: -2.5rem;
}

.-my-40 {
  margin-top: -2.5rem;
  margin-bottom: -2.5rem;
}

.-mx-40 {
  margin-left: -2.5rem;
  margin-right: -2.5rem;
}

.pt-40 {
  padding-top: 2.5rem;
}

.pb-40 {
  padding-bottom: 2.5rem;
}

.pl-40 {
  padding-left: 2.5rem;
}

.pr-40 {
  padding-right: 2.5rem;
}

.py-40 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.px-40 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.mt-48 {
  margin-top: 3rem;
}

.mb-48 {
  margin-bottom: 3rem;
}

.ml-48 {
  margin-left: 3rem;
}

.mr-48 {
  margin-right: 3rem;
}

.my-48 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.mx-48 {
  margin-left: 3rem;
  margin-right: 3rem;
}

.-mt-48 {
  margin-top: -3rem;
}

.-mb-48 {
  margin-bottom: -3rem;
}

.-ml-48 {
  margin-left: -3rem;
}

.-mr-48 {
  margin-right: -3rem;
}

.-my-48 {
  margin-top: -3rem;
  margin-bottom: -3rem;
}

.-mx-48 {
  margin-left: -3rem;
  margin-right: -3rem;
}

.pt-48 {
  padding-top: 3rem;
}

.pb-48 {
  padding-bottom: 3rem;
}

.pl-48 {
  padding-left: 3rem;
}

.pr-48 {
  padding-right: 3rem;
}

.py-48 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.px-48 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.mt-64 {
  margin-top: 4rem;
}

.mb-64 {
  margin-bottom: 4rem;
}

.ml-64 {
  margin-left: 4rem;
}

.mr-64 {
  margin-right: 4rem;
}

.my-64 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mx-64 {
  margin-left: 4rem;
  margin-right: 4rem;
}

.-mt-64 {
  margin-top: -4rem;
}

.-mb-64 {
  margin-bottom: -4rem;
}

.-ml-64 {
  margin-left: -4rem;
}

.-mr-64 {
  margin-right: -4rem;
}

.-my-64 {
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.-mx-64 {
  margin-left: -4rem;
  margin-right: -4rem;
}

.pt-64 {
  padding-top: 4rem;
}

.pb-64 {
  padding-bottom: 4rem;
}

.pl-64 {
  padding-left: 4rem;
}

.pr-64 {
  padding-right: 4rem;
}

.py-64 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.px-64 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.mt-80 {
  margin-top: 5rem;
}

.mb-80 {
  margin-bottom: 5rem;
}

.ml-80 {
  margin-left: 5rem;
}

.mr-80 {
  margin-right: 5rem;
}

.my-80 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.mx-80 {
  margin-left: 5rem;
  margin-right: 5rem;
}

.-mt-80 {
  margin-top: -5rem;
}

.-mb-80 {
  margin-bottom: -5rem;
}

.-ml-80 {
  margin-left: -5rem;
}

.-mr-80 {
  margin-right: -5rem;
}

.-my-80 {
  margin-top: -5rem;
  margin-bottom: -5rem;
}

.-mx-80 {
  margin-left: -5rem;
  margin-right: -5rem;
}

.pt-80 {
  padding-top: 5rem;
}

.pb-80 {
  padding-bottom: 5rem;
}

.pl-80 {
  padding-left: 5rem;
}

.pr-80 {
  padding-right: 5rem;
}

.py-80 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-80 {
  padding-left: 5rem;
  padding-right: 5rem;
}

.mt-96 {
  margin-top: 6rem;
}

.mb-96 {
  margin-bottom: 6rem;
}

.ml-96 {
  margin-left: 6rem;
}

.mr-96 {
  margin-right: 6rem;
}

.my-96 {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.mx-96 {
  margin-left: 6rem;
  margin-right: 6rem;
}

.-mt-96 {
  margin-top: -6rem;
}

.-mb-96 {
  margin-bottom: -6rem;
}

.-ml-96 {
  margin-left: -6rem;
}

.-mr-96 {
  margin-right: -6rem;
}

.-my-96 {
  margin-top: -6rem;
  margin-bottom: -6rem;
}

.-mx-96 {
  margin-left: -6rem;
  margin-right: -6rem;
}

.pt-96 {
  padding-top: 6rem;
}

.pb-96 {
  padding-bottom: 6rem;
}

.pl-96 {
  padding-left: 6rem;
}

.pr-96 {
  padding-right: 6rem;
}

.py-96 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.px-96 {
  padding-left: 6rem;
  padding-right: 6rem;
}

.mt-110 {
  margin-top: 6.875rem;
}

.mb-110 {
  margin-bottom: 6.875rem;
}

.ml-110 {
  margin-left: 6.875rem;
}

.mr-110 {
  margin-right: 6.875rem;
}

.my-110 {
  margin-top: 6.875rem;
  margin-bottom: 6.875rem;
}

.mx-110 {
  margin-left: 6.875rem;
  margin-right: 6.875rem;
}

.-mt-110 {
  margin-top: -6.875rem;
}

.-mb-110 {
  margin-bottom: -6.875rem;
}

.-ml-110 {
  margin-left: -6.875rem;
}

.-mr-110 {
  margin-right: -6.875rem;
}

.-my-110 {
  margin-top: -6.875rem;
  margin-bottom: -6.875rem;
}

.-mx-110 {
  margin-left: -6.875rem;
  margin-right: -6.875rem;
}

.pt-110 {
  padding-top: 6.875rem;
}

.pb-110 {
  padding-bottom: 6.875rem;
}

.pl-110 {
  padding-left: 6.875rem;
}

.pr-110 {
  padding-right: 6.875rem;
}

.py-110 {
  padding-top: 6.875rem;
  padding-bottom: 6.875rem;
}

.px-110 {
  padding-left: 6.875rem;
  padding-right: 6.875rem;
}

.mt-120 {
  margin-top: 7.5rem;
}

.mb-120 {
  margin-bottom: 7.5rem;
}

.ml-120 {
  margin-left: 7.5rem;
}

.mr-120 {
  margin-right: 7.5rem;
}

.my-120 {
  margin-top: 7.5rem;
  margin-bottom: 7.5rem;
}

.mx-120 {
  margin-left: 7.5rem;
  margin-right: 7.5rem;
}

.-mt-120 {
  margin-top: -7.5rem;
}

.-mb-120 {
  margin-bottom: -7.5rem;
}

.-ml-120 {
  margin-left: -7.5rem;
}

.-mr-120 {
  margin-right: -7.5rem;
}

.-my-120 {
  margin-top: -7.5rem;
  margin-bottom: -7.5rem;
}

.-mx-120 {
  margin-left: -7.5rem;
  margin-right: -7.5rem;
}

.pt-120 {
  padding-top: 7.5rem;
}

.pb-120 {
  padding-bottom: 7.5rem;
}

.pl-120 {
  padding-left: 7.5rem;
}

.pr-120 {
  padding-right: 7.5rem;
}

.py-120 {
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.px-120 {
  padding-left: 7.5rem;
  padding-right: 7.5rem;
}

.mt-130 {
  margin-top: 8.125rem;
}

.mb-130 {
  margin-bottom: 8.125rem;
}

.ml-130 {
  margin-left: 8.125rem;
}

.mr-130 {
  margin-right: 8.125rem;
}

.my-130 {
  margin-top: 8.125rem;
  margin-bottom: 8.125rem;
}

.mx-130 {
  margin-left: 8.125rem;
  margin-right: 8.125rem;
}

.-mt-130 {
  margin-top: -8.125rem;
}

.-mb-130 {
  margin-bottom: -8.125rem;
}

.-ml-130 {
  margin-left: -8.125rem;
}

.-mr-130 {
  margin-right: -8.125rem;
}

.-my-130 {
  margin-top: -8.125rem;
  margin-bottom: -8.125rem;
}

.-mx-130 {
  margin-left: -8.125rem;
  margin-right: -8.125rem;
}

.pt-130 {
  padding-top: 8.125rem;
}

.pb-130 {
  padding-bottom: 8.125rem;
}

.pl-130 {
  padding-left: 8.125rem;
}

.pr-130 {
  padding-right: 8.125rem;
}

.py-130 {
  padding-top: 8.125rem;
  padding-bottom: 8.125rem;
}

.px-130 {
  padding-left: 8.125rem;
  padding-right: 8.125rem;
}

.mt-140 {
  margin-top: 8.75rem;
}

.mb-140 {
  margin-bottom: 8.75rem;
}

.ml-140 {
  margin-left: 8.75rem;
}

.mr-140 {
  margin-right: 8.75rem;
}

.my-140 {
  margin-top: 8.75rem;
  margin-bottom: 8.75rem;
}

.mx-140 {
  margin-left: 8.75rem;
  margin-right: 8.75rem;
}

.-mt-140 {
  margin-top: -8.75rem;
}

.-mb-140 {
  margin-bottom: -8.75rem;
}

.-ml-140 {
  margin-left: -8.75rem;
}

.-mr-140 {
  margin-right: -8.75rem;
}

.-my-140 {
  margin-top: -8.75rem;
  margin-bottom: -8.75rem;
}

.-mx-140 {
  margin-left: -8.75rem;
  margin-right: -8.75rem;
}

.pt-140 {
  padding-top: 8.75rem;
}

.pb-140 {
  padding-bottom: 8.75rem;
}

.pl-140 {
  padding-left: 8.75rem;
}

.pr-140 {
  padding-right: 8.75rem;
}

.py-140 {
  padding-top: 8.75rem;
  padding-bottom: 8.75rem;
}

.px-140 {
  padding-left: 8.75rem;
  padding-right: 8.75rem;
}

.pxy {
  padding: calc(var(--ng-gap) * 0.35) calc(var(--ng-gap) * 1) !important;
}

.mxy {
  margin: calc(var(--ng-gap) * 0.35) calc(var(--ng-gap) * 1) !important;
}

.text-primary {
  color: #0275ae;
}

.bg-primary {
  background-color: #0275ae;
}

.border-primary {
  border-color: #026097;
}

.text-secondary {
  color: #cd1842;
}

.bg-secondary {
  background-color: #cd1842;
}

.border-secondary {
  border-color: #a01335;
}

.text-success {
  color: #1eac75;
}

.bg-success {
  background-color: #1eac75;
}

.border-success {
  border-color: #168f62;
}

.text-info {
  color: #12a5ea;
}

.bg-info {
  background-color: #12a5ea;
}

.border-info {
  border-color: #0d8fcc;
}

.text-warning {
  color: #f48600;
}

.bg-warning {
  background-color: #f48600;
}

.border-warning {
  border-color: #d76f00;
}

.text-danger {
  color: #f2415c;
}

.bg-danger {
  background-color: #f2415c;
}

.border-danger {
  border-color: #d82e47;
}

.text-alert {
  color: #cf25f6;
}

.bg-alert {
  background-color: #cf25f6;
}

.border-alert {
  border-color: #8e07ae;
}

.text-mute {
  color: #c8c8c8;
}

.bg-mute {
  background-color: #c8c8c8;
}

.border-mute {
  border-color: #dcdcdc;
}

.text-blue {
  color: #3b82f6;
}

.bg-blue {
  background-color: #3b82f6;
}

.border-blue {
  border-color: #2563eb;
}

.text-blue-sky {
  color: #00a5fe;
}

.bg-blue-sky {
  background-color: #00a5fe;
}

.border-blue-sky {
  border-color: #0086d1;
}

.text-green {
  color: #25bf5e;
}

.bg-green {
  background-color: #25bf5e;
}

.border-green {
  border-color: #1d994d;
}

.text-lime {
  color: #75a700;
}

.bg-lime {
  background-color: #97d900;
}

.border-lime {
  border-color: #8bc700;
}

.text-aguagreen {
  color: #22bf9e;
}

.bg-aguagreen {
  background-color: #22bf9e;
}

.border-aguagreen {
  border-color: #199e83;
}

.text-orange {
  color: #f5850a;
}

.bg-orange {
  background-color: #f5850a;
}

.border-orange {
  border-color: #d46e00;
}

.text-purple {
  color: #a027f0;
}

.bg-purple {
  background-color: #a027f0;
}

.border-purple {
  border-color: #810ecb;
}

.text-cyan {
  color: #00ffff;
}

.bg-cyan {
  background-color: #00ffff;
}

.border-cyan {
  border-color: #00cfcf;
}

.text-magenta {
  color: #ff00ff;
}

.bg-magenta {
  background-color: #ff00ff;
}

.border-magenta {
  border-color: #d100d1;
}

.text-yellow {
  color: #ffff00;
}

.bg-yellow {
  background-color: #ffff00;
}

.border-yellow {
  border-color: #d1d100;
}

.text-gray {
  color: #6b7280;
}

.bg-gray {
  background-color: #6b7280;
}

.border-gray {
  border-color: #4b5563;
}

.text-light {
  color: #f3f4f6;
}

.bg-light {
  background-color: #f3f4f6;
}

.border-light {
  border-color: #d1d5db;
}

.text-dark {
  color: #374151;
}

.bg-dark {
  background-color: #374151;
}

.border-dark {
  border-color: #1f2937;
}

.grd-nexigrid-sample {
  background: #32385B;
  background: linear-gradient(to bottom, #32385B 0%, #5963A2 100%);
  background-attachment: fixed;
}

.grd-nexigrid-deep {
  background: #32385B;
  background: linear-gradient(145deg, #32385B 0%, #3C436C 25%, #4C5290 50%, #5963A2 75%, #5963A2 100%);
  background-attachment: fixed;
}

.toggle-target {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.toggle-target.is-open {
  max-height: auto; /* può essere un valore grande qualsiasi */
}

.ng-icon,
ngi,
svg.ng-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  --ng-ngi-default: currentColor;
}

svg.ng-icon path[opacity],
svg.ng-icon rect[opacity],
svg.ng-icon polygon[opacity] {
  fill: var(--ng-ngi-default, currentColor);
}

[class*=c-],
[class*=text-] {
  --ng-ngi-default: currentColor;
}

.ph {
  font-size: inherit;
  line-height: 1;
}

.ph::before {
  font-size: inherit;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 300;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
  z-index: 300;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.ml-auto {
  margin-left: auto !important;
}

.mr-auto {
  margin-right: auto !important;
}

.no-shrink {
  flex: 0 0 auto !important;
}

.f-column {
  flex-direction: column;
}

.f-row {
  flex-direction: row;
}

.jc-start {
  justify-content: flex-start !important;
}

.jc-center {
  justify-content: center !important;
}

.jc-end {
  justify-content: flex-end !important;
}

.ji-left {
  justify-items: start !important;
}

.ji-center {
  justify-items: center !important;
}

.ji-end {
  justify-items: end !important;
}

@media (min-width: 576px) {
  .pxy-sm {
    padding: calc(var(--ng-gap) * 0.5) calc(var(--ng-gap) * 1.4) !important;
  }
  .mxy-sm {
    margin: calc(var(--ng-gap) * 0.5) calc(var(--ng-gap) * 1.4) !important;
  }
}
@media (min-width: 768px) {
  .pxy-md {
    padding: calc(var(--ng-gap) * 1) calc(var(--ng-gap) * 1.4) !important;
  }
  .mxy-md {
    margin: calc(var(--ng-gap) * 1) calc(var(--ng-gap) * 1.4) !important;
  }
}
@media (min-width: 896px) {
  .pxy-lg {
    padding: calc(var(--ng-gap) * 2) calc(var(--ng-gap) * 2.4) !important;
  }
  .mxy-lg {
    margin: calc(var(--ng-gap) * 2) calc(var(--ng-gap) * 2.4) !important;
  }
}
@media (min-width: 1024px) {
  .pxy-xlg {
    padding: calc(var(--ng-gap) * 2.5) calc(var(--ng-gap) * 2.8) !important;
  }
  .mxy-xlg {
    margin: calc(var(--ng-gap) * 2.5) calc(var(--ng-gap) * 2.8) !important;
  }
}
@media (min-width: 1280px) {
  .pxy-xl {
    padding: calc(var(--ng-gap) * 3) calc(var(--ng-gap) * 3.4) !important;
  }
  .mxy-xl {
    margin: calc(var(--ng-gap) * 3) calc(var(--ng-gap) * 3.4) !important;
  }
}
@media (min-width: 1400px) {
  .pxy-xxl {
    padding: calc(var(--ng-gap) * 4) calc(var(--ng-gap) * 4.4) !important;
  }
  .mxy-xxl {
    margin: calc(var(--ng-gap) * 4) calc(var(--ng-gap) * 4.4) !important;
  }
}
@media (max-width: 768px) {
  .no-responsive {
    display: none !important;
  }
  .ng-header .ng-dropdown .dropdown-menu.no-background {
    background: transparent;
  }
  .ng-header .ng-dropdown .dropdown-menu.no-border {
    border: none;
  }
  .ng-header .ng-dropdown .dropdown-menu.no-radius {
    border-radius: 0;
  }
  .ng-header .ng-dropdown .dropdown-menu.flat {
    border: none;
    background: transparent;
    border-radius: 0;
  }
}
.ng-print-show {
  display: none !important;
}

.ng-print-hide { /* visibile di default, nascosta solo in print */ }

@media print {
  @page {
    size: A4;
    margin: 12mm;
  }
  html {
    print-color-adjust: economy;
    -webkit-print-color-adjust: economy;
  }
  /* Toggles visibilità */
  .ng-print-show {
    display: initial !important;
  }
  .ng-print-hide {
    display: none !important;
  }
  /* Impaginazione: interruzioni di pagina */
  .ng-print-break-before {
    break-before: page !important;
    page-break-before: always !important;
  }
  .ng-print-break-after {
    break-after: page !important;
    page-break-after: always !important;
  }
  .ng-print-avoid-break {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }
  /* Larghezze a tutta pagina (evita max-width dei container) */
  .ng-print-fullwidth .ng-container,
  .ng-print-fullwidth .ng-content,
  .ng-print-fullwidth .ng-row,
  .ng-print-fullwidth .ng-col {
    max-width: 100% !important;
    width: 100% !important;
  }
  /* Compatta i margini orizzontali (rimuove gutter a padding) */
  .ng-print-compact .ng-row {
    gap: 0 !important;
  }
  .ng-print-compact .ng-row > .ng-col,
  .ng-print-compact .ng-gutter-0 > .ng-col,
  .ng-print-compact [class*=ng-gutter-] > .ng-col {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  /* Pulizia colori di sfondo/ombre (opt-in per non sorprendere) */
  .ng-print-clean *,
  .ng-print-clean *::before,
  .ng-print-clean *::after {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .ng-print-clean {
    color: #000 !important;
  }
  .ng-print-clean .ng-debug {
    background: none !important;
  }
  /* Media responsivi in stampa */
  img, svg, video {
    max-width: 100% !important;
    height: auto !important;
  }
  /* Code: evita overflow orizzontale */
  pre, code {
    white-space: pre-wrap !important;
    word-break: break-word !important;
    tab-size: 4 !important;
  }
  /* Link: mostra URL a fianco (opt-in sul wrapper) */
  .ng-print-links a[href^=http]::after {
    content: " (" attr(href) ")";
    font-size: 90%;
  }
}

/*# sourceMappingURL=ng_master.css.map */
