@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap";

/* src/styles.scss */
.shared-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 4px 4px 0 0;
}
.shared-dialog-header__info {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.shared-dialog-header__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.1);
}
.shared-dialog-header__icon mat-icon {
  color: #7c3aed;
  font-size: 22px;
  width: 22px;
  height: 22px;
}
.shared-dialog-header__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #7c3aed;
  line-height: 1.3;
}
.shared-dialog-header__close {
  color: #94a3b8;
  transition: color 0.2s;
}
.shared-dialog-header__close:hover {
  color: #475569;
}
.store-form-dialog-panel .mdc-dialog__surface {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  height: auto !important;
  max-height: 90vh !important;
}
.shared-dialog-form {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.shared-dialog-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px 0;
}
.shared-dialog-content {
  padding: 8px 24px 16px !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  max-height: calc(90vh - 140px);
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.shared-dialog-content::-webkit-scrollbar {
  width: 4px;
}
.shared-dialog-content::-webkit-scrollbar-track {
  background: transparent;
}
.shared-dialog-content::-webkit-scrollbar-thumb {
  background-color: #c4b5fd;
  border-radius: 4px;
}
.shared-dialog-section {
  margin-bottom: 16px;
}
.shared-dialog-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 8px;
}
.shared-dialog-label__icon {
  font-size: 16px;
  width: 16px;
  height: 16px;
  color: #7c3aed;
}
.shared-dialog-toggle {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.shared-dialog-toggle .mat-button-toggle {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
}
.shared-dialog-toggle .mat-button-toggle.mat-button-toggle-checked {
  background-color: #7c3aed;
  color: #f8fafc;
}
.shared-dialog-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.shared-dialog-col {
  min-width: 0;
}
.shared-dialog-error {
  display: block;
  font-size: 12px;
  color: var(--mdc-theme-error, #f44336);
  margin-top: -10px;
  padding: 0 16px;
}
.shared-dialog-actions {
  padding: 12px 20px 20px !important;
  display: flex !important;
  gap: 12px;
  border-top: 1px solid #e2e8f0;
  flex-shrink: 0;
  margin-top: auto;
}
.shared-dialog-btn {
  flex: 1;
  border-radius: 8px !important;
  height: 44px;
  font-weight: 600;
  font-size: 14px;
  margin: 0 !important;
}
.shared-dialog-btn--cancel {
  color: #555;
  border-color: #e2e8f0 !important;
}
.shared-dialog-btn--submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #7c3aed !important;
  color: #f8fafc !important;
}
.shared-dialog-btn--submit:hover:not(:disabled) {
  background-color: #6d28d9 !important;
}
.shared-dialog-btn--submit:disabled {
  opacity: 0.6;
}
@media (max-width: 768px) {
  .store-form-dialog-panel .mdc-dialog__surface {
    height: auto !important;
    max-height: 95vh !important;
    width: 100% !important;
    margin: 0 8px !important;
    border-radius: 12px !important;
  }
  .shared-dialog-header {
    padding: 14px 16px 12px;
  }
  .shared-dialog-header__icon {
    width: 34px;
    height: 34px;
  }
  .shared-dialog-header__icon mat-icon {
    font-size: 19px;
    width: 19px;
    height: 19px;
  }
  .shared-dialog-header__title {
    font-size: 16px;
  }
  .shared-dialog-content {
    padding: 8px 16px 12px !important;
    max-height: calc(95vh - 130px);
  }
  .shared-dialog-row {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .shared-dialog-actions {
    padding: 10px 16px 16px !important;
    gap: 10px;
  }
  .shared-dialog-btn {
    height: 40px;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .store-form-dialog-panel .mdc-dialog__surface {
    height: auto !important;
    max-height: 95vh !important;
    width: 100vw !important;
    margin: 0 !important;
    border-radius: 12px 12px 0 0 !important;
  }
  .shared-dialog-header {
    padding: 12px 14px 10px;
  }
  .shared-dialog-header__info {
    gap: 8px;
  }
  .shared-dialog-header__icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
  }
  .shared-dialog-header__icon mat-icon {
    font-size: 17px;
    width: 17px;
    height: 17px;
  }
  .shared-dialog-header__title {
    font-size: 15px;
  }
  .shared-dialog-content {
    padding: 6px 12px 10px !important;
    max-height: calc(95vh - 120px);
  }
  .shared-dialog-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .shared-dialog-section {
    margin-bottom: 12px;
  }
  .shared-dialog-label {
    font-size: 12px;
    margin-bottom: 6px;
  }
  .shared-dialog-toggle .mat-button-toggle {
    font-size: 13px;
  }
  .shared-dialog-actions {
    padding: 8px 12px 14px !important;
    gap: 8px;
  }
  .shared-dialog-btn {
    height: 38px;
    font-size: 13px;
    border-radius: 8px !important;
  }
  .shared-dialog-error {
    font-size: 11px;
    padding: 0 12px;
  }
}
html.dark-theme .shared-dialog-header {
  background: #1e1b4b;
  border-bottom-color: #312e81;
}
html.dark-theme .shared-dialog-header__icon {
  background: rgba(124, 58, 237, 0.2);
}
html.dark-theme .shared-dialog-header__close {
  color: #a5b4fc;
}
html.dark-theme .shared-dialog-header__close:hover {
  color: #c7d2fe;
}
html.dark-theme .shared-dialog-actions {
  border-top-color: #312e81;
}
html.dark-theme .shared-dialog-btn--cancel {
  color: #94a3b8;
  border-color: #312e81 !important;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif;
}
html[dir=rtl] *:not(mat-icon, .global-form-container .back-button, .mat-mdc-icon-button) {
  font-family: "Cairo", sans-serif;
}
.bold-text {
  font-family: "Cairo", sans-serif !important;
  font-weight: 900 !important;
}
html[dir=rtl] table .tabler-icon {
  width: 20px;
  height: 40px;
}
mat-card-subtitle {
  text-align: right !important;
}
html[dir=rtl] textarea,
select {
  text-align: right;
}
html[dir=ltr] textarea,
select {
  text-align: left;
}
html[dir=ltr] mat-card-subtitle {
  text-align: left !important;
}
html[dir=rtl] .profile-sub-menu-text {
  text-align: right;
}
span.rtl {
  font-family: "Tajawal", sans-serif;
}
.curser-pointer {
  cursor: pointer;
}
.temp-logo {
  color: #ac32ac;
  font-weight: bolder;
}
.header-profile-container {
  cursor: pointer;
}
.info-profile[dir=rtl] {
  text-align: right !important;
}
.info-profile[dir=ltr] {
  text-align: left !important;
}
html[dir=rtl] {
  direction: rtl;
  text-align: start;
}
html[dir=rtl] .mat-mdc-checkbox {
  text-align: end;
}
html[dir=rtl] .info-profile {
  text-align: right !important;
}
html[dir=rtl] p,
html[dir=rtl] span,
html[dir=rtl] div,
html[dir=rtl] h1,
html[dir=rtl] h2,
html[dir=rtl] h3,
html[dir=rtl] h4,
html[dir=rtl] h5,
html[dir=rtl] h6,
html[dir=rtl] label,
html[dir=rtl] li,
html[dir=rtl] a,
html[dir=rtl] button,
html[dir=rtl] .mat-mdc-button,
html[dir=rtl] .mat-mdc-raised-button,
html[dir=rtl] .mat-mdc-outlined-button,
html[dir=rtl] .mat-mdc-cell,
html[dir=rtl] .mat-mdc-header-cell,
html[dir=rtl] .mat-mdc-form-field-label,
html[dir=rtl] .mat-mdc-input-element::placeholder {
  unicode-bidi: plaintext;
}
html[dir=rtl] table mat-cell,
html[dir=rtl] table mat-header-cell,
html[dir=rtl] td,
html[dir=rtl] th {
  unicode-bidi: plaintext;
}
html[dir=rtl] .d-flex,
html[dir=rtl] .justify-content-between,
html[dir=rtl] .justify-content-end,
html[dir=rtl] .action-link,
html[dir=rtl] .table-container,
html[dir=rtl] mat-paginator {
  unicode-bidi: normal !important;
}
.is-hidden {
  display: none;
}
html[dir=rtl] .back-button .mat-ligature-font {
  transform: rotate(180deg);
}
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
.toast-info {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+);
}
.toast-error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+);
}
.toast-success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==);
}
.toast-warning {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==);
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
.custom-toast {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-radius: 8px !important;
  padding: 16px 20px !important;
  font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-left: 4px solid;
  min-height: 65px !important;
}
.custom-toast:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
.custom-toast .toast-close-button {
  position: absolute;
  right: 8px;
  top: 8px;
  font-size: 20px;
  opacity: 0.6;
  color: inherit;
}
.custom-toast .toast-close-button:hover {
  opacity: 1;
}
.custom-toast .toast-progress {
  height: 4px !important;
  opacity: 0.7;
}
.toast-success {
  background-color: #10b981 !important;
  border-left-color: #059669 !important;
}
.toast-success .toast-progress {
  background-color: #059669 !important;
}
.toast-error {
  background-color: #ef4444 !important;
  border-left-color: #dc2626 !important;
}
.toast-error .toast-progress {
  background-color: #dc2626 !important;
}
.toast-warning {
  background-color: #f59e0b !important;
  border-left-color: #d97706 !important;
}
.toast-warning .toast-progress {
  background-color: #d97706 !important;
}
.toast-info {
  background-color: #3b82f6 !important;
  border-left-color: #2563eb !important;
}
.toast-info .toast-progress {
  background-color: #2563eb !important;
}
#toast-container {
  pointer-events: none;
}
#toast-container > div {
  pointer-events: auto;
  margin-bottom: 10px;
}
#toast-container.toast-top-right {
  top: 12px;
  right: 20px;
  left: auto;
}
#toast-container.toast-top-left {
  top: 12px;
  left: 20px;
  right: auto;
}
@media (max-width: 768px) {
  html[dir=rtl] #toast-container.toast-top-right {
    top: 12px;
    right: 10px;
    left: auto;
  }
  html[dir=ltr] #toast-container.toast-top-left {
    top: 12px;
    left: 10px;
    right: auto;
  }
  .custom-toast {
    width: auto !important;
    max-width: 100% !important;
  }
}
html[dir=rtl] .custom-toast {
  border-left: none !important;
  border-right: 4px solid !important;
}
html[dir=rtl] .custom-toast .toast-close-button {
  right: auto;
  left: 8px;
}
html[dir=rtl] #toast-container.toast-top-right {
  top: 12px;
  right: 20px;
  left: auto;
}
html[dir=ltr] #toast-container.toast-top-left {
  top: 12px;
  left: 20px;
  right: auto;
}
.toast-error,
.toast-warning,
.toast-info,
.toast-success,
.ngx-toastr {
  padding: 16px 16px 16px 55px !important;
  background-position: 16px center !important;
  background-size: 28px !important;
  min-height: 60px !important;
  border-radius: 12px !important;
  display: flex;
  align-items: center;
}
.toast-message {
  font-size: 15px !important;
  margin: 0 !important;
  padding-inline: 5px;
}
.toast-close-button {
  position: absolute !important;
  top: 4px !important;
  right: 8px !important;
  opacity: 0.6 !important;
  font-size: 24px !important;
  line-height: 1 !important;
  background: none !important;
  border: none !important;
  color: white !important;
}
html[dir=rtl] .toast-error,
html[dir=rtl] .toast-warning,
html[dir=rtl] .toast-info,
html[dir=rtl] .toast-success,
html[dir=rtl] .ngx-toastr {
  padding: 16px 55px 16px 16px !important;
  background-position: right 16px center !important;
}
html[dir=rtl] .toast-close-button {
  right: auto !important;
  left: 8px !important;
}
html[dir=rtl] .toast-message {
  direction: rtl;
  text-align: right;
}
.toast-title {
  font-weight: bold !important;
  font-size: 16px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
@keyframes slideInRight {
  from {
    transform: translateX(110%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(110%);
    opacity: 0;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-110%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-110%);
    opacity: 0;
  }
}
.toast-top-right .ngx-toastr {
  animation: slideInRight 0.3s ease-out;
}
.toast-top-right .ngx-toastr.ng-leave {
  animation: slideOutRight 0.3s ease-in;
}
.toast-top-left .ngx-toastr {
  animation: slideInLeft 0.3s ease-out;
}
.toast-top-left .ngx-toastr.ng-leave {
  animation: slideOutLeft 0.3s ease-in;
}
html[dir=rtl] .mdc-floating-label--float-above {
  padding-right: 3rem !important;
}
.mat-mdc-form-field-required-marker {
  display: none;
}
.page-header {
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: #fff;
}
.page-header h2 {
  font-weight: 700 !important;
}
.mat-mdc-paginator-container {
  padding-inline: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.global-form-container {
  padding: 24px;
  max-width: 700px;
  margin: 0 auto;
}
.global-form-container .page-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.global-form-container .page-header .back-button {
  flex-shrink: 0;
}
.global-form-container .page-header .page-title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
}
.global-form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.global-form-container form .row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .global-form-container form .row {
    align-items: stretch;
  }
}
.global-form-container form .row > div:first-child {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 6px;
}
.global-form-container form .row > div:last-child {
  flex: 0 0 100%;
  max-width: 100%;
}
.global-form-container form mat-label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding-inline: 0.8rem;
}
.global-form-container form mat-form-field {
  width: 100%;
}
.global-form-container form mat-icon[matPrefix] {
  opacity: 0.6;
}
.global-form-container {
}
.global-form-container mat-card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.global-form-container mat-card-content .row {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .global-form-container mat-card-content .row {
    align-items: stretch;
  }
}
.global-form-container mat-card-content .row > div:first-child {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 6px;
}
.global-form-container mat-card-content .row > div:last-child {
  flex: 0 0 100%;
  max-width: 100%;
}
.global-form-container mat-card-content mat-label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  padding-inline: 0.8rem;
}
.global-form-container mat-card-content mat-form-field {
  width: 100%;
}
.global-form-container mat-card-content mat-icon[matPrefix] {
  opacity: 0.6;
}
.row.justify-content-start,
.row.justify-content-end {
  margin-top: 24px;
}
.row.justify-content-start .col-md-12,
.row.justify-content-start .col-sm-12,
.row.justify-content-end .col-md-12,
.row.justify-content-end .col-sm-12 {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.row.justify-content-start button,
.row.justify-content-end button {
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 992px) {
  .global-form-container mat-label {
    margin-bottom: 0.6rem;
  }
}
@media (max-width: 768px) {
  .global-form-container .page-header {
    padding: 1rem;
  }
  .global-form-container .page-header .page-title {
    font-size: 18px;
    font-weight: 600;
  }
  .global-form-container mat-label {
    font-size: 12px;
  }
  .global-form-container {
  }
  .global-form-container .mat-mdc-input-element {
    font-size: 13px;
  }
  .global-form-container .mat-mdc-input-element::placeholder {
    font-size: 12px;
    opacity: 0.8;
  }
  .global-form-container .mat-mdc-select-value {
    font-size: 13px;
  }
  .global-form-container mat-error {
    font-size: 11px;
    line-height: 1.4;
  }
  .global-form-container mat-icon {
    font-size: 18px;
  }
}
.coa-form mat-icon[matPrefix] {
  opacity: 0.6;
}
.mat-mdc-table tbody .mat-mdc-row:nth-child(odd) {
  background-color: #f8f9fa;
}
.mat-mdc-table tbody .mat-mdc-row:nth-child(even) {
  background-color: white;
}
.mat-mdc-table tbody .mat-mdc-row:hover {
  background-color: #e9ecef !important;
}
html.dark-theme .mat-mdc-table tbody .mat-mdc-row:nth-child(odd) {
  background: #0b1220;
}
html.dark-theme .mat-mdc-table tbody .mat-mdc-row:nth-child(even) {
  background: #0d162b;
}
html.dark-theme .mat-mdc-table tbody .mat-mdc-row:hover {
  background: #14213d !important;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}
.clickable-title {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: color 0.2s ease;
}
.glopal-header-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.glopal-header-container .page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.glopal-header-container .page-header h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 500;
}
.glopal-header-container .page-header .back-button {
  flex-shrink: 0;
}
.glopal-header-container .page-header .header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.glopal-header-container .page-header .header-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.glopal-header-container .page-header .header-actions button mat-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .glopal-header-container {
    padding: 0.5rem;
  }
  .glopal-header-container .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .glopal-header-container .page-header h2 {
    font-size: 1.4rem;
  }
  .glopal-header-container .page-header .header-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .glopal-header-container .page-header .header-actions button {
    flex: 1;
    min-width: 120px;
    font-size: 0.85rem;
    padding: 6px 12px;
  }
  .glopal-header-container .page-header .header-actions button mat-icon {
    font-size: 18px;
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 480px) {
  .glopal-header-container {
    padding: 0.25rem;
  }
  .glopal-header-container .page-header {
    margin-bottom: 1rem;
  }
  .glopal-header-container .page-header h2 {
    font-size: 1.2rem;
  }
  .glopal-header-container .page-header .header-actions button {
    width: 100%;
    font-size: 0.8rem;
    padding: 6px 10px;
  }
  .glopal-header-container .page-header .header-actions button mat-icon {
    font-size: 16px;
    width: 16px;
    height: 16px;
  }
}
.nav-children {
  border-inline-start: 2px solid rgba(0, 0, 0, 0.15);
  padding-inline-start: 6px;
  margin-inline-start: 18px;
  margin-top: 6px;
  margin-bottom: 6px;
}
app-nav-item {
  display: block;
  width: 100%;
  overflow: visible !important;
}
.menu-list-item {
  position: relative;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  text-decoration: none;
  pointer-events: auto;
}
.menu-list-item .mat-mdc-list-item-unscoped-content {
  pointer-events: none;
}
a.menu-list-item .mdc-list-item__start,
a.menu-list-item .routeIcon {
  margin: 0 8px !important;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  transition: none !important;
}
a.menu-list-item .hide-menu {
  flex: 1;
  position: relative;
  z-index: 2;
  transition: none !important;
}
a.menu-list-item .arrow-icon {
  margin-inline-start: auto !important;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  transition: none !important;
}
a.menu-list-item .arrow-icon mat-icon {
  transition: transform 0.225s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
a.menu-list-item {
  -webkit-tap-highlight-color: transparent !important;
}
a.menu-list-item.activeMenu {
  position: relative;
  background: transparent !important;
}
a.menu-list-item.activeMenu::before {
  content: "";
  position: absolute;
  inset: -4px -6px;
  border-radius: 14px;
  background: var(--menu-active-bg, #5d87ff);
  z-index: 0;
}
a.menu-list-item.activeMenu .routeIcon,
a.menu-list-item.activeMenu i-tabler {
  color: #fff !important;
}
a.menu-list-item:not(.activeMenu)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  background-color: var(--menu-hover-bg, rgba(93, 136, 255, 0.4));
  border-radius: 20px;
  z-index: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-in-out;
}
a.menu-list-item:not(.activeMenu):hover::before {
  transform: scaleX(1);
}
a.menu-list-item:not(.activeMenu):hover {
  background-color: transparent !important;
}
a.menu-list-item:not(.activeMenu):active {
  background-color: transparent !important;
}
a.menu-list-item.activeMenu .routeIcon,
a.menu-list-item.activeMenu i-tabler {
  color: #fff !important;
}
.nav-children a.menu-list-item.activeMenu::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  inset-inline-start: -8px;
  background: #000;
  border-radius: 2px;
  z-index: 1;
}
html.dark-theme a.menu-list-item.activeMenu {
  background: var(--menu-active-bg, #5d87ff) !important;
}
html.dark-theme a.menu-list-item.activeMenu::after {
  background: var(--menu-active-bg, #5d87ff);
}
html.dark-theme a.menu-list-item:not(.activeMenu):hover {
  background-color: transparent !important;
}
html.dark-theme a.menu-list-item:not(.activeMenu)::before {
  background-color: var(--menu-hover-bg, rgba(93, 136, 255, 0.35));
}
html.dark-theme a.menu-list-item:not(.activeMenu):active {
  background-color: transparent !important;
}
.d-flex.align-items-center.gap-4 {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: none !important;
}
.item-chip {
  white-space: nowrap;
  font-size: 11px;
  line-height: 1;
  transition: none !important;
}
.sidebarNav {
  overflow-y: auto !important;
}
.sidebarNav ng-scrollbar {
  height: 100% !important;
  overflow-y: auto !important;
}
.sidebar-list {
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
}
mat-nav-list.sidebar-list {
  display: flex !important;
  flex-direction: column !important;
  overflow: visible !important;
}
.flex-layout {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: visible !important;
}
.flex-layout > ng-scrollbar {
  flex: 1;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}
app-nav-item,
.nav-children app-nav-item {
  overflow: visible !important;
  height: auto !important;
}
.toggle-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.toggle-blocker {
  position: absolute;
  inset: -6px;
  background: transparent;
  z-index: 10;
  cursor: default;
}
form.view-mode .mat-mdc-form-field {
  --mdc-outlined-text-field-input-text-color: #454545;
  --mdc-outlined-text-field-label-text-color: #454545;
  --mdc-outlined-text-field-focus-label-text-color: #454545;
  --mdc-outlined-text-field-disabled-input-text-color: #454545;
  --mdc-outlined-text-field-disabled-label-text-color: #454545;
  --mdc-outlined-text-field-leading-icon-color: #454545;
  --mdc-outlined-text-field-trailing-icon-color: #454545;
  --mdc-outlined-text-field-disabled-leading-icon-color: #454545;
  --mdc-outlined-text-field-disabled-trailing-icon-color: #454545;
}
form.view-mode .mat-mdc-form-field .mdc-text-field__input {
  color: #454545 !important;
  -webkit-text-fill-color: #454545 !important;
  opacity: 1 !important;
}
form.view-mode .mat-mdc-form-field .mdc-floating-label {
  color: #454545 !important;
  opacity: 1 !important;
}
form.view-mode .mat-mdc-form-field .mat-mdc-form-field-icon-prefix,
form.view-mode .mat-mdc-form-field .mat-mdc-form-field-icon-suffix,
form.view-mode .mat-mdc-form-field mat-icon,
form.view-mode .mat-mdc-form-field tabler-icon {
  color: #454545 !important;
  opacity: 0.7 !important;
}
form.view-mode .mat-mdc-form-field tabler-icon svg {
  stroke: #454545 !important;
  opacity: 0.7 !important;
}
form.view-mode .mat-mdc-form-field.mat-form-field-disabled,
form.view-mode .mat-mdc-form-field .mdc-text-field--disabled {
  opacity: 1 !important;
}
form.view-mode .mat-mdc-select-trigger,
form.view-mode .mat-mdc-select-value,
form.view-mode .mat-mdc-select-value-text,
form.view-mode .mat-mdc-select-min-line,
form.view-mode .mat-mdc-select-placeholder,
form.view-mode .mat-mdc-select-value-text span {
  color: #454545 !important;
  -webkit-text-fill-color: #454545 !important;
  opacity: 1 !important;
}
form.view-mode .mat-mdc-select-arrow,
form.view-mode .mat-mdc-select-arrow svg,
form.view-mode .mat-mdc-select-arrow-wrapper {
  color: #454545 !important;
  fill: #454545 !important;
  opacity: 0.7 !important;
}
form.view-mode .mat-mdc-select.mat-mdc-select-disabled {
  opacity: 1 !important;
}
form.view-mode .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-trigger,
form.view-mode .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-value,
form.view-mode .mat-mdc-select.mat-mdc-select-disabled .mat-mdc-select-arrow {
  opacity: 1 !important;
}
form.view-mode .mat-mdc-select-trigger {
  pointer-events: none !important;
}
@media print {
  body.printing-item-card * {
    visibility: hidden !important;
  }
  body.printing-item-card .card-wrapper,
  body.printing-item-card .card-wrapper * {
    visibility: visible !important;
  }
  body.printing-item-card .card-wrapper {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  body.printing-item-card .no-print {
    display: none !important;
  }
}
html body button.mat-mdc-outlined-button,
html body a.mat-mdc-outlined-button,
html body button.mat-mdc-stroked-button,
html body a.mat-mdc-stroked-button {
  border: 0 !important;
  box-shadow: inset 0 0 0 1px currentColor !important;
  border-radius: 8px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
div.ngx-mat-timepicker-dialog .mat-mdc-dialog-surface {
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 64px rgba(107, 70, 255, 0.22) !important;
}
ngx-mat-timepicker-face .clock-face {
  background-color: #f0f0ff !important;
  box-shadow: inset 0 2px 16px rgba(107, 70, 255, 0.07) !important;
}
ngx-mat-timepicker-face .clock-face__number--outer > span,
ngx-mat-timepicker-face .clock-face__number--inner > span {
  font-family:
    "Cairo",
    Roboto,
    sans-serif !important;
  font-weight: 700 !important;
  color: #2d2d5e !important;
}
ngx-mat-timepicker-face .clock-face [mat-mini-fab].mat-primary {
  --mat-fab-small-container-color: #6b46ff !important;
  --mdc-fab-small-container-color: #6b46ff !important;
  background-color: #6b46ff !important;
  box-shadow: 0 2px 8px rgba(107, 70, 255, 0.45) !important;
}
ngx-mat-timepicker-face .clock-face [mat-mini-fab].mat-primary span {
  color: #fff !important;
}
ngx-mat-timepicker-face .clock-face__clock-hand {
  background-color: #6b46ff !important;
}
ngx-mat-timepicker-face .clock-face__center {
  background-color: #6b46ff !important;
}
div.ngx-mat-timepicker-dialog > mat-dialog-container {
  padding-top: 0 !important;
}
div.ngx-mat-timepicker-dialog [mat-dialog-content] {
  direction: ltr !important;
}
html[dir=rtl] div.ngx-mat-timepicker-dialog div[mat-dialog-actions] {
  direction: rtl !important;
}
html[dir=ltr] div.ngx-mat-timepicker-dialog div[mat-dialog-actions] {
  direction: ltr !important;
}
div.ngx-mat-timepicker-dialog mat-toolbar.timepicker-header {
  background:
    linear-gradient(
      135deg,
      #5b61ff 0%,
      #7c3aed 100%) !important;
  padding: 16px 24px !important;
  min-height: 88px !important;
}
div.ngx-mat-timepicker-dialog .timepicker-dial__time {
  color: #fff !important;
  font-family:
    "Cairo",
    Roboto,
    sans-serif !important;
}
div.ngx-mat-timepicker-dialog .timepicker-dial__control {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family:
    "Cairo",
    Roboto,
    sans-serif !important;
}
div.ngx-mat-timepicker-dialog .timepicker-dial__control--active {
  color: #fff !important;
  border-bottom: 2px solid rgba(255, 255, 255, 0.6) !important;
}
div.ngx-mat-timepicker-dialog .timepicker-period__btn {
  font-size: 14px !important;
  font-weight: 700 !important;
  font-family:
    "Cairo",
    Roboto,
    sans-serif !important;
  color: rgba(255, 255, 255, 0.75) !important;
}
div.ngx-mat-timepicker-dialog .timepicker-period__btn--active {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border-radius: 8px !important;
}
ngx-mat-timepicker-face .clock-face {
  background-color: #ececff !important;
  box-shadow: inset 0 2px 12px rgba(107, 70, 255, 0.08) !important;
}
ngx-mat-timepicker-face .clock-face__number--outer > span,
ngx-mat-timepicker-face .clock-face__number--inner > span {
  font-family:
    "Cairo",
    Roboto,
    sans-serif !important;
  font-weight: 600 !important;
  color: #2d2d5e !important;
}
ngx-mat-timepicker-face .clock-face__clock-hand {
  background-color: #6b46ff !important;
}
ngx-mat-timepicker-face .clock-face__center {
  background-color: #6b46ff !important;
}
div.ngx-mat-timepicker-dialog .timepicker__body {
  padding: 8px 0 !important;
  background: #fff !important;
}
div.ngx-mat-timepicker-dialog div[mat-dialog-actions] {
  padding: 8px 20px 18px !important;
  gap: 8px !important;
  justify-content: flex-end !important;
}
div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:first-child button {
  font-weight: 700 !important;
  font-family:
    "Cairo",
    Roboto,
    sans-serif !important;
  border-radius: 10px !important;
  color: #6b46ff !important;
  letter-spacing: 0.3px !important;
}
div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:last-child button {
  font-weight: 700 !important;
  font-family:
    "Cairo",
    Roboto,
    sans-serif !important;
  border-radius: 10px !important;
  background:
    linear-gradient(
      135deg,
      #5b61ff 0%,
      #7c3aed 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(107, 70, 255, 0.28) !important;
  letter-spacing: 0.3px !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog,
body.dark-theme div.ngx-mat-timepicker-dialog,
.dark-theme div.ngx-mat-timepicker-dialog,
[data-theme=dark] div.ngx-mat-timepicker-dialog {
  --timepicker-surface: #1b2432;
  --timepicker-surface-soft: #202b3a;
  --timepicker-surface-strong: #121a27;
  --timepicker-border: rgba(148, 163, 184, 0.2);
  --timepicker-text: #f7fbff;
  --timepicker-text-muted: #9fb0c9;
  --timepicker-text-soft: #d9e5f7;
  --timepicker-accent: #6b46ff;
  --timepicker-accent-soft: rgba(107, 70, 255, 0.18);
  --timepicker-shadow: 0 28px 80px rgba(2, 8, 23, 0.52);
}
html.dark-theme div.ngx-mat-timepicker-dialog .mat-mdc-dialog-surface,
body.dark-theme div.ngx-mat-timepicker-dialog .mat-mdc-dialog-surface,
.dark-theme div.ngx-mat-timepicker-dialog .mat-mdc-dialog-surface,
[data-theme=dark] div.ngx-mat-timepicker-dialog .mat-mdc-dialog-surface {
  background: var(--timepicker-surface-strong) !important;
  color: var(--timepicker-text) !important;
  border: 1px solid var(--timepicker-border) !important;
  box-shadow: var(--timepicker-shadow) !important;
  color-scheme: dark !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog [mat-dialog-content],
body.dark-theme div.ngx-mat-timepicker-dialog [mat-dialog-content],
.dark-theme div.ngx-mat-timepicker-dialog [mat-dialog-content],
[data-theme=dark] div.ngx-mat-timepicker-dialog [mat-dialog-content] {
  background: var(--timepicker-surface-strong) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog .timepicker__body,
body.dark-theme div.ngx-mat-timepicker-dialog .timepicker__body,
.dark-theme div.ngx-mat-timepicker-dialog .timepicker__body,
[data-theme=dark] div.ngx-mat-timepicker-dialog .timepicker__body {
  background:
    radial-gradient(
      circle at top,
      rgba(107, 70, 255, 0.1),
      transparent 48%),
    linear-gradient(
      180deg,
      var(--timepicker-surface) 0%,
      var(--timepicker-surface-strong) 100%) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face,
body.dark-theme div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face,
.dark-theme div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face,
[data-theme=dark] div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face {
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(107, 70, 255, 0.08),
      transparent 58%),
    linear-gradient(
      180deg,
      #263243 0%,
      #1d2735 100%) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), inset 0 -12px 32px rgba(15, 23, 42, 0.24) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face__number--outer > span,
html.dark-theme div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face__number--inner > span,
body.dark-theme div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face__number--outer > span,
body.dark-theme div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face__number--inner > span,
.dark-theme div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face__number--outer > span,
.dark-theme div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face__number--inner > span,
[data-theme=dark] div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face__number--outer > span,
[data-theme=dark] div.ngx-mat-timepicker-dialog ngx-mat-timepicker-face .clock-face__number--inner > span {
  color: var(--timepicker-text-soft) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog mat-toolbar.timepicker-header,
body.dark-theme div.ngx-mat-timepicker-dialog mat-toolbar.timepicker-header,
.dark-theme div.ngx-mat-timepicker-dialog mat-toolbar.timepicker-header,
[data-theme=dark] div.ngx-mat-timepicker-dialog mat-toolbar.timepicker-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.05) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog .timepicker-dial__time,
body.dark-theme div.ngx-mat-timepicker-dialog .timepicker-dial__time,
.dark-theme div.ngx-mat-timepicker-dialog .timepicker-dial__time,
[data-theme=dark] div.ngx-mat-timepicker-dialog .timepicker-dial__time {
  color: var(--timepicker-text) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog .timepicker-dial__control,
body.dark-theme div.ngx-mat-timepicker-dialog .timepicker-dial__control,
.dark-theme div.ngx-mat-timepicker-dialog .timepicker-dial__control,
[data-theme=dark] div.ngx-mat-timepicker-dialog .timepicker-dial__control {
  color: rgba(255, 255, 255, 0.64) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog .timepicker-dial__control--active,
body.dark-theme div.ngx-mat-timepicker-dialog .timepicker-dial__control--active,
.dark-theme div.ngx-mat-timepicker-dialog .timepicker-dial__control--active,
[data-theme=dark] div.ngx-mat-timepicker-dialog .timepicker-dial__control--active {
  color: var(--timepicker-text) !important;
  border-bottom-color: rgba(255, 255, 255, 0.72) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog .timepicker-period__btn,
body.dark-theme div.ngx-mat-timepicker-dialog .timepicker-period__btn,
.dark-theme div.ngx-mat-timepicker-dialog .timepicker-period__btn,
[data-theme=dark] div.ngx-mat-timepicker-dialog .timepicker-period__btn {
  color: rgba(255, 255, 255, 0.78) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog .timepicker-period__btn--active,
body.dark-theme div.ngx-mat-timepicker-dialog .timepicker-period__btn--active,
.dark-theme div.ngx-mat-timepicker-dialog .timepicker-period__btn--active,
[data-theme=dark] div.ngx-mat-timepicker-dialog .timepicker-period__btn--active {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog div[mat-dialog-actions],
body.dark-theme div.ngx-mat-timepicker-dialog div[mat-dialog-actions],
.dark-theme div.ngx-mat-timepicker-dialog div[mat-dialog-actions],
[data-theme=dark] div.ngx-mat-timepicker-dialog div[mat-dialog-actions] {
  background: var(--timepicker-surface-strong) !important;
  border-top: 1px solid var(--timepicker-border) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:first-child button,
body.dark-theme div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:first-child button,
.dark-theme div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:first-child button,
[data-theme=dark] div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:first-child button {
  color: var(--timepicker-text-muted) !important;
  background: transparent !important;
  box-shadow: inset 0 0 0 1px var(--timepicker-border) !important;
}
html.dark-theme div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:last-child button,
body.dark-theme div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:last-child button,
.dark-theme div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:last-child button,
[data-theme=dark] div.ngx-mat-timepicker-dialog div[mat-dialog-actions] div:last-child button {
  background:
    linear-gradient(
      135deg,
      #5c63ff 0%,
      #7a44ff 100%) !important;
  box-shadow: 0 10px 24px rgba(91, 97, 255, 0.32) !important;
}
.payroll-action-dialog-panel .mat-mdc-dialog-surface {
  border-radius: 28px !important;
  overflow: hidden !important;
}
.payroll-action-dialog-panel .mat-mdc-dialog-content {
  padding: 8px 28px 2px !important;
}
.payroll-action-dialog-panel .mat-mdc-dialog-actions {
  padding: 14px 28px 24px !important;
  gap: 12px !important;
}
html.dark-theme .payroll-action-dialog-panel .mat-mdc-dialog-surface,
body.dark-theme .payroll-action-dialog-panel .mat-mdc-dialog-surface,
.dark-theme .payroll-action-dialog-panel .mat-mdc-dialog-surface,
[data-theme=dark] .payroll-action-dialog-panel .mat-mdc-dialog-surface {
  background:
    radial-gradient(
      circle at top,
      rgba(59, 130, 246, 0.07),
      transparent 38%),
    linear-gradient(
      180deg,
      #263241 0%,
      #222d3b 100%) !important;
  border: 1px solid rgba(148, 163, 184, 0.2) !important;
  box-shadow: 0 28px 80px rgba(2, 8, 23, 0.5) !important;
  color: #f7fbff !important;
}
html.dark-theme .payroll-action-dialog-panel .mat-mdc-dialog-content,
html.dark-theme .payroll-action-dialog-panel .mat-mdc-dialog-actions,
body.dark-theme .payroll-action-dialog-panel .mat-mdc-dialog-content,
body.dark-theme .payroll-action-dialog-panel .mat-mdc-dialog-actions,
.dark-theme .payroll-action-dialog-panel .mat-mdc-dialog-content,
.dark-theme .payroll-action-dialog-panel .mat-mdc-dialog-actions,
[data-theme=dark] .payroll-action-dialog-panel .mat-mdc-dialog-content,
[data-theme=dark] .payroll-action-dialog-panel .mat-mdc-dialog-actions {
  background: transparent !important;
  color: inherit !important;
}
html.dark-theme .payroll-action-dialog-panel .action-dialog-header h2[mat-dialog-title],
body.dark-theme .payroll-action-dialog-panel .action-dialog-header h2[mat-dialog-title],
.dark-theme .payroll-action-dialog-panel .action-dialog-header h2[mat-dialog-title],
[data-theme=dark] .payroll-action-dialog-panel .action-dialog-header h2[mat-dialog-title] {
  color: #f4f8ff !important;
}
html.dark-theme .payroll-action-dialog-panel .action-dialog-subtitle,
body.dark-theme .payroll-action-dialog-panel .action-dialog-subtitle,
.dark-theme .payroll-action-dialog-panel .action-dialog-subtitle,
[data-theme=dark] .payroll-action-dialog-panel .action-dialog-subtitle {
  color: #9fb0c9 !important;
}
html.dark-theme .payroll-action-dialog-panel .action-dialog-header.approve .action-dialog-icon,
body.dark-theme .payroll-action-dialog-panel .action-dialog-header.approve .action-dialog-icon,
.dark-theme .payroll-action-dialog-panel .action-dialog-header.approve .action-dialog-icon,
[data-theme=dark] .payroll-action-dialog-panel .action-dialog-header.approve .action-dialog-icon {
  background: rgba(34, 197, 94, 0.14) !important;
  color: #4ade80 !important;
  box-shadow: inset 0 0 0 1px rgba(74, 222, 128, 0.12) !important;
}
html.dark-theme .payroll-action-dialog-panel .action-dialog-header.reject .action-dialog-icon,
body.dark-theme .payroll-action-dialog-panel .action-dialog-header.reject .action-dialog-icon,
.dark-theme .payroll-action-dialog-panel .action-dialog-header.reject .action-dialog-icon,
[data-theme=dark] .payroll-action-dialog-panel .action-dialog-header.reject .action-dialog-icon {
  background: rgba(239, 68, 68, 0.14) !important;
  color: #ef4444 !important;
  box-shadow: inset 0 0 0 1px rgba(248, 113, 113, 0.12) !important;
}
html.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field,
body.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field,
.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field,
[data-theme=dark] .payroll-action-dialog-panel .mat-mdc-form-field {
  --mdc-outlined-text-field-label-text-color: #8ea6c7;
  --mdc-outlined-text-field-hover-label-text-color: #bfd6ff;
  --mdc-outlined-text-field-focus-label-text-color: #5ea2ff;
  --mdc-outlined-text-field-input-text-color: #edf4ff;
  --mdc-outlined-text-field-caret-color: #5ea2ff;
  --mdc-outlined-text-field-outline-color: rgba(96, 165, 250, 0.38);
  --mdc-outlined-text-field-hover-outline-color: rgba(96, 165, 250, 0.56);
  --mdc-outlined-text-field-focus-outline-color: #2f7fff;
  --mdc-outlined-text-field-leading-icon-color: rgba(226, 232, 240, 0.78);
  --mdc-outlined-text-field-hover-leading-icon-color: rgba(241, 245, 249, 0.88);
  --mdc-outlined-text-field-focus-leading-icon-color: #5ea2ff;
  --mdc-outlined-text-field-container-shape: 22px;
}
html.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field .mat-mdc-text-field-wrapper,
body.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field .mat-mdc-text-field-wrapper,
.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field .mat-mdc-text-field-wrapper,
[data-theme=dark] .payroll-action-dialog-panel .mat-mdc-form-field .mat-mdc-text-field-wrapper {
  background:
    linear-gradient(
      180deg,
      rgba(18, 26, 39, 0.74),
      rgba(27, 36, 50, 0.92)) !important;
  border-radius: 22px !important;
}
html.dark-theme .payroll-action-dialog-panel textarea.mat-mdc-input-element,
body.dark-theme .payroll-action-dialog-panel textarea.mat-mdc-input-element,
.dark-theme .payroll-action-dialog-panel textarea.mat-mdc-input-element,
[data-theme=dark] .payroll-action-dialog-panel textarea.mat-mdc-input-element {
  color: #edf4ff !important;
  -webkit-text-fill-color: #edf4ff !important;
  caret-color: #5ea2ff !important;
}
html.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field .mdc-floating-label,
body.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field .mdc-floating-label,
.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field .mdc-floating-label,
[data-theme=dark] .payroll-action-dialog-panel .mat-mdc-form-field .mdc-floating-label {
  color: #8ea6c7 !important;
}
html.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field.mat-focused .mdc-floating-label,
body.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field.mat-focused .mdc-floating-label,
.dark-theme .payroll-action-dialog-panel .mat-mdc-form-field.mat-focused .mdc-floating-label,
[data-theme=dark] .payroll-action-dialog-panel .mat-mdc-form-field.mat-focused .mdc-floating-label {
  color: #5ea2ff !important;
}
html.dark-theme .payroll-action-dialog-panel button.mat-mdc-stroked-button,
body.dark-theme .payroll-action-dialog-panel button.mat-mdc-stroked-button,
.dark-theme .payroll-action-dialog-panel button.mat-mdc-stroked-button,
[data-theme=dark] .payroll-action-dialog-panel button.mat-mdc-stroked-button {
  color: #8fb2ff !important;
  background: rgba(15, 23, 42, 0.16) !important;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.48) !important;
}

/* src/assets/scss/style.scss */
html.blue_theme.dark-theme {
  --mat-sys-primary: rgb(31, 115, 255);
  --mat-sys-primary-rgb:
    31,
    115,
    255;
  --mat-sys-primary-fixed-dim: rgba(var(--mat-sys-primary-rgb), 0.14);
  --mat-sys-background: #11161d;
  --mat-sys-on-background: #eef4ff;
  --mat-sys-surface: #171d25;
  --mat-sys-surface-container-low: #1c2430;
  --mat-sys-surface-container: #1c2430;
  --mat-sys-surface-container-high: #202a36;
  --mat-sys-surface-bright: #243142;
  --mat-sys-outline-variant: #2b3645;
  --mat-sys-on-surface: #eef4ff;
  --mat-sys-on-surface-variant: #9fb0c7;
  --mat-card-elevated-container-color: var(--mat-sys-surface-container);
  --erp-surface: var(--mat-sys-background);
  --erp-surface-container-low: var(--mat-sys-surface-container-low);
  --erp-surface-container: var(--mat-sys-surface-container);
  --erp-surface-container-high: var(--mat-sys-surface-container-high);
  --erp-on-surface: var(--mat-sys-on-surface);
  --erp-on-surface-variant: var(--mat-sys-on-surface-variant);
  --erp-outline: var(--mat-sys-outline-variant);
  --erp-accent-blue: var(--mat-sys-primary);
  --erp-bg-hover: rgba(var(--mat-sys-primary-rgb), 0.1);
  --erp-shadow-sm: 0 16px 28px rgba(0, 0, 0, 0.22);
  --erp-shadow-md: 0 26px 48px rgba(0, 0, 0, 0.42);
  --erp-shadow-lg: 0 32px 72px rgba(0, 0, 0, 0.56);
  --erp-sale-accent: #1f73ff;
  --erp-sale-accent-hover: #2a7fff;
  --erp-sale-accent-rgb:
    31,
    115,
    255;
  --erp-sale-accent-strong: #185fe0;
  --erp-sale-accent-soft: rgba(31, 115, 255, 0.14);
  --erp-sale-accent-glow: rgba(31, 115, 255, 0.28);
  --erp-sale-accent-contrast: #eef4ff;
  --erp-sale-surface-strong: #243142;
}
html.blue_theme {
  --erp-sale-accent: #1f73ff;
  --erp-sale-accent-hover: #2a7fff;
  --erp-sale-accent-rgb:
    31,
    115,
    255;
  --erp-sale-accent-strong: #185fe0;
  --erp-sale-accent-soft: rgba(31, 115, 255, 0.14);
  --erp-sale-accent-glow: rgba(31, 115, 255, 0.28);
  --erp-sale-accent-contrast: #eef4ff;
  --erp-sale-surface-strong: #243142;
}
html.blue_theme .cart-container-modern .main-checkout-btn.mat-mdc-unelevated-button,
html.blue_theme .sale-discount-dialog-panel .dialog-confirm-btn.mat-mdc-unelevated-button {
  box-shadow: 0 20px 34px rgba(var(--erp-sale-accent-rgb), 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
html.blue_theme .cart-container-modern .discount-pill,
html.blue_theme .cart-container-modern .discount-chip,
html.blue_theme .cart-container-modern .readonly-value.highlight,
html.blue_theme .sale-discount-dialog-panel .type-toggle .mat-button-toggle-checked {
  border-color: rgba(var(--erp-sale-accent-rgb), 0.32) !important;
  box-shadow: 0 0 0 1px rgba(var(--erp-sale-accent-rgb), 0.12), 0 14px 24px rgba(var(--erp-sale-accent-rgb), 0.12);
}
html.blue_theme .cart-container-modern .view-action-btn.mat-mdc-unelevated-button:hover,
html.blue_theme .cart-container-modern .main-checkout-btn.mat-mdc-unelevated-button:hover,
html.blue_theme .sale-discount-dialog-panel .dialog-confirm-btn.mat-mdc-unelevated-button:hover {
  filter: brightness(1.04);
}
html.orange_theme {
  --mat-sys-primary: rgb(251, 151, 120);
  --mat-sys-primary-fixed-dim: rgb(251, 151, 120, 0.15);
  --erp-purple: rgb(127, 35, 247);
  --erp-purple-fixed-dim: rgba(127, 35, 247, 0.15);
  --mat-sys-secondary: rgb(3, 201, 215);
  --mat-sys-secondary-fixed-dim: rgb(3, 201, 215, 0.15);
  --mat-sys-error-fixed-dim: rgba(252, 75, 108, 0.15);
}
html.aqua_theme {
  --mat-sys-primary: #0074ba;
  --mat-sys-primary-fixed-dim: rgb(0, 116, 186, 0.15);
  --erp-purple: rgb(127, 35, 247);
  --erp-purple-fixed-dim: rgba(127, 35, 247, 0.15);
  --mat-sys-secondary: rgb(57, 199, 173);
  --mat-sys-secondary-fixed-dim: rgb(57, 199, 173, 0.15);
  --mat-sys-tertiary: rgb(57, 199, 173);
}
html.cyan_theme {
  --mat-sys-primary: rgb(1, 192, 200);
  --mat-sys-primary-fixed-dim: rgb(1, 192, 200, 0.15);
  --erp-purple: rgb(127, 35, 247);
  --erp-purple-fixed-dim: rgba(127, 35, 247, 0.15);
  --mat-sys-secondary: rgb(251, 150, 120);
  --mat-sys-secondary-fixed-dim: rgb(251, 150, 120, 0.15);
  --mat-sys-tertiary: rgb(251, 150, 120);
}
html.green_theme {
  --mat-sys-primary: rgb(0, 206, 195);
  --mat-sys-primary-fixed-dim: rgb(0, 206, 195, 0.15);
  --erp-purple: rgb(127, 35, 247);
  --erp-purple-fixed-dim: rgba(127, 35, 247, 0.15);
  --mat-sys-secondary: rgb(6, 106, 115);
  --mat-sys-secondary-fixed-dim: rgb(6, 106, 115, 0.15);
  --mat-sys-tertiary: rgb(6, 106, 115);
}
html.purple_theme {
  --mat-sys-primary: rgb(115, 82, 255);
  --mat-sys-primary-fixed-dim: rgb(115, 82, 255, 0.15);
  --erp-purple: rgb(127, 35, 247);
  --erp-purple-fixed-dim: rgba(127, 35, 247, 0.15);
  --mat-sys-secondary: rgb(64 46 141);
  --mat-sys-secondary-fixed-dim: rgb(64 46 141, 0.15);
  --mat-sys-tertiary: rgb(64 46 141);
}
html {
  --mat-autocomplete-container-elevation-shadow: var(--mat-sys-level2);
}
html {
  --mat-badge-background-color: var(--mat-sys-primary);
}
html {
  --mat-button-protected-hover-container-elevation-shadow: var(--mat-sys-level1);
  --mat-button-filled-horizontal-padding: 15px;
  --mat-button-outlined-horizontal-padding: 15px;
  --mat-button-protected-horizontal-padding: 15px;
  --mat-button-text-horizontal-padding: 15px;
  --mat-button-filled-container-shape: var(--mat-sys-corner-full);
  --mat-button-outlined-container-shape: var(--mat-sys-corner-full);
  --mat-button-protected-container-shape: var(--mat-sys-corner-full);
  --mat-button-text-container-shape: var(--mat-sys-corner-full);
}
html {
  --mat-icon-button-icon-color: var(--mat-sys-on-background);
}
html .mat-mdc-button-base.bg-light-primary:hover,
html .mat-mdc-button-base.bg-light-secondary:hover,
html .mat-mdc-button-base.bg-light-error:hover,
html .mat-mdc-button-base.bg-light-warning:hover,
html .mat-mdc-button-base.bg-light-success:hover {
  color: #ffffff !important;
}
html .mat-mdc-button-base.bg-light-primary:hover {
  background-color: var(--mat-sys-primary) !important;
}
html .mat-mdc-button-base.bg-light-secondary:hover {
  background-color: var(--mat-sys-secondary) !important;
}
html .mat-mdc-button-base.bg-light-error:hover {
  background-color: var(--mat-sys-error) !important;
}
html .mat-mdc-button-base.bg-light-warning:hover {
  background-color: #f8c076 !important;
}
html .mat-mdc-button-base.bg-light-success:hover {
  background-color: #4bd08b !important;
}
html .mat-mdc-outlined-button:not(:disabled) {
  border-color: inherit !important;
}
html .mat-mdc-button-base.text-secondary:hover .mat-mdc-button-persistent-ripple::before {
  background-color: var(--mat-sys-secondary);
}
html .mat-mdc-button-base.text-error:hover .mat-mdc-button-persistent-ripple::before {
  background-color: var(--mat-sys-error);
}
html .mat-mdc-button-base.text-warning:hover .mat-mdc-button-persistent-ripple::before {
  background-color: #f8c076;
}
html .mat-mdc-button-base.text-success:hover .mat-mdc-button-persistent-ripple::before {
  background-color: #4bd08b;
}
html .mat-mdc-outlined-button:not(:disabled).mat-secondary {
  color: var(--mat-sys-secondary);
  border-color: var(--mat-sys-secondary);
}
html .mat-mdc-outlined-button:not(:disabled).mat-secondary:hover .mat-mdc-button-persistent-ripple::before {
  background-color: var(--mat-sys-secondary);
}
html .mat-mdc-outlined-button:not(:disabled).mat-success {
  color: #4bd08b;
  border-color: #4bd08b;
}
html .mat-mdc-outlined-button:not(:disabled).mat-success:hover .mat-mdc-button-persistent-ripple::before {
  background-color: #4bd08b;
}
html .mat-mdc-outlined-button:not(:disabled).mat-error {
  color: var(--mat-sys-error);
  border-color: var(--mat-sys-error);
}
html .mat-mdc-outlined-button:not(:disabled).mat-error:hover .mat-mdc-button-persistent-ripple::before {
  background-color: var(--mat-sys-error);
}
html .mat-mdc-outlined-button:not(:disabled).mat-warning {
  color: #f8c076;
  border-color: #f8c076;
}
html .mat-mdc-outlined-button:not(:disabled).mat-warning:hover .mat-mdc-button-persistent-ripple::before {
  background-color: #f8c076;
}
html {
  --mat-button-toggle-shape: 18px;
}
html {
  --mat-card-elevated-container-color: #ffffff;
  --mat-card-title-text-size: 1.125rem;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-title-text-line-height: 1.6rem;
  --mat-card-title-text-weight: 600;
  --mat-card-subtitle-text-weight: 400;
  --mat-card-elevated-container-shape: var(--mat-sys-corner-medium);
  --mat-card-outlined-container-shape: var(--mat-sys-corner-medium);
  --mat-card-elevated-container-elevation: var(--mat-sys-level2);
}
html .mat-mdc-card {
  margin-bottom: 30px;
}
html .mat-mdc-card .mat-mdc-card-header {
  padding: 30px 30px 0 !important;
}
html .mat-mdc-card .mat-mdc-card-header + .mat-mdc-card-content {
  padding: 0 30px 30px;
}
html .mat-mdc-card > .mat-mdc-card-content {
  padding: 30px;
}
html .mat-mdc-card .mdc-card__actions {
  padding: 30px !important;
}
html .card-hover {
  transition: box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
}
html .card-hover:hover {
  scale: 1.01;
  transition: all 0.1s ease-in 0s;
}
html .cardBorder .mdc-card {
  box-shadow: none !important;
  border: 1px solid var(--mat-sys-outline-variant) !important;
}
html .cardBorder .mdc-card.shadow-none {
  border: 0 !important;
}
html {
  --mat-checkbox-unselected-focus-icon-color: var(--mat-checkbox-unselected-hover-state-layer-color);
}
html .mdc-checkbox__background {
  border-radius: 4px;
  width: 21px;
  height: 21px;
  border: 1px solid var(--mat-sys-outline);
}
html .mdc-checkbox .mdc-checkbox__native-control:focus ~ .mdc-checkbox__ripple {
  background-color: var(--mat-checkbox-unselected-hover-state-layer-color);
}
html {
  --mat-chip-focus-state-layer-color: var(--mat-option-focus-state-layer-color);
}
html {
  --mat-dialog-container-shape: var(--mat-sys-corner-small);
  --mat-dialog-subhead-size: 18px;
  --mat-dialog-subhead-weight: 600;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-actions-padding: 20px 24px;
  --mat-dialog-container-min-width: 300px;
  --mat-dialog-subhead-tracking: unset;
  --mat-dialog-supporting-text-tracking: unset;
}
html {
  --mat-datepicker-calendar-container-background-color: var(--mat-card-elevated-container-color);
  --mat-datepicker-calendar-container-touch-elevation-shadow: var(--mat-sys-level1);
  --mat-datepicker-calendar-container-elevation-shadow: var(--mat-sys-level1);
}
html {
  --mat-fab-small-container-shape: 30px;
  --mat-fab-container-shape: 30px;
  --mat-fab-container-elevation-shadow: none;
  --mat-fab-small-container-elevation-shadow: none;
  --mat-fab-small-hover-container-elevation-shadow: var(--mat-sys-level3);
  --mat-fab-hover-container-elevation-shadow: var(--mat-sys-level3);
  --mat-fab-extended-hover-container-elevation-shadow: var(--mat-sys-level3);
  --mat-fab-extended-container-elevation-shadow: none;
}
html {
  --mat-form-field-container-height: 37px;
  --mat-form-field-outlined-container-shape: var(--mat-sys-corner-medium);
  --mat-form-field-container-vertical-padding: 6px;
}
html .hide-hint .mat-mdc-form-field-subscript-wrapper {
  display: none;
}
html .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-floating-label {
  top: calc(var(--mat-form-field-container-height) / 2.15);
}
html .demo-inline-calendar-card {
  width: 300px;
}
html {
  --mat-radio-unselected-icon-color: var(--mat-sys-outline-variant);
}
html .mat-mdc-radio-button .mdc-radio__outer-circle {
  border-width: 1px;
}
html {
  --mat-list-list-item-hover-state-layer-color: var(--mat-sys-primary);
  --mat-list-list-item-container-shape: var(--mat-sys-corner-small);
  --mat-list-active-indicator-shape: var(--mat-sys-corner-small);
  --mat-list-list-item-two-line-container-height: 70px;
  --mat-list-list-item-three-line-container-height: 100px;
}
html {
  --mat-menu-container-shape: var(--mat-sys-corner-small);
}
html .mat-mdc-menu-panel {
  box-shadow: var(--mat-sys-level3) !important;
}
html .mat-mdc-select-panel {
  padding: 8px !important;
}
html .bg-light-primary-hover:hover {
  background-color: var(--mat-sys-surface-bright);
}
html {
  --mat-paginator-container-background-color: var(--mat-card-elevated-container-color);
}
html {
  --mat-sys-background: light-dark(#faf9fd, #121316);
  --mat-sys-error: light-dark(#ba1a1a, #ffb4ab);
  --mat-sys-error-container: light-dark(#ffdad6, #93000a);
  --mat-sys-inverse-on-surface: light-dark(#f2f0f4, #2f3033);
  --mat-sys-inverse-primary: light-dark(#abc7ff, #005cbb);
  --mat-sys-inverse-surface: light-dark(#2f3033, #e3e2e6);
  --mat-sys-on-background: light-dark(#1a1b1f, #e3e2e6);
  --mat-sys-on-error: light-dark(#ffffff, #690005);
  --mat-sys-on-error-container: light-dark(#93000a, #ffdad6);
  --mat-sys-on-primary: light-dark(#ffffff, #002f65);
  --mat-sys-on-primary-container: light-dark(#00458f, #d7e3ff);
  --mat-sys-on-primary-fixed: light-dark(#001b3f, #001b3f);
  --mat-sys-on-primary-fixed-variant: light-dark(#00458f, #00458f);
  --mat-sys-on-secondary: light-dark(#ffffff, #283041);
  --mat-sys-on-secondary-container: light-dark(#3e4759, #dae2f9);
  --mat-sys-on-secondary-fixed: light-dark(#131c2b, #131c2b);
  --mat-sys-on-secondary-fixed-variant: light-dark(#3e4759, #3e4759);
  --mat-sys-on-surface: light-dark(#1a1b1f, #e3e2e6);
  --mat-sys-on-surface-variant: light-dark(#44474e, #e0e2ec);
  --mat-sys-on-tertiary: light-dark(#ffffff, #002f65);
  --mat-sys-on-tertiary-container: light-dark(#00458f, #d7e3ff);
  --mat-sys-on-tertiary-fixed: light-dark(#001b3f, #001b3f);
  --mat-sys-on-tertiary-fixed-variant: light-dark(#00458f, #00458f);
  --mat-sys-outline: light-dark(#74777f, #8e9099);
  --mat-sys-outline-variant: light-dark(#c4c6d0, #44474e);
  --mat-sys-primary: light-dark(#005cbb, #abc7ff);
  --mat-sys-primary-container: light-dark(#d7e3ff, #00458f);
  --mat-sys-primary-fixed: light-dark(#d7e3ff, #d7e3ff);
  --mat-sys-primary-fixed-dim: light-dark(#abc7ff, #abc7ff);
  --mat-sys-scrim: light-dark(#000000, #000000);
  --mat-sys-secondary: light-dark(#565e71, #bec6dc);
  --mat-sys-secondary-container: light-dark(#dae2f9, #3e4759);
  --mat-sys-secondary-fixed: light-dark(#dae2f9, #dae2f9);
  --mat-sys-secondary-fixed-dim: light-dark(#bec6dc, #bec6dc);
  --mat-sys-shadow: light-dark(#000000, #000000);
  --mat-sys-surface: light-dark(#faf9fd, #121316);
  --mat-sys-surface-bright: light-dark(#faf9fd, #38393c);
  --mat-sys-surface-container: light-dark(#efedf0, #1f2022);
  --mat-sys-surface-container-high: light-dark(#e9e7eb, #292a2c);
  --mat-sys-surface-container-highest: light-dark(#e3e2e6, #343537);
  --mat-sys-surface-container-low: light-dark(#f4f3f6, #1a1b1f);
  --mat-sys-surface-container-lowest: light-dark(#ffffff, #0d0e11);
  --mat-sys-surface-dim: light-dark(#dbd9dd, #121316);
  --mat-sys-surface-tint: light-dark(#005cbb, #abc7ff);
  --mat-sys-surface-variant: light-dark(#e0e2ec, #44474e);
  --mat-sys-tertiary: light-dark(#005cbb, #abc7ff);
  --mat-sys-tertiary-container: light-dark(#d7e3ff, #00458f);
  --mat-sys-tertiary-fixed: light-dark(#d7e3ff, #d7e3ff);
  --mat-sys-tertiary-fixed-dim: light-dark(#abc7ff, #abc7ff);
  --mat-sys-neutral-variant20: #2d3038;
  --mat-sys-neutral10: #1a1b1f;
  --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);
  --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);
  --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);
  --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);
  --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);
  --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);
  --mat-sys-body-large: 400 1rem / 1.5rem Cairo, sans-serif;
  --mat-sys-body-large-font: Cairo, sans-serif;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Cairo, sans-serif;
  --mat-sys-body-medium-font: Cairo, sans-serif;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Cairo, sans-serif;
  --mat-sys-body-small-font: Cairo, sans-serif;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Cairo, sans-serif;
  --mat-sys-display-large-font: Cairo, sans-serif;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Cairo, sans-serif;
  --mat-sys-display-medium-font: Cairo, sans-serif;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Cairo, sans-serif;
  --mat-sys-display-small-font: Cairo, sans-serif;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Cairo, sans-serif;
  --mat-sys-headline-large-font: Cairo, sans-serif;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Cairo, sans-serif;
  --mat-sys-headline-medium-font: Cairo, sans-serif;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Cairo, sans-serif;
  --mat-sys-headline-small-font: Cairo, sans-serif;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Cairo, sans-serif;
  --mat-sys-label-large-font: Cairo, sans-serif;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Cairo, sans-serif;
  --mat-sys-label-medium-font: Cairo, sans-serif;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Cairo, sans-serif;
  --mat-sys-label-small-font: Cairo, sans-serif;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Cairo, sans-serif;
  --mat-sys-title-large-font: Cairo, sans-serif;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Cairo, sans-serif;
  --mat-sys-title-medium-font: Cairo, sans-serif;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Cairo, sans-serif;
  --mat-sys-title-small-font: Cairo, sans-serif;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --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;
  --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;
  --mat-sys-body-medium-size: 14px;
  --mat-sys-body-large-size: 14px;
  --mat-sys-outline-variant: #e5eaef;
  --mat-sys-level1: rgba(145, 158, 171, 0.3019607843) 0 0 2px, rgba(145, 158, 171, 0.1215686275) 0 12px 24px -4px;
  --mat-sys-level2: 0 2px 6px rgba(37, 83, 185, 0.1);
  --mat-sys-level3: 0 2px 6px rgba(37, 83, 185, 0.1);
}
html {
  --mat-table-background-color: var(--mat-card-elevated-container-color);
}
html {
  --mat-tree-container-background-color: var(--mat-card-elevated-container-color);
}
html .mdc-list-item__primary-text,
html .mat-drawer-container,
html .mat-drawer,
html .text-body {
  color: var(--mat-sys-on-background);
}
html {
  --mat-stepper-container-color: var(--mat-card-elevated-container-color);
}
html {
  --mat-expansion-container-background-color: var(--mat-card-elevated-container-color);
}
html {
  --mat-sidenav-container-shape: 0;
}
html .mat-secondary .mdc-linear-progress__bar-inner {
  border-color: var(--mat-sys-secondary);
}
html .mat-warning .mdc-linear-progress__bar-inner {
  border-color: #f8c076;
}
html .mat-error .mdc-linear-progress__bar-inner {
  border-color: var(--mat-sys-error);
}
html .mdc-linear-progress__buffer,
html .mdc-linear-progress__bar-inner {
  border-radius: var(--mat-sys-corner-small);
}
html {
  --mat-sys-error: rgb(251, 151, 125);
  --mat-sys-error-fixed-dim: rgba(251, 151, 125, 0.15);
  --mat-select-container-elevation-shadow: var(--mat-sys-level3);
  --mat-list-list-item-label-text-tracking: 0;
  --mat-slide-toggle-track-height: 28px;
  --mat-sidenav-container-divider-color: var(--mat-sys-outline-variant);
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-form-field-container-text-tracking: unset;
  --mat-slide-toggle-with-icon-handle-size: 21px;
  --mat-badge-text-color: white;
  --mat-slide-toggle-selected-with-icon-handle-horizontal-margin: 0 26px;
  --erp-surface: var(--mat-sys-surface);
  --erp-surface-container: var(--mat-sys-surface-container);
  --erp-surface-container-low: var( --mat-sys-surface-container-low, var(--mat-sys-surface-container) );
  --erp-outline-variant: var(--mat-sys-outline-variant);
  --erp-on-surface: var(--mat-sys-on-surface, var(--mat-sys-on-background));
  --erp-on-surface-variant: var( --mat-sys-on-surface-variant, var(--mat-sys-on-background) );
}
html.light-theme {
  color-scheme: light;
  --mat-sys-corner-small: 7px;
  --mat-sys-corner-medium: 16px;
  --mat-sys-background: #f0f5f9;
  --mat-sys-surface-bright: #f2f6fa;
  --mat-sys-surface: #fff;
  --mat-sys-surface-container: #fff;
  --mat-sys-surface-container-low: #fff;
  --mat-sys-on-background: #111c2d;
  --mat-sys-outline: #e5eaef;
  --mat-sys-outline-variant: #e5eaef;
  --mat-form-field-outlined-hover-outline-color: #dfe5ef;
  --mat-checkbox-unselected-hover-state-layer-color: #dfe5ef;
  --mat-menu-item-hover-state-layer-color: #f6f9fc;
  --mat-button-toggle-state-layer-color: #f6f9fc;
  --mat-option-focus-state-layer-color: #f6f9fc;
  --mat-option-hover-state-layer-color: #f6f9fc;
  --mat-slide-toggle-unselected-track-color: #f6f9fc;
  --mat-stepper-header-focus-state-layer-color: #f6f9fc;
  --mat-stepper-header-hover-state-layer-color: #f6f9fc;
  --mat-dialog-supporting-text-color: var(--mat-sys-on-background);
  --mat-expansion-header-hover-state-layer-color: #f6f9fc;
}
html.dark-theme {
  color-scheme: dark;
  --mat-sys-corner-medium: 16px;
  --mat-sys-background: #15263a;
  --mat-sys-on-background: rgba(255, 255, 255, 0.9);
  --mat-sys-on-primary: #fff;
  --mat-sys-surface-bright: #ffffff05;
  --mat-sys-surface: #15263a;
  --mat-sys-surface-container: #15263a;
  --mat-sys-surface-container-low: #15263a;
  --mat-sys-outline-variant: #2e3f50;
  --mat-sys-outline: #2e3f50;
  --mat-form-field-outlined-hover-outline-color: #465670;
  --mat-checkbox-unselected-hover-state-layer-color: #132335;
  --mat-menu-item-hover-state-layer-color: #132335;
  --mat-button-toggle-state-layer-color: #132335;
  --mat-option-focus-state-layer-color: #132335;
  --mat-option-hover-state-layer-color: #132335;
  --mat-slide-toggle-unselected-track-color: #132335;
  --mat-stepper-header-focus-state-layer-color: #132335;
  --mat-stepper-header-hover-state-layer-color: #132335;
  --mat-expansion-header-hover-state-layer-color: #132335;
  --mat-card-elevated-container-color: #111c2d;
  --mat-card-elevated-container-elevation: rgba(0, 0, 0, 0.2) 0px 0px 2px 0px;
  --mat-card-subtitle-text-color: rgba(255, 255, 255, 0.67);
  --mat-sys-level1: 0px 12px 24px -4px rgba(143, 176, 210, 0.02);
  --mat-sys-level2: 0px 12px 24px -4px rgba(143, 176, 210, 0.02);
  --mat-sys-level3: 0px 12px 24px -4px rgba(143, 176, 210, 0.02);
}
html .bg-primary {
  background-color: var(--mat-sys-primary) !important;
}
html .text-primary {
  color: var(--mat-sys-primary) !important;
}
html .bg-secondary {
  background-color: var(--mat-sys-secondary) !important;
}
html .text-secondary {
  color: var(--mat-sys-secondary) !important;
}
html .bg-success {
  background-color: #4bd08b !important;
}
html .text-success {
  color: #4bd08b !important;
}
html .bg-warning {
  background-color: #f8c076 !important;
}
html .text-warning {
  color: #f8c076 !important;
}
html .bg-error {
  background-color: var(--mat-sys-error) !important;
}
html .text-error {
  color: var(--mat-sys-error) !important;
}
html .bg-erp-purple {
  background-color: var(--erp-purple, #7f23f7) !important;
}
html .text-erp-purple {
  color: var(--erp-purple, #7f23f7) !important;
}
html .bg-white {
  background-color: #ffffff !important;
}
html .text-white {
  color: #ffffff !important;
}
html .bg-light {
  background-color: var(--mat-sys-surface-bright) !important;
}
html .text-light {
  color: var(--mat-sys-surface-bright) !important;
}
html .bg-light-error {
  background-color: var(--mat-sys-error-fixed-dim) !important;
}
html .text-light-error {
  color: var(--mat-sys-error-fixed-dim) !important;
}
html .bg-light-secondary {
  background-color: var(--mat-sys-secondary-fixed-dim) !important;
}
html .text-light-secondary {
  color: var(--mat-sys-secondary-fixed-dim) !important;
}
html .bg-light-success {
  background-color: rgba(75, 208, 139, 0.15) !important;
}
html .text-light-success {
  color: rgba(75, 208, 139, 0.15) !important;
}
html .bg-light-warning {
  background-color: rgba(248, 192, 118, 0.15) !important;
}
html .text-light-warning {
  color: rgba(248, 192, 118, 0.15) !important;
}
html .bg-light-primary {
  background-color: var(--mat-sys-primary-fixed-dim) !important;
}
html .text-light-primary {
  color: var(--mat-sys-primary-fixed-dim) !important;
}
html .bg-light-erp-purple {
  background-color: var(--erp-purple-fixed-dim, rgba(127, 35, 247, 0.15)) !important;
}
html .text-light-erp-purple {
  color: var(--erp-purple-fixed-dim, rgba(127, 35, 247, 0.15)) !important;
}
.fill-warning svg {
  fill: #f8c076;
  color: #f8c076;
}
.fill-light svg {
  fill: var(--mat-sys-surface-bright);
  color: var(--mat-sys-surface-bright);
}
html .border-primary {
  border: 1px solid var(--mat-sys-primary) !important;
}
html .border-secondary {
  border: 1px solid var(--mat-sys-secondary) !important;
}
html .border-success {
  border: 1px solid #4bd08b !important;
}
html .border-warning {
  border: 1px solid #f8c076 !important;
}
html .border-error {
  border: 1px solid var(--mat-sys-error) !important;
}
.icon-1 {
  height: 1px !important;
  width: 1px !important;
  line-height: 9px !important;
}
.icon-2 {
  height: 2px !important;
  width: 2px !important;
  line-height: 10px !important;
}
.icon-3 {
  height: 3px !important;
  width: 3px !important;
  line-height: 11px !important;
}
.icon-4 {
  height: 4px !important;
  width: 4px !important;
  line-height: 12px !important;
}
.icon-5 {
  height: 5px !important;
  width: 5px !important;
  line-height: 13px !important;
}
.icon-6 {
  height: 6px !important;
  width: 6px !important;
  line-height: 14px !important;
}
.icon-7 {
  height: 7px !important;
  width: 7px !important;
  line-height: 15px !important;
}
.icon-8 {
  height: 8px !important;
  width: 8px !important;
  line-height: 16px !important;
}
.icon-9 {
  height: 9px !important;
  width: 9px !important;
  line-height: 17px !important;
}
.icon-10 {
  height: 10px !important;
  width: 10px !important;
  line-height: 18px !important;
}
.icon-11 {
  height: 11px !important;
  width: 11px !important;
  line-height: 19px !important;
}
.icon-12 {
  height: 12px !important;
  width: 12px !important;
  line-height: 20px !important;
}
.icon-13 {
  height: 13px !important;
  width: 13px !important;
  line-height: 21px !important;
}
.icon-14 {
  height: 14px !important;
  width: 14px !important;
  line-height: 22px !important;
}
.icon-15 {
  height: 15px !important;
  width: 15px !important;
  line-height: 23px !important;
}
.icon-16 {
  height: 16px !important;
  width: 16px !important;
  line-height: 24px !important;
}
.icon-17 {
  height: 17px !important;
  width: 17px !important;
  line-height: 25px !important;
}
.icon-18 {
  height: 18px !important;
  width: 18px !important;
  line-height: 26px !important;
}
.icon-19 {
  height: 19px !important;
  width: 19px !important;
  line-height: 27px !important;
}
.icon-20 {
  height: 20px !important;
  width: 20px !important;
  line-height: 28px !important;
}
.icon-21 {
  height: 21px !important;
  width: 21px !important;
  line-height: 29px !important;
}
.icon-22 {
  height: 22px !important;
  width: 22px !important;
  line-height: 30px !important;
}
.icon-23 {
  height: 23px !important;
  width: 23px !important;
  line-height: 31px !important;
}
.icon-24 {
  height: 24px !important;
  width: 24px !important;
  line-height: 32px !important;
}
.icon-25 {
  height: 25px !important;
  width: 25px !important;
  line-height: 33px !important;
}
.icon-26 {
  height: 26px !important;
  width: 26px !important;
  line-height: 34px !important;
}
.icon-27 {
  height: 27px !important;
  width: 27px !important;
  line-height: 35px !important;
}
.icon-28 {
  height: 28px !important;
  width: 28px !important;
  line-height: 36px !important;
}
.icon-29 {
  height: 29px !important;
  width: 29px !important;
  line-height: 37px !important;
}
.icon-30 {
  height: 30px !important;
  width: 30px !important;
  line-height: 38px !important;
}
.icon-31 {
  height: 31px !important;
  width: 31px !important;
  line-height: 39px !important;
}
.icon-32 {
  height: 32px !important;
  width: 32px !important;
  line-height: 40px !important;
}
.icon-33 {
  height: 33px !important;
  width: 33px !important;
  line-height: 41px !important;
}
.icon-34 {
  height: 34px !important;
  width: 34px !important;
  line-height: 42px !important;
}
.icon-35 {
  height: 35px !important;
  width: 35px !important;
  line-height: 43px !important;
}
.icon-36 {
  height: 36px !important;
  width: 36px !important;
  line-height: 44px !important;
}
.icon-37 {
  height: 37px !important;
  width: 37px !important;
  line-height: 45px !important;
}
.icon-38 {
  height: 38px !important;
  width: 38px !important;
  line-height: 46px !important;
}
.icon-39 {
  height: 39px !important;
  width: 39px !important;
  line-height: 47px !important;
}
.icon-40 {
  height: 40px !important;
  width: 40px !important;
  line-height: 48px !important;
}
.icon-41 {
  height: 41px !important;
  width: 41px !important;
  line-height: 49px !important;
}
.icon-42 {
  height: 42px !important;
  width: 42px !important;
  line-height: 50px !important;
}
.icon-43 {
  height: 43px !important;
  width: 43px !important;
  line-height: 51px !important;
}
.icon-44 {
  height: 44px !important;
  width: 44px !important;
  line-height: 52px !important;
}
.icon-45 {
  height: 45px !important;
  width: 45px !important;
  line-height: 53px !important;
}
.icon-46 {
  height: 46px !important;
  width: 46px !important;
  line-height: 54px !important;
}
.icon-47 {
  height: 47px !important;
  width: 47px !important;
  line-height: 55px !important;
}
.icon-48 {
  height: 48px !important;
  width: 48px !important;
  line-height: 56px !important;
}
.icon-49 {
  height: 49px !important;
  width: 49px !important;
  line-height: 57px !important;
}
.icon-50 {
  height: 50px !important;
  width: 50px !important;
  line-height: 58px !important;
}
.icon-51 {
  height: 51px !important;
  width: 51px !important;
  line-height: 59px !important;
}
.icon-52 {
  height: 52px !important;
  width: 52px !important;
  line-height: 60px !important;
}
.icon-53 {
  height: 53px !important;
  width: 53px !important;
  line-height: 61px !important;
}
.icon-54 {
  height: 54px !important;
  width: 54px !important;
  line-height: 62px !important;
}
.icon-55 {
  height: 55px !important;
  width: 55px !important;
  line-height: 63px !important;
}
.icon-56 {
  height: 56px !important;
  width: 56px !important;
  line-height: 64px !important;
}
.icon-57 {
  height: 57px !important;
  width: 57px !important;
  line-height: 65px !important;
}
.icon-58 {
  height: 58px !important;
  width: 58px !important;
  line-height: 66px !important;
}
.icon-59 {
  height: 59px !important;
  width: 59px !important;
  line-height: 67px !important;
}
.icon-60 {
  height: 60px !important;
  width: 60px !important;
  line-height: 68px !important;
}
*,
:after,
:before {
  box-sizing: border-box;
}
body {
  font-family: "Cairo", sans-serif;
  line-height: 1.334rem;
  overflow-x: hidden;
  color: var(--mat-sys-on-background);
}
.mainWrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
  flex: 1;
  height: 100%;
}
.contentWrapper,
.mat-sidenav-content,
.mat-drawer-content {
  padding: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
}
.container {
  max-width: 1200px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}
.container.full-width {
  display: flex;
  align-items: center;
  width: 100%;
}
.pageWrapper {
  width: 100%;
  min-height: calc(100vh - 70px);
  margin: 0;
  padding: 0;
}
.pageContentInner {
  width: 100%;
  min-height: 100%;
  padding: 24px;
}
.pageContentInner.maxWidth {
  max-width: 1200px;
  margin: 0 auto;
}
.w-100 {
  width: 100%;
}
.h-100 {
  height: 100%;
}
.shadow-none {
  box-shadow: none !important;
}
.rounded {
  border-radius: 18px !important;
}
.rounded-circle {
  border-radius: 50% !important;
}
.rounded-pill {
  border-radius: 25px !important;
}
.overflow-hidden {
  overflow: hidden;
}
.text-decoration-none {
  text-decoration: none;
}
.position-relative {
  position: relative;
}
.table-responsive {
  overflow-x: auto;
}
.table-responsive td,
.table-responsive mat-cell {
  white-space: nowrap;
  padding: 16px;
}
.op-5 {
  opacity: 0.5;
}
.cursor-pointer {
  cursor: pointer;
}
.avatar-group img {
  border: 2px solid #ffffff;
  margin-right: -5px;
}
.avatar-group img:last-child {
  margin-right: 0;
}
a {
  color: var(--mat-sys-on-background);
}
a:hover {
  color: var(--mat-sys-primary);
}
.filter-sidebar {
  width: 290px !important;
}
pre {
  margin: 0;
  white-space: nowrap;
}
td.hljs-ln-line.hljs-ln-numbers {
  padding-right: 10px;
}
@media (min-width: 768px) {
  html .flex-sm-row {
    flex-direction: row !important;
  }
}
@media (max-width: 767.98px) {
  .pageContentInner {
    padding: 16px;
  }
}
.mat-drawer[style*="visibility: hidden"] {
  display: none;
}
.mainWrapper {
  --erp-sidebar-bg: #ffffff;
  --erp-sidebar-border: rgba(15, 23, 42, 0.08);
  --erp-layout-divider: rgba(15, 23, 42, 0.12);
  --erp-sidebar-shadow: none;
  --erp-sidebar-text: #64748b;
  --erp-sidebar-text-strong: #0f172a;
  --erp-sidebar-icon: #94a3b8;
  --erp-sidebar-hover: rgba(124, 58, 237, 0.06);
  --erp-sidebar-hover-border: rgba(124, 58, 237, 0.14);
  --erp-sidebar-active-bg:
    linear-gradient(
      135deg,
      #7c3aed 0%,
      #9333ea 100%);
  --erp-sidebar-active-shadow: 0 12px 24px rgba(124, 58, 237, 0.2);
  --erp-sidebar-rail: rgba(124, 58, 237, 0.14);
}
.mat-drawer.sidebarNav {
  width: 300px;
  flex-shrink: 0;
  position: absolute;
  top: 0 !important;
  left: 0;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden !important;
  background: var(--erp-sidebar-bg) !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mainWrapper[dir=rtl] .mat-drawer.sidebarNav {
  left: auto;
  right: 0;
  direction: rtl;
}
.mainWrapper[dir=ltr] .mat-drawer.sidebarNav {
  left: 0;
  right: auto;
  direction: ltr;
}
.sidebarNav app-sidebar {
  display: block;
  flex-shrink: 0;
  margin-bottom: 0 !important;
}
.sidebarNav app-sidebar .topbar {
  min-height: 72px;
  height: auto;
  padding: 10px 14px;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
}
.sidebarNav .branding {
  width: 100%;
  padding: 0;
  min-height: 0;
}
.sidebarNav app-sidebar .icon-40,
.sidebarNav app-sidebar a.d-flex.justify-content-center {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #64748b;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}
.sidebarNav app-sidebar .icon-40:hover,
.sidebarNav app-sidebar a.d-flex.justify-content-center:hover {
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.06);
}
@media (min-width: 1024px) {
  .mainWrapper[dir=ltr]:not(.sidebarNav-horizontal) .contentWrapper {
    margin-left: 300px !important;
    margin-right: 0 !important;
    border-inline-start: 1px solid var(--erp-layout-divider);
  }
  .mainWrapper[dir=rtl]:not(.sidebarNav-horizontal) .contentWrapper {
    margin-right: 300px !important;
    margin-left: 0 !important;
    border-inline-end: 1px solid var(--erp-layout-divider);
  }
  .mainWrapper[dir=ltr]:not(.sidebarNav-horizontal).sidebarNav-mini .contentWrapper,
  .mainWrapper[dir=ltr]:not(.sidebarNav-horizontal) .sidebarNav-mini .contentWrapper {
    margin-left: 80px !important;
    margin-right: 0 !important;
  }
  .mainWrapper[dir=rtl]:not(.sidebarNav-horizontal).sidebarNav-mini .contentWrapper,
  .mainWrapper[dir=rtl]:not(.sidebarNav-horizontal) .sidebarNav-mini .contentWrapper {
    margin-right: 80px !important;
    margin-left: 0 !important;
  }
}
.sidebarNav ng-scrollbar.position-relative {
  display: block;
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  height: 0 !important;
}
.sidebarNav .ng-scrollbar-viewport,
.sidebarNav .ng-scroll-content {
  box-sizing: border-box !important;
  min-height: 100%;
}
.sidebarNav .ng-scrollbar-track {
  inset-block: 12px !important;
  border-radius: 999px !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease;
}
.sidebarNav .ng-scrollbar-thumb {
  border-radius: 999px !important;
}
.sidebarNav:hover .ng-scrollbar-track {
  opacity: 0.28 !important;
}
.sidebar-list.mdc-list {
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  margin: 0 !important;
  padding: 12px 14px 18px !important;
  box-sizing: border-box !important;
}
.sidebar-list.mdc-list .nav-caption,
.sidebar-list.mdc-list .mdc-list-group__subheader {
  margin: 12px 0 4px;
  padding: 0 10px !important;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  opacity: 1;
  font-weight: 700;
  color: #94a3b8 !important;
}
.sidebar-list.mdc-list .menu-list-item {
  position: relative;
  display: flex !important;
  align-items: center !important;
  min-height: 48px;
  margin: 0 !important;
  padding: 10px 14px !important;
  border-radius: 16px !important;
  border: 1px solid transparent;
  background: transparent !important;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
.sidebar-list.mdc-list .menu-list-item::before,
.sidebar-list.mdc-list .menu-list-item::after {
  display: none !important;
  content: none !important;
}
.sidebar-list.mdc-list .menu-list-item .mdc-list-item__start {
  margin: 0 !important;
  margin-inline-end: 14px !important;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-list.mdc-list .menu-list-item .mdc-list-item__content,
.sidebar-list.mdc-list .menu-list-item .mdc-list-item__primary-text {
  display: flex !important;
  align-items: center !important;
  width: 100% !important;
  min-width: 0 !important;
  flex-wrap: nowrap !important;
  gap: 10px;
  flex: 1 1 auto !important;
}
.sidebar-list.mdc-list .menu-list-item .hide-menu {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0 !important;
  font-size: 15px;
  font-weight: 700 !important;
  color: var(--erp-sidebar-text) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar-list.mdc-list .menu-list-item .routeIcon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--erp-sidebar-icon) !important;
}
.sidebar-list.mdc-list .menu-list-item .routeIcon svg {
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 1.8 !important;
}
.sidebar-list.mdc-list .menu-list-item .arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-start: auto !important;
  flex: 0 0 auto !important;
  color: var(--erp-sidebar-icon) !important;
}
.sidebar-list.mdc-list .menu-list-item .arrow-icon .mat-icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit !important;
}
.sidebar-list.mdc-list .menu-list-item:hover:not(.activeMenu):not(.disabled) {
  background: var(--erp-sidebar-hover) !important;
  border-color: var(--erp-sidebar-hover-border);
  transform: translateY(-1px);
}
.sidebar-list.mdc-list .menu-list-item:hover:not(.activeMenu):not(.disabled) .hide-menu {
  color: var(--erp-sidebar-text-strong) !important;
}
.sidebar-list.mdc-list .menu-list-item:hover:not(.activeMenu):not(.disabled) .routeIcon,
.sidebar-list.mdc-list .menu-list-item:hover:not(.activeMenu):not(.disabled) .arrow-icon {
  color: var(--erp-sidebar-text-strong) !important;
}
.sidebar-list.mdc-list .menu-list-item.expanded:not(.activeMenu) {
  background: rgba(124, 58, 237, 0.08) !important;
  border-color: rgba(124, 58, 237, 0.12);
}
.sidebar-list.mdc-list .menu-list-item.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.sidebar-list.mdc-list .menu-list-item.activeMenu {
  background: var(--erp-sidebar-active-bg) !important;
  border-color: transparent !important;
  box-shadow: var(--erp-sidebar-active-shadow);
}
.sidebar-list.mdc-list .menu-list-item.activeMenu .hide-menu,
.sidebar-list.mdc-list .menu-list-item.activeMenu .routeIcon,
.sidebar-list.mdc-list .menu-list-item.activeMenu .arrow-icon,
.sidebar-list.mdc-list .menu-list-item.activeMenu .arrow-icon .mat-icon {
  color: #fff !important;
  font-weight: 700 !important;
}
.sidebar-list.mdc-list .nav-children {
  position: relative;
  margin: 2px 0 6px;
}
.mainWrapper[dir=ltr] .sidebar-list.mdc-list .mdc-list-group__subheader,
.mainWrapper[dir=ltr] .sidebar-list.mdc-list .nav-caption {
  text-align: left;
}
.mainWrapper[dir=rtl] .sidebar-list.mdc-list .mdc-list-group__subheader,
.mainWrapper[dir=rtl] .sidebar-list.mdc-list .nav-caption {
  text-align: right;
}
.mainWrapper[dir=ltr] .sidebar-list.mdc-list .nav-children {
  margin: 4px 10px 8px 14px;
  padding-left: 14px;
}
.mainWrapper[dir=ltr] .sidebar-list.mdc-list .nav-children::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 0;
  width: 2px;
  border-radius: 99px;
  background: var(--erp-sidebar-rail);
}
.mainWrapper[dir=rtl] .sidebar-list.mdc-list .nav-children {
  margin: 4px 14px 8px 10px;
  padding-right: 14px;
}
.mainWrapper[dir=rtl] .sidebar-list.mdc-list .nav-children::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  right: 0;
  width: 2px;
  border-radius: 99px;
  background: var(--erp-sidebar-rail);
}
.sidebarNav .profile-bar {
  padding: 14px !important;
  margin-top: auto;
  flex-shrink: 0;
  cursor: default !important;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.sidebarNav .profile-bar .bg-light-primary {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 12px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(96, 165, 250, 0.14);
  background:
    linear-gradient(
      135deg,
      rgba(96, 165, 250, 0.22) 0%,
      rgba(167, 139, 250, 0.2) 100%) !important;
  box-shadow: none !important;
}
.sidebarNav .profile-bar img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.86);
}
.sidebarNav .profile-bar h4 {
  margin: 0;
  color: #1e293b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}
.sidebarNav .profile-bar span {
  color: #475569;
}
.sidebarNav .profile-bar .m-l-auto {
  margin-inline-start: auto !important;
}
.sidebarNav .profile-bar [mat-icon-button] {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
}
@media (min-width: 1024px) {
  .sidebarNav-mini .sidebarNav {
    width: 80px;
  }
  .sidebarNav-mini .profile-bar {
    display: none;
  }
  .sidebarNav-mini app-sidebar .topbar {
    justify-content: center !important;
  }
  .sidebarNav-mini .branding {
    width: 65px;
    overflow: hidden;
  }
  .sidebarNav-mini .sidebar-list .nav-caption,
  .sidebarNav-mini .sidebar-list .mdc-list-group__subheader,
  .sidebarNav-mini .sidebar-list .nav-children {
    display: none !important;
  }
  .sidebarNav-mini .sidebar-list .menu-list-item {
    min-height: 48px;
    padding: 10px 12px !important;
    justify-content: center;
  }
  .sidebarNav-mini .sidebar-list .menu-list-item .mdc-list-item__content,
  .sidebarNav-mini .sidebar-list .menu-list-item .mdc-list-item__primary-text,
  .sidebarNav-mini .sidebar-list .menu-list-item .arrow-icon,
  .sidebarNav-mini .sidebar-list .menu-list-item .hide-menu {
    display: none !important;
  }
  .sidebarNav-mini .sidebar-list .menu-list-item .mdc-list-item__start {
    margin-inline-end: 0 !important;
  }
  .sidebarNav-mini .sidebarNav:hover {
    width: 300px;
  }
  .sidebarNav-mini .sidebarNav:hover .profile-bar {
    display: block;
  }
  .sidebarNav-mini .sidebarNav:hover .branding {
    width: 100%;
    overflow: hidden;
  }
  .sidebarNav-mini .sidebarNav:hover .sidebar-list .nav-caption,
  .sidebarNav-mini .sidebarNav:hover .sidebar-list .mdc-list-group__subheader,
  .sidebarNav-mini .sidebarNav:hover .sidebar-list .nav-children {
    display: block !important;
  }
  .sidebarNav-mini .sidebarNav:hover .sidebar-list .menu-list-item {
    min-height: 48px;
    justify-content: flex-start;
    padding: 10px 14px !important;
  }
  .sidebarNav-mini .sidebarNav:hover .sidebar-list .menu-list-item .mdc-list-item__content,
  .sidebarNav-mini .sidebarNav:hover .sidebar-list .menu-list-item .mdc-list-item__primary-text {
    display: flex !important;
  }
  .sidebarNav-mini .sidebarNav:hover .sidebar-list .menu-list-item .hide-menu,
  .sidebarNav-mini .sidebarNav:hover .sidebar-list .menu-list-item .arrow-icon {
    display: inline-flex !important;
  }
  .sidebarNav-mini .sidebarNav:hover .sidebar-list .menu-list-item .mdc-list-item__start {
    margin-inline-end: 14px !important;
  }
  .sidebarNav-mini .hideMenu {
    overflow: hidden;
    width: 80px;
  }
}
.customizerBtn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9;
}
.mat-drawer.sidebarNav .hide-menu,
.mat-drawer.sidebarNav .mdc-list-group__subheader,
.mat-drawer.sidebarNav .nav-caption {
  font-family: "Cairo", sans-serif !important;
}
@media (max-width: 992px) {
  .mat-drawer.sidebarNav {
    width: min(100vw, 360px);
    border-radius: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .sidebarNav app-sidebar .topbar {
    min-height: 78px;
    padding: 12px 14px 10px;
  }
  .sidebar-list.mdc-list {
    padding: 10px 12px 16px !important;
  }
  .sidebarNav .profile-bar {
    padding: 12px !important;
  }
}
@media (max-width: 430px) {
  .mat-drawer.sidebarNav {
    width: min(100vw, 330px);
  }
  .sidebar-list.mdc-list .menu-list-item {
    min-height: 46px;
    padding: 10px 12px !important;
  }
}
html.dark-theme .mainWrapper {
  --erp-sidebar-bg: #111827;
  --erp-sidebar-border: rgba(148, 163, 184, 0.14);
  --erp-layout-divider: rgba(148, 163, 184, 0.2);
  --erp-sidebar-shadow: none;
  --erp-sidebar-text: #94a3b8;
  --erp-sidebar-text-strong: #f8fafc;
  --erp-sidebar-icon: #94a3b8;
  --erp-sidebar-hover: rgba(124, 58, 237, 0.16);
  --erp-sidebar-hover-border: rgba(124, 58, 237, 0.2);
  --erp-sidebar-rail: rgba(167, 139, 250, 0.28);
}
html.dark-theme .mat-drawer.sidebarNav {
  background: var(--erp-sidebar-bg) !important;
  border-color: var(--erp-sidebar-border) !important;
  box-shadow: none !important;
}
html.dark-theme .sidebarNav app-sidebar .topbar {
  background: transparent !important;
  border-bottom-color: rgba(148, 163, 184, 0.12) !important;
}
html.dark-theme .sidebarNav app-sidebar .icon-40,
html.dark-theme .sidebarNav app-sidebar a.d-flex.justify-content-center {
  background: #111827 !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
  color: #cbd5e1 !important;
}
html.dark-theme .sidebar-list.mdc-list .nav-caption,
html.dark-theme .sidebar-list.mdc-list .mdc-list-group__subheader {
  color: #94a3b8 !important;
}
html.dark-theme .sidebar-list.mdc-list .menu-list-item .hide-menu {
  color: var(--erp-sidebar-text) !important;
}
html.dark-theme .sidebar-list.mdc-list .menu-list-item .routeIcon,
html.dark-theme .sidebar-list.mdc-list .menu-list-item .arrow-icon {
  color: var(--erp-sidebar-icon) !important;
}
html.dark-theme .sidebar-list.mdc-list .menu-list-item:hover:not(.activeMenu) .hide-menu {
  color: var(--erp-sidebar-text-strong) !important;
}
html.dark-theme .sidebar-list.mdc-list .menu-list-item:hover:not(.activeMenu) .routeIcon,
html.dark-theme .sidebar-list.mdc-list .menu-list-item:hover:not(.activeMenu) .arrow-icon {
  color: var(--erp-sidebar-text-strong) !important;
}
html.dark-theme .sidebar-list.mdc-list .menu-list-item.activeMenu .hide-menu,
html.dark-theme .sidebar-list.mdc-list .menu-list-item.activeMenu .routeIcon,
html.dark-theme .sidebar-list.mdc-list .menu-list-item.activeMenu .arrow-icon,
html.dark-theme .sidebar-list.mdc-list .menu-list-item.activeMenu .arrow-icon .mat-icon {
  color: #fff !important;
}
html.dark-theme .sidebarNav .profile-bar {
  border-top-color: rgba(148, 163, 184, 0.12);
}
html.dark-theme .sidebarNav .profile-bar .bg-light-primary {
  border-color: rgba(96, 165, 250, 0.14) !important;
  background:
    linear-gradient(
      135deg,
      rgba(59, 130, 246, 0.22) 0%,
      rgba(124, 58, 237, 0.22) 100%) !important;
}
html.dark-theme .sidebarNav .profile-bar h4,
html.dark-theme .sidebarNav .profile-bar span {
  color: #e2e8f0 !important;
}
html.dark-theme .sidebarNav .profile-bar [mat-icon-button] {
  background: rgba(15, 23, 42, 0.42);
}
.mat-drawer.sidebarNav .mat-drawer-inner-container {
  width: 100%;
  height: 100% !important;
  min-height: 0;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 0 !important;
  background: var(--erp-sidebar-bg);
  padding: 0 !important;
}
.mat-drawer.sidebarNav .mat-drawer-inner-container > * {
  min-width: 0;
}
html .topbar {
  background-color: var(--mat-sys-surface);
  position: sticky;
  top: 0;
  z-index: 9;
  height: 70px;
  border-radius: 18px;
  box-shadow: var(--mat-sys-level2);
}
.topbar-dd {
  min-width: 360px !important;
}
.apps-dd {
  min-width: 830px !important;
  overflow: unset !important;
}
.apps-dd .mat-mdc-menu-content {
  padding: 0;
}
.search-dd {
  min-width: 385px !important;
  border-radius: 18px !important;
}
.upgrade-bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.object-cover {
  object-fit: cover;
}
.pulse {
  position: relative;
  top: -15px;
  right: -8px;
}
.pulse .heartbit {
  position: absolute;
  top: -17px;
  right: -2px;
  height: 18px;
  width: 18px;
  z-index: 10;
  border: 3px solid #4bd08b;
  border-radius: 70px;
  -moz-animation: heartbit 1s ease-out infinite;
  -o-animation: heartbit 1s ease-out infinite;
  -webkit-animation: heartbit 1s ease-out infinite;
  animation: heartbit 1s ease-out infinite;
}
.pulse .point {
  width: 4px;
  height: 4px;
  border-radius: 30px;
  background-color: #4bd08b;
  position: absolute;
  right: 5px;
  top: -10px;
}
@keyframes heartbit {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  25% {
    -webkit-transform: scale(0.1);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: scale(0.5);
    opacity: 0.3;
  }
  75% {
    -webkit-transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
.disabled-hover {
  padding-left: 15px !important;
}
.custom-outline-btn.mat-mdc-outlined-button:not(:disabled) {
  border-color: var(--mat-sys-outline) !important;
}
.profile-btn.mat-mdc-fab {
  background-color: transparent;
}
.profile-btn.mat-mdc-fab:hover {
  background-color: transparent;
  box-shadow: unset;
}
.profile-btn.mat-mdc-fab:hover .mat-mdc-button-persistent-ripple::before {
  background-color: transparent;
}
.header-collpase {
  position: absolute;
  top: 70px;
  background: var(--mat-sys-surface);
  width: 100%;
  left: 0;
  box-shadow: var(--mat-sys-level2);
  border-radius: 18px;
}
app-header {
  display: block;
  width: 100%;
}
.contentWrapper > app-header {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
html app-header .erp-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: block;
  width: 100%;
  min-height: 80px;
  height: auto;
  margin: 0;
  padding: 14px 24px;
  background: var(--mat-sys-surface);
  border: 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 0;
  box-shadow: none;
}
html app-header .erp-topbar__main {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-width: 0;
}
html app-header .erp-topbar__left,
html app-header .erp-topbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-wrap: nowrap;
}
html app-header .erp-topbar__left {
  flex: 1 1 auto;
  min-width: 0;
}
html app-header .erp-topbar__right {
  flex: 0 0 auto;
  min-width: 0;
  margin-inline-start: auto;
}
html app-header .erp-topbar__icon-btn.mat-mdc-icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: #64748b;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
html app-header .erp-topbar__icon-btn.mat-mdc-icon-button .mat-mdc-button-touch-target {
  width: 44px;
  height: 44px;
}
html app-header .erp-topbar__icon-btn.mat-mdc-icon-button:hover {
  color: #7c3aed;
  border-color: rgba(124, 58, 237, 0.18);
  background: rgba(124, 58, 237, 0.06);
  box-shadow: 0 8px 18px rgba(124, 58, 237, 0.08);
}
html app-header .erp-topbar__toggle-btn.mat-mdc-icon-button {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: transparent;
  color: #475569;
  box-shadow: none;
  flex: 0 0 auto;
}
html app-header .erp-topbar__toggle-btn.mat-mdc-icon-button .mat-mdc-button-touch-target {
  width: 40px;
  height: 40px;
}
html app-header .erp-topbar__toggle-btn.mat-mdc-icon-button:hover {
  background: rgba(15, 23, 42, 0.04);
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: none;
}
html app-header .erp-topbar__field.mat-mdc-form-field {
  margin: 0 !important;
  flex: 0 0 auto;
}
html app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-form-field-subscript-wrapper {
  display: none;
}
html app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-text-field-wrapper {
  min-height: 44px !important;
  background: #fff !important;
  border-radius: 16px !important;
  padding-inline: 14px !important;
}
html app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-form-field-flex {
  min-height: 44px;
  align-items: center;
}
html app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-form-field-infix {
  min-height: auto;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
html app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-trigger {
  min-height: auto;
  align-items: center;
}
html app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-value,
html app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-value-text,
html app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-min-line {
  color: #0f172a !important;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-arrow {
  color: #64748b;
}
html app-header .erp-topbar__field.mat-mdc-form-field .mdc-floating-label {
  display: none;
}
html app-header .erp-topbar__field.mat-mdc-form-field .mdc-notched-outline__leading,
html app-header .erp-topbar__field.mat-mdc-form-field .mdc-notched-outline__notch,
html app-header .erp-topbar__field.mat-mdc-form-field .mdc-notched-outline__trailing {
  border-color: rgba(15, 23, 42, 0.08) !important;
}
html app-header .erp-topbar__field.mat-mdc-form-field:hover .mdc-notched-outline__leading,
html app-header .erp-topbar__field.mat-mdc-form-field:hover .mdc-notched-outline__notch,
html app-header .erp-topbar__field.mat-mdc-form-field:hover .mdc-notched-outline__trailing {
  border-color: rgba(124, 58, 237, 0.18) !important;
}
html app-header .erp-topbar__field.mat-mdc-form-field.mat-focused .mdc-notched-outline__leading,
html app-header .erp-topbar__field.mat-mdc-form-field.mat-focused .mdc-notched-outline__notch,
html app-header .erp-topbar__field.mat-mdc-form-field.mat-focused .mdc-notched-outline__trailing {
  border-color: #7c3aed !important;
}
html app-header .erp-topbar__field--year {
  width: 150px;
  min-width: 150px;
}
html app-header .erp-topbar__field--company {
  width: 190px;
  min-width: 190px;
}
html app-header .erp-profile-trigger.mat-mdc-fab-base {
  min-height: 48px;
  height: 48px;
  max-width: 248px;
  padding: 0 12px 0 10px;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff !important;
  box-shadow: none !important;
  color: #0f172a !important;
  flex: 0 0 auto;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
html app-header .erp-profile-trigger.mat-mdc-fab-base:hover {
  background: #fff !important;
  border-color: rgba(124, 58, 237, 0.18);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05) !important;
}
html app-header .erp-profile-trigger.mat-mdc-fab-base .mat-mdc-button-persistent-ripple::before {
  display: none;
}
html app-header .erp-profile-trigger img {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(124, 58, 237, 0.14);
  flex: 0 0 auto;
}
html app-header .erp-profile-trigger__text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 176px;
  line-height: 1.25;
}
html app-header .erp-profile-trigger__name {
  display: block;
  min-width: 0;
  margin: 0;
  color: #0f172a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html app-header .erp-topbar .header-collpase {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  left: auto;
  width: auto;
  z-index: 25;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}
html app-header .erp-topbar__collapse-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
html .topbar-dd.mat-mdc-menu-panel {
  min-width: 310px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08) !important;
}
html .topbar-dd.mat-mdc-menu-panel .mat-mdc-menu-content {
  padding: 8px !important;
}
html .erp-profile-menu-panel.mat-mdc-menu-panel {
  min-width: 360px !important;
  max-width: 380px !important;
  border-radius: 22px !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.12) !important;
  overflow: hidden !important;
  transform-origin: top right;
  animation: erpProfileMenuFadeIn 0.18s ease-out;
}
html .erp-profile-menu-panel.mat-mdc-menu-panel .mat-mdc-menu-content {
  padding: 0 !important;
}
html[dir=rtl] .erp-profile-menu-panel.mat-mdc-menu-panel {
  transform-origin: top left;
}
@keyframes erpProfileMenuFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
html .erp-profile-menu-panel .ng-scroll-content {
  min-height: 0;
}
html .erp-profile-menu-panel .header-profile-container {
  margin: 0;
  padding: 16px 18px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.08) 0%,
      rgba(124, 58, 237, 0.02) 100%),
    #fff;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}
html .erp-profile-menu-panel .header-profile-container:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}
html .erp-profile-menu-panel .header-profile-container img {
  width: 72px !important;
  height: 72px !important;
  min-width: 72px;
  border: 3px solid rgba(124, 58, 237, 0.12);
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.1);
}
html .erp-profile-menu-panel .erp-profile-menu__user-info {
  min-width: 0;
  flex: 1 1 auto;
}
html .erp-profile-menu-panel .erp-profile-menu__user-info h6 {
  margin-bottom: 2px !important;
  color: #0f172a;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html .erp-profile-menu-panel .erp-profile-menu__role {
  margin-bottom: 6px !important;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}
html .erp-profile-menu-panel .erp-profile-menu__email {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  margin-top: 2px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.06);
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
html .erp-profile-menu-panel .erp-profile-menu__email-icon {
  flex: 0 0 auto;
  color: #7c3aed;
  margin: 0 !important;
}
html .erp-profile-menu-panel .erp-profile-menu__email-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: ltr;
}
html .erp-profile-menu-panel .p-x-32.p-y-16 {
  padding: 0 !important;
}
html .erp-profile-menu-panel .p-x-32 {
  padding-inline: 12px !important;
}
html .erp-profile-menu-panel .p-y-12.p-x-32 {
  padding: 12px 16px 14px !important;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
}
html .erp-profile-menu-panel .erp-profile-menu__scroll {
  height: auto !important;
  max-height: min(440px, 100vh - 148px);
  --scrollbar-thickness: 4px;
  --scrollbar-thumb-color: rgba(100, 116, 139, 0.28);
  --scrollbar-thumb-hover-color: rgba(100, 116, 139, 0.42);
  --scrollbar-track-color: transparent;
}
html .erp-profile-menu-panel a.text-decoration-none.d-block.text-hover-primary {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 2px 0;
  padding: 10px 12px;
  border-radius: 16px;
  color: inherit !important;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
html .erp-profile-menu-panel a.text-decoration-none.d-block.text-hover-primary:hover {
  background: rgba(124, 58, 237, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}
html .erp-profile-menu-panel a.text-decoration-none.d-block.text-hover-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(124, 58, 237, 0) 0%,
      rgba(124, 58, 237, 0.04) 50%,
      rgba(124, 58, 237, 0) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
html .erp-profile-menu-panel a.text-decoration-none.d-block.text-hover-primary:hover::after {
  opacity: 1;
}
html .erp-profile-menu-panel .profile-sub-menu-text {
  min-width: 0;
  flex: 1 1 auto;
}
html .erp-profile-menu-panel .profile-sub-menu-text h5 {
  color: #0f172a !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease;
}
html .erp-profile-menu-panel .profile-sub-menu-text span {
  display: block;
  margin-top: 2px;
  color: #64748b !important;
  font-size: 12px;
  line-height: 1.45;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
html .erp-profile-menu-panel a.text-decoration-none.d-block.text-hover-primary:hover .profile-sub-menu-text h5 {
  color: #7c3aed !important;
}
html .erp-profile-menu-panel .icon-50 {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  border-radius: 14px !important;
}
html .erp-profile-menu-panel button.mat-mdc-unelevated-button,
html .erp-profile-menu-panel button.mat-mdc-raised-button,
html .erp-profile-menu-panel button.mat-mdc-flat-button {
  min-height: 44px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
html .erp-profile-menu-panel button.mat-mdc-flat-button {
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
html .erp-profile-menu-panel button.mat-mdc-flat-button:hover {
  transform: translateY(-1px);
}
html[dir=rtl] app-header .erp-topbar {
  padding-inline-start: 24px;
  padding-inline-end: 20px;
}
html[dir=rtl] app-header .erp-topbar__left {
  gap: 10px;
}
html[dir=rtl] app-header .erp-topbar__right {
  gap: 10px;
}
html[dir=rtl] app-header .erp-topbar__field--company {
  width: 200px;
  min-width: 200px;
  max-width: 200px;
}
html[dir=rtl] app-header .erp-topbar__field--year {
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}
html[dir=rtl] app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-text-field-wrapper {
  padding-inline-start: 16px !important;
  padding-inline-end: 12px !important;
}
html[dir=rtl] app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-trigger,
html[dir=rtl] app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-value,
html[dir=rtl] app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-value-text,
html[dir=rtl] app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-min-line {
  text-align: right;
  direction: rtl;
}
html[dir=rtl] app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-arrow-wrapper {
  margin-inline-start: 8px;
}
html[dir=rtl] app-header .erp-profile-trigger.mat-mdc-fab-base {
  max-width: 248px;
  padding-inline-start: 10px;
  padding-inline-end: 12px;
}
html[dir=rtl] app-header .erp-profile-trigger__text {
  align-items: flex-end;
  text-align: right;
  direction: rtl;
  max-width: 176px;
}
html[dir=rtl] .erp-profile-menu-panel .header-profile-container {
  direction: rtl;
  text-align: right;
}
html[dir=rtl] .erp-profile-menu-panel .erp-profile-menu__user-info {
  text-align: right;
}
html[dir=rtl] .erp-profile-menu-panel .erp-profile-menu__email {
  justify-content: flex-start;
  text-align: right;
}
html[dir=rtl] .erp-profile-menu-panel .erp-profile-menu__email-text {
  direction: ltr;
  text-align: left;
}
html[dir=rtl] .erp-profile-menu-panel .profile-sub-menu-text {
  text-align: right;
}
html.dark-theme app-header .erp-topbar {
  background: #111827;
  border-color: rgba(148, 163, 184, 0.16);
  border-bottom-color: rgba(148, 163, 184, 0.16);
  border-radius: 0;
  box-shadow: none;
}
html.dark-theme app-header .erp-topbar__icon-btn.mat-mdc-icon-button,
html.dark-theme app-header .erp-profile-trigger.mat-mdc-fab-base,
html.dark-theme app-header .erp-topbar .header-collpase,
html.dark-theme .topbar-dd.mat-mdc-menu-panel {
  background: #111827 !important;
  color: #e2e8f0 !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
}
html.dark-theme app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-text-field-wrapper {
  background: #111827 !important;
  border-radius: 16px !important;
}
html.dark-theme app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-value,
html.dark-theme app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-value-text,
html.dark-theme app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-min-line,
html.dark-theme app-header .erp-topbar__field.mat-mdc-form-field .mat-mdc-select-arrow {
  color: #f8fafc !important;
}
html.dark-theme app-header .erp-topbar__toggle-btn.mat-mdc-icon-button {
  background: transparent !important;
  color: #cbd5e1 !important;
}
html.dark-theme app-header .erp-topbar__toggle-btn.mat-mdc-icon-button:hover {
  background: rgba(148, 163, 184, 0.1) !important;
  border-color: rgba(148, 163, 184, 0.22) !important;
  color: #f8fafc !important;
}
html.dark-theme app-header .erp-profile-trigger__name {
  color: #f8fafc !important;
}
html.dark-theme .erp-profile-menu-panel.mat-mdc-menu-panel {
  background: #111827 !important;
  border-color: rgba(148, 163, 184, 0.16) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35) !important;
}
html.dark-theme .erp-profile-menu-panel .erp-profile-menu__scroll {
  --scrollbar-thumb-color: rgba(148, 163, 184, 0.32);
  --scrollbar-thumb-hover-color: rgba(148, 163, 184, 0.46);
}
html.dark-theme .erp-profile-menu-panel .header-profile-container {
  background:
    linear-gradient(
      135deg,
      rgba(124, 58, 237, 0.16) 0%,
      rgba(124, 58, 237, 0.04) 100%),
    #111827 !important;
  border-bottom-color: rgba(148, 163, 184, 0.16) !important;
}
html.dark-theme .erp-profile-menu-panel .header-profile-container:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
html.dark-theme .erp-profile-menu-panel .erp-profile-menu__user-info h6,
html.dark-theme .erp-profile-menu-panel .profile-sub-menu-text h5 {
  color: #f8fafc !important;
}
html.dark-theme .erp-profile-menu-panel .erp-profile-menu__role,
html.dark-theme .erp-profile-menu-panel .profile-sub-menu-text span {
  color: #94a3b8 !important;
}
html.dark-theme .erp-profile-menu-panel .erp-profile-menu__email {
  background: rgba(124, 58, 237, 0.12);
  color: #cbd5e1;
}
html.dark-theme .erp-profile-menu-panel .erp-profile-menu__email-icon {
  color: #a78bfa;
}
html.dark-theme .erp-profile-menu-panel .p-y-12.p-x-32 {
  background: #111827 !important;
  border-top-color: rgba(148, 163, 184, 0.16) !important;
}
html.dark-theme .erp-profile-menu-panel a.text-decoration-none.d-block.text-hover-primary:hover {
  background: rgba(124, 58, 237, 0.12);
  box-shadow: none;
}
@media (max-width: 1199.98px) {
  html app-header .erp-topbar__field--company {
    width: 170px;
    min-width: 170px;
  }
  html[dir=rtl] app-header .erp-topbar__field--company {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
  }
  html[dir=rtl] app-header .erp-topbar__field--year {
    width: 142px;
    min-width: 142px;
    max-width: 142px;
  }
  html[dir=rtl] app-header .erp-profile-trigger {
    max-width: 200px;
  }
  html[dir=rtl] app-header .erp-profile-trigger__text {
    max-width: 110px;
  }
}
@media (max-width: 991.98px) {
  html app-header .erp-topbar {
    padding: 12px 14px;
  }
  html app-header .erp-topbar__main {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  html app-header .erp-topbar__left {
    order: 1;
    width: 100%;
    flex-wrap: wrap;
  }
  html app-header .erp-topbar__right {
    order: 2;
    width: 100%;
    justify-content: flex-end;
    margin-inline-start: 0;
  }
  html[dir=rtl] app-header .erp-topbar__left {
    row-gap: 12px;
    width: 100%;
  }
  html[dir=rtl] app-header .erp-topbar__right {
    justify-content: flex-start;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  html app-header .erp-topbar {
    padding: 12px;
  }
  html app-header .erp-topbar__left {
    gap: 10px;
  }
  html app-header .erp-topbar__field--year {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px);
  }
  html app-header .erp-topbar__field--company {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px);
  }
  html app-header .erp-topbar .header-collpase {
    inset-inline: 0;
    width: 100%;
  }
  html .erp-profile-menu-panel.mat-mdc-menu-panel {
    min-width: 320px !important;
    max-width: calc(100vw - 24px) !important;
  }
  html[dir=rtl] app-header .erp-topbar__field--company,
  html[dir=rtl] app-header .erp-topbar__field--year {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px);
    max-width: none;
  }
}
@media (max-width: 575.98px) {
  html app-header .erp-topbar {
    padding: 10px 12px;
    gap: 10px;
  }
  html app-header .erp-topbar__main {
    gap: 10px;
  }
  html app-header .erp-topbar__left,
  html app-header .erp-topbar__right {
    gap: 8px;
  }
  html app-header .erp-topbar__icon-btn.mat-mdc-icon-button {
    width: 40px;
    height: 40px;
  }
  html app-header .erp-topbar__icon-btn.mat-mdc-icon-button .mat-mdc-button-touch-target {
    width: 40px;
    height: 40px;
  }
  html app-header .erp-topbar__field--year,
  html app-header .erp-topbar__field--company {
    width: 100%;
    min-width: 100%;
  }
  html app-header .erp-profile-trigger {
    display: none !important;
  }
  html .erp-profile-menu-panel.mat-mdc-menu-panel {
    min-width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
  }
  html[dir=rtl] app-header .erp-topbar__field--company,
  html[dir=rtl] app-header .erp-topbar__field--year {
    width: 100%;
    min-width: 100%;
    max-width: none;
  }
}
.customizer-button-group.two-row {
  display: inline-block;
}
.customizer-button-group.two-row.theme-colors .mat-button-toggle-appearance-standard {
  margin-left: 16px;
}
.customizer-button-group.two-row.theme-colors .mat-button-toggle-appearance-standard:first-child {
  margin-left: 0;
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard {
  width: 80px;
  height: 65px;
  float: left;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard .mat-button-toggle-button {
  display: flex;
  justify-content: center;
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard:nth-child(4) {
  margin-left: 0;
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard.mat-button-toggle-checked .theme-circle .theme-icon {
  display: flex;
  color: #ffffff;
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard .theme-circle {
  width: 25px;
  height: 25px;
  border-radius: var(--mat-sys-corner-full);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard .theme-circle .theme-icon {
  display: none;
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard .theme-circle.orange_theme {
  background-color: rgb(250, 137, 107);
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard .theme-circle.blue_theme {
  background-color: rgb(0, 133, 219);
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard .theme-circle.aqua_theme {
  background-color: rgb(0, 116, 186);
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard .theme-circle.purple_theme {
  background-color: rgb(118, 62, 189);
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard .theme-circle.green_theme {
  background-color: rgb(10, 126, 164);
}
.customizer-button-group.two-row .mat-button-toggle-appearance-standard .theme-circle.cyan_theme {
  background-color: rgb(1, 192, 200);
}
.customizer-button-group .mat-button-toggle-appearance-standard {
  padding: 9px;
  border: 0 !important;
  box-shadow: var(--mat-sys-level1);
  border-radius: 18px;
  transition: all 0.1s ease-in 0s;
  border-left: 0 !important;
}
.customizer-button-group .mat-button-toggle-appearance-standard:hover {
  transform: scale(1.05);
}
.customizer-button-group .mat-button-toggle-appearance-standard.mat-button-toggle-checked {
  background-color: var(--mat-sys-primary-fixed-dim);
}
.customizer-button-group .mat-button-toggle-appearance-standard.mat-button-toggle-checked i-tabler.fill-icon {
  color: var(--mat-sys-primary);
  fill: var(--mat-sys-on-primary);
}
.customizer-button-group.mat-button-toggle-group {
  overflow: unset;
  border-radius: 0;
}
.customizer-button-group .mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.customizer-button-group.mat-button-toggle-group-appearance-standard {
  border: 0 !important;
}
.breadcrumb {
  list-style: none;
  margin: 0;
  padding: 0px;
  display: flex;
}
.breadcrumb-item:first-child::marker {
  content: " ";
}
.breadcrumb-item.active {
  margin-left: 20px;
}
.breadcrumb-item a {
  text-decoration: none;
  color: var(--mat-sys-on-background);
  font-size: 14px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.offset-1 {
  margin-left: 8.3333333333%;
}
.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.offset-2 {
  margin-left: 16.6666666667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.offset-3 {
  margin-left: 25%;
}
.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.offset-4 {
  margin-left: 33.3333333333%;
}
.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.offset-5 {
  margin-left: 41.6666666667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.offset-6 {
  margin-left: 50%;
}
.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.offset-7 {
  margin-left: 58.3333333333%;
}
.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.offset-8 {
  margin-left: 66.6666666667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.offset-9 {
  margin-left: 75%;
}
.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.offset-10 {
  margin-left: 83.3333333333%;
}
.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.offset-11 {
  margin-left: 91.6666666667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.offset-12 {
  margin-left: 100%;
}
@media (min-width: 600px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-sm-12 {
    margin-left: 100%;
  }
}
@media (min-width: 960px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-md-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1280px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-lg-12 {
    margin-left: 100%;
  }
}
@media (min-width: 2100px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-xl-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1200px) {
  body .d-lg-flex {
    display: flex !important;
  }
  body .d-lg-block {
    display: block !important;
  }
  body .d-lg-none {
    display: none !important;
  }
  body .align-items-lg-center {
    align-items: center !important;
  }
}
@media (min-width: 960px) {
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  body .d-sm-flex {
    display: flex !important;
  }
  body .d-sm-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .p-xs-6 {
    padding: 0 6px !important;
  }
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-1-auto {
  flex: 1 1 0%;
}
.hstack {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 767px) {
  .hstack {
    flex-direction: column;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  font-weight: 500;
}
.lh-lg {
  line-height: 36px !important;
}
.lh-sm {
  line-height: 20px !important;
}
.lh-md {
  line-height: 1.5 !important;
}
.lh-normal {
  line-height: normal !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-col-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.m-0 {
  margin: 0 !important;
}
.m-2 {
  margin: 2px !important;
}
.m-4 {
  margin: 4px !important;
}
.m-5 {
  margin: 5px !important;
}
.m-6 {
  margin: 7px !important;
}
.m-8 {
  margin: 8px !important;
}
.m-10 {
  margin: 10px !important;
}
.m-12 {
  margin: 12px !important;
}
.m-14 {
  margin: 14px !important;
}
.m-15 {
  margin: 15px !important;
}
.m-16 {
  margin: 16px !important;
}
.m-20 {
  margin: 20px !important;
}
.m-24 {
  margin: 24px !important;
}
.m-30 {
  margin: 30px !important;
}
.m-32 {
  margin: 32px !important;
}
.m-48 {
  margin: 48px !important;
}
.m-56 {
  margin: 56px !important;
}
.m-auto {
  margin: auto !important;
}
.m-x-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.m-x-2 {
  margin-left: 2px !important;
  margin-right: 2px !important;
}
.m-x-4 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.m-x-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}
.m-x-6 {
  margin-left: 7px !important;
  margin-right: 7px !important;
}
.m-x-8 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}
.m-x-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.m-x-12 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}
.m-x-14 {
  margin-left: 14px !important;
  margin-right: 14px !important;
}
.m-x-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}
.m-x-16 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}
.m-x-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.m-x-24 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}
.m-x-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}
.m-x-32 {
  margin-left: 32px !important;
  margin-right: 32px !important;
}
.m-x-48 {
  margin-left: 48px !important;
  margin-right: 48px !important;
}
.m-x-56 {
  margin-left: 56px !important;
  margin-right: 56px !important;
}
.m-x-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.m-y-2 {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}
.m-y-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}
.m-y-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}
.m-y-6 {
  margin-top: 7px !important;
  margin-bottom: 7px !important;
}
.m-y-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.m-y-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.m-y-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.m-y-14 {
  margin-top: 14px !important;
  margin-bottom: 14px !important;
}
.m-y-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}
.m-y-16 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.m-y-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.m-y-24 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}
.m-y-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}
.m-y-32 {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
.m-y-48 {
  margin-top: 48px !important;
  margin-bottom: 48px !important;
}
.m-y-56 {
  margin-top: 56px !important;
  margin-bottom: 56px !important;
}
.m-y-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.m-t-0 {
  margin-top: 0 !important;
}
.m-t-2 {
  margin-top: 2px !important;
}
.m-t-4 {
  margin-top: 4px !important;
}
.m-t-5 {
  margin-top: 5px !important;
}
.m-t-6 {
  margin-top: 7px !important;
}
.m-t-8 {
  margin-top: 8px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-t-12 {
  margin-top: 12px !important;
}
.m-t-14 {
  margin-top: 14px !important;
}
.m-t-15 {
  margin-top: 15px !important;
}
.m-t-16 {
  margin-top: 16px !important;
}
.m-t-20 {
  margin-top: 20px !important;
}
.m-t-24 {
  margin-top: 24px !important;
}
.m-t-30 {
  margin-top: 30px !important;
}
.m-t-32 {
  margin-top: 32px !important;
}
.m-t-48 {
  margin-top: 48px !important;
}
.m-t-56 {
  margin-top: 56px !important;
}
.m-t-auto {
  margin-top: auto !important;
}
.m-b-0 {
  margin-bottom: 0 !important;
}
.m-b-2 {
  margin-bottom: 2px !important;
}
.m-b-4 {
  margin-bottom: 4px !important;
}
.m-b-5 {
  margin-bottom: 5px !important;
}
.m-b-6 {
  margin-bottom: 7px !important;
}
.m-b-8 {
  margin-bottom: 8px !important;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.m-b-12 {
  margin-bottom: 12px !important;
}
.m-b-14 {
  margin-bottom: 14px !important;
}
.m-b-15 {
  margin-bottom: 15px !important;
}
.m-b-16 {
  margin-bottom: 16px !important;
}
.m-b-20 {
  margin-bottom: 20px !important;
}
.m-b-24 {
  margin-bottom: 24px !important;
}
.m-b-30 {
  margin-bottom: 30px !important;
}
.m-b-32 {
  margin-bottom: 32px !important;
}
.m-b-48 {
  margin-bottom: 48px !important;
}
.m-b-56 {
  margin-bottom: 56px !important;
}
.m-b-auto {
  margin-bottom: auto !important;
}
.m--2 {
  margin: -2px !important;
}
.m--4 {
  margin: -4px !important;
}
.m--5 {
  margin: -5px !important;
}
.m--6 {
  margin: -7px !important;
}
.m--8 {
  margin: -8px !important;
}
.m--10 {
  margin: -10px !important;
}
.m--12 {
  margin: -12px !important;
}
.m--14 {
  margin: -14px !important;
}
.m--15 {
  margin: -15px !important;
}
.m--16 {
  margin: -16px !important;
}
.m--20 {
  margin: -20px !important;
}
.m--24 {
  margin: -24px !important;
}
.m--30 {
  margin: -30px !important;
}
.m--32 {
  margin: -32px !important;
}
.m--48 {
  margin: -48px !important;
}
.m--56 {
  margin: -56px !important;
}
.m-x--2 {
  margin-left: -2px !important;
  margin-right: -2px !important;
}
.m-x--4 {
  margin-left: -4px !important;
  margin-right: -4px !important;
}
.m-x--5 {
  margin-left: -5px !important;
  margin-right: -5px !important;
}
.m-x--6 {
  margin-left: -7px !important;
  margin-right: -7px !important;
}
.m-x--8 {
  margin-left: -8px !important;
  margin-right: -8px !important;
}
.m-x--10 {
  margin-left: -10px !important;
  margin-right: -10px !important;
}
.m-x--12 {
  margin-left: -12px !important;
  margin-right: -12px !important;
}
.m-x--14 {
  margin-left: -14px !important;
  margin-right: -14px !important;
}
.m-x--15 {
  margin-left: -15px !important;
  margin-right: -15px !important;
}
.m-x--16 {
  margin-left: -16px !important;
  margin-right: -16px !important;
}
.m-x--20 {
  margin-left: -20px !important;
  margin-right: -20px !important;
}
.m-x--24 {
  margin-left: -24px !important;
  margin-right: -24px !important;
}
.m-x--30 {
  margin-left: -30px !important;
  margin-right: -30px !important;
}
.m-x--32 {
  margin-left: -32px !important;
  margin-right: -32px !important;
}
.m-x--48 {
  margin-left: -48px !important;
  margin-right: -48px !important;
}
.m-x--56 {
  margin-left: -56px !important;
  margin-right: -56px !important;
}
.m-y--2 {
  margin-top: -2px !important;
  margin-bottom: -2px !important;
}
.m-y--4 {
  margin-top: -4px !important;
  margin-bottom: -4px !important;
}
.m-y--5 {
  margin-top: -5px !important;
  margin-bottom: -5px !important;
}
.m-y--6 {
  margin-top: -7px !important;
  margin-bottom: -7px !important;
}
.m-y--8 {
  margin-top: -8px !important;
  margin-bottom: -8px !important;
}
.m-y--10 {
  margin-top: -10px !important;
  margin-bottom: -10px !important;
}
.m-y--12 {
  margin-top: -12px !important;
  margin-bottom: -12px !important;
}
.m-y--14 {
  margin-top: -14px !important;
  margin-bottom: -14px !important;
}
.m-y--15 {
  margin-top: -15px !important;
  margin-bottom: -15px !important;
}
.m-y--16 {
  margin-top: -16px !important;
  margin-bottom: -16px !important;
}
.m-y--20 {
  margin-top: -20px !important;
  margin-bottom: -20px !important;
}
.m-y--24 {
  margin-top: -24px !important;
  margin-bottom: -24px !important;
}
.m-y--30 {
  margin-top: -30px !important;
  margin-bottom: -30px !important;
}
.m-y--32 {
  margin-top: -32px !important;
  margin-bottom: -32px !important;
}
.m-y--48 {
  margin-top: -48px !important;
  margin-bottom: -48px !important;
}
.m-y--56 {
  margin-top: -56px !important;
  margin-bottom: -56px !important;
}
.m-t--2 {
  margin-top: -2px !important;
}
.m-t--4 {
  margin-top: -4px !important;
}
.m-t--5 {
  margin-top: -5px !important;
}
.m-t--6 {
  margin-top: -7px !important;
}
.m-t--8 {
  margin-top: -8px !important;
}
.m-t--10 {
  margin-top: -10px !important;
}
.m-t--12 {
  margin-top: -12px !important;
}
.m-t--14 {
  margin-top: -14px !important;
}
.m-t--15 {
  margin-top: -15px !important;
}
.m-t--16 {
  margin-top: -16px !important;
}
.m-t--20 {
  margin-top: -20px !important;
}
.m-t--24 {
  margin-top: -24px !important;
}
.m-t--30 {
  margin-top: -30px !important;
}
.m-t--32 {
  margin-top: -32px !important;
}
.m-t--48 {
  margin-top: -48px !important;
}
.m-t--56 {
  margin-top: -56px !important;
}
.m-r--2 {
  margin-right: -2px !important;
}
.m-r--4 {
  margin-right: -4px !important;
}
.m-r--5 {
  margin-right: -5px !important;
}
.m-r--6 {
  margin-right: -7px !important;
}
.m-r--8 {
  margin-right: -8px !important;
}
.m-r--10 {
  margin-right: -10px !important;
}
.m-r--12 {
  margin-right: -12px !important;
}
.m-r--14 {
  margin-right: -14px !important;
}
.m-r--15 {
  margin-right: -15px !important;
}
.m-r--16 {
  margin-right: -16px !important;
}
.m-r--20 {
  margin-right: -20px !important;
}
.m-r--24 {
  margin-right: -24px !important;
}
.m-r--30 {
  margin-right: -30px !important;
}
.m-r--32 {
  margin-right: -32px !important;
}
.m-r--48 {
  margin-right: -48px !important;
}
.m-r--56 {
  margin-right: -56px !important;
}
.m-b--2 {
  margin-bottom: -2px !important;
}
.m-b--4 {
  margin-bottom: -4px !important;
}
.m-b--5 {
  margin-bottom: -5px !important;
}
.m-b--6 {
  margin-bottom: -7px !important;
}
.m-b--8 {
  margin-bottom: -8px !important;
}
.m-b--10 {
  margin-bottom: -10px !important;
}
.m-b--12 {
  margin-bottom: -12px !important;
}
.m-b--14 {
  margin-bottom: -14px !important;
}
.m-b--15 {
  margin-bottom: -15px !important;
}
.m-b--16 {
  margin-bottom: -16px !important;
}
.m-b--20 {
  margin-bottom: -20px !important;
}
.m-b--24 {
  margin-bottom: -24px !important;
}
.m-b--30 {
  margin-bottom: -30px !important;
}
.m-b--32 {
  margin-bottom: -32px !important;
}
.m-b--48 {
  margin-bottom: -48px !important;
}
.m-b--56 {
  margin-bottom: -56px !important;
}
.m-l--2 {
  margin-left: -2px !important;
}
.m-l--4 {
  margin-left: -4px !important;
}
.m-l--5 {
  margin-left: -5px !important;
}
.m-l--6 {
  margin-left: -7px !important;
}
.m-l--8 {
  margin-left: -8px !important;
}
.m-l--10 {
  margin-left: -10px !important;
}
.m-l--12 {
  margin-left: -12px !important;
}
.m-l--14 {
  margin-left: -14px !important;
}
.m-l--15 {
  margin-left: -15px !important;
}
.m-l--16 {
  margin-left: -16px !important;
}
.m-l--20 {
  margin-left: -20px !important;
}
.m-l--24 {
  margin-left: -24px !important;
}
.m-l--30 {
  margin-left: -30px !important;
}
.m-l--32 {
  margin-left: -32px !important;
}
.m-l--48 {
  margin-left: -48px !important;
}
.m-l--56 {
  margin-left: -56px !important;
}
.p-0 {
  padding: 0 !important;
}
.p-2 {
  padding: 2px !important;
}
.p-4 {
  padding: 4px !important;
}
.p-5 {
  padding: 5px !important;
}
.p-6 {
  padding: 7px !important;
}
.p-8 {
  padding: 8px !important;
}
.p-10 {
  padding: 10px !important;
}
.p-12 {
  padding: 12px !important;
}
.p-14 {
  padding: 14px !important;
}
.p-15 {
  padding: 15px !important;
}
.p-16 {
  padding: 16px !important;
}
.p-20 {
  padding: 20px !important;
}
.p-24 {
  padding: 24px !important;
}
.p-30 {
  padding: 30px !important;
}
.p-32 {
  padding: 32px !important;
}
.p-48 {
  padding: 48px !important;
}
.p-56 {
  padding: 56px !important;
}
.p-x-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.p-x-2 {
  padding-left: 2px !important;
  padding-right: 2px !important;
}
.p-x-4 {
  padding-left: 4px !important;
  padding-right: 4px !important;
}
.p-x-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}
.p-x-6 {
  padding-left: 7px !important;
  padding-right: 7px !important;
}
.p-x-8 {
  padding-left: 8px !important;
  padding-right: 8px !important;
}
.p-x-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.p-x-12 {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.p-x-14 {
  padding-left: 14px !important;
  padding-right: 14px !important;
}
.p-x-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.p-x-16 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}
.p-x-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.p-x-24 {
  padding-left: 24px !important;
  padding-right: 24px !important;
}
.p-x-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.p-x-32 {
  padding-left: 32px !important;
  padding-right: 32px !important;
}
.p-x-48 {
  padding-left: 48px !important;
  padding-right: 48px !important;
}
.p-x-56 {
  padding-left: 56px !important;
  padding-right: 56px !important;
}
.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.p-y-2 {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}
.p-y-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.p-y-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.p-y-6 {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}
.p-y-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}
.p-y-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
.p-y-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}
.p-y-14 {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}
.p-y-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}
.p-y-16 {
  padding-top: 16px !important;
  padding-bottom: 16px !important;
}
.p-y-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.p-y-24 {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}
.p-y-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.p-y-32 {
  padding-top: 32px !important;
  padding-bottom: 32px !important;
}
.p-y-48 {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}
.p-y-56 {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}
.p-t-0 {
  padding-top: 0 !important;
}
.p-t-2 {
  padding-top: 2px !important;
}
.p-t-4 {
  padding-top: 4px !important;
}
.p-t-5 {
  padding-top: 5px !important;
}
.p-t-6 {
  padding-top: 7px !important;
}
.p-t-8 {
  padding-top: 8px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-t-12 {
  padding-top: 12px !important;
}
.p-t-14 {
  padding-top: 14px !important;
}
.p-t-15 {
  padding-top: 15px !important;
}
.p-t-16 {
  padding-top: 16px !important;
}
.p-t-20 {
  padding-top: 20px !important;
}
.p-t-24 {
  padding-top: 24px !important;
}
.p-t-30 {
  padding-top: 30px !important;
}
.p-t-32 {
  padding-top: 32px !important;
}
.p-t-48 {
  padding-top: 48px !important;
}
.p-t-56 {
  padding-top: 56px !important;
}
.p-b-0 {
  padding-bottom: 0 !important;
}
.p-b-2 {
  padding-bottom: 2px !important;
}
.p-b-4 {
  padding-bottom: 4px !important;
}
.p-b-5 {
  padding-bottom: 5px !important;
}
.p-b-6 {
  padding-bottom: 7px !important;
}
.p-b-8 {
  padding-bottom: 8px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.p-b-12 {
  padding-bottom: 12px !important;
}
.p-b-14 {
  padding-bottom: 14px !important;
}
.p-b-15 {
  padding-bottom: 15px !important;
}
.p-b-16 {
  padding-bottom: 16px !important;
}
.p-b-20 {
  padding-bottom: 20px !important;
}
.p-b-24 {
  padding-bottom: 24px !important;
}
.p-b-30 {
  padding-bottom: 30px !important;
}
.p-b-32 {
  padding-bottom: 32px !important;
}
.p-b-48 {
  padding-bottom: 48px !important;
}
.p-b-56 {
  padding-bottom: 56px !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-2 {
  gap: 2px !important;
}
.gap-4 {
  gap: 4px !important;
}
.gap-5 {
  gap: 5px !important;
}
.gap-6 {
  gap: 7px !important;
}
.gap-8 {
  gap: 8px !important;
}
.gap-10 {
  gap: 10px !important;
}
.gap-12 {
  gap: 12px !important;
}
.gap-14 {
  gap: 14px !important;
}
.gap-15 {
  gap: 15px !important;
}
.gap-16 {
  gap: 16px !important;
}
.gap-20 {
  gap: 20px !important;
}
.gap-24 {
  gap: 24px !important;
}
.gap-30 {
  gap: 30px !important;
}
.gap-32 {
  gap: 32px !important;
}
.gap-48 {
  gap: 48px !important;
}
.gap-56 {
  gap: 56px !important;
}
.b-0 {
  border: 0 !important;
}
.b-1 {
  border: 1px solid var(--mat-sys-outline-variant) !important;
}
.b-2 {
  border: 2px solid var(--mat-sys-outline-variant) !important;
}
.b-4 {
  border: 4px solid var(--mat-sys-outline-variant) !important;
}
.b-8 {
  border: 8px solid var(--mat-sys-outline-variant) !important;
}
.b-t-0 {
  border-top: 0 !important;
}
.b-t-1 {
  border-top: 1px solid var(--mat-sys-outline-variant) !important;
}
.b-t-2 {
  border-top: 2px solid var(--mat-sys-outline-variant) !important;
}
.b-t-4 {
  border-top: 4px solid var(--mat-sys-outline-variant) !important;
}
.b-t-8 {
  border-top: 8px solid var(--mat-sys-outline-variant) !important;
}
.b-b-0 {
  border-bottom: 0 !important;
}
.b-b-1 {
  border-bottom: 1px solid var(--mat-sys-outline-variant) !important;
}
.b-b-2 {
  border-bottom: 2px solid var(--mat-sys-outline-variant) !important;
}
.b-b-4 {
  border-bottom: 4px solid var(--mat-sys-outline-variant) !important;
}
.b-b-8 {
  border-bottom: 8px solid var(--mat-sys-outline-variant) !important;
}
.b-l-0 {
  border-left: 0 !important;
}
.b-l-1 {
  border-left: 1px solid var(--mat-sys-outline-variant) !important;
}
.b-l-2 {
  border-left: 2px solid var(--mat-sys-outline-variant) !important;
}
.b-l-4 {
  border-left: 4px solid var(--mat-sys-outline-variant) !important;
}
.b-l-8 {
  border-left: 8px solid var(--mat-sys-outline-variant) !important;
}
.b-r-0 {
  border-right: 0 !important;
}
.b-r-1 {
  border-right: 1px solid var(--mat-sys-outline-variant) !important;
}
.b-r-2 {
  border-right: 2px solid var(--mat-sys-outline-variant) !important;
}
.b-r-4 {
  border-right: 4px solid var(--mat-sys-outline-variant) !important;
}
.b-r-8 {
  border-right: 8px solid var(--mat-sys-outline-variant) !important;
}
.rounded-0 {
  border-radius: 0 !important;
}
.rounded-7 {
  border-radius: 7px !important;
}
.rounded-8 {
  border-radius: 14px !important;
}
.rounded-12 {
  border-radius: 21px !important;
}
.rounded-16 {
  border-radius: 28px !important;
}
.rounded-full {
  border-radius: 9999px !important;
}
.r-t-l-0 {
  border-top-left-radius: 0 !important;
}
.r-t-l-7 {
  border-top-left-radius: 7px !important;
}
.r-t-l-8 {
  border-top-left-radius: 14px !important;
}
.r-t-l-12 {
  border-top-left-radius: 21px !important;
}
.r-t-l-16 {
  border-top-left-radius: 28px !important;
}
.r-t-l-full {
  border-top-left-radius: 9999px !important;
}
.r-t-r-0 {
  border-top-right-radius: 0 !important;
}
.r-t-r-7 {
  border-top-right-radius: 7px !important;
}
.r-t-r-8 {
  border-top-right-radius: 14px !important;
}
.r-t-r-12 {
  border-top-right-radius: 21px !important;
}
.r-t-r-16 {
  border-top-right-radius: 28px !important;
}
.r-t-r-full {
  border-top-right-radius: 9999px !important;
}
.r-b-r-0 {
  border-bottom-right-radius: 0 !important;
}
.r-b-r-7 {
  border-bottom-right-radius: 7px !important;
}
.r-b-r-8 {
  border-bottom-right-radius: 14px !important;
}
.r-b-r-12 {
  border-bottom-right-radius: 21px !important;
}
.r-b-r-16 {
  border-bottom-right-radius: 28px !important;
}
.r-b-r-full {
  border-bottom-right-radius: 9999px !important;
}
.r-b-l-0 {
  border-bottom-left-radius: 0 !important;
}
.r-b-l-7 {
  border-bottom-left-radius: 7px !important;
}
.r-b-l-8 {
  border-bottom-left-radius: 14px !important;
}
.r-b-l-12 {
  border-bottom-left-radius: 21px !important;
}
.r-b-l-16 {
  border-bottom-left-radius: 28px !important;
}
.r-b-l-full {
  border-bottom-left-radius: 9999px !important;
}
.r-t-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.r-t-7 {
  border-top-left-radius: 7px !important;
  border-top-right-radius: 7px !important;
}
.r-t-8 {
  border-top-left-radius: 14px !important;
  border-top-right-radius: 14px !important;
}
.r-t-12 {
  border-top-left-radius: 21px !important;
  border-top-right-radius: 21px !important;
}
.r-t-16 {
  border-top-left-radius: 28px !important;
  border-top-right-radius: 28px !important;
}
.r-t-full {
  border-top-left-radius: 9999px !important;
  border-top-right-radius: 9999px !important;
}
.r-b-0 {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.r-b-7 {
  border-bottom-left-radius: 7px !important;
  border-bottom-right-radius: 7px !important;
}
.r-b-8 {
  border-bottom-left-radius: 14px !important;
  border-bottom-right-radius: 14px !important;
}
.r-b-12 {
  border-bottom-left-radius: 21px !important;
  border-bottom-right-radius: 21px !important;
}
.r-b-16 {
  border-bottom-left-radius: 28px !important;
  border-bottom-right-radius: 28px !important;
}
.r-b-full {
  border-bottom-left-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}
.r-l-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.r-l-7 {
  border-top-left-radius: 7px !important;
  border-bottom-left-radius: 7px !important;
}
.r-l-8 {
  border-top-left-radius: 14px !important;
  border-bottom-left-radius: 14px !important;
}
.r-l-12 {
  border-top-left-radius: 21px !important;
  border-bottom-left-radius: 21px !important;
}
.r-l-16 {
  border-top-left-radius: 28px !important;
  border-bottom-left-radius: 28px !important;
}
.r-l-full {
  border-top-left-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}
.r-r-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.r-r-7 {
  border-top-right-radius: 7px !important;
  border-bottom-right-radius: 7px !important;
}
.r-r-8 {
  border-top-right-radius: 14px !important;
  border-bottom-right-radius: 14px !important;
}
.r-r-12 {
  border-top-right-radius: 21px !important;
  border-bottom-right-radius: 21px !important;
}
.r-r-16 {
  border-top-right-radius: 28px !important;
  border-bottom-right-radius: 28px !important;
}
.r-r-full {
  border-top-right-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}
.f-s-0 {
  font-size: 0 !important;
}
.f-s-10 {
  font-size: 10px !important;
}
.f-s-12 {
  font-size: 12px !important;
}
.f-s-13 {
  font-size: 13px !important;
}
.f-s-14 {
  font-size: 14px !important;
}
.f-s-15 {
  font-size: 15px !important;
}
.f-s-16 {
  font-size: 16px !important;
}
.f-s-18 {
  font-size: 18px !important;
}
.f-s-20 {
  font-size: 20px !important;
}
.f-s-21 {
  font-size: 21px !important;
}
.f-s-22 {
  font-size: 22px !important;
}
.f-s-23 {
  font-size: 23px !important;
}
.f-s-24 {
  font-size: 24px !important;
}
.f-s-28 {
  font-size: 28px !important;
}
.f-s-30 {
  font-size: 30px !important;
}
.f-s-34 {
  font-size: 34px !important;
}
.f-s-40 {
  font-size: 40px !important;
}
.f-s-44 {
  font-size: 44px !important;
}
.f-s-56 {
  font-size: 56px !important;
}
.f-s-64 {
  font-size: 64px !important;
}
.f-w-100 {
  font-weight: 100 !important;
}
.f-w-200 {
  font-weight: 200 !important;
}
.f-w-300 {
  font-weight: 300 !important;
}
.f-w-400 {
  font-weight: 400 !important;
}
.f-w-500 {
  font-weight: 500 !important;
}
.f-w-600 {
  font-weight: 600 !important;
}
.f-w-700 {
  font-weight: 700 !important;
}
.f-w-800 {
  font-weight: 800 !important;
}
.f-w-900 {
  font-weight: 900 !important;
}
.font-italic {
  font-style: italic !important;
}
.font-normal {
  font-style: normal !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-left {
  text-align: left !important;
}
.text-none {
  text-decoration: none !important;
}
.text-underline {
  text-decoration: underline !important;
}
.text-line-through {
  text-decoration: line-through !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.text-ellipsis {
  text-overflow: ellipsis !important;
}
.text-reset {
  color: inherit !important;
}
.text-current {
  color: currentColor !important;
}
[dir=ltr] .m-r-0 {
  margin-right: 0 !important;
}
[dir=ltr] .m-r-2 {
  margin-right: 2px !important;
}
[dir=ltr] .m-r-4 {
  margin-right: 4px !important;
}
[dir=ltr] .m-r-5 {
  margin-right: 5px !important;
}
[dir=ltr] .m-r-6 {
  margin-right: 7px !important;
}
[dir=ltr] .m-r-8 {
  margin-right: 8px !important;
}
[dir=ltr] .m-r-10 {
  margin-right: 10px !important;
}
[dir=ltr] .m-r-12 {
  margin-right: 12px !important;
}
[dir=ltr] .m-r-14 {
  margin-right: 14px !important;
}
[dir=ltr] .m-r-15 {
  margin-right: 15px !important;
}
[dir=ltr] .m-r-16 {
  margin-right: 16px !important;
}
[dir=ltr] .m-r-20 {
  margin-right: 20px !important;
}
[dir=ltr] .m-r-24 {
  margin-right: 24px !important;
}
[dir=ltr] .m-r-30 {
  margin-right: 30px !important;
}
[dir=ltr] .m-r-32 {
  margin-right: 32px !important;
}
[dir=ltr] .m-r-48 {
  margin-right: 48px !important;
}
[dir=ltr] .m-r-56 {
  margin-right: 56px !important;
}
[dir=ltr] .m-r-auto {
  margin-right: auto !important;
}
[dir=ltr] .m-l-0 {
  margin-left: 0 !important;
}
[dir=ltr] .m-l-2 {
  margin-left: 2px !important;
}
[dir=ltr] .m-l-4 {
  margin-left: 4px !important;
}
[dir=ltr] .m-l-5 {
  margin-left: 5px !important;
}
[dir=ltr] .m-l-6 {
  margin-left: 7px !important;
}
[dir=ltr] .m-l-8 {
  margin-left: 8px !important;
}
[dir=ltr] .m-l-10 {
  margin-left: 10px !important;
}
[dir=ltr] .m-l-12 {
  margin-left: 12px !important;
}
[dir=ltr] .m-l-14 {
  margin-left: 14px !important;
}
[dir=ltr] .m-l-15 {
  margin-left: 15px !important;
}
[dir=ltr] .m-l-16 {
  margin-left: 16px !important;
}
[dir=ltr] .m-l-20 {
  margin-left: 20px !important;
}
[dir=ltr] .m-l-24 {
  margin-left: 24px !important;
}
[dir=ltr] .m-l-30 {
  margin-left: 30px !important;
}
[dir=ltr] .m-l-32 {
  margin-left: 32px !important;
}
[dir=ltr] .m-l-48 {
  margin-left: 48px !important;
}
[dir=ltr] .m-l-56 {
  margin-left: 56px !important;
}
[dir=ltr] .m-l-auto {
  margin-left: auto !important;
}
[dir=ltr] .p-l-0 {
  padding-left: 0 !important;
}
[dir=ltr] .p-l-2 {
  padding-left: 2px !important;
}
[dir=ltr] .p-l-4 {
  padding-left: 4px !important;
}
[dir=ltr] .p-l-5 {
  padding-left: 5px !important;
}
[dir=ltr] .p-l-6 {
  padding-left: 7px !important;
}
[dir=ltr] .p-l-8 {
  padding-left: 8px !important;
}
[dir=ltr] .p-l-10 {
  padding-left: 10px !important;
}
[dir=ltr] .p-l-12 {
  padding-left: 12px !important;
}
[dir=ltr] .p-l-14 {
  padding-left: 14px !important;
}
[dir=ltr] .p-l-15 {
  padding-left: 15px !important;
}
[dir=ltr] .p-l-16 {
  padding-left: 16px !important;
}
[dir=ltr] .p-l-20 {
  padding-left: 20px !important;
}
[dir=ltr] .p-l-24 {
  padding-left: 24px !important;
}
[dir=ltr] .p-l-30 {
  padding-left: 30px !important;
}
[dir=ltr] .p-l-32 {
  padding-left: 32px !important;
}
[dir=ltr] .p-l-48 {
  padding-left: 48px !important;
}
[dir=ltr] .p-l-56 {
  padding-left: 56px !important;
}
[dir=ltr] .p-r-0 {
  padding-right: 0 !important;
}
[dir=ltr] .p-r-2 {
  padding-right: 2px !important;
}
[dir=ltr] .p-r-4 {
  padding-right: 4px !important;
}
[dir=ltr] .p-r-5 {
  padding-right: 5px !important;
}
[dir=ltr] .p-r-6 {
  padding-right: 7px !important;
}
[dir=ltr] .p-r-8 {
  padding-right: 8px !important;
}
[dir=ltr] .p-r-10 {
  padding-right: 10px !important;
}
[dir=ltr] .p-r-12 {
  padding-right: 12px !important;
}
[dir=ltr] .p-r-14 {
  padding-right: 14px !important;
}
[dir=ltr] .p-r-15 {
  padding-right: 15px !important;
}
[dir=ltr] .p-r-16 {
  padding-right: 16px !important;
}
[dir=ltr] .p-r-20 {
  padding-right: 20px !important;
}
[dir=ltr] .p-r-24 {
  padding-right: 24px !important;
}
[dir=ltr] .p-r-30 {
  padding-right: 30px !important;
}
[dir=ltr] .p-r-32 {
  padding-right: 32px !important;
}
[dir=ltr] .p-r-48 {
  padding-right: 48px !important;
}
[dir=ltr] .p-r-56 {
  padding-right: 56px !important;
}
[dir=rtl] .m-r-0 {
  margin-left: 0 !important;
}
[dir=rtl] .m-r-2 {
  margin-left: 2px !important;
}
[dir=rtl] .m-r-4 {
  margin-left: 4px !important;
}
[dir=rtl] .m-r-5 {
  margin-left: 5px !important;
}
[dir=rtl] .m-r-6 {
  margin-left: 7px !important;
}
[dir=rtl] .m-r-8 {
  margin-left: 8px !important;
}
[dir=rtl] .m-r-10 {
  margin-left: 10px !important;
}
[dir=rtl] .m-r-12 {
  margin-left: 12px !important;
}
[dir=rtl] .m-r-14 {
  margin-left: 14px !important;
}
[dir=rtl] .m-r-15 {
  margin-left: 15px !important;
}
[dir=rtl] .m-r-16 {
  margin-left: 16px !important;
}
[dir=rtl] .m-r-20 {
  margin-left: 20px !important;
}
[dir=rtl] .m-r-24 {
  margin-left: 24px !important;
}
[dir=rtl] .m-r-30 {
  margin-left: 30px !important;
}
[dir=rtl] .m-r-32 {
  margin-left: 32px !important;
}
[dir=rtl] .m-r-48 {
  margin-left: 48px !important;
}
[dir=rtl] .m-r-56 {
  margin-left: 56px !important;
}
[dir=rtl] .m-r-auto {
  margin-left: auto !important;
}
[dir=rtl] .m-l-0 {
  margin-right: 0 !important;
}
[dir=rtl] .m-l-2 {
  margin-right: 2px !important;
}
[dir=rtl] .m-l-4 {
  margin-right: 4px !important;
}
[dir=rtl] .m-l-5 {
  margin-right: 5px !important;
}
[dir=rtl] .m-l-6 {
  margin-right: 7px !important;
}
[dir=rtl] .m-l-8 {
  margin-right: 8px !important;
}
[dir=rtl] .m-l-10 {
  margin-right: 10px !important;
}
[dir=rtl] .m-l-12 {
  margin-right: 12px !important;
}
[dir=rtl] .m-l-14 {
  margin-right: 14px !important;
}
[dir=rtl] .m-l-15 {
  margin-right: 15px !important;
}
[dir=rtl] .m-l-16 {
  margin-right: 16px !important;
}
[dir=rtl] .m-l-20 {
  margin-right: 20px !important;
}
[dir=rtl] .m-l-24 {
  margin-right: 24px !important;
}
[dir=rtl] .m-l-30 {
  margin-right: 30px !important;
}
[dir=rtl] .m-l-32 {
  margin-right: 32px !important;
}
[dir=rtl] .m-l-48 {
  margin-right: 48px !important;
}
[dir=rtl] .m-l-56 {
  margin-right: 56px !important;
}
[dir=rtl] .m-l-auto {
  margin-right: auto !important;
}
[dir=rtl] .p-l-0 {
  padding-right: 0 !important;
}
[dir=rtl] .p-l-2 {
  padding-right: 2px !important;
}
[dir=rtl] .p-l-4 {
  padding-right: 4px !important;
}
[dir=rtl] .p-l-5 {
  padding-right: 5px !important;
}
[dir=rtl] .p-l-6 {
  padding-right: 7px !important;
}
[dir=rtl] .p-l-8 {
  padding-right: 8px !important;
}
[dir=rtl] .p-l-10 {
  padding-right: 10px !important;
}
[dir=rtl] .p-l-12 {
  padding-right: 12px !important;
}
[dir=rtl] .p-l-14 {
  padding-right: 14px !important;
}
[dir=rtl] .p-l-15 {
  padding-right: 15px !important;
}
[dir=rtl] .p-l-16 {
  padding-right: 16px !important;
}
[dir=rtl] .p-l-20 {
  padding-right: 20px !important;
}
[dir=rtl] .p-l-24 {
  padding-right: 24px !important;
}
[dir=rtl] .p-l-30 {
  padding-right: 30px !important;
}
[dir=rtl] .p-l-32 {
  padding-right: 32px !important;
}
[dir=rtl] .p-l-48 {
  padding-right: 48px !important;
}
[dir=rtl] .p-l-56 {
  padding-right: 56px !important;
}
[dir=rtl] .p-r-0 {
  padding-left: 0 !important;
}
[dir=rtl] .p-r-2 {
  padding-left: 2px !important;
}
[dir=rtl] .p-r-4 {
  padding-left: 4px !important;
}
[dir=rtl] .p-r-5 {
  padding-left: 5px !important;
}
[dir=rtl] .p-r-6 {
  padding-left: 7px !important;
}
[dir=rtl] .p-r-8 {
  padding-left: 8px !important;
}
[dir=rtl] .p-r-10 {
  padding-left: 10px !important;
}
[dir=rtl] .p-r-12 {
  padding-left: 12px !important;
}
[dir=rtl] .p-r-14 {
  padding-left: 14px !important;
}
[dir=rtl] .p-r-15 {
  padding-left: 15px !important;
}
[dir=rtl] .p-r-16 {
  padding-left: 16px !important;
}
[dir=rtl] .p-r-20 {
  padding-left: 20px !important;
}
[dir=rtl] .p-r-24 {
  padding-left: 24px !important;
}
[dir=rtl] .p-r-30 {
  padding-left: 30px !important;
}
[dir=rtl] .p-r-32 {
  padding-left: 32px !important;
}
[dir=rtl] .p-r-48 {
  padding-left: 48px !important;
}
[dir=rtl] .p-r-56 {
  padding-left: 56px !important;
}
.sidebarNav-horizontal .contentWrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.sidebarNav-horizontal .childBox {
  background: var(--mat-sys-surface);
}
.sidebarNav-horizontal .horizontal-topbar {
  box-shadow: none;
}
.sidebarNav-horizontal .horizontal-topbar .branding {
  padding-left: 0;
}
.sidebarNav-horizontal .horizontal-topbar .container {
  max-width: 1200px;
  display: flex;
  align-items: center;
  width: 100%;
}
.sidebarNav-horizontal .horizontal-sidebar {
  background: var(--mat-sys-surface);
}
.sidebarNav-horizontal .horizontal-navbar {
  position: relative;
  gap: 3px !important;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox {
  position: relative;
  z-index: 5;
  margin: 5px 0;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.mega-menu {
  position: static;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.mega-menu:hover > .childBox > .ddmenu {
  display: inline-block;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.mega-menu > .childBox {
  width: 100%;
  left: 0;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.mega-menu > .childBox > .ddmenu {
  width: 24%;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.two-column:hover > .childBox > .ddmenu {
  display: inline-block;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.two-column > .childBox {
  width: 600px;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.two-column > .childBox > .ddmenu {
  width: 49%;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink {
  padding: 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  height: 40px;
  gap: 10px;
  position: relative;
  font-size: 14px;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: unset;
  width: 0;
  height: 100%;
  opacity: 1;
  z-index: -1;
  border-radius: 18px;
  transition: all 0.4s ease-in-out;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink:hover:before {
  content: "";
  width: 100%;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.primary {
  --menu-active-bg: var(--mat-sys-primary);
  --menu-hover-bg: var(--mat-sys-primary-fixed-dim);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.primary:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.primary:hover > .activeMenu,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.primary.activeMenu {
  color: var(--mat-sys-primary) !important;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.primary:before {
  background-color: var(--mat-sys-primary-fixed-dim);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.secondary {
  --menu-active-bg: var(--mat-sys-secondary);
  --menu-hover-bg: var(--mat-sys-secondary-fixed-dim);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.secondary:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.secondary:hover > .activeMenu,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.secondary.activeMenu {
  color: var(--mat-sys-secondary) !important;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.secondary:before {
  background-color: var(--mat-sys-secondary-fixed-dim);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.success {
  --menu-active-bg: $success;
  --menu-hover-bg: rgba($success, 0.1);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.success:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.success:hover > .activeMenu,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.success.activeMenu {
  color: #4bd08b !important;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.success:before {
  background-color: rgba(75, 208, 139, 0.1);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.erp-purple {
  --menu-active-bg: $erp-purple;
  --menu-hover-bg: $light-erp-purple;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.erp-purple:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.erp-purple:hover > .activeMenu,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.erp-purple.activeMenu {
  color: var(--erp-purple, #7f23f7) !important;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.erp-purple:before {
  background-color: var(--erp-purple-fixed-dim, rgba(127, 35, 247, 0.15));
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.warning {
  --menu-active-bg: $warning;
  --menu-hover-bg: rgba($warning, 0.1);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.warning:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.warning:hover > .activeMenu,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.warning.activeMenu {
  color: #f8c076 !important;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.warning:before {
  background-color: rgba(248, 192, 118, 0.1);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.error {
  --menu-active-bg: $error;
  --menu-hover-bg: var(--mat-sys-error-fixed-dim);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.error:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.error:hover > .activeMenu,
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.error.activeMenu {
  color: var(--mat-sys-error) !important;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .menuLink.error:before {
  background-color: var(--mat-sys-error-fixed-dim);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox:hover > .activeMenu,
.sidebarNav-horizontal .horizontal-navbar .parentBox .activeMenu {
  color: var(--mat-sys-on-background);
  font-weight: 600;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .down-icon .mat-icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .childBox {
  border-radius: 18px;
  box-shadow: var(--mat-sys-level1);
  position: absolute;
  width: 250px;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox .childBox .ddmenu {
  display: none;
  padding: 10px;
  margin: 6px;
  position: relative;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox:hover > .childBox > .ddmenu:hover {
  background-color: rgba(0, 0, 0, 0.025);
  border-radius: 18px;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox:hover > .childBox > .ddmenu:hover:hover > .childBox > .ddmenu:hover {
  background-color: rgba(0, 0, 0, 0.025);
  border-radius: 18px;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox:hover > .childBox > .ddmenu:hover > .childBox {
  left: 230px;
  top: 0px;
  z-index: 9;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox:hover > .childBox > .ddmenu:hover > .childBox > .ddmenu:hover > .childBox {
  left: 235px;
  top: 0;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox:hover > .childBox > .ddmenu {
  display: block;
  padding: 0;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox:hover > .childBox > .ddmenu:hover > .childBox > .ddmenu {
  display: block;
  padding: 0;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox:hover > .childBox > .ddmenu:hover > .childBox > .ddmenu:hover > .childBox > .ddmenu {
  display: block;
  padding: 0;
}
.sidebarNav-horizontal .topbar,
.sidebarNav-horizontal .mainWrapper {
  width: 100%;
  border-radius: 0;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox > .menuLink.activeMenu {
  font-weight: 400;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox > .menuLink.activeMenu:before {
  width: 100%;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive:hover > a {
  border-radius: 18px;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a:before,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a:hover:before,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive:hover > a:before {
  width: 100%;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.primary,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.primary:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive:hover > a.primary {
  color: var(--mat-sys-primary);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.erp-purple,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.erp-purple:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive:hover > a.erp-purple {
  color: var(--erp-purple, #7f23f7);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.secondary,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.secondary:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive:hover > a.secondary {
  color: var(--mat-sys-secondary);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.warning,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.warning:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive:hover > a.warning {
  color: #f8c076;
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.error,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.error:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive:hover > a.error {
  color: var(--mat-sys-error);
}
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.success,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive > a.success:hover,
.sidebarNav-horizontal .horizontal-navbar .parentBox.pactive:hover > a.success {
  color: #4bd08b;
}
.ltr .sidebarNav-horizontal .horizontal-navbar .parentBox:last-child:hover > .childBox > .ddmenu:hover > .childBox {
  right: 250px;
  left: unset;
}
.ltr .sidebarNav-horizontal .horizontal-navbar .parentBox:last-child:hover > .childBox > .ddmenu:hover > .childBox > .ddmenu:hover > .childBox {
  right: 250px;
  left: unset;
}
.rtl .sidebarNav-horizontal .horizontal-navbar .parentBox:last-child:hover > .childBox > .ddmenu:hover > .childBox {
  left: 250px;
  right: unset;
}
.rtl .sidebarNav-horizontal .horizontal-navbar .parentBox:last-child:hover > .childBox > .ddmenu:hover > .childBox > .ddmenu:hover > .childBox {
  left: 250px;
  right: unset;
}
@media (max-width: 1023px) {
  .sidebarNav-horizontal .horizontal-topbar .container {
    padding-left: 0;
    padding-right: 0;
  }
}
html.dark-theme {
  transition: background-color 0.25s ease, color 0.25s ease;
  color: var(--mat-sys-on-surface-variant);
  --erp-sale-bg: #11161d;
  --erp-sale-surface: #171d25;
  --erp-sale-surface-soft: #1c2430;
  --erp-sale-surface-muted: #202a36;
  --erp-sale-surface-strong: #243142;
  --erp-sale-border: #2b3645;
  --erp-sale-border-strong: #344255;
  --erp-sale-text: #eef4ff;
  --erp-sale-text-soft: #9fb0c7;
  --erp-sale-text-muted: #7f90a8;
  --erp-sale-accent: #1f73ff;
  --erp-sale-accent-hover: #2a7fff;
  --erp-sale-accent-rgb:
    31,
    115,
    255;
  --erp-sale-accent-strong: #185fe0;
  --erp-sale-accent-soft: rgba(31, 115, 255, 0.14);
  --erp-sale-accent-glow: rgba(31, 115, 255, 0.28);
  --erp-sale-accent-contrast: #eef4ff;
  --erp-sale-danger: #ef5350;
  --erp-sale-danger-rgb:
    239,
    83,
    80;
  --erp-sale-warning: #f59e0b;
  --erp-sale-warning-rgb:
    245,
    158,
    11;
  --erp-sale-shadow-sm: 0 16px 28px rgba(0, 0, 0, 0.22);
  --erp-sale-shadow-md: 0 26px 48px rgba(0, 0, 0, 0.42);
  --erp-sale-shadow-lg: 0 32px 72px rgba(0, 0, 0, 0.56);
}
html.dark-theme .mat-mdc-menu-panel {
  color: var(--mat-sys-on-background) !important;
}
html.dark-theme .mdc-menu-surface {
  background-color: var(--mat-sys-surface-container-high) !important;
}
html.dark-theme .bg-white,
html.dark-theme .topbar,
html.dark-theme .sidebarNav,
html.dark-theme .page-header,
html.dark-theme .search-part,
html.dark-theme .change-card,
html.dark-theme .glopal-header-container,
html.dark-theme .header-toolbar {
  background-color: var(--mat-sys-surface-container) !important;
  border-color: var(--mat-sys-outline-variant) !important;
  color: var(--mat-sys-on-surface) !important;
}
html.dark-theme .metric-card {
  background-color: var(--mat-sys-surface-container) !important;
  border-color: var(--mat-sys-outline-variant) !important;
  color: var(--erp-sale-text) !important;
}
html.dark-theme .metric-card__content,
html.dark-theme .metric-card__value,
html.dark-theme .metric-card__label {
  color: #fff !important;
}
html.dark-theme .hljs {
  background: var(--mat-sys-surface);
  color: var(--mat-sys-on-surface);
}
html.dark-theme .b-1 {
  border: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .b-b-1 {
  border-bottom: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .b-t-1 {
  border-top: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .b-r-1 {
  border-right: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .b-l-1 {
  border-left: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .customizer-button-group .mat-button-toggle-appearance-standard.mat-button-toggle-checked i-tabler.fill-icon {
  fill: var(--mat-sys-primary);
}
html.dark-theme .logodark {
  display: none;
}
html.light-theme .logolight {
  display: none;
}
html.dark-theme .sale-discount-dialog-panel .mat-mdc-dialog-container .mdc-dialog__surface {
  box-shadow: var(--erp-sale-shadow-lg) !important;
}
html.dark-theme .sale-discount-dialog-panel .type-toggle .mat-button-toggle {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)),
    var(--erp-sale-surface-muted) !important;
  color: var(--erp-sale-text) !important;
}
html.dark-theme .sale-discount-dialog-panel .type-toggle .mat-button-toggle-checked {
  background:
    linear-gradient(
      180deg,
      rgba(var(--erp-sale-accent-rgb), 0.18),
      rgba(var(--erp-sale-accent-rgb), 0.08)),
    var(--erp-sale-surface-soft) !important;
  box-shadow: 0 0 0 3px rgba(var(--erp-sale-accent-rgb), 0.16), 0 16px 24px rgba(var(--erp-sale-accent-rgb), 0.12);
}
html.dark-theme .sale-discount-dialog-panel .value-field .mat-mdc-text-field-wrapper {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.01)),
    rgba(10, 14, 20, 0.22) !important;
}
html.dark-theme .sale-discount-dialog-panel .value-field .mat-mdc-input-element,
html.dark-theme .sale-discount-dialog-panel .value-field .mdc-floating-label,
html.dark-theme .sale-discount-dialog-panel .value-field .mat-mdc-form-field-icon-suffix {
  color: var(--erp-sale-text) !important;
}
html.dark-theme .sale-discount-dialog-panel .dialog-cancel-btn.mat-mdc-outlined-button,
html.dark-theme .sale-discount-dialog-panel .preset-btn.mat-mdc-outlined-button {
  --mdc-outlined-button-outline-color: var(--erp-sale-border) !important;
  --mdc-outlined-button-label-text-color: var(--erp-sale-text) !important;
}
html.dark-theme .sale-discount-dialog-panel .dialog-confirm-btn.mat-mdc-unelevated-button {
  box-shadow: 0 16px 28px rgba(var(--erp-sale-accent-rgb), 0.24);
}
html.dark-theme .sale-discount-dialog-panel .keypad-btn.mat-mdc-unelevated-button {
  --mdc-filled-button-container-color: var(--erp-sale-surface-muted) !important;
  --mdc-filled-button-label-text-color: var(--erp-sale-text) !important;
}
html.dark-theme .sale-discount-dialog-panel .keypad-btn.action-key.mat-mdc-unelevated-button {
  --mdc-filled-button-container-color: rgba(var(--erp-sale-danger-rgb), 0.12) !important;
  --mdc-filled-button-label-text-color: var(--erp-sale-danger) !important;
}
.cal-event-action {
  text-decoration: none;
  margin-left: 5px;
  color: #ffffff;
}
.cal-month-view {
  background-color: transparent !important;
}
.cal-month-view .cal-open-day-events {
  background-color: var(--mat-sys-background, #0b1220) !important;
}
.cal-month-view .cal-day-badge {
  background-color: var(--mat-sys-primary) !important;
}
.cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
  color: var(--mat-sys-primary) !important;
}
.cal-month-view .cal-cell {
  font-size: 14px;
  font-weight: 500;
}
.add-event-date .mat-mdc-icon-button {
  width: 35px !important;
  height: 35px !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
html .cal-week-view,
html .cal-week-view .cal-hour-odd {
  background-color: var(--mat-sys-surface);
}
html .cal-month-view .cal-cell-row:hover,
html .cal-month-view .cal-cell-row .cal-cell:hover,
html .cal-month-view .cal-cell.cal-has-events.cal-open,
html .cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover,
html .cal-week-view .cal-day-headers .cal-header:hover,
html .cal-week-view .cal-day-headers .cal-drag-over {
  background-color: var(--mat-option-focus-state-layer-color);
}
html .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: var(--mat-sys-outline);
}
html .cal-month-view .cal-days .cal-cell-row,
html .cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
html .cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: var(--mat-sys-outline);
}
html .cal-month-view .cal-days,
html .cal-week-view,
html .cal-week-view .cal-day-headers,
html .cal-week-view .cal-time-events,
html .cal-week-view .cal-day-column,
html .cal-week-view .cal-day-headers .cal-header:first-child,
html .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-color: var(--mat-sys-outline);
}
.max-text {
  max-width: 250px;
  line-height: 1.57;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ngx-pagination {
  margin-bottom: 15px !important;
}
.ngx-pagination .current {
  background: var(--mat-sys-primary) !important;
  border-radius: 18px;
}
.ngx-pagination a {
  border-radius: 18px !important;
}
.ngx-pagination button {
  border-radius: 18px !important;
}
html .mail-sidebar {
  width: 240px;
}
@media (max-width: 991px) {
  .email-box .detail-part {
    display: none;
  }
}
@media (max-width: 1279px) {
  .email-box .detail-part.movetodetail {
    display: block;
    position: absolute;
    z-index: 9;
    left: 0;
    background: #ffffff;
  }
}
.add-invoice-list .table .mat-mdc-form-field-infix,
.edit-invoice-list .table .mat-mdc-form-field-infix {
  width: auto;
}
.card-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 225px;
}
.user-category {
  margin-top: -45px;
  z-index: 1;
  position: relative;
}
.featured-card {
  height: 400px;
}
.featured-card:before {
  content: "";
  position: absolute;
  background: rgba(33, 33, 33, 0.6);
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.featured-card .featured-overlay {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 100%;
  height: 100%;
}
.detail-card-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 440px;
}
@media (min-width: 1200px) {
  .blog-title {
    font-size: 36px;
    line-height: 40px;
  }
}
.chat-list {
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
}
.chat-list.even {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
  text-align: right;
}
.chat-app .mat-drawer {
  width: 320px;
}
.chat-app .ng-scroll-content {
  display: block !important;
}
.chat-listing .mdc-list-item {
  height: 75px;
  display: flex;
  align-items: center;
}
.chat-listing .mdc-list-item .mdc-list-item__primary-text {
  margin-bottom: -23px !important;
}
@media (max-width: 1279px) {
  .detail-part.movetodetail {
    display: block;
    position: absolute;
    z-index: 9;
    left: 0;
    background: var(--mat-card-elevated-container-color);
  }
}
@media (max-width: 1279px) {
  .welcome-app {
    display: none;
  }
}
@media (max-width: 959px) {
  .contact-detail-part {
    display: none;
  }
  .contact-detail-part.activeContact {
    position: absolute !important;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: var(--mat-card-elevated-container-color);
  }
}
.uploader .upload-image {
  width: 100px;
  height: auto;
  cursor: pointer;
}
.uploader input[type=file] {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.contact-listing .mdc-list-item__primary-text {
  margin-bottom: -11px !important;
  margin-top: 10px !important;
}
.task-list-section {
  display: flex;
  gap: 24px;
  flex-wrap: nowrap;
}
.task-list-container {
  width: 266px;
  flex-shrink: 0;
}
.connect-sorting {
  padding: 20px;
  border-radius: 18px;
}
.img-task {
  cursor: grab;
}
.cdk-drag-preview {
  box-sizing: border-box;
  border-radius: 18px;
  box-shadow: var(--mat-sys-level2);
}
.cdk-drag-placeholder {
  opacity: 0;
}
.cdk-drag-animating {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.cdk-drop-list {
  padding: 0px 0px 20px 0px !important;
}
.course-header {
  padding: 12px !important;
  color: #ffffff;
}
.course-header.Angular,
.detail-bg.Angular {
  background-color: var(--mat-sys-error);
}
.course-header.Web,
.detail-bg.Web {
  background-color: var(--mat-sys-primary);
}
.course-header.Design,
.detail-bg.Design {
  background-color: var(--mat-sys-secondary);
}
.course-header.Android,
.detail-bg.Android {
  background-color: #f8c076;
}
.todo-item {
  position: relative;
}
.todo-item .edit-view {
  position: absolute;
  left: 0;
  background: #ffffff;
  width: 100%;
  top: 15px;
  padding: 0 13px;
  height: 70px;
}
.app-left-sidebar.mat-sidenav {
  width: 240px;
}
.completed {
  text-decoration: line-through;
}
body .NgxEditor__Wrapper {
  border: 1px solid var(--mat-sys-outline-variant);
}
body .NgxEditor__Seperator {
  border-left: 1px solid var(--mat-sys-outline-variant);
}
body .NgxEditor__MenuBar {
  background-color: var(--mat-card-elevated-container-color);
  border-bottom: 1px solid var(--mat-sys-outline-variant) !important;
}
body .NgxEditor {
  background: var(--mat-card-elevated-container-color);
  color: var(--mat-sys-on-background);
}
body .NgxEditor__MenuItem .NgxEditor__MenuItem--Icon:hover {
  background-color: var(--mat-sys-primary);
  color: var(--mat-sys-background);
}
body .NgxEditor__Dropdown:hover {
  background-color: var(--mat-sys-primary);
}
body .NgxEditor__Dropdown:hover .NgxEditor__Dropdown--Text {
  color: var(--mat-sys-background);
}
body .NgxEditor__Dropdown .NgxEditor__Dropdown--Selected,
body .NgxEditor__Dropdown .NgxEditor__Dropdown--Open {
  color: var(--mat-sys-background);
  background-color: var(--mat-sys-primary);
}
body .NgxEditor__Dropdown .NgxEditor__Dropdown--Item:hover {
  background-color: var(--mat-sys-primary-fixed-dim);
  color: var(--mat-sys-primary);
}
body .NgxEditor__Dropdown .NgxEditor__Dropdown--DropdownMenu {
  background-color: var(--mat-card-elevated-container-color);
}
body .dropzone-box {
  border: 1px dashed var(--mat-sys-primary);
  background-color: var(--mat-sys-primary-fixed-dim);
}
body .dropzone-box .dropzone-content .preview-image {
  width: 100px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}
body .dropzone-box .headline {
  margin: 0;
}
body .cards-circle {
  width: 15px;
  height: 15px;
  border-radius: var(--mat-sys-corner-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mat-sys-primary);
}
body .cards-circle .theme-icon {
  display: none;
}
body .cards-circle.selected .theme-icon {
  display: block;
  color: white;
  width: 18px;
  height: 25px;
}
.blank-layout-container {
  min-height: 100vh;
  display: flex;
  background-size: cover;
  align-items: center;
  overflow: hidden;
}
.auth-title {
  font-size: 36px;
  line-height: 44px;
}
.bg-gredient::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  opacity: 0.3;
  background:
    radial-gradient(
      rgb(210, 241, 223),
      rgb(211, 215, 250),
      rgb(186, 216, 244)) 0% 0%/400% 400%;
  animation: 15s ease 0s infinite normal none running gradient;
  z-index: -1;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 50% 0%;
  }
}
.img-height {
  height: calc(100vh - 83px);
}
.custom-row.row {
  margin-right: -8px;
  margin-left: -8px;
}
.custom-row.row .col-2,
.custom-row.row .col-12 {
  padding-right: 8px;
  padding-left: 8px;
}
.or-border {
  position: relative;
  text-align: center;
}
.or-border:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100px;
  top: 50%;
  height: 1px;
  background: var(--mat-sys-outline-variant);
}
.or-border:after {
  content: "";
  position: absolute;
  right: 0;
  width: 100px;
  top: 50%;
  height: 1px;
  background: var(--mat-sys-outline-variant);
}
.boxed-auth {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.max-width-form {
  max-width: 450px;
}
.mat-mdc-form-field.mat-form-field-invalid .mdc-notched-outline__leading,
.mat-mdc-form-field.mat-form-field-invalid .mdc-notched-outline__notch,
.mat-mdc-form-field.mat-form-field-invalid .mdc-notched-outline__trailing {
  border-color: var(--mat-sys-error) !important;
}
.error-msg {
  position: absolute;
  top: -19px;
  right: 3px;
}
.auth-wrapper {
  max-width: 1600px;
  margin: 10px auto;
  width: 100%;
  display: flex;
  justify-content: center;
}
.shaper-wrapper:before {
  content: "";
  position: absolute;
  left: -125px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  border-radius: 100%;
  background-color: var(--mat-sys-error);
}
.shaper-wrapper:after {
  content: "";
  position: absolute;
  top: -65px;
  right: -60px;
  width: 304px;
  height: 315px;
  background: url("./media/shap-login.png");
}
.auth-card {
  margin: 50px auto;
  max-width: 1130px;
  width: 100%;
  position: relative;
  border-radius: 18px;
  z-index: 1;
  box-shadow: rgba(37, 83, 185, 0.1) 0px 2px 30px 15px;
  background-color: #ffffff;
}
.auth-body {
  padding: 16px 64px 32px;
}
.blank-layout-container--compact {
  background:
    radial-gradient(
      circle at top right,
      rgba(59, 130, 246, 0.16),
      transparent 34%),
    radial-gradient(
      circle at bottom left,
      rgba(255, 138, 105, 0.16),
      transparent 32%),
    linear-gradient(
      135deg,
      #f7faff 0%,
      #ffffff 48%,
      #fff8f3 100%);
}
.auth-wrapper--compact {
  max-width: 1040px;
}
.shaper-wrapper--compact:before {
  left: -95px;
  bottom: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 35%,
      rgba(255, 138, 105, 0.34),
      rgba(255, 138, 105, 0.08) 58%,
      transparent 74%);
}
.shaper-wrapper--compact:after {
  top: -75px;
  right: -45px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 35%,
      rgba(59, 130, 246, 0.34),
      rgba(59, 130, 246, 0.08) 58%,
      transparent 74%);
  opacity: 1;
}
.auth-card--compact {
  max-width: 840px;
  min-width: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(102, 126, 234, 0.08);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(249, 252, 255, 0.98) 100%);
  box-shadow: rgba(37, 83, 185, 0.12) 0px 20px 60px 10px;
}
.auth-card--compact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background:
    linear-gradient(
      90deg,
      #4f46e5 0%,
      #22c55e 50%,
      #0ea5e9 100%);
}
.auth-body--compact {
  padding: 24px 36px 36px;
}
.auth-prod-mark {
  width: 76px;
  height: 76px;
  margin: 0 auto 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      135deg,
      rgba(102, 126, 234, 0.14) 0%,
      rgba(56, 189, 248, 0.16) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 14px 30px rgba(102, 126, 234, 0.14);
}
.auth-prod-mark img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
@media (max-width: 1099px) {
  .auth-body {
    padding: 16px 16px 32px;
  }
  .auth-body--compact {
    padding: 20px 18px 28px;
  }
  .shaper-wrapper {
    padding: 0 15px;
    width: 100%;
  }
  .shaper-wrapper--compact {
    padding: 0 12px;
  }
}
@media (min-width: 1200px) {
  .auth-card {
    min-width: 1130px;
  }
  .auth-card--compact {
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .auth-card--compact {
    border-radius: 24px;
  }
  .auth-body--compact {
    padding: 18px 16px 24px;
  }
}
.h-100vh {
  height: 100vh;
}
.congrats-bg {
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.social-chips img {
  margin-left: -9px;
  border: 2px solid #ffffff;
}
.social-chips img:first-child {
  margin-left: 0;
}
.text-truncate-2 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 215px;
  width: 100%;
}
[dir=ltr] .theme-select .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
  border-top-left-radius: var(--mat-sys-corner-full);
  border-bottom-left-radius: var(--mat-sys-corner-full);
  width: 18px;
}
[dir=ltr] .theme-select .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing {
  border-top-right-radius: var(--mat-sys-corner-full);
  border-bottom-right-radius: var(--mat-sys-corner-full);
}
.theme-select {
  width: 130px;
}
html .mat-expansion-panel:not([class*=mat-elevation-z]) {
  box-shadow: var(--mat-sys-level2);
}
.rounded-bars .apexcharts-bar-series.apexcharts-plot-series .apexcharts-series path {
  clip-path: inset(0 0 5% 0 round 20px);
}
.welcome-img {
  position: absolute;
  right: -33px;
  bottom: -30px;
}
.top-img {
  position: absolute;
  right: 0px;
  top: 0px;
}
.custom-tabs .mat-mdc-tab .mdc-tab__ripple::before {
  border-radius: 18px;
}
.custom-tabs .mat-mdc-tab-label-container {
  border-bottom: 0;
}
.custom-tabs .mat-mdc-tab-body-content {
  overflow: unset;
}
.custom-tabs .mat-mdc-tab-ripple {
  border-radius: 18px;
}
.custom-tabs .mat-mdc-tab {
  border-radius: 18px;
}
.custom-tabs .mat-mdc-tab .mdc-tab-indicator {
  display: none;
}
.custom-tabs .mat-mdc-tab.mdc-tab--active {
  background-color: var(--mat-sys-primary);
}
.custom-tabs .mat-mdc-tab.mdc-tab--active .mdc-tab__text-label {
  color: #ffffff;
}
.custom-tabs .mat-mdc-tab.mdc-tab--active:hover .mdc-tab__text-label,
.custom-tabs .mat-mdc-tab.mdc-tab--active:focus .mdc-tab__text-label {
  color: #ffffff !important;
}
.timeline-border {
  border-radius: 18px;
}
.timeline-border.timeline-border-primary {
  border-left: 5px solid var(--mat-sys-primary);
}
.timeline-border.timeline-border-success {
  border-left: 5px solid #4bd08b;
}
.timeline-border.timeline-border-error {
  border-left: 5px solid var(--mat-sys-error);
}
.timeline-border.timeline-border-accent {
  border-left: 5px solid var(--mat-sys-primary);
}
.timeline {
  position: relative;
}
.timeline .timeline-item {
  position: relative;
  height: 70px;
}
.timeline .timeline-item .time {
  padding: 6px 16px 6px 0;
  min-width: 90px;
  flex-shrink: 0;
}
.timeline .timeline-item .desc {
  padding: 6px 16px;
}
.timeline .timeline-item .timline-border {
  width: 1px;
  height: 100%;
  background-color: var(--mat-sys-outline-variant);
  flex-shrink: 0;
}
.timeline .timeline-item .point {
  flex-direction: column;
}
.timeline .timeline-item .point .timeline-badge {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background-color: transparent;
  flex-shrink: 0;
}
.timeline .timeline-item .point .timeline-badge.border-primary {
  border: 2px solid var(--mat-sys-primary);
}
.timeline .timeline-item .point .timeline-badge.border-accent {
  border: 2px solid var(--mat-sys-primary);
}
.timeline .timeline-item .point .timeline-badge.border-success {
  border: 2px solid #4bd08b;
}
.timeline .timeline-item .point .timeline-badge.border-warning {
  border: 2px solid #f8c076;
}
.timeline .timeline-item .point .timeline-badge.border-error {
  border: 2px solid var(--mat-sys-error);
}
.timeline .timeline-item .point .timeline-border {
  width: 1px;
  height: 100%;
  background-color: var(--mat-sys-outline-variant);
  flex-shrink: 0;
}
.timeline .timeline-item:last-child .timeline-border {
  display: none !important;
}
.profileTabs {
  background-color: var(--mat-sys-surface-bright);
}
.profileTabs .mat-mdc-tab-label-container {
  border-bottom-width: 0;
}
.profileTabs .mat-mdc-tab.mdc-tab-indicator--active .mdc-tab__text-label {
  color: var(--mat-sys-primary) !important;
}
.demos-dd {
  max-width: 1200px !important;
}
.img-overlay {
  overflow: auto;
  position: relative;
  border-radius: 9px 9px 0 0;
}
.img-overlay img {
  margin-bottom: -4px;
}
.img-overlay .overlay-content {
  display: none;
}
.img-overlay:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: var(--mat-sys-primary-fixed-dim);
  opacity: 0.5;
}
.img-overlay:hover .overlay-content {
  display: block;
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  right: 50%;
  top: 50%;
  min-width: 115px;
  z-index: 9;
}
.topbar-xl {
  height: 100px !important;
  background-color: var(--mat-sys-background) !important;
  box-shadow: none !important;
}
.banner-section {
  padding: 80px 0;
}
@media (min-width: 900px) {
  .banner-title {
    font-size: 54px !important;
    line-height: 60px !important;
  }
}
@media (max-width: 1200px) {
  .banner-section {
    padding-top: 60px;
  }
}
.banner-title {
  font-size: 36px;
  line-height: 44px;
}
.banner-subtitle {
  line-height: 25px;
}
.btn-custom.mdc-button {
  height: 56px !important;
  padding: 0 52px !important;
  font-size: 16px;
  border-radius: 30px !important;
}
.btn-custom.mdc-button.sm {
  padding: 0 34px !important;
}
@media (max-width: 767px) {
  .btn-custom.mdc-button {
    padding: 0 36px !important;
  }
}
.slider-wrapper .slider-img {
  animation: 45s linear 0s infinite normal none running slide;
}
@keyframes slide {
  0% {
    transform: "translate3d(0px, 0px, 0px)";
  }
  100% {
    transform: "translate3d(-100%, 0px, 0px)";
  }
}
.demos-card {
  border: 1px solid var(--mat-sys-background);
  border-radius: 18px;
}
.spacer {
  padding: 80px 0 100px;
}
.section-title {
  font-size: 28px;
  line-height: 32px;
}
@media (min-width: 991px) {
  .section-title {
    font-size: 36px;
    line-height: 43px;
  }
}
.bg-extra-light {
  background-color: var(--mat-sys-surface-bright);
}
.demo-slider {
  margin-top: 40px;
}
.demo-slider .demo-slide {
  animation: slide 45s linear infinite;
}
@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.icon-50 {
  height: 50px;
  width: 50px;
}
.bg-dark {
  background-color: #111c2d;
}
.lh-base {
  line-height: 1.75;
}
.spacer-sm {
  padding-top: 60px;
  padding-bottom: 30px;
}
.spacer-bottom {
  padding-bottom: 60px;
}
.section-title2 {
  font-size: 36px;
  line-height: 56px;
  font-weight: 600;
}
.c2a-img {
  position: absolute;
  right: -40px;
  bottom: -32px;
}
.review-subtext {
  font-size: 36px;
  line-height: 43px;
}
.border-white {
  border: 1px solid #ffffff !important;
}
.border-accent {
  border: 1px solid var(--mat-sys-secondary) !important;
}
.border-primary {
  border: 1px solid var(--mat-sys-primary) !important;
}
.border-success {
  border: 1px solid #4bd08b !important;
}
.border-warning {
  border: 1px solid #f8c076 !important;
}
.border-error {
  border: 1px solid var(--mat-sys-error) !important;
}
.hstack {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media (max-width: 767px) {
  .hstack {
    flex-direction: column;
  }
  .bg-size-cover {
    background-size: cover;
  }
}
@media (max-width: 1023px) {
  .review-subtext,
  .section-title2 {
    font-size: 30px;
    line-height: 44px;
  }
}
html .toast-success {
  background-color: #4bd08b;
}
html .toast-error {
  background-color: var(--mat-sys-error);
}
html .toast-warning {
  background-color: #f8c076;
}
html .toast-info {
  background-color: var(--mat-sys-primary);
}
html .toast-container .ngx-toastr {
  box-shadow: var(--mat-sys-level2);
  border-radius: 18px;
}
.plan-title {
  font-size: 50px;
  margin-top: 40px;
  line-height: 50px;
  font-weight: 600;
}
.dollar-sign {
  margin-top: 22px;
  margin-right: 8px;
}
.per-month {
  margin-top: 45px;
  margin-left: 12px;
}
.popular-badge {
  position: absolute;
  right: 16px;
}
.text-decoration-line-through {
  text-decoration: line-through;
}
.cart-btn {
  position: absolute;
  right: 16px;
  top: -21px;
}
.front-topbar {
  border-radius: 0 !important;
}
.front-topbar.fixed-topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--mat-sys-background);
  z-index: 9;
  height: auto !important;
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transition: opacity 0.3s ease;
}
.home-page-details .tab-content .accordion .mat-expansion-indicator svg {
  margin: 0;
}
.home-page-details .tab-content .accordion .mat-expansion-panel-content-wrapper .mat-expansion-panel-body {
  padding: 16px 0px;
}
.mobile-sidebar .mdc-list .mdc-list-item .mat-mdc-button {
  color: var(--mat-sys-on-background);
  min-width: 100%;
  justify-content: flex-start;
}
.mobile-sidebar .mdc-list .mdc-list-item .mat-mdc-button.selected {
  background-color: var(--mat-sys-primary-fixed-dim);
  color: var(--mat-sys-primary);
  transition: background-color 0.3s ease;
}
.question .border-dash-content {
  border: 1px dashed var(--mat-sys-outline);
}
.question .accordion .mat-expansion-panel-header {
  height: auto;
  padding: 16px 20px;
}
.bg-dark-200 {
  background-color: #111c2d !important;
}
.spacing-top-bottom {
  padding: 90px 0;
}
.spacing-left-right {
  padding: 0 90px;
}
.spacing-left {
  padding-left: 90px;
}
.spacing-top {
  padding-top: 90px;
}
.spacing-bottom {
  padding-bottom: 90px;
}
@media (max-width: 959px) {
  .section-sub-title {
    font-size: 32px !important;
  }
  .spacing-top-bottom {
    padding: 60px 0;
  }
  .spacing-left-right {
    padding: 0 60px;
  }
  .spacing-left {
    padding-left: 60px;
  }
  .spacing-top {
    padding-top: 60px;
  }
  .spacing-bottom {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .section-sub-title {
    font-size: 26px !important;
  }
  .spacing-top-bottom {
    padding: 30px 0;
  }
  .spacing-left-right {
    padding: 0 30px;
  }
  .spacing-left {
    padding-left: 30px;
  }
  .spacing-top {
    padding-top: 30px;
  }
  .spacing-bottom {
    padding-bottom: 30px;
  }
}
[dir=rtl] .upgrade-bg {
  left: 0;
  right: unset;
  transform: scaleX(-1);
}
[dir=rtl] td.hljs-ln-line.hljs-ln-numbers {
  padding-left: 10px;
  padding-right: 0;
}
[dir=rtl] .b-l-1 {
  border-left: 0 !important;
  border-right: 1px solid var(--mat-sys-outline);
}
[dir=rtl] .b-r-1 {
  border-right: 0 !important;
  border-left: 1px solid var(--mat-sys-outline);
}
[dir=rtl] .customizerBtn {
  left: 30px;
  right: unset;
}
[dir=rtl] .branding img {
  transform: scaleX(-1);
}
[dir=rtl] .breadcrumb-icon {
  left: 19px;
  right: unset;
}
[dir=rtl] .breadcrumb-item:first-child {
  margin-left: 0;
  margin-right: -20px;
}
[dir=rtl] .breadcrumb-item.active {
  margin-left: 0;
  margin-right: 20px;
}
[dir=rtl] .congrats-bg {
  right: unset;
  left: 0;
}
[dir=rtl] .sidebarNav {
  left: unset;
  right: 0;
}
@media (min-width: 1024px) {
  [dir=rtl] .sidebarNav {
    left: unset;
    right: 20px;
  }
  [dir=rtl].sidebarNav-horizontal .contentWrapper {
    margin-right: 0 !important;
  }
  [dir=rtl] .contentWrapper {
    margin-left: 0 !important;
    margin-right: calc(300px + 20px) !important;
  }
  [dir=rtl].sidebarNav-mini .contentWrapper {
    margin-right: calc(80px + 20px) !important;
    margin-left: 0 !important;
    transition: swift-ease-out(width);
  }
  [dir=rtl].sidebarNav-mini .sidebarNav .sidebar-list .menu-list-item .mdc-list-item__start {
    margin-right: 13px !important;
    margin-left: 7px !important;
  }
  [dir=rtl].sidebarNav-mini .sidebarNav:hover .sidebar-list.mdc-list .mdc-list-group__subheader {
    text-align: right;
  }
  [dir=rtl].sidebarNav-mini .sidebarNav:hover .sidebar-list .menu-list-item .mdc-list-item__start {
    margin-right: 0 !important;
    margin-left: 16px !important;
  }
}
[dir=rtl] .sidebar-list.mdc-list .menu-list-item .mdc-list-item__start {
  margin-right: 5px !important;
  margin-left: 14px !important;
}
html.dark-theme {
  --erp-surface: var(--mat-sys-background);
  --erp-surface-container-low: var(--mat-sys-surface-container-low);
  --erp-surface-container: var(--mat-sys-surface-container);
  --erp-surface-container-high: var( --mat-sys-surface-container-high, var(--mat-sys-surface-container) );
  --erp-outline: rgba(255, 255, 255, 0.14);
  --erp-on-surface: var(--mat-sys-on-surface);
  --erp-on-surface-variant: var(--mat-sys-on-surface-variant);
  --erp-bg-hover: rgba(var(--mat-sys-primary-rgb, 13, 110, 253), 0.08);
  --erp-radius: 16px;
  --erp-radius-sm: 12px;
  --erp-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.22);
  --erp-shadow-md: 0 10px 26px rgba(0, 0, 0, 0.36);
  --erp-shadow-lg: 0 18px 42px rgba(0, 0, 0, 0.48);
  --erp-accent-blue: var(--mat-sys-primary);
  transition: background-color 0.25s ease, color 0.25s ease;
  color: var(--erp-on-surface-variant);
}
html.dark-theme body,
html.dark-theme .mat-drawer-container,
html.dark-theme .mat-drawer-content,
html.dark-theme .contentWrapper {
  background: var(--erp-surface) !important;
  color: var(--erp-on-surface) !important;
}
html.dark-theme .bg-white,
html.dark-theme .bg-light,
html.dark-theme .card-like,
html.dark-theme .search-part,
html.dark-theme .page-header,
html.dark-theme .glopal-header-container,
html.dark-theme .settings-panel,
html.dark-theme .settings-card,
html.dark-theme .table-card,
html.dark-theme .table-wrapper,
html.dark-theme .table-container,
html.dark-theme .tabs-shell,
html.dark-theme .products-container,
html.dark-theme .search-options-card,
html.dark-theme .cart-container-modern,
html.dark-theme .pos-main-wrapper,
html.dark-theme .change-card,
html.dark-theme .header-toolbar {
  background: var(--erp-surface-container) !important;
  border-color: var(--erp-outline) !important;
  color: var(--erp-on-surface) !important;
  border-radius: var(--erp-radius) !important;
}
html.dark-theme app-header .erp-topbar,
html.dark-theme .mat-drawer.sidebarNav,
html.dark-theme .mat-drawer.sidebarNav .mat-drawer-inner-container,
html.dark-theme .sidebarNav app-sidebar .topbar {
  background: var(--erp-surface) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
html.dark-theme app-header .erp-topbar,
html.dark-theme .sidebarNav app-sidebar .topbar {
  border-bottom-color: var(--erp-outline) !important;
}
html.dark-theme .mainWrapper[dir=ltr] .mat-drawer.sidebarNav {
  border-inline-end-color: var(--erp-outline) !important;
}
html.dark-theme .mainWrapper[dir=rtl] .mat-drawer.sidebarNav {
  border-inline-start-color: var(--erp-outline) !important;
}
html.dark-theme .hljs {
  background: var(--mat-sys-surface);
  color: var(--mat-sys-on-surface);
}
html.dark-theme .b-1 {
  border: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .b-b-1 {
  border-bottom: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .b-t-1 {
  border-top: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .b-r-1 {
  border-right: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .b-l-1 {
  border-left: 1px solid var(--mat-sys-outline-variant) !important;
}
html.dark-theme .customizer-button-group .mat-button-toggle-appearance-standard.mat-button-toggle-checked i-tabler.fill-icon {
  fill: var(--mat-sys-primary);
}
html.dark-theme .mat-mdc-card,
html.dark-theme .mdc-card,
html.dark-theme .mat-card {
  background-color: var(--erp-surface-container) !important;
  color: var(--erp-on-surface) !important;
  border: 1px solid var(--erp-outline) !important;
  border-radius: var(--erp-radius) !important;
  box-shadow: var(--erp-shadow-md) !important;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
html.dark-theme .mat-mdc-card:hover,
html.dark-theme .mdc-card:hover,
html.dark-theme .mat-card:hover {
  box-shadow: var(--erp-shadow-lg) !important;
  transform: translateY(-2px);
}
html.dark-theme .mat-mdc-card-title {
  color: var(--erp-on-surface) !important;
}
html.dark-theme .mat-mdc-card-subtitle {
  color: var(--erp-on-surface-variant) !important;
}
html.dark-theme .mdc-dialog__surface,
html.dark-theme .mat-mdc-dialog-surface,
html.dark-theme .mat-mdc-menu-panel,
html.dark-theme .mat-mdc-select-panel,
html.dark-theme .mat-mdc-autocomplete-panel,
html.dark-theme .mat-mdc-datepicker-content {
  background: var(--erp-surface-container-high) !important;
  color: var(--erp-on-surface) !important;
  border: 1px solid var(--erp-outline) !important;
  border-radius: var(--erp-radius) !important;
  box-shadow: var(--erp-shadow-lg) !important;
}
html.dark-theme .mat-mdc-menu-panel {
  color: var(--mat-sys-on-background) !important;
}
html.dark-theme .mdc-menu-surface {
  background-color: var(--mat-sys-surface-container-high) !important;
}
html.dark-theme .mat-mdc-dialog-title,
html.dark-theme .mdc-dialog__title {
  color: var(--erp-on-surface) !important;
  font-weight: 700;
}
html.dark-theme .mat-mdc-dialog-content,
html.dark-theme .mdc-dialog__content {
  color: var(--erp-on-surface-variant) !important;
}
html.dark-theme .mat-mdc-menu-item,
html.dark-theme .mat-menu-item {
  color: var(--erp-on-surface) !important;
  padding: 10px 16px;
}
html.dark-theme .mat-mdc-menu-item:hover:not([disabled]),
html.dark-theme .mat-menu-item:hover:not([disabled]) {
  background-color: var(--erp-bg-hover) !important;
}
html.dark-theme .mat-mdc-table,
html.dark-theme .mat-table {
  background: var(--erp-surface-container) !important;
  border-radius: var(--erp-radius) !important;
  overflow: hidden;
}
html.dark-theme .mat-mdc-header-row,
html.dark-theme .mat-mdc-row,
html.dark-theme .mat-mdc-footer-row {
  background-color: transparent !important;
}
html.dark-theme .mat-mdc-header-cell,
html.dark-theme .mat-sort-header-content {
  background-color: var(--erp-surface-container-low) !important;
  color: var(--erp-on-surface-variant) !important;
  border-bottom-color: var(--erp-outline) !important;
  font-weight: 700;
  font-size: 0.85em;
  letter-spacing: 0.4px;
}
html.dark-theme .mat-mdc-cell,
html.dark-theme .mat-mdc-footer-cell {
  color: var(--erp-on-surface) !important;
  border-bottom-color: var(--erp-outline) !important;
  padding: 12px 16px;
}
html.dark-theme .mat-mdc-row:hover,
html.dark-theme .hover-row:hover {
  background: var(--erp-bg-hover) !important;
}
html.dark-theme .thead {
  background-color: var(--erp-surface-container-low) !important;
  color: var(--erp-on-surface-variant) !important;
}
html.dark-theme .table-container,
html.dark-theme .table-wrapper {
  background-color: var(--erp-surface-container) !important;
  border-color: var(--erp-outline) !important;
  color: var(--erp-on-surface) !important;
  border-radius: var(--erp-radius) !important;
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) {
  width: 100%;
  --mdc-outlined-text-field-label-text-color: rgba(255, 255, 255, 0.6);
  --mdc-outlined-text-field-focus-label-text-color: var(--erp-accent-blue);
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mdc-text-field {
  background: rgba(255, 255, 255, 0.02) !important;
  border-radius: var(--erp-radius-sm) !important;
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mat-mdc-text-field-wrapper {
  background: transparent !important;
  border-radius: var(--erp-radius-sm) !important;
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mdc-notched-outline__leading,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mdc-notched-outline__notch,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mdc-notched-outline__trailing {
  border-color: rgba(255, 255, 255, 0.14) !important;
  box-shadow: none !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field):hover .mdc-notched-outline__leading,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field):hover .mdc-notched-outline__notch,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field):hover .mdc-notched-outline__trailing {
  border-color: rgba(255, 255, 255, 0.22) !important;
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field).mat-focused .mdc-text-field {
  box-shadow: 0 0 0 2px rgba(var(--mat-sys-primary-rgb, 13, 110, 253), 0.12) !important;
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field).mat-focused .mdc-notched-outline__leading,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field).mat-focused .mdc-notched-outline__notch,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field).mat-focused .mdc-notched-outline__trailing {
  border-color: var(--erp-accent-blue) !important;
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mat-mdc-input-element,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) input,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) textarea,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mat-mdc-select-value-text {
  color: rgba(255, 255, 255, 0.92) !important;
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mat-mdc-input-element::placeholder,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) input::placeholder,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) textarea::placeholder {
  color: rgba(255, 255, 255, 0.38) !important;
}
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mat-mdc-form-field-icon-prefix,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mat-mdc-form-field-icon-suffix,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) mat-icon,
html.dark-theme .mat-mdc-form-field:not(.erp-topbar__field) .mat-mdc-select-arrow {
  color: rgba(255, 255, 255, 0.7) !important;
}
html.dark-theme .mat-mdc-option {
  color: var(--erp-on-surface) !important;
}
html.dark-theme .mat-mdc-option .mdc-list-item__primary-text {
  color: var(--erp-on-surface) !important;
}
html.dark-theme .mat-mdc-option:hover:not(.mdc-list-item--disabled),
html.dark-theme .mat-mdc-option.mat-mdc-option-active {
  background-color: var(--erp-bg-hover) !important;
}
html.dark-theme .mat-mdc-tab-header {
  background-color: var(--erp-surface-container-low) !important;
  border-bottom: 1px solid var(--erp-outline) !important;
}
html.dark-theme .mat-mdc-tab-body-wrapper,
html.dark-theme .mat-mdc-tab-body-content {
  background-color: var(--erp-surface-container) !important;
}
html.dark-theme .mat-mdc-tab:not(.mat-mdc-tab-disabled) .mdc-tab__text-label {
  color: var(--erp-on-surface-variant) !important;
}
html.dark-theme .mat-mdc-tab.mdc-tab--active .mdc-tab__text-label {
  color: var(--erp-accent-blue) !important;
  font-weight: 800;
}
html.dark-theme .mat-mdc-tab.mdc-tab--active .mat-mdc-tab-indicator {
  background-color: var(--erp-accent-blue) !important;
}
html.dark-theme .mat-mdc-chip,
html.dark-theme .mdc-evolution-chip,
html.dark-theme .suggest-chip,
html.dark-theme .custom-chip {
  background-color: var(--erp-surface-container-high) !important;
  color: var(--erp-on-surface) !important;
  border: 1px solid var(--erp-outline) !important;
  border-radius: 999px !important;
}
html.dark-theme .mat-mdc-chip .mdc-evolution-chip__text-label,
html.dark-theme .mdc-evolution-chip .mdc-evolution-chip__text-label,
html.dark-theme .suggest-chip .mdc-evolution-chip__text-label,
html.dark-theme .custom-chip .mdc-evolution-chip__text-label {
  color: var(--erp-on-surface) !important;
}
html.dark-theme .mat-mdc-snack-bar-container .mdc-snackbar__surface {
  background-color: var(--erp-surface-container-high) !important;
  color: var(--erp-on-surface) !important;
  border-radius: var(--erp-radius) !important;
  box-shadow: var(--erp-shadow-md) !important;
  border: 1px solid var(--erp-outline) !important;
}
html.dark-theme .mat-mdc-paginator,
html.dark-theme .mat-paginator {
  background-color: var(--erp-surface-container) !important;
  color: var(--erp-on-surface) !important;
  border-top: 1px solid var(--erp-outline) !important;
}
html.dark-theme .mat-mdc-paginator .mat-mdc-select-value,
html.dark-theme .mat-paginator .mat-mdc-select-value {
  color: var(--erp-on-surface) !important;
}
html.dark-theme .mat-divider,
html.dark-theme hr {
  border-color: var(--erp-outline) !important;
}
html.dark-theme .mat-expansion-panel,
html.dark-theme .mat-mdc-expansion-panel {
  background-color: var(--erp-surface-container) !important;
  color: var(--erp-on-surface) !important;
  border-radius: var(--erp-radius) !important;
  border: 1px solid var(--erp-outline) !important;
  box-shadow: var(--erp-shadow-sm) !important;
}
html.dark-theme .mat-expansion-panel-header-title,
html.dark-theme .mat-expansion-panel-header-description {
  color: var(--erp-on-surface) !important;
}
html.dark-theme .mat-stepper-horizontal,
html.dark-theme .mat-stepper-vertical {
  background-color: var(--erp-surface-container) !important;
}
html.dark-theme .mat-step-header:hover {
  background-color: var(--erp-bg-hover) !important;
}
html.dark-theme .mat-step-label {
  color: var(--erp-on-surface-variant) !important;
}
html.dark-theme .mat-step-label.mat-step-label-active {
  color: var(--erp-accent-blue) !important;
  font-weight: 800;
}
html.dark-theme .settings-card,
html.dark-theme .log-card,
html.dark-theme .change-card,
html.dark-theme .box-card,
html.dark-theme .main-card,
html.dark-theme .toggle-card,
html.dark-theme .search-part,
html.dark-theme .controls-main,
html.dark-theme .preview-scroll,
html.dark-theme .tools-panel,
html.dark-theme .page-header,
html.dark-theme .modern-cart-item,
html.dark-theme .modern-stepper,
html.dark-theme .grand-total-box,
html.dark-theme .checkout-shell,
html.dark-theme .summary-aside,
html.dark-theme .checkout-footer,
html.dark-theme .checkout-header,
html.dark-theme .pos-upsert-container,
html.dark-theme .filter-btn,
html.dark-theme .radio-card {
  background-color: var(--erp-surface-container) !important;
  color: var(--erp-on-surface) !important;
  border-color: var(--erp-outline) !important;
  border-radius: var(--erp-radius) !important;
  border: 1px solid var(--erp-outline) !important;
  box-shadow: var(--erp-shadow-sm) !important;
}
html.dark-theme .checkout-shell h2,
html.dark-theme .radio-card .mdc-form-field {
  color: var(--erp-on-surface) !important;
}
html.dark-theme .template-tabs,
html.dark-theme .template-tabs .tab {
  background-color: var(--erp-surface-container-low) !important;
  color: var(--erp-on-surface) !important;
  border-radius: var(--erp-radius) var(--erp-radius) 0 0 !important;
  border: 1px solid var(--erp-outline) !important;
  border-bottom: none !important;
}
html.dark-theme .receipts-builder .sub,
html.dark-theme .receipts-builder .section-tabs .sec-item {
  color: var(--erp-on-surface-variant) !important;
}
html.dark-theme .search-input-container .search-field .mat-mdc-text-field-wrapper {
  background-color: var(--erp-surface-container-low) !important;
  border-radius: var(--erp-radius) !important;
}
html.dark-theme .page-title,
html.dark-theme .title,
html.dark-theme .item-name,
html.dark-theme .label-group {
  color: var(--erp-on-surface) !important;
  font-weight: 900;
}
html.dark-theme .page-subtitle,
html.dark-theme .sub,
html.dark-theme .count-tag,
html.dark-theme .calc-row,
html.dark-theme .empty-state {
  color: var(--erp-on-surface-variant) !important;
}
html.dark-theme .pos-open-box-container .page-subtitle,
html.dark-theme .pos-open-box-container .modern-table .mat-mdc-header-cell {
  color: var(--erp-on-surface-variant) !important;
}
html.dark-theme .settings-container {
  background: var(--erp-surface) !important;
  color: var(--erp-on-surface) !important;
}
html.dark-theme .settings-container .page-header,
html.dark-theme .settings-container .search-part,
html.dark-theme .settings-container .settings-card,
html.dark-theme .settings-container .no-results {
  background: var(--erp-surface-container) !important;
  border: 1px solid var(--erp-outline) !important;
  border-radius: var(--erp-radius) !important;
  box-shadow: var(--erp-shadow-sm) !important;
  color: var(--erp-on-surface) !important;
}
html.dark-theme .settings-container h1,
html.dark-theme .settings-container .card-title,
html.dark-theme .settings-container .card-description,
html.dark-theme .settings-container .card-links a {
  color: var(--erp-on-surface) !important;
}
html.dark-theme .settings-container .card-subtitle,
html.dark-theme .settings-container .no-results {
  color: var(--erp-on-surface-variant) !important;
}
html.dark-theme .settings-container .settings-card:hover {
  background: var(--erp-bg-hover) !important;
  box-shadow: var(--erp-shadow-md) !important;
  transform: translateY(-1px);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}
html.dark-theme .settings-container .card-links a:hover {
  background: var(--erp-bg-hover) !important;
}
html.dark-theme .settings-container .search-part .mat-mdc-text-field-wrapper,
html.dark-theme .settings-container .search-part .mdc-text-field {
  background: var(--erp-surface-container-low) !important;
}
html.dark-theme .tree-table-container .search-container {
  width: 100% !important;
  background: var(--erp-surface-container) !important;
  border: 1px solid var(--erp-outline) !important;
  border-radius: var(--erp-radius) !important;
  color: var(--erp-on-surface) !important;
}
html.dark-theme .logodark {
  display: none;
}
html.light-theme .logolight {
  display: none;
}
.erp-checkout-dialog .mat-mdc-dialog-container {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  --mdc-dialog-container-color: transparent;
  --mdc-dialog-container-shape: 20px;
}
.erp-checkout-dialog .mat-mdc-dialog-container .mdc-dialog__container {
  padding: 0 !important;
  background: transparent !important;
}
.erp-checkout-dialog .mat-mdc-dialog-container .mdc-dialog__surface {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
  border-radius: 20px !important;
  border: 0 !important;
  outline: 0 !important;
}
html {
  --erp-sale-bg: #11161d;
  --erp-sale-surface: #171d25;
  --erp-sale-surface-soft: #1c2430;
  --erp-sale-surface-muted: #202a36;
  --erp-sale-surface-strong: #243142;
  --erp-sale-border: #2b3645;
  --erp-sale-border-strong: #344255;
  --erp-sale-text: #eef4ff;
  --erp-sale-text-soft: #9fb0c7;
  --erp-sale-text-muted: #7f90a8;
  --erp-sale-accent: #1f73ff;
  --erp-sale-accent-hover: #2a7fff;
  --erp-sale-accent-rgb:
    31,
    115,
    255;
  --erp-sale-accent-strong: #185fe0;
  --erp-sale-accent-soft: rgba(31, 115, 255, 0.14);
  --erp-sale-accent-glow: rgba(31, 115, 255, 0.28);
  --erp-sale-accent-contrast: #eef4ff;
  --erp-sale-danger: #ef5350;
  --erp-sale-danger-rgb:
    239,
    83,
    80;
  --erp-sale-warning: #f59e0b;
  --erp-sale-warning-rgb:
    245,
    158,
    11;
  --erp-sale-shadow-sm: 0 16px 28px rgba(0, 0, 0, 0.22);
  --erp-sale-shadow-md: 0 26px 48px rgba(0, 0, 0, 0.42);
  --erp-sale-shadow-lg: 0 32px 72px rgba(0, 0, 0, 0.56);
}
.cart-container-modern .mat-mdc-icon-button,
.sale-discount-dialog-panel .mat-mdc-icon-button {
  border-radius: 12px;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}
.cart-container-modern .mat-mdc-icon-button:hover,
.sale-discount-dialog-panel .mat-mdc-icon-button:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
.cart-container-modern .mat-mdc-outlined-button,
.sale-discount-dialog-panel .mat-mdc-outlined-button {
  --mdc-outlined-button-container-shape: 14px;
  --mdc-outlined-button-outline-color: var(--erp-sale-border);
  --mdc-outlined-button-label-text-color: var(--erp-sale-text-soft);
  --mat-outlined-button-state-layer-color: var(--erp-sale-accent);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025),
      rgba(255, 255, 255, 0.01)),
    rgba(10, 14, 20, 0.16);
  letter-spacing: 0.01em;
  font-weight: 700;
}
.cart-container-modern .mat-mdc-unelevated-button,
.sale-discount-dialog-panel .mat-mdc-unelevated-button {
  --mdc-filled-button-container-shape: 14px;
  letter-spacing: 0.01em;
  font-weight: 700;
}
.sale-discount-dialog-panel {
  --mdc-dialog-container-color: transparent;
  --mdc-dialog-container-shape: 24px;
}
.sale-discount-dialog-panel .mat-mdc-dialog-container {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.sale-discount-dialog-panel .mat-mdc-dialog-container .mdc-dialog__container {
  padding: 0 !important;
  background: transparent !important;
}
.sale-discount-dialog-panel .mat-mdc-dialog-container .mdc-dialog__surface {
  padding: 0 !important;
  background: transparent !important;
  box-shadow: var(--erp-sale-shadow-lg) !important;
  overflow: hidden !important;
  border-radius: 24px !important;
  border: 0 !important;
  outline: 0 !important;
  max-height: 88vh !important;
}
.sale-discount-dialog-panel .type-toggle.mat-button-toggle-group {
  border: 0 !important;
  background: transparent !important;
}
.sale-discount-dialog-panel .type-toggle .mat-button-toggle {
  flex: 1 1 0;
  border: 1px solid var(--erp-sale-border) !important;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01)),
    var(--erp-sale-surface-muted);
  color: var(--erp-sale-text-soft);
}
.sale-discount-dialog-panel .type-toggle .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle,
.sale-discount-dialog-panel .type-toggle .mat-button-toggle-group-appearance-standard .mat-button-toggle:first-of-type {
  border-inline-start: 1px solid var(--erp-sale-border) !important;
}
.sale-discount-dialog-panel .type-toggle .mat-button-toggle-checked {
  border-color: rgba(var(--erp-sale-accent-rgb), 0.3) !important;
  background:
    linear-gradient(
      180deg,
      rgba(var(--erp-sale-accent-rgb), 0.18),
      rgba(var(--erp-sale-accent-rgb), 0.08)),
    var(--erp-sale-surface-soft) !important;
  color: var(--erp-sale-accent) !important;
  box-shadow: 0 0 0 3px rgba(var(--erp-sale-accent-rgb), 0.16), 0 16px 24px rgba(var(--erp-sale-accent-rgb), 0.12);
}
.sale-discount-dialog-panel .type-toggle .mat-button-toggle-button {
  height: 40px;
}
.sale-discount-dialog-panel .type-toggle .mat-button-toggle-label-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0 12px;
  line-height: 40px;
  font-weight: 700;
}
.sale-discount-dialog-panel .type-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(var(--erp-sale-accent-rgb), 0.08) !important;
}
.sale-discount-dialog-panel .value-field .mat-mdc-text-field-wrapper {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.01)),
    rgba(10, 14, 20, 0.22) !important;
  border-radius: 14px !important;
}
.sale-discount-dialog-panel .value-field .mdc-notched-outline__leading,
.sale-discount-dialog-panel .value-field .mdc-notched-outline__notch,
.sale-discount-dialog-panel .value-field .mdc-notched-outline__trailing {
  border-color: var(--erp-sale-border) !important;
}
.sale-discount-dialog-panel .value-field.mat-focused .mdc-notched-outline__leading,
.sale-discount-dialog-panel .value-field.mat-focused .mdc-notched-outline__notch,
.sale-discount-dialog-panel .value-field.mat-focused .mdc-notched-outline__trailing {
  border-color: rgba(var(--erp-sale-accent-rgb), 0.34) !important;
}
.sale-discount-dialog-panel .value-field .mat-mdc-input-element,
.sale-discount-dialog-panel .value-field .mdc-floating-label,
.sale-discount-dialog-panel .value-field .mat-mdc-form-field-icon-suffix {
  color: var(--erp-sale-text) !important;
}
.sale-discount-dialog-panel .dialog-cancel-btn.mat-mdc-outlined-button,
.sale-discount-dialog-panel .preset-btn.mat-mdc-outlined-button {
  --mdc-outlined-button-outline-color: var(--erp-sale-border-strong);
  --mdc-outlined-button-label-text-color: var(--erp-sale-text-soft);
}
.sale-discount-dialog-panel .dialog-confirm-btn.mat-mdc-unelevated-button {
  --mdc-filled-button-container-color: var(--erp-sale-accent);
  --mdc-filled-button-label-text-color: var(--erp-sale-accent-contrast);
  --mat-filled-button-state-layer-color: var(--erp-sale-accent-contrast);
  box-shadow: 0 16px 28px rgba(var(--erp-sale-accent-rgb), 0.24);
}
.sale-discount-dialog-panel .keypad-btn.mat-mdc-unelevated-button {
  --mdc-filled-button-container-color: var(--erp-sale-surface-muted);
  --mdc-filled-button-label-text-color: var(--erp-sale-text);
  --mat-filled-button-state-layer-color: var(--erp-sale-accent);
  box-shadow: none;
}
.sale-discount-dialog-panel .keypad-btn.action-key.mat-mdc-unelevated-button {
  --mdc-filled-button-container-color: rgba(var(--erp-sale-danger-rgb), 0.12);
  --mdc-filled-button-label-text-color: var(--erp-sale-danger);
  --mat-filled-button-state-layer-color: var(--erp-sale-danger);
}
.sale-discount-dialog-panel .dialog-close-btn,
.sale-discount-dialog-panel .value-clear-btn {
  color: var(--erp-sale-text-muted) !important;
}
.erp-avatar-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      #5b61ff 0%,
      #7c3aed 100%);
  color: #fff !important;
  font-weight: 700;
  flex: 0 0 auto;
  line-height: 1;
  -webkit-user-select: none;
  user-select: none;
  font-family: Roboto, sans-serif !important;
}
.erp-avatar-initial--sm {
  width: 40px;
  height: 40px;
  font-size: 16px;
  border: 2px solid rgba(124, 58, 237, 0.14);
}
.erp-avatar-initial--lg {
  width: 95px;
  height: 95px;
  font-size: 36px;
  border: 3px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.1);
}

/* node_modules/ngx-toastr/toastr.css */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
.toast-info {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+);
}
.toast-error {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+);
}
.toast-success {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==);
}
.toast-warning {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==);
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}

/* node_modules/angular-calendar/css/angular-calendar.css */
.cal-month-view .cal-header {
  text-align: center;
  font-weight: bolder;
}
.cal-month-view .cal-header .cal-cell {
  padding: 5px 0;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}
.cal-month-view .cal-days {
  border: 1px solid;
  border-bottom: 0;
}
.cal-month-view .cal-cell-top {
  min-height: 78px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.cal-month-view .cal-cell-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cal-month-view .cal-cell {
  float: left;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.cal-month-view .cal-cell .cal-event {
  pointer-events: all !important;
}
.cal-month-view .cal-day-cell {
  min-height: 100px;
}
.cal-month-view .cal-day-cell:not(:last-child) {
  border-right: 1px solid;
}
[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right: initial;
  border-left: 1px solid;
}
.cal-month-view .cal-days .cal-cell-row {
  border-bottom: 1px solid;
}
.cal-month-view .cal-day-badge {
  margin-top: 18px;
  margin-left: 10px;
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
  float: left;
}
.cal-month-view .cal-day-number {
  font-size: 1.2em;
  font-weight: 400;
  opacity: 0.5;
  margin-top: 15px;
  margin-right: 15px;
  float: right;
  margin-bottom: 10px;
}
.cal-month-view .cal-events {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin: 3px;
  line-height: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cal-month-view .cal-event {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 2px;
}
.cal-month-view .cal-day-cell.cal-in-month.cal-has-events {
  cursor: pointer;
}
.cal-month-view .cal-day-cell.cal-out-month .cal-day-number {
  opacity: 0.1;
  cursor: default;
}
.cal-month-view .cal-day-cell.cal-today .cal-day-number {
  font-size: 1.9em;
}
.cal-month-view .cal-open-day-events {
  padding: 15px;
}
.cal-month-view .cal-open-day-events .cal-event {
  position: relative;
  top: 2px;
}
.cal-month-view .cal-out-month .cal-day-badge,
.cal-month-view .cal-out-month .cal-event {
  opacity: 0.3;
}
.cal-month-view .cal-draggable {
  cursor: move;
}
.cal-month-view .cal-drag-active * {
  pointer-events: none;
}
.cal-month-view .cal-event-title {
  cursor: pointer;
}
.cal-month-view .cal-event-title:hover {
  text-decoration: underline;
}
.cal-month-view {
  background-color: #fff;
}
.cal-month-view .cal-cell-row:hover {
  background-color: #fafafa;
}
.cal-month-view .cal-cell-row .cal-cell:hover,
.cal-month-view .cal-cell.cal-has-events.cal-open {
  background-color: #ededed;
}
.cal-month-view .cal-days {
  border-color: #e1e1e1;
}
.cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: #e1e1e1;
}
[dir=rtl] .cal-month-view .cal-day-cell:not(:last-child) {
  border-right-color: initial;
  border-left-color: #e1e1e1;
}
.cal-month-view .cal-days .cal-cell-row {
  border-bottom-color: #e1e1e1;
}
.cal-month-view .cal-day-badge {
  background-color: #b94a48;
  color: #fff;
}
.cal-month-view .cal-event {
  background-color: #1e90ff;
  border-color: #d1e8ff;
  color: #fff;
}
.cal-month-view .cal-day-cell.cal-weekend .cal-day-number {
  color: #8b0000;
}
.cal-month-view .cal-day-cell.cal-today {
  background-color: #e8fde7;
}
.cal-month-view .cal-day-cell.cal-drag-over {
  background-color: #e0e0e0 !important;
}
.cal-month-view .cal-open-day-events {
  color: #fff;
  background-color: #555;
  -webkit-box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
  box-shadow: inset 0 0 15px 0 rgba(0, 0, 0, 0.5);
}
.cal-week-view {
}
.cal-week-view * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.cal-week-view .cal-day-headers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 70px;
  border: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers {
  padding-left: initial;
  padding-right: 70px;
}
.cal-week-view .cal-day-headers .cal-header {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  padding: 5px;
}
.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right: initial;
  border-left: 1px solid;
}
.cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: 1px solid;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left: initial;
  border-right: 1px solid;
}
.cal-week-view .cal-day-headers span {
  font-weight: 400;
  opacity: 0.5;
}
.cal-week-view .cal-day-column {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-left: solid 1px;
}
[dir=rtl] .cal-week-view .cal-day-column {
  border-left: initial;
  border-right: solid 1px;
}
.cal-week-view .cal-event {
  font-size: 12px;
  border: 1px solid;
  direction: ltr;
}
.cal-week-view .cal-time-label-column {
  width: 70px;
  height: 100%;
}
.cal-week-view .cal-current-time-marker {
  position: absolute;
  width: 100%;
  height: 2px;
  z-index: 2;
}
.cal-week-view .cal-all-day-events {
  border: solid 1px;
  border-top: 0;
  border-bottom-width: 3px;
  padding-top: 3px;
  position: relative;
}
.cal-week-view .cal-all-day-events .cal-day-columns {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  z-index: 0;
}
.cal-week-view .cal-all-day-events .cal-events-row {
  position: relative;
  height: 31px;
  margin-left: 70px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-events-row {
  margin-left: initial;
  margin-right: 70px;
}
.cal-week-view .cal-all-day-events .cal-event-container {
  display: inline-block;
  position: absolute;
}
.cal-week-view .cal-all-day-events .cal-event-container.resize-active {
  z-index: 1;
  pointer-events: none;
}
.cal-week-view .cal-all-day-events .cal-event {
  padding: 0 5px;
  margin-left: 2px;
  margin-right: 2px;
  height: 28px;
  line-height: 28px;
}
.cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-starts-within-week .cal-event {
  border-top-left-radius: initial;
  border-bottom-left-radius: initial;
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
}
.cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-ends-within-week .cal-event {
  border-top-right-radius: initial;
  border-bottom-right-radius: initial;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.cal-week-view .cal-all-day-events .cal-time-label-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 14px;
}
.cal-week-view .cal-all-day-events .cal-resize-handle {
  width: 6px;
  height: 100%;
  cursor: col-resize;
  position: absolute;
  top: 0;
}
.cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: 0;
}
[dir=rtl] .cal-week-view .cal-all-day-events .cal-resize-handle.cal-resize-handle-after-end {
  right: initial;
  left: 0;
}
.cal-week-view .cal-event,
.cal-week-view .cal-header {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cal-week-view .cal-drag-active {
  pointer-events: none;
  z-index: 1;
}
.cal-week-view .cal-drag-active * {
  pointer-events: none;
}
.cal-week-view .cal-time-events {
  position: relative;
  border: solid 1px;
  border-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.cal-week-view .cal-time-events .cal-day-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.cal-week-view .cal-time-events .cal-day-column {
  position: relative;
}
.cal-week-view .cal-time-events .cal-events-container {
  position: relative;
}
.cal-week-view .cal-time-events .cal-event-container {
  position: absolute;
  z-index: 1;
}
.cal-week-view .cal-time-events .cal-event {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px;
  padding: 0 5px;
  line-height: 25px;
}
.cal-week-view .cal-time-events .cal-resize-handle {
  width: 100%;
  height: 4px;
  cursor: row-resize;
  position: absolute;
}
.cal-week-view .cal-time-events .cal-resize-handle.cal-resize-handle-after-end {
  bottom: 0;
}
.cal-week-view .cal-hour-segment {
  position: relative;
}
.cal-week-view .cal-hour-segment::after {
  content: "\a0";
}
.cal-week-view .cal-event-container:not(.cal-draggable) {
  cursor: pointer;
}
.cal-week-view .cal-draggable {
  cursor: move;
}
.cal-week-view mwl-calendar-week-view-hour-segment,
.cal-week-view .cal-hour-segment {
  display: block;
}
.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom: thin dashed;
}
.cal-week-view .cal-time {
  font-weight: bold;
  padding-top: 5px;
  width: 70px;
  text-align: center;
}
.cal-week-view .cal-hour-segment.cal-after-hour-start .cal-time {
  display: none;
}
.cal-week-view .cal-starts-within-day .cal-event {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.cal-week-view .cal-ends-within-day .cal-event {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.cal-week-view {
  background-color: #fff;
  border-top: solid 1px #e1e1e1;
}
.cal-week-view .cal-day-headers {
  border-color: #e1e1e1;
  border-top: 0;
}
.cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:not(:last-child) {
  border-right-color: initial;
  border-left: solid 1px #e1e1e1 !important;
}
.cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-headers .cal-header:first-child {
  border-left-color: initial;
  border-right-color: #e1e1e1;
}
.cal-week-view .cal-day-headers .cal-header:hover,
.cal-week-view .cal-day-headers .cal-drag-over {
  background-color: #ededed;
}
.cal-week-view .cal-day-column {
  border-left-color: #e1e1e1;
}
[dir=rtl] .cal-week-view .cal-day-column {
  border-left-color: initial;
  border-right-color: #e1e1e1;
}
.cal-week-view .cal-event {
  background-color: #d1e8ff;
  border-color: #1e90ff;
  color: #1e90ff;
}
.cal-week-view .cal-all-day-events {
  border-color: #e1e1e1;
}
.cal-week-view .cal-header.cal-today {
  background-color: #e8fde7;
}
.cal-week-view .cal-header.cal-weekend span {
  color: #8b0000;
}
.cal-week-view .cal-time-events {
  border-color: #e1e1e1;
}
.cal-week-view .cal-time-events .cal-day-columns:not(.cal-resize-active) .cal-hour-segment:hover {
  background-color: #ededed;
}
.cal-week-view .cal-hour-odd {
  background-color: #fafafa;
}
.cal-week-view .cal-drag-over .cal-hour-segment {
  background-color: #ededed;
}
.cal-week-view .cal-hour:not(:last-child) .cal-hour-segment,
.cal-week-view .cal-hour:last-child :not(:last-child) .cal-hour-segment {
  border-bottom-color: #e1e1e1;
}
.cal-week-view .cal-current-time-marker {
  background-color: #ea4334;
}
.cal-day-view {
}
.cal-day-view mwl-calendar-week-view-header {
  display: none;
}
.cal-day-view .cal-events-container {
  margin-left: 70px;
}
[dir=rtl] .cal-day-view .cal-events-container {
  margin-left: initial;
  margin-right: 70px;
}
.cal-day-view .cal-day-column {
  border-left: 0;
}
.cal-day-view .cal-current-time-marker {
  margin-left: 70px;
  width: calc(100% - 70px);
}
[dir=rtl] .cal-day-view .cal-current-time-marker {
  margin-left: initial;
  margin-right: 70px;
}
.cal-tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-style: normal;
  font-weight: normal;
  letter-spacing: normal;
  line-break: auto;
  line-height: 1.5;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  white-space: normal;
  word-break: normal;
  word-spacing: normal;
  font-size: 11px;
  word-wrap: break-word;
  opacity: 0.9;
}
.cal-tooltip.cal-tooltip-top {
  padding: 5px 0;
  margin-top: -3px;
}
.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
}
.cal-tooltip.cal-tooltip-right {
  padding: 0 5px;
  margin-left: 3px;
}
.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
}
.cal-tooltip.cal-tooltip-bottom {
  padding: 5px 0;
  margin-top: 3px;
}
.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
}
.cal-tooltip.cal-tooltip-left {
  padding: 0 5px;
  margin-left: -3px;
}
.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
}
.cal-tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  text-align: center;
  border-radius: 0.25rem;
}
.cal-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.cal-tooltip.cal-tooltip-top .cal-tooltip-arrow {
  border-top-color: #000;
}
.cal-tooltip.cal-tooltip-right .cal-tooltip-arrow {
  border-right-color: #000;
}
.cal-tooltip.cal-tooltip-bottom .cal-tooltip-arrow {
  border-bottom-color: #000;
}
.cal-tooltip.cal-tooltip-left .cal-tooltip-arrow {
  border-left-color: #000;
}
.cal-tooltip-inner {
  color: #fff;
  background-color: #000;
}

/* node_modules/highlight.js/styles/atom-one-dark.min.css */
pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}
code.hljs {
  padding: 3px 5px;
}
.hljs {
  color: #abb2bf;
  background: #282c34;
}
.hljs-comment,
.hljs-quote {
  color: #5c6370;
  font-style: italic;
}
.hljs-doctag,
.hljs-formula,
.hljs-keyword {
  color: #c678dd;
}
.hljs-deletion,
.hljs-name,
.hljs-section,
.hljs-selector-tag,
.hljs-subst {
  color: #e06c75;
}
.hljs-literal {
  color: #56b6c2;
}
.hljs-addition,
.hljs-attribute,
.hljs-meta .hljs-string,
.hljs-regexp,
.hljs-string {
  color: #98c379;
}
.hljs-attr,
.hljs-number,
.hljs-selector-attr,
.hljs-selector-class,
.hljs-selector-pseudo,
.hljs-template-variable,
.hljs-type,
.hljs-variable {
  color: #d19a66;
}
.hljs-bullet,
.hljs-link,
.hljs-meta,
.hljs-selector-id,
.hljs-symbol,
.hljs-title {
  color: #61aeee;
}
.hljs-built_in,
.hljs-class .hljs-title,
.hljs-title.class_ {
  color: #e6c07b;
}
.hljs-emphasis {
  font-style: italic;
}
.hljs-strong {
  font-weight: 700;
}
.hljs-link {
  text-decoration: underline;
}

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