@charset "UTF-8";
@import "var.css";
/*scrollbar:start*/
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/*scrollbar:end*/
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background: var(--body-bg);
  color: var(--primary-text-color);
  font-weight: 400;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--primary-text-color);
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.btn:focus {
  box-shadow: none;
}

/*custom-button:start*/
.custom-button {
  font-size: 16px;
  border-radius: 4px;
  height: 40px;
  border: none;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.custom-button.mLeft {
  margin-left: 20px;
}
.custom-button.mRight {
  margin-right: 20px;
}

/*custom-button:end*/
/*custom-primary-button:start*/
.custom-primary-button {
  background: var(--primary-button-bg);
  color: var(--primary-button-text);
}
.custom-primary-button:hover {
  background: var(--primary-button-hover);
  color: var(--primary-button-text);
}
.custom-primary-button.disabled, .custom-primary-button:disabled {
  background: var(--primary-button-disabled);
}

/*custom-primary-button:end*/
/*custom-secondary-button:start*/
.custom-secondary-button {
  background: var(--secondary-button-bg);
  border: solid 1px var(--secondary-button-border);
  color: var(--secondary-button-text);
}
.custom-secondary-button:hover {
  background: var(--secondary-button-hover-bg);
  color: var(--secondary-button-text);
}
.custom-secondary-button.disabled, .custom-secondary-button:disabled {
  background: var(--secondary-button-disabled);
  color: var(--secondary-button-disabled-text);
  border-color: var(--secondary-button-disabled-border);
  pointer-events: none;
  opacity: 0.4;
}

/*custom-secondary-button:end*/
/*reset-button:start*/
.reset-button {
  background: none;
  border: none;
  color: var(--primary-color);
  padding: 0;
  font-weight: 600;
}

/*reset-button:end*/
/*custom-primary-button-outline:start*/
.custom-primary-button-outline {
  background: var(--white-color);
  color: var(--primary-button-outline-text);
  border: solid 1px var(--primary-button-bg);
}
.custom-primary-button-outline:hover {
  background: var(--primary-button-hover);
  color: var(--secondary-button-text);
}
.custom-primary-button-outline.disabled, .custom-primary-button-outline:disabled {
  background: var(--primary-button-disabled);
}

/*custom-primary-button:end*/
/*unstyled-button:start*/
.unstyled-button {
  background: none;
  border: none;
  box-shadow: none;
  color: inherit;
  padding: 0;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
}

/*unstyled-button:end*/
/* =====================
   Custom Checkbox
   ===================== */
.custom-checkbox-container .custom-checkbox {
  margin-top: 16px;
}
.custom-checkbox-container .custom-checkbox:first-child {
  margin-top: 0;
}

.custom-checkbox {
  position: relative;
  padding-left: 24px;
}
.custom-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  background: var(--white-color);
  width: var(--control-size);
  height: var(--control-size);
  border: var(--control-border-width) solid var(--control-color-primary);
  border-radius: var(--checkbox-radius);
  position: absolute;
  left: 0;
  top: 2px;
}
.custom-checkbox input[type=checkbox]:checked {
  background: var(--control-color-primary);
}
.custom-checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 4px;
  width: 5px;
  height: 10px;
  border: solid var(--control-color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-checkbox input[type=checkbox]:hover {
  border-color: var(--control-color-hover);
}
.custom-checkbox input[type=checkbox]:active {
  transform: scale(0.95);
}
.custom-checkbox input[type=checkbox]:disabled {
  border-color: var(--control-color-disabled);
  background: color-mix(in srgb, var(--control-color-disabled) 40%, white);
}
.custom-checkbox input[type=checkbox]:disabled:checked {
  background: var(--control-color-disabled);
}
.custom-checkbox .custom-checkbox-label {
  font-weight: 400;
  color: var(--primary-color);
  margin: 0;
}

/* =====================
   Custom Radio
   ===================== */
.custom-radio {
  display: flex;
}
.custom-radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 3px 6px 0 0;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  width: var(--control-size);
  height: var(--control-size);
  border: var(--control-border-width) solid var(--control-color-primary);
  border-radius: 50%;
}
.custom-radio input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--control-size);
  height: var(--control-size);
  background: var(--control-color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
}
.custom-radio input[type=radio]:hover {
  border-color: var(--control-color-hover);
}
.custom-radio input[type=radio]:active {
  transform: scale(0.95);
}
.custom-radio input[type=radio]:focus {
  box-shadow: none;
}
.custom-radio input[type=radio]:disabled {
  border-color: var(--control-color-disabled);
}
.custom-radio input[type=radio]:disabled::after {
  background: var(--control-color-disabled);
}
.custom-radio .custom-radio-label {
  font-weight: 400;
  color: var(--primary-color);
  margin: 0;
}

.form-label {
  margin-bottom: 10px;
  font-weight: 500;
}

.form-control {
  color: var(--primary-text-color);
  font-size: 16px;
  border-color: var(--light-border-color);
}
.form-control:focus {
  color: var(--primary-text-color);
}
.form-control::-moz-placeholder {
  color: var(--primary-text-color);
  font-size: 16px;
  opacity: 0.4;
}
.form-control::placeholder {
  color: var(--primary-text-color);
  font-size: 16px;
  opacity: 0.4;
}

.form-select {
  color: var(--primary-text-color);
  font-size: 16px;
  border-color: var(--light-border-color);
}
.form-select:focus {
  color: var(--primary-text-color);
  box-shadow: none;
}

/*select2-dropdown:start*/
.select2-container {
  display: block;
}
.select2-container .select2-selection {
  display: flex;
  align-items: center;
}

.select2-dropdown {
  background-color: var(--white-color);
  border-radius: 16px;
  border: 1px solid var(--light-border-color);
  width: auto;
  border-radius: 4px;
  box-shadow: 1px 1px 16px 0px rgba(0, 0, 0, 0.08);
}

.select2-results__option {
  padding: 12px 14px;
  margin: 8px 0;
  font-size: 14px;
  line-height: normal;
  border-radius: 4px;
  white-space: normal;
  word-break: break-word;
}

.select2-container .select2-selection--single {
  background-color: var(--white-color);
  border-radius: 4px;
  border: 1px solid var(--light-border-color);
  height: 38px;
  width: auto;
  padding: 0;
  line-height: 40px;
}

.no-border .select2-container .select2-selection--single {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.bottom-border .select2-container .select2-selection--single {
  border: none;
  border-bottom: 1px solid var(--light-border-color);
  border-radius: 0;
  box-shadow: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  color: var(--primary-text-color);
  font-weight: 500;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
  border-color: var(--primary-text-color) transparent transparent transparent;
}

.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--primary-text-color) transparent !important;
}

.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--primary-text-color) transparent !important;
  border-width: 0 6px 6px 6px !important;
}

.select2-container--default .select2-results > .select2-results__options {
  padding: 10px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  border: none;
  background: var(--light-border-color);
  color: var(--primary-text-color);
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: var(--ui-menu-item-active-bg);
  color: var(--ui-menu-item-active-text-color);
}
.select2-container--default .select2-results__option[aria-selected=true]:hover {
  background: var(--ui-menu-item-active-bg);
}

.select2-container .select2-selection--single .select2-selection__arrow b {
  border-color: var(--primary-text-color) transparent transparent transparent;
  border-width: 6px 6px 0 6px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid var(--light-border-color);
  color: var(--primary-text-color);
  height: 38px;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  width: 10px;
  height: 36px;
}

.select2-container--default .select2-selection--multiple {
  border-color: var(--light-border-color);
  height: 42px;
  padding: 8px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: var(--light-border-color);
}

.language-dropdown .select2-dropdown {
  width: 200px !important;
  margin-left: -125px;
}
.language-dropdown .select2-container .select2-selection--single .select2-selection__rendered {
  display: none;
}

.tenant-dropdown .select2-dropdown {
  width: 200px !important;
  margin-left: -25px;
}

.location-dropdown .select2-dropdown {
  width: 200px !important;
  margin-left: -25px;
}

/*select2-dropdown:end*/
.badge {
  padding: 8px;
  font-weight: 500;
}

.status-in-progress {
  background-color: var(--status-in-progress-bg);
  color: var(--status-in-progress-text);
}

.status-uploading {
  background-color: var(--status-uploading-bg);
  color: var(--status-uploading-text);
}

.status-analysing {
  background-color: var(--status-analysing-bg);
  color: var(--status-analysing-text);
}

.status-review {
  background-color: var(--status-review-bg);
  color: var(--status-review-text);
}

.status-completed {
  background-color: var(--status-completed-bg);
  color: var(--status-completed-text);
}

.status-danger {
  background-color: var(--status-danger-bg);
  color: var(--status-danger-text);
}

.status-not-favourite {
  background: var(--secondary-button-bg);
  border: solid 1px var(--secondary-button-border);
  color: var(--secondary-button-text);
}

.status-favourite {
  background-color: var(--status-danger-bg);
  color: var(--status-danger-text);
  border: none;
}

.text-in-progress {
  color: var(--status-in-progress-bg);
}

.text-uploading {
  color: var(--status-uploading-bg);
}

.text-analysing {
  color: var(--status-analysing-bg);
}

.text-review {
  color: var(--status-review-bg);
}

.text-completed {
  color: var(--status-completed-bg);
}

.text-danger {
  color: var(--status-danger-bg) !important;
}

.status-active-text {
  color: var(--status-active-text);
}

.status-inactive-text {
  color: var(--status-inactive-text);
}

.status-link-text {
  color: var(--status-link-text) !important;
  background: none;
  border: none;
}

.primary-link-text {
  color: var(--primary-text-color) !important;
  background: none;
  border: none;
}

.text-primary {
  color: var(--primary-text-color) !important;
}

.status-disabled-text {
  color: var(--status-disabled-text);
}

.border-in-progress {
  border: 1px solid var(--status-in-progress-bg);
}

.border-uploading {
  border: 1px solid var(--status-uploading-bg);
}

.border-analysing {
  border: 1px solid var(--status-analysing-bg);
}

.border-review {
  border: 1px solid var(--status-review-bg);
}

.border-completed {
  border: 1px solid var(--status-completed-bg);
}

.border-danger {
  border: 1px solid var(--status-danger-bg);
}

.invalid-feedback {
  color: var(--status-danger-bg) !important;
  margin-top: 5px;
  font-size: 14px;
}

.fw-medium {
  font-weight: 500 !important;
}

.radio-circle {
  width: var(--control-size);
  height: var(--control-size);
  border: var(--control-border-width) solid var(--control-color-primary);
  border-radius: 50%;
}

.checkbox-option {
  width: var(--control-size);
  height: var(--control-size);
  border: var(--control-border-width) solid var(--control-color-primary);
  border-radius: 4px;
}

.modal-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: var(--primary-light-color);
  color: var(--primary-color);
  border: none;
}

.modal-title {
  font-size: 22px;
  font-weight: 500;
}

.modal-desc {
  font-size: 12px;
  font-weight: 400;
  color: var(--subtitle-color);
}

.tab-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.tab-scroll-wrapper .scroll-btn {
  position: absolute;
  height: 100%;
  z-index: 2;
  top: -1px;
}
.tab-scroll-wrapper .scroll-btn:disabled {
  pointer-events: none;
  opacity: 0;
  background: var(--primary-button-disabled);
}
.tab-scroll-wrapper .scroll-btn.prev {
  margin-right: 0;
  left: 0;
}
.tab-scroll-wrapper .scroll-btn.next {
  margin-left: 0;
  right: 0;
}

.nav-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  border: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
.nav-tabs::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.nav-tabs .nav-item {
  flex: 0 0 auto;
  padding: 0 4px;
  margin: 0;
}
.nav-tabs .nav-link {
  border: none;
  border-bottom: solid 1px var(--tab-border);
  color: var(--tab-color);
  margin-bottom: 0;
}
.nav-tabs .nav-link:hover {
  border-color: var(--tab-active-border);
  color: var(--tab-active-color);
}
.nav-tabs .nav-link.active {
  border-color: var(--tab-active-border);
  background: var(--tab-active-bg);
  color: var(--tab-active-color);
}

/* Toggle widget (start) */
.toggle-widget {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.toggle-widget input {
  display: none;
}
.toggle-widget .toggle-track {
  width: 36px;
  height: 22px;
  background: var(--white-color);
  border: solid 2px var(--inactive-color);
  border-radius: 20px;
  position: relative;
  transition: background 0.2s ease;
}
.toggle-widget .toggle-track .toggle-thumb {
  width: 12px;
  height: 12px;
  background: var(--inactive-color);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.2s ease;
}
.toggle-widget input:checked + .toggle-track {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}
.toggle-widget input:checked + .toggle-track .toggle-thumb {
  transform: translateX(16px);
  background: var(--white-color);
}

/* Toggle widget (end) */
.custom-accordion .accordion-button {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 18px;
  /* Rotate icon 180° when accordion is OPEN */
}
.custom-accordion .accordion-button::after {
  background-image: none !important;
}
.custom-accordion .accordion-button::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Font Awesome 7 Free", "Font Awesome 7 Brands";
  font-weight: 900;
  content: "\f078";
  font-size: 1rem;
  color: inherit;
  transition: transform 0.25s ease;
}
.custom-accordion .accordion-button:not(.collapsed) {
  background: none;
  box-shadow: none;
}
.custom-accordion .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(180deg);
}

.custom-btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--primary-light-color);
  color: var(--primary-color);
  z-index: 2;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 14px;
  opacity: 1;
  border-radius: 4px;
  border: none;
}
.custom-btn-close:hover {
  opacity: 1;
  background: var(--primary-light-color);
  color: var(--primary-color);
}

.pagination-controls {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.pagination-controls .page-link {
  border: none;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--primary-color);
}
.pagination-controls .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.pagination-controls .page-link:focus,
.pagination-controls .page-link:hover {
  box-shadow: none;
  background: none;
}
.pagination-controls .previous .page-link,
.pagination-controls .next .page-link {
  width: auto;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pagination-controls .previous {
  padding-right: 16px;
}
.pagination-controls .next {
  padding-left: 16px;
}

.tags {
  display: flex;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags .tag {
  font-size: 12px;
  font-weight: 400px;
  background: var(--primary-light-color);
  border-radius: 4px;
  padding: 8px;
  color: var(--primary-color);
  border: solid 1px var(--primary-color);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.tags .tag i {
  color: var(--subtitle-color);
  font-size: 11px;
}

.action-icon {
  background: none;
  border: none;
  color: var(--primary-color);
  padding: 0;
  font-size: 16px;
}

.drag-button {
  color: var(--inactive-color);
}

.drag-button[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.clone-button {
  color: var(--primary-color);
}

.delete-button {
  color: var(--status-danger-bg);
}

.three-dots-button {
  background: var(--white-color);
  border: solid 1px var(--light-border-color);
  color: var(--primary-color);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 2px;
  border-radius: 4px;
}

.bullet-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.bullet-list li {
  width: 100%;
  position: relative;
  margin: 0;
  padding-left: 16px;
}
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 20px;
  line-height: 1;
  top: 3px;
}
.bullet-list.bullet-list-xs li {
  font-size: 12px;
}
.bullet-list.bullet-list-xs li::before {
  top: -1px;
}
.bullet-list.bullet-list-sm li {
  font-size: 14px;
}
.bullet-list.bullet-list-sm li::before {
  top: 0;
}
.bullet-list.bullet-list-lg li {
  font-size: 18px;
}
.bullet-list.bullet-list-lg li::before {
  top: 4px;
}
.bullet-list.bullet-list-gap-4 {
  gap: 4px;
}
.bullet-list.bullet-list-gap-6 {
  gap: 6px;
}
.bullet-list.bullet-list-gap-8 {
  gap: 8px;
}
.bullet-list.bullet-list-gap-10 {
  gap: 10px;
}
.bullet-list.bullet-list-gap-12 {
  gap: 12px;
}

.bullet-list-2col li {
  width: calc(50% - 8px);
}
.bullet-list-2col.bullet-list-gap-8 li {
  width: calc(50% - 4px);
}

.multi-select-dropdown-menu {
  max-height: 200px;
  overflow-y: auto;
  padding: 16px;
}/*# sourceMappingURL=controls.css.map */