/* src/styles.scss */
body {
  font-family: "IBM Plex Sans Arabic", sans-serif;
}
.font-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  color: black;
  margin: 0;
}
.font-heading2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: black;
  margin: 0;
}
.font-description {
  color: #777199;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.title {
  margin: 0;
  color: #131344;
  font-size: 16px;
  font-weight: 700;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}
.filter-footer {
  display: flex;
  gap: 12px;
}
.filter-footer .btn-reset {
  flex: 1;
  height: 48px;
  border-radius: 18px;
  background: rgba(108, 108, 108, 0.2509803922);
  color: #131344;
  border: 1.5px solid #e4e3eb;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-footer .btn-reset:hover {
  transform: translateY(-2px);
}
.filter-footer .btn-reset:active {
  transform: translateY(0);
}
.filter-footer .btn-apply {
  flex: 1;
  height: 48px;
  border-radius: 18px;
  background: #131344;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 20px rgba(24, 23, 69, 0.15);
}
.filter-footer .btn-apply:hover {
  background: #20226b;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(24, 23, 69, 0.25);
}
.filter-footer .btn-apply:active {
  transform: translateY(0);
}
.detail-page {
  direction: rtl;
  background: #f8f9fb;
  font-family: "IBM Plex Sans Arabic";
  max-width: 1400px;
  margin: 0 auto;
}
.detail-page .tag-badge {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: #f1f2f4;
  color: #18171f;
  border: 1px solid #e4e3eb;
  background: #eceef2;
  min-inline-size: 158px;
  block-size: 52px;
  justify-content: space-between;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 400;
  border-radius: 8px;
  color: #030213;
}
.detail-page .tag-outline {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
}
@media (min-width: 768px) {
  .detail-page .tag-outline {
    min-inline-size: 248px;
  }
}
.fade-in {
  animation: fadeIn 0.3s ease-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
  font-size: 16px;
  color: #777199;
}
.detail-card {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e4e3eb;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .detail-card {
    padding: 1rem;
  }
}
.detail-card .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #18171f;
  margin: 0 0 24px 0;
  text-align: right;
}
.detail-card .permissions-title {
  margin-bottom: 16px;
}
.collapsible-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.collapsible-card .card-header .card-title {
  margin: 0;
}
.collapsible-card .card-header .chevron {
  transition: transform 0.3s;
}
.collapsible-card .card-header .chevron.rotated {
  transform: rotate(180deg);
}
.collapsible-card .card-body {
  margin-top: 24px;
  animation: slideInDown 0.3s ease-out;
}
.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 12px;
}
.page-header .header-right {
  display: flex;
  align-items: center;
}
@media (min-width: 600px) {
  .page-header {
    padding: 1.5rem 2rem 0;
  }
  .page-header .header-right {
    gap: 19px;
  }
}
.page-header .btn-back {
  background: transparent;
  border: none;
  color: #18171f;
  cursor: pointer;
  padding: 4px;
}
.page-header .header-left {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-header .header-left {
    width: 100%;
  }
}
.page-divider {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  margin-block: 1.5rem;
}
.info-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .info-fields {
    grid-template-columns: 1fr;
  }
}
.tags-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
body {
  color-scheme: light;
  color: var(--mat-sys-on-surface);
  font: var(--mat-sys-body-medium);
  margin: 0;
  height: 100%;
}
body a {
  color: inherit;
  text-decoration: none;
}
html {
  height: 100%;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("./media/IBMPlexSansArabic-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("./media/IBMPlexSansArabic-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("./media/IBMPlexSansArabic-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Sans Arabic";
  src: url("./media/IBMPlexSansArabic-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "IBM Plex Sans Arabic";
  color: #333;
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}
.btn-primary {
  display: flex;
  padding: var(--Spaces-sp-12, 12px) var(--Spaces-sp-24, 24px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: var(--Spaces-sp-18, 18px);
  width: 100%;
  color: var(--Button-Primary-Label-Icon, #fff);
  background: var(--New-primry-Color, #131344);
  text-align: center;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.btn-primary:hover {
  background-color: #131344;
}
.back-btn {
  display: flex;
  padding: var(--Spaces-sp-12, 12px) var(--Spaces-sp-24, 24px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: var(--Spaces-sp-18, 18px);
  color: var(--Button-Secondary-Label-Icon, #131344);
  text-align: center;
  border-radius: var(--Spaces-sp-18, 18px);
  border: 1px solid var(--Button-Secondary-Border, transparent);
  background: rgba(108, 108, 108, 0.2509803922);
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
.card {
  border-radius: 20px;
  padding: 24px 20px;
  border: 1px solid #e4e3eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
}
.timeline-card {
  background: #ffffff;
  border: 1px solid #e4e3eb;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
button,
input {
  border: none;
  background: none;
}
button {
  cursor: pointer;
}
.btn-link {
  color: var(--Colors-Primary-500, #20226b);
  text-align: center;
  font-family: "IBM Plex Sans Arabic";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  cursor: pointer;
}
.sign-in {
  color: var(--Colors-Primary-500, #20226b);
  font-family: "IBM Plex Sans Arabic";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  cursor: pointer;
}
input::placeholder {
  font-family: "IBM Plex Sans Arabic";
}
select::placeholder {
  font-family: "IBM Plex Sans Arabic";
}
* {
  font-family: "IBM Plex Sans Arabic";
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .btn-primary,
  .back-btn {
    padding: 12px 12px !important;
    gap: 4px;
  }
}
@media (max-width: 576px) {
  .sign-in {
    display: block;
  }
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
}
html {
  font-size: 16px;
}
.component-container {
  width: 100%;
}
::ng-deep .mat-mdc-select-panel {
  border-radius: 20px !important;
  background: #fff !important;
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 16px;
  max-height: 400px !important;
  overflow-y: auto !important;
  padding: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  min-width: 100% !important;
  width: 100% !important;
  transform-origin: right top !important;
}
::ng-deep .mat-mdc-select-panel::-webkit-scrollbar {
  width: 6px;
}
::ng-deep .mat-mdc-select-panel::-webkit-scrollbar-track {
  background: transparent;
}
::ng-deep .mat-mdc-select-panel::-webkit-scrollbar-thumb {
  background: #e4e3eb;
  border-radius: 10px;
}
::ng-deep .mat-mdc-select-panel::-webkit-scrollbar-thumb:hover {
  background: #777199;
}
::ng-deep .cdk-overlay-container,
::ng-deep .cdk-overlay-connected-position-bounding-box,
::ng-deep .cdk-overlay-pane {
  direction: rtl !important;
}
::ng-deep .mat-mdc-option .mdc-list-item__primary-text,
::ng-deep .mat-mdc-select-value-text {
  color: var(--Body-Text-Icons, #777199) !important;
  text-align: right !important;
  font-family: "IBM Plex Sans Arabic" !important;
  font-size: 14px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  letter-spacing: -0.07px !important;
}
::ng-deep .mat-mdc-select {
  text-align: right;
  width: 100%;
  flex: 1;
}
::ng-deep .mat-mdc-option {
  justify-content: flex-end;
}
::ng-deep .mat-mdc-option .mdc-list-item__primary-text {
  margin-right: 0px !important;
}
.mat-mdc-option.mdc-list-item {
  justify-content: flex-end;
}
mat-option {
  padding: 0;
}
html,
body {
  height: 100%;
}
* {
  box-sizing: border-box;
}

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