:root {
  --frm-border-radius: 8px;
  --frm-border-radius-sm: 6px;
  --frm-input-height: 40px;
  --frm-gap: 20px;
  --frm-field-gap: 8px;
  --frm-transition: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --frm-max-width: 1200px;
  --frm-bg: var(--background-color);
  --frm-bg-subtle: var(--form-background-color);
  --frm-bg-hover: var(--dropdown-item-background-hover);
  --frm-surface: var(--input-background-color);
  --frm-border: var(--border-color);
  --frm-border-focus: var(--primary-color);
  --frm-border-error: var(--danger-color);
  --frm-text: var(--text-color);
  --frm-text-secondary: var(--text-gray-secondary);
  --frm-text-placeholder: var(--gray-text-color);
  --frm-text-error: var(--danger-color);
  --frm-text-required: #e67700;
  --frm-text-success: var(--success);
  --frm-text-info: var(--secondary-color);
  --frm-accent: var(--primary-color);
  --frm-accent-hover: var(--button-hover-background);
  --frm-accent-subtle: rgba(255, 255, 255, 0.08);
  --frm-success-subtle: rgba(46, 204, 113, 0.08);
  --frm-shadow-sm: var(--basic-box-shadow);
  --frm-shadow-focus: 0 0 0 3px rgba(255, 255, 255, 0.15);
  --frm-shadow-error: 0 0 0 3px rgba(220, 20, 60, 0.1);
  --frm-shadow-success: 0 0 0 3px rgba(46, 204, 113, 0.12);
  --frm-group-bg: var(--background-color);
  --frm-btn-secondary-bg: var(--body-background-color);
  --frm-btn-secondary-hover: var(--dropdown-item-background-hover);
  --frm-btn-secondary-text: var(--text-gray-secondary);
  --frm-disabled-opacity: 0.6;
}
.frm-form {
  font-size: 14px;
  line-height: 1.5;
  color: var(--frm-text) !important;
  max-width: var(--frm-max-width);
  margin: 0 auto;
  padding: 24px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
  background: var(--frm-bg-subtle);
  border: 1px solid var(--frm-border);
  border-radius: var(--frm-border-radius);
  box-shadow: var(--soft-box-shadow);
}
.frm-form *,
.frm-form *::before,
.frm-form *::after {
  box-sizing: border-box;
}
.frm-form .frm-subgrid {
  --frm-subgrid-columns: repeat(auto-fill, 1fr);
  /* fallback, overwrite inline style */
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.frm-form .frm-subgrid-header,
.frm-form .frm-subgrid-row {
  display: grid;
  grid-template-columns: var(--frm-subgrid-columns);
  gap: var(--frm-field-gap);
  align-items: center;
}
.frm-form .frm-subgrid-header {
  font-size: 12px;
  font-weight: 600;
  color: var(--frm-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--frm-border);
}
.frm-form .frm-subgrid-row {
  padding: 4px 0;
  border-bottom: 1px solid var(--frm-border);
}
.frm-form .frm-subgrid-row:last-of-type {
  border-bottom: none;
}
.frm-form .frm-subgrid-row.frm-subgrid-row--error {
  background: rgba(220, 20, 60, 0.03);
  border-radius: var(--frm-border-radius-sm);
  padding: 4px 6px;
}
.frm-form .frm-subgrid-col {
  min-width: 0;
}
.frm-form .frm-subgrid-rownum,
.frm-form .frm-subgrid-rownum-header {
  font-size: 12px;
  color: var(--frm-text-placeholder);
  text-align: center;
}
.frm-form .frm-subgrid-mobile-label {
  display: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--frm-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}
@media (max-width: 640px) {
  .frm-form .frm-subgrid:not(.frm-subgrid--no-collapse) .frm-subgrid-header {
    display: none;
  }
  .frm-form .frm-subgrid:not(.frm-subgrid--no-collapse) .frm-subgrid-row {
    grid-template-columns: 1fr !important;
    padding: 10px 0;
    border-bottom: 2px solid var(--frm-border);
    gap: 10px;
  }
  .frm-form .frm-subgrid:not(.frm-subgrid--no-collapse) .frm-subgrid-rownum {
    display: none;
  }
  .frm-form .frm-subgrid:not(.frm-subgrid--no-collapse) .frm-subgrid-mobile-label {
    display: block;
  }
}
.frm-form .frm-header {
  padding: 0 0 10px;
  border-bottom: 1px solid var(--frm-border);
  margin-bottom: 20px;
}
.frm-form .frm-header .frm-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.frm-form .frm-header .frm-description {
  font-size: 13px;
  color: var(--frm-text-secondary);
  margin: 6px 0 0;
  line-height: 1.4;
}
.frm-form .frm-body {
  padding: 0;
}
.frm-form .frm-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--frm-gap);
  align-items: start;
}
.frm-form .frm-full {
  grid-column: span 12;
}
.frm-form .frm-three-quarter {
  grid-column: span 9;
}
.frm-form .frm-half {
  grid-column: span 6;
}
.frm-form .frm-third {
  grid-column: span 4;
}
.frm-form .frm-quarter {
  grid-column: span 3;
}
@media (max-width: 1024px) {
  .frm-form {
    padding: 20px;
  }
  .frm-form .frm-three-quarter {
    grid-column: span 8;
  }
}
@media (max-width: 768px) {
  .frm-form {
    padding: 16px;
    font-size: 15px;
  }
  .frm-form .frm-header .frm-title {
    font-size: 18px;
  }
  .frm-form .frm-three-quarter,
  .frm-form .frm-half {
    grid-column: span 12;
  }
  .frm-form .frm-grid {
    gap: 16px;
  }
}
@media (max-width: 640px) {
  .frm-form .frm-three-quarter,
  .frm-form .frm-half,
  .frm-form .frm-third,
  .frm-form .frm-quarter {
    grid-column: span 12;
  }
  .frm-form .frm-grid {
    gap: 14px;
  }
}
.frm-form .frm-group {
  grid-column: span 12;
  background: var(--frm-group-bg);
  border: 1px solid var(--frm-border);
  border-radius: var(--frm-border-radius);
  padding: 20px;
  margin-bottom: 15px;
  margin-top: 15px;
}
.frm-form .frm-group .frm-group-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--frm-text-secondary) !important;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--frm-border);
}
.frm-form .frm-group .frm-group-description {
  font-size: 12px;
  color: var(--frm-text-secondary);
  margin: -10px 0 12px;
  line-height: 1.4;
}
.frm-form .frm-group .frm-grid {
  gap: var(--frm-gap);
}
.frm-form .frm-group.frm-group--collapsible .frm-group-title {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 24px;
}
.frm-form .frm-group.frm-group--collapsible .frm-group-title::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23656d76' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  transition: transform var(--frm-transition);
}
.frm-form .frm-group.frm-group--collapsible .frm-group-title:hover {
  color: var(--frm-text) !important;
}
.frm-form .frm-group.frm-group--collapsible.frm-group--collapsed .frm-group-title::after {
  transform: translateY(-50%) rotate(-90deg);
}
.frm-form .frm-group.frm-group--collapsible.frm-group--collapsed .frm-grid {
  display: none;
}
.frm-form .frm-field {
  display: flex;
  flex-direction: column;
  gap: var(--frm-field-gap);
  min-width: 0;
  position: relative;
}
.frm-form .frm-field.frm-select {
  z-index: 1;
}
.frm-form .frm-field.frm-field--hidden {
  display: none !important;
}
.frm-form .frm-field.frm-field--disabled {
  opacity: var(--frm-disabled-opacity);
  pointer-events: none;
}
.frm-form .frm-field.frm-field--readonly input,
.frm-form .frm-field.frm-field--readonly select,
.frm-form .frm-field.frm-field--readonly textarea {
  background: var(--frm-bg-subtle);
  cursor: default;
}
.frm-form .frm-field.frm-field--success > input:not(.jscolor),
.frm-form .frm-field.frm-field--success > select,
.frm-form .frm-field.frm-field--success > textarea {
  border-color: var(--frm-text-success);
}
.frm-form .frm-field.frm-field--success > input:not(.jscolor):focus,
.frm-form .frm-field.frm-field--success > select:focus,
.frm-form .frm-field.frm-field--success > textarea:focus {
  box-shadow: var(--frm-shadow-success);
}
.frm-form .frm-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--frm-text-secondary) !important;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.frm-form .frm-label .frm-required {
  color: var(--frm-text-required) !important;
  font-weight: 600;
  font-size: 11px;
  line-height: 1;
}
.frm-form .frm-label .frm-optional {
  color: var(--frm-text-placeholder) !important;
  font-weight: 400;
  font-size: 11px;
  font-style: italic;
}
.frm-form .frm-label .frm-label-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
  cursor: help;
}
.frm-form .frm-helper {
  font-size: 12px;
  color: var(--frm-text-secondary);
  line-height: 1.4;
  margin-top: -2px;
}
.frm-form .frm-field > input[type="text"]:not(.jscolor),
.frm-form .frm-field > input[type="email"],
.frm-form .frm-field > input[type="password"],
.frm-form .frm-field > input[type="number"],
.frm-form .frm-field > input[type="date"],
.frm-form .frm-field > input[type="time"],
.frm-form .frm-field > input[type="datetime-local"],
.frm-form .frm-field > input[type="url"],
.frm-form .frm-field > input[type="tel"],
.frm-form .frm-field > input[type="search"],
.frm-form .frm-field > select,
.frm-form .frm-field > textarea {
  width: 100% !important;
  height: var(--frm-input-height);
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  line-height: var(--frm-input-height);
  color: var(--frm-input-text) !important;
  background: var(--frm-surface);
  border: 1px solid var(--frm-border);
  border-radius: var(--frm-border-radius-sm);
  box-shadow: var(--frm-shadow-sm);
  transition: border-color var(--frm-transition), box-shadow var(--frm-transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.frm-form .frm-field > input[type="text"]:not(.jscolor)::placeholder,
.frm-form .frm-field > input[type="email"]::placeholder,
.frm-form .frm-field > input[type="password"]::placeholder,
.frm-form .frm-field > input[type="number"]::placeholder,
.frm-form .frm-field > input[type="date"]::placeholder,
.frm-form .frm-field > input[type="time"]::placeholder,
.frm-form .frm-field > input[type="datetime-local"]::placeholder,
.frm-form .frm-field > input[type="url"]::placeholder,
.frm-form .frm-field > input[type="tel"]::placeholder,
.frm-form .frm-field > input[type="search"]::placeholder,
.frm-form .frm-field > select::placeholder,
.frm-form .frm-field > textarea::placeholder {
  color: var(--frm-text-placeholder) !important;
}
.frm-form .frm-field > input[type="text"]:not(.jscolor):hover:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="email"]:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="password"]:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="number"]:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="date"]:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="time"]:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="datetime-local"]:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="url"]:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="tel"]:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="search"]:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > select:hover:not(:disabled):not([readonly]),
.frm-form .frm-field > textarea:hover:not(:disabled):not([readonly]) {
  border-color: var(--frm-border-focus);
}
.frm-form .frm-field > input[type="text"]:not(.jscolor):focus:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="email"]:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="password"]:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="number"]:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="date"]:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="time"]:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="datetime-local"]:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="url"]:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="tel"]:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > input[type="search"]:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > select:focus:not(:disabled):not([readonly]),
.frm-form .frm-field > textarea:focus:not(:disabled):not([readonly]) {
  border-color: var(--frm-border-focus);
  box-shadow: var(--frm-shadow-focus);
}
.frm-form .frm-field > input[type="text"]:not(.jscolor):disabled,
.frm-form .frm-field > input[type="email"]:disabled,
.frm-form .frm-field > input[type="password"]:disabled,
.frm-form .frm-field > input[type="number"]:disabled,
.frm-form .frm-field > input[type="date"]:disabled,
.frm-form .frm-field > input[type="time"]:disabled,
.frm-form .frm-field > input[type="datetime-local"]:disabled,
.frm-form .frm-field > input[type="url"]:disabled,
.frm-form .frm-field > input[type="tel"]:disabled,
.frm-form .frm-field > input[type="search"]:disabled,
.frm-form .frm-field > select:disabled,
.frm-form .frm-field > textarea:disabled,
.frm-form .frm-field > input[type="text"]:not(.jscolor)[readonly],
.frm-form .frm-field > input[type="email"][readonly],
.frm-form .frm-field > input[type="password"][readonly],
.frm-form .frm-field > input[type="number"][readonly],
.frm-form .frm-field > input[type="date"][readonly],
.frm-form .frm-field > input[type="time"][readonly],
.frm-form .frm-field > input[type="datetime-local"][readonly],
.frm-form .frm-field > input[type="url"][readonly],
.frm-form .frm-field > input[type="tel"][readonly],
.frm-form .frm-field > input[type="search"][readonly],
.frm-form .frm-field > select[readonly],
.frm-form .frm-field > textarea[readonly] {
  opacity: var(--frm-disabled-opacity);
  cursor: not-allowed;
  background: var(--frm-bg-subtle);
}
.frm-form .frm-field > input[type="text"]:not(.jscolor):invalid:not(:placeholder-shown),
.frm-form .frm-field > input[type="email"]:invalid:not(:placeholder-shown),
.frm-form .frm-field > input[type="password"]:invalid:not(:placeholder-shown),
.frm-form .frm-field > input[type="number"]:invalid:not(:placeholder-shown),
.frm-form .frm-field > input[type="date"]:invalid:not(:placeholder-shown),
.frm-form .frm-field > input[type="time"]:invalid:not(:placeholder-shown),
.frm-form .frm-field > input[type="datetime-local"]:invalid:not(:placeholder-shown),
.frm-form .frm-field > input[type="url"]:invalid:not(:placeholder-shown),
.frm-form .frm-field > input[type="tel"]:invalid:not(:placeholder-shown),
.frm-form .frm-field > input[type="search"]:invalid:not(:placeholder-shown),
.frm-form .frm-field > select:invalid:not(:placeholder-shown),
.frm-form .frm-field > textarea:invalid:not(:placeholder-shown) {
  border-color: var(--frm-border-error);
}
.frm-form .frm-field > textarea {
  height: auto;
  min-height: 100px;
  padding: 10px 12px;
  line-height: 1.5;
  resize: vertical;
}
.frm-form .frm-field > textarea.frm-textarea--sm {
  min-height: 60px;
}
.frm-form .frm-field > textarea.frm-textarea--lg {
  min-height: 200px;
}
.frm-form .frm-field > select {
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23656d76' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.frm-form .frm-field > select option {
  background: var(--frm-surface);
  color: var(--frm-text);
  padding: 8px;
}
.frm-form .frm-field > input[type="number"] {
  -moz-appearance: textfield;
}
.frm-form .frm-field > input[type="number"]::-webkit-outer-spin-button,
.frm-form .frm-field > input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.frm-form .frm-field > input[type="hidden"] {
  display: none !important;
}
.frm-form .frm-field.frm-field--error > input:not(.jscolor),
.frm-form .frm-field.frm-field--error > select,
.frm-form .frm-field.frm-field--error > textarea {
  border-color: var(--frm-border-error);
}
.frm-form .frm-field.frm-field--error > input:not(.jscolor):focus,
.frm-form .frm-field.frm-field--error > select:focus,
.frm-form .frm-field.frm-field--error > textarea:focus {
  box-shadow: var(--frm-shadow-error);
}
.frm-form .frm-input-group {
  display: flex;
  align-items: stretch;
  width: 100%;
}
.frm-form .frm-input-group input {
  flex: 1;
  min-width: 0;
  border-radius: 0;
}
.frm-form .frm-input-group input:first-child:not(:last-child) {
  border-top-left-radius: var(--frm-border-radius-sm);
  border-bottom-left-radius: var(--frm-border-radius-sm);
}
.frm-form .frm-input-group input:last-child:not(:first-child) {
  border-top-right-radius: var(--frm-border-radius-sm);
  border-bottom-right-radius: var(--frm-border-radius-sm);
  border-left: none;
}
.frm-form .frm-field--color > input.jscolor {
  width: 100% !important;
  height: var(--frm-input-height);
  border: 1px solid var(--frm-border);
  border-radius: var(--frm-border-radius-sm);
  font-family: inherit;
  font-size: 14px;
  color: var(--frm-text) !important;
  cursor: pointer;
  box-sizing: border-box;
  outline: none;
  transition: border-color var(--frm-transition), box-shadow var(--frm-transition);
}
.frm-form .frm-field--color > input.jscolor:hover {
  border-color: var(--frm-border-focus);
}
.frm-form .frm-field--color > input.jscolor:focus {
  border-color: var(--frm-border-focus);
  box-shadow: var(--frm-shadow-focus);
}
.frm-form .frm-field--color .gridCellColor {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid var(--frm-border);
  display: inline-block;
}
.frm-form .frm-field > .formInputContainer {
  display: flex !important;
  align-items: stretch;
  width: 100% !important;
}
.frm-form .frm-field > .formInputContainer .formInputContainerEdit {
  display: flex !important;
  flex: 1;
  min-width: 0;
}
.frm-form .frm-field > .formInputContainer .formInputContainerEdit input {
  width: 100% !important;
  height: var(--frm-input-height);
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  line-height: var(--frm-input-height);
  color: var(--frm-input-text);
  background: var(--frm-surface);
  border: 1px solid var(--frm-border);
  border-radius: 0;
  box-shadow: var(--frm-shadow-sm);
  transition: border-color var(--frm-transition), box-shadow var(--frm-transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.frm-form .frm-field > .formInputContainer .formInputContainerEdit input:focus:not(:disabled):not([readonly]) {
  border-color: var(--frm-border-focus);
  box-shadow: var(--frm-shadow-focus);
}
.frm-form .frm-field > .formInputContainer .entryPrefix {
  display: flex !important;
  align-items: center;
  padding: 0 10px;
  font-size: 13px;
  color: var(--frm-text-secondary);
  background: var(--frm-bg-subtle);
  border: 1px solid var(--frm-border);
  white-space: nowrap;
  user-select: none;
}
.frm-form .frm-field > .formInputContainer .entryPrefix:first-child {
  border-right: none;
  border-radius: var(--frm-border-radius-sm) 0 0 var(--frm-border-radius-sm);
}
.frm-form .frm-field > .formInputContainer .entryPrefix:last-child {
  border-left: none;
  border-radius: 0 var(--frm-border-radius-sm) var(--frm-border-radius-sm) 0;
}
.frm-form .frm-field .formEditAddonButton {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 0 8px;
  border: none;
  border-left: none;
  border-radius: 0 var(--frm-border-radius-sm) var(--frm-border-radius-sm) 0;
  background: var(--frm-bg-subtle);
  color: var(--frm-text-secondary);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  transition: background var(--frm-transition), color var(--frm-transition);
}
.frm-form .frm-field .formEditAddonButton:hover {
  background: var(--frm-bg-hover);
  color: var(--frm-accent);
}
.frm-form .frm-field .formEditAddonButton:active {
  transform: scale(0.96);
}
.frm-form .frm-field .chzn-container {
  width: 100% !important;
  font-family: inherit;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.frm-form .frm-field:has(.chzn-container-active),
.frm-form .frm-field .chzn-container-active {
  z-index: 9999;
}
.frm-form .frm-field .chzn-container-single .chzn-single {
  display: flex;
  align-items: center;
  height: var(--frm-input-height);
  padding: 0 32px 0 12px;
  background: var(--frm-surface);
  border: 1px solid var(--frm-border);
  border-radius: var(--frm-border-radius-sm);
  box-shadow: var(--frm-shadow-sm);
  color: var(--frm-text);
  font-family: inherit;
  font-size: 14px;
  line-height: var(--frm-input-height);
  text-decoration: none;
  cursor: pointer;
  transition: border-color var(--frm-transition), box-shadow var(--frm-transition);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.frm-form .frm-field .chzn-container-single .chzn-single span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}
.frm-form .frm-field .chzn-container-single .chzn-single div {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
}
.frm-form .frm-field .chzn-container-single .chzn-single div b {
  display: block;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23656d76' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.frm-form .frm-field .chzn-container-single .chzn-single:hover {
  border-color: var(--frm-border-focus);
}
.frm-form .frm-field .chzn-container-active .chzn-single {
  border-color: var(--frm-border-focus);
  box-shadow: var(--frm-shadow-focus);
}
.frm-form .frm-field .chzn-container .chzn-drop {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100% !important;
  margin-top: 4px;
  background: var(--frm-surface);
  border: 1px solid var(--frm-border);
  border-radius: var(--frm-border-radius-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 99999;
  overflow: hidden;
}
.frm-form .frm-field .chzn-container .chzn-drop .chzn-clearAll {
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  color: var(--frm-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--frm-border);
  cursor: pointer;
  transition: color var(--frm-transition);
}
.frm-form .frm-field .chzn-container .chzn-drop .chzn-clearAll:hover {
  color: var(--frm-text-error);
}
.frm-form .frm-field .chzn-container .chzn-search {
  padding: 8px;
}
.frm-form .frm-field .chzn-container .chzn-search input[type="text"] {
  width: 100% !important;
  height: 32px !important;
  padding: 0 10px !important;
  font-family: inherit !important;
  font-size: 13px !important;
  line-height: 32px !important;
  color: var(--frm-text) !important;
  border: 1px solid var(--frm-border) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  outline: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.frm-form .frm-field .chzn-container .chzn-search input[type="text"]:focus {
  border-color: var(--frm-border-focus) !important;
  box-shadow: var(--frm-shadow-focus) !important;
  background: var(--frm-surface) !important;
}
.frm-form .frm-field .chzn-container-single-nosearch .chzn-search {
  display: none;
}
.frm-form .frm-field .chzn-container .chzn-results {
  list-style: none;
  margin: 0;
  padding: 4px 0;
  max-height: 240px;
  overflow-y: auto;
}
.frm-form .frm-field .chzn-container .chzn-results li {
  padding: 8px 12px;
  font-size: 14px;
  color: var(--frm-text);
  cursor: pointer;
  transition: background var(--frm-transition);
  list-style: none;
}
.frm-form .frm-field .chzn-container .chzn-results li.highlighted,
.frm-form .frm-field .chzn-container .chzn-results li:hover {
  background: var(--frm-accent-subtle);
  color: var(--frm-accent) !important;
}
.frm-form .frm-field .chzn-container .chzn-results li.result-selected {
  font-weight: 500;
  color: var(--frm-accent);
}
.frm-form .frm-field .chzn-container .chzn-results li.no-results {
  color: var(--frm-text-placeholder);
  cursor: default;
}
.frm-form .frm-field .chzn-container .chzn-results li.no-results:hover {
  background: transparent;
  color: var(--frm-text-placeholder);
}
.frm-form .frm-field .chzn-container-multi .chzn-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: var(--frm-input-height);
  padding: 4px 8px;
  background: var(--frm-surface);
  border: 1px solid var(--frm-border);
  border-radius: var(--frm-border-radius-sm);
  box-shadow: var(--frm-shadow-sm);
  cursor: text;
  transition: border-color var(--frm-transition), box-shadow var(--frm-transition);
  list-style: none;
  margin: 0;
}
.frm-form .frm-field .chzn-container-multi .chzn-choices li.search-choice {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--frm-accent-subtle);
  border: 1px solid var(--frm-border);
  border-radius: 4px;
  padding: 2px 24px 2px 8px;
  font-size: 13px;
  color: var(--frm-text);
  position: relative;
  list-style: none;
}
.frm-form .frm-field .chzn-container-multi .chzn-choices li.search-choice .search-choice-close {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--frm-transition);
}
.frm-form .frm-field .chzn-container-multi .chzn-choices li.search-choice .search-choice-close:hover {
  opacity: 1;
}
.frm-form .frm-field .chzn-container-multi .chzn-choices li.search-field input[type="text"] {
  height: 28px !important;
  padding: 0 4px !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 14px !important;
  color: var(--frm-text) !important;
  outline: none !important;
  min-width: 60px;
}
.frm-form .frm-field .chzn-container-multi.chzn-container-active .chzn-choices {
  border-color: var(--frm-border-focus);
  box-shadow: var(--frm-shadow-focus);
}
.frm-form .frm-field--checkbox .frm-label {
  cursor: pointer;
  margin: 0;
  font-size: 14px;
  color: var(--frm-text);
}
.frm-form .frm-field--checkbox input[type="checkbox"] {
  margin: 0;
  width: 18px !important;
  height: 18px !important;
  padding: 0;
  border: 1.5px solid var(--frm-border);
  border-radius: 4px;
  background: var(--frm-surface);
  cursor: pointer;
  transition: border-color var(--frm-transition), background var(--frm-transition), box-shadow var(--frm-transition);
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  position: relative;
  box-shadow: none;
}
.frm-form .frm-field--checkbox input[type="checkbox"]:checked {
  background: var(--frm-accent);
  border-color: var(--frm-accent);
}
.frm-form .frm-field--checkbox input[type="checkbox"]:focus {
  box-shadow: var(--frm-shadow-focus);
}
.frm-form .frm-field--checkbox input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.frm-form .frm-field--radio {
  flex-direction: column;
  gap: 8px;
}
.frm-form .frm-field--radio .frm-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.frm-form .frm-field--radio .frm-radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.frm-form .frm-field--radio .frm-radio-item input[type="radio"] {
  width: 18px !important;
  height: 18px !important;
  border: 1.5px solid var(--frm-border);
  border-radius: 50%;
  background: var(--frm-surface);
  cursor: pointer;
  transition: border-color var(--frm-transition), background var(--frm-transition);
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  position: relative;
}
.frm-form .frm-field--radio .frm-radio-item input[type="radio"]:checked {
  border-color: var(--frm-accent);
}
.frm-form .frm-field--radio .frm-radio-item input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--frm-accent);
}
.frm-form .frm-field--radio .frm-radio-item input[type="radio"]:focus {
  box-shadow: var(--frm-shadow-focus);
}
.frm-form .frm-field--radio .frm-radio-item input[type="radio"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.frm-form .frm-field--radio .frm-radio-item label {
  cursor: pointer;
  font-size: 14px;
  color: var(--frm-text);
  user-select: none;
}
.frm-form .frm-field--file .fileShow {
  display: block;
  margin-bottom: 8px;
}
.frm-form .frm-field--file .fileShow img {
  max-width: 100% !important;
  max-height: 200px;
  border-radius: var(--frm-border-radius-sm);
  border: 1px solid var(--frm-border);
  height: auto;
}
.frm-form .frm-field--file .fileShow a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--link-color);
  text-decoration: none;
}
.frm-form .frm-field--file .fileShow a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.frm-form .frm-field--file > input[type="file"] {
  height: auto !important;
  padding: 4px 0;
  position: relative;
  width: 100% !important;
  margin-bottom: 15px;
  border: 0;
}
.frm-form .frm-field--file > input[type="file"] + button[type="button"] {
  position: absolute;
  top: calc(100% - 35px);
  right: 6px;
  transform: translateY(-50%);
  z-index: 1;
  margin: 0 !important;
  width: auto !important;
  padding: 4px 8px !important;
}
.frm-form .frm-field--file > input[type="file"] + button[type="button"]:hover {
  background: var(--frm-accent-hover) !important;
}
.frm-form .frm-field--file > input[type="file"] + button[type="button"]:active {
  transform: translateY(-50%) scale(0.98);
}
.frm-form .frm-field--file > input[type="file"]::file-selector-button {
  height: 32px;
  padding: 0 14px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--frm-btn-secondary-text);
  background: var(--frm-btn-secondary-bg);
  border: 1px solid var(--frm-border);
  border-radius: var(--frm-border-radius-sm);
  cursor: pointer;
  margin-right: 10px;
  transition: background var(--frm-transition);
}
.frm-form .frm-field--file > input[type="file"]::file-selector-button:hover {
  background: var(--frm-btn-secondary-hover);
}
.frm-form .frm-field--password input[tabindex="-1"] {
  display: none;
}
.frm-form .frm-field--password > button {
  width: fit-content;
  padding: 5px 5px;
  max-height: unset;
  font-size: 0.8rem;
}
.frm-form .frm-field--url a {
  display: block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--link-color);
  text-decoration: none;
}
.frm-form .frm-field--url a:hover {
  color: var(--link-hover-color);
  text-decoration: underline;
}
.frm-form .frm-error {
  font-size: 12px;
  font-weight: 500;
  color: var(--frm-text-error);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.frm-form .frm-error::before {
  content: '';
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e03131' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='8' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='16' x2='12.01' y2='16'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  flex-shrink: 0;
}
.frm-form .frm-success {
  font-size: 12px;
  font-weight: 500;
  color: var(--frm-text-success);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.frm-form .frm-error-banner {
  grid-column: span 12;
  padding: 12px 16px;
  background: rgba(220, 20, 60, 0.06);
  border: 1px solid var(--frm-border-error);
  border-radius: var(--frm-border-radius-sm);
  color: var(--frm-text-error);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.frm-form .frm-info-banner {
  grid-column: span 12;
  padding: 12px 16px;
  background: var(--frm-accent-subtle);
  border: 1px solid var(--frm-accent);
  border-radius: var(--frm-border-radius-sm);
  color: var(--frm-text-info);
  font-size: 13px;
  line-height: 1.4;
}
.frm-form .frm-field .ck.ck-editor {
  width: 100% !important;
}
.frm-form .frm-field .ck.ck-editor__top .ck-toolbar {
  background: var(--frm-bg-subtle);
  border: 1px solid var(--frm-border);
  border-radius: var(--frm-border-radius-sm) var(--frm-border-radius-sm) 0 0;
}
.frm-form .frm-field .ck.ck-editor__main .ck-editor__editable {
  background: var(--frm-surface);
  border: 1px solid var(--frm-border);
  border-top: none;
  border-radius: 0 0 var(--frm-border-radius-sm) var(--frm-border-radius-sm);
  color: var(--frm-input-text);
  font-family: inherit;
  font-size: 14px;
  min-height: 100px;
  transition: border-color var(--frm-transition), box-shadow var(--frm-transition);
}
.frm-form .frm-field .ck.ck-editor__main .ck-editor__editable.ck-focused {
  border-color: var(--frm-border-focus);
  box-shadow: var(--frm-shadow-focus);
}
.frm-form .frm-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px 0 0;
  margin-top: var(--frm-gap);
  border-top: 1px solid var(--frm-border);
}
.frm-form .frm-footer .buttonImagesG {
  display: none !important;
}
.frm-form .frm-footer button,
.frm-form .frm-footer a > button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--frm-border-radius-sm);
  cursor: pointer;
  transition: background var(--frm-transition), border-color var(--frm-transition), box-shadow var(--frm-transition), transform var(--frm-transition);
  outline: none;
  white-space: nowrap;
  user-select: none;
  padding: 0 30px;
}
.frm-form .frm-footer button:active,
.frm-form .frm-footer a > button:active {
  transform: scale(0.98);
}
.frm-form .frm-footer button:focus-visible,
.frm-form .frm-footer a > button:focus-visible {
  box-shadow: var(--frm-shadow-focus);
}
.frm-form .frm-footer button:disabled,
.frm-form .frm-footer a > button:disabled {
  opacity: var(--frm-disabled-opacity);
  cursor: not-allowed;
  pointer-events: none;
}
.frm-form .frm-footer button span,
.frm-form .frm-footer a > button span {
  line-height: 1;
}
.frm-form .frm-footer .formSubmitUpdate {
  background: var(--button-background);
  color: var(--button-text-color);
  border: 1px solid var(--button-border-color);
}
.frm-form .frm-footer .formSubmitUpdate:hover:not(:disabled) {
  background: var(--button-hover-background);
  color: var(--button-hover-color);
  border-color: var(--button-hover-border-color);
}
.frm-form .frm-footer .frm-btn--secondary {
  background: var(--frm-btn-secondary-bg);
  color: var(--frm-btn-secondary-text);
  border: 1px solid var(--frm-border);
}
.frm-form .frm-footer .frm-btn--secondary:hover:not(:disabled) {
  background: var(--frm-btn-secondary-hover);
}
.frm-form .frm-footer .frm-btn--danger {
  background: var(--button-delete-bg);
  color: var(--button-delete-text);
  border: 1px solid var(--button-delete-bg);
}
.frm-form .frm-footer .frm-btn--danger:hover:not(:disabled) {
  background: var(--danger-color);
  border-color: var(--danger-color);
}
.frm-form .frm-footer .frm-btn-icon,
.frm-form .frm-footer .buttonImagesG {
  display: inline-flex;
  flex-shrink: 0;
}
.frm-form .frm-footer a {
  text-decoration: none;
  color: inherit;
}
.frm-form .frm-footer input[type="hidden"] {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
@keyframes frm-fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.frm-form .frm-field {
  animation: frm-fade-in 200ms ease-out both;
}
@media print {
  .frm-form .frm-form {
    box-shadow: none;
    border: none;
  }
  .frm-form .frm-footer {
    display: none;
  }
  .frm-form .frm-field > input,
  .frm-form .frm-field > select,
  .frm-form .frm-field > textarea {
    border: none;
    box-shadow: none;
    padding: 0;
  }
}
/*# sourceMappingURL=forms-modern.css.map */