:root {
  --primary-color: #008755;
  --bs-primary: var(--primary-color);
  --secondary-color: #95905e;
  --primary-color-50: #fbffff;
  --primary-linear: linear-gradient(34.11deg, #008755 4.35%, #017248 98.77%);
  --white-opacity-10: rgba(255, 255, 255, 0.1);
  --dark-900: #15171c;
  --dark-800: #444549;
  --dark-700: #6c758a;
  --dark-600: #56617d;
  --dark-500: #828ca1;
  --dark-400: #979eab;
  --dark-300: #cfd3d7;
  --light-600: #b8bec3;
  --light-500: #eff4fe;
  --light-400: #cfd8ea;
  --light-300: #dee6f6;
  --light-200: #f8f9ff;
  --light-100: #e9eef9;
  --light-btn: #dfe7f9;
  --transtion-3ms-e-out: all 0.3s ease-in-out;
  --backdrop-bg: rgba(223, 229, 239, 0.7);
  --bs-danger-rgb: 232, 44, 44;
  --bs-border-color: var(--light-300);
  --bs-primary-rgb: 0, 135, 85;
  --bs-btn-active-bg: #017248;
  --bs-btn-active-border-color: #017248;
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--light-400);
  --bs-btn-disabled-border-color: var(--dark-700);
  --gold-color: #ffbe5c;
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #449f95;
  --bs-btn-border-color: #449f95;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #3e9389;
  --bs-btn-hover-border-color: #3e9389;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #449f95;
  --bs-btn-active-border-color: #3e9389;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #449f95;
  --bs-btn-disabled-border-color: #449f95;
}

.menu {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu .navigation-item-active {
  z-index: 1;
}

@font-face {
  font-family: "Almarai";
  src: url(../fonts/Almarai/Almarai-Regular.ttf);
}
/* start Global */
.logo {
  max-height: 4rem;
}

.logo-vertical {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  font-size: 1.125rem;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.logo-vertical .icon image {
  height: 100px;
}

.header-items .title {
  color: var(--dark-900);
  font-weight: 700;
}
.header-items .discription {
  color: var(--dark-700);
}

.text-pre-wrap {
  white-space: pre-wrap;
}

/* start img */
.img-48 {
  width: 2.5rem;
  height: 2.5rem;
}

.img-40 {
  width: 2rem;
  height: 2rem;
}

.img-32 {
  width: 2rem;
  height: 2rem;
}

.img-24 {
  width: 1.5rem;
  height: 1.5rem;
}

@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
}

.three-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limits text to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 450px;
  line-height: 1.25em;
  max-height: 3.75em;
}

.four-line-ellipsis {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limits text to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25em;
  max-height: 5em;
}

.more-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.more-text.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.a-btn {
  color: var(--primary-color);
  font-weight: 500;
}

@media (min-width: 576px) {
  .w-sm-auto {
    width: auto !important;
  }
}
/* end img */
/* start status */
[class*=status] {
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  display: block;
  text-align: center;
  text-transform: capitalize;
  border-radius: 0.25rem;
}

.status-new {
  background-color: #e8ecf6;
  color: var(--dark-900);
}

.status-approved {
  background-color: #ecf8f1;
  color: #3ebb70;
}

.status-rejected {
  background-color: #fdeaea;
  color: var(--bs-danger);
}

.status-inprogress {
  background-color: #e8ecf6;
  color: #1740a5;
}

.status-returned {
  background-color: #fcf6ed;
  color: #d48e23;
}

/* end status */
/* start badge */
[class*=badge] {
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-transform: capitalize;
  border-radius: 0.125rem;
}

.badge-true {
  background-color: #ecf8f1;
  color: var(--primary-color);
}

.badge-false {
  background-color: #fdeaea;
  color: var(--bs-danger);
}

.back-btn {
  color: var(--dark-900);
  padding-inline: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
}
.back-btn svg {
  color: var(--primary-color);
}

.back-btn-icon {
  padding: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 2rem;
  height: 2rem;
  position: relative;
  margin-inline: 0.25rem;
  color: var(--dark-800);
  border-radius: 50%;
}
.back-btn-icon::after {
  content: "";
  position: absolute;
  background-color: var(--light-200);
  width: 2.5rem;
  height: 2.5rem;
  z-index: -1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.back-btn-icon:hover,
.back-btn-icon :first-child:active,
.back-btn-icon :active {
  background-color: transparent;
  color: var(--dark-800);
}
.back-btn-icon:hover::after,
.back-btn-icon :first-child:active::after,
.back-btn-icon :active::after {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.back-btn-icon .icon {
  width: 2rem;
  height: 2rem;
}
.back-btn-icon .icon svg {
  height: 1.5rem !important;
  width: 1.5rem !important;
}

/* end badge */
/* start no-data*/
.no-data {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  padding: 1rem;
}
.no-data .icon svg {
  width: 40px;
  height: 40px;
}
.no-data h6 {
  color: var(--dark-800);
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.25rem;
}
.no-data p {
  margin-bottom: 0;
  color: var(--dark-500);
}

/* end no-data*/
/* start inputs */
.group-input {
  width: 100%;
  position: relative;
}
@media (min-width: 1440px) {
  .group-input.search-group {
    min-width: 240px;
  }
}
.group-input.end-button .form-control {
  -webkit-padding-start: 2.5rem;
          padding-inline-start: 2.5rem;
  -webkit-padding-end: 2rem;
          padding-inline-end: 2rem;
}
.group-input.end-switch .form-control {
  -webkit-padding-start: 0.75rem;
          padding-inline-start: 0.75rem;
  -webkit-padding-end: 0.75rem;
          padding-inline-end: 0.75rem;
}
.group-input.end-switch:has(.switch-end) .form-control {
  -webkit-padding-start: 0.75rem;
          padding-inline-start: 0.75rem;
  -webkit-padding-end: 5.4rem;
          padding-inline-end: 5.4rem;
}
.group-input.end-switch .switch-end {
  position: absolute;
  top: 50%;
  inset-inline-end: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.group-input .start-icon {
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  inset-inline-start: 1rem;
  inset-block-start: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  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;
}
.group-input .start-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--dark-400);
}
.group-input .form-control {
  -webkit-padding-start: 2.5rem;
          padding-inline-start: 2.5rem;
}
.group-input .btn-show-password {
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.group-input .btn-show-password:active {
  background-color: transparent;
  border-color: transparent;
}
.group-input .btn-show-password svg {
  height: 1.125rem;
}
.group-input .end-button {
  position: absolute;
  inset-inline-end: 0.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.dat-input-container {
  width: 100%;
  position: relative;
}
.dat-input-container .open-button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-end: 0.75rem;
  width: 25px;
  height: 25px;
  background: var(--bs-white);
  pointer-events: none;
}
.dat-input-container .open-button button {
  border: none;
  background: transparent;
}

.date-group {
  position: relative;
}
.date-group input.form-control[type=date]::-webkit-calendar-picker-indicator {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21 10H3M16 2V6M8 2V6M7.8 22H16.2C17.8802 22 18.7202 22 19.362 21.673C19.9265 21.3854 20.3854 20.9265 20.673 20.362C21 19.7202 21 18.8802 21 17.2V8.8C21 7.11984 21 6.27976 20.673 5.63803C20.3854 5.07354 19.9265 4.6146 19.362 4.32698C18.7202 4 17.8802 4 16.2 4H7.8C6.11984 4 5.27976 4 4.63803 4.32698C4.07354 4.6146 3.6146 5.07354 3.32698 5.63803C3 6.27976 3 7.11984 3 8.8V17.2C3 18.8802 3 19.7202 3.32698 20.362C3.6146 20.9265 4.07354 21.3854 4.63803 21.673C5.27976 22 6.11984 22 7.8 22Z' stroke='currentColor' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-color: transparent;
  background-position: 0.5rem center;
  background-repeat: 0;
  background-size: 1.25rem;
  position: absolute;
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.date-group .form-control {
  -webkit-padding-start: 2.25rem;
          padding-inline-start: 2.25rem;
}
.date-group .form-control:disabled, .date-group .form-control.disabled {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}

.custom-radio {
  -webkit-padding-start: 1.6rem;
          padding-inline-start: 1.6rem;
  position: relative;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-600);
}
.custom-radio input {
  display: none;
}
.custom-radio input + label {
  position: absolute;
  border: 0.125rem solid var(--dark-300);
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  inset-inline-start: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.custom-radio input:checked {
  color: var(--dark-900);
}
.custom-radio input:checked + label {
  border: 0.4rem solid var(--primary-color);
}

.image-list-checkbox input {
  display: none;
}
.image-list-checkbox input + label {
  border: 1px solid var(--light-300);
  border-radius: 0.375rem;
  padding: 1rem;
  width: 100%;
  height: 150px;
  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;
  cursor: pointer;
  position: relative;
}
.image-list-checkbox input + label::after {
  content: "";
  position: absolute;
  top: 0.375rem;
  inset-inline-start: 0.375rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--light-400);
  background-color: var(--bs-white);
}
.image-list-checkbox input + label .title {
  display: none;
}
.image-list-checkbox input + label .img-fluid {
  max-height: 100%;
  border-radius: 0.5rem;
}
.image-list-checkbox input + label:hover {
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
}
.image-list-checkbox input:checked + label {
  border-color: var(--primary-color);
  background-color: var(--light-200);
}
.image-list-checkbox input:checked[type=radio] + label:after {
  border: 6px solid var(--primary-color);
}
.image-list-checkbox input:checked[type=checkbox] + label:after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" fill="white" stork="white" strok-width="1" width="24" height="24" viewBox="0 0 24 24"><path d="M18.7099 7.21C18.617 7.11627 18.5064 7.04188 18.3845 6.99111C18.2627 6.94034 18.132 6.9142 17.9999 6.9142C17.8679 6.9142 17.7372 6.94034 17.6154 6.99111C17.4935 7.04188 17.3829 7.11627 17.29 7.21L9.83995 14.67L6.70995 11.53C6.61343 11.4368 6.49949 11.3634 6.37463 11.3142C6.24978 11.265 6.11645 11.2409 5.98227 11.2432C5.84809 11.2456 5.71568 11.2743 5.5926 11.3278C5.46953 11.3813 5.35819 11.4585 5.26495 11.555C5.17171 11.6515 5.0984 11.7655 5.04919 11.8903C4.99999 12.0152 4.97586 12.1485 4.97818 12.2827C4.9805 12.4169 5.00923 12.5493 5.06272 12.6723C5.11622 12.7954 5.19343 12.9068 5.28995 13L9.12995 16.84C9.22291 16.9337 9.33351 17.0081 9.45537 17.0589C9.57723 17.1097 9.70794 17.1358 9.83995 17.1358C9.97196 17.1358 10.1027 17.1097 10.2245 17.0589C10.3464 17.0081 10.457 16.9337 10.55 16.84L18.7099 8.68C18.8115 8.58636 18.8925 8.47271 18.9479 8.34621C19.0033 8.21971 19.0319 8.0831 19.0319 7.945C19.0319 7.8069 19.0033 7.67029 18.9479 7.54379C18.8925 7.41729 18.8115 7.30364 18.7099 7.21Z" /></svg>');
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  background-size: 1.35em;
  background-position: center;
  background-repeat: no-repeat;
}
.image-list-checkbox input[type=radio] + label:after {
  border-radius: 50%;
}
.image-list-checkbox input[type=checkbox] + label:after {
  border-radius: 0.25rem;
}

.form-control {
  border-color: var(--light-300);
  font-size: 0.75rem;
  padding-block: 0.6rem;
  font-weight: 500;
}
.form-control:focus, .form-control:focus-visible {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-color: var(--primary-color);
}

.tilte-input {
  background-color: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-800);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-bottom: 0;
}

.tree-list {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.tree-list .item {
  margin-bottom: 1rem;
  position: relative;
}
.tree-list .item:has(.btn-expanded)::after {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 1em;
  height: calc(100% - 12px);
  width: 1px;
  background-color: var(--light-300);
  z-index: -1;
}
.tree-list .item ul {
  -webkit-padding-start: 1.5rem;
          padding-inline-start: 1.5rem;
}
.tree-list .item ul li {
  position: relative;
}
.tree-list .item ul li::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 1rem;
  inset-inline-start: 0;
  top: 1rem;
  background-color: var(--light-300);
  z-index: -1;
}
.tree-list .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tree-list .header .action-btn {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--bs-white);
}
.tree-list .header .action-btn .icon {
  width: 2rem;
  background-color: var(--bs-white);
  height: 2rem;
  border: 1px solid var(--light-300);
  display: none;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--dark-600);
}
.tree-list .header .action-btn .icon svg {
  width: 1.25rem;
}
.tree-list .header .action-btn.btn-expanded {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tree-list .header .action-btn.btn-expanded .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.tree-list .header .action-btn.btn-collapsed {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tree-list .header .action-btn.btn-collapsed .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tree-list .header:hover {
  background-color: var(--light-200);
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  -webkit-transition: all ease-in-out 0.3s;
  transition: all ease-in-out 0.3s;
}
.tree-list .header:hover .action-btn {
  background-color: var(--light-200);
}

.form-select {
  text-align: start;
}
.form-select option {
  color: var(--dark-700);
  font-size: 0.75rem;
  padding-block: 1rem;
  font-weight: 500;
}

.dropdowen-select {
  text-align: start;
}
.dropdowen-select .form-select {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropdowen-select .dropdown-menu {
  max-height: 290px;
  min-width: 100%;
  max-width: 100%;
  overflow-y: auto;
  padding: 0.25rem;
  border-color: var(--light-300);
}
.dropdowen-select .dropdown-menu .dropdown-item {
  white-space: pre-wrap;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.dropdowen-select .dropdown-menu .dropdown-item:active, .dropdowen-select .dropdown-menu .dropdown-item.selected {
  background-color: var(--primary-color);
  color: var(--bs-white);
}
.dropdowen-select .dropdown-menu .dropdown-item:not(:last-child) {
  margin-bottom: 0.25rem;
}

.form-switch.custom {
  padding-left: 0;
  padding-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-switch.custom input {
  display: none;
}
.form-switch.custom input + label {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  color: var(--dark-600);
}
.form-switch.custom input + label .toggler-icon {
  width: 2.25rem;
  height: 1.25rem;
  background-color: var(--light-300);
  border-radius: 999rem;
  position: relative;
  -webkit-transition: var(--transtion-3ms-e-out);
  transition: var(--transtion-3ms-e-out);
}
.form-switch.custom input + label .toggler-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-start: 0.125rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--bs-white);
  border-radius: 50%;
  -webkit-transition: var(--transtion-3ms-e-out);
  transition: var(--transtion-3ms-e-out);
  -webkit-box-shadow: 0 1px 3px rgba(16, 24, 40, 0.01), 0 1px 2px rgba(16, 24, 40, 0.06);
          box-shadow: 0 1px 3px rgba(16, 24, 40, 0.01), 0 1px 2px rgba(16, 24, 40, 0.06);
}
.form-switch.custom input:checked + label {
  color: var(--dark-800);
  font-weight: 600;
}
.form-switch.custom input:checked + label .toggler-icon {
  background-color: var(--primary-color);
}
.form-switch.custom input:checked + label .toggler-icon::after {
  inset-inline-start: auto;
  inset-inline-end: 0.125rem;
  -webkit-transition: var(--transtion-3ms-e-out);
  transition: var(--transtion-3ms-e-out);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-switch.custom.filter input + label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dark-800);
}
.form-switch.custom.filter input + label svg {
  width: 1rem;
  height: 1rem;
}
.form-switch.custom.filter input:checked + label svg {
  fill: var(--primary-color);
  stroke: var(--primary-color);
}

.end-button:has(.custom-check-button) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}

.custom-check-button .icon {
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid var(--light-400);
  border-radius: 0.25rem;
  background-color: var(--bs-white);
  color: var(--bs-white);
}
.custom-check-button .icon svg {
  width: 1rem;
  height: 1rem;
}
.custom-check-button .btn {
  -webkit-padding-start: 0.25rem;
          padding-inline-start: 0.25rem;
}
.custom-check-button input {
  display: none;
}
.custom-check-button input:checked + label {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.custom-check-button input:checked + label .icon {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.toggle-activate .text {
  font-size: 0.75rem;
  margin-inline: 0.5rem;
  color: var(--dark-900);
}
.toggle-activate .toggler-icon {
  width: 2.5rem;
  height: 1.5rem;
  background-color: var(--light-600);
  border-radius: 0.25rem;
  position: relative;
  -webkit-transition: var(--transtion-3ms-e-out);
  transition: var(--transtion-3ms-e-out);
}
.toggle-activate .toggler-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-start: 0.25rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--bs-white);
  border-radius: 0.125rem;
  -webkit-transition: var(--transtion-3ms-e-out);
  transition: var(--transtion-3ms-e-out);
}
.toggle-activate.deactivate .text {
  color: var(--dark-600);
}
.toggle-activate.deactivate .toggler-icon {
  background-color: var(--primary-color);
}
.toggle-activate.deactivate .toggler-icon::after {
  inset-inline-start: auto;
  inset-inline-end: 0.25rem;
  -webkit-transition: var(--transtion-3ms-e-out);
  transition: var(--transtion-3ms-e-out);
}

.survey-img img {
  max-width: 56px;
  height: 56px;
  border-radius: 0.375rem;
  border: 1px solid var(--light-300);
}
@media (min-width: 767.9px) {
  .survey-img img {
    max-width: 72px;
    height: 72px;
  }
}

.form-check, .dropdown.multiselect-dropdown .dropdown-menu .custom-select-item {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-800);
  margin-bottom: 0.75rem;
  cursor: pointer;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.form-check.form-check-inline, .dropdown.multiselect-dropdown .dropdown-menu .form-check-inline.custom-select-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.form-check .form-check-input, .dropdown.multiselect-dropdown .dropdown-menu .custom-select-item .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border-color: var(--light-400);
  float: none;
  margin-left: 0;
  margin-top: 0;
}
.form-check .form-check-input + label, .dropdown.multiselect-dropdown .dropdown-menu .custom-select-item .form-check-input + label {
  text-transform: capitalize;
  color: var(--dark-600);
}
.form-check .form-check-input:checked, .dropdown.multiselect-dropdown .dropdown-menu .custom-select-item .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  --bs-form-check-bg-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.78571 0.571402C9.5 0.285688 9.07143 0.285688 8.78571 0.571402L3.42857 5.92854L1.21429 3.71426C0.928571 3.42855 0.5 3.42855 0.214286 3.71426C-0.0714286 3.99997 -0.0714286 4.42855 0.214286 4.71426L2.92857 7.42854C3.07143 7.5714 3.21429 7.64283 3.42857 7.64283C3.64286 7.64283 3.78571 7.5714 3.92857 7.42854L9.78571 1.5714C10.0714 1.28569 10.0714 0.857117 9.78571 0.571402Z' fill='white'/%3E%3C/svg%3E");
  background-size: 10px;
}
.form-check .form-check-input:checked + label, .dropdown.multiselect-dropdown .dropdown-menu .custom-select-item .form-check-input:checked + label {
  color: var(--dark-800);
}
.form-check .form-check-label, .dropdown.multiselect-dropdown .dropdown-menu .custom-select-item .form-check-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
}

.slider-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.slider-container .slider {
  -webkit-appearance: none;
  width: 100%;
  height: 0.5rem;
  background: var(--light-300);
  outline: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  border-radius: 999rem;
}
.slider-container .slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary-color);
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.slider-container .slider::-moz-range-thumb {
  width: 1.5rem;
  height: 1.5rem;
  background: var(--primary-color);
  cursor: pointer;
  border-radius: 50%;
  -moz-transition: background 0.3s;
  transition: background 0.3s;
}
.slider-container .range {
  width: 100%;
}

.file-uploader input {
  display: none;
  cursor: pointer;
}
.file-uploader input + label {
  cursor: pointer;
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  width: 100%;
  border: 1px dashed var(--light-400);
  border-radius: 0.375rem;
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dark-900);
}
.file-uploader input + label .primary {
  color: var(--primary-color);
  text-decoration: underline;
  display: inline-block;
}
.file-uploader input + label .icon {
  color: var(--dark-700);
  width: 3rem;
  height: 3rem;
}
.file-uploader input:disabled + label {
  opacity: 0.65;
  cursor: not-allowed;
}

.file-qustom input {
  display: none;
  cursor: pointer;
}
.file-qustom label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0.5rem 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--light-300);
  border-radius: var(--bs-border-radius);
  margin-bottom: 0.75rem;
}
.file-qustom label .custom-tool-tip {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.file-qustom label .custom-tool-tip .text {
  width: 400px;
  inset-inline-end: auto;
  inset-inline-start: 0;
  white-space: normal;
  top: 1rem;
}
.file-qustom label .custom-tool-tip .text .text-header {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-800);
  margin-bottom: 0.75rem;
  display: block;
}
.file-qustom label .custom-tool-tip .text .text-header::first-letter {
  text-transform: uppercase;
}
.file-qustom label .custom-tool-tip .text .order-list li {
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.file-qustom label .custom-tool-tip .text .order-list li::first-letter {
  text-transform: uppercase;
}
.file-qustom label .icon {
  width: 2.5rem;
  height: 2.5rem;
  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;
  color: var(--dark-800);
  background-color: var(--light-200);
  border: 3px solid var(--light-100);
  border-radius: 50%;
}
.file-qustom label .icon svg {
  width: 1rem;
  height: 1rem;
}
.file-qustom label .file-type {
  font-size: 0.75rem;
  color: var(--dark-600);
}
.file-qustom .selcted-item .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0.75rem;
}
.file-qustom .text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-800);
  display: block;
}
.file-qustom.button-end {
  border: 1px solid var(--light-300);
  -webkit-padding-end: 0.5rem;
          padding-inline-end: 0.5rem;
  border-radius: var(--bs-border-radius);
  text-wrap: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.file-qustom.button-end label {
  border: none;
  margin-bottom: 0;
  padding-inline: 0.5rem;
}

/* custom-tool-tip*/
.custom-tool-tip {
  position: relative;
  color: var(--dark-600);
}
.custom-tool-tip .icon {
  color: var(--dark-600) !important;
  width: 1.125rem !important;
  height: 1.125rem !important;
  background-color: transparent !important;
  border: 0 !important;
}
.custom-tool-tip .icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.custom-tool-tip .text {
  position: absolute;
  min-width: 200px;
  width: 300px;
  padding: 0.5rem;
  inset-inline-end: 0;
  background-color: var(--light-200);
  border-radius: 0.325rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-900);
  display: none;
  text-align: start;
  z-index: 100;
  border: 1px solid var(--light-300);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.125);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.125);
  white-space: pre-wrap;
}
.custom-tool-tip .text::first-letter {
  text-transform: uppercase;
}
.custom-tool-tip .text p {
  margin-bottom: 0;
}
.custom-tool-tip:hover .text {
  display: block;
}

.form-label {
  color: var(--dark-900);
  font-size: 0.75rem;
  font-weight: 600;
}

/* end inputs */
/* start rating*/
.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
}
@media (max-width: 720px) {
  .rating {
    gap: 0.35rem;
  }
}
.rating .number {
  color: var(--dark-600);
  background-color: var(--light-200);
  border: 1px solid var(--light-300);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 720px) {
  .rating .number {
    max-width: 2rem;
    height: 2rem;
    font-size: 0.75rem;
  }
}
.rating .stars {
  cursor: pointer;
  max-width: 100%;
}
.rating .stars svg {
  width: 3rem;
  height: 3rem;
  stroke: var(--light-400);
}
@media (max-width: 720px) {
  .rating .stars {
    max-width: calc(10% - 0.25rem);
  }
  .rating .stars svg {
    max-width: 100%;
  }
}
.rating .faces {
  cursor: pointer;
  opacity: 0.5;
  font-size: 2.5rem;
}
@media (max-width: 720px) {
  .rating .star {
    max-width: calc(10% - 0.25rem);
  }
}
.rating .star:hover .number, .rating .star.filled .number {
  background-color: var(--primary-color);
  color: var(--bs-white);
}
.rating .star:hover .stars svg, .rating .star.filled .stars svg {
  stroke: var(--gold-color);
  fill: var(--gold-color);
}
.rating .star:hover .faces, .rating .star.filled .faces {
  opacity: 1;
}

/* end star*/
/* start swal */
.swal-overlay--show-modal {
  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;
}
.swal-overlay--show-modal .swal-modal {
  width: 380px;
}
@media (max-width: 380px) {
  .swal-overlay--show-modal .swal-modal {
    width: calc(100% - 1rem);
  }
}
.swal-overlay--show-modal .swal-modal .swal-icon:first-child {
  margin-top: 1rem;
  margin-bottom: 0;
}
.swal-overlay--show-modal .swal-modal .swal-icon--warning {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 2px;
  position: relative;
}
.swal-overlay--show-modal .swal-modal .swal-icon--warning .swal-icon--warning__body,
.swal-overlay--show-modal .swal-modal .swal-icon--warning .swal-icon--warning__dot {
  display: none;
}
.swal-overlay--show-modal .swal-modal .swal-icon--warning::after {
  content: "!";
  position: absolute;
  font-size: 1.5rem;
  font-weight: bold;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #f9d495;
}
.swal-overlay--show-modal .swal-modal .swal-text {
  text-align: start;
  max-height: 400px;
  overflow: auto;
  max-width: 85%;
  margin: auto;
  display: block;
  padding-inline: 1.5rem;
  padding-bottom: 0.5rem;
}
.swal-overlay--show-modal .swal-modal .swal-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-800);
  padding-inline: 1.75rem;
}

/* end swal */
/* strat button*/
.btn {
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.btn:first-child:active, .btn:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bs-white);
}
.btn.btn-lg {
  font-size: 0.875rem;
  font-weight: 500;
  padding-block: 0.875rem;
}
.btn .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn .icon svg {
  width: 1rem;
  height: 1rem;
}
.btn .icon.lg svg {
  width: 1.25rem;
  height: 1.25rem;
}

.page-link .icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:first-child:active, .btn-primary:active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.primary-link-btn {
  color: var(--primary-color);
  background-color: transparent;
  border: 0;
  text-decoration: underline;
  padding: 0;
}

.btn-light {
  background-color: var(--light-btn);
  color: var(--dark-900);
}

.btn-outline-light {
  border-color: var(--light-400);
  color: var(--dark-900);
}
.btn-outline-light:hover, .btn-outline-light:focus {
  border-color: var(--light-400);
  color: var(--dark-900);
  background-color: var(--light-400);
}

.btn-outline-light-primary, .table.card-view tbody tr td:last-child .action-list .btn-action-24.custome-btn,
.table.card-view tbody tr th:last-child .action-list .btn-action-24.custome-btn {
  border-color: var(--light-400);
  color: var(--primary-color);
  background-color: var(--bs-white);
}
.btn-outline-light-primary:hover, .table.card-view tbody tr td:last-child .action-list .btn-action-24.custome-btn:hover,
.table.card-view tbody tr th:last-child .action-list .btn-action-24.custome-btn:hover, .btn-outline-light-primary:focus, .table.card-view tbody tr td:last-child .action-list .btn-action-24.custome-btn:focus,
.table.card-view tbody tr th:last-child .action-list .btn-action-24.custome-btn:focus {
  border-color: var(--light-300);
  color: var(--primary-color);
  background-color: var(--light-200);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  border-color: var(--primary-color);
  color: var(--bs-white);
  background-color: var(--primary-color);
}

.btn-32 {
  width: 2rem;
  height: 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
.btn-32 .icon svg {
  height: 1.125rem;
  width: 1.125rem;
}

.btn-change-lang {
  border: 1px solid var(--light-300);
  padding: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn-change-lang:hover {
  border: 1px solid var(--light-300);
}
.btn-change-lang span {
  padding: 0.25rem;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn-change-lang span.en {
  background: var(--primary-color);
  color: var(--bs-white);
}
.btn-change-lang span.ar {
  opacity: 0.65;
}
.btn-change-lang span.icon-text {
  display: none;
}
.btn-change-lang:active {
  background-color: var(--light-400);
}
.btn-change-lang svg {
  width: 1rem;
  height: 1rem;
}

.action-btn-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.action-btn-list .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}
.action-btn-list .swiper-button-prev,
.action-btn-list .swiper-button-next {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0;
}
.action-btn-list .swiper-button-prev .icon svg,
.action-btn-list .swiper-button-next .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.action-btn-list .swiper-button-prev.swiper-button-disabled,
.action-btn-list .swiper-button-next.swiper-button-disabled {
  display: none !important;
}
.action-btn-list .swiper-button-prev::after,
.action-btn-list .swiper-button-next::after {
  display: none !important;
}
.action-btn-list .icon-btn-md {
  padding-block: 0;
  width: 2.5rem;
}
.action-btn-list .icon-btn-md .icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.selected-list {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.selected-list .item-selected {
  color: var(--dark-600);
  border: 1px solid var(--light-300);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.recommend-list {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  margin-bottom: 0;
}
.recommend-list .recommend-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1rem;
  gap: 0.5rem;
  color: var(--dark-600);
  line-height: 150%;
}
.recommend-list .recommend-item:not(:last-child) {
  margin-bottom: 1rem;
}
.recommend-list .recommend-item .icon svg {
  height: 1rem;
}

.btn-action-24 {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-action-24 .text {
  display: none;
}
.btn-action-24 svg {
  width: 1.25rem;
  height: 1.25rem;
}
.btn-action-24.edit-btn {
  color: #54c07f;
}

.btn-action-40, .group-input .btn-40 {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-action-40 .icon svg, .group-input .btn-40 .icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.delet-btn {
  color: #e82c2c;
}

.req-btn {
  color: var(--primary-color);
}

.btn-middle-end {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-end: -1.25rem;
  background-color: var(--bs-white);
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: var(--bs-btn-disabled-color);
  pointer-events: none;
  background-color: var(--bs-btn-disabled-bg);
  border-color: var(--bs-btn-disabled-border-color);
  opacity: var(--bs-btn-disabled-opacity);
}

/* end button*/
.selected-question-item {
  border: 1px solid var(--light-300);
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: var(--bs-white);
}
.selected-question-item:hover, .selected-question-item:focus, .selected-question-item:active {
  background-color: var(--light-200);
}
.selected-question-item .toggle-activate {
  border-inline: 1px solid var(--light-300);
  -webkit-padding-end: 0.5rem;
          padding-inline-end: 0.5rem;
}
.selected-question-item:not(:first-child) {
  border-top: none;
}
.selected-question-item .item-headline {
  font-size: 0.875rem;
  color: var(--dark-600);
  margin-bottom: 0;
}
.selected-question-item .body {
  padding-inline: 0.5rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.selected-question-item .action-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.selected-question-item .action-list .btn {
  width: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}
.selected-question-item .action-list .btn svg {
  height: 1.25rem;
}
.selected-question-item .action-list .up-dowen-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-border-start: 1px solid var(--light-300);
          border-inline-start: 1px solid var(--light-300);
}
.selected-question-item .action-list .up-dowen-btn-group .btn {
  height: 1.5rem;
}
.selected-question-item .action-list .up-dowen-btn-group .btn:first-child {
  border-bottom: 1px solid var(--light-300);
  border-end-start-radius: 0;
  border-start-start-radius: 0;
  border-end-end-radius: 0;
}
@media (max-width: 600px) {
  .selected-question-item .action-list .up-dowen-btn-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .selected-question-item .action-list .up-dowen-btn-group .btn {
    height: 2.5rem;
    width: 2.5rem;
  }
  .selected-question-item .action-list .up-dowen-btn-group .btn:first-child {
    border-bottom: 0;
    -webkit-border-end: 1px solid var(--light-300);
            border-inline-end: 1px solid var(--light-300);
    border-end-start-radius: 0;
    border-start-start-radius: 0;
    border-end-end-radius: 0;
    border-radius: 0;
  }
}

/* start dropdown*/
.dropdown .dropdown-item:active {
  background-color: var(--light-400);
}
.dropdown.actions .dropdown-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
  color: var(--dark-900);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.25rem;
}
.dropdown.actions .dropdown-item .icon svg {
  width: 1rem;
  height: 1rem;
  opacity: 0.5;
}
.dropdown.actions .dropdown-item.deactivate .icon {
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}
.dropdown.actions .dropdown-item.deactivate .icon::after {
  content: "";
  position: absolute;
  width: 13.33px;
  height: 13.33px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.dropdown.actions .dropdown-item.activate .icon {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  position: relative;
  opacity: 0.5;
}
.dropdown.actions .dropdown-item.activate .icon::after {
  content: "";
  position: absolute;
  width: 13.33px;
  height: 13.33px;
  border: 2px solid var(--dark-900);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.dropdown.multiselect-dropdown > .form-control {
  margin-bottom: 0.25rem;
}
.dropdown.multiselect-dropdown .search-container.mb-2 .form-check, .dropdown.multiselect-dropdown .search-container.mb-2 .dropdown-menu .custom-select-item, .dropdown.multiselect-dropdown .dropdown-menu .search-container.mb-2 .custom-select-item {
  -webkit-transform: translateY(0.65rem);
          transform: translateY(0.65rem);
}
.dropdown.multiselect-dropdown .search-container .form-control {
  margin-bottom: 0.5rem;
}
.dropdown.multiselect-dropdown .dropdown-menu {
  border-color: var(--light-300);
}
.dropdown.multiselect-dropdown .dropdown-menu .custom-select-item,
.dropdown.multiselect-dropdown .dropdown-menu .select-all {
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}
.dropdown.multiselect-dropdown .dropdown-menu .custom-select-item:hover,
.dropdown.multiselect-dropdown .dropdown-menu .select-all:hover {
  background-color: var(--light-200);
}
.dropdown.multiselect-dropdown .dropdown-menu .custom-select-item {
  margin-bottom: 0;
}

/* end dropdown*/
/* start icon */
.circle-icon-56 {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid var(--light-300);
  color: var(--dark-800);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.circle-icon-56 img,
.circle-icon-56 svg {
  width: 2rem;
  height: 2rem;
}

.icon-32 {
  width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.icon-32 svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* end icon */
/* start Headlines  & text*/
.h1:focus-visible,
.h2:focus-visible,
.h3:focus-visible,
.h4:focus-visible,
.h5:focus-visible,
.h6:focus-visible,
h1:focus-visible,
h2:focus-visible,
h3:focus-visible,
h4:focus-visible,
h5:focus-visible,
h6:focus-visible {
  outline: 0;
  border: 0;
}

.auth-headline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-900);
  margin-bottom: 0;
}

.auth-text {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--dark-800);
}

.small-text {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--dark-600);
}

.main-text {
  font-size: 1rem;
  margin-bottom: 0;
  color: var(--dark-700);
}

.page-headline {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.5rem;
  color: var(--dark-900);
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 575px) {
  .page-headline {
    font-size: 1.125rem;
  }
}
.page-headline .parent-page-link {
  text-decoration: none;
  color: var(--dark-900);
}
.page-headline .active-page {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-700);
  -webkit-padding-start: 0.125rem;
          padding-inline-start: 0.125rem;
  position: relative;
}
@media (max-width: 600px) {
  .page-headline .active-page {
    display: block;
  }
}
.page-headline.one-line-ellipsis:hover {
  white-space: normal;
}

.headline-3 {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--color-800);
}

.two-line-ellipsis {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  max-height: 3em; /* Adjust based on your line height */
  line-height: 1.5em; /* Adjust line height as needed */
  max-width: 100%;
}

.one-line-ellipsis {
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swiper .two-line-ellipsis {
  height: 3em;
}

.small-headline {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-800);
}

/* End Headlines & text */
/* satr .card */
.card {
  border-color: var(--light-300);
}
.card .card-sm-title {
  font-size: 0.75rem;
  color: var(--dark-600);
  font-weight: 500;
}
.card .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-800);
  word-break: break-word;
  overflow-wrap: break-word;
}
.card .card-text {
  color: var(--dark-600);
}
.card .card-body .card-header {
  background-color: transparent;
  border-bottom-color: var(--light-300);
  font-size: 1rem;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  font-weight: 600;
  padding-top: 0;
  color: var(--dark-900);
}
.card .card-body .card-footer {
  padding-inline: 0;
  border-top-color: var(--light-300);
  background-color: transparent;
  margin-top: 1rem;
  padding-block: 1rem 0;
}
.card.multi-lvl-card {
  border-width: 0;
}
.card.multi-lvl-card .card-title {
  margin-bottom: 1rem;
}
.card.multi-lvl-card .level-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.card.multi-lvl-card .level-header .small-title {
  -webkit-padding-start: 1.5rem;
          padding-inline-start: 1.5rem;
  position: relative;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-800);
}
.card.multi-lvl-card .level-header .small-title::after {
  content: "";
  position: absolute;
  width: 1.125rem;
  height: 1px;
  background-color: var(--light-300);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-start: 0;
}
.card.multi-lvl-card .level-body {
  -webkit-padding-start: 1.5rem;
          padding-inline-start: 1.5rem;
}
.card.card-btn {
  background-color: var(--light-200);
  border-radius: 0.25rem;
  cursor: pointer;
}
.card.card-btn .card-body {
  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: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.card.card-btn .card-title {
  margin-bottom: 0;
}
.card.card-btn .icon svg {
  width: 2.25rem;
  height: 2.25rem;
  color: var(--primary-color);
}
.card.card-btn:hover {
  background-color: var(--bs-white);
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
}
.card.card-btn-white {
  cursor: pointer !important;
}
.card.card-btn-white:hover {
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
  border-color: var(--primary-color);
}
.card.preview-image .card-body {
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.card.preview-image .edit-label {
  position: relative;
}
.card.preview-image .edit-label .delet-btn {
  position: absolute;
  top: 50%;
  inset-inline-end: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.card.preview-image .edit-label label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0.5rem 1rem;
  -webkit-padding-end: 2.5rem;
          padding-inline-end: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  border: 0;
  border-radius: var(--bs-border-radius);
  margin-bottom: 0;
}
.card.preview-image .file-name-label {
  overflow: hidden;
  padding-inline: 0.5rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card.chart-container .card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.card.chart-container .card-body .content-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: calc(100% - 4.5rem);
}
.card.dimmed {
  opacity: 0.5;
  pointer-events: none;
}
.card.question-card:hover {
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
}
.card.question-card.logo-container {
  background-color: var(--primary-color);
  color: var(--bs-white);
}
.card.card-table .card-header {
  background-color: transparent;
  font-size: 1rem;
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
  font-weight: 600;
  color: var(--dark-900);
  padding-top: 1rem;
  border-bottom: 0;
  position: relative;
}
.card.card-table .card-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 2rem);
  height: 0.5px;
  background-color: var(--light-300);
}
.card.card-table .table::after {
  border-color: transparent;
}
.card.survery-info-card {
  position: relative;
}
.card.survery-info-card .card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.card.survery-info-card .card-title .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.card.survery-info-card::after {
  content: "";
  position: absolute;
  top: 1rem;
  inset-inline-start: 0;
  border-radius: 2rem;
  width: 0.125rem;
  height: 1.5rem;
}
.card.survery-info-card.pause-card::after {
  background-color: var(--bs-warning);
}
.card.survery-info-card.reject-card::after {
  background-color: var(--bs-danger);
}
.card.survery-info-card.group-card {
  border-color: var(--light-200);
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
.card.survery-info-card.group-card::after {
  background-color: var(--primary-color);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: calc(100% - 2rem);
}

.choices-card {
  border-top: 1px solid var(--light-400);
  padding-block: 0.75rem;
}
.choices-card .headline-3 {
  margin-bottom: 0.75rem;
}

/* end .card */
/* strat card-tabs*/
.card-tabs .nav-pills {
  border-bottom: 0;
  gap: 1rem;
}
.card-tabs .nav-pills .nav-link {
  border-bottom: 1px solid var(--light-100);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-700);
  border-radius: 0;
  padding-inline: 0;
  padding-block: 0 0.75rem;
}
.card-tabs .nav-pills .nav-link.active {
  background-color: transparent;
  color: var(--primary-color);
  font-weight: 600;
}
.card-tabs .tab-pane {
  padding-top: 1rem;
}

/* end .card-tabs */
/* start horizontal-tabs*/
.horizontal-tabs {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.horizontal-tabs .page-body {
  -webkit-padding-start: 4.75rem !important;
          padding-inline-start: 4.75rem !important;
}
@media (max-width: 767px) {
  .horizontal-tabs .page-body {
    -webkit-padding-start: 0.75rem !important;
            padding-inline-start: 0.75rem !important;
    padding-top: 120px !important;
  }
}
.horizontal-tabs .page-header, .horizontal-tabs .main-wrapper .main-page .page-body.custome > .d-flex.justify-content-between.align-items-center, .main-wrapper .main-page .horizontal-tabs .page-body.custome > .d-flex.justify-content-between.align-items-center {
  min-height: 3.875rem;
}
@media (max-width: 767px) {
  .horizontal-tabs .page-header, .horizontal-tabs .main-wrapper .main-page .page-body.custome > .d-flex.justify-content-between.align-items-center, .main-wrapper .main-page .horizontal-tabs .page-body.custome > .d-flex.justify-content-between.align-items-center {
    position: fixed !important;
    top: 115px !important;
    width: 100%;
  }
}
.horizontal-tabs > .nav {
  border: 1px solid var(--light-300);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: var(--bs-border-radius);
  position: absolute;
  top: 4.5rem;
  inset-inline-start: 0.75rem;
  z-index: 90;
  overflow: visible;
  background-color: var(--primary-color-50);
}
.horizontal-tabs > .nav .nav-item .nav-link {
  background-color: var(--primary-color-50);
  border-radius: var(--bs-border-radius);
  width: 3.5rem;
  height: 3.5rem;
  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;
  position: relative;
  color: var(--dark-600);
}
.horizontal-tabs > .nav .nav-item .nav-link.active {
  color: var(--primary-color);
}
.horizontal-tabs > .nav .nav-item .nav-link .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.horizontal-tabs > .nav .nav-item .nav-link .text {
  position: absolute;
  inset-inline-start: -1100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--dark-900);
  color: var(--bs-white);
  z-index: 0;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
  white-space: nowrap;
  text-transform: capitalize;
}
.horizontal-tabs > .nav .nav-item .nav-link:hover .text {
  inset-inline-start: 100%;
  z-index: 1;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
@media (max-width: 767px) {
  .horizontal-tabs > .nav {
    position: fixed;
    top: 50px;
    width: 100%;
    border-width: 0 0 1px;
    inset-inline-start: 0;
    border-radius: 0;
    z-index: 1020;
  }
  .horizontal-tabs > .nav .nav-item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .horizontal-tabs > .nav .nav-item .nav-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    height: auto;
    padding-inline: 0.25rem;
    gap: 0.25rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-bottom: 1px solid transparent;
    border-radius: 0;
  }
  .horizontal-tabs > .nav .nav-item .nav-link .text {
    position: static;
    -webkit-transform: none;
            transform: none;
    background-color: transparent;
    color: var(--dark-900);
  }
  .horizontal-tabs > .nav .nav-item .nav-link.active {
    border-color: var(--primary-color);
  }
}

/* end horizontal-tabs*/
/* satr .alert*/
.alert {
  padding: 0.25rem 0.5rem;
  border: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.alert.alert-danger {
  background-color: #fdeaea;
  color: var(--bs-danger);
}

/* end .alert*/
/* start accordion*/
.accordion .accordion-item {
  border: 1px solid var(--light-300);
  border-top: 1px solid var(--light-300);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}
.accordion .accordion-item .accordion-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-padding-end: 1rem;
          padding-inline-end: 1rem;
}
.accordion .accordion-item .accordion-header .up-dowen-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.accordion .accordion-item .accordion-header .up-dowen-btn-group .btn {
  -webkit-border-end: 1px solid var(--light-300);
          border-inline-end: 1px solid var(--light-300);
  border-end-end-radius: 0;
  border-start-end-radius: 0;
}
.accordion .accordion-item .accordion-header .up-dowen-btn-group .btn:first-child {
  border-bottom: 1px solid var(--light-300);
  border-end-start-radius: 0;
}
.accordion .accordion-item .accordion-body {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.accordion .accordion-item .accordion-body.accordion-body-scrollable {
  max-height: 250px;
  overflow-y: auto;
}
.accordion .accordion-item:first-of-type > .accordion-header .accordion-button {
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.accordion .accordion-item:last-of-type > .accordion-header .accordion-button.collapsed {
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.accordion .accordion-item .accordion-button {
  background-color: var(--bs-white);
  border-radius: 0.5rem;
  padding-block: 0.5rem;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  text-align: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 500;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--dark-700);
}
@media (max-width: 575px) {
  .accordion .accordion-item .accordion-button {
    font-size: 0.875rem;
  }
}
.accordion .accordion-item .accordion-button::after {
  display: none;
}
.accordion .accordion-item .accordion-button .icon {
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.accordion .accordion-item .accordion-button .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.accordion .accordion-item .accordion-button .icon .minus {
  display: none;
}
.accordion .accordion-item .accordion-button .icon .pluse {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.accordion .accordion-item .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion .accordion-item .accordion-button.collapsed {
  color: var(--primary-color);
}
.accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--dark-700);
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0.5rem !important;
}
.accordion .accordion-item .accordion-button:not(.collapsed) .icon .minus {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.accordion .accordion-item .accordion-button:not(.collapsed) .icon .pluse {
  display: none;
}
.accordion .accordion-item .accordion-collapse {
  padding-inline: 0;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-top: 1px solid var(--light-300);
}
.accordion.accordion-tree .accordion-item {
  border: none;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 0.75rem;
}
.accordion.accordion-tree .accordion-item:not(:first-child) {
  padding-block: 0.75rem;
}
.accordion.accordion-tree .accordion-item:last-child {
  padding-bottom: 0;
}
.accordion.accordion-tree .accordion-item:last-child .accordion-body {
  padding-bottom: 0;
}
.accordion.accordion-tree .accordion-item:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  inset-inline-start: 1rem;
  background-color: var(--light-300);
  top: 0;
  z-index: 0;
}
.accordion.accordion-tree .accordion-item .item {
  -webkit-margin-start: 1.5rem;
          margin-inline-start: 1.5rem;
  position: relative;
}
.accordion.accordion-tree .accordion-item .item .card-body {
  padding: 0.75rem;
}
.accordion.accordion-tree .accordion-item .item:after {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1px;
  background-color: var(--light-300);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  inset-inline-start: -1.7rem;
}
.accordion.accordion-tree .accordion-item .item:not(:last-child) {
  margin-bottom: 1rem;
}
.accordion.accordion-tree .accordion-item .accordion-header {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}
.accordion.accordion-tree .accordion-item .accordion-header .accordion-button {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0.5rem;
  padding: 0;
}
.accordion.accordion-tree .accordion-item .accordion-header .accordion-button .icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  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;
  border: 1px solid var(--light-300);
  background-color: var(--light-200);
}
.accordion.accordion-tree .accordion-item .accordion-header .accordion-button .icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.accordion.accordion-tree .accordion-item .accordion-collapse {
  border-top: 0;
}
.accordion.accordion-custom .accordion-item .accordion-button::after {
  display: none;
}

/* end accordion*/
/* strat offcanvas */
.offcanvas-backdrop {
  background-color: var(--backdrop-bg);
  margin-top: 0;
}

.offcanvas {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .offcanvas {
    --bs-offcanvas-width: 30vw;
  }
}
@media (max-width: 1023px) {
  .offcanvas {
    --bs-offcanvas-width: 50vw;
  }
}
@media (max-width: 768px) {
  .offcanvas {
    --bs-offcanvas-width: 80vw;
  }
}
@media (max-width: 576px) {
  .offcanvas {
    --bs-offcanvas-width: 90vw;
  }
}
.offcanvas.offcanvas-end {
  border-left: 0;
  right: auto;
  inset-inline-end: 0;
}
.offcanvas .offcanvas-header .close {
  padding: 0;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.offcanvas .offcanvas-header .offcanvas-title {
  color: var(--dark-900);
  font-size: 1.25rem;
  font-weight: 600;
}
.offcanvas form {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: auto;
}
.offcanvas .offcanvas-body {
  padding-top: 0;
}
.offcanvas .offcanvas-footer {
  padding: 0.75rem 1rem;
}

.card-tabs {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-tabs .tab-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-tabs .tab-content > .active {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.card-tabs .tab-pane {
  padding-top: 0.5rem;
}
.card-tabs .tab-pane form > .offcanvas-body {
  max-height: calc(100vh - 175px);
}
.card-tabs .nav {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}

@media (min-width: 1023px) {
  .offcanvas-50-lg {
    --bs-offcanvas-width: 50vw;
  }
}
@media (max-width: 768px) {
  .offcanvas-50-lg {
    --bs-offcanvas-width: 80vw;
  }
}
@media (max-width: 576px) {
  .offcanvas-50-lg {
    --bs-offcanvas-width: 90vw;
  }
}

/* end offcanvas */
/* start .confirmation-popup*/
.confirmation-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--backdrop-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1090;
}
.confirmation-popup .confirmation-content {
  background-color: var(--bs-white);
  padding: 0.5rem;
  border-radius: 0.375rem;
  text-align: center;
}
@media (min-width: 600px) {
  .confirmation-popup .confirmation-content {
    min-width: 420px;
  }
}
.confirmation-popup .confirmation-content .confirmation-title {
  color: var(--dark-900);
  font-weight: 600;
  text-align: center;
}
.confirmation-popup .confirmation-content .icon {
  width: 100px;
  height: 100px;
}

.survey-card-container {
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 575.98px) {
  .survey-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .survey-card-container .card {
    display: none;
  }
  .survey-card-container .card:nth-child(1),
  .survey-card-container .card:nth-child(2) {
    display: block;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .survey-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .survey-card-container .card {
    display: none;
  }
  .survey-card-container .card:nth-child(1),
  .survey-card-container .card:nth-child(2),
  .survey-card-container .card:nth-child(3) {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .survey-card-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .survey-card-container .card {
    display: none;
  }
  .survey-card-container .card:nth-child(1),
  .survey-card-container .card:nth-child(2),
  .survey-card-container .card:nth-child(3),
  .survey-card-container .card:nth-child(4) {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .survey-card-container {
    grid-template-columns: repeat(5, 1fr);
  }
  .survey-card-container .card {
    display: none;
  }
  .survey-card-container .card:nth-child(1),
  .survey-card-container .card:nth-child(2),
  .survey-card-container .card:nth-child(3),
  .survey-card-container .card:nth-child(4),
  .survey-card-container .card:nth-child(5) {
    display: block;
  }
}

/* start carousel*/
.carousel-home {
  border: 1px solid var(--light-300);
  border-radius: 0.5rem;
  min-height: 4rem;
}
.carousel-home .carousel-control-next,
.carousel-home .carousel-control-prev {
  width: 10%;
}
.carousel-home .carousel-control-next .icon,
.carousel-home .carousel-control-prev .icon {
  width: 2.5rem;
  height: 2.5rem;
  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;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  position: relative;
}
.carousel-home .carousel-control-next .icon::after,
.carousel-home .carousel-control-prev .icon::after {
  content: "";
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  top: 50%;
  left: 50%;
  background-color: var(--bs-white);
  z-index: -1;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.carousel-home .carousel-control-next .icon svg,
.carousel-home .carousel-control-prev .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
.carousel-home .carousel-item {
  height: 306px;
}
.carousel-home img {
  height: 100%;
  border-radius: 0.5rem;
  margin: auto;
}

/*end carousel*/
/* strat table*/
.table-responsive:has(.dropdown) {
  min-height: 400px;
}

.table-responsive.sticky-header-custom {
  max-height: 65dvh;
  border: 1px solid var(--light-300);
  border-radius: 0.375rem;
}
.table-responsive.sticky-header-custom thead tr {
  background-color: var(--bs-white);
  position: sticky;
  top: 0;
  z-index: 10;
}
.table-responsive.sticky-header-custom thead tr th {
  position: relative;
}
.table-responsive.sticky-header-custom thead tr th:first-child::after {
  border-start-start-radius: 0.25rem;
  -webkit-border-start: 1px solid var(--light-300);
          border-inline-start: 1px solid var(--light-300);
}
.table-responsive.sticky-header-custom thead tr th:last-child::after {
  inset-inline-start: 1px;
  border-start-end-radius: 0.25rem;
  -webkit-border-end: 1px solid var(--light-300);
          border-inline-end: 1px solid var(--light-300);
}
.table-responsive.sticky-header-custom .report-detials-table thead tr th {
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
  position: relative;
}
.table-responsive.sticky-header-custom .report-detials-table thead tr th:hover {
  background-color: var(--primary-color-50);
}
.table-responsive.sticky-header-custom table::after {
  display: none;
}

.table {
  margin-bottom: 0;
  background-color: var(--bs-white);
  border-radius: 0.375rem;
  border: 1px solid transparent;
  position: relative;
  z-index: 2;
  background-color: transparent;
}
@media (min-width: 1366px) {
  .table .w-col-500-lg {
    width: 500px;
  }
}
.table .td-wrap-cell {
  min-width: 150px;
}
.table .td-wrap-cell.date {
  min-width: 120px;
}
.table.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: transparent;
}
.table.table-hover > tbody > tr:hover > * {
  --bs-table-bg-state: transparent;
}
.table > :not(caption) > * > * {
  background-color: transparent;
}
.table::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--light-300);
  border-radius: 0.375rem;
  z-index: -1;
  background-color: var(--bs-white);
}
.table .td-content .icon,
.table .td-content .title,
.table .td-content .no-desc {
  display: none;
}
.table .mx-w-300 {
  max-width: 300px;
}
.table.card-view .mx-w-300 {
  max-width: unset;
}
.table.card-view .w-col-500-lg {
  width: unset;
}
.table.card-view::after {
  display: none;
}
.table.card-view thead {
  display: none;
}
.table.card-view tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}
.table.card-view tbody tr {
  width: 100%;
  border-radius: var(--bs-border-radius);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid var(--light-300);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1rem;
}
@media (min-width: 768px) {
  .table.card-view tbody tr {
    width: calc(50% - 0.6666666667rem);
  }
}
@media (min-width: 1200px) {
  .table.card-view tbody tr {
    width: calc(33.3333333333% - 0.6666666667rem);
  }
}
.table.card-view tbody tr:last-child:hover::after, .table.card-view tbody tr::after {
  display: none;
}
.table.card-view tbody tr:hover {
  border-color: var(--primary-color);
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.125);
}
.table.card-view tbody tr td,
.table.card-view tbody tr th {
  padding: 0;
}
.table.card-view tbody tr td .two-line-ellipsis,
.table.card-view tbody tr th .two-line-ellipsis {
  height: 3em;
}
.table.card-view tbody tr td:first-child,
.table.card-view tbody tr th:first-child {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.table.card-view tbody tr td:first-child .td-content,
.table.card-view tbody tr th:first-child .td-content {
  border-bottom: 1px solid var(--light-300);
  padding-bottom: 0.5rem;
}
.table.card-view tbody tr td:last-child,
.table.card-view tbody tr th:last-child {
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  padding-bottom: 0;
}
.table.card-view tbody tr td:last-child .action-list,
.table.card-view tbody tr th:last-child .action-list {
  display: grid;
}
.table.card-view tbody tr td:last-child .action-list .btn-sm,
.table.card-view tbody tr th:last-child .action-list .btn-sm {
  min-height: 38px;
}
.table.card-view tbody tr td:last-child .action-list .btn-action-24.custome-btn,
.table.card-view tbody tr th:last-child .action-list .btn-action-24.custome-btn {
  width: 100%;
  min-height: 38px;
}
.table.card-view tbody tr td:last-child .action-list .btn-action-24.custome-btn .text,
.table.card-view tbody tr th:last-child .action-list .btn-action-24.custome-btn .text {
  display: block;
}
.table.card-view tbody tr:last-child td {
  padding-bottom: 0;
}
.table.card-view .td-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.table.card-view .td-content .icon {
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 0.5rem;
  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;
  background-color: var(--light-200);
  color: var(--dark-800);
}
.table.card-view .td-content .icon img,
.table.card-view .td-content .icon svg {
  width: 1rem;
  height: 1rem;
}
.table.card-view .td-content .icon.primary-icon {
  background-color: var(--primary-color);
  color: var(--bs-white);
}
.table.card-view .content-text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: calc(100% - 2.75rem);
}
.table.card-view .content-text .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.75rem;
  color: var(--dark-900);
  font-weight: 500;
}
.table.card-view .content-text .desc {
  font-size: 0.75rem;
  color: var(--dark-600);
}
.table.card-view .content-text .no-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: var(--dark-400);
  font-size: 0.75rem;
}
.table.card-view .content-text .no-desc svg {
  width: 1rem;
  height: 1rem;
}
.table thead th {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--dark-800);
  white-space: nowrap;
  background-color: transparent;
  padding-top: 1rem;
  border-inline-width: 0;
  border-bottom: 0;
}
.table thead th:first-child {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}
.table thead th:last-child {
  -webkit-padding-end: 1rem;
          padding-inline-end: 1rem;
}
.table tbody {
  position: relative;
  z-index: 1;
}
.table tbody tr {
  position: relative;
}
.table tbody tr td {
  font-size: 0.875rem;
  color: var(--dark-800);
  background-color: transparent;
}
.table tbody tr td,
.table tbody tr th {
  border-bottom: 0;
}
.table tbody tr td:first-child,
.table tbody tr th:first-child {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}
.table tbody tr td:last-child,
.table tbody tr th:last-child {
  -webkit-padding-end: 1rem;
          padding-inline-end: 1rem;
}
.table tbody tr::after {
  content: "";
  position: absolute;
  height: 0.5px;
  top: unset;
  bottom: 0;
  left: 50%;
  z-index: -1;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  background: var(--light-300);
  width: calc(100% - 2rem);
}
.table tbody tr:hover:after {
  height: 100%;
  width: calc(100% - 2px);
  background-color: var(--light-200);
}
.table tbody tr:last-child td {
  padding-bottom: 1rem;
}
.table tbody tr:last-child::after {
  display: none;
  border-end-end-radius: 0.375rem;
}
.table tbody tr:last-child:hover:after {
  display: block;
  opacity: 1;
  height: calc(100% - 1px);
  width: calc(100% - 2px);
  background-color: var(--light-200);
  top: 0px;
  border-end-end-radius: 0.375rem;
  border-end-start-radius: 0.375rem;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

table.report-detials-table tbody tr td:nth-child(3) .wrap-cell,
table.report-detials-table tbody tr td:nth-child(4) .wrap-cell {
  min-width: 7.5rem !important;
}
table.report-detials-table tbody tr td:not(:first-child) .wrap-cell {
  min-width: 150px;
}

/* end table*/
/* start pagination*/
.table-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.5rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.table-bottom .start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.table-bottom .start .table-info,
.table-bottom .start .table-dropdown {
  color: var(--dark-700);
  font-size: 0.875rem;
}
@media (max-width: 992px) {
  .table-bottom .start {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0.5rem;
  }
}
.table-bottom .start .table-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.table-bottom .start .table-dropdown label {
  white-space: nowraP;
}
.table-bottom .start .table-dropdown .form-control {
  padding-block: 0.35rem;
}
@media (max-width: 992px) {
  .table-bottom .end {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.table-bottom .pagination {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  padding-left: 0;
  padding-right: 0;
  list-style: none;
  padding-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  gap: 0.25rem;
}
@media (max-width: 992px) {
  .table-bottom .pagination {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.table-bottom .pagination .page-item .page-link {
  border-radius: 0.25rem;
  padding: 0.25rem;
  min-width: 2rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--light-300);
  text-decoration: none;
  color: var(--dark-800);
  font-size: 0.875rem;
  font-weight: 500;
}
.table-bottom .pagination .page-item .page-link .icon {
  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;
}
.table-bottom .pagination .page-item .page-link .arrow {
  width: 1.5rem;
  height: 1.5rem;
}
.table-bottom .pagination .page-item .page-link.action-btn {
  background-color: var(--light-btn);
  color: var(--primary-color);
}
.table-bottom .pagination .page-item.disabled .page-link {
  opacity: 0.5;
}
.table-bottom .pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  color: var(--bs-white);
  border-color: var(--primary-color);
}

/* end pagination*/
.survey-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding-top: 4rem;
}
.survey-end .vector {
  width: 256px;
}

.x-small {
  font-size: 0.75rem;
}

/* start loader-container*/
.loader-container {
  width: 100vw;
  height: 100vh;
  position: fixed;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--bs-white);
  z-index: 1100;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  top: 0;
  left: 0;
}
.loader-container .loader {
  position: relative;
  width: 85px;
  height: 50px;
  background-repeat: no-repeat;
  background-image: linear-gradient(var(--primary-color) 50px, transparent 0), linear-gradient(var(--primary-color) 50px, transparent 0), linear-gradient(var(--primary-color) 50px, transparent 0), linear-gradient(var(--primary-color) 50px, transparent 0), linear-gradient(var(--primary-color) 50px, transparent 0), linear-gradient(var(--primary-color) 50px, transparent 0);
  background-position: 0px center, 15px center, 30px center, 45px center, 60px center, 75px center, 90px center;
  -webkit-animation: rikSpikeRoll 0.65s linear infinite alternate;
          animation: rikSpikeRoll 0.65s linear infinite alternate;
}
@-webkit-keyframes rikSpikeRoll {
  0% {
    background-size: 10px 3px;
  }
  16% {
    background-size: 10px 50px, 10px 3px, 10px 3px, 10px 3px, 10px 3px, 10px 3px;
  }
  33% {
    background-size: 10px 30px, 10px 50px, 10px 3px, 10px 3px, 10px 3px, 10px 3px;
  }
  50% {
    background-size: 10px 10px, 10px 30px, 10px 50px, 10px 3px, 10px 3px, 10px 3px;
  }
  66% {
    background-size: 10px 3px, 10px 10px, 10px 30px, 10px 50px, 10px 3px, 10px 3px;
  }
  83% {
    background-size: 10px 3px, 10px 3px, 10px 10px, 10px 30px, 10px 50px, 10px 3px;
  }
  100% {
    background-size: 10px 3px, 10px 3px, 10px 3px, 10px 10px, 10px 30px, 10px 50px;
  }
}
@keyframes rikSpikeRoll {
  0% {
    background-size: 10px 3px;
  }
  16% {
    background-size: 10px 50px, 10px 3px, 10px 3px, 10px 3px, 10px 3px, 10px 3px;
  }
  33% {
    background-size: 10px 30px, 10px 50px, 10px 3px, 10px 3px, 10px 3px, 10px 3px;
  }
  50% {
    background-size: 10px 10px, 10px 30px, 10px 50px, 10px 3px, 10px 3px, 10px 3px;
  }
  66% {
    background-size: 10px 3px, 10px 10px, 10px 30px, 10px 50px, 10px 3px, 10px 3px;
  }
  83% {
    background-size: 10px 3px, 10px 3px, 10px 10px, 10px 30px, 10px 50px, 10px 3px;
  }
  100% {
    background-size: 10px 3px, 10px 3px, 10px 3px, 10px 10px, 10px 30px, 10px 50px;
  }
}

/* end loader-container*/
/* start search-select-component */
/* start search-select-component */
.search-select-component .label {
  display: none;
}
.search-select-component .dropdown-toggle {
  padding: 0.375rem 0.75rem;
  height: 38.8px !important;
  border-color: var(--light-300) !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: start;
}
.search-select-component .form-floating > .search-select-selected {
  top: 0 !important;
  padding-right: 0 !important;
  -webkit-padding-end: 1.2rem;
          padding-inline-end: 1.2rem;
  text-align: start;
}
.search-select-component .dropdown-menu {
  min-width: 100% !important;
  border: 1px solid var(--light-300) !important;
  margin-block: 0.35rem;
  padding: 0.5rem;
  padding-top: 0.5rem !important;
}
.search-select-component .dropdown-menu .dropdown-input {
  padding: 0.375rem 0.75rem;
  -webkit-padding-start: 2.5rem;
          padding-inline-start: 2.5rem;
  border: 1px solid var(--light-300) !important;
  border-radius: 0.25rem;
  background-position: left 0.75rem center;
  margin-bottom: 0.5rem;
}
.search-select-component .dropdown li {
  border-radius: 0.25rem;
  cursor: pointer;
}
.search-select-component .dropdown li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.search-select-component .dropdown li:hover {
  background-color: var(--light-300) !important;
  color: var(--dark-900) !important;
}
.search-select-component .dropdown li.active {
  background-color: var(--primary-color) !important;
  color: var(--bs-white) !important;
}

/* end search-select-component */
@media (max-width: 500px) {
  .fixed-start-bottom-circle-btn {
    position: fixed;
    inset-inline-end: 0.5rem;
    bottom: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 12px rgba(0, 0, 0, 0.125);
            box-shadow: 0 0 12px rgba(0, 0, 0, 0.125);
  }
}

/* end Global */
/* start .auth */
.auth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.auth .main-header-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--light-300);
}
.auth .auth-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-image: url(../images/KSA-Towers.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-top: 4rem;
}
.auth .auth-body .auth-box {
  padding: 2rem 1.5rem;
  background-color: var(--bs-white);
  border-radius: 1rem;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 4px 4px rgba(0, 0, 0, 0.04);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 4px 4px rgba(0, 0, 0, 0.04);
}
.auth .auth-body .auth-box .auth-headline {
  margin-bottom: 0.5rem;
  text-align: center;
}
.auth .auth-body .auth-box .auth-text {
  margin-bottom: 1.5rem;
}
.auth .btn-change-lang {
  width: 100%;
  border: 0;
  padding: 0;
  margin-top: 1.5rem;
}
.auth .btn-change-lang:hover, .auth .btn-change-lang:focus {
  background-color: transparent;
  text-decoration: underline;
  color: var(--primary-color);
}
.auth .btn-change-lang span.en {
  display: none;
}
.auth .btn-change-lang span.ar {
  display: none;
}
.auth .btn-change-lang span.ar-text {
  font-family: "Almarai", sans-serif;
}
.auth .btn-change-lang span.en-text {
  display: none;
}
.auth .btn-change-lang .icon-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  cursor: pointer;
}
.auth .btn-change-lang .icon-text .icon {
  padding: 0;
}
.auth .btn-change-lang .icon-text .icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* end auth*/
.main-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.main-wrapper {
  -webkit-padding-start: 220px;
          padding-inline-start: 220px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  /* start side-nav*/
  /* end side-nav*/
  /* strat .main-header*/
  /* end .main-header*/
}
.main-wrapper .side-nav {
  position: fixed;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 220px;
  height: 100vh;
  inset-inline-start: 0;
  top: 0;
  background: var(--primary-color);
  z-index: 1040;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-wrapper .side-nav .side-nav-header {
  padding: 0.875rem 1.5rem 0;
  position: relative;
  color: var(--bs-white);
}
.main-wrapper .side-nav .side-nav-header .side-nav-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  gap: 0.75rem;
  font-size: 1rem;
}
.main-wrapper .side-nav .side-nav-header .side-nav-logo .icon img {
  width: 2.25rem;
  height: 2.25rem;
}
.main-wrapper .side-nav .side-nav-header .side-nav-toggle-btn {
  position: absolute;
  padding: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  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;
  background-color: var(--bs-white);
  color: var(--primary-color);
  inset-inline-end: -0.75rem;
}
.main-wrapper .side-nav .side-nav-header .side-nav-toggle-btn svg {
  height: 1rem;
}
.main-wrapper .side-nav .sid-nav-body {
  padding-top: 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  z-index: 100;
  position: relative;
  background: var(--primary-color);
  overflow: auto;
}
.main-wrapper .side-nav .sid-nav-body .nav {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-item .chevron svg {
  width: 1rem;
  height: 1rem;
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-item .dropdown-menu {
  min-width: 100%;
  border-radius: 0;
  background-color: var(--white-opacity-10);
  border: 0;
  padding: 0;
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-item .dropdown-menu.show {
  position: static !important;
  inset: 0;
  margin: 0px;
  -webkit-transform: none !important;
          transform: none !important;
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-item .dropdown-menu .icon svg,
.main-wrapper .side-nav .sid-nav-body .nav .nav-item .dropdown-menu .icon img {
  width: 1rem;
  height: 1rem;
}
.main-wrapper .side-nav .sid-nav-body .nav .dropdown .nav-link {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-wrapper .side-nav .sid-nav-body .nav .dropdown .nav-link.show .arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-link {
  color: var(--bs-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.75rem;
  -webkit-padding-start: 1.5rem;
          padding-inline-start: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  position: relative;
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-link.active {
  background-color: var(--white-opacity-10);
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-link.active::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0.25rem;
  inset-inline-start: 0;
  top: 0;
  background: var(--bs-white);
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-link .icon-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-link:hover {
  background-color: var(--white-opacity-10);
}
.main-wrapper .side-nav .sid-nav-body .nav .nav-link .icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.main-wrapper .main-header {
  background-color: var(--bs-white);
  border-bottom: 1px solid var(--light-300);
}
.main-wrapper .main-header .main-header-body {
  padding: 0.5rem 1.5rem 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  position: relative;
}
.main-wrapper .main-header .main-header-body .end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
.main-wrapper .main-header .main-header-body .side-nav-toggle-btn {
  color: var(--dark-500);
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 50%;
  -webkit-transition: all 2ms ease-in-out;
  transition: all 2ms ease-in-out;
}
.main-wrapper .main-header .main-header-body .side-nav-toggle-btn svg {
  width: 2rem;
}
.main-wrapper .main-header .main-header-body .side-nav-toggle-btn:active, .main-wrapper .main-header .main-header-body .side-nav-toggle-btn:hover, .main-wrapper .main-header .main-header-body .side-nav-toggle-btn:focus {
  background-color: var(--light-200);
  -webkit-transition: all 2ms ease-in-out;
  transition: all 2ms ease-in-out;
}
.main-wrapper .main-header .main-header-body .side-nav-toggle-btn:active svg, .main-wrapper .main-header .main-header-body .side-nav-toggle-btn:hover svg, .main-wrapper .main-header .main-header-body .side-nav-toggle-btn:focus svg {
  width: 1.5rem;
}
.main-wrapper .main-header .main-header-body .logo {
  max-height: 3rem;
}
.main-wrapper .main-header .main-header-body .dropdown-user .first-user-letter {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--primary-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--bs-white);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--light-300);
}
.main-wrapper .main-header .main-header-body .dropdown-user .btn-user {
  padding: 0;
  border: 0;
  border-radius: 50%;
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu {
  width: 15rem;
  border-color: var(--light-300);
  padding: 1rem;
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 0.5rem;
  border-bottom: 1px solid var(--light-300);
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .header .first-user-letter {
  width: 3.5rem;
  height: 3.5rem;
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .header .user-info {
  width: calc(100% - 4rem);
  text-align: start;
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .header .user-info .user-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-900);
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .header .user-info .user-email {
  font-size: 0.75rem;
  color: var(--dark-500);
  white-space: pre-wrap;
  width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .dropdown-item {
  padding-inline: 0;
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .dropdown-item.active, .main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .dropdown-item:active {
  background-color: var(--light-300);
  border-color: var(--light-300);
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .dropdown-item .drop-link {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem;
  color: var(--dark-700);
  font-size: 0.875rem;
  font-weight: 500;
}
.main-wrapper .main-header .main-header-body .dropdown-user .dropdown-menu .dropdown-item .drop-link .icon svg {
  width: 1.125rem;
  height: 1.125rem;
}
.main-wrapper .main-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-wrapper .main-page .page-header, .main-wrapper .main-page .page-body.custome > .d-flex.justify-content-between.align-items-center {
  background-color: var(--bs-white);
  padding: 0.75rem 0.75rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: sticky;
  top: 4rem;
  z-index: 100;
  max-width: 100%;
}
.main-wrapper .main-page .page-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0.75rem 0.75rem 0.75rem 0.75rem;
}
.main-wrapper .main-page .page-body.custome {
  padding-top: 1rem;
  min-height: calc(100vh - 7.5rem);
}
.main-wrapper .main-page .page-body.custome .margin-after-12,
.main-wrapper .main-page .page-body.custome .margin-before-11 {
  margin-right: unset !important;
  margin-left: unset !important;
}
.main-wrapper .main-page .page-body.custome .table {
  border-radius: 0.375rem;
  border: 1px solid transparent;
  position: relative;
}
.main-wrapper .main-page .page-body.custome .table.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: transparent;
}
.main-wrapper .main-page .page-body.custome .table.table-hover > tbody > tr:hover > * {
  --bs-table-bg-state: transparent;
}
.main-wrapper .main-page .page-body.custome .table::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--light-300);
  border-radius: 0.375rem;
}
.main-wrapper .main-page .page-body.custome .table thead th {
  padding-top: 1rem;
  border-inline-width: 0;
  border-bottom: 0;
}
.main-wrapper .main-page .page-body.custome .table thead th:first-child {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}
.main-wrapper .main-page .page-body.custome .table thead th:last-child {
  -webkit-padding-end: 1rem;
          padding-inline-end: 1rem;
}
.main-wrapper .main-page .page-body.custome .table tbody tr td,
.main-wrapper .main-page .page-body.custome .table tbody tr th {
  border-bottom: 0;
}
.main-wrapper .main-page .page-body.custome .table tbody tr td:first-child,
.main-wrapper .main-page .page-body.custome .table tbody tr th:first-child {
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
}
.main-wrapper .main-page .page-body.custome .table tbody tr td:last-child,
.main-wrapper .main-page .page-body.custome .table tbody tr th:last-child {
  -webkit-padding-end: 1rem;
          padding-inline-end: 1rem;
}
.main-wrapper .main-page .page-body.custome .table tbody tr::after {
  height: 0.5px;
  top: unset;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  opacity: 1;
  background: var(--light-300);
  width: calc(100% - 2rem);
}
.main-wrapper .main-page .page-body.custome .table tbody tr:hover:after {
  opacity: 1;
  height: 100%;
  width: calc(100% - 2px);
  background-color: var(--light-200);
}
.main-wrapper .main-page .page-body.custome .table tbody tr:last-child td {
  padding-bottom: 1rem;
}
.main-wrapper .main-page .page-body.custome .table tbody tr:last-child::after {
  display: none;
  border-end-end-radius: 0.375rem;
}
.main-wrapper .main-page .page-body.custome .table tbody tr:last-child:hover:after {
  display: block;
  opacity: 1;
  height: calc(100% - 1px);
  width: calc(100% - 2px);
  background-color: var(--light-200);
  top: 0px;
  border-end-end-radius: 0.375rem;
  border-end-start-radius: 0.375rem;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.main-wrapper .main-page > .h-100 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.main-wrapper .main-page > .StreamDefinitions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.main-wrapper .main-page > .StreamDefinitions > .h-100 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.main-wrapper .main-page .page-footer {
  border-top: 1px solid var(--light-300);
  padding: 1rem;
  color: var(--dark-700);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: start;
}
@media (max-width: 600px) {
  .main-wrapper .main-page .page-footer {
    text-align: center;
  }
}
.main-wrapper.side-menu-collapse {
  -webkit-padding-start: 72px;
          padding-inline-start: 72px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-wrapper.side-menu-collapse .side-nav {
  width: 72px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.main-wrapper.side-menu-collapse .side-nav .side-nav-toggle-btn {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.main-wrapper.side-menu-collapse .side-nav .side-nav-header {
  padding-inline: 0;
}
.main-wrapper.side-menu-collapse .side-nav .side-nav-logo {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-wrapper.side-menu-collapse .side-nav .side-nav-logo .icon img {
  width: 1.5rem;
  height: 1.5rem;
}
.main-wrapper.side-menu-collapse .side-nav .side-nav-logo .text {
  display: none;
}
.main-wrapper.side-menu-collapse .side-nav .sid-nav-body .dropdown-menu,
.main-wrapper.side-menu-collapse .side-nav .sid-nav-body .nav-item {
  width: 100%;
}
.main-wrapper.side-menu-collapse .side-nav .sid-nav-body .dropdown-menu .nav-link,
.main-wrapper.side-menu-collapse .side-nav .sid-nav-body .nav-item .nav-link {
  padding-inline: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.main-wrapper.side-menu-collapse .side-nav .sid-nav-body .dropdown-menu .nav-link .text,
.main-wrapper.side-menu-collapse .side-nav .sid-nav-body .nav-item .nav-link .text {
  position: absolute;
  padding: 0.25rem;
  background-color: var(--dark-900);
  white-space: nowrap;
  inset-inline-start: -200%;
}
.main-wrapper.side-menu-collapse .side-nav .sid-nav-body .dropdown-menu .nav-link:hover .text,
.main-wrapper.side-menu-collapse .side-nav .sid-nav-body .nav-item .nav-link:hover .text {
  inset-inline-start: 100%;
}
.main-wrapper.side-menu-collapse .side-nav .sid-nav-body .arrow {
  display: none;
}
.main-wrapper.side-menu-collapse .side-nav:hover {
  width: 240px;
}
.main-wrapper.side-menu-collapse .side-nav:hover .side-nav-header {
  padding-inline: 1.5rem;
}
.main-wrapper.side-menu-collapse .side-nav:hover .side-nav-logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-wrapper.side-menu-collapse .side-nav:hover .text {
  display: block;
}
.main-wrapper.side-menu-collapse .side-nav:hover .nav-item {
  width: 100%;
}
.main-wrapper.side-menu-collapse .side-nav:hover .nav-item .nav-link {
  padding: 0.75rem;
  -webkit-padding-start: 1.5rem;
          padding-inline-start: 1.5rem;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-wrapper.side-menu-collapse .side-nav:hover .nav-item .nav-link .text {
  position: static;
  padding: 0.25rem;
  background-color: transparent;
  white-space: nowrap;
  inset-inline-start: 0;
}
.main-wrapper.side-menu-collapse .side-nav:hover .nav-item .nav-link:hover .text {
  inset-inline-start: 100%;
}
.main-wrapper.side-menu-collapse .side-nav:hover .nav-item .arrow {
  display: block;
}
@media (max-width: 768px) {
  .main-wrapper {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  .main-wrapper .side-nav {
    inset-inline-start: -220px;
  }
  .main-wrapper .side-nav.active-sm {
    inset-inline-start: 0;
  }
  .main-wrapper .side-nav.active-sm .overlay {
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: var(--backdrop-bg);
    top: 0;
    inset-inline-start: 0;
    z-index: 0;
  }
  .main-wrapper .side-nav .side-nav-header {
    z-index: 2;
    background-color: var(--primary-color);
  }
  .main-wrapper .side-nav .side-nav-header .side-nav-toggle-btn {
    border: 1px solid var(--light-300);
    background-color: var(--light-200);
    width: 2.25rem;
    height: 2.25rem;
    inset-inline-end: -3rem;
    top: 0.75rem;
  }
  .main-wrapper .side-nav .side-nav-header .side-nav-logo .text {
    display: block;
  }
  .main-wrapper .side-nav .sid-nav-body .dropdown-menu,
  .main-wrapper .side-nav .sid-nav-body .nav-item {
    width: 100% !important;
  }
  .main-wrapper .side-nav .sid-nav-body .dropdown-menu .nav-link,
  .main-wrapper .side-nav .sid-nav-body .nav-item .nav-link {
    padding-inline: 1rem !important;
    -webkit-padding-start: 1.5rem !important;
            padding-inline-start: 1.5rem !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .main-wrapper .side-nav .sid-nav-body .dropdown-menu .nav-link .text,
  .main-wrapper .side-nav .sid-nav-body .nav-item .nav-link .text {
    position: static !important;
    padding: 0 !important;
    inset-inline-start: 0 !important;
    background-color: transparent !important;
  }
  .main-wrapper .side-nav .sid-nav-body .dropdown-menu .nav-link:hover .text,
  .main-wrapper .side-nav .sid-nav-body .nav-item .nav-link:hover .text {
    inset-inline-start: 0;
  }
  .main-wrapper .side-nav .sid-nav-body .arrow {
    display: block !important;
  }
  .main-wrapper.side-menu-collapse {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  .main-wrapper.side-menu-collapse .side-nav {
    width: 220px;
    inset-inline-start: 0;
  }
}
.main-wrapper:not(:has(.side-nav)) {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

.e-rte-container {
  border-color: var(--light-300);
  border-radius: var(--bs-border-radius);
}

.e-richtexteditor .e-rte-content,
.e-richtexteditor .e-source-content {
  border-radius: 0 0 var(--bs-border-radius) var(--bs-border-radius);
}

.e-toolbar {
  background: transparent;
  border-start-start-radius: var(--bs-border-radius);
}
.e-toolbar .e-toolbar-items {
  background: transparent;
}

.e-toolbar .e-hor-nav {
  right: auto;
  inset-inline-end: 0.125rem;
  background-color: var(--bs-white);
  border-radius: var(--bs-border-radius);
}

/* start rtl*/
html[dir=rtl] .arrow {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}
html[dir=rtl] *:not(i):not(.fa):not(mat-icon):not(.e-icons) {
  font-family: "Almarai", sans-serif;
}
html[dir=rtl] .input-group.phone * {
  direction: ltr;
}
html[dir=rtl] .input-group.phone .form-control {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
  border-left-width: 0;
}
html[dir=rtl] .input-group.phone .input-group-text {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
}
html[dir=rtl] .btn-change-lang span.en {
  background: transparent;
  color: var(--dark-700);
  opacity: 0.65;
}
html[dir=rtl] .btn-change-lang span.ar {
  opacity: 1;
  background: var(--primary-color);
  color: var(--bs-white);
}
html[dir=rtl] .btn-change-lang span.ar-text {
  display: none;
}
html[dir=rtl] .btn-change-lang span.en-text {
  display: block;
}
html[dir=rtl] .form-select {
  background-position: left 0.75rem center;
  padding: 0.6rem 0.75rem 0.6rem 2.25rem;
}
html[dir=rtl] .search-select-component .dropdown-toggle {
  background-position: left 0.75rem center;
}
html[dir=rtl] .search-select-component .dropdown-menu .dropdown-input {
  background-position: right 0.75rem center;
}
html[dir=rtl] .date-group input[type=date]::-webkit-calendar-picker-indicator {
  direction: rtl;
  background-position: calc(100% - 0.5rem) center;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
html[dir=rtl] .date-group .form-control {
  -webkit-padding-start: 2.25rem;
          padding-inline-start: 2.25rem;
  text-align: right;
}
html[dir=rtl] .group-input.end-switch .form-control {
  -webkit-padding-start: 0.75rem;
          padding-inline-start: 0.75rem;
  -webkit-padding-end: 0.75rem;
          padding-inline-end: 0.75rem;
  direction: rtl;
}
html[dir=rtl] .group-input.end-switch:has(.switch-end) .form-control {
  -webkit-padding-end: 5.4rem;
          padding-inline-end: 5.4rem;
  -webkit-padding-start: 0.75rem;
          padding-inline-start: 0.75rem;
}
html[dir=rtl] .group-input.end-switch .switch-end {
  position: absolute;
  top: 50%;
  inset-inline-end: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
html[dir=rtl] .dropdown-menu .select-all .form-check-input {
  margin: 0;
}
html[dir=rtl] ol,
html[dir=rtl] ul {
  direction: rtl;
}

/* end rtl*/
* {
  /* Track */
  /* Handle */
  /* Handle on hover */
}
* ::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
* ::-webkit-scrollbar-track {
  background-color: transparent;
}
* ::-webkit-scrollbar-thumb {
  background: var(--light-600);
}
* ::-webkit-scrollbar-thumb:hover {
  background: var(--dark-800);
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}/*# sourceMappingURL=main.css.map */