 :root {
  --black-rgb: 0, 0, 0;
  --black: #000;
  --danger: #d3341e;
  --danger-100: #efd0ce;
  --gray-100: #f2f2f2;
  --gray-200: #f6f7fa;
  --gray-300: #b4b4b4;
  --gray-400: #d7d7d7;
  --gray-500: #aaaaaa;
  --gray-600: #666666;
  --gray-700: #e1e1e1;
  --gray-800: #424143;
  --gray-900: #c2bdbd;
  --gray-910: #c5c8d7;
  --gray-920: #edebeb;
  --gray-930: #dcdcdc;
  --gray-940: #d1cece;
  --gray-950: #f8f8f8;
  --gray: #f9f9f9;
  --lavender-100: #acb1c6;
  --lavender: #eff0f6;
  --light-blue-200: #e4f6ff;
  --light-blue-300: #0e5a83;
  --light-blue: #1e95d3;
  --primary-100: #ceb1d8;
  --primary-200: #f3e3f8;
  --primary-300: #cda6da;
  --primary-400: #ede1f1;
  --primary-500: #6a40a2;
  --primary: #824199;
  --success: #2a8721;
  --success-100: #cde0cf;
  --white-rgb: 255, 255, 255;
  --white: #fff;
  --yellow:#ffff00;
  --purple: #e5ceee;
  --orange: #ffd198;
  --orange-100: #f99d2c;
  --orange-200: #ffe8cb;
  --blue: #c6d1ff;
  --blue-100: #292d6b;
  --pink: #f3d8d8;
  --cyan: #cae4f1;
  --cyan-100: #e4e8ec;
  --cyan-200: #d7ebf4;
  --sky-blue: #b9e3f8;
}

body {
  background-color: var(--gray);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  word-break: break-word;
}

main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

input,
textarea,
select,
option,
body,
a {
  color: var(--black);
  font-family: "Noto Sans Hebrew", sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  outline: none !important;
}

label {
  margin-bottom: 0;
}

.container-large,
.container-full,
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1460px;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.container-large {
  max-width: 1660px;
}

.wrapper {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2.5rem;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

@media (min-width: 992px) {
  .wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    padding: 1rem 3rem 3rem;
    transition: padding-right 0.5s ease-in-out;
  }

  .wrapper.normal {
    padding-left: 4.5rem;
    padding-right: 4.5rem;
  }

  .wrapper.active {
    padding-right: 1rem;
  }
}

.content {
  background-color: var(--white);
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(var(--black-rgb), 0.15);
  padding: 1rem;
  position: relative;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .content {
    flex: 1;
    height: 100%;
  }

  .content.desktop-none {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
}

.scroll {
  margin-left: -15px;
  margin-right: -15px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 15px;
}

@media (max-width: 991px) {
  .content.mobile-none {
    /* background-color: transparent; */
    background-color: white;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
}

strong {
  font-weight: 700 !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-black {
  background-color: var(--black) !important;
}

.bg-white {
  background-color: var(--white) !important;
}

.bg-gray {
  background-color: var(--gray) !important;
}

.bg-purple {
  background-color: var(--purple) !important;
}

.bg-orange {
  background-color: var(--orange) !important;
}

.bg-orange-100 {
  background-color: var(--orange-100) !important;
}

.bg-orange-200 {
  background-color: var(--orange-200) !important;
}

.bg-blue {
  background-color: var(--blue) !important;
}

.bg-pink {
  background-color: var(--pink) !important;
}

.bg-cyan {
  background-color: var(--cyan) !important;
}

.bg-cyan-100 {
  background-color: var(--cyan-100) !important;
}

.bg-lavender-100 {
  background-color: var(--lavender-100) !important;
}

.bg-sky-blue {
  background-color: var(--sky-blue) !important;
}

.text-line {
  text-decoration: line-through !important;
}

.text-black {
  color: var(--black) !important;
}

.text-white {
  color: var(--white) !important;
}

.text-danger {
  color: var(--danger) !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.text-success {
  color: var(--success) !important;
}

.text-primary {
  color: var(--primary) !important;
}

.text-gray-600 {
  color: var(--gray-600) !important;
}

.text-gray-800 {
  color: var(--gray-800) !important;
}

.text-orange {
  color: var(--orange-100) !important;
}

.text-light-blue {
  color: var(--light-blue) !important;
}

.text-blue-100 {
  color: var(--blue-100) !important;
}

.text-lavender-100 {
  color: var(--lavender-100) !important;
}

.hover\:light-blue-300:hover {
  color: var(--light-blue-300) !important;
}

.lh-0 {
  line-height: 0;
}

.lh-7 {
  line-height: 0.7;
}

.lh-10 {
  line-height: 1;
}

.lh-11 {
  line-height: 1.1;
}

.lh-12 {
  line-height: 1.2;
}

.lh-14 {
  line-height: 1.4;
}

.lh-15 {
  line-height: 1.5;
}

.cursor-pointer {
  cursor: pointer;
}

.fs-italic {
  font-style: italic;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.text-nowrap {
  white-space: nowrap;
}

.text-center {
  text-align: center !important;
}

.text-start {
  text-align: right !important;
}

.text-end {
  text-align: left !important;
}

.text-decoration-none {
  text-decoration: none;
}

.text-decoration-underline {
  text-decoration: underline;
}

@media (min-width: 992px) {
  .text-lg-none {
    color: inherit;
    display: inherit;
    -webkit-line-clamp: inherit;
    -webkit-box-orient: inherit;
    overflow: inherit;
  }

  .text-lg-nowrap {
    white-space: nowrap;
  }

  .text-lg-center {
    text-align: center !important;
  }

  .text-lg-start {
    text-align: right !important;
  }

  .text-lg-end {
    text-align: left !important;
  }
}

.border-0 {
  border: 0 !important;
}

.border {
  border: 1px solid var(--gray-600) !important;
}

.border-top {
  border-top: 1px solid var(--gray-600) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--gray-600) !important;
}

.border-gray {
  border-color: var(--gray-600) !important;
}

.border-start {
  border-left: 1px solid var(--gray-600) !important;
}

.border-end {
  border-right: 1px solid var(--gray-600) !important;
}

.border-light-blue {
  border-color: var(--light-blue) !important;
}

.border-black {
  border-color: var(--black) !important;
}

.border-cyan-100 {
  border-color: var(--cyan-100) !important;
}

.border-lavender-100 {
  border-color: var(--lavender-100) !important;
}

@media (min-width: 992px) {
  .border-lg-0 {
    border: 0 !important;
  }

  .border-lg {
    border: 1px solid var(--gray-600) !important;
  }

  .border-lg-top {
    border-top: 1px solid var(--gray-600) !important;
  }

  .border-lg-bottom {
    border-bottom: 1px solid var(--gray-600) !important;
  }

  .border-lg-none {
    border: none !important;
  }
}

.img-fluid {
  display: block;
  max-width: 100%;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.wpx-40 {
  width: 40px !important;
}

.wpx-65 {
  width: 65px !important;
}

.wpx-80 {
  width: 80px !important;
}

.wpx-250 {
  width: 250px !important;
}

.w-auto {
  width: auto !important;
}

.w-15 {
  width: 15% !important;
}

.w-18 {
  width: 18% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-40 {
  width: 40% !important;
}

.w-50 {
  width: 50% !important;
}

.w-60 {
  width: 60% !important;
}

.w-100 {
  width: 100% !important;
}

.hpx-1 {
  height: 1px !important;
}

.hpx-min-54 {
  min-height: 54px;
}

.h-auto {
  height: auto !important;
}

.h-100 {
  height: 100% !important;
}

.overflow-visible {
  overflow: visible;
}

.overflow-x-auto {
  overflow-x: auto;
  overflow-y: hidden;
}

.overflow-hidden {
  overflow: hidden;
}

@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }

  .w-md-15 {
    width: 15% !important;
  }

  .w-md-18 {
    width: 18% !important;
  }

  .w-md-20 {
    width: 20% !important;
  }

  .w-md-25 {
    width: 25% !important;
  }

  .w-md-30 {
    width: 30% !important;
  }

  .w-md-40 {
    width: 40% !important;
  }

  .w-md-50 {
    width: 50% !important;
  }

  .w-md-60 {
    width: 60% !important;
  }

  .w-md-100 {
    width: 100% !important;
  }

  .h-md-auto {
    height: auto !important;
  }

  .hpx-md-1 {
    height: 1px !important;
  }

  .hpx-min-md-54 {
    min-height: 54px;
  }

  .h-md-100 {
    height: 100% !important;
  }
}

@media (min-width: 992px) {
  .w-lg-auto {
    width: auto !important;
  }

  .w-lg-15 {
    width: 15% !important;
  }

  .w-lg-18 {
    width: 18% !important;
  }

  .w-lg-20 {
    width: 20% !important;
  }

  .w-lg-25 {
    width: 25% !important;
  }

  .w-lg-30 {
    width: 30% !important;
  }

  .w-lg-40 {
    width: 40% !important;
  }

  .w-lg-50 {
    width: 50% !important;
  }

  .w-lg-60 {
    width: 60% !important;
  }

  .w-lg-100 {
    width: 100% !important;
  }

  .h-lg-auto {
    height: auto !important;
  }

  .hpx-lg-1 {
    height: 1px !important;
  }

  .hpx-min-lg-54 {
    min-height: 54px;
  }

  .h-lg-100 {
    height: 100% !important;
  }
}

@media (min-width: 1200px) {
  .w-xl-auto {
    width: auto !important;
  }

  .w-xl-15 {
    width: 15% !important;
  }

  .w-xl-18 {
    width: 18% !important;
  }

  .w-xl-20 {
    width: 20% !important;
  }

  .w-xl-25 {
    width: 25% !important;
  }

  .w-xl-30 {
    width: 30% !important;
  }

  .w-xl-40 {
    width: 40% !important;
  }

  .w-xl-50 {
    width: 50% !important;
  }

  .w-xl-60 {
    width: 60% !important;
  }

  .w-xl-100 {
    width: 100% !important;
  }

  .h-xl-auto {
    height: auto !important;
  }

  .hpx-xl-1 {
    height: 1px !important;
  }

  .hpx-min-xl-54 {
    min-height: 54px;
  }

  .h-xl-100 {
    height: 100% !important;
  }
}

@media (min-width: 1400px) {
  .w-xxl-auto {
    width: auto !important;
  }

  .w-xxl-15 {
    width: 15% !important;
  }

  .w-xxl-18 {
    width: 18% !important;
  }

  .w-xxl-20 {
    width: 20% !important;
  }

  .w-xxl-25 {
    width: 25% !important;
  }

  .w-xxl-30 {
    width: 30% !important;
  }

  .w-xxl-40 {
    width: 40% !important;
  }

  .w-xxl-50 {
    width: 50%;
  }

  .w-xxl-60 {
    width: 60% !important;
  }

  .w-xxl-100 {
    width: 100% !important;
  }

  .h-xxl-auto {
    height: auto !important;
  }

  .hpx-xxl-1 {
    height: 1px !important;
  }

  .hpx-min-xxl-54 {
    min-height: 54px;
  }

  .h-xxl-100 {
    height: 100% !important;
  }
}

.shadow {
  box-shadow: 0px 0px 10px 0px rgba(var(--black-rgb), 0.15);
}

.shadow-lg {
  box-shadow: 0px 0px 30px rgba(var(--black-rgb), 0.16);
}

.shadow-md {
  box-shadow: 0px 4px 8px 0px rgba(var(--black-rgb), 0.16);
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.clearfix {
  clear: both;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-2-truncate {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 992px) {
  .text-lg-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.small {
  font-size: 87.5%;
}

.hover\:link:hover {
  opacity: 0.8;
}

.hover\:text-decoration-underline:hover {
  text-decoration: underline;
}

.min-w-inherit {
  min-width: inherit !important;
}

.wpx-max-90 {
  max-width: 90px !important;
}

.wpx-max-110 {
  max-width: 110px !important;
}

.wpx-max-200 {
  max-width: 200px !important;
}

.wpx-max-220 {
  max-width: 220px !important;
}

.wpx-max-240 {
  max-width: 240px !important;
}

.wpx-max-260 {
  max-width: 260px !important;
}

.wpx-max-287 {
  max-width: 287px !important;
}

.wpx-max-300 {
  max-width: 300px !important;
}

.wpx-max-400 {
  max-width: 400px !important;
}

@media (min-width: 992px) {
  .wpx-max-lg-200 {
    max-width: 200px !important;
  }

  .wpx-max-lg-220 {
    max-width: 220px;
  }

  .wpx-max-lg-260 {
    max-width: 260px;
  }

  .wpx-max-lg-300 {
    max-width: 300px;
  }
}

@media (min-width: 1200px) {
  .wpx-max-xl-200 {
    max-width: 200px !important;
  }

  .wpx-max-xl-220 {
    max-width: 220px;
  }

  .wpx-max-xl-260 {
    max-width: 260px;
  }

  .wpx-max-xl-300 {
    max-width: 300px;
  }
}

.icon {
  position: relative;
  top: -3px;
}

@media (min-width: 992px) {
  .wrap-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
  }
}

@media (min-width: 1400px) {
  .wrap-main {
    flex-direction: row;
  }
}

.pe-6 {
  padding-right: 5rem !important;
}

label {
  color: var(--black);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.border-line {
  position: relative;
}

@media (min-width: 992px) {
  .border-line::before {
    background-color: var(--gray-940);
    content: "";
    height: 100%;
    left: 45%;
    position: absolute;
    top: 0;
    width: 1px;
  }
} 

/* cstm */

/* cstm btn */

.pull-right {
  float: left !important;
}
.addnote {
  color: var(--primary) !important;
  font-weight: 500 !important;
  font-family: "Noto Sans Hebrew", sans-serif !important;
  font-size: 16px !important;
   background-color: white !important;; 
  border-color: white !important;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0) !important;
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0) !important;
}
.create-action{
  color: var(--primary) !important;
  font-weight: 500 !important;
  font-family: "Noto Sans Hebrew", sans-serif !important;
  font-size: 16px !important;
   background-color: white !important;; 
  border-color: white !important;
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0) !important;
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0) !important;
}

.fw-medium.mb-2.fs-18 {
  color: var(--black)!important; 
  font-family: "Noto Sans Hebrew", sans-serif!important; 
}

.login-container {
  padding: 20px;
  border-radius: 8px;
  align-items: center;
  max-width: 300px;
  margin: 20px auto;
}

ul li a {
  text-decoration: none !important; 
}

ul li a:hover, ul li a:focus {
  text-decoration: none !important; 
}

.people-item a {
  text-decoration: none !important; 
}

.people-item a:hover, .people-item a:focus {
  color: black !important; 
  text-decoration: none !important;
}

.a:not(.btn){
  text-decoration: underline !important;
}

.specialLogo{
    display: none;
} 

.modal-backdrop {
   position:absolute;
   top: unset !important;
  }

.modal-backdrop.in {
  opacity: 0;
}

@media (min-width: 760px) {
  .modal {
      max-width: 900px !important;
  }
}

/* modal-associate  */
section.modal.fade.modal-associate.in {
    margin-left: 30px;
}