@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800&display=swap");
.component-block {
  display: flex;
  flex-direction: column;
}
.component-block.error-input .input-field input,
.component-block.error-input .input-field textarea {
  border-color: #d00 !important;
}
.component-block .field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.component-block .input-field-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}
.component-block .input-field .description {
  font-size: 12px;
  color: var(--gray-300);
  margin: 5px 0 0 0;
}
.component-block .input-field input,
.component-block .input-field textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.component-block .input-field input:invalid,
.component-block .input-field textarea:invalid {
  border-color: #d00;
}
.component-block .input-field textarea {
  min-height: 80px;
  resize: vertical;
}
.component-block .input-field.button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  background-color: #1e463e;
  color: white;
  cursor: pointer;
}
.component-block .input-field.button:hover {
  background-color: #2d6556;
}
.component-block .error-text {
  color: #d00;
  font-size: 0.85rem;
}
.component-block .error-text p {
  margin: 0;
}
.component-block .dropdown-wrapper {
  width: 100%;
  min-width: max-content;
  z-index: 99;
}
.component-block .dropdown-wrapper.disabled {
  pointer-events: none;
  opacity: 0.5;
}
.component-block .dropdown-wrapper .dropdown-button {
  font-size: 14px;
  min-width: 200px;
  color: var(--gray-200);
  border-radius: 6px;
  border: 1px solid var(--input-border-color);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  background: var(--input-background-color);
  padding: 15px 18px;
}
.component-block .dropdown-wrapper .dropdown-button svg {
  width: 8px;
  padding: 3px 0;
}
.component-block .dropdown-wrapper .dropdown-button:hover, .component-block .dropdown-wrapper .dropdown-button:focus {
  cursor: pointer;
}
.component-block .dropdown-wrapper .dropdown-content {
  display: none;
  position: absolute;
  max-width: max-content;
  width: 100%;
  z-index: 10;
  border-radius: 6px;
  background-color: var(--dropdown-background);
  filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.15));
  min-width: 250px;
}
.component-block .dropdown-wrapper .dropdown-content.show {
  display: block;
}
.component-block .dropdown-wrapper .dropdown-content .search-bar {
  color: var(--text-color-primary);
  padding: 5px 10px;
  margin: 10px;
  font-size: 13px;
  border: 1px solid var(--gray-500);
  border-radius: 6px;
  display: flex;
  align-items: center;
}
.component-block .dropdown-wrapper .dropdown-content .search-bar input {
  border: none;
  font-size: 13px;
  outline: none;
  background: transparent;
}
.component-block .dropdown-wrapper .dropdown-content .list-items {
  display: block;
  position: relative;
  max-height: 300px;
  overflow-y: auto;
  overflow-x: hidden;
}
.component-block .dropdown-wrapper .dropdown-content .list-items .dropdown-list-item {
  color: var(--global-primary);
  padding: 10px 15px;
  font-size: 14px;
  display: none;
}
.component-block .dropdown-wrapper .dropdown-content .list-items .dropdown-list-item.show {
  display: flex;
}
.component-block .dropdown-wrapper .dropdown-content .list-items .dropdown-list-item:hover {
  cursor: pointer;
  background-color: var(--dropdown-list-hover);
  color: var(--dropdown-item-hover-text-color);
}
.component-block .dropdown-wrapper .dropdown-content .list-items .dropdown-list-item:first-child:not(:only-child) {
  border-radius: 6px 6px 0 0;
}
.component-block .dropdown-wrapper .dropdown-content .list-items .dropdown-list-item:last-child:not(:only-child) {
  border-radius: 0 0 6px 6px;
}
.component-block .dropdown-wrapper .dropdown-content .list-items .dropdown-list-item :only-child {
  border-radius: 6px;
}
.component-block .dropdown-wrapper .dropdown-content .list-items .dropdown-list-empty {
  color: black;
  padding: 10px 15px;
  font-size: 14px;
  display: none;
}
.component-block .dropdown-wrapper .dropdown-content .list-items .dropdown-list-empty.show {
  display: block;
}
.component-block .dropdown-wrapper.no-border .dropdown-button {
  border: none;
}
.component-block .dropdown-wrapper.no-background .dropdown-button {
  background: transparent;
}
.component-block .dropdown-wrapper.no-background .dropdown-button:hover {
  background-color: var(--gray-600);
}
.component-block .checkbox-wrapper {
  width: 100%;
}
.component-block .checkbox-wrapper .checkbox-description {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 400;
  font-style: italic;
  color: var(--gray-300);
}
.component-block .checkbox-wrapper .checkbox-items {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px 28px;
  margin-top: 10px;
}
.component-block .checkbox-wrapper .checkbox-items .checkbox-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}
.component-block .checkbox-wrapper .checkbox-items .checkbox-item label {
  margin: 0;
  color: var(--text-color-primary);
  cursor: pointer;
  white-space: normal;
  line-height: 1.4;
}
.component-block .checkbox-wrapper .checkbox-items .checkbox-item input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}
.component-block .checkbox-wrapper .checkbox-items.radio-items {
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .component-block .checkbox-wrapper .checkbox-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.uniq-renderer {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-auto-rows: minmax(75px, auto);
  gap: 1rem;
  padding: 2rem;
  background-color: #f9f9f9;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

.page-header {
  grid-column: span 20;
}
.page-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.page-header p {
  font-size: 1.1rem;
  color: #444;
}

.page-form {
  display: contents;
}
.page-form .component-block {
  grid-column: span 10;
}
.page-form .component-wide {
  grid-column: span 20;
}
.page-form .component-button .input-field button {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  background-color: #1e463e;
  color: white;
  cursor: pointer;
}
.page-form .footer-note {
  grid-column: span 20;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  padding-top: 1rem;
}

:root {
  --body-font: "Poppins", sans-serif;
  --heading-font: "Anton", sans-serif;
  --light: 300;
  --regular: 400;
  --medium: 500;
  --bold: 600;
  --normal-font-size: 14px;
  --small-font-size: 13px;
  --smaller-font-size: 12px;
}
@media screen and (min-width: 992px) {
  :root {
    --normal-font-size: 13px;
    --small-font-size: 12px;
    --smaller-font-size: 12px;
  }
}

*::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--white-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  border-radius: 5px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--text-color-primary);
}

.h4,
h4 {
  font-size: 18px;
  line-height: 20px;
}

.h5,
h5 {
  font-size: 16px;
  line-height: 20px;
}

.h6, h6 {
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 5px;
}

button {
  border: none;
  outline: none;
}
button:focus {
  border: none;
  outline: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

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

.bg-secondary {
  background: var(--secondary-color) !important;
}

.bg-secondary2 {
  background: var(--secondary2-color) !important;
}

.bg-success {
  background: var(--success-color) !important;
}

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

.bg-warning {
  background: var(--warning-color) !important;
}

.bg-info {
  background: var(--info-color) !important;
}

.bg-light {
  background: var(--light-color) !important;
}

.bg-dark {
  background: var(--dark-color) !important;
}

.display-none {
  display: none;
}

.space-between {
  justify-content: space-between;
}

.display-flex {
  display: flex;
}

.display-none {
  display: none;
}

html[color-theme=dark] {
  --global-turquoise: #3AAFC3;
  --global-turquoise-hover: #48cce3;
  --global-red: #EB5757FF;
  --global-red-highlight: #f2a3a3;
  --global-green: #27AE60;
  --global-green-highlight: #2bbc68;
  --global-yellow: #e2b93b;
  --global-blue: #2f80ed;
  --global-blue-highlight: #679dec;
  --global-primary: #FAFAFB;
  --global-secondary: #33415C;
  --global-button-gray: var(--gray-300);
  --global-button-gray-hover: var(--gray-200);
  --notification-text-color: var(--gray-400);
  --notification-info-background: #B2E7F5;
  --notification-info-icon-color: #013A74;
  --notification-info-title-color: var(--notification-info-icon-color);
  --notification-success-background: #B6F8C4;
  --notification-success-icon-color: #207B08;
  --notification-success-title-color: var(--notification-success-icon-color);
  --notification-warning-background: #FAE7C7;
  --notification-warning-icon-color: #7D780F;
  --notification-warning-title-color: var(--notification-warning-icon-color);
  --notification-error-background: #FFB7B7;
  --notification-error-icon-color: #B90806;
  --notification-error-title-color: var(--notification-error-icon-color);
  --toggle-switch-border: #e5e6e9;
  --toggle-switch-disabled: #e5e6e9;
  --toggle-switch-switch: #ffffff;
  --toggle-switch-off: var(--gray-400);
  --toggle-switch-background-color: var(--gray-800);
  --radio-button-unchecked: #3c3c3c;
  --form-background-color: #292932;
  --input-background-color: #1C1C24;
  --input-text-color: var(--primary-color);
  --input-border-color: var(--gray-500);
  --dropdown-border: 1px solid var(--gray-600);
  --dropdown-item-hover-text-color: var(--text-color-primary);
  --sidebar-border-color: #292932;
  --sidebar-navitem-hover: #292932FF;
  --sidebar-navitem-active: var(--global-turquoise);
  --sidebar-background-color: #1C1C24;
  --sidebar-nav-item-bg: var(--sidebar-border-color);
  --sidebar-navitem-text-active: var(--global-turquoise);
  --sidebar-divider-text: #696974;
  --sidebar-divider: var(--sidebar-border-color);
  --sidebar-badge-bg-red: #ec6432;
  --topbar-search-bg: #13131A;
  --topbar-text: #696974;
  --topbar-search-text: var(--topbar-text);
  --smarttable-header-bg: var(--gray-500);
  --smarttable-searchinput-background: #1C1C24;
  --smarttable-searchinput-border: var(--gray-500);
  --smarttable-striped-row-color: rgba(52,52,60, 1);
  --smarttable-function-button-background: var(--gray-500);
  --smarttable-function-button-hover: var(--gray-400);
  --dropdown-background: var(--gray-500);
  --dropdown-list-hover: var(--gray-400);
  --background-color: #13131A;
  --primary-color: #696974;
  --text-color-primary: var(--global-primary);
  --text-color-invert: var(--global-secondary);
  --uniq-loader-background: rgba(40, 40, 40, 0.5);
  --uniq-loader-circle-color: rgba(255, 255, 255, 0.1);
  --uniq-loader-line-color: rgba(255, 255, 255, 0.5);
  --uniq-loader-logo-color: #fff;
  --gray-100: #FAFAFB;
  --gray-200: #92929D;
  --gray-300: #7d8597;
  --gray-400: #44444F;
  --gray-500: #34343C;
  --gray-600: #292932;
  --gray-700: #1C1C24;
  --gray-800: #13131a;
  --light-color: #e5f4f7;
  --dark-color: var(--gray-100);
  --body-color:var(--gray-800);
  --alert-bg-color: var(--gray-800);
  --popup-card-color:var(--gray-600);
  --popup-card-border-colo:var(--gray-800);
  --alert-allline-bg-color:var(--gray-500);
  --alert-title-color:#1C1C24;
  --simple-table-bg: #1e1e22;
  --simple-table-surface: #2a2a30;
  --simple-table-header-bg: #2d2d33;
  --simple-table-text: #e6e6ea;
  --simple-table-text-muted: #aaa;
  --simple-table-border: #444;
  --simple-table-row-alt: #242428;
  --simple-table-input-border: #555;
  --simple-table-input-focus: rgba(95, 180, 198, 0.2);
  --simple-table-button-ok-bg: #5fb4c6;
  --simple-table-button-cancel-bg: #444;
  --simple-table-button-cancel-text: #eee;
}

:root {
  --global-turquoise: rgb(58, 175, 195);
  --global-turquoise-hover: #48cce3;
  --global-red: #EB5757FF;
  --global-red-highlight: #f2a3a3;
  --global-green: #27AE60FF;
  --global-yellow: #e2b93b;
  --global-blue: #2f80ed;
  --global-blue-highlight: #679dec;
  --global-primary: #33415C;
  --global-secondary: #ffffff;
  --global-button-gray: var(--gray-500);
  --global-button-gray-hover: var(--gray-600);
  --notification-text-color: var(--gray-100);
  --notification-info-background: #d9f5ff;
  --notification-info-icon-color: #013A74;
  --notification-info-title-color: var(--notification-text-color);
  --notification-success-background: #B6F8C4;
  --notification-success-icon-color: #207B08;
  --notification-success-title-color: var(--notification-text-color);
  --notification-warning-background: #FAE7C7;
  --notification-warning-icon-color: #7D780F;
  --notification-warning-title-color: var(--notification-text-color);
  --notification-error-background: #FFB7B7;
  --notification-error-icon-color: #B90806;
  --notification-error-title-color: var(--notification-text-color);
  --toggle-switch-border: var(--gray-600);
  --toggle-switch-disabled: var(--gray-600);
  --toggle-switch-switch: #ffffff;
  --toggle-switch-off: var(--gray-600);
  --toggle-switch-background-color: var(--global-secondary);
  --radio-button-unchecked: var(--white-color);
  --form-background-color: var(--gray-600);
  --input-background-color: var(--white-color);
  --input-text-color: var(--primary-color);
  --input-border-color: var(--gray-600);
  --sidebar-border-color: var(--gray-600);
  --sidebar-navitem-hover: #E5F2F5;
  --sidebar-navitem-active: var(--global-turquoise);
  --sidebar-background-color: var(--white-color);
  --sidebar-nav-item-bg: var(--white-color);
  --sidebar-navitem-text-active: var(--black-color);
  --sidebar-divider-text: #D9D9D9;
  --sidebar-divider: #FAFAFA;
  --sidebar-badge-bg-red: #ec6432;
  --topbar-search-bg: var(--white-color);
  --topbar-text: var(--black-color);
  --topbar-search-text: #696974;
  --smarttable-header-bg: var(--gray-600);
  --smarttable-searchinput-background: #FFFFFF;
  --smarttable-searchinput-border: var(--gray-600);
  --smarttable-striped-row-color: rgba(229,230,233, 0.5);
  --smarttable-function-button-background: #001233;
  --dropdown-background: var(--white-color);
  --dropdown-list-hover: var(--global-turquoise);
  --dropdown-item-hover-text-color: var(--text-color-invert);
  --background-color: var(--gray-600);
  --primary-color: var(--gray-100);
  --secondary-color: #3aafc3;
  --secondary2-color: #ec6432;
  --success-color: #27ae60;
  --danger-color: #eb5757;
  --warning-color: #e2b93b;
  --info-color: #2f80ed;
  --light-color: #e5f4f7;
  --dark-color: #001233;
  --text-color-primary: var(--global-primary);
  --text-color-invert: var(--global-secondary);
  --uniq-loader-background: rgba(255, 255, 255, 0.5);
  --uniq-loader-circle-color: rgba(50, 50, 50, 0.1);
  --uniq-loader-line-color: rgba(50, 50, 50, 0.5);
  --uniq-loader-logo-color: var(--gray-200);
  --gray-100: #33415c;
  --gray-200: #5c677d;
  --gray-300: #7d8597;
  --gray-400: #979dac;
  --gray-500: #c5c8d0;
  --gray-600: #e5e6e9;
  --gray-700: #fafafa;
  --gray-800: #f5f5f5;
  --body-color: var(--gray-700);
  --alert-bg-color: rgba(0, 18, 51, 0.86);
  --popup-card-color: #f1f9f4;
  --popup-card-border-colo:rgb(206, 230, 206);
  --simple-table-bg: #ffffff;
  --simple-table-surface: #f4f4f4;
  --simple-table-header-bg: #f7f7f7;
  --simple-table-text: #1f2d3d;
  --simple-table-text-muted: #555555;
  --simple-table-border: #dddddd;
  --simple-table-row-alt: #fafafa;
  --simple-table-input-border: #ccc;
  --simple-table-input-focus: rgba(95, 180, 198, 0.3);
  --simple-table-button-ok-bg: #5fb4c6;
  --simple-table-button-cancel-bg: #e0e0e0;
  --simple-table-button-cancel-text: #333;
}

html {
  --white-color: #ffffff;
  --black-color: #000000;
}

body {
  background-color: #f2f5f1;
  color: #1a1a1a;
}

input, select, textarea {
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  font-size: 1rem;
}

.uniq-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: opacity 0.2s;
}

.uniq-loading-overlay__spinner {
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top: 4px solid #fff;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  animation: uniq-spin 0.8s linear infinite;
}

@keyframes uniq-spin {
  to {
    transform: rotate(360deg);
  }
}
.uniq-confirmation-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--uniq-overlay-bg, rgba(0, 0, 0, 0.4));
  display: flex;
  align-items: center;
  justify-content: center;
}

.uniq-confirmation-modal {
  background: var(--uniq-modal-bg, #fff);
  color: var(--uniq-modal-fg, #222);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.15);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  min-width: 320px;
  max-width: 90vw;
}

@media (prefers-color-scheme: dark) {
  .uniq-confirmation-overlay {
    background: var(--uniq-overlay-bg, rgba(0, 0, 0, 0.7));
  }
  .uniq-confirmation-modal {
    background: var(--uniq-modal-bg, #23272f);
    color: var(--uniq-modal-fg, #fff);
  }
}
/*# sourceMappingURL=form-renderer.css.map */
