/* src/styles.scss */
:root {
  --bg-color: #fff;
  --text-color: #000000;
  --text-secondary-color: #4f5b66;
  --text-lightgrey-color: #CACACA;
  --light-grey-color: #F3F4F5;
  --border-color: #D3DAE6;
  --border-secondary-color: #a2a2a2;
  --color-slate-blue: #5A809F;
  --surface-color: #f8f9fa;
  --primary-pale-color: #D9EEFF;
  --primary-light-color: #AEDBFF;
  --color-sky: #9bdaff;
  --primary-color: #0D8EFF;
  --primary-medium-color: #343CE4;
  --primary-dark-color: #0D2EA4;
  --secondary-color: #156634;
  --success-color: #22c55f;
  --gradient-primary-color:
    linear-gradient(
      90deg,
      var(--primary-medium-color) 4%,
      var(--primary-dark-color) 78%);
  --danger-color: #E63535;
  --warning-color: #FEC00F;
  --purple-color: #8B5CF6;
  --golden-yellow-color: #FFD727;
  --vivid-orange-color: #F97316;
  --amber-orange-color: #EC8B14;
  --alert-red-color: #FD0206;
  --chestnut-brown-color: #905B20;
  --slate-gray-color: #818588;
  --shadow-xs: 0px 1px 4px 0px #00000026;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
}
html {
  font-size: 80%;
}
@media screen and (max-width: 1440px) {
  html {
    font-size: 70%;
  }
}
@media screen and (max-width: 1024px) {
  html {
    font-size: 70%;
  }
}
body,
input,
textarea,
button {
  font-family: "Noto Sans Hebrew";
  font-optical-sizing: auto;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.global-margin-bottom {
  margin-bottom: 2.625rem;
}
.stats-cards-section {
  display: flex;
  width: 100%;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2.625rem;
}
.stats-cards-section > * {
  flex: 1 1 0;
  min-width: 0;
}
html[dir=rtl] input[type=tel] {
  direction: rtl;
}
input[type=checkbox] {
  position: relative;
  width: 1.25rem !important;
  height: 1.25rem !important;
  padding: 0 !important;
  aspect-ratio: 1;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background-color: var(--bg-color);
  border: 2px solid var(--border-secondary-color);
  border-radius: 6px;
  cursor: pointer;
}
input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15%;
  height: 55%;
  stroke-width: 6px;
  border-left: 3px solid var(--success-color);
  border-bottom: 3px solid var(--success-color);
  transform: translate(-50%, -50%) scaleX(-1) rotate(-45deg);
}
input[type=checkbox]:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.no-scroll {
  overflow: hidden !important;
}
.overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
}
.overlay-popup-content {
  width: 13.625rem;
  border-radius: 8px;
  padding: 1.5rem 0.625rem;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.overlay-popup-content .row-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.875rem 0.625rem;
  padding-top: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary-color);
}
.overlay-popup-content .row-menu-item .label {
  font-size: 1rem;
}
.overlay-popup-content .row-menu-item .material-icons {
  font-size: 20px;
}
.overlay-popup-content .row-menu-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.spinner {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  border: 0.2em solid #ccc;
  border-top: 0.2em solid #1976d2;
  border-radius: 50%;
  animation: spinner-rotate 0.8s linear infinite;
  vertical-align: middle;
  margin-inline-end: 0.5em;
}
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 1290px) {
  .stats-cards-section {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: clamp(0.75rem, 2vw, 2.625rem);
  }
  .stats-cards-section > * {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media (max-width: 768px) {
  .global-margin-bottom {
    margin-bottom: 1.75rem;
  }
  .stats-cards-section {
    padding: 0 1rem 0.625rem 1rem;
    width: 100%;
    margin-inline-start: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    gap: 1.375rem;
  }
}

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