/* src/styles/index.scss */
:root {
  --primary: #0a5fba;
  --danger-red: crimson;
  --primary-light-gradient:
    linear-gradient(
      90deg,
      #aca9ff 0%,
      rgba(172, 169, 255, 0) 91.25%);
  --primary-dark-gradient:
    linear-gradient(
      270deg,
      var(--primary) 0%,
      #0da8db 100%);
  --red-dark-gradient:
    linear-gradient(
      270deg,
      #c0170e 0%,
      #ff3b30 100%);
  --border-gray: #0000001a;
  --bg-gray: #f9fafb;
  --medium-gray: #9a9aa9;
  --medium-black: #101828;
  --dark-black: #000000;
  --primary-light: #faf5ff;
  --white-original: #fff;
  --light-gray: #eaecf0;
  --dark-gray: #475467;
  --light-green: #dcfce7;
  --light-blue: #dbeafe;
  --light-yellow: #fef9c2;
  --dark-green: #008236;
  --dark-blue: #1447e6;
  --dark-yellow: #a65f00;
  --white-constant: #fff;
  --light-purple: #f3e8ff;
  --dark-purple: #8200db;
  --extra-dark-purple: #59168b;
  --medium-green: #00c950;
  --navy-blue: #1c398e;
  --field-gray: #f3f3f5;
  --light-red: #ffd7d7;
  --english-red: #ff1212;
  --danger-red: crimson;
  --medium-orange: #fdb022;
  --border-shadow: 0px 2.11px 4.22px -1.06px #1717171a;
  --fs-heading-xl: 24px;
  --fs-heading-md: 22px;
  --fs-heading-lg: 20px;
  --fs-heading-sm: 18px;
  --fs-body: 16px;
  --fs-medium: 15px;
  --fs-regular: 14px;
  --fs-small: 13px;
  --fs-tiny: 12px;
  --fs-mini: 10px;
  --fw-thin: 100;
  --fw-extra-light: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --fw-extra-bold: 800;
  --fw-black: 900;
  --sidebar-width: 218px;
  --font-inter:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
button {
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
}
.rounded-btn {
  width: inherit;
  height: 42px;
  border-radius: 8px;
  background: transparent;
  border: none;
  display: flex;
  gap: 0.8rem;
  padding: 0 1rem;
  justify-content: center;
  align-items: center;
  color: var(--white-constant);
  font-size: var(--fs-small);
  font-weight: var(--fs-regular);
}
.rounded-btn.primary-gradient {
  background: var(--primary-dark-gradient);
}
.rounded-btn.gray {
  border: 1px solid var(--border-gray);
  color: var(--dark-black);
}
.page-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.page-header .left-section {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.page-header .left-section .page-heading {
  font-size: var(--fs-heading-xl);
  color: var(--black-medium);
  font-weight: var(--fw-bold);
}
.page-header .left-section .page-description {
  font-size: var(--fs-body);
  font-weight: var(--fs-regular);
  color: var(--medium-gray);
}
.page-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.section-bordered-shadow {
  box-shadow: var(--border-shadow);
  border: 1px solid var(--border-gray);
  border-radius: 10px;
}
.filter-section {
  width: 100%;
  height: 54px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.filter-section .left-section {
  width: 100%;
  height: 100%;
}
.filter-section .left-section .search-section {
  width: 100%;
  height: 100%;
  padding: 0 1rem;
  color: var(--medium-gray);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
}
.filter-section .left-section .search-section input {
  width: 100%;
  height: 100%;
}
.filter-section .right-section {
  height: 100%;
  display: flex;
  gap: 1rem;
}
.filter-section .right-section .filter-icon {
  height: 100%;
  cursor: pointer;
}
.filter-section .right-section .filter-icon span,
.filter-section .right-section .filter-icon svg {
  height: 100%;
}
.info-card {
  box-shadow: var(--border-shadow);
  border: none;
  border-radius: 10px;
  width: 260px;
  height: 120px;
  display: flex;
  padding: 0 2rem;
  align-items: center;
  gap: 1rem;
}
.info-card.lightblue {
  border: 1px solid var(--light-blue);
  background: var(--light-blue);
  box-shadow: unset;
}
.info-card.lightblue .detail-section .detail {
  color: var(--navy-blue);
}
.info-card.lightblue .detail-section .title {
  color: var(--dark-blue);
}
.info-card.lightgreen {
  border: 1px solid var(--light-green);
  background: var(--light-green);
  box-shadow: unset;
}
.info-card.lightgreen .detail-section .detail {
  color: var(--dark-green);
}
.info-card.lightgreen .detail-section .title {
  color: var(--medium-green);
}
.info-card.lightpurple {
  border: 1px solid var(--light-purple);
  background: var(--light-purple);
  box-shadow: unset;
}
.info-card.lightpurple .detail-section .detail {
  color: var(--extra-dark-purple);
}
.info-card.lightpurple .detail-section .title {
  color: var(--dark-purple);
}
.info-card .detail-section .detail {
  font-size: var(--fs-heading-sm);
  font-weight: var(--fw-extra-bold);
  color: var(--dark-black);
}
.info-card .detail-section .title {
  font-size: var(--fs-regular);
  font-weight: var(--fw-regular);
  color: var(--dark-gray);
}
.dialog-container {
  --dialog-side-padding: 1rem;
  min-width: 360px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: var(--dialog-side-padding) 0;
}
.dialog-container .dialog-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-gray);
  padding: 0 var(--dialog-side-padding);
  padding-bottom: 1rem;
}
.dialog-container .dialog-header .heading {
  font-size: var(--fs-heading-lg);
  font-weight: var(--fw-semi-bold);
}
.dialog-container .dialog-header .description {
  font-size: var(--fs-small);
  color: var(--medium-gray);
  font-weight: var(--fw-regular);
}
.dialog-container .dialog-content::-webkit-scrollbar {
  width: 8px;
}
.dialog-container .dialog-content::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 200px;
}
.dialog-container .dialog-content {
  padding: 0 var(--dialog-side-padding);
  overflow-y: auto;
}
@font-face {
  font-family: "Inter";
  src: url("./media/Inter-VariableFont_opsz,wght.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: oblique -10deg 0deg;
  font-display: swap;
}
.scrollbar-8::-webkit-scrollbar {
  width: 8px;
}
.scrollbar-8::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 200px;
}
.scrollbar-4::-webkit-scrollbar {
  width: 8px;
}
.scrollbar-4::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 200px;
}
.scrollbar-2::-webkit-scrollbar {
  width: 4px;
}
.scrollbar-2::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 200px;
}
input,
select,
textarea {
  border: none;
  outline: none;
  background: transparent;
  font-size: inherit;
  color: inherit;
  resize: none;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  font-size: inherit;
  color: inherit;
}
input[type=radio],
input[type=checkbox] {
  accent-color: var(--primary);
}
.input-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.input-field.required label::after {
  content: " *";
  color: var(--english-red);
}
.input-field label {
  color: var(--dark-gray);
  font-size: var(--fs-small);
  font-weight: var(--fw-regular);
}
.input-field .field-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.input-field .field-wrap .field {
  width: 100%;
  height: 42px;
  background: var(--field-gray);
  color: var(--medium-black);
  font-size: var(--fs-regular);
  font-weight: var(--fs-regular);
  padding: 0.1rem 0.5rem 0.1rem 1rem;
  border-radius: 8px;
  margin-top: 0.3rem;
}
.input-field .field-wrap .field:has(textarea) {
  height: 6rem;
  padding-top: 0.5rem;
}
.input-field .field-wrap .field input,
.input-field .field-wrap .field select,
.input-field .field-wrap .field textarea {
  width: 100%;
  height: 100%;
}
.data-table {
  width: 100%;
  overflow: auto;
}
.data-table::-webkit-scrollbar {
  width: 8px;
}
.data-table::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 200px;
}
.data-table {
  border: 2px solid var(--light-gray);
  border-radius: 0.75rem;
  box-shadow: var(--border-shadow);
}
.table-title {
  margin-bottom: 0.5rem;
  padding-inline-start: 1rem;
  padding-top: 1rem;
}
.table-title h4 {
  font-size: 1.125rem;
  font-weight: var(--fw-semi-bold);
  color: var(--medium-black);
  margin: 0;
}
table.bottom-border-cells {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--border-shadow);
  border: none;
  border-radius: 10px;
}
table.bottom-border-cells.no-border th,
table.bottom-border-cells.no-border td {
  border: none !important;
}
table.bottom-border-cells thead tr :first-child {
  padding-left: 1rem;
  border-top-left-radius: 10px;
}
table.bottom-border-cells thead tr :last-child {
  padding-right: 1rem;
  border-top-right-radius: 10px;
}
table.bottom-border-cells thead tr th {
  padding: 20px;
}
table.bottom-border-cells tbody :last-child td {
  border-bottom: none;
}
table.bottom-border-cells tbody tr td {
  padding: 20px;
}
table.bottom-border-cells th {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--dark-gray);
  text-align: left;
  padding: 0.5em;
  border-bottom: 1px solid var(--light-gray);
  background: var(--bg-gray);
}
table.bottom-border-cells td {
  font-size: var(--fs-regular);
  font-weight: var(--fw-medium);
  word-wrap: break-word;
  padding: 1.2rem 0.5em;
  color: var(--medium-black);
  border: none;
  border-bottom: 1px solid var(--light-gray);
  background: white;
}
.status-badge {
  padding: 0.4rem 0.5rem;
  background: var(--light-green);
  border-radius: 4px;
  font-size: var(--fs-small);
  font-weight: var(--fs-regular);
  color: var(--dark-green);
}
.status-badge.blue {
  background: var(--light-blue);
  color: var(--dark-blue);
}
.status-badge.yellow {
  background: var(--light-yellow);
  color: var(--dark-yellow);
}
.status-badge.purple {
  background: var(--light-purple);
  color: var(--dark-purple);
}
.status-badge.red {
  background: var(--light-red);
  color: var(--english-red);
}
.table-action-btns {
  display: flex;
  gap: 0.5rem;
}
.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;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: var(--font-inter);
  box-sizing: border-box;
}
body {
  width: 100%;
}
.mat-mdc-dialog-surface.mdc-dialog__surface {
  border-radius: 12px !important;
}
.cdk-overlay-pane.mat-mdc-dialog-panel {
  width: unset !important;
  min-width: unset !important;
  max-width: unset !important;
}
.w-150px {
  width: 150px;
}

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