/* [project]/style/formia.css [app-client] (css) */
.FormaiMainClass .formio-form {
  padding: 15px;
  font-family: Arial, sans-serif;
}

.FormaiMainClass .HideFormioDiv {
  display: none;
}

.FormaiMainClass .editor-wrapper {
  background-color: #fafafa;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  padding: 10px;
}

.FormaiMainClass .ck.ck-editor {
  width: 100%;
  min-height: 200px;
}

.FormaiMainClass .ck.ck-toolbar {
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
}

.FormaiMainClass .ck.ck-button.ck-on, .FormaiMainClass .ck.ck-button:hover {
  background: #e0e0e0;
}

.FormaiMainClass .ck.ck-content {
  min-height: 150px;
  padding: 10px;
}

.FormaiMainClass .form-group {
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.FormaiMainClass .form-group label {
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}

.FormaiMainClass .list-group-header {
  background: #f3f4f6;
  border-bottom: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
}

.FormaiMainClass .fileSelector {
  text-align: center;
  color: #555;
  cursor: pointer;
  background-color: #fafafa;
  border: 2px dashed #9ca3af;
  border-radius: 8px;
  padding: 30px;
  transition: all .3s;
  position: relative;
}

.FormaiMainClass .fileSelector:hover {
  color: #2563eb;
  background-color: #f0f9ff;
  border-color: #2563eb;
}

.FormaiMainClass .fileSelector i {
  color: #6b7280;
  margin-bottom: 10px;
  font-size: 40px;
  display: block;
}

.FormaiMainClass .fileSelector .browse {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.FormaiMainClass .fileSelector .browse:hover {
  text-decoration: underline;
}

.FormaiMainClass .loader-wrapper {
  margin-top: 15px;
  display: none;
}

.FormaiMainClass .loader {
  border: 4px solid #f3f3f3;
  border-top-color: #2563eb;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin: auto;
  animation: 1s linear infinite spin;
}

.FormaiMainClass .btn-primary {
  color: #fff;
  cursor: pointer;
  background: #2563eb;
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  transition: all .3s;
  box-shadow: 0 4px 6px #0000001a;
}

.FormaiMainClass .btn-primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 10px #00000026;
}

.FormaiMainClass .btn-primary:active {
  background: #1e40af;
  transform: scale(.98);
}

.FormaiMainClass .btn-primary:disabled {
  cursor: not-allowed;
  box-shadow: none;
  background: #9ca3af;
}

.FormaiMainClass .buttonMessageContainer .help-block {
  color: #6b7280;
  margin-top: 8px;
  font-size: 13px;
  display: block;
}

.FormaiMainClass .formio-errors {
  color: #dc2626;
  margin-top: 10px;
  font-size: 13px;
}

.FormaiMainClass .formio-component > label {
  color: #374151;
  flex: 0 0 0;
  margin: 0;
  padding-top: .4rem;
  font-size: .8rem;
  font-weight: 500;
}

.FormaiMainClass .formio-component > label.field-required:after {
  content: " *";
  color: #ef4444;
}

.FormaiMainClass .formio-component .form-control, .FormaiMainClass .formio-component textarea, .FormaiMainClass .formio-component select {
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  width: 100%;
  padding: .6rem .75rem;
  font-size: .95rem;
}

.FormaiMainClass .formio-component .form-control:focus, .FormaiMainClass .formio-component textarea:focus, .FormaiMainClass .formio-component select:focus {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 2px #bfdbfe;
}

.FormaiMainClass .formio-component-radio .form-radio {
  flex: 80%;
  gap: 1rem;
  display: flex;
}

.FormaiMainClass .formio-component-radio .form-check {
  align-items: center;
  gap: .4rem;
  display: flex;
}

.FormaiMainClass .formio-component-button {
  box-shadow: none;
  background: none;
  border: none;
  justify-content: flex-end;
  padding: 0;
  display: flex;
}

.FormaiMainClass .formio-component-button .btn {
  color: #fff;
  cursor: pointer;
  background-color: #2563eb;
  border: none;
  border-radius: .5rem;
  margin-left: .5rem;
  padding: .7rem 1.5rem;
  font-weight: 600;
  transition: background .2s;
}

.FormaiMainClass .formio-component-button .btn:hover {
  background-color: #1d4ed8;
}

.FormaiMainClass .formio-component-button .btn:first-child {
  background-color: #111827;
}

.FormaiMainClass .formio-component-button .btn:first-child:hover {
  background-color: #374151;
}

@media (max-width: 768px) {
  .FormaiMainClass .formio-component {
    flex-direction: column;
  }

  .FormaiMainClass .formio-component > label {
    flex: none;
    width: 100%;
  }

  .FormaiMainClass .formio-component .form-control, .FormaiMainClass .formio-component textarea, .FormaiMainClass .formio-component select {
    flex: auto;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .FormaiMainClass .col-md-4 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }

  .FormaiMainClass .col-md-offset-0 {
    margin-left: 0 !important;
  }

  .FormaiMainClass .col-md-push-0 {
    position: relative;
    left: auto !important;
  }

  .FormaiMainClass .col-md-pull-0 {
    position: relative;
    right: auto !important;
  }

  .FormaiMainClass .order-md-0 {
    order: 0;
  }
}

.FormaiMainClass .formio-choices {
  flex: 80%;
}

.FormaiMainClass .formio-choices .form-control.dropdown {
  cursor: pointer;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  min-height: 2.5rem;
  margin: auto;
  padding: 0;
  transition: border .2s, box-shadow .2s;
  width: 100% !important;
}

.FormaiMainClass .formio-choices .form-control.dropdown:focus, .FormaiMainClass .formio-choices .form-control.dropdown.choices__list--dropdown.is-active {
  border-color: #2563eb;
  outline: none;
  box-shadow: 0 0 0 2px #bfdbfe;
}

.FormaiMainClass .formio-choices .choices__list--single .choices__item {
  color: #111827;
  justify-content: space-between;
  align-items: center;
  font-size: .95rem;
  font-weight: 500;
  display: flex;
}

.FormaiMainClass .formio-choices .choices__button {
  cursor: pointer;
  color: #6b7280;
  background: none;
  border: none;
  margin-left: .5rem;
  font-size: .85rem;
}

.FormaiMainClass .formio-choices .choices__button:hover {
  color: #ef4444;
}

.FormaiMainClass .formio-choices .choices__list--dropdown {
  z-index: 999;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: .5rem;
  max-height: 250px;
  margin-top: .25rem;
  overflow-y: auto;
  box-shadow: 0 4px 8px #0000001a;
  width: 100% !important;
}

.FormaiMainClass .formio-choices .choices__list--dropdown .choices__item {
  color: #374151;
  cursor: pointer;
  padding: .6rem .75rem;
  font-size: .95rem;
  transition: background .2s;
}

.FormaiMainClass .formio-choices .choices__list--dropdown .choices__item.is-highlighted {
  color: #2563eb;
  background: #eff6ff;
}

.FormaiMainClass .formio-choices .choices__list--dropdown .choices__item.is-selected {
  background: #e0f2fe;
  font-weight: 600;
}

.FormaiMainClass .formio-choices .choices__list--dropdown {
  opacity: 0;
  transform-origin: top;
  z-index: 999;
  transition: all .2s;
  display: none;
  transform: scaleY(.95);
}

.FormaiMainClass .formio-choices.is-open .choices__list--dropdown, .FormaiMainClass .formio-choices .choices__list--dropdown.is-active {
  opacity: 1;
  display: block;
  transform: scaleY(1);
}

.FormaiMainClass .formio-select-autocomplete-input {
  display: none;
}

.FormaiMainClass .choices {
  width: 100%;
  position: relative;
}

.FormaiMainClass .choices__list.choices__list--dropdown.is-active {
  z-index: 1000;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  max-height: 250px;
  margin-top: 4px;
  position: absolute;
  top: 100%;
  left: 0;
  overflow-y: auto;
  box-shadow: 0 4px 12px #0000001a;
}

.FormaiMainClass .choices__input.choices__input--cloned {
  box-sizing: border-box;
  border: none;
  border-bottom: 1px solid #eee;
  outline: none;
  padding: 8px 10px;
  font-size: 14px;
  width: 100% !important;
}

.FormaiMainClass .row {
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.FormaiMainClass .col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}

.FormaiMainClass .col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.FormaiMainClass .col-md-offset-0 {
  margin-left: 0 !important;
}

.FormaiMainClass .col-md-push-0, .FormaiMainClass .col-md-pull-0 {
  order: 0 !important;
}

.FormaiMainClass .justify-content-between {
  justify-content: space-between !important;
}

.FormaiMainClass .mt-5 {
  margin-top: 3rem !important;
}

.FormaiMainClass .has-feedback {
  position: relative;
}

.FormaiMainClass .form-control {
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  display: block;
}

.FormaiMainClass textarea.form-control {
  resize: vertical;
}

.FormaiMainClass .invalid-feedback {
  color: #dc3545;
  width: 100%;
  margin-top: .25rem;
  font-size: .875em;
  display: block;
}

.FormaiMainClass .form-group.required label.field-required:after {
  content: "*";
  color: #dc3545;
  margin-left: .25rem;
}

.FormaiMainClass .col-form-label {
  margin-bottom: .5rem;
  display: inline-block;
}

.FormaiMainClass .sr-only {
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  overflow: hidden !important;
}

.FormaiMainClass .btn {
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: .25rem;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color .15s, background-color .15s, border-color .15s;
  display: inline-block;
}

.FormaiMainClass .btn-md {
  padding: .375rem .75rem;
  font-size: 1rem;
}

.FormaiMainClass .btn:disabled, .FormaiMainClass .btn.disabled {
  opacity: .65;
  pointer-events: none;
}

.FormaiMainClass .text-end {
  text-align: right !important;
}

.FormaiMainClass input[type="text"][inputmode="decimal"] {
  -moz-appearance: textfield;
}

.FormaiMainClass input[type="text"][inputmode="decimal"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.FormaiMainClass input[type="text"][inputmode="decimal"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.FormaiMainClass .formio-choices .choices__list--single .choices__item--selectable {
  cursor: pointer;
  background-color: #fff;
  border-radius: .5rem;
  padding: .375rem .75rem;
}

.FormaiMainClass .formio-choices .choices__list--dropdown {
  border: 1px solid #ced4da;
  border-radius: .25rem;
}

.FormaiMainClass .formio-choices .choices__item--choice:hover {
  background-color: #e9ecef;
}

.FormaiMainClass .saveandcontinue {
  justify-content: flex-end;
  display: flex;
}

.FormaiMainClass .saveandcontinue > button {
  order: 2;
}

.FormaiMainClass .formio-errors.invalid-feedback:empty {
  display: none;
}

.FormaiMainClass .formio-component-panel {
  margin-bottom: 1.5rem;
  font-family: inherit;
}

.FormaiMainClass .formio-component-panel > .card {
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px #0000000a;
}

.FormaiMainClass .formio-component-panel .card-header {
  cursor: pointer;
  background-color: #f8f9fa;
  align-items: center;
  padding: 12px 16px;
  display: flex;
}

.FormaiMainClass .formio-component-panel .card-title {
  color: #333;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  display: flex;
}

.FormaiMainClass .formio-component-panel .formio-collapse-icon {
  color: #6c757d;
  font-size: 16px;
}

.FormaiMainClass .formio-component-panel .card-body {
  background-color: #fff;
  padding: 16px;
}

.FormaiMainClass .formio-component-panel .row {
  margin-bottom: 12px;
}

.FormaiMainClass .formio-component-panel .col-md-4 {
  padding-left: 8px;
  padding-right: 8px;
}

.FormaiMainClass .formio-component-panel .form-group {
  margin-bottom: 14px;
}

.FormaiMainClass .formio-component-panel .col-form-label {
  color: #444;
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
}

.FormaiMainClass .formio-component-panel .field-required:after {
  content: " *";
  color: #dc3545;
  font-weight: 600;
}

.FormaiMainClass .formio-component-panel .form-control {
  border: 1px solid #ced4da;
  border-radius: 4px;
  height: 38px;
  font-size: 14px;
  transition: border-color .2s, box-shadow .2s;
}

.FormaiMainClass .formio-component-panel .form-control:focus {
  border-color: #80bdff;
  outline: none;
  box-shadow: 0 0 0 2px #007bff26;
}

.FormaiMainClass .formio-component-panel .form-control:disabled {
  cursor: not-allowed;
  background-color: #f1f3f5;
}

.FormaiMainClass .formio-component-panel .choices__inner {
  border: 1px solid #ced4da;
  border-radius: 4px;
  min-height: 38px;
  font-size: 14px;
}

.FormaiMainClass .formio-component-panel .choices__list--dropdown {
  border: 1px solid #ced4da;
  border-radius: 4px;
  box-shadow: 0 4px 10px #00000014;
}

.FormaiMainClass .formio-component-panel .invalid-feedback {
  color: #dc3545;
  margin-top: 4px;
  font-size: 12px;
}

.FormaiMainClass .formio-component-panel .formio-hidden {
  display: none !important;
}

.FormaiMainClass .formio-component-hidden {
  margin: 0;
  display: none !important;
}

