@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap";

/* src/styles.scss */
:root {
  --primary-color: var(--p-primary-color);
  --primary-color-text: var(--p-primary-contrast-color);
  --text-color: var(--p-text-color);
  --text-color-secondary: var(--p-text-muted-color);
  --surface-border: var(--p-content-border-color);
  --surface-card: var(--p-content-background);
  --surface-hover: var(--p-content-hover-background);
  --surface-overlay: var(--p-overlay-popover-background);
  --transition-duration: var(--p-transition-duration);
  --maskbg: var(--p-mask-background);
  --border-radius: var(--p-content-border-radius);
  --layout-section-transition-duration: 0.2s;
  --focus-ring-shadow: var(--p-focus-ring-shadow);
}
:root {
  --surface-ground: var(--p-surface-100);
}
:root[class*=app-dark] {
  --surface-ground: var(--p-surface-200);
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 300;
  src:
    local("Lato Light"),
    local("Lato-Light"),
    url("./media/lato-v17-latin-ext_latin-300.woff2") format("woff2"),
    url("./media/lato-v17-latin-ext_latin-300.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  src:
    local("Lato"),
    local("Lato-Regular"),
    url("./media/lato-v17-latin-ext_latin-regular.woff2") format("woff2"),
    url("./media/lato-v17-latin-ext_latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  src:
    local("Lato Bold"),
    local("Lato-Bold"),
    url("./media/lato-v17-latin-ext_latin-700.woff2") format("woff2"),
    url("./media/lato-v17-latin-ext_latin-700.woff") format("woff");
}
.layout-light {
  --v-body-bg: var(--p-surface-0);
  --v-menuitem-text-color-secondary: var(--text-color-secondary);
  --v-menuitem-text-color: var(--text-color);
  --v-menuitem-hover-bg: var(--surface-hover);
  --v-overlay-menuitem-text-color: var(--text-color);
  --v-overlay-menuitem-hover-bg: var(--surface-hover);
  --v-topbar-search-button-bg: var(--surface-ground);
  --v-topbar-search-button-icon-color: var(--v-menuitem-text-color-secondary);
}
.layout-dark {
  --v-body-bg: var(--p-surface-0);
  --v-menuitem-text-color-secondary: var(--text-color-secondary);
  --v-menuitem-text-color: var(--text-color);
  --v-menuitem-hover-bg: var(--surface-hover);
  --v-overlay-menuitem-text-color: var(--text-color);
  --v-overlay-menuitem-hover-bg: var(--surface-hover);
  --v-topbar-search-button-bg: var(--surface-ground);
  --v-topbar-search-button-icon-color: var(--v-menuitem-text-color-secondary);
}
.layout-primary {
  --v-body-bg:
    linear-gradient(
      147.38deg,
      var(--p-primary-500) 0%,
      var(--p-primary-800) 100%);
  --v-menuitem-text-color-secondary: var(--primary-color-text);
  --v-menuitem-text-color: var(--primary-color-text);
  --v-menuitem-hover-bg: rgba(255, 255, 255, 0.1);
  --v-overlay-menuitem-text-color: var(--text-color);
  --v-overlay-menuitem-hover-bg: var(--surface-hover);
  --v-topbar-search-button-bg: var(--primary-color-text);
  --v-topbar-search-button-icon-color: var(--primary-color);
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 14px;
}
body {
  font-weight: 400;
  padding: 0;
  margin: 0;
  min-height: 100%;
  background: var(--surface-ground);
  color: var(--text-color);
  font-family:
    Lato,
    Helvetica,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body a {
  text-decoration: none;
}
.layout-container {
  background: var(--v-body-bg);
  min-height: 100vh;
}
.layout-sidebar {
  position: fixed;
  width: 14rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 5rem);
  left: 0;
  top: 5rem;
  -webkit-user-select: none;
  user-select: none;
  background: var(--v-body-bg);
  z-index: 999;
}
.layout-sidebar .layout-menu-container {
  overflow: auto;
  flex: 1;
  height: 100%;
  padding: 1rem 1.5rem;
}
.layout-sidebar .layout-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.layout-sidebar .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
  font-size: 0.857rem;
  text-transform: uppercase;
  font-weight: 700;
  padding: 1rem 0 0.5rem 0;
  color: var(--v-menuitem-text-color-secondary);
}
.layout-sidebar .layout-menu .layout-root-menuitem > .layout-menuitem-root-text .active-route {
  font-weight: 700;
}
.layout-sidebar .layout-menu .layout-root-menuitem > a {
  display: none;
}
.layout-sidebar .layout-menu li.active-menuitem > a .layout-submenu-toggler {
  transform: rotate(-180deg);
}
.layout-sidebar .layout-menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.layout-sidebar .layout-menu ul a {
  display: flex;
  align-items: center;
  outline: 0 none;
  position: relative;
  color: var(--v-menuitem-text-color);
  padding: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 0.25rem;
  border-radius: var(--border-radius);
  line-height: 1;
  font-size: 17px;
  transition: background-color var(--transition-duration), box-shadow var(--transition-duration);
  cursor: pointer;
}
.layout-sidebar .layout-menu ul a .layout-menuitem-icon {
  margin-right: 0.5rem;
}
.layout-sidebar .layout-menu ul a .layout-submenu-toggler {
  font-size: 75%;
  margin-left: auto;
  transition: transform var(--transition-duration);
}
.layout-sidebar .layout-menu ul a.active-route {
  font-weight: 700;
}
.layout-sidebar .layout-menu ul a:hover {
  background: var(--v-menuitem-hover-bg);
}
.layout-sidebar .layout-menu ul ul {
  overflow: hidden;
  border-radius: var(--border-radius);
}
.layout-sidebar .layout-menu ul ul li a {
  padding-left: 1.5rem;
}
.layout-sidebar .layout-menu ul ul li li a {
  padding-left: 2.5rem;
}
.layout-sidebar .layout-menu ul ul li li li a {
  padding-left: 3.5rem;
}
.layout-sidebar .layout-menu ul ul li li li li a {
  padding-left: 4.5rem;
}
.layout-sidebar .layout-menu ul ul li li li li li a {
  padding-left: 5.5rem;
}
.layout-sidebar .layout-menu ul ul li li li li li li a {
  padding-left: 6.5rem;
}
@media screen and (min-width: 992px) {
  .layout-container.layout-slim .layout-topbar .app-logo span {
    display: none;
  }
  .layout-container.layout-slim .topbar-menubutton {
    display: none;
  }
  .layout-container.layout-slim .layout-sidebar {
    width: 5rem;
    overflow: visible;
  }
  .layout-container.layout-slim .layout-sidebar .layout-menu-container {
    overflow: auto;
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .layout-container.layout-slim .layout-sidebar .layout-menu-container::-webkit-scrollbar {
    display: none;
  }
  .layout-container.layout-slim .layout-content-wrapper {
    margin-left: 5rem;
  }
  .layout-container.layout-slim .layout-menu ul {
    display: none;
  }
  .layout-container.layout-slim .layout-menu li.active-menuitem > ul {
    display: block;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    transition: background-color var(--layout-section-transition-duration);
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1rem auto;
    color: var(--v-menuitem-text-color);
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a:hover {
    background: var(--v-menuitem-hover-bg);
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a .layout-submenu-toggler {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a .layout-menuitem-icon {
    font-size: 1.75rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > a .layout-menuitem-text {
    display: none;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul {
    position: absolute;
    left: 5rem;
    top: 0;
    min-width: 15rem;
    background-color: var(--surface-overlay);
    border-radius: var(--border-radius);
    box-shadow:
      0px 4px 10px rgba(0, 0, 0, 0.03),
      0px 0px 2px rgba(0, 0, 0, 0.06),
      0px 2px 6px rgba(0, 0, 0, 0.12);
    padding: 1rem;
    max-height: 20rem;
    overflow: auto;
    z-index: 999;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul a {
    color: var(--v-overlay-menuitem-text-color);
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul a:hover {
    background: var(--v-overlay-menuitem-hover-bg);
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li a {
    padding-left: 0.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li a {
    padding-left: 1.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li a {
    padding-left: 2.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li li a {
    padding-left: 3.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li li li a {
    padding-left: 4.5rem;
  }
  .layout-container.layout-slim .layout-menu .layout-root-menuitem > ul li li li li li li a {
    padding-left: 5.5rem;
  }
}
@media screen and (min-width: 992px) {
  .layout-container.layout-slim-plus .layout-topbar .app-logo {
    width: 5rem;
    justify-content: center;
  }
  .layout-container.layout-slim-plus .layout-topbar .app-logo span {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-topbar .topbar-menu {
    margin: 0 2rem;
  }
  .layout-container.layout-slim-plus .topbar-menubutton {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-sidebar {
    width: 7rem;
    overflow: visible;
  }
  .layout-container.layout-slim-plus .layout-sidebar .layout-menu-container {
    overflow: auto;
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .layout-container.layout-slim-plus .layout-sidebar .layout-menu-container::-webkit-scrollbar {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-content-wrapper {
    margin-left: 7rem;
  }
  .layout-container.layout-slim-plus .layout-menu ul {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-menu li.active-menuitem > ul {
    display: block;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    text-align: center;
    cursor: pointer;
    outline: none;
    transition: background-color var(--transition-duration);
    width: auto;
    height: auto;
    margin: 0 auto 1rem auto;
    padding: 0.75rem 0;
    color: var(--v-menuitem-text-color);
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a:hover {
    background: var(--v-menuitem-hover-bg);
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a .layout-submenu-toggler {
    display: none;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a .layout-menuitem-icon {
    font-size: 1.75rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > a .layout-menuitem-text {
    font-size: 0.875rem;
    display: block;
    margin-top: 0.25rem;
    color: var(--menuitem-text-color);
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul {
    position: absolute;
    left: 7rem;
    top: 0;
    min-width: 15rem;
    background-color: var(--surface-overlay);
    border-radius: var(--border-radius);
    box-shadow:
      0px 4px 10px rgba(0, 0, 0, 0.03),
      0px 0px 2px rgba(0, 0, 0, 0.06),
      0px 2px 6px rgba(0, 0, 0, 0.12);
    padding: 1rem;
    max-height: 20rem;
    overflow: auto;
    z-index: 999;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul a {
    color: var(--v-overlay-menuitem-text-color);
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul a:hover {
    background: var(--v-overlay-menuitem-hover-bg);
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li a {
    padding-left: 0.5rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li a {
    padding-left: 1.5rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li li a {
    padding-left: 2.5rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li li li a {
    padding-left: 3.5rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li li li li a {
    padding-left: 4.5rem;
  }
  .layout-container.layout-slim-plus .layout-menu .layout-root-menuitem > ul li li li li li li a {
    padding-left: 5.5rem;
  }
}
.layout-topbar {
  height: 5rem;
  padding: 0 2rem 0 1rem;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  background-color: var(--v-body-bg);
}
.layout-topbar .app-logo {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
}
.layout-topbar .topbar-menubutton {
  position: relative;
  width: 3rem;
  height: 3rem;
  margin-left: 3rem;
  border-radius: var(--border-radius);
  flex-shrink: 0;
}
.layout-topbar .topbar-menubutton span {
  width: 2rem;
  height: 4px;
  display: block;
  position: absolute;
  top: 18px;
  left: 7px;
  border-radius: 7px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition-timing-function: swing;
  background-color: var(--v-menuitem-text-color-secondary);
}
.layout-topbar .topbar-menubutton span:before {
  width: 1rem;
  height: 4px;
  content: "";
  position: absolute;
  right: 0;
  top: -9px;
  border-radius: 7px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition-timing-function: swing;
  background-color: var(--v-menuitem-text-color-secondary);
}
.layout-topbar .topbar-menubutton span:after {
  width: 1rem;
  height: 4px;
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 7px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  transition-timing-function: swing;
  background-color: var(--v-menuitem-text-color-secondary);
}
.layout-topbar .topbar-menubutton:hover {
  background-color: var(--v-menuitem-hover-bg);
}
.layout-topbar .topbar-menu {
  list-style-type: none;
  padding: 0;
  margin: 0 3rem;
  display: flex;
  gap: 0.5rem;
  flex: 1 1 auto;
  overflow: auto;
}
.layout-topbar .topbar-menu > li {
  display: flex;
  align-items: center;
  transition: background-color var(--transition-duration);
  border-radius: var(--border-radius);
  padding: 0.5rem;
  cursor: pointer;
}
.layout-topbar .topbar-menu > li a {
  font-size: 1.25rem;
  font-weight: 400;
  white-space: nowrap;
  padding-right: 1.375rem;
  color: var(--v-menuitem-text-color-secondary);
  opacity: 0.7;
}
.layout-topbar .topbar-menu > li a.active-route {
  opacity: 1;
  color: var(--v-menuitem-text-color);
}
.layout-topbar .topbar-menu > li i {
  color: var(--v-menuitem-text-color-secondary);
  font-size: 0.875rem;
  margin-left: 0.5rem;
  display: none;
}
.layout-topbar .topbar-menu > li:hover {
  background-color: var(--v-menuitem-hover-bg);
}
.layout-topbar .topbar-menu > li:hover a {
  padding-right: 0;
}
.layout-topbar .topbar-menu > li:hover i {
  display: block;
}
.layout-topbar .topbar-menu > li.topbar-menu-empty {
  color: var(--v-menuitem-text-color);
  cursor: auto;
}
.layout-topbar .topbar-menu > li.topbar-menu-empty:hover {
  background-color: transparent;
}
.layout-topbar .topbar-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1rem;
  margin-left: auto;
}
.layout-topbar .topbar-search {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.layout-topbar .topbar-search .search-input-wrapper {
  position: relative;
  width: 0;
  opacity: 0;
  visibility: hidden;
  transition: 400ms cubic-bezier(0.86, 0, 0.07, 1);
}
.layout-topbar .topbar-search .search-input-wrapper .p-inputtext {
  width: 100%;
  position: relative;
  border-radius: 40px;
  padding: 9px;
}
.layout-topbar .topbar-search .search-input-wrapper span {
  font-size: 18px;
  margin-top: -9px;
}
.layout-topbar .topbar-search.topbar-search-active .search-input-wrapper {
  margin-left: 1rem;
  width: 190px;
  opacity: 1;
  visibility: visible;
}
.layout-topbar .topbar-search.topbar-search-active .search-input-wrapper i {
  display: block;
}
.layout-topbar .topbar-profile {
  border-radius: var(--border-radius);
  position: relative;
  flex-shrink: 0;
}
.layout-topbar .topbar-profile .topbar-profile-button {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.layout-topbar .topbar-profile .topbar-profile-button > img {
  width: 36px;
  margin-right: 0.75rem;
}
.layout-topbar .topbar-profile .topbar-profile-button .profile-details {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.layout-topbar .topbar-profile .topbar-profile-button .profile-name {
  color: var(--v-menuitem-text-color);
  font-weight: 700;
}
.layout-topbar .topbar-profile .topbar-profile-button .profile-job {
  line-height: 1;
  color: var(--v-menuitem-text-color-secondary);
}
.layout-topbar .topbar-profile .topbar-profile-button i {
  margin-left: 0.75rem;
  color: var(--v-menuitem-text-color-secondary);
  transition: transform var(--layout-section-transition-duration);
}
.layout-breadcrumb {
  margin-bottom: 2rem;
}
.layout-breadcrumb ol {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--text-color-secondary);
}
.layout-breadcrumb ol a {
  color: var(--text-color-secondary);
}
app-footer {
  margin-top: auto;
}
.layout-footer {
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.layout-footer .footer-start {
  display: flex;
  align-items: center;
}
.layout-footer .footer-start img {
  width: 2rem;
}
.layout-footer .footer-start .app-name {
  margin-left: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.layout-content-wrapper {
  transition: margin-left var(--layout-section-transition-duration);
  padding-top: 5rem;
}
.layout-content-wrapper .layout-content {
  border-top: 1px solid var(--surface-border);
  overflow: auto;
  height: calc(100vh - 5rem);
  padding: 2rem;
  background-color: var(--surface-ground);
  border-top-left-radius: 30px;
  box-shadow: inset 0px 3px 4px rgba(0, 0, 0, 0.1);
}
.layout-content-wrapper .layout-content .layout-content-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media screen and (min-width: 992px) {
  .layout-container.layout-static .layout-sidebar {
    transition: transform var(--layout-section-transition-duration);
  }
  .layout-container.layout-static .layout-content-wrapper {
    margin-left: 14rem;
  }
  .layout-container.layout-static-inactive .layout-sidebar {
    transform: translateX(-100%);
  }
  .layout-container.layout-static-inactive .layout-content-wrapper {
    margin-left: 0;
  }
  .layout-container.layout-overlay .layout-content-wrapper {
    margin-left: 0;
  }
  .layout-container.layout-overlay .layout-sidebar {
    z-index: 999;
    transform: translateX(-100%);
    transition: transform var(--layout-section-transition-duration);
    box-shadow: 3px 0 4px rgba(0, 0, 0, 0.1019607843);
  }
  .layout-container.layout-overlay.layout-overlay-active .layout-sidebar {
    transform: translateX(0);
  }
}
@media screen and (max-width: 991px) {
  .blocked-scroll {
    overflow: hidden;
  }
  .layout-topbar {
    height: 5rem;
    flex-wrap: wrap;
    padding: 1rem 1rem 0 1rem;
  }
  .layout-topbar .app-logo span {
    display: none;
  }
  .layout-topbar .topbar-menubutton {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 4.5rem;
    height: 4.5rem;
    margin: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 0;
    background: var(--primary-color);
    transition: background-color var(--layout-section-transition-duration);
    border-width: inherit;
  }
  .layout-topbar .topbar-menubutton:hover {
    background-color: var(--p-primary-400);
  }
  .layout-topbar .topbar-menubutton span {
    top: 30px;
    left: 20px;
    background: var(--primary-color-text);
  }
  .layout-topbar .topbar-menubutton span:before,
  .layout-topbar .topbar-menubutton span:after {
    background: var(--primary-color-text);
  }
  .layout-topbar .topbar-menu {
    order: 1;
    width: 100%;
    margin: 0;
  }
  .layout-topbar .topbar-search.topbar-search-active .search-input-wrapper {
    width: 120px;
  }
  .layout-topbar .topbar-profile .topbar-profile-button .profile-details,
  .layout-topbar .topbar-profile .topbar-profile-button .profile-name,
  .layout-topbar .topbar-profile .topbar-profile-button i {
    display: none;
  }
  .layout-content-wrapper {
    margin-left: 0;
    padding-top: 6rem;
    height: calc(100% - 6rem);
  }
  .layout-content-wrapper .layout-content {
    padding-top: 2rem;
    padding-bottom: 1rem;
    padding-left: 0;
    padding-right: 0;
    border-top-right-radius: 30px;
    height: calc(100vh - 6rem);
  }
  .layout-content-wrapper .layout-content .layout-breadcrumb {
    padding-left: 2rem;
  }
  .layout-content-wrapper .layout-content .layout-footer {
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
  }
  .layout-sidebar {
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    width: 100%;
    top: 6rem;
    height: calc(100% - 6rem);
    mix-blend-mode: normal;
    -webkit-backdrop-filter: blur(200px);
    backdrop-filter: blur(200px);
    border-radius: 30px 30px 0px 0px;
    transition: transform var(--layout-section-transition-duration);
  }
  .layout-container.layout-mobile-active .layout-topbar .topbar-menubutton span {
    width: 0;
  }
  .layout-container.layout-mobile-active .layout-topbar .topbar-menubutton span:before {
    width: 2rem;
    left: 0;
    transform: translateY(9px) rotate(45deg);
  }
  .layout-container.layout-mobile-active .layout-topbar .topbar-menubutton span:after {
    width: 2rem;
    transform: translateY(-9px) rotate(-45deg);
  }
  .layout-container.layout-mobile-active .layout-sidebar {
    transform: translateY(0);
  }
  .layout-container .layout-search .search-container {
    width: 75vw;
  }
}
@media screen and (min-width: 1960px) {
  .landing-wrapper,
  .layout-content-inner {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
.card {
  background: var(--surface-card);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.1), 0px 24px 36px rgba(0, 0, 0, 0.04);
  border-radius: 14px;
}
.card:last-child {
  margin-bottom: 0;
}
.p-toast.p-toast-top-right,
.p-toast.p-toast-top-left,
.p-toast.p-toast-top-center {
  top: 7rem;
}
.layout-config-sidebar.p-drawer .p-drawer-content {
  padding-left: 2rem;
  padding-right: 2rem;
}
@font-face {
  font-family: "primeicons";
  font-display: block;
  src: url("./media/primeicons.eot");
  src:
    url("./media/primeicons.eot?#iefix") format("embedded-opentype"),
    url("./media/primeicons.woff2") format("woff2"),
    url("./media/primeicons.woff") format("woff"),
    url("./media/primeicons.ttf") format("truetype"),
    url("./media/primeicons.svg?#primeicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
.pi {
  font-family: "primeicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.pi:before {
  --webkit-backface-visibility:hidden;
  backface-visibility: hidden;
}
.pi-fw {
  width: 1.28571429em;
  text-align: center;
}
.pi-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
@media (prefers-reduced-motion: reduce) {
  .pi-spin {
    -webkit-animation-delay: -1ms;
    animation-delay: -1ms;
    -webkit-animation-duration: 1ms;
    animation-duration: 1ms;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
  }
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.pi-folder-plus:before {
  content: "\ea05";
}
.pi-receipt:before {
  content: "\ea06";
}
.pi-asterisk:before {
  content: "\ea07";
}
.pi-face-smile:before {
  content: "\ea08";
}
.pi-pinterest:before {
  content: "\ea09";
}
.pi-expand:before {
  content: "\ea0a";
}
.pi-pen-to-square:before {
  content: "\ea0b";
}
.pi-wave-pulse:before {
  content: "\ea0c";
}
.pi-turkish-lira:before {
  content: "\ea0d";
}
.pi-spinner-dotted:before {
  content: "\ea0e";
}
.pi-crown:before {
  content: "\ea0f";
}
.pi-pause-circle:before {
  content: "\ea10";
}
.pi-warehouse:before {
  content: "\ea11";
}
.pi-objects-column:before {
  content: "\ea12";
}
.pi-clipboard:before {
  content: "\ea13";
}
.pi-play-circle:before {
  content: "\ea14";
}
.pi-venus:before {
  content: "\ea15";
}
.pi-cart-minus:before {
  content: "\ea16";
}
.pi-file-plus:before {
  content: "\ea17";
}
.pi-microchip:before {
  content: "\ea18";
}
.pi-twitch:before {
  content: "\ea19";
}
.pi-building-columns:before {
  content: "\ea1a";
}
.pi-file-check:before {
  content: "\ea1b";
}
.pi-microchip-ai:before {
  content: "\ea1c";
}
.pi-trophy:before {
  content: "\ea1d";
}
.pi-barcode:before {
  content: "\ea1e";
}
.pi-file-arrow-up:before {
  content: "\ea1f";
}
.pi-mars:before {
  content: "\ea20";
}
.pi-tiktok:before {
  content: "\ea21";
}
.pi-arrow-up-right-and-arrow-down-left-from-center:before {
  content: "\ea22";
}
.pi-ethereum:before {
  content: "\ea23";
}
.pi-list-check:before {
  content: "\ea24";
}
.pi-thumbtack:before {
  content: "\ea25";
}
.pi-arrow-down-left-and-arrow-up-right-to-center:before {
  content: "\ea26";
}
.pi-equals:before {
  content: "\ea27";
}
.pi-lightbulb:before {
  content: "\ea28";
}
.pi-star-half:before {
  content: "\ea29";
}
.pi-address-book:before {
  content: "\ea2a";
}
.pi-chart-scatter:before {
  content: "\ea2b";
}
.pi-indian-rupee:before {
  content: "\ea2c";
}
.pi-star-half-fill:before {
  content: "\ea2d";
}
.pi-cart-arrow-down:before {
  content: "\ea2e";
}
.pi-calendar-clock:before {
  content: "\ea2f";
}
.pi-sort-up-fill:before {
  content: "\ea30";
}
.pi-sparkles:before {
  content: "\ea31";
}
.pi-bullseye:before {
  content: "\ea32";
}
.pi-sort-down-fill:before {
  content: "\ea33";
}
.pi-graduation-cap:before {
  content: "\ea34";
}
.pi-hammer:before {
  content: "\ea35";
}
.pi-bell-slash:before {
  content: "\ea36";
}
.pi-gauge:before {
  content: "\ea37";
}
.pi-shop:before {
  content: "\ea38";
}
.pi-headphones:before {
  content: "\ea39";
}
.pi-eraser:before {
  content: "\ea04";
}
.pi-stopwatch:before {
  content: "\ea01";
}
.pi-verified:before {
  content: "\ea02";
}
.pi-delete-left:before {
  content: "\ea03";
}
.pi-hourglass:before {
  content: "\e9fe";
}
.pi-truck:before {
  content: "\ea00";
}
.pi-wrench:before {
  content: "\e9ff";
}
.pi-microphone:before {
  content: "\e9fa";
}
.pi-megaphone:before {
  content: "\e9fb";
}
.pi-arrow-right-arrow-left:before {
  content: "\e9fc";
}
.pi-bitcoin:before {
  content: "\e9fd";
}
.pi-file-edit:before {
  content: "\e9f6";
}
.pi-language:before {
  content: "\e9f7";
}
.pi-file-export:before {
  content: "\e9f8";
}
.pi-file-import:before {
  content: "\e9f9";
}
.pi-file-word:before {
  content: "\e9f1";
}
.pi-gift:before {
  content: "\e9f2";
}
.pi-cart-plus:before {
  content: "\e9f3";
}
.pi-thumbs-down-fill:before {
  content: "\e9f4";
}
.pi-thumbs-up-fill:before {
  content: "\e9f5";
}
.pi-arrows-alt:before {
  content: "\e9f0";
}
.pi-calculator:before {
  content: "\e9ef";
}
.pi-sort-alt-slash:before {
  content: "\e9ee";
}
.pi-arrows-h:before {
  content: "\e9ec";
}
.pi-arrows-v:before {
  content: "\e9ed";
}
.pi-pound:before {
  content: "\e9eb";
}
.pi-prime:before {
  content: "\e9ea";
}
.pi-chart-pie:before {
  content: "\e9e9";
}
.pi-reddit:before {
  content: "\e9e8";
}
.pi-code:before {
  content: "\e9e7";
}
.pi-sync:before {
  content: "\e9e6";
}
.pi-shopping-bag:before {
  content: "\e9e5";
}
.pi-server:before {
  content: "\e9e4";
}
.pi-database:before {
  content: "\e9e3";
}
.pi-hashtag:before {
  content: "\e9e2";
}
.pi-bookmark-fill:before {
  content: "\e9df";
}
.pi-filter-fill:before {
  content: "\e9e0";
}
.pi-heart-fill:before {
  content: "\e9e1";
}
.pi-flag-fill:before {
  content: "\e9de";
}
.pi-circle:before {
  content: "\e9dc";
}
.pi-circle-fill:before {
  content: "\e9dd";
}
.pi-bolt:before {
  content: "\e9db";
}
.pi-history:before {
  content: "\e9da";
}
.pi-box:before {
  content: "\e9d9";
}
.pi-at:before {
  content: "\e9d8";
}
.pi-arrow-up-right:before {
  content: "\e9d4";
}
.pi-arrow-up-left:before {
  content: "\e9d5";
}
.pi-arrow-down-left:before {
  content: "\e9d6";
}
.pi-arrow-down-right:before {
  content: "\e9d7";
}
.pi-telegram:before {
  content: "\e9d3";
}
.pi-stop-circle:before {
  content: "\e9d2";
}
.pi-stop:before {
  content: "\e9d1";
}
.pi-whatsapp:before {
  content: "\e9d0";
}
.pi-building:before {
  content: "\e9cf";
}
.pi-qrcode:before {
  content: "\e9ce";
}
.pi-car:before {
  content: "\e9cd";
}
.pi-instagram:before {
  content: "\e9cc";
}
.pi-linkedin:before {
  content: "\e9cb";
}
.pi-send:before {
  content: "\e9ca";
}
.pi-slack:before {
  content: "\e9c9";
}
.pi-sun:before {
  content: "\e9c8";
}
.pi-moon:before {
  content: "\e9c7";
}
.pi-vimeo:before {
  content: "\e9c6";
}
.pi-youtube:before {
  content: "\e9c5";
}
.pi-flag:before {
  content: "\e9c4";
}
.pi-wallet:before {
  content: "\e9c3";
}
.pi-map:before {
  content: "\e9c2";
}
.pi-link:before {
  content: "\e9c1";
}
.pi-credit-card:before {
  content: "\e9bf";
}
.pi-discord:before {
  content: "\e9c0";
}
.pi-percentage:before {
  content: "\e9be";
}
.pi-euro:before {
  content: "\e9bd";
}
.pi-book:before {
  content: "\e9ba";
}
.pi-shield:before {
  content: "\e9b9";
}
.pi-paypal:before {
  content: "\e9bb";
}
.pi-amazon:before {
  content: "\e9bc";
}
.pi-phone:before {
  content: "\e9b8";
}
.pi-filter-slash:before {
  content: "\e9b7";
}
.pi-facebook:before {
  content: "\e9b4";
}
.pi-github:before {
  content: "\e9b5";
}
.pi-twitter:before {
  content: "\e9b6";
}
.pi-step-backward-alt:before {
  content: "\e9ac";
}
.pi-step-forward-alt:before {
  content: "\e9ad";
}
.pi-forward:before {
  content: "\e9ae";
}
.pi-backward:before {
  content: "\e9af";
}
.pi-fast-backward:before {
  content: "\e9b0";
}
.pi-fast-forward:before {
  content: "\e9b1";
}
.pi-pause:before {
  content: "\e9b2";
}
.pi-play:before {
  content: "\e9b3";
}
.pi-compass:before {
  content: "\e9ab";
}
.pi-id-card:before {
  content: "\e9aa";
}
.pi-ticket:before {
  content: "\e9a9";
}
.pi-file-o:before {
  content: "\e9a8";
}
.pi-reply:before {
  content: "\e9a7";
}
.pi-directions-alt:before {
  content: "\e9a5";
}
.pi-directions:before {
  content: "\e9a6";
}
.pi-thumbs-up:before {
  content: "\e9a3";
}
.pi-thumbs-down:before {
  content: "\e9a4";
}
.pi-sort-numeric-down-alt:before {
  content: "\e996";
}
.pi-sort-numeric-up-alt:before {
  content: "\e997";
}
.pi-sort-alpha-down-alt:before {
  content: "\e998";
}
.pi-sort-alpha-up-alt:before {
  content: "\e999";
}
.pi-sort-numeric-down:before {
  content: "\e99a";
}
.pi-sort-numeric-up:before {
  content: "\e99b";
}
.pi-sort-alpha-down:before {
  content: "\e99c";
}
.pi-sort-alpha-up:before {
  content: "\e99d";
}
.pi-sort-alt:before {
  content: "\e99e";
}
.pi-sort-amount-up:before {
  content: "\e99f";
}
.pi-sort-amount-down:before {
  content: "\e9a0";
}
.pi-sort-amount-down-alt:before {
  content: "\e9a1";
}
.pi-sort-amount-up-alt:before {
  content: "\e9a2";
}
.pi-palette:before {
  content: "\e995";
}
.pi-undo:before {
  content: "\e994";
}
.pi-desktop:before {
  content: "\e993";
}
.pi-sliders-v:before {
  content: "\e991";
}
.pi-sliders-h:before {
  content: "\e992";
}
.pi-search-plus:before {
  content: "\e98f";
}
.pi-search-minus:before {
  content: "\e990";
}
.pi-file-excel:before {
  content: "\e98e";
}
.pi-file-pdf:before {
  content: "\e98d";
}
.pi-check-square:before {
  content: "\e98c";
}
.pi-chart-line:before {
  content: "\e98b";
}
.pi-user-edit:before {
  content: "\e98a";
}
.pi-exclamation-circle:before {
  content: "\e989";
}
.pi-android:before {
  content: "\e985";
}
.pi-google:before {
  content: "\e986";
}
.pi-apple:before {
  content: "\e987";
}
.pi-microsoft:before {
  content: "\e988";
}
.pi-heart:before {
  content: "\e984";
}
.pi-mobile:before {
  content: "\e982";
}
.pi-tablet:before {
  content: "\e983";
}
.pi-key:before {
  content: "\e981";
}
.pi-shopping-cart:before {
  content: "\e980";
}
.pi-comments:before {
  content: "\e97e";
}
.pi-comment:before {
  content: "\e97f";
}
.pi-briefcase:before {
  content: "\e97d";
}
.pi-bell:before {
  content: "\e97c";
}
.pi-paperclip:before {
  content: "\e97b";
}
.pi-share-alt:before {
  content: "\e97a";
}
.pi-envelope:before {
  content: "\e979";
}
.pi-volume-down:before {
  content: "\e976";
}
.pi-volume-up:before {
  content: "\e977";
}
.pi-volume-off:before {
  content: "\e978";
}
.pi-eject:before {
  content: "\e975";
}
.pi-money-bill:before {
  content: "\e974";
}
.pi-images:before {
  content: "\e973";
}
.pi-image:before {
  content: "\e972";
}
.pi-sign-in:before {
  content: "\e970";
}
.pi-sign-out:before {
  content: "\e971";
}
.pi-wifi:before {
  content: "\e96f";
}
.pi-sitemap:before {
  content: "\e96e";
}
.pi-chart-bar:before {
  content: "\e96d";
}
.pi-camera:before {
  content: "\e96c";
}
.pi-dollar:before {
  content: "\e96b";
}
.pi-lock-open:before {
  content: "\e96a";
}
.pi-table:before {
  content: "\e969";
}
.pi-map-marker:before {
  content: "\e968";
}
.pi-list:before {
  content: "\e967";
}
.pi-eye-slash:before {
  content: "\e965";
}
.pi-eye:before {
  content: "\e966";
}
.pi-folder-open:before {
  content: "\e964";
}
.pi-folder:before {
  content: "\e963";
}
.pi-video:before {
  content: "\e962";
}
.pi-inbox:before {
  content: "\e961";
}
.pi-lock:before {
  content: "\e95f";
}
.pi-unlock:before {
  content: "\e960";
}
.pi-tags:before {
  content: "\e95d";
}
.pi-tag:before {
  content: "\e95e";
}
.pi-power-off:before {
  content: "\e95c";
}
.pi-save:before {
  content: "\e95b";
}
.pi-question-circle:before {
  content: "\e959";
}
.pi-question:before {
  content: "\e95a";
}
.pi-copy:before {
  content: "\e957";
}
.pi-file:before {
  content: "\e958";
}
.pi-clone:before {
  content: "\e955";
}
.pi-calendar-times:before {
  content: "\e952";
}
.pi-calendar-minus:before {
  content: "\e953";
}
.pi-calendar-plus:before {
  content: "\e954";
}
.pi-ellipsis-v:before {
  content: "\e950";
}
.pi-ellipsis-h:before {
  content: "\e951";
}
.pi-bookmark:before {
  content: "\e94e";
}
.pi-globe:before {
  content: "\e94f";
}
.pi-replay:before {
  content: "\e94d";
}
.pi-filter:before {
  content: "\e94c";
}
.pi-print:before {
  content: "\e94b";
}
.pi-align-right:before {
  content: "\e946";
}
.pi-align-left:before {
  content: "\e947";
}
.pi-align-center:before {
  content: "\e948";
}
.pi-align-justify:before {
  content: "\e949";
}
.pi-cog:before {
  content: "\e94a";
}
.pi-cloud-download:before {
  content: "\e943";
}
.pi-cloud-upload:before {
  content: "\e944";
}
.pi-cloud:before {
  content: "\e945";
}
.pi-pencil:before {
  content: "\e942";
}
.pi-users:before {
  content: "\e941";
}
.pi-clock:before {
  content: "\e940";
}
.pi-user-minus:before {
  content: "\e93e";
}
.pi-user-plus:before {
  content: "\e93f";
}
.pi-trash:before {
  content: "\e93d";
}
.pi-external-link:before {
  content: "\e93c";
}
.pi-window-maximize:before {
  content: "\e93b";
}
.pi-window-minimize:before {
  content: "\e93a";
}
.pi-refresh:before {
  content: "\e938";
}
.pi-user:before {
  content: "\e939";
}
.pi-exclamation-triangle:before {
  content: "\e922";
}
.pi-calendar:before {
  content: "\e927";
}
.pi-chevron-circle-left:before {
  content: "\e928";
}
.pi-chevron-circle-down:before {
  content: "\e929";
}
.pi-chevron-circle-right:before {
  content: "\e92a";
}
.pi-chevron-circle-up:before {
  content: "\e92b";
}
.pi-angle-double-down:before {
  content: "\e92c";
}
.pi-angle-double-left:before {
  content: "\e92d";
}
.pi-angle-double-right:before {
  content: "\e92e";
}
.pi-angle-double-up:before {
  content: "\e92f";
}
.pi-angle-down:before {
  content: "\e930";
}
.pi-angle-left:before {
  content: "\e931";
}
.pi-angle-right:before {
  content: "\e932";
}
.pi-angle-up:before {
  content: "\e933";
}
.pi-upload:before {
  content: "\e934";
}
.pi-download:before {
  content: "\e956";
}
.pi-ban:before {
  content: "\e935";
}
.pi-star-fill:before {
  content: "\e936";
}
.pi-star:before {
  content: "\e937";
}
.pi-chevron-left:before {
  content: "\e900";
}
.pi-chevron-right:before {
  content: "\e901";
}
.pi-chevron-down:before {
  content: "\e902";
}
.pi-chevron-up:before {
  content: "\e903";
}
.pi-caret-left:before {
  content: "\e904";
}
.pi-caret-right:before {
  content: "\e905";
}
.pi-caret-down:before {
  content: "\e906";
}
.pi-caret-up:before {
  content: "\e907";
}
.pi-search:before {
  content: "\e908";
}
.pi-check:before {
  content: "\e909";
}
.pi-check-circle:before {
  content: "\e90a";
}
.pi-times:before {
  content: "\e90b";
}
.pi-times-circle:before {
  content: "\e90c";
}
.pi-plus:before {
  content: "\e90d";
}
.pi-plus-circle:before {
  content: "\e90e";
}
.pi-minus:before {
  content: "\e90f";
}
.pi-minus-circle:before {
  content: "\e910";
}
.pi-circle-on:before {
  content: "\e911";
}
.pi-circle-off:before {
  content: "\e912";
}
.pi-sort-down:before {
  content: "\e913";
}
.pi-sort-up:before {
  content: "\e914";
}
.pi-sort:before {
  content: "\e915";
}
.pi-step-backward:before {
  content: "\e916";
}
.pi-step-forward:before {
  content: "\e917";
}
.pi-th-large:before {
  content: "\e918";
}
.pi-arrow-down:before {
  content: "\e919";
}
.pi-arrow-left:before {
  content: "\e91a";
}
.pi-arrow-right:before {
  content: "\e91b";
}
.pi-arrow-up:before {
  content: "\e91c";
}
.pi-bars:before {
  content: "\e91d";
}
.pi-arrow-circle-down:before {
  content: "\e91e";
}
.pi-arrow-circle-left:before {
  content: "\e91f";
}
.pi-arrow-circle-right:before {
  content: "\e920";
}
.pi-arrow-circle-up:before {
  content: "\e921";
}
.pi-info:before {
  content: "\e923";
}
.pi-info-circle:before {
  content: "\e924";
}
.pi-home:before {
  content: "\e925";
}
.pi-spinner:before {
  content: "\e926";
}
@media (prefers-color-scheme: dark) {
  :root,
  :host {
    --p-togglebutton-checked-background: var(--p-surface-100) !important;
    --p-togglebutton-checked-border-color: var(--p-surface-100) !important;
    --p-togglebutton-background: var(--p-surface-100) !important;
    --p-togglebutton-border-color: var(--p-surface-100) !important;
    --p-togglebutton-color: var(--p-surface-950) !important;
  }
}
.dmsans-thin {
  font-family: "DM Sans", sans-serif;
  font-weight: 100;
  font-style: normal;
}
.dmsans-extralight {
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.dmsans-light {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.dmsans-regular {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.dmsans-medium {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.dmsans-semibold {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-style: normal;
}
.dmsans-bold {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.dmsans-extrabold {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.dmsans-black {
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.dmsans-thin-italic {
  font-family: "DM Sans", sans-serif;
  font-weight: 100;
  font-style: italic;
}
.dmsans-extralight-italic {
  font-family: "DM Sans", sans-serif;
  font-weight: 200;
  font-style: italic;
}
.dmsans-light-italic {
  font-family: "DM Sans", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.dmsans-regular-italic {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}
.dmsans-medium-italic {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-style: italic;
}
.dmsans-semibold-italic {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-style: italic;
}
.dmsans-bold-italic {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}
.dmsans-extrabold-italic {
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
  font-style: italic;
}
.dmsans-black-italic {
  font-family: "DM Sans", sans-serif;
  font-weight: 900;
  font-style: italic;
}
body {
  font-family: "DM Sans", sans-serif;
}
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--p-html-background);
}
.logo {
  height: 44px;
  margin-left: 16px;
  margin-right: 16px;
}
.img-logo {
  background: url(/Palta-logo.svg);
  background-size: cover;
  background-position: center;
  width: 100px;
  height: 44px;
  margin-left: 16px;
}
.p-tablist-tab-list {
  background: transparent !important;
}
.p-fileupload {
  border: none !important;
}
.p-tooltip .p-tooltip-text {
  background: var(--p-surface-100) !important;
  color: var(--p-primary-50) !important;
  border: 1px solid var(--p-primary-700) !important;
  font-weight: 600;
}
.p-picklist-controls .p-button.p-button-icon-only[aria-label="Move Up"],
.p-picklist-controls .p-button.p-button-icon-only[aria-label="Move Down"],
.p-picklist-controls .p-button.p-button-icon-only[aria-label="Move Top"],
.p-picklist-controls .p-button.p-button-icon-only[aria-label="Move Down"] {
  display: none !important;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
