@charset "UTF-8";

/* src/styles.scss */
@font-face {
  font-family: "Roboto";
  src: url(/assets/fonts/Roboto/Roboto-Regular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto Black";
  src: url(/assets/fonts/Roboto/Roboto-Black.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
body {
  font-family: "Roboto" !important;
  font-size: 1rem !important;
  background-color: #fff;
}
h1 {
  font-family: "Roboto" !important;
  font-weight: bold;
}
h2 {
  font-family: "Roboto" !important;
  font-weight: bold;
}
h3 {
  font-family: "Roboto" !important;
  font-weight: bold;
}
strong {
  font-family: "Roboto Black" !important;
  font-weight: bold;
}
span:not(.material-icons) {
  font-family: "Roboto" !important;
}
input {
  font-family: "Roboto" !important;
}
p {
  font-family: "Roboto" !important;
  line-height: 1.6;
}
.mat-mdc-dialog-container {
  border-radius: 0 !important;
}
.mat-mdc-dialog-container .mat-mdc-dialog-surface {
  border-radius: 0 !important;
}
.mat-mdc-dialog-container .mat-mdc-dialog-title {
  font-family: "Source Serif Pro", serif !important;
  font-weight: bold;
  border-radius: 0 !important;
}
.mat-mdc-dialog-container .mat-mdc-dialog-content {
  padding-bottom: 30px !important;
  border-radius: 0 !important;
}
.mat-mdc-dialog-container .mat-mdc-dialog-actions {
  border-radius: 0 !important;
}
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-button,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-flat-button,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-flat-button {
  border-radius: 0 !important;
  min-width: 120px;
  height: 45px;
  font-weight: 500;
}
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-button:last-child,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-flat-button:last-child,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-flat-button:last-child {
  background-color: #bd9270 !important;
  color: #000000 !important;
  border: none !important;
}
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-button:last-child:hover,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-flat-button:last-child:hover,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-flat-button:last-child:hover {
  color: #ffffff !important;
  background-color: #ab784f !important;
  border-color: #a2724b !important;
}
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-button:first-child,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-flat-button:first-child,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-flat-button:first-child {
  color: #000000 !important;
  background-color: #f5efea !important;
  border: 1px solid #f5efea !important;
}
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-button:first-child:hover,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-mdc-flat-button:first-child:hover,
.mat-mdc-dialog-container .mat-mdc-dialog-actions .mat-flat-button:first-child:hover {
  background-color: #e5d4c7;
  border-color: #e1cebf;
}
.mat-mdc-dialog-container .mat-mdc-dialog-actions button[mat-button],
.mat-mdc-dialog-container .mat-mdc-dialog-actions button[mat-flat-button],
.mat-mdc-dialog-container .mat-mdc-dialog-actions button[mat-stroked-button],
.mat-mdc-dialog-container .mat-mdc-dialog-actions button[mat-raised-button] {
  border-radius: 0 !important;
}
.mat-mdc-dialog-container .mat-mdc-button,
.mat-mdc-dialog-container .mat-mdc-flat-button,
.mat-mdc-dialog-container .mat-mdc-stroked-button,
.mat-mdc-dialog-container .mat-mdc-raised-button,
.mat-mdc-dialog-container .mat-button,
.mat-mdc-dialog-container .mat-flat-button,
.mat-mdc-dialog-container .mat-stroked-button,
.mat-mdc-dialog-container .mat-raised-button {
  border-radius: 0 !important;
}
button {
  font-family: "Roboto" !important;
  font-weight: 600;
}
.product-card {
  position: relative;
  transition: box-shadow 0.3s ease;
}
.fade-button {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.product-card:hover .fade-button {
  opacity: 1;
  transform: translateY(0);
}
.image-container {
  text-align: center;
  overflow: hidden;
  position: relative;
  max-height: 200px;
}
.hover-zoom {
  transition: transform 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.25);
  transform-origin: top;
}
.product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 12px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  z-index: 2;
}
.product-badge-inline {
  top: 10px;
  right: 10px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  z-index: 2;
}
.product-badge mat-icon {
  font-size: 20px;
  line-height: 1;
}
.image-container {
  position: relative;
}
.cart-dialog-panel {
  margin: 0 !important;
  position: fixed !important;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 500px;
}
.search-dialog-panel {
  border-radius: 8px !important;
  overflow: hidden;
}
.badge-primary {
  color: #101010;
  background-color: #bd9270;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 13px;
  display: inline-block;
  line-height: 1.5;
}
.badge-success {
  color: #fff;
  background-color: #646464;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 13px;
  display: inline-block;
  line-height: 1.5;
}
.padding-y-3 {
  padding: 3rem 0;
}
.padding-y-6 {
  padding: 6.25rem 0;
}
.general-container {
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.icons-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
.allergen-icon {
  width: 35px;
  height: 35px;
  margin: 0;
  flex: 0 0 auto;
  display: inline-block;
}
.product-badge-inline {
  width: 35px;
  height: 35px;
  min-width: 25px;
  min-height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  color: white;
  text-align: center;
  flex: 0 0 auto;
  box-sizing: border-box;
}
.badge-ods {
  background-color: #20c997;
}
.badge-refrigerated {
  background-color: #acd4fa;
}
.refrigerated-icon {
  font-size: 16px;
  line-height: 1;
}
.badge-new {
  background-color: #f5be17;
  color: #111;
}

/* src/theme/main.scss */
.loading-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background-color: var(--mat-sys-background) !important;
}
.loading-container-table {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background-color: rgba(var(--mat-sys-background), 0.7);
}
.no-records {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: --mat-sys-background;
}
.overlay-container-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  z-index: 2;
  border-radius: 6px;
  background-color: var(--mat-sys-background) !important;
}
.overlay-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border-radius: 6px;
  background-color: var(--mat-sys-background) !important;
}
.overlay-container-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  border-radius: 6px;
}
.overlay-container-table {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  background-color: rgba(var(--mat-sys-background), 0.5);
}
.overlay-container-fixed {
  position: fixed;
  width: calc(100% - 240px);
  height: 100%;
  background-color: rgba(var(--mat-sys-background), 0.7);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overlay-container-top-menu {
  position: absolute;
  width: 100%;
  top: -8px;
}
.scrollable-content {
  overflow: auto;
  scrollbar-color: gray transparent;
  scrollbar-width: thin;
}
.scrollable-content::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
.scrollable-content::-webkit-scrollbar-thumb {
  background: rgba(var(--mat-sys-on-background), 0.26);
}
.scrollable-content::-webkit-scrollbar-track {
  width: 6px;
}
.scrollable-content-x {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.alert {
  padding: 16px;
  border-radius: 6px;
}
.alert span {
  margin-left: 5px;
}
.alert.error {
  background-color: rgba(var(setcolor(snackbar, error)), 0.2);
  color: setcolor(snackbar, error);
}
.alert.success {
  background-color: rgba(var(setcolor(snackbar, success)), 0.2);
  color: setcolor(snackbar, success);
}
.alert.warning {
  background-color: rgba(var(setcolor(snackbar, warning)), 0.2);
  color: setcolor(snackbar, warning);
}
.alert.info {
  background-color: rgba(var(setcolor(snackbar, info)), 0.2);
  color: setcolor(snackbar, info);
}
.mat-mdc-chip {
  min-height: 28px;
}
.mat-mdc-chip.mat-chip-small {
  min-height: 22px;
}
.error-snackbar {
  background-color: var(--mat-sys-background);
  filter: brightness(1.2);
  color: --mat-sys-on-background;
  border-left: 4px solid var(setcolor(snackbar, error));
}
.error-snackbar .sw-snackbar-component {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.error-snackbar .sw-snackbar-component .sw-snackbar-type-icon {
  display: flex;
  flex: 0 40px;
  align-items: center;
  justify-content: center;
  color: var(setcolor(snackbar, error));
  margin-right: 8px;
}
.error-snackbar .sw-snackbar-component .sw-snackbar-text-content {
  display: flex;
  flex: 1 1 auto;
  margin-right: 5px;
}
.success-snackbar {
  background-color: var(--mat-sys-background);
  filter: brightness(1.2);
  color: --mat-sys-on-background;
  border-left: 4px solid var(setcolor(snackbar, success));
}
.success-snackbar .sw-snackbar-component {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.success-snackbar .sw-snackbar-component .sw-snackbar-type-icon {
  display: flex;
  flex: 0 40px;
  align-items: center;
  justify-content: center;
  color: var(setcolor(snackbar, success));
  margin-right: 8px;
}
.success-snackbar .sw-snackbar-component .sw-snackbar-text-content {
  display: flex;
  flex: 1 1 auto;
  margin-right: 5px;
}
.warning-snackbar {
  background-color: var(--mat-sys-background);
  filter: brightness(1.2);
  color: --mat-sys-on-background;
  border-left: 4px solid var(setcolor(snackbar, warning));
}
.warning-snackbar .sw-snackbar-component {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.warning-snackbar .sw-snackbar-component .sw-snackbar-type-icon {
  display: flex;
  flex: 0 40px;
  align-items: center;
  justify-content: center;
  color: var(setcolor(snackbar, warning));
  margin-right: 8px;
}
.warning-snackbar .sw-snackbar-component .sw-snackbar-text-content {
  display: flex;
  flex: 1 1 auto;
  margin-right: 5px;
}
.info-snackbar {
  background-color: var(--mat-sys-background);
  filter: brightness(1.2);
  color: --mat-sys-on-background;
  border-left: 4px solid var(setcolor(snackbar, info));
}
.info-snackbar .sw-snackbar-component {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.info-snackbar .sw-snackbar-component .sw-snackbar-type-icon {
  display: flex;
  flex: 0 40px;
  align-items: center;
  justify-content: center;
  color: var(setcolor(snackbar, info));
  margin-right: 8px;
}
.info-snackbar .sw-snackbar-component .sw-snackbar-text-content {
  display: flex;
  flex: 1 1 auto;
  margin-right: 5px;
}
.mat-card-header-custom {
  padding: 15px 20px;
  position: relative;
  font-family: var(--mat-sys-typography-body-medium-font-family);
  border-bottom: 1px solid color-mix(in srgb, var(--mat-sys-on-background) 30%, transparent 50%);
}
.mat-card-header-custom h2.mat-h2 {
  margin: 0;
}
.mat-card.custom {
  padding: 0px;
  flex: 1 1 0%;
  box-sizing: border-box;
}
.mat-card-header-actions {
  position: absolute;
  top: 0;
  right: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 40%;
}
.mat-card-title-custom {
  margin: 0;
  font-size: 19px;
  font-weight: normal;
  font-family: var(--mat-sys-typography-body-medium-font-family);
}
.advance-filter-container-fields {
  padding: 5px 20px;
}
.advance-filter-title {
  padding: 10px 20px 0px 20px;
  color: #a3a3a3;
  font-size: 12px;
}
.container-search {
  position: absolute;
  background-color: var(--mat-sys-background) !important;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
}
.container-search .p-container-search {
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
}
.container-search .search-bar-mat-icon-button-right {
  position: absolute;
  top: 10px;
  right: 10px;
}
.container-search .search-bar-mat-icon-button-left {
  position: absolute;
  top: 10px;
  left: 10px;
}
.container-search.d-none {
  display: none;
}
.container-search input {
  border: none;
  font-size: 18px;
  width: 100%;
  background: transparent;
}
.container-search input:focus {
  outline-width: 0;
}
.mat-mdc-card.custom {
  box-shadow: none;
  border-radius: 6px;
  background-color: var(--mat-sys-background) !important;
}
.mat-mdc-card.custom.no-padding {
  padding: 0;
}
.mat-mdc-card.custom.outline {
  border: 1px solid rgba(var(--mat-sys-on-primary), 0.12);
}
.mat-mdc-card.custom.hovered {
  cursor: pointer;
  transition: background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
}
.mat-mdc-card.custom.hovered:hover {
  background-color: rgba(var(--mat-sys-on-primary), 0.1);
}
.mat-mdc-card.custom.selected {
  border: 2px solid var(--mat-sys-primary);
  background-color: rgba(var(--mat-sys-primary), 0.2);
  transition: background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
}
.mat-mdc-card.custom.sm-p {
  padding: 10px 7px;
}
.mat-mdc-card.custom.or:hover .btn-remove-or-condition:nth-child(1) {
  opacity: 1;
}
.mat-mdc-card.custom.and-set {
  border: 0.12em solid rgba(var(--mat-sys-on-primary), 0.5);
}
.mat-mdc-card.custom.and-set:hover .btn-remove-and-set:nth-child(1) {
  opacity: 1;
}
.mat-mdc-card.custom h2,
.mat-mdc-card.custom h4 {
  margin: 0;
}
.sw-toolbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: var(--top-header-bg) !important;
  color: var(--top-header-text) !important;
  fill: var(--top-header-text) !important;
  border-bottom: 1px solid color-mix(in srgb, var(--mat-sys-on-background) 30%, transparent 50%);
  height: var(--top-header-height);
  max-height: var(--top-header-height);
  --mdc-text-button-hover-state-layer-opacity: 0;
  --mdc-text-button-pressed-state-layer-opacity: 0;
  --mdc-filled-button-hover-state-layer-opacity: 0;
  --mdc-outlined-button-hover-state-layer-opacity: 0;
  --mdc-protected-button-hover-state-layer-opacity: 0;
  --mdc-icon-button-hover-state-layer-opacity: 0;
  --mdc-icon-button-pressed-state-layer-opacity: 0;
}
.sw-toolbar .mat-mdc-button .mdc-button__ripple,
.sw-toolbar .mat-mdc-button .mat-mdc-button-persistent-ripple,
.sw-toolbar .mat-mdc-button .mat-ripple-element,
.sw-toolbar .mat-mdc-icon-button .mdc-icon-button__ripple,
.sw-toolbar .mat-mdc-icon-button .mat-mdc-button-persistent-ripple,
.sw-toolbar .mat-mdc-icon-button .mat-ripple-element,
.sw-toolbar .mat-mdc-focus-indicator {
  display: none !important;
  opacity: 0 !important;
}
.sw-toolbar .mdc-button__ripple::before,
.sw-toolbar .mdc-button__ripple::after,
.sw-toolbar .mdc-icon-button__ripple::before,
.sw-toolbar .mdc-icon-button__ripple::after {
  opacity: 0 !important;
  background: transparent !important;
}
.sw-toolbar .sw-toolbar-spacer {
  flex: 1 1 auto;
}
.sw-toolbar .logo-text {
  color: rgba(var(--mat-sys-on-background), 0.75);
  font-size: 21px;
}
.sw-toolbar .header-title {
  color: var(--mat-sys-on-background);
  font-size: 18px;
}
.sw-toolbar .logo-top-nav {
  margin-top: 10px;
  height: 50px;
  margin-right: 10px;
  margin-left: 0;
  padding: 5px;
}
.sw-toolbar .environment-chip {
  background-color: rgba(29, 146, 121, 0.5);
  color: rgba(var(--mat-sys-on-background), 0.75);
  font-weight: 500;
  padding: 0 14px;
  border-radius: 24px;
  font-size: 14px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-toolbar .sw-toolbar-vertical-divider {
  height: 25px;
  border-left: 1px solid rgba(var(--mat-sys-on-background), 0.1);
  margin: 0 15px;
}
.sw-toolbar .mat-icon {
  color: var(--top-header-text) !important;
}
.sw-toolbar a,
.sw-toolbar button,
.sw-toolbar span {
  color: var(--top-header-text) !important;
}
.sw-toolbar button[mat-button] {
  color: #9f9f9f !important;
}
.sw-toolbar button[mat-button],
.sw-toolbar button.mat-mdc-icon-button {
  transition: color 0.25s ease;
}
.sw-toolbar button[mat-button]:hover,
.sw-toolbar button.mat-mdc-icon-button:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}
.sw-toolbar button[mat-button]:hover span,
.sw-toolbar button[mat-button]:hover .mat-icon,
.sw-toolbar button.mat-mdc-icon-button:hover .mat-icon {
  color: #ffffff !important;
}
::ng-deep .sw-toolbar .mat-mdc-button:hover,
::ng-deep .sw-toolbar .mat-button:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}
::ng-deep .sw-toolbar .mat-mdc-button:hover .mat-icon,
::ng-deep .sw-toolbar .mat-mdc-button:hover span,
::ng-deep .sw-toolbar .mat-mdc-button:hover .mat-mdc-button-content,
::ng-deep .sw-toolbar .mat-button:hover .mat-icon,
::ng-deep .sw-toolbar .mat-button:hover span,
::ng-deep .sw-toolbar .mat-button:hover .mat-mdc-button-content {
  color: #ffffff !important;
}
.mat-menu-options-account-nav {
  padding: 10px;
}
.mat-menu-options-account-nav .sidebar-header-avatar {
  margin-bottom: 10px;
}
.mat-menu-options-account-nav .sidebar-header-info {
  text-align: center;
}
.mat-menu-options-account-nav .sidebar-header-info .sidebar-header-info-title {
  color: var(--mat-sys-on-background);
}
.mat-menu-options-account-nav .sidebar-header-info .sidebar-header-info-subtitle {
  color: gray;
}
.mat-sidenav-container.sw-sidenav-container {
  position: absolute;
  top: var(--top-header-height);
  left: 0;
  right: 0;
  background-color: var(--mat-sys-background);
  height: calc(100% - var(--top-header-height)) !important;
}
.mat-sidenav-container.sw-sidenav-container .sw-sidenav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 300px;
  background-color: var(--mat-sys-background);
}
@media (max-width: 600px) {
  .mat-sidenav-container.sw-sidenav-container {
    top: 56px;
    height: calc(100% - var(--top-header-height));
  }
}
.mat-sidenav-container.sw-sidenav-container .sw-sidenav-logo {
  height: 10%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.mat-sidenav-container.sw-sidenav-container .sw-sidenav-logo img {
  width: 50%;
  height: auto;
}
.mat-drawer-inner-container {
  scrollbar-color: gray transparent;
  scrollbar-width: thin;
  overflow: hidden;
  flex-direction: column;
}
.mat-drawer-inner-container.mobile {
  overflow-y: auto;
}
.mat-drawer-inner-container:hover {
  overflow-y: auto;
}
.mat-drawer-inner-container::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.mat-drawer-inner-container::-webkit-scrollbar-thumb {
  background: rgba(var(--mat-sys-on-background), 0.16);
}
.mat-drawer-inner-container::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--mat-sys-on-background), 0.26);
}
.mat-drawer-inner-container::-webkit-scrollbar-track {
  width: 6px;
}
@media (max-width: 600px) {
  .mat-drawer-inner-container .fixed-topnav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100% !important;
  }
}
.app-version-container {
  position: absolute;
  bottom: 5px;
  width: 100%;
  text-align: left;
}
.app-version-label {
  margin: 0px 26px;
}
app-menu-list-item {
  display: flex;
  flex-direction: column;
}
.sw-nav-list.mdc-list {
  width: calc(100% - 10px);
  margin: 10px 5px;
}
.mat-mdc-list-item-unscoped-content {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.mat-mdc-list-base .menu-list-item.mdc-list-item {
  padding: 4px 0;
  display: flex;
  width: auto;
  font-size: 0.84rem;
  border-radius: 6px;
  -webkit-user-select: none;
  user-select: none;
  font-weight: 500;
  height: 43px;
  color: rgba(var(--mat-sys-on-background), 0.78);
}
.mat-mdc-list-base .menu-list-item.mdc-list-item .routeIcon {
  margin-right: 15px;
}
.mat-mdc-list-base .menu-list-item.mdc-list-item .mdc-list-item__content {
  width: 100%;
  padding: 0 16px;
}
.menu-sub-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.menu-sub-list.collapsed {
  visibility: hidden;
  opacity: 0;
  max-height: 1px;
  transition:
    visibility 275ms ease-out 0s,
    opacity 275ms 0s,
    max-height 0.28s 0s;
}
.menu-sub-list.expanded {
  visibility: visible;
  opacity: 1;
  max-height: 4000px;
  transition:
    visibility 0.5s ease-in-out 0s,
    opacity 0.5s 0s,
    max-height 0.5s 0s;
}
.mdc-list-item.active {
  background-color: color-mix(in srgb, var(--mat-sys-primary) 10%, transparent 50%);
}
.menu-list-item.mdc-list-item:hover:not(.expanded),
.menu-list-item.mdc-list-item:focus:not(.expanded) {
  color: var(--mat-sys-primary) !important;
}
@keyframes ghost-lines {
  0% {
    background-position: -100px;
  }
  40% {
    background-position: 40vw;
  }
  100% {
    background-position: 60vw;
  }
}
@keyframes ghost-avatar {
  0% {
    background-position: -32px;
  }
  40%, 100% {
    background-position: 208px;
  }
}
.ghost-item-table {
  background-color: rgba(var(--mat-sys-on-background-color), 0.05);
  border-radius: 5px;
  height: 20px;
  background-image:
    linear-gradient(
      90deg,
      rgba(var(--mat-sys-on-background-color), 0.05) 0px,
      rgba(var(--mat-sys-on-background-color), 0.1) 40px,
      rgba(var(--mat-sys-on-background-color), 0.05) 80px);
  background-size: 80vw;
  animation: ghost-lines 1500ms infinite linear;
}
.ghost-input {
  background-color: rgba(var(--mat-sys-on-background-color), 0.05);
  border-radius: 3px;
  height: 30px;
  background-image:
    linear-gradient(
      90deg,
      rgba(var(--mat-sys-on-background-color), 0.05) 0px,
      rgba(var(--mat-sys-on-background-color), 0.1) 40px,
      rgba(var(--mat-sys-on-background-color), 0.05) 80px);
  background-size: 80vw;
  animation: ghost-lines 1500ms infinite linear;
}
.ghost-input.sm {
  height: 20px;
}
.ghost-textarea {
  background-color: rgba(var(--mat-sys-on-background-color), 0.05);
  border-radius: 3px;
  height: 60px;
  background-image:
    linear-gradient(
      90deg,
      rgba(var(--mat-sys-on-background-color), 0.05) 0px,
      rgba(var(--mat-sys-on-background-color), 0.1) 40px,
      rgba(var(--mat-sys-on-background-color), 0.05) 80px);
  background-size: 80vw;
  animation: ghost-lines 1500ms infinite linear;
}
.ghost-textarea.sm {
  height: 20px;
}
.ghost-icon-button {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: rgba(var(--mat-sys-on-background-color), 0.1);
  margin-left: 5px;
  background-image:
    linear-gradient(
      90deg,
      rgba(var(--mat-sys-on-background-color), 0.05) 0px,
      rgba(var(--mat-sys-on-background-color), 0.1) 40px,
      rgba(var(--mat-sys-on-background-color), 0.05) 80px);
  background-size: 80vw;
  animation: ghost-avatar 1500ms infinite linear;
}
.ghost-button {
  height: 35px;
  width: 100px;
  border-radius: 6px;
  background-color: rgba(var(--mat-sys-on-background-color), 0.1);
  margin-left: 5px;
  background-image:
    linear-gradient(
      90deg,
      rgba(var(--mat-sys-on-background-color), 0.05) 0px,
      rgba(var(--mat-sys-on-background-color), 0.1) 40px,
      rgba(var(--mat-sys-on-background-color), 0.05) 80px);
  background-size: 80vw;
  animation: ghost-avatar 1500ms infinite linear;
}
.ghost-title-card {
  background-color: rgba(var(--mat-sys-on-background-color), 0.1);
  border-radius: 5px;
  height: 24px;
  width: 200px;
  background-image:
    linear-gradient(
      90deg,
      rgba(var(--mat-sys-on-background-color), 0.05) 0px,
      rgba(var(--mat-sys-on-background-color), 0.1) 40px,
      rgba(var(--mat-sys-on-background-color), 0.05) 80px);
  background-size: 80vw;
  animation: ghost-lines 1500ms infinite linear;
}
.ghost-row-table {
  border-bottom: 1px solid rgba(var(--mat-sys-on-background-color), 0.1);
  padding: 10px 16px;
}
gridster {
  background: transparent !important;
}
.gridster-item {
  background: --mat-sys-background-color !important;
  border-radius: 4px;
}
.gridster-item-content {
  overflow-y: auto;
}
.gridster-item-content::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.gridster-item-content::-webkit-scrollbar-thumb {
  background: rgba(var(--mat-sys-on-background-color), 0.26);
}
.sw-dropzone--host {
  position: relative;
  display: flex;
  flex: 1 1 auto;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper {
  display: flex;
  flex: 1 1 auto;
  border-radius: 4px;
  border-width: 2px;
  border-style: dashed;
  border-color: rgba(var(--mat-sys-on-background), 0.2);
  transition: border-color 100ms ease-out, background-color 100ms ease-out;
  cursor: pointer;
  padding: 10px;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper.fileover {
  background-color: rgba(var(--mat-sys-primary), 0.1);
  border-color: rgba(var(--mat-sys-primary), 0.4);
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .empty-list-wrapper {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .empty-list-wrapper .empty-list-inner-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .empty-list-wrapper .empty-list-inner-wrapper > * {
  margin-right: 20px;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .empty-list-wrapper .empty-list-inner-wrapper :last-child {
  margin-right: 0;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .empty-list-wrapper .empty-list-inner-wrapper .empty-list-message-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .empty-list-wrapper .empty-list-inner-wrapper .empty-list-message-wrapper > * {
  margin-bottom: 10px;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .empty-list-wrapper .empty-list-inner-wrapper .empty-list-message-wrapper :last-child {
  margin-bottom: 0;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .empty-list-wrapper .empty-list-inner-wrapper img {
  width: 80px;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached {
  position: relative;
  display: flex;
  flex: 0 0 calc(25% - 1rem);
  height: 200px;
  max-height: 200px;
  border-radius: 4px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(var(--mat-sys-on-background), 0.1);
  margin-right: 1rem;
  margin-bottom: 1rem;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached:nth-child(4n) {
  margin-right: 0;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-background {
  position: relative;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: inherit;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-background-no-image {
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  align-items: center;
  justify-content: center;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-background-no-image .mat-icon {
  height: 40px;
  width: 40px;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-background-no-image .material-icons {
  font-size: 40px;
  color: --mat-sys-primary;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-overlay-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-overlay-wrapper:hover {
  background-color: rgba(34, 34, 34, 0.75);
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-overlay-wrapper:hover .file-attached-overlay-inner-wrapper .file-attached-details {
  transform: translateY(0px);
  opacity: 1;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-overlay-wrapper:hover .file-attached-overlay-inner-wrapper .file-attached-actions {
  transform: translateY(0px);
  opacity: 1;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-overlay-wrapper .file-attached-overlay-inner-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-overlay-wrapper .file-attached-overlay-inner-wrapper .file-attached-details {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.2s all ease-in-out;
  padding-left: 10px;
  max-width: calc(100% - 50px);
  color: white;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-overlay-wrapper .file-attached-overlay-inner-wrapper .file-attached-details span {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-overlay-wrapper .file-attached-overlay-inner-wrapper .file-attached-details small {
  color: rgb(168, 168, 168);
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .file-attached-overlay-wrapper .file-attached-overlay-inner-wrapper .file-attached-actions {
  position: relative;
  display: flex;
  flex: 1 1 50px;
  max-width: 50px;
  justify-content: flex-end;
  padding-right: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.2s all ease-in-out;
  color: white;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached .overlay-remove-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  border-radius: 6px;
  transform: translateY(20px);
  transition: 0.2s all ease-in-out;
  overflow: hidden;
  color: white !important;
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached:hover .overlay-remove-item {
  z-index: 2;
  opacity: 1;
  transform: translateY(0px);
}
.sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .attach-button:hover {
  border-color: rgba(var(--mat-sys-primary), 0.3);
  background-color: rgba(var(--mat-sys-primary), 0.05);
}
@media only screen and (max-width: 600px) {
  .sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media only screen and (min-width: 600px) {
  .sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached {
    flex: 0 0 calc(50% - 1rem);
  }
}
@media only screen and (min-width: 768px) {
  .sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached {
    flex: 0 0 calc(33.33% - 1rem);
  }
}
@media only screen and (min-width: 992px) {
  .sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached {
    flex: 0 0 calc(25% - 1rem);
  }
}
@media only screen and (min-width: 1200px) {
  .sw-dropzone--host .sw-dropzone-inner-wrapper .files-attached-wrapper .file-attached {
    flex: 0 0 calc(25% - 1rem);
  }
}
.content {
  flex: 1;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-content: space-around;
  padding: 7px;
}
.row {
  min-height: 50px;
  flex: 1;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-around;
  align-content: space-around;
}
.row.resizable {
  flex: 0 0 300px;
}
.resizable-mat-card {
  box-sizing: border-box;
  flex: 1;
  min-width: 30px;
}
.resizable-mat-card.resizable {
  flex: 0 0 300px;
}
.hero-section-home {
  padding-top: 30px;
  margin-left: 10px;
}
.hero-section-home h3 {
  font-size: 25px;
  margin: 0 0 0 0;
}
.hero-section-home h2 {
  color: rgba(var(--mat-sys-on-background), 0.54);
  font-size: 20px;
  margin-bottom: 0px !important;
}
.hero-section-home h1 {
  font-size: 60px;
  margin-bottom: 0px !important;
}
.home-header-section h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}
.home-header-section p {
  font-size: 15px;
  margin: 0;
}
.mat-mdc-card.card-function-wes {
  padding: 0;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  margin-bottom: 20px;
  border-radius: 6px;
  cursor: pointer;
  color: #000000;
}
.mat-mdc-card.card-function-wes .content-card-function-wes {
  padding: 10px 20px 0px 20px;
}
.mat-mdc-card.card-function-wes .content-card-function-wes h3 {
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 300;
}
.mat-mdc-card.card-function-wes .content-card-function-wes p {
  font-size: 14px;
}
.mat-mdc-card.card-function-wes:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  background-color: rgba(243, 243, 243, 0.947);
}
.sub-toolbar {
  position: relative;
  background-color: #242424;
  color: white;
  height: 120px;
}
.sub-toolbar.text-black .sub-toolbar-button,
.sub-toolbar.text-black .sub-toolbar-icon-button {
  color: #000000;
}
.sub-toolbar.text-black .cerrar-lote-button {
  color: #000000;
}
.sub-toolbar.text-black .sub-toolbar-icon-button {
  border-color: #000000;
}
.sub-toolbar.text-black .sub-toolbar-icon-button img[src*="euro.svg"] {
  filter: brightness(0);
}
.sub-toolbar.text-black .header-secondary-container {
  background-color: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.2);
  color: #000000;
}
.sub-toolbar.text-black .header-secondary-container .rals-section {
  border-right-color: rgba(0, 0, 0, 0.2);
}
.sub-toolbar.text-black .header-secondary-container .basket-section {
  border-right-color: rgba(0, 0, 0, 0.2);
}
.sub-toolbar.text-black .header-secondary-container .close-batch-section .close-batch-text {
  color: #b98e6c;
}
.sub-toolbar.text-gray .sub-toolbar-button,
.sub-toolbar.text-gray .sub-toolbar-icon-button {
  color: #929292;
}
.sub-toolbar.text-gray .cerrar-lote-button {
  color: #ffffff;
}
.sub-toolbar.text-gray .sub-toolbar-icon-button {
  border-color: #929292;
}
.sub-toolbar.text-gray .sub-toolbar-icon-button img[src*="euro.svg"] {
  filter: brightness(0.8);
}
.sub-toolbar.text-gray .header-secondary-container {
  background-color: rgba(204, 204, 204, 0.1);
  border-color: rgba(204, 204, 204, 0.2);
  color: #929292;
}
.sub-toolbar.text-gray .header-secondary-container .rals-section {
  border-right-color: rgba(204, 204, 204, 0.2);
}
.sub-toolbar.text-gray .header-secondary-container .basket-section {
  border-right-color: rgba(204, 204, 204, 0.2);
}
.sub-toolbar.text-gray .header-secondary-container .close-batch-section .close-batch-text {
  color: #b98e6c;
}
.sub-toolbar.text-white .sub-toolbar-button,
.sub-toolbar.text-white .sub-toolbar-icon-button {
  color: #ffffff;
}
.sub-toolbar.text-white .cerrar-lote-button {
  color: #ffffff;
}
.sub-toolbar.text-white .sub-toolbar-icon-button {
  border-color: #ffffff;
}
.sub-toolbar.text-white .sub-toolbar-icon-button img[src*="euro.svg"] {
  filter: brightness(1);
}
.sub-toolbar.text-white .header-secondary-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}
.sub-toolbar.text-white .header-secondary-container .rals-section {
  border-right-color: rgba(255, 255, 255, 0.2);
}
.sub-toolbar.text-white .header-secondary-container .basket-section {
  border-right-color: rgba(255, 255, 255, 0.2);
}
.sub-toolbar.text-white .header-secondary-container .close-batch-section .close-batch-text {
  color: #b98e6c;
}
.sub-toolbar.text-custom .sub-toolbar-button,
.sub-toolbar.text-custom .sub-toolbar-icon-button {
  color: inherit;
}
.sub-toolbar.text-custom .sub-toolbar-icon-button {
  border-color: currentColor;
}
.sub-toolbar.text-custom .sub-toolbar-icon-button img[src*="euro.svg"] {
  filter: brightness(0.8);
}
.sub-toolbar.text-custom .header-secondary-container {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: currentColor;
  color: inherit;
}
.sub-toolbar.text-custom .header-secondary-container .rals-section {
  border-right-color: currentColor;
}
.sub-toolbar.text-custom .header-secondary-container .basket-section {
  border-right-color: currentColor;
}
.sub-toolbar.text-custom .header-secondary-container .close-batch-section .close-batch-text {
  color: #b98e6c;
}
.logo-outside {
  position: absolute;
  left: 0;
  padding-left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.logo-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.sub-toolbar-button {
  color: #929292 !important;
  font-weight: 500;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.sub-toolbar-button:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}
::ng-deep .sub-toolbar .sub-toolbar-button:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}
::ng-deep .sub-toolbar .sub-toolbar-button:hover .mat-icon,
::ng-deep .sub-toolbar .sub-toolbar-button:hover span {
  color: #ffffff !important;
}
::ng-deep .sub-toolbar .sub-toolbar-button:active,
::ng-deep .sub-toolbar .sub-toolbar-button:focus {
  background-color: transparent !important;
  color: #929292 !important;
}
::ng-deep .sub-toolbar .sub-toolbar-button:active .mat-icon,
::ng-deep .sub-toolbar .sub-toolbar-button:active span,
::ng-deep .sub-toolbar .sub-toolbar-button:focus .mat-icon,
::ng-deep .sub-toolbar .sub-toolbar-button:focus span {
  color: #929292 !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button {
  --mdc-outlined-button-hover-state-layer-opacity: 0 !important;
  --mdc-outlined-button-pressed-state-layer-opacity: 0 !important;
  --mdc-outlined-button-focus-state-layer-opacity: 0 !important;
  --mdc-outlined-button-selected-state-layer-opacity: 0 !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button .mdc-button__ripple,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button .mat-mdc-button-persistent-ripple,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button .mat-ripple-element,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button .mdc-focus-indicator {
  display: none !important;
  opacity: 0 !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:hover {
  background-color: transparent !important;
  color: #ffffff !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:hover .mat-icon,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:hover span {
  color: #ffffff !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:active,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus-visible,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus-within {
  background-color: transparent !important;
  color: #929292 !important;
  border-color: #929292 !important;
  box-shadow: none !important;
  outline: none !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:active .mat-icon,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:active span,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus .mat-icon,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus span,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus-visible .mat-icon,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus-visible span,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus-within .mat-icon,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus-within span {
  color: #929292 !important;
}
.sub-toolbar.text-white .sub-toolbar-button,
.sub-toolbar.text-gray .sub-toolbar-button,
.sub-toolbar.text-black .sub-toolbar-button {
  color: #929292 !important;
}
.sub-toolbar {
  --mdc-text-button-hover-state-layer-opacity: 0;
  --mdc-text-button-pressed-state-layer-opacity: 0;
  --mdc-outlined-button-hover-state-layer-opacity: 0;
  --mdc-icon-button-hover-state-layer-opacity: 0;
  --mdc-icon-button-pressed-state-layer-opacity: 0;
  --mdc-filled-button-hover-state-layer-opacity: 0;
  --mdc-filled-button-pressed-state-layer-opacity: 0;
  --mdc-outlined-button-focus-state-layer-opacity: 0;
  --mdc-outlined-button-selected-state-layer-opacity: 0;
}
.sub-toolbar .mat-mdc-button .mdc-button__ripple,
.sub-toolbar .mat-mdc-button .mat-mdc-button-persistent-ripple,
.sub-toolbar .mat-mdc-button .mat-ripple-element,
.sub-toolbar .mat-mdc-icon-button .mdc-icon-button__ripple,
.sub-toolbar .mat-mdc-icon-button .mat-mdc-button-persistent-ripple,
.sub-toolbar .mat-mdc-icon-button .mat-ripple-element,
.sub-toolbar .mat-mdc-focus-indicator {
  display: none !important;
  opacity: 0 !important;
}
.sub-toolbar .sub-toolbar-button {
  color: #929292;
  transition: color 0.25s ease;
}
.sub-toolbar .sub-toolbar-button:hover,
.sub-toolbar .sub-toolbar-button:focus,
.sub-toolbar .sub-toolbar-button:active {
  background-color: transparent !important;
  color: #ffffff !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button::before,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button::after {
  display: none !important;
  opacity: 0 !important;
  background: transparent !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button.mat-mdc-button-touch-target,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button.mdc-button--touch-target {
  background: transparent !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:focus {
  outline: none !important;
  box-shadow: none !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button mat-icon {
  color: #929292 !important;
  filter: none !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button mat-icon:hover {
  color: #929292 !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:hover mat-icon {
  color: #929292 !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:has(img[src*="euro.svg"]) {
  cursor: default !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:has(img[src*="euro.svg"]):hover {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:has(img[src*="euro.svg"]):active,
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:has(img[src*="euro.svg"]):focus {
  background-color: transparent !important;
  color: #929292 !important;
  border-color: #929292 !important;
  pointer-events: none !important;
}
::ng-deep .sub-toolbar .sub-toolbar-rectangular-button:has(img[src*="euro.svg"])::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none !important;
}
.sub-toolbar-logo {
  height: 80px;
}
.sub-toolbar-icon-button {
  margin-left: 10px;
  border-color: #999;
  white-space: nowrap;
  min-width: 80px;
  flex: 0 0 auto;
  transition: all 0.3s ease;
}
.sub-toolbar-icon-button:hover {
  opacity: 0.8;
}
.sub-toolbar-icon-button img {
  transition: all 0.3s ease;
}
.sub-toolbar-icon-button mat-icon {
  vertical-align: middle;
}
.cerrar-lote-button {
  margin-left: 15px;
  color: white;
}
.sub-toolbar-rectangular-button {
  margin-left: 30px;
  border-color: #929292;
  white-space: nowrap;
  min-width: 80px;
  flex: 0 0 auto;
  transition: border-color 0.15s ease, color 0.25s ease;
  border-radius: 0px;
  height: 33px;
  padding: 0 16px;
  font-weight: 500;
  font-size: 14px;
  color: #929292;
  transition: color 0.25s ease, border-color 0.15s ease;
  display: inline-flex;
  align-items: stretch;
}
.sub-toolbar-rectangular-button:hover {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff !important;
}
.sub-toolbar-rectangular-button:active,
.sub-toolbar-rectangular-button:focus {
  background-color: transparent !important;
  border-color: #929292;
  color: #929292 !important;
}
.sub-toolbar-rectangular-button img {
  transition: all 0.3s ease;
}
.sub-toolbar-rectangular-button mat-icon {
  vertical-align: middle;
  filter: none !important;
  color: #929292 !important;
}
.sub-toolbar-rectangular-button.segmented-btn {
  padding: 0;
  text-decoration: none;
  border: 1px solid #929292;
  background-color: transparent;
}
.sub-toolbar-rectangular-button.segmented-btn img,
.sub-toolbar-rectangular-button.segmented-btn mat-icon {
  color: inherit !important;
}
.sub-toolbar-rectangular-button.segmented-btn:hover {
  border-color: #ffffff !important;
  color: #ffffff !important;
  background-color: transparent !important;
}
.sub-toolbar-rectangular-button.segmented-btn:hover .seg-icon,
.sub-toolbar-rectangular-button.segmented-btn:hover .seg-value {
  color: #ffffff !important;
}
.sub-toolbar-rectangular-button.segmented-btn:hover img,
.sub-toolbar-rectangular-button.segmented-btn:hover mat-icon {
  color: #ffffff !important;
}
.sub-toolbar-rectangular-button.segmented-btn:hover .seg-icon::after {
  background-color: #ffffff !important;
}
.sub-toolbar-rectangular-button.segmented-btn.basket-button .seg-icon mat-icon {
  color: #929292 !important;
}
.sub-toolbar-rectangular-button.segmented-btn.basket-button:hover .seg-icon mat-icon {
  color: #929292 !important;
}
.sub-toolbar-rectangular-button.segmented-btn.mat-mdc-button .mdc-button__ripple,
.sub-toolbar-rectangular-button.segmented-btn.mat-mdc-button .mat-mdc-button-persistent-ripple,
.sub-toolbar-rectangular-button.segmented-btn.mat-mdc-button .mat-ripple-element,
.sub-toolbar-rectangular-button.segmented-btn.mat-mdc-button .mdc-focus-indicator {
  display: none !important;
  opacity: 0 !important;
}
.sub-toolbar-rectangular-button .seg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 0 12px;
  position: relative;
  color: inherit;
  text-align: center;
}
.sub-toolbar-rectangular-button .seg-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: currentColor;
}
.sub-toolbar-rectangular-button .seg-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 10px;
  line-height: 1;
  color: inherit;
  text-align: center;
  width: 100%;
}
.sub-toolbar.text-white .sub-toolbar-rectangular-button {
  color: #929292 !important;
}
.cerrar-lote-rectangular-button {
  margin-left: 30px;
  background-color: #b98e6c !important;
  color: black !important;
  border: none !important;
  border-radius: 0px;
  height: 33px;
  padding: 0 16px;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}
.cerrar-lote-rectangular-button:hover {
  background-color: #ab784f !important;
}
.cerrar-lote-rectangular-button:active,
.cerrar-lote-rectangular-button:focus {
  background-color: #ab784f !important;
  outline: none;
}
.sub-toolbar.text-black .sub-toolbar-button,
.sub-toolbar.text-black .sub-toolbar-icon-button,
.sub-toolbar.text-black .sub-toolbar-rectangular-button {
  color: #000000;
}
.sub-toolbar.text-black .sub-toolbar-icon-button,
.sub-toolbar.text-black .sub-toolbar-rectangular-button {
  border-color: #929292;
}
.sub-toolbar.text-black .sub-toolbar-icon-button:hover,
.sub-toolbar.text-black .sub-toolbar-rectangular-button:hover {
  border-color: #ffffff;
}
.sub-toolbar.text-black .sub-toolbar-icon-button img[src*="euro.svg"],
.sub-toolbar.text-black .sub-toolbar-rectangular-button img[src*="euro.svg"] {
  filter: brightness(0);
}
.sub-toolbar.text-gray .sub-toolbar-button,
.sub-toolbar.text-gray .sub-toolbar-icon-button,
.sub-toolbar.text-gray .sub-toolbar-rectangular-button {
  color: #929292;
}
.sub-toolbar.text-gray .sub-toolbar-icon-button,
.sub-toolbar.text-gray .sub-toolbar-rectangular-button {
  border-color: #929292;
}
.sub-toolbar.text-gray .sub-toolbar-icon-button:hover,
.sub-toolbar.text-gray .sub-toolbar-rectangular-button:hover {
  border-color: #ffffff;
}
.sub-toolbar.text-gray .sub-toolbar-icon-button img[src*="euro.svg"],
.sub-toolbar.text-gray .sub-toolbar-rectangular-button img[src*="euro.svg"] {
  filter: brightness(0.8);
}
.sub-toolbar.text-white .sub-toolbar-button,
.sub-toolbar.text-white .sub-toolbar-icon-button,
.sub-toolbar.text-white .sub-toolbar-rectangular-button {
  color: #ffffff;
}
.sub-toolbar.text-white .sub-toolbar-icon-button,
.sub-toolbar.text-white .sub-toolbar-rectangular-button {
  border-color: #929292;
}
.sub-toolbar.text-white .sub-toolbar-icon-button:hover,
.sub-toolbar.text-white .sub-toolbar-rectangular-button:hover {
  border-color: #ffffff;
}
.sub-toolbar.text-white .sub-toolbar-icon-button img[src*="euro.svg"],
.sub-toolbar.text-white .sub-toolbar-rectangular-button img[src*="euro.svg"] {
  filter: brightness(1);
}
@media (max-width: 768px) {
  .sub-toolbar-rectangular-button {
    min-width: 60px;
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
    margin-left: 8px;
  }
  .sub-toolbar-rectangular-button img {
    height: 16px !important;
    width: 16px !important;
  }
  .sub-toolbar-rectangular-button mat-icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
    min-width: 16px !important;
  }
  .cerrar-lote-rectangular-button {
    height: 30px;
    padding: 0 12px;
    font-size: 10px;
    margin-left: 8px;
  }
}
.sub-toolbar.text-custom .cerrar-lote-rectangular-button,
.sub-toolbar.text-black .cerrar-lote-rectangular-button,
.sub-toolbar.text-gray .cerrar-lote-rectangular-button,
.sub-toolbar.text-white .cerrar-lote-rectangular-button {
  background-color: #b98e6c !important;
  color: black !important;
  border: none !important;
}
.sub-toolbar.text-custom .cerrar-lote-rectangular-button:hover,
.sub-toolbar.text-black .cerrar-lote-rectangular-button:hover,
.sub-toolbar.text-gray .cerrar-lote-rectangular-button:hover,
.sub-toolbar.text-white .cerrar-lote-rectangular-button:hover {
  background-color: #ab784f !important;
  color: black !important;
}
.sub-toolbar.text-custom .cerrar-lote-rectangular-button:active,
.sub-toolbar.text-custom .cerrar-lote-rectangular-button:focus,
.sub-toolbar.text-black .cerrar-lote-rectangular-button:active,
.sub-toolbar.text-black .cerrar-lote-rectangular-button:focus,
.sub-toolbar.text-gray .cerrar-lote-rectangular-button:active,
.sub-toolbar.text-gray .cerrar-lote-rectangular-button:focus,
.sub-toolbar.text-white .cerrar-lote-rectangular-button:active,
.sub-toolbar.text-white .cerrar-lote-rectangular-button:focus {
  background-color: #ab784f !important;
  color: black !important;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button {
  color: inherit !important;
  transition: color 0.25s ease;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button:hover,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button:focus,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button:active,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button:hover,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button:focus,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button:active {
  background-color: transparent !important;
  color: #ffffff !important;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button:hover .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button:hover span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button:focus .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button:focus span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button:active .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button:active span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button:hover .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button:hover span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button:focus .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button:focus span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button:active .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button:active span {
  color: #ffffff !important;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-button.mat-mdc-button span {
  color: inherit !important;
  transition: color 0.25s ease;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn {
  color: inherit !important;
  border-color: currentColor !important;
  transition: all 0.25s ease;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button .seg-value,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn .seg-value {
  color: inherit !important;
  transition: color 0.25s ease;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:hover,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:focus,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:active,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:hover,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:focus,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:active {
  background-color: transparent !important;
  color: #ffffff !important;
  border-color: #ffffff !important;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:hover .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:hover span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:hover .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:hover .seg-value,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:focus .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:focus span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:focus .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:focus .seg-value,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:active .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:active span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:active .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button:active .seg-value,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:hover .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:hover span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:hover .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:hover .seg-value,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:focus .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:focus span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:focus .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:focus .seg-value,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:active .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:active span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:active .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:active .seg-value {
  color: #ffffff !important;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.basket-button .seg-icon mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn.basket-button .seg-icon mat-icon {
  color: inherit !important;
  transition: color 0.25s ease;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.basket-button .seg-icon mat-icon:hover,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn.basket-button .seg-icon mat-icon:hover {
  color: #ffffff !important;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.basket-button:hover .seg-icon mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn.basket-button:hover .seg-icon mat-icon {
  color: #ffffff !important;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn .seg-icon::after,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn.segmented-btn .seg-icon::after {
  background-color: currentColor !important;
  transition: background-color 0.25s ease;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn:hover .seg-icon::after,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-rectangular-button.segmented-btn.segmented-btn:hover .seg-icon::after {
  background-color: #ffffff !important;
}
::ng-deep .sub-toolbar.text-custom mat-icon {
  color: inherit !important;
}
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-button::before,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-button::after,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-rectangular-button::before,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-rectangular-button::after {
  display: none !important;
}
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-button .mdc-button__ripple,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-button .mat-mdc-button-persistent-ripple,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-button .mat-ripple-element,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-button .mdc-focus-indicator,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-rectangular-button .mdc-button__ripple,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-rectangular-button .mat-mdc-button-persistent-ripple,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-rectangular-button .mat-ripple-element,
::ng-deep .sub-toolbar.text-custom ::ng-deep .sub-toolbar-rectangular-button .mdc-focus-indicator {
  display: none !important;
  opacity: 0 !important;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-button,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-rectangular-button {
  color: inherit !important;
}
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-button .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-button span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-button .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-button .seg-value,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-rectangular-button .mat-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-rectangular-button span,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-rectangular-button .seg-icon,
::ng-deep .sub-toolbar.text-custom .sub-toolbar-right .sub-toolbar-rectangular-button .seg-value {
  color: inherit !important;
}
.euros-button .seg-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.euros-button .seg-value {
  font-weight: 600;
  color: #ffffff !important;
}
.euros-button:hover .seg-icon img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
}
.overlay-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
}
.sw-public-card-copyright {
  color: #ffffff;
}
.sw-public-main-container {
  padding-top: 10rem;
  margin: 0;
  display: flex;
  justify-content: center;
}
.sw-public-main-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.sw-public-main-container .sw-main-logo {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 2;
}
.sw-public-main-container .sw-main-logo.sw-logo-top {
  position: absolute;
  top: 15px;
  left: 15px;
}
.sw-public-main-container .sw-main-logo .sw-logo-img {
  width: 70px;
  height: 70px;
  height: auto;
  margin-right: 5px;
}
.sw-public-main-container .sw-main-logo .sw-logo-text {
  color: #5f6368;
  font-size: 20px;
}
.sw-public-main-container .sw-public-inner-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 975px;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card {
  display: flex;
  flex-direction: column;
  background-color: white;
  box-shadow: 0 6px 12px rgba(140, 152, 164, 0.075);
  border: 0.0625rem solid rgba(231, 234, 243, 0.7);
  flex: 1 1 auto;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-form-container {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.875rem;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-form-container .sw-container-loading-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-form-container .sw-container-loading-bar .border-radius-progress-bar {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-form-container .sw-public-form-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-form-container .sw-public-form-header .main-logo-form {
  width: 125px;
  margin-bottom: 2.5rem;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-form-container .sw-public-form-header h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1;
  font-family:
    "Source Serif Pro",
    sans-serif,
    sans-serif !important;
  color: #000;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-form-container .sw-public-form-content {
  position: relative;
  display: flex;
  flex-direction: column;
  zoom: 80%;
  margin-bottom: 1.125rem;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-card-right {
  padding: 1.475rem;
  text-align: center;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-card-right .card-right-logo-container {
  margin-bottom: 3.125rem;
  margin-top: 2rem;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card .sw-public-card-right .card-right-login-text {
  zoom: 77%;
  text-align: justify;
  color: rgba(0, 0, 0, 0.87);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
}
.sw-public-main-container .sw-public-inner-container .sw-public-card-container .sw-public-card-footer {
  display: flex;
  flex-direction: row;
  padding: 5px 15px;
  height: 50px;
  align-items: center;
  justify-content: space-between;
}
.sw-public-main-container .sw-public-inner-container .sw-public-welcome-container {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  margin-bottom: 100px;
}
.sw-public-main-container .sw-public-inner-container .sw-public-welcome-container .sw-public-welcome-title {
  font-size: 60px;
  color: rgba(0, 0, 0, 0.84);
  margin: 0;
  margin-bottom: 10px;
  font-weight: bold;
}
.sw-public-main-container .sw-public-inner-container .sw-public-welcome-container .sw-public-welcome-subtitle {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.84);
  margin: 0;
  margin-bottom: 10px;
}
.success-checkmark {
  width: 80px;
  height: 115px;
  margin: 0 auto;
}
.success-checkmark .check-icon {
  width: 80px;
  height: 80px;
  position: relative;
  border-radius: 50%;
  box-sizing: content-box;
  border: 4px solid #4caf50;
}
.success-checkmark .check-icon::before {
  top: 3px;
  left: -2px;
  width: 30px;
  transform-origin: 100% 50%;
  border-radius: 100px 0 0 100px;
}
.success-checkmark .check-icon::after {
  top: 0;
  left: 30px;
  width: 60px;
  transform-origin: 0 50%;
  border-radius: 0 100px 100px 0;
  animation: rotate-circle 4.25s ease-in;
}
.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
  content: "";
  height: 100px;
  position: absolute;
  background: rgb(245, 239, 234);
  transform: rotate(-45deg);
}
.success-checkmark .check-icon .icon-line {
  height: 5px;
  background-color: #4caf50;
  display: block;
  border-radius: 2px;
  position: absolute;
  z-index: 10;
}
.success-checkmark .check-icon .icon-line.line-tip {
  top: 46px;
  left: 14px;
  width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}
.success-checkmark .check-icon .icon-line.line-long {
  top: 38px;
  right: 8px;
  width: 47px;
  transform: rotate(-45deg);
  animation: icon-line-long 0.75s;
}
.success-checkmark .check-icon .icon-circle {
  top: -4px;
  left: -4px;
  z-index: 10;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}
.success-checkmark .check-icon .icon-fix {
  top: 8px;
  width: 5px;
  left: 26px;
  z-index: 1;
  height: 85px;
  position: absolute;
  transform: rotate(-45deg);
  background-color: rgb(245, 239, 234);
}
@keyframes rotate-circle {
  0% {
    transform: rotate(-45deg);
  }
  5% {
    transform: rotate(-45deg);
  }
  12% {
    transform: rotate(-405deg);
  }
  100% {
    transform: rotate(-405deg);
  }
}
@keyframes icon-line-tip {
  0% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  54% {
    width: 0;
    left: 1px;
    top: 19px;
  }
  70% {
    width: 50px;
    left: -8px;
    top: 37px;
  }
  84% {
    width: 17px;
    left: 21px;
    top: 48px;
  }
  100% {
    width: 25px;
    left: 14px;
    top: 45px;
  }
}
@keyframes icon-line-long {
  0% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  65% {
    width: 0;
    right: 46px;
    top: 54px;
  }
  84% {
    width: 55px;
    right: 0px;
    top: 35px;
  }
  100% {
    width: 47px;
    right: 8px;
    top: 38px;
  }
}
html {
  --mat-badge-text-font: Roboto, sans-serif;
  --mat-badge-line-height: 22px;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-small-size-line-height: 16px;
  --mat-badge-large-size-text-size: 24px;
  --mat-badge-large-size-line-height: 28px;
}
.mat-h1,
.mat-headline-5,
.mat-typography .mat-h1,
.mat-typography .mat-headline-5,
.mat-typography h1 {
  font: 400 24px / 32px Roboto, sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2,
.mat-headline-6,
.mat-typography .mat-h2,
.mat-typography .mat-headline-6,
.mat-typography h2 {
  font: 500 20px / 32px Roboto, sans-serif;
  letter-spacing: 0.0125em;
  margin: 0 0 16px;
}
.mat-h3,
.mat-subtitle-1,
.mat-typography .mat-h3,
.mat-typography .mat-subtitle-1,
.mat-typography h3 {
  font: 400 16px / 28px Roboto, sans-serif;
  letter-spacing: 0.009375em;
  margin: 0 0 16px;
}
.mat-h4,
.mat-body-1,
.mat-typography .mat-h4,
.mat-typography .mat-body-1,
.mat-typography h4 {
  font: 400 16px / 24px Roboto, sans-serif;
  letter-spacing: 0.03125em;
  margin: 0 0 16px;
}
.mat-h5,
.mat-typography .mat-h5,
.mat-typography h5 {
  font: 400 calc(14px * 0.83) / 20px Roboto, sans-serif;
  margin: 0 0 12px;
}
.mat-h6,
.mat-typography .mat-h6,
.mat-typography h6 {
  font: 400 calc(14px * 0.67) / 20px Roboto, sans-serif;
  margin: 0 0 12px;
}
.mat-body-strong,
.mat-subtitle-2,
.mat-typography .mat-body-strong,
.mat-typography .mat-subtitle-2 {
  font: 500 14px / 22px Roboto, sans-serif;
  letter-spacing: 0.0071428571em;
}
.mat-body,
.mat-body-2,
.mat-typography .mat-body,
.mat-typography .mat-body-2,
.mat-typography {
  font: 400 14px / 20px Roboto, sans-serif;
  letter-spacing: 0.0178571429em;
}
.mat-body p,
.mat-body-2 p,
.mat-typography .mat-body p,
.mat-typography .mat-body-2 p,
.mat-typography p {
  margin: 0 0 12px;
}
.mat-small,
.mat-caption,
.mat-typography .mat-small,
.mat-typography .mat-caption {
  font: 400 12px / 20px Roboto, sans-serif;
  letter-spacing: 0.0333333333em;
}
.mat-headline-1,
.mat-typography .mat-headline-1 {
  font: 300 96px / 96px Roboto, sans-serif;
  letter-spacing: -0.015625em;
  margin: 0 0 56px;
}
.mat-headline-2,
.mat-typography .mat-headline-2 {
  font: 300 60px / 60px Roboto, sans-serif;
  letter-spacing: -0.0083333333em;
  margin: 0 0 64px;
}
.mat-headline-3,
.mat-typography .mat-headline-3 {
  font: 400 48px / 50px Roboto, sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}
.mat-headline-4,
.mat-typography .mat-headline-4 {
  font: 400 34px / 40px Roboto, sans-serif;
  letter-spacing: 0.0073529412em;
  margin: 0 0 64px;
}
html {
  --mat-bottom-sheet-container-text-font: Roboto, sans-serif;
  --mat-bottom-sheet-container-text-line-height: 20px;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: 0.0178571429em;
  --mat-bottom-sheet-container-text-weight: 400;
}
html {
  --mat-legacy-button-toggle-label-text-font: Roboto, sans-serif;
  --mat-legacy-button-toggle-label-text-line-height: 24px;
  --mat-legacy-button-toggle-label-text-size: 16px;
  --mat-legacy-button-toggle-label-text-tracking: 0.03125em;
  --mat-legacy-button-toggle-label-text-weight: 400;
}
html {
  --mat-standard-button-toggle-label-text-font: Roboto, sans-serif;
  --mat-standard-button-toggle-label-text-line-height: 24px;
  --mat-standard-button-toggle-label-text-size: 16px;
  --mat-standard-button-toggle-label-text-tracking: 0.03125em;
  --mat-standard-button-toggle-label-text-weight: 400;
}
html {
  --mat-datepicker-calendar-text-font: Roboto, sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
}
html {
  --mat-expansion-header-text-font: Roboto, sans-serif;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: Roboto, sans-serif;
  --mat-expansion-container-text-line-height: 20px;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: 0.0178571429em;
  --mat-expansion-container-text-weight: 400;
}
html {
  --mat-grid-list-tile-header-primary-text-size: 14px;
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: 14px;
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
}
html {
  --mat-stepper-container-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 400;
  --mat-stepper-header-error-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
}
html {
  --mat-toolbar-title-text-font: Roboto, sans-serif;
  --mat-toolbar-title-text-line-height: 32px;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: 0.0125em;
  --mat-toolbar-title-text-weight: 500;
}
html {
  --mat-tree-node-text-font: Roboto, sans-serif;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 400;
}
html {
  --mat-option-label-text-font: Roboto, sans-serif;
  --mat-option-label-text-line-height: 24px;
  --mat-option-label-text-size: 16px;
  --mat-option-label-text-tracking: 0.03125em;
  --mat-option-label-text-weight: 400;
}
html {
  --mat-optgroup-label-text-font: Roboto, sans-serif;
  --mat-optgroup-label-text-line-height: 24px;
  --mat-optgroup-label-text-size: 16px;
  --mat-optgroup-label-text-tracking: 0.03125em;
  --mat-optgroup-label-text-weight: 400;
}
html {
  --mat-card-title-text-font: Roboto, sans-serif;
  --mat-card-title-text-line-height: 32px;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: 0.0125em;
  --mat-card-title-text-weight: 500;
  --mat-card-subtitle-text-font: Roboto, sans-serif;
  --mat-card-subtitle-text-line-height: 22px;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: 0.0071428571em;
  --mat-card-subtitle-text-weight: 500;
}
html {
  --mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
}
html {
  --mdc-filled-text-field-label-text-font: Roboto, sans-serif;
  --mdc-filled-text-field-label-text-size: 16px;
  --mdc-filled-text-field-label-text-tracking: 0.03125em;
  --mdc-filled-text-field-label-text-weight: 400;
}
html {
  --mdc-outlined-text-field-label-text-font: Roboto, sans-serif;
  --mdc-outlined-text-field-label-text-size: 16px;
  --mdc-outlined-text-field-label-text-tracking: 0.03125em;
  --mdc-outlined-text-field-label-text-weight: 400;
}
html {
  --mat-form-field-container-text-font: Roboto, sans-serif;
  --mat-form-field-container-text-line-height: 24px;
  --mat-form-field-container-text-size: 16px;
  --mat-form-field-container-text-tracking: 0.03125em;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 16px;
  --mat-form-field-subscript-text-font: Roboto, sans-serif;
  --mat-form-field-subscript-text-line-height: 20px;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
  --mat-form-field-subscript-text-weight: 400;
}
html {
  --mat-select-trigger-text-font: Roboto, sans-serif;
  --mat-select-trigger-text-line-height: 24px;
  --mat-select-trigger-text-size: 16px;
  --mat-select-trigger-text-tracking: 0.03125em;
  --mat-select-trigger-text-weight: 400;
}
html {
  --mdc-dialog-subhead-font: Roboto, sans-serif;
  --mdc-dialog-subhead-line-height: 32px;
  --mdc-dialog-subhead-size: 20px;
  --mdc-dialog-subhead-weight: 500;
  --mdc-dialog-subhead-tracking: 0.0125em;
  --mdc-dialog-supporting-text-font: Roboto, sans-serif;
  --mdc-dialog-supporting-text-line-height: 24px;
  --mdc-dialog-supporting-text-size: 16px;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-tracking: 0.03125em;
}
.mat-mdc-standard-chip {
  --mdc-chip-label-text-font: Roboto, sans-serif;
  --mdc-chip-label-text-line-height: 20px;
  --mdc-chip-label-text-size: 14px;
  --mdc-chip-label-text-tracking: 0.0178571429em;
  --mdc-chip-label-text-weight: 400;
}
html .mat-mdc-slide-toggle {
  --mat-switch-label-text-font: Roboto, sans-serif;
  --mat-switch-label-text-line-height: 20px;
  --mat-switch-label-text-size: 14px;
  --mat-switch-label-text-tracking: 0.0178571429em;
  --mat-switch-label-text-weight: 400;
}
html {
  --mat-radio-label-text-font: Roboto, sans-serif;
  --mat-radio-label-text-line-height: 20px;
  --mat-radio-label-text-size: 14px;
  --mat-radio-label-text-tracking: 0.0178571429em;
  --mat-radio-label-text-weight: 400;
}
html {
  --mdc-slider-label-label-text-font: Roboto, sans-serif;
  --mdc-slider-label-label-text-size: 14px;
  --mdc-slider-label-label-text-line-height: 22px;
  --mdc-slider-label-label-text-tracking: 0.0071428571em;
  --mdc-slider-label-label-text-weight: 500;
}
html {
  --mat-menu-item-label-text-font: Roboto, sans-serif;
  --mat-menu-item-label-text-size: 16px;
  --mat-menu-item-label-text-tracking: 0.03125em;
  --mat-menu-item-label-text-line-height: 24px;
  --mat-menu-item-label-text-weight: 400;
}
html {
  --mdc-list-list-item-label-text-font: Roboto, sans-serif;
  --mdc-list-list-item-label-text-line-height: 24px;
  --mdc-list-list-item-label-text-size: 16px;
  --mdc-list-list-item-label-text-tracking: 0.03125em;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: Roboto, sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 20px;
  --mdc-list-list-item-supporting-text-size: 14px;
  --mdc-list-list-item-supporting-text-tracking: 0.0178571429em;
  --mdc-list-list-item-supporting-text-weight: 400;
  --mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 20px;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
}
.mdc-list-group__subheader {
  font: 400 16px / 28px Roboto, sans-serif;
  letter-spacing: 0.009375em;
}
html {
  --mat-paginator-container-text-font: Roboto, sans-serif;
  --mat-paginator-container-text-line-height: 20px;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: 0.0333333333em;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}
.mat-mdc-tab-header {
  --mat-tab-header-label-text-font: Roboto, sans-serif;
  --mat-tab-header-label-text-size: 14px;
  --mat-tab-header-label-text-tracking: 0.0892857143em;
  --mat-tab-header-label-text-line-height: 36px;
  --mat-tab-header-label-text-weight: 500;
}
html {
  --mat-checkbox-label-text-font: Roboto, sans-serif;
  --mat-checkbox-label-text-line-height: 20px;
  --mat-checkbox-label-text-size: 14px;
  --mat-checkbox-label-text-tracking: 0.0178571429em;
  --mat-checkbox-label-text-weight: 400;
}
html {
  --mdc-text-button-label-text-font: Roboto, sans-serif;
  --mdc-text-button-label-text-size: 14px;
  --mdc-text-button-label-text-tracking: 0.0892857143em;
  --mdc-text-button-label-text-weight: 500;
  --mdc-text-button-label-text-transform: none;
}
html {
  --mdc-filled-button-label-text-font: Roboto, sans-serif;
  --mdc-filled-button-label-text-size: 14px;
  --mdc-filled-button-label-text-tracking: 0.0892857143em;
  --mdc-filled-button-label-text-weight: 500;
  --mdc-filled-button-label-text-transform: none;
}
html {
  --mdc-protected-button-label-text-font: Roboto, sans-serif;
  --mdc-protected-button-label-text-size: 14px;
  --mdc-protected-button-label-text-tracking: 0.0892857143em;
  --mdc-protected-button-label-text-weight: 500;
  --mdc-protected-button-label-text-transform: none;
}
html {
  --mdc-outlined-button-label-text-font: Roboto, sans-serif;
  --mdc-outlined-button-label-text-size: 14px;
  --mdc-outlined-button-label-text-tracking: 0.0892857143em;
  --mdc-outlined-button-label-text-weight: 500;
  --mdc-outlined-button-label-text-transform: none;
}
html {
  --mdc-extended-fab-label-text-font: Roboto, sans-serif;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: 0.0892857143em;
  --mdc-extended-fab-label-text-weight: 500;
}
html {
  --mdc-snackbar-supporting-text-font: Roboto, sans-serif;
  --mdc-snackbar-supporting-text-line-height: 20px;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 400;
}
html {
  --mat-table-header-headline-font: Roboto, sans-serif;
  --mat-table-header-headline-line-height: 22px;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: 0.0071428571em;
  --mat-table-row-item-label-text-font: Roboto, sans-serif;
  --mat-table-row-item-label-text-line-height: 20px;
  --mat-table-row-item-label-text-size: 14px;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-row-item-label-text-tracking: 0.0178571429em;
  --mat-table-footer-supporting-text-font: Roboto, sans-serif;
  --mat-table-footer-supporting-text-line-height: 20px;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.0178571429em;
}
.serif-font {
  font-family: "Source Serif Pro", serif !important;
}
:root {
  --top-header-bg: #101010;
  --top-header-text: #929292;
  --top-header-height: 40px;
  --sub-header-bg: #242424;
  --sub-header-text: #929292;
}
html {
  --mat-sys-primary: light-dark(#bd9270, #f1dece) !important;
  --mat-sys-background: #ffffff !important;
  --mat-sys-surface: #ffffff !important;
  --mdc-filled-text-field-container-color: light-dark(rgb(245, 239, 234), rgb(245, 239, 234)) !important;
}
html {
  --mat-sys-background: #faf9fd;
  --mat-sys-error: #ba1a1a;
  --mat-sys-error-container: #ffdad6;
  --mat-sys-inverse-on-surface: #f2f0f4;
  --mat-sys-inverse-primary: #abc7ff;
  --mat-sys-inverse-surface: #2f3033;
  --mat-sys-on-background: #1a1b1f;
  --mat-sys-on-error: #ffffff;
  --mat-sys-on-error-container: #410002;
  --mat-sys-on-primary: #ffffff;
  --mat-sys-on-primary-container: #001b3f;
  --mat-sys-on-primary-fixed: #001b3f;
  --mat-sys-on-primary-fixed-variant: #00458f;
  --mat-sys-on-secondary: #ffffff;
  --mat-sys-on-secondary-container: #131c2b;
  --mat-sys-on-secondary-fixed: #131c2b;
  --mat-sys-on-secondary-fixed-variant: #3e4759;
  --mat-sys-on-surface: #1a1b1f;
  --mat-sys-on-surface-variant: #44474e;
  --mat-sys-on-tertiary: #ffffff;
  --mat-sys-on-tertiary-container: #001b3f;
  --mat-sys-on-tertiary-fixed: #001b3f;
  --mat-sys-on-tertiary-fixed-variant: #00458f;
  --mat-sys-outline: #74777f;
  --mat-sys-outline-variant: #c4c6d0;
  --mat-sys-primary: #005cbb;
  --mat-sys-primary-container: #d7e3ff;
  --mat-sys-primary-fixed: #d7e3ff;
  --mat-sys-primary-fixed-dim: #abc7ff;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #565e71;
  --mat-sys-secondary-container: #dae2f9;
  --mat-sys-secondary-fixed: #dae2f9;
  --mat-sys-secondary-fixed-dim: #bec6dc;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #faf9fd;
  --mat-sys-surface-bright: #faf9fd;
  --mat-sys-surface-container: #efedf0;
  --mat-sys-surface-container-high: #e9e7eb;
  --mat-sys-surface-container-highest: #e3e2e6;
  --mat-sys-surface-container-low: #f4f3f6;
  --mat-sys-surface-container-lowest: #ffffff;
  --mat-sys-surface-dim: #dbd9dd;
  --mat-sys-surface-tint: #005cbb;
  --mat-sys-surface-variant: #e0e2ec;
  --mat-sys-tertiary: #005cbb;
  --mat-sys-tertiary-container: #d7e3ff;
  --mat-sys-tertiary-fixed: #d7e3ff;
  --mat-sys-tertiary-fixed-dim: #abc7ff;
  --mat-sys-neutral-variant20: #2d3038;
  --mat-sys-neutral10: #1a1b1f;
}
html {
  --mat-sys-level0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
}
html {
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
body.dark-theme {
  --mat-sys-background: #121316;
  --mat-sys-error: #ffb4ab;
  --mat-sys-error-container: #93000a;
  --mat-sys-inverse-on-surface: #2f3033;
  --mat-sys-inverse-primary: #005cbb;
  --mat-sys-inverse-surface: #e3e2e6;
  --mat-sys-on-background: #e3e2e6;
  --mat-sys-on-error: #690005;
  --mat-sys-on-error-container: #ffdad6;
  --mat-sys-on-primary: #002f65;
  --mat-sys-on-primary-container: #d7e3ff;
  --mat-sys-on-primary-fixed: #001b3f;
  --mat-sys-on-primary-fixed-variant: #00458f;
  --mat-sys-on-secondary: #283041;
  --mat-sys-on-secondary-container: #dae2f9;
  --mat-sys-on-secondary-fixed: #131c2b;
  --mat-sys-on-secondary-fixed-variant: #3e4759;
  --mat-sys-on-surface: #e3e2e6;
  --mat-sys-on-surface-variant: #e0e2ec;
  --mat-sys-on-tertiary: #002f65;
  --mat-sys-on-tertiary-container: #d7e3ff;
  --mat-sys-on-tertiary-fixed: #001b3f;
  --mat-sys-on-tertiary-fixed-variant: #00458f;
  --mat-sys-outline: #8e9099;
  --mat-sys-outline-variant: #44474e;
  --mat-sys-primary: #abc7ff;
  --mat-sys-primary-container: #00458f;
  --mat-sys-primary-fixed: #d7e3ff;
  --mat-sys-primary-fixed-dim: #abc7ff;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #bec6dc;
  --mat-sys-secondary-container: #3e4759;
  --mat-sys-secondary-fixed: #dae2f9;
  --mat-sys-secondary-fixed-dim: #bec6dc;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #121316;
  --mat-sys-surface-bright: #38393c;
  --mat-sys-surface-container: #1f2022;
  --mat-sys-surface-container-high: #292a2c;
  --mat-sys-surface-container-highest: #38393c;
  --mat-sys-surface-container-low: #1a1b1f;
  --mat-sys-surface-container-lowest: #0d0e11;
  --mat-sys-surface-dim: #121316;
  --mat-sys-surface-tint: #abc7ff;
  --mat-sys-surface-variant: #44474e;
  --mat-sys-tertiary: #abc7ff;
  --mat-sys-tertiary-container: #00458f;
  --mat-sys-tertiary-fixed: #d7e3ff;
  --mat-sys-tertiary-fixed-dim: #abc7ff;
  --mat-sys-neutral-variant20: #2d3038;
  --mat-sys-neutral10: #1a1b1f;
}
body.dark-theme {
  --mat-sys-level0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
body.dark-theme {
  --mat-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
body.dark-theme {
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
body.dark-theme {
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
body.dark-theme {
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
body.dark-theme {
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
body.dark-theme {
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
}
body.dark-theme {
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
.space-buttons {
  padding-left: 7px;
  padding-right: 7px;
}
.mat-mdc-form-field {
  margin-bottom: 5px;
}
.mat-flat-button.mat-primary,
.mat-raised-button.mat-primary,
.mat-fab.mat-primary,
.mat-mini-fab.mat-primary {
  color: white;
}
.offer-chip {
  background-color: rgba(29, 146, 121, 0.5) !important;
  color: rgba(var(--mat-sys-on-background), 0.75);
  font-family: --mat-sys-typescale-body-medium-font-family;
  font-weight: 500;
  padding: 0px;
  border-radius: 5px !important;
  height: 5px !important;
  margin: 2px 5px;
  font-size: x-small;
}
.mat-mdc-header-row,
.mat-mdc-row,
.mat-mdc-table tbody,
.mat-mdc-checkbox .mdc-form-field {
  font-family: var(--mat-sys-typography-body-medium-font-family) !important;
}
.sw-split-containers {
  width: 100%;
  height: calc(100% - 108px);
}
.sw-split-containers as-split .as-split-gutter {
  background-color: rgba(var(--mat-sys-on-background), 0.12) !important;
  position: relative;
  transition: background-color 0.3s;
}
.sw-split-containers as-split .as-split-gutter:hover,
.sw-split-containers as-split .as-split-gutter.as-dragged {
  background-color: var(var(--mat-sys-primary)) !important;
}
.sw-split-containers as-split .as-split-gutter-icon {
  background-image: none !important;
  background-color: rgba(var(var(--mat-sys-primary)), 0.6);
  transition: opacity 0.3s;
  opacity: 0;
  position: absolute;
}
.sw-split-containers as-split .as-split-gutter.as-dragged .as-split-gutter-icon,
.sw-split-containers as-split .as-split-gutter-icon:hover {
  opacity: 0.1;
}
.sw-split-containers as-split.as-horizontal .as-split-gutter-icon {
  width: 17px !important;
  left: -8px;
  right: 8px;
}
.sw-split-containers as-split.as-vertical .as-split-gutter-icon {
  height: 17px !important;
  top: -8px;
  bottom: 8px;
}
.gridster-item {
  background: --mat-sys-background !important;
}
.mat-mdc-table,
.mat-paginator {
  border-radius: 6px;
  background: --mat-sys-background;
}
body {
  font-family: var(--mat-sys-typography-body-medium-font-family);
}
h1 {
  margin: 0;
  font-size: 26px;
  font-family: inherit;
}
h1.hero {
  font-weight: 500;
  margin-bottom: 0;
}
h1.title {
  font-size: 42px !important;
  margin-bottom: 0;
}
h2 {
  margin: 0;
  font-size: 23px;
  font-family: inherit;
}
h2.hero {
  font-weight: 700;
  margin-bottom: 0;
}
h2.title {
  font-size: 46px;
  margin-bottom: 0;
}
.mat-h4 {
  margin-bottom: 10px;
}
.subtitle {
  margin: 0;
  font-family: var(--mat-sys-typography-body-medium-font-family);
}
.subtitleh3 {
  font-size: 14px;
}
.subtitleh4 {
  font-size: 13px;
}
.page-title {
  margin: 0;
  font-size: 19px;
  font-weight: normal;
  font-family: var(--mat-sys-typography-body-medium-font-family);
}
.text {
  margin: 0;
  font-weight: 300;
}
.text.small {
  font-size: 12px;
}
.text.ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  word-wrap: break-word;
}
.mute {
  color: rgba(var(--mat-sys-on-background), 0.48);
}
.bold {
  font-weight: bold;
}
.align-center {
  text-align: center;
}
.align-right {
  text-align: right;
}
.align-left {
  text-align: left;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.m-0 {
  margin: 0;
}
.p-0 {
  padding: 0 !important;
}
.p-1 {
  padding: 10px;
}
.cursor-move {
  cursor: move;
}
.cursor-pointer {
  cursor: pointer;
}
.line-through .item-list-column {
  text-decoration: line-through;
}
.comment {
  min-height: 100px;
  padding: 10px;
  background-color: rgba(var(--mat-sys-on-background), 0.1);
  border-radius: 4px;
}
.section {
  padding: 10px;
}
.section label {
  margin-bottom: 10px;
}
.mat-button-select {
  padding: 0 4px;
}
.mat-button.text-only-menu-button::after {
  content: "";
  position: relative;
  top: 0;
  right: -8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #1a73e8;
  speak: none;
}
.mat-button.text-only-menu-button[aria-expanded=true]:after {
  -webkit-transform: rotate(180deg) !important;
  transform: rotate(180deg) !important;
}
.mat-button.link-logo-nav {
  padding: 4px 6px;
}
.fab-button {
  position: fixed;
  z-index: 2;
  bottom: 25px;
  right: 25px;
}
.fab-button.p-absolute {
  position: absolute;
}
.fab-button.top {
  top: 25px;
}
.fab-button.top.right {
  right: 25px;
}
.fab-button.top.left {
  left: 25px;
}
.fab-button.bottom {
  bottom: 25px;
}
.fab-button.bottom.right {
  right: 25px;
}
.fab-button.bottom.left {
  left: 25px;
}
.custom-mat-tabs .mat-tab-body-content {
  padding: 10px;
}
.container-page.with-header-action-page {
  padding: 0 0 10px 0;
}
.container-page.container-form-page {
  padding: 15px 0 15px 0;
}
.container-form-page {
  padding: 10px;
}
@media (max-width: 37.5em) {
  .container-form-page {
    padding: 0;
  }
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing.dark-backdrop {
  background: #000;
  opacity: 0.85 !important;
}
.mat-select-search-input {
  border: none;
}
.mat-select-search-input:focus {
  outline: none;
}
.and-set {
  border: 1px solid rgba(0, 0, 0, 0.85);
  padding: 5px;
}
.cdk-drag-preview {
  box-sizing: border-box;
  border-radius: 4px;
  background-color: --mat-sys-background;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.cdk-drag-placeholder {
  opacity: 0;
}
.cdk-drag-animating {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.no-padding-bottom .mat-form-field-wrapper {
  padding-bottom: 0;
}
.card-header-form-field .mat-form-field-wrapper {
  padding-bottom: 0;
}
.card-header-form-field .mat-form-field-infix {
  padding: 7px 0 10px 0;
}
.form-section .form-section-header {
  position: relative;
  border-bottom: 1px solid color-mix(in srgb, var(--mat-sys-on-background) 5%, transparent 50%);
}
.form-section .form-section-header .form-section-tab-header {
  padding: 12px 20px;
  border-bottom: 2px solid var(var(--mat-sys-primary));
  min-width: 150px;
  text-align: center;
}
.form-section .form-section-header .actions-container {
  position: absolute;
  top: 0;
  right: 0;
}
.mat-mdc-select-content,
.mat-mdc-select-panel-done-animating {
  background: var(var(--mat-sys-primary));
}
.mat-mdc-select-content .mat-mdc-option,
.mat-mdc-select-panel-done-animating .mat-mdc-option {
  color: var(--mat-sys-on-background);
}
div.mat-mdc-select-panel {
  padding: 0;
}
.mat-mdc-option.mdc-list-item {
  padding-left: 6px;
  border-radius: 4px;
  position: relative;
  transition: background-color 0.2s ease-in-out 0s;
}
.mat-mdc-option.mdc-list-item:focus-within {
  background-color: --mat-sys-background;
}
.mat-mdc-option.mdc-list-item:hover:not(:focus-within) {
  background-color: rgba(128, 128, 128, 0.15);
}
.mat-mdc-text-field-wrapper {
  width: auto !important;
  height: 200% !important;
}
.mat-menu-panel {
  border-color: black;
}
.divider-column {
  border-left: 1px solid rgba(var(--mat-sys-on-background), 0.12);
}
.mat-stepper-vertical,
.mat-stepper-horizontal {
  background: var(--mat-sys-background);
  filter: brightness(105%);
}
.mat-menu-panel.custom .mat-menu-item {
  height: 36px;
  line-height: 36px;
}
.sw-title-header-card {
  display: flex;
  flex-direction: row;
}
.sw-title-header-card .sw-copy-link-container {
  position: relative;
  height: 35px;
}
.sw-title-header-card .sw-copy-link-container .sw-copy-link-inner-container {
  position: absolute;
  top: 0;
  left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease 0s, left 0.3s cubic-bezier(0.47, 0.03, 0.49, 1.38);
  padding-left: 5px;
}
.sw-title-header-card .sw-copy-link-container .sw-copy-link-inner-container .material-icons {
  font-size: 21px;
}
.sw-title-header-card .sw-copy-link-container .sw-copy-link-inner-container .material-icons.rotate {
  transform: rotate(-45deg);
}
.sw-title-header-card .sw-copy-link-container .sw-copy-link-inner-container:hover {
  opacity: 1;
  cursor: pointer;
}
.sw-title-header-card:hover .sw-copy-link-inner-container {
  opacity: 1;
  left: 0;
}
.container-search-input {
  border-radius: 26px;
  padding: 4px 12px;
  border: 1px solid rgba(var(--mat-sys-on-background), 0.1);
}
.container-search-input input {
  border: none;
  font-size: 16px;
  margin-left: 5px;
}
.container-search-input input:focus {
  outline: none;
}
.container-search-input i {
  color: rgba(var(--mat-sys-on-background), 0.8);
}
.container-search-input .close-button {
  font-size: 14px;
  padding: 2px;
  border-radius: 50%;
  cursor: pointer;
}
.container-search-input .close-button:hover {
  background-color: rgba(var(--mat-sys-on-background), 0.1);
}
.sw-form-field .mat-mdc-input-element {
  background: color-mix(in srgb, var(--mat-sys-on-background) 5%, transparent 50%) !important;
}
.sw-form-field {
  background-color: rgba(128, 128, 128, 0.05) !important;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(128, 128, 128, 0.2);
  border-radius: 4px;
  position: relative;
  transition: background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
  margin-left: 0;
}
.sw-form-field:focus-within {
  background-color: --mat-sys-background;
  border-color: var(--mat-sys-primary);
}
.sw-form-field:hover:not(:focus-within) {
  background-color: rgba(128, 128, 128, 0.15);
}
.sw-form-field .search-icon {
  padding: 0 10px;
  height: 100%;
  position: absolute;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.sw-form-field .close-icon {
  color: rgba(var(--mat-sys-on-background), 0.4);
  right: 7px;
  top: 7px;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  font-size: 18px;
  height: 22px;
  width: 22px;
}
.sw-form-field .close-icon:hover {
  color: rgba(var(--mat-sys-on-background), 0.85);
  background-color: rgba(var(--mat-sys-on-background), 0.1);
}
.sw-form-field input {
  border: none;
  color: inherit;
  font-size: 16px;
  padding: 8px 10px 8px 0px;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  padding-left: calc(1em + 26px);
  width: 12ch;
}
.sw-form-field.has-animation input:focus {
  outline: none;
  width: 20ch;
}
.container-search-input-section {
  padding: 8px 10px;
  background-color: rgba(128, 128, 128, 0.05);
  border-style: solid;
  border-width: 2px;
  border-color: rgba(128, 128, 128, 0.2);
  border-radius: 4px;
  position: relative;
  transition: background-color 0.2s ease-in-out 0s, border-color 0.2s ease-in-out 0s;
}
.container-search-input-section.value-expression-input {
  padding: 4px;
}
.container-search-input-section:focus-within {
  background-color: --mat-sys-background;
  border-color: #2f48aa;
}
.container-search-input-section:hover:not(:focus-within) {
  background-color: rgba(128, 128, 128, 0.15);
}
.container-search-input-section .mat-icon-button {
  position: absolute;
  top: 0;
  right: 5px;
  width: 33px;
  height: 33px;
  line-height: 33px;
}
.container-search-input-section .mat-icon-button .material-icons {
  font-size: 19px;
}
.filter-container {
  border: 1px solid color-mix(in srgb, var(--mat-sys-on-background) 5%, transparent 50%);
  border-radius: 30px;
  font-size: 16px;
  background-color: --mat-sys-background;
}
.filter-container.isSticky {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid color-mix(in srgb, var(--mat-sys-on-background) 5%, transparent 50%);
  box-shadow: 0 4px 4px -3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s cubic-bezier(0.55, 0, 0.55, 0.2);
  position: sticky;
  top: 0px;
}
.filter-container .item-to-search {
  padding: 5px 16px;
  border-right: 1px solid color-mix(in srgb, var(--mat-sys-on-background) 5%, transparent 50%);
  min-height: 50px;
}
.filter-container .item-to-search input {
  font-size: inherit;
  border: none;
}
.filter-container .item-to-search input:focus {
  outline: none;
}
.app-tree {
  position: relative;
}
.app-tree::after {
  content: "";
  position: absolute;
  border-left: 1px solid rgba(128, 128, 128, 0.2);
  height: 10px;
  left: 50%;
  top: -10px;
}
.chart-card-footer {
  padding: 5px 12px;
}
.chart-card-content {
  padding: 10px;
}
.chart-card-header {
  padding: 15px 10px 0px 10px;
}
.chart-card-header .span {
  color: rgba(var(--mat-sys-on-background), 0.54);
}
.action-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: --mat-sys-background;
}
.action-section-overlay span {
  color: var(var(--mat-sys-primary));
  font-size: 15px;
}
.and {
  border-radius: 4px;
}
.sm.mat-icon-button {
  padding: 0;
  min-width: 0;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  line-height: 28px;
  border-radius: 50%;
}
.sm.mat-icon-button .material-icons {
  font-size: 18px;
}
.form-filter-entries {
  padding: 0 5px;
}
.form-filter-entries.mobile {
  padding: 10px;
}
.header-action-page {
  border-bottom: 1px solid color-mix(in srgb, var(--mat-sys-on-background) 5%, transparent 50%);
  background-color: --mat-sys-background;
  z-index: 2;
  transition: box-shadow 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 15px;
}
.header-action-page.show-shadow {
  box-shadow: 0 3px 2px -2px rgba(0, 0, 0, 0.1);
}
.header-action-page h2 {
  margin: 0;
}
.custom-mat-form-field-appearance.mat-form-field-appearance-fill .mat-form-field-flex {
  padding: 0 0.75em 0 0.75em;
}
.custom-mat-form-field-appearance.mat-form-field-appearance-fill .mat-form-field-flex .mat-icon-button {
  width: 2em;
  height: 2em;
}
.custom-mat-form-field-appearance.mat-form-field-appearance-fill .mat-form-field-flex .mat-icon-button .mat-datepicker-toggle-default-icon {
  display: block;
  width: 1.2em;
  height: 1.2em;
}
.badge {
  position: absolute;
  top: -7px;
  right: -7px;
  font-size: 0.7em;
  color: --mat-sys-on-background;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  background-color: gray;
  z-index: 2;
}
.badge.badge-primary {
  background-color: #6062ec;
  color: rgba(255, 255, 255, 0.85);
}
.sm {
  font-size: 20px;
}
.cdk-drag-preview {
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.additional-selection {
  opacity: 0.75;
  font-size: 0.75em;
}
.preview-drag-item {
  width: 200px;
  padding: 10px 16px;
  font-size: 13px;
}
.drag-condition-box {
  padding: 5px;
  display: flex;
  cursor: move;
  font-size: 12px;
  flex-direction: row;
  justify-content: center;
}
.drag-condition-box.horizontal {
  padding: 0;
}
.cdk-drag-placeholder {
  opacity: 0;
}
.cdk-drag-animating {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.drag-condition-box:last-child {
  border: none;
}
.drag-condition-list.cdk-drop-list-dragging .drag-condition-box:not(.cdk-drag-placeholder) {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.p-absolute {
  position: absolute;
}
.p-relative {
  position: relative;
}
.p-fixed {
  position: fixed;
}
.top-left {
  top: 15px;
  left: 15px;
}
.top-right {
  top: 15px;
  right: 15px;
}
.bottom-left {
  bottom: 15px;
  left: 15px;
}
.bottom-right {
  bottom: 15px;
  right: 15px;
}
.top-right-menu {
  top: -2px;
  right: 4px;
}
.img-responsive {
  width: 100%;
  height: auto;
  padding: 10px;
}
.img-responsive.round-borders {
  border-radius: 6px;
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 3;
}
.mat-menu-lg.mat-menu-panel {
  max-width: 340px;
  min-width: 300px;
}
.mat-menu-panel {
  color: --mat-sys-on-background;
  background: var(--mat-sys-background);
  filter: brightness(105%);
}
.mat-menu-panel.mat-menu-rounded {
  border-radius: 10px;
}
td.border-status {
  border-right: 4px solid gray;
}
.circle {
  height: 20px;
  width: 20px;
  background-color: setcolor(machineLearning);
  border-radius: 50%;
  display: inline-block;
}
.circle.red-salmon {
  background-color: setcolor(palette, salmonRed);
}
.circle.light-orange {
  background-color: setcolor(palette, lightOrange);
}
.circle.gum-purple {
  background-color: setcolor(palette, gumPurple);
}
.circle.emerald-green {
  background-color: setcolor(palette, emeraldGreen);
}
.circle.sky-blue {
  background-color: setcolor(palette, skyBlue);
}
.circle.cyan-blue {
  background-color: setcolor(palette, cyanBlue);
}
.circle.circle-mat-trigger-option {
  position: relative;
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.circle.circle-mat-trigger-option span.material-icons {
  position: relative;
  font-size: 21px;
  visibility: hidden;
}
.circle.circle-mat-trigger-option.selected {
  border: 2px solid --mat-sys-on-background;
}
.circle.circle-mat-trigger-option.selected span.material-icons {
  visibility: visible;
}
.mat-menu-item:hover .circle-mat-trigger-option {
  border: 2px solid --mat-sys-on-background;
}
.mat-dialog-full-width {
  max-width: 100%;
  width: 100%;
  height: 100%;
  max-height: 100%;
}
.mat-dialog-container {
  color: --mat-sys-on-background;
  background: var(--mat-sys-background);
  filter: brightness(105%);
  border-radius: 10px !important;
}
.mat-tree {
  background: --mat-sys-background;
}
.mat-mdc-table {
  width: 100%;
}
.mat-mdc-table tr.mat-mdc-row.selected {
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}
.mat-mdc-table tr.mat-mdc-row.selected:hover {
  background-color: color-mix(in srgb, var(--mat-sys-on-background) 5%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.disabled .mat-mdc-cell {
  color: rgba(128, 128, 128, 0.5);
}
.mat-mdc-table tr.mat-mdc-row.disabled .mat-mdc-cell input {
  color: rgba(128, 128, 128, 0.5);
}
.mat-mdc-table tr.mat-mdc-row.disabled .mat-icon {
  color: --mat-sys-on-background;
}
.mat-mdc-table tr.mat-mdc-row {
  border-bottom-color: color-mix(in srgb, var(--mat-sys-on-background) 4%, transparent 50%) !important;
}
.mat-mdc-table tr.mat-mdc-row.red-salmon {
  background-color: color-mix(in srgb, var(setcolor(palette, salmonRed)) 3%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.red-salmon:hover {
  background-color: color-mix(in srgb, var(setcolor(palette, salmonRed)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.red-salmon:hover .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(setcolor(palette, salmonRed)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(--mat-sys-on-background) 30%, transparent 50%) !important;
}
.mat-mdc-table tr.mat-mdc-row.light-orange {
  background-color: color-mix(in srgb, var(setcolor(palette, lightOrange)) 3%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.light-orange:hover {
  background-color: color-mix(in srgb, var(setcolor(palette, lightOrange)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.light-orange:hover .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(setcolor(palette, lightOrange)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(--mat-sys-on-background) 30%, transparent 50%) !important;
}
.mat-mdc-table tr.mat-mdc-row.gum-purple {
  background-color: color-mix(in srgb, var(setcolor(palette, gumPurple)) 3%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.gum-purple:hover {
  background-color: color-mix(in srgb, var(setcolor(palette, gumPurple)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.gum-purple:hover .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(setcolor(palette, gumPurple)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(--mat-sys-on-background) 30%, transparent 50%) !important;
}
.mat-mdc-table tr.mat-mdc-row.emerald-green {
  background-color: color-mix(in srgb, var(setcolor(palette, emeraldGreen)) 3%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.emerald-green:hover {
  background-color: color-mix(in srgb, var(setcolor(palette, emeraldGreen)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.emerald-green:hover .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(setcolor(palette, emeraldGreen)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(--mat-sys-on-background) 30%, transparent 50%) !important;
}
.mat-mdc-table tr.mat-mdc-row.sky-blue {
  background-color: color-mix(in srgb, var(setcolor(palette, skyBlue)) 3%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.sky-blue:hover {
  background-color: color-mix(in srgb, var(setcolor(palette, skyBlue)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.sky-blue:hover .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(setcolor(palette, skyBlue)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(--mat-sys-on-background) 30%, transparent 50%) !important;
}
.mat-mdc-table tr.mat-mdc-row.cyan-blue {
  background-color: color-mix(in srgb, var(setcolor(palette, cyanBlue)) 3%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.cyan-blue:hover {
  background-color: color-mix(in srgb, var(setcolor(palette, cyanBlue)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row.selected.cyan-blue:hover .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(setcolor(palette, cyanBlue)) 4%, transparent 50%);
}
.mat-mdc-table tr.mat-mdc-row .mat-mdc-cell {
  border-bottom-color: color-mix(in srgb, var(--mat-sys-on-background) 30%, transparent 50%) !important;
}
.sw-scrollable-filter-container {
  display: flex;
  flex-wrap: nowrap;
  overflow: auto;
}
.sw-scrollable-filter-container .sw-filter-item {
  flex: 0 0 auto;
}
.sw-scrollable-filter-container .sw-filter-item .sw-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 40px;
  border-radius: 24px;
  border: 1px solid color-mix(in srgb, var(--mat-sys-on-background) 3%, transparent 50%);
  margin-right: 10px;
  min-width: 64px;
}
.chip-item-wrapper {
  display: flex;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  background-color: grey;
}
@media (max-width: 600px) {
  .mat-mdc-table.responsive .mat-mdc-header-row {
    display: none;
  }
  .mat-mdc-table.responsive .mat-mdc-cell {
    border-bottom-color: transparent;
    padding-right: 18px;
    padding-left: 18px;
  }
}
.mat-menu-color-picker .mat-menu-item .mat-icon {
  margin: 0;
}
.mat-menu-color-picker span.red-salmon .mat-icon {
  color: setcolor(palette, salmonRed);
}
.mat-menu-color-picker span.light-orange .mat-icon {
  color: setcolor(palette, lightOrange);
}
.mat-menu-color-picker span.gum-purple .mat-icon {
  color: setcolor(palette, gumPurple);
}
.mat-menu-color-picker span.emerald-green .mat-icon {
  color: setcolor(palette, emeraldGreen);
}
.mat-menu-color-picker span.sky-blue .mat-icon {
  color: setcolor(palette, skyBlue);
}
.mat-menu-color-picker span.cyan-blue .mat-icon {
  color: setcolor(palette, cyanBlue);
}
button.red-salmon .mat-icon,
span.red-salmon .mat-icon {
  color: setcolor(palette, salmonRed);
}
button.light-orange .mat-icon,
span.light-orange .mat-icon {
  color: setcolor(palette, lightOrange);
}
button.gum-purple .mat-icon,
span.gum-purple .mat-icon {
  color: setcolor(palette, gumPurple);
}
button.emerald-green .mat-icon,
span.emerald-green .mat-icon {
  color: setcolor(palette, emeraldGreen);
}
button.sky-blue .mat-icon,
span.sky-blue .mat-icon {
  color: setcolor(palette, skyBlue);
}
button.cyan-blue .mat-icon,
span.cyan-blue .mat-icon {
  color: setcolor(palette, cyanBlue);
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: rgb(187, 144, 111);
  border-radius: 20px;
}
::-webkit-scrollbar-track {
  background-color: rgb(36, 36, 36);
}
.mdc-icon-button[color=accent] {
  color: var(--mat-sys-primary) !important;
}
.mdc-icon-button[color=warn] {
  color: var(--mat-sys-error) !important;
}
.login-input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px rgb(245, 239, 234) inset !important;
  box-shadow: 0 0 0 1000px rgb(245, 239, 234) inset !important;
  -webkit-text-fill-color: #000 !important;
  border-radius: inherit;
}

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