formeo 2.1.7 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/formeo.es.js CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  /**
3
3
  formeo - https://formeo.io
4
- Version: 2.1.6
4
+ Version: 2.1.7
5
5
  Author: Draggable https://draggable.io
6
6
  */
7
7
 
@@ -231,7 +231,7 @@ class I18N {
231
231
  }
232
232
  const mi18n = new I18N();
233
233
  const name$1 = "formeo";
234
- const version$1 = "2.1.6";
234
+ const version$2 = "2.1.7";
235
235
  const type = "module";
236
236
  const main = "dist/formeo.cjs.js";
237
237
  const module = "dist/formeo.es.js";
@@ -376,7 +376,7 @@ const commitlint = {
376
376
  };
377
377
  const pkg = {
378
378
  name: name$1,
379
- version: version$1,
379
+ version: version$2,
380
380
  type,
381
381
  main,
382
382
  module,
@@ -400,13 +400,18 @@ const pkg = {
400
400
  commitlint
401
401
  };
402
402
  const name = pkg.name;
403
+ const version$1 = pkg.version;
403
404
  const PACKAGE_NAME = name;
405
+ const formeoSpriteId = "formeo-sprite";
404
406
  const POLYFILLS = [
405
407
  { name: "cssPreload", src: "//cdnjs.cloudflare.com/ajax/libs/loadCSS/2.0.1/cssrelpreload.min.js" },
406
408
  { name: "mutationObserver", src: "//cdn.jsdelivr.net/npm/mutationobserver-shim/dist/mutationobserver.min.js" },
407
409
  { name: "fetch", src: "https://unpkg.com/unfetch/polyfill" }
408
410
  ];
409
- const FALLBACK_SVG_SPRITE = "https://draggable.github.io/formeo/assets/img/formeo-sprite.svg";
411
+ const SVG_SPRITE_URL = `https://cdn.jsdelivr.net/npm/formeo@${version$1}/dist/${formeoSpriteId}.svg`;
412
+ const FALLBACK_SVG_SPRITE_URL = `https://draggable.github.io/formeo/assets/img/${formeoSpriteId}.svg`;
413
+ const CSS_URL = `https://cdn.jsdelivr.net/npm/formeo@${version$1}/dist/formeo.min.css`;
414
+ const FALLBACK_CSS_URL = "https://draggable.github.io/formeo/assets/css/formeo.min.css";
410
415
  const CONTROL_GROUP_CLASSNAME = "control-group";
411
416
  const STAGE_CLASSNAME = `${PACKAGE_NAME}-stage`;
412
417
  const ROW_CLASSNAME = `${PACKAGE_NAME}-row`;
@@ -1762,26 +1767,6 @@ const cleanObj = (obj) => {
1762
1767
  }
1763
1768
  return fresh;
1764
1769
  };
1765
- const toTitleCaseLowers = "a an and as at but by for for from in into near nor of on onto or the to with".split(" ").map((lower) => `\\s${lower}\\s`);
1766
- const toTitleCaseRegex = new RegExp(
1767
- `(?!${toTitleCaseLowers.join("|")})\\w\\S*`,
1768
- "g"
1769
- );
1770
- const regexSpace = /\s+/g;
1771
- function toTitleCase(str) {
1772
- if (typeof str !== "string") {
1773
- return str;
1774
- }
1775
- if (str.trim().match(regexSpace)) {
1776
- return str;
1777
- }
1778
- const newString = str.replace(
1779
- toTitleCaseRegex,
1780
- (txt) => txt.charAt(0).toUpperCase() + txt.substring(1).replace(/[A-Z]/g, (word) => ` ${word}`)
1781
- );
1782
- return newString;
1783
- }
1784
- const slugify = (str, separator = "-") => str.toString().normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase().trim().replace(/[^a-z0-9 -]/g, "").replace(/\s+/g, separator);
1785
1770
  const isInt = (n) => Number.isInteger(Number(n));
1786
1771
  const indexOfNode = (node, parent) => {
1787
1772
  const parentElement = parent || node.parentElement;
@@ -1842,10 +1827,10 @@ const helpers = {
1842
1827
  };
1843
1828
  const animate = {
1844
1829
  /**
1845
- * Gets the computed style for an element
1846
- * @param {[type]} elem [description]
1847
- * @param {Boolean} property [description]
1848
- * @return {[type]} [description]
1830
+ * Get the computed style for DOM element
1831
+ * @param {Object} elem dom element
1832
+ * @param {Boolean} property style eg. width, height, opacity
1833
+ * @return {String} computed style
1849
1834
  */
1850
1835
  getStyle: (elem, property = false) => {
1851
1836
  let style;
@@ -5009,6 +4994,26 @@ class Panels {
5009
4994
  return action;
5010
4995
  }
5011
4996
  }
4997
+ const toTitleCaseLowers = "a an and as at but by for for from in into near nor of on onto or the to with".split(" ").map((lower) => `\\s${lower}\\s`);
4998
+ const toTitleCaseRegex = new RegExp(
4999
+ `(?!${toTitleCaseLowers.join("|")})\\w\\S*`,
5000
+ "g"
5001
+ );
5002
+ const regexSpace = /\s+/g;
5003
+ function toTitleCase(str) {
5004
+ if (typeof str !== "string") {
5005
+ return str;
5006
+ }
5007
+ if (str.trim().match(regexSpace)) {
5008
+ return str;
5009
+ }
5010
+ const newString = str.replace(
5011
+ toTitleCaseRegex,
5012
+ (txt) => txt.charAt(0).toUpperCase() + txt.substring(1).replace(/[A-Z]/g, (word) => ` ${word}`)
5013
+ );
5014
+ return newString;
5015
+ }
5016
+ const slugify = (str, separator = "-") => str.toString().normalize("NFD").replace(/[\u0300-\u036f]/g, "").toLowerCase().trim().replace(/[^a-z0-9 -]/g, "").replace(/\s+/g, separator);
5012
5017
  const BASE_NAME = "f-autocomplete";
5013
5018
  const HIGHLIGHT_CLASS_NAME = "highlight-component";
5014
5019
  let lastCache = Date.now();
@@ -6741,9 +6746,18 @@ const loaded = {
6741
6746
  js: /* @__PURE__ */ new Set(),
6742
6747
  css: /* @__PURE__ */ new Set()
6743
6748
  };
6749
+ const ajax = (fileUrl, callback, onError = noop) => {
6750
+ return new Promise((resolve) => {
6751
+ return fetch(fileUrl).then((data) => {
6752
+ if (!data.ok) {
6753
+ return resolve(onError(data));
6754
+ }
6755
+ resolve(callback ? callback(data) : data);
6756
+ }).catch((err) => onError(err));
6757
+ });
6758
+ };
6744
6759
  const onLoadStylesheet = (elem, cb) => {
6745
6760
  elem.removeEventListener("load", onLoadStylesheet);
6746
- elem.rel = "stylesheet";
6747
6761
  cb(elem.src);
6748
6762
  };
6749
6763
  const onLoadJavascript = (elem, cb) => {
@@ -6782,9 +6796,8 @@ const insertStyle = (srcs) => {
6782
6796
  const styleLink = dom.create({
6783
6797
  tag: "link",
6784
6798
  attrs: {
6785
- rel: "preload",
6786
- href: src,
6787
- as: "style"
6799
+ rel: "stylesheet",
6800
+ href: src
6788
6801
  },
6789
6802
  action: {
6790
6803
  load: () => onLoadStylesheet(styleLink, resolve),
@@ -6806,34 +6819,33 @@ const insertStyles = (srcs) => {
6806
6819
  const promises = srcs.map((src) => insertStyle(src));
6807
6820
  return Promise.all(promises);
6808
6821
  };
6809
- const insertIcons = (resp) => {
6810
- const spritePromise = typeof resp === "string" ? Promise.resolve(resp) : resp.text();
6811
- return spritePromise.then((iconSvgStr) => {
6812
- const id = "formeo-sprite";
6813
- let iconSpriteWrap = document.getElementById(id);
6814
- if (!iconSpriteWrap) {
6815
- iconSpriteWrap = dom.create({
6816
- id,
6817
- children: iconSvgStr,
6818
- attrs: {
6819
- hidden: true,
6820
- style: "display: none;"
6821
- }
6822
- });
6823
- document.body.insertBefore(iconSpriteWrap, document.body.childNodes[0]);
6824
- }
6825
- return iconSpriteWrap;
6826
- });
6822
+ const insertIcons = (iconSvgStr) => {
6823
+ let iconSpriteWrap = document.getElementById(formeoSpriteId);
6824
+ if (!iconSpriteWrap) {
6825
+ iconSpriteWrap = dom.create({
6826
+ id: formeoSpriteId,
6827
+ children: iconSvgStr,
6828
+ attrs: {
6829
+ hidden: true,
6830
+ style: "display: none;"
6831
+ }
6832
+ });
6833
+ document.body.insertBefore(iconSpriteWrap, document.body.childNodes[0]);
6834
+ }
6835
+ return iconSpriteWrap;
6836
+ };
6837
+ const fetchIcons = async (iconSpriteUrl = SVG_SPRITE_URL) => {
6838
+ const formeoSprite = document.getElementById(formeoSpriteId);
6839
+ if (formeoSprite) {
6840
+ return;
6841
+ }
6842
+ const parseResp = async (resp) => insertIcons(await resp.text());
6843
+ return ajax(iconSpriteUrl, parseResp, () => ajax(FALLBACK_SVG_SPRITE_URL, parseResp));
6827
6844
  };
6828
6845
  const loadPolyfills = (polyfillConfig) => {
6829
6846
  const polyfills = Array.isArray(polyfillConfig) ? POLYFILLS.filter(({ name: name2 }) => polyfillConfig.indexOf(name2) !== -1) : POLYFILLS;
6830
6847
  return Promise.all(polyfills.map(({ src }) => insertScript(src)));
6831
6848
  };
6832
- const ajax = (file, callback, onError = noop) => {
6833
- return new Promise((resolve, reject) => {
6834
- return fetch(file).then((data) => resolve(callback ? callback(data) : data)).catch((err) => reject(new Error(onError(err))));
6835
- });
6836
- };
6837
6849
  const LOADER_MAP = {
6838
6850
  js: insertScripts,
6839
6851
  css: insertStyles
@@ -6844,6 +6856,19 @@ const fetchDependencies = (dependencies2) => {
6844
6856
  });
6845
6857
  return Promise.all(promises);
6846
6858
  };
6859
+ const isCssLoaded = () => {
6860
+ const formeoSprite = document.getElementById(formeoSpriteId);
6861
+ const computedStyle = window.getComputedStyle(formeoSprite);
6862
+ return computedStyle.visibility === "hidden";
6863
+ };
6864
+ const fetchFormeoStyle = async (cssUrl) => {
6865
+ if (!isCssLoaded()) {
6866
+ await insertStyle(cssUrl);
6867
+ if (!isCssLoaded()) {
6868
+ return await insertStyle(FALLBACK_CSS_URL);
6869
+ }
6870
+ }
6871
+ };
6847
6872
  class Control {
6848
6873
  /**
6849
6874
  * Constructs a new Control instance.
@@ -7244,12 +7269,8 @@ class HeaderControl extends Control {
7244
7269
  },
7245
7270
  content: mi18n.get(headerKey),
7246
7271
  action: {
7247
- onRender: (evt) => {
7248
- console.log("evt", evt);
7249
- },
7250
- click: (evt) => {
7251
- console.log("evt", evt);
7252
- }
7272
+ // onRender: evt => {},
7273
+ // click: evt => {},
7253
7274
  }
7254
7275
  };
7255
7276
  super(header);
@@ -7342,7 +7363,6 @@ class TinyMCEControl extends Control {
7342
7363
  controlAction: {
7343
7364
  // callback when control is clicked
7344
7365
  click: () => {
7345
- console.log("window.tinymce control clicked");
7346
7366
  },
7347
7367
  // callback for when control is rendered
7348
7368
  onRender: () => {
@@ -8842,7 +8862,7 @@ class DOM {
8842
8862
  if (this.iconSymbols) {
8843
8863
  return this.iconSymbols;
8844
8864
  }
8845
- const iconSymbolNodes = document.querySelectorAll("#formeo-sprite svg symbol");
8865
+ const iconSymbolNodes = document.querySelectorAll(`#${formeoSpriteId} svg symbol`);
8846
8866
  const createSvgIconConfig = (symbolId) => ({
8847
8867
  tag: "svg",
8848
8868
  attrs: {
@@ -9262,8 +9282,8 @@ class DOM {
9262
9282
  }
9263
9283
  }
9264
9284
  const dom = new DOM();
9265
- const EN_US = void 0;
9266
- mi18n.addLanguage("en-US", EN_US);
9285
+ const enUS = void 0;
9286
+ mi18n.addLanguage("en-US", enUS);
9267
9287
  const defaults = {
9268
9288
  get editor() {
9269
9289
  return {
@@ -9276,7 +9296,9 @@ const defaults = {
9276
9296
  // element or selector to attach editor to
9277
9297
  external: {},
9278
9298
  // assign external data to be used in conditions autolinker
9279
- svgSprite: null,
9299
+ svgSprite: SVG_SPRITE_URL,
9300
+ // change to null
9301
+ style: CSS_URL,
9280
9302
  // change to null
9281
9303
  iconFont: null,
9282
9304
  // 'glyphicons' || 'font-awesome' || 'fontello'
@@ -9293,7 +9315,6 @@ const defaults = {
9293
9315
  };
9294
9316
  }
9295
9317
  };
9296
- const sprite = '<?xml version="1.0" encoding="utf-8"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol id="f-i-autocomplete" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M6,5h1v1H6V5z M4,4H3v1h1V4z M6,4H5v1h1V4z M2,5v1h1V5H2z M3,7h1V6H3V7z M5,7h1V6H5V7z M4,5v1h1V5H4z M2,14h1v-1H2V14z M4,14h1v-1H4V14z M6,14h1v-1H6V14z M9,13H8v1h1V13z M16,3.5v4C16,8.3,15.3,9,14.5,9H14v3v3c0,0.6-0.4,1-1,1H1c-0.6,0-1-0.4-1-1V3.5 C0,2.7,0.7,2,1.5,2h3H8V1.5V1H7H6V0.5V0h2.5H11v0.5V1h-1H9v0.5V2h3h2.5C15.3,2,16,2.7,16,3.5z M13,12H7H1v3h12V12z M3,11v-1H2v1H3z M5,11v-1H4v1H5z M15,3.5C15,3.2,14.8,3,14.5,3H9v2.5V8H8.5H8V7.5V7H7V6h1V5.5V5H7V4h1V3.5V3H1.5C1.2,3,1,3.2,1,3.5v4 C1,7.8,1.2,8,1.5,8H8v1H6v0.5V10h2.5H11V9.5V9H9V8h5.5C14.8,8,15,7.8,15,7.5V3.5z"/></symbol><symbol viewBox="0 0 32 32" id="f-i-bin" xmlns="http://www.w3.org/2000/svg"><path d="M4 10v20c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2v-20h-22zM10 28h-2v-14h2v14zM14 28h-2v-14h2v14zM18 28h-2v-14h2v14zM22 28h-2v-14h2v14zM26.5 4h-6.5v-2.5c0-.825-.675-1.5-1.5-1.5h-7c-.825 0-1.5.675-1.5 1.5v2.5h-6.5c-.825 0-1.5.675-1.5 1.5v2.5h26v-2.5c0-.825-.675-1.5-1.5-1.5zM18 4h-6v-1.975h6v1.975z"/></symbol><symbol id="f-i-button" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><metadata id="acmetadata8"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/><dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><path id="acrect4140" d="M 0.4765625,4 A 0.47706934,0.47706934 0 0 0 0,4.4765625 L 0,11.523438 A 0.47706934,0.47706934 0 0 0 0.4765625,12 L 15.523438,12 A 0.47706934,0.47706934 0 0 0 16,11.523438 L 16,4.4765625 A 0.47706934,0.47706934 0 0 0 15.523438,4 L 0.4765625,4 Z m 0.4765625,0.953125 14.09375,0 0,6.09375 -14.09375,0 0,-6.09375 z"/><g id="aclayer1"><g id="actext4203"><g id="acg4212" transform="translate(0.10112835,0.1001358)"><path id="acpath4208" d="m 6.0690374,6.4093857 q -0.5371093,0 -0.8544922,0.4003906 -0.3149414,0.4003906 -0.3149414,1.0913086 0,0.6884766 0.3149414,1.0888672 0.3173829,0.4003906 0.8544922,0.4003906 0.5371094,0 0.8496094,-0.4003906 0.3149414,-0.4003906 0.3149414,-1.0888672 0,-0.690918 -0.3149414,-1.0913086 -0.3125,-0.4003906 -0.8496094,-0.4003906 z m 0,-0.4003906 q 0.7666016,0 1.225586,0.5151367 0.4589843,0.5126953 0.4589843,1.3769531 0,0.8618164 -0.4589843,1.3769531 -0.4589844,0.5126953 -1.225586,0.5126953 -0.7690429,0 -1.2304687,-0.5126953 -0.4589844,-0.5126953 -0.4589844,-1.3769531 0,-0.8642578 0.4589844,-1.3769531 0.4614258,-0.5151367 1.2304687,-0.5151367 z"/><path id="acpath4210" d="m 8.5250921,6.074913 0.4931641,0 0,1.5405274 1.6357418,-1.5405274 0.634766,0 -1.809082,1.6992188 1.938477,1.9458008 -0.649415,0 -1.7504878,-1.7553711 0,1.7553711 -0.4931641,0 0,-3.6450196 z"/></g></g></g></symbol><symbol viewBox="0 0 32 32" id="f-i-calendar" xmlns="http://www.w3.org/2000/svg"><path d="M12.048 16.961c-0.178 0.257-0.395 0.901-0.652 1.059-0.257 0.157-0.547 0.267-0.869 0.328-0.323 0.062-0.657 0.089-1.002 0.079v1.527h2.467v6.046h1.991v-9.996h-1.584c-0.056 0.381-0.173 0.7-0.351 0.957zM23 8h2c0.553 0 1-0.448 1-1v-6c0-0.552-0.447-1-1-1h-2c-0.553 0-1 0.448-1 1v6c0 0.552 0.447 1 1 1zM7 8h2c0.552 0 1-0.448 1-1v-6c0-0.552-0.448-1-1-1h-2c-0.552 0-1 0.448-1 1v6c0 0.552 0.448 1 1 1zM30 4h-2v5c0 0.552-0.447 1-1 1h-6c-0.553 0-1-0.448-1-1v-5h-8v5c0 0.552-0.448 1-1 1h-6c-0.552 0-1-0.448-1-1v-5h-2c-1.104 0-2 0.896-2 2v24c0 1.104 0.896 2 2 2h28c1.104 0 2-0.896 2-2v-24c0-1.104-0.896-2-2-2zM30 29c0 0.553-0.447 1-1 1h-26c-0.552 0-1-0.447-1-1v-16c0-0.552 0.448-1 1-1h26c0.553 0 1 0.448 1 1v16zM15.985 17.982h4.968c-0.936 1.152-1.689 2.325-2.265 3.705-0.575 1.381-0.638 2.818-0.749 4.312h2.131c0.009-0.666-0.195-1.385-0.051-2.156 0.146-0.771 0.352-1.532 0.617-2.285 0.267-0.752 0.598-1.461 0.996-2.127 0.396-0.667 0.853-1.229 1.367-1.686v-1.742h-7.015v1.979z"/></symbol><symbol id="f-i-checkbox" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M13.5,5v8c0,0.8-0.7,1.5-1.5,1.5H3c-0.8,0-1.5-0.7-1.5-1.5V4c0-0.8,0.7-1.5,1.5-1.5h9c0.7,0,1.3,0.5,1.5,1.2l2.4-1.4L13.5,5 z M12.5,6.2L7.7,12L2.8,5.5l4.9,1.6l4.8-2.9V4c0-0.3-0.2-0.5-0.5-0.5H3C2.7,3.5,2.5,3.7,2.5,4v9c0,0.3,0.2,0.5,0.5,0.5h9 c0.3,0,0.5-0.2,0.5-0.5V6.2z"/></symbol><symbol id="f-i-checkbox-group" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M0,1h16V0H0V1z M0,3h16V2H0V3z M6,5v1h9V5H6z M15,14v-1H6v1H15z M6,10h9V9H6V10z M4,12l-2.5,1.5L0,13l1.5,2L4,12z M4,8 L1.5,9.5L0,9l1.5,2L4,8z M4,4L1.5,5.5L0,5l1.5,2L4,4z"/></symbol><symbol xml:space="preserve" viewBox="0 0 16 16" id="f-i-columns" xmlns="http://www.w3.org/2000/svg"><metadata id="agmetadata4318"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/><dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><path id="agrect4860-3-5" d="M 16,0.5 A 0.50004997,0.50004997 0 0 0 15.5,0 l -5,0 -5,0 -5,0 A 0.50004997,0.50004997 0 0 0 0,0.5 l 0,15 A 0.50004997,0.50004997 0 0 0 0.5,16 l 5,0 5,0 5,0 A 0.50004997,0.50004997 0 0 0 16,15.5 l 0,-15 z M 15,1 15,15 11,15 11,1 15,1 Z M 10,1 10,15 6,15 6,1 10,1 Z M 5,1 5,15 1,15 1,1 5,1 Z"/></symbol><symbol viewBox="0 0 2.1166668 2.1167197" id="f-i-component-corner" xmlns="http://www.w3.org/2000/svg"><g id="ahg2" transform="translate(-0.52916668)"><path class="ahcorner-fill" stroke="none" fill="inherit" d="M 0.52916668,5.3011818e-5 V 2.1167198 H 2.6458337 V 1.9849449 C 1.5496647,1.9849298 0.66092868,1.0962219 0.66094168,5.3011818e-5 Z m 0.131775,0 L 2.6458337,1.9849449 Z"/><path class="ahcorner-stroke" stroke-width="0.250546px" fill="none" stroke="inherit" d="m 2.645783,1.9848683 v 0 C 1.5496137,1.9848532 0.66100516,1.0962232 0.66101817,5.4327518e-5 v 0"/></g></symbol><symbol viewBox="0 0 32 32" id="f-i-copy" xmlns="http://www.w3.org/2000/svg"><path d="M20 8v-8h-14l-6 6v18h12v8h20v-24h-12zM6 2.828v3.172h-3.172l3.172-3.172zM2 22v-14h6v-6h10v6l-6 6v8h-10zM18 10.828v3.172h-3.172l3.172-3.172zM30 30h-16v-14h6v-6h10v20z"/></symbol><symbol id="f-i-divider" viewBox="0 0 15 15" xmlns="http://www.w3.org/2000/svg"><metadata id="ajmetadata10"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/><dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><rect y="7" x="0" height="1" width="15" id="ajrect4182"/></symbol><symbol viewBox="0 0 28 32" id="f-i-edit" xmlns="http://www.w3.org/2000/svg"><path d="M22 2l-4 4 6 6 4-4-6-6zM0 24l0.021 6.018 5.979-0.018 16-16-6-6-16 16zM6 28h-4v-4h2v2h2v2z"/></symbol><symbol fill="#000000" viewBox="0 0 24 24" id="f-i-email" xmlns="http://www.w3.org/2000/svg"><path d="M12,2 C17.4292399,2 21.8479317,6.32667079 21.9961582,11.7200952 L22,12 L22,13 C22,15.1729208 20.477434,17 18.5,17 C17.3269391,17 16.3139529,16.3570244 15.6839382,15.3803024 C14.770593,16.3757823 13.4581934,17 12,17 C9.23857625,17 7,14.7614237 7,12 C7,9.23857625 9.23857625,7 12,7 C14.6887547,7 16.8818181,9.12230671 16.9953805,11.7831104 L17,12 L17,13 C17,14.1407877 17.7160103,15 18.5,15 C19.2447902,15 19.928229,14.2245609 19.9947109,13.1689341 L20,13 L20,12 C20,7.581722 16.418278,4 12,4 C7.581722,4 4,7.581722 4,12 C4,16.418278 7.581722,20 12,20 C13.1630948,20 14.2892822,19.7522618 15.3225159,19.2798331 C15.8247876,19.0501777 16.4181317,19.271177 16.647787,19.7734487 C16.8774423,20.2757205 16.656443,20.8690646 16.1541713,21.0987199 C14.861218,21.689901 13.4515463,22 12,22 C6.4771525,22 2,17.5228475 2,12 C2,6.4771525 6.4771525,2 12,2 Z M12,9 C10.3431458,9 9,10.3431458 9,12 C9,13.6568542 10.3431458,15 12,15 C13.6568542,15 15,13.6568542 15,12 C15,10.3431458 13.6568542,9 12,9 Z"/></symbol><symbol viewBox="0 0 32 32" id="f-i-floppy-disk" xmlns="http://www.w3.org/2000/svg"><path d="M28 0h-28v32h32v-28l-4-4zM16 4h4v8h-4v-8zM28 28h-24v-24h2v10h18v-10h2.343l1.657 1.657v22.343z"/></symbol><symbol xml:space="preserve" viewBox="0 0 16 16" id="f-i-handle" xmlns="http://www.w3.org/2000/svg"><metadata id="aqmetadata8"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/><dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><g transform="translate(0,-2)" id="aqg4220"><rect id="aqrect4191" width="2" height="2" x="2" y="7"/><rect id="aqrect4191-2" width="2" height="2" x="7" y="7"/><rect id="aqrect4191-4" width="2" height="2" x="12" y="7"/></g><g transform="translate(0,2)" id="aqg4220-6"><rect id="aqrect4191-40" width="2" height="2" x="2" y="7"/><rect id="aqrect4191-2-3" width="2" height="2" x="7" y="7"/><rect id="aqrect4191-4-9" width="2" height="2" x="12" y="7"/></g></symbol><symbol xml:space="preserve" viewBox="0 0 16 16" id="f-i-handle-column" xmlns="http://www.w3.org/2000/svg"><metadata id="anmetadata8"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><g id="ang1" transform="rotate(90,9.25,9.25)"><rect id="anrect4191-27" width="2" height="2" x="2" y="7"/><rect id="anrect4191-2-0" width="2" height="2" x="7" y="7"/><rect id="anrect4191-2-9-9" width="2" height="2" x="12" y="7"/><rect id="anrect4191-27-6" width="2" height="2" x="2" y="12"/><rect id="anrect4191-2-0-0" width="2" height="2" x="7" y="12"/><rect id="anrect4191-2-9-9-6" width="2" height="2" x="12" y="12"/></g></symbol><symbol xml:space="preserve" viewBox="0 0 16 16" id="f-i-handle-field" xmlns="http://www.w3.org/2000/svg"><metadata id="aometadata8"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><g id="aog1" transform="translate(0,-2.5)"><rect id="aorect4191-2-0" width="2" height="2" x="7" y="-11.5" transform="rotate(90)"/><rect id="aorect4191-2-9-9" width="2" height="2" x="12" y="-11.5" transform="rotate(90)"/><rect id="aorect4191-2-0-0" width="2" height="2" x="7" y="-6.5" transform="rotate(90)"/><rect id="aorect4191-2-9-9-6" width="2" height="2" x="12" y="-6.5" transform="rotate(90)"/></g></symbol><symbol xml:space="preserve" viewBox="0 0 16 16" id="f-i-handle-row" xmlns="http://www.w3.org/2000/svg"><metadata id="apmetadata8"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><g id="apg1" transform="translate(0,-2.5)"><rect id="aprect4191-27" width="2" height="2" x="2" y="7"/><rect id="aprect4191-2-0" width="2" height="2" x="7" y="7"/><rect id="aprect4191-2-9-9" width="2" height="2" x="12" y="7"/><rect id="aprect4191-27-6" width="2" height="2" x="2" y="12"/><rect id="aprect4191-2-0-0" width="2" height="2" x="7" y="12"/><rect id="aprect4191-2-9-9-6" width="2" height="2" x="12" y="12"/></g></symbol><symbol viewBox="0 0 448 512" id="f-i-hash" xmlns="http://www.w3.org/2000/svg"><g id="aricomoon-ignore"/><path fill="#000" d="M448 192v-64h-80.064l16-128h-64l-16 128h-127.968l16-128h-64l-16 128h-111.968v64h103.968l-15.968 128h-88v64h80l-16 128h64l16-128h127.968l-16 128h64.032l16-128h112v-64h-104l15.936-128h88.064zM279.968 320h-127.968l15.968-128h127.968l-15.968 128z"/></symbol><symbol viewBox="0 0 28 28" id="f-i-header" xmlns="http://www.w3.org/2000/svg"><path fill="#444" d="M26.281 26q-0.688 0-2.070-0.055t-2.086-0.055q-0.688 0-2.063 0.055t-2.063 0.055q-0.375 0-0.578-0.32t-0.203-0.711q0-0.484 0.266-0.719t0.609-0.266 0.797-0.109 0.703-0.234q0.516-0.328 0.516-2.188l-0.016-6.109q0-0.328-0.016-0.484-0.203-0.063-0.781-0.063h-10.547q-0.594 0-0.797 0.063-0.016 0.156-0.016 0.484l-0.016 5.797q0 2.219 0.578 2.562 0.25 0.156 0.75 0.203t0.891 0.055 0.703 0.234 0.313 0.711q0 0.406-0.195 0.75t-0.57 0.344q-0.734 0-2.18-0.055t-2.164-0.055q-0.672 0-2 0.055t-1.984 0.055q-0.359 0-0.555-0.328t-0.195-0.703q0-0.469 0.242-0.703t0.562-0.273 0.742-0.117 0.656-0.234q0.516-0.359 0.516-2.234l-0.016-0.891v-12.703q0-0.047 0.008-0.406t0-0.57-0.023-0.602-0.055-0.656-0.102-0.57-0.172-0.492-0.25-0.281q-0.234-0.156-0.703-0.187t-0.828-0.031-0.641-0.219-0.281-0.703q0-0.406 0.187-0.75t0.562-0.344q0.719 0 2.164 0.055t2.164 0.055q0.656 0 1.977-0.055t1.977-0.055q0.391 0 0.586 0.344t0.195 0.75q0 0.469-0.266 0.68t-0.602 0.227-0.773 0.063-0.672 0.203q-0.547 0.328-0.547 2.5l0.016 5q0 0.328 0.016 0.5 0.203 0.047 0.609 0.047h10.922q0.391 0 0.594-0.047 0.016-0.172 0.016-0.5l0.016-5q0-2.172-0.547-2.5-0.281-0.172-0.914-0.195t-1.031-0.203-0.398-0.773q0-0.406 0.195-0.75t0.586-0.344q0.688 0 2.063 0.055t2.063 0.055q0.672 0 2.016-0.055t2.016-0.055q0.391 0 0.586 0.344t0.195 0.75q0 0.469-0.273 0.688t-0.625 0.227-0.805 0.047-0.688 0.195q-0.547 0.359-0.547 2.516l0.016 14.734q0 1.859 0.531 2.188 0.25 0.156 0.719 0.211t0.836 0.070 0.648 0.242 0.281 0.695q0 0.406-0.187 0.75t-0.562 0.344z"/></symbol><symbol xml:space="preserve" viewBox="0 0 16 16" id="f-i-hidden" xmlns="http://www.w3.org/2000/svg"><metadata id="atmetadata8"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/><dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><path id="atpath5816" d="M 1,5 2,5 2,4 1,4 Z"/><path id="atpath5814" d="M 3,5 4,5 4,4 3,4 Z"/><path id="atpath5812" d="M 5,5 6,5 6,4 5,4 Z"/><path id="atpath5810" d="M 7,5 8,5 8,4 7,4 Z"/><path id="atpath5808" d="M 9,5 10,5 10,4 9,4 Z"/><path id="atpath5806" d="m 11,5 1,0 0,-1 -1,0 z"/><path id="atpath5804" d="m 13,5 1,0 0,-1 -1,0 z"/><path id="atpath5800" d="M 0,6 1,6 1,5 0,5 Z"/><path id="atpath5798" d="m 15,6.9997352 1,0 0,-1 -1,0 z"/><path id="atpath5796" d="M 0,8 1,8 1,7 0,7 Z"/><path id="atpath5794" d="m 15,8.9997352 1,0 0,-1 -1,0 z"/><path id="atpath5792" d="m 0,10 1,0 0,-1.0000001 -1,0 z"/><path id="atpath5790" d="m 15,10.999735 1,0 0,-0.9999998 -1,0 z"/><path id="atpath5786" d="m 2,12 1,0 0,-1 -1,0 z"/><path id="atpath5784" d="m 4,12 1,0 0,-1 -1,0 z"/><path id="atpath5782" d="m 6,12 1,0 0,-1 -1,0 z"/><path id="atpath5780" d="m 8,12 1,0 0,-1 -1,0 z"/><path id="atpath5778" d="m 10,12 1,0 0,-1 -1,0 z"/><path id="atpath5776" d="m 12,12 1,0 0,-1 -1,0 z"/><path id="atrect5768" d="m 14,12 1,0 0,-1 -1,0 z"/><path d="m 15,5 1,0 0,-1 -1,0 z" id="atpath5827"/><path d="m 0,12 1,0 0,-1 -1,0 z" id="atpath5829"/></symbol><symbol viewBox="0 0 384 512" id="f-i-menu" xmlns="http://www.w3.org/2000/svg"><g id="auicomoon-ignore"/><path d="M0 96v64h384v-64h-384zM0 288h384v-64h-384v64zM0 416h384v-64h-384v64z"/></symbol><symbol viewBox="0 0 16 32" id="f-i-minus" xmlns="http://www.w3.org/2000/svg"><path d="M0 14v4h16v-4h-16z"/></symbol><symbol viewBox="0 0 512 512" id="f-i-move" xmlns="http://www.w3.org/2000/svg"><path d="M287.744 94.736v129.008h128v-64l96.256 96.256-96.256 96.24v-65.488h-128v129.008h64.496l-96.24 96.24-96.256-96.24h64v-129.008h-128v64.992l-95.744-95.744 95.744-95.744v63.488h128v-129.008h-62.496l94.752-94.736 94.752 94.736h-63.008z"/></symbol><symbol viewBox="0 0 512 512" id="f-i-move-vertical" xmlns="http://www.w3.org/2000/svg"><metadata id="awmetadata10"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/><dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><sodipodi:namedview pagecolor="#ffffff" bordercolor="#666666" borderopacity="1" objecttolerance="10" gridtolerance="10" guidetolerance="10" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" inkscape:pageopacity="0" inkscape:pageshadow="2" inkscape:window-width="3440" inkscape:window-height="1416" id="awnamedview6" showgrid="false" inkscape:zoom="1.84375" inkscape:cx="421.4312" inkscape:cy="218.56484" inkscape:window-x="0" inkscape:window-y="24" inkscape:window-maximized="1" inkscape:current-layer="svg2" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"/><path d="m 287.744,94.736 0,321.024 64.496,0 L 256,512 l -96.256,-96.24 64,0 0,-321.024 -62.496,0 L 256,0 350.752,94.736 Z" id="awpath4" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" inkscape:connector-curvature="0" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" sodipodi:nodetypes="ccccccccccc"/></symbol><symbol viewBox="0 0 20 28" id="f-i-paragraph" xmlns="http://www.w3.org/2000/svg"><path fill="#444" d="M19.969 2.953v1.141q0 0.453-0.289 0.953t-0.664 0.5q-0.781 0-0.844 0.016-0.406 0.094-0.5 0.484-0.047 0.172-0.047 1v18q0 0.391-0.281 0.672t-0.672 0.281h-1.687q-0.391 0-0.672-0.281t-0.281-0.672v-19.031h-2.234v19.031q0 0.391-0.273 0.672t-0.68 0.281h-1.687q-0.406 0-0.68-0.281t-0.273-0.672v-7.75q-2.297-0.187-3.828-0.922-1.969-0.906-3-2.797-1-1.828-1-4.047 0-2.594 1.375-4.469 1.375-1.844 3.266-2.484 1.734-0.578 6.516-0.578h7.484q0.391 0 0.672 0.281t0.281 0.672z"/></symbol><symbol id="f-i-phone-receiver" viewBox="0 0 578.106 578.106" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><g><g><path d="M577.83,456.128c1.225,9.385-1.635,17.545-8.568,24.48l-81.396,80.781 c-3.672,4.08-8.465,7.551-14.381,10.404c-5.916,2.857-11.729,4.693-17.439,5.508c-0.408,0-1.635,0.105-3.676,0.309 c-2.037,0.203-4.689,0.307-7.953,0.307c-7.754,0-20.301-1.326-37.641-3.979s-38.555-9.182-63.645-19.584 c-25.096-10.404-53.553-26.012-85.376-46.818c-31.823-20.805-65.688-49.367-101.592-85.68 c-28.56-28.152-52.224-55.08-70.992-80.783c-18.768-25.705-33.864-49.471-45.288-71.299 c-11.425-21.828-19.993-41.616-25.705-59.364S4.59,177.362,2.55,164.51s-2.856-22.95-2.448-30.294 c0.408-7.344,0.612-11.424,0.612-12.24c0.816-5.712,2.652-11.526,5.508-17.442s6.324-10.71,10.404-14.382L98.022,8.756 c5.712-5.712,12.24-8.568,19.584-8.568c5.304,0,9.996,1.53,14.076,4.59s7.548,6.834,10.404,11.322l65.484,124.236 c3.672,6.528,4.692,13.668,3.06,21.42c-1.632,7.752-5.1,14.28-10.404,19.584l-29.988,29.988c-0.816,0.816-1.53,2.142-2.142,3.978 s-0.918,3.366-0.918,4.59c1.632,8.568,5.304,18.36,11.016,29.376c4.896,9.792,12.444,21.726,22.644,35.802 s24.684,30.293,43.452,48.653c18.36,18.77,34.68,33.354,48.96,43.76c14.277,10.4,26.215,18.053,35.803,22.949 c9.588,4.896,16.932,7.854,22.031,8.871l7.648,1.531c0.816,0,2.145-0.307,3.979-0.918c1.836-0.613,3.162-1.326,3.979-2.143 l34.883-35.496c7.348-6.527,15.912-9.791,25.705-9.791c6.938,0,12.443,1.223,16.523,3.672h0.611l118.115,69.768 C571.098,441.238,576.197,447.968,577.83,456.128z"/></g></g><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/><g/></symbol><symbol id="f-i-radio-group" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M0,1h16V0H0V1z M0,3h16V2H0V3z M5,6h10V5H5V6z M15,9H5v1h10V9z M15,14v-1H5v1H15z M1.5,7C0.7,7,0,6.3,0,5.5S0.7,4,1.5,4 S3,4.7,3,5.5S2.3,7,1.5,7z M1.5,5C1.2,5,1,5.2,1,5.5S1.2,6,1.5,6S2,5.8,2,5.5S1.8,5,1.5,5z M1.5,11.1C0.7,11.1,0,10.4,0,9.6 s0.7-1.5,1.5-1.5S3,8.7,3,9.6S2.3,11.1,1.5,11.1z M1.5,9.1C1.2,9.1,1,9.3,1,9.6s0.2,0.5,0.5,0.5S2,9.8,2,9.6S1.8,9.1,1.5,9.1z M1.5,15C0.7,15,0,14.3,0,13.5S0.7,12,1.5,12S3,12.7,3,13.5S2.3,15,1.5,15z M1.5,13C1.2,13,1,13.2,1,13.5S1.2,14,1.5,14 S2,13.8,2,13.5S1.8,13,1.5,13z"/></symbol><symbol viewBox="0 0 512 512" id="f-i-remove" xmlns="http://www.w3.org/2000/svg"><metadata id="bbmetadata8"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/><dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><g id="bblayer1"><g transform="translate(170.37199,5.9577983)" id="bbg4172"><path id="bbrect4155" d="m -159.9194,-18.102955 87.322034,0 0,510.915285 -87.322034,0 z" transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)"/><path id="bbrect4155-5" d="m 193.69366,-139.19925 87.32204,0 0,510.91528 -87.32204,0 z" transform="matrix(0.70710678,0.70710678,-0.70710678,0.70710678,0,0)"/></g></g></symbol><symbol id="f-i-rich-text" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path d="M15,1H1C0.4,1,0,1.4,0,2v12c0,0.6,0.4,1,1,1h14c0.6,0,1-0.4,1-1V2C16,1.4,15.6,1,15,1z M1,3.1h0.8v0.3H1V3.1z M1,3.6h0.8 v0.3H1V3.6z M15,14H1V5.1h14V14z M15,4.9H1V4.6h14V4.9z M15,4.4H1V4.1h0.8v0.2h1.5V4.1h1.3v0.2H6V4.1h1.3v0.2h1.5V4.1H10v0.2h1.5 V4.1h1.3v0.2h1.5V4.1H15V4.4z M4.5,3.6v0.3H3.3V3.6H4.5z M3.3,3.4V3.1h1.3v0.3H3.3z M7.3,3.6v0.3H6V3.6H7.3z M6,3.4V3.1h1.3v0.3H6z M10,3.6v0.3H8.8V3.6H10z M8.8,3.4V3.1H10v0.3H8.8z M12.8,3.6v0.3h-1.3V3.6H12.8z M11.5,3.4V3.1h1.3v0.3H11.5z M15,3.9h-0.8V3.6H15 V3.9z M15,3.4h-0.8V3.1H15V3.4z M15,2.9h-0.8V2.8h-1.5v0.2h-1.3V2.8H10v0.2H8.8V2.8H7.3v0.2H6V2.8H4.5v0.2H3.3V2.8H1.8v0.2H1V2.6h14 V2.9z M15,2.4H1V2.1h14V2.4z M3,12v-1h10v1H3z M13,10H3V9h10V10z M11,8H3V7h8V8z"/></symbol><symbol xml:space="preserve" viewBox="0 0 16 16" id="f-i-rows" xmlns="http://www.w3.org/2000/svg"><metadata id="bdmetadata4318"><rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><cc:Work rdf:about="" xmlns:cc="http://creativecommons.org/ns#"><dc:format xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml</dc:format><dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" xmlns:dc="http://purl.org/dc/elements/1.1/"/><dc:title xmlns:dc="http://purl.org/dc/elements/1.1/"/></cc:Work></rdf:RDF></metadata><g transform="matrix(0,1,-1,0,3.0984025,11.835155)" id="bdg7209"><path id="bdrect4860-3-5" d="m 4.1640625,-12.402344 a 0.50004997,0.50004997 0 0 0 -0.5,-0.5 l -5,0 -5,0 -5.0000005,0 a 0.50004997,0.50004997 0 0 0 -0.5,0.5 l 0,15.0000002 a 0.50004997,0.50004997 0 0 0 0.5,0.5 l 4.9648442,0 a 0.50004997,0.50004997 0 0 0 0.035156,0 l 4.9648437,0 a 0.50004997,0.50004997 0 0 0 0.035156,0 l 5,0 a 0.50004997,0.50004997 0 0 0 0.5,-0.5 l 0,-15.0000002 z m -1,0.5 0,14.0000002 -4,0 0,-14.0000002 4,0 z m -5,0 0,14.0000002 -4,0 0,-14.0000002 4,0 z m -5,0 0,14.0000002 -4.0000005,0 0,-14.0000002 4.0000005,0 z"/></g></symbol><symbol id="f-i-select" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path id="beXMLID_1_" d="M0,0v14h0c0,0.6,0.4,1,1,1h10c0.6,0,1-0.4,1-1h0V5h4V0H0z M1,1h10v3H1V1z M1,7h10v3H1V7z M1,14v-3h10v3H1z M15,4h-3V1h3V4z M2,2h1v1H2V2z M2,12h1v1H2V12z M4,12h1v1H4V12z M6,12h1v1H6V12z M9,12v1H8v-1H9z M2,8h1v1H2V8z M4,8h1v1H4V8z M6,8 h1v1H6V8z M13.5,3.1l-1-1.1h1.9L13.5,3.1z M2,6V5h1v1H2L2,6z M4,6V5h1v1H4L4,6z"/></symbol><symbol viewBox="0 0 448 512" id="f-i-settings" xmlns="http://www.w3.org/2000/svg"><g id="bficomoon-ignore"/><path d="M223.969 175c-44.703 0-80.969 36.266-80.969 81 0 44.688 36.266 81.031 80.969 81.031 44.719 0 80.719-36.344 80.719-81.031-0-44.734-36-81-80.719-81zM386.313 302.531l-14.594 35.156 29.469 57.875-36.094 36.094-59.218-27.969-35.156 14.438-17.844 54.625-2.281 7.25h-51.016l-22.078-61.656-35.156-14.5-57.952 29.344-36.078-36.063 27.938-59.25-14.484-35.125-61.767-20.156v-50.984l61.703-22.109 14.485-35.094-25.953-51.234-3.422-6.719 36.031-36.031 59.297 27.922 35.109-14.516 17.828-54.594 2.297-7.234h51l22.094 61.734 35.063 14.516 58.031-29.406 36.063 36.031-27.938 59.203 14.438 35.172 61.875 20.125v50.969l-61.688 22.187z"/></symbol><symbol id="f-i-text-input" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path id="bgXMLID_10_" d="M15,4H4.5V3H6V2H4.5h-1H2v1h1.5v1H1C0.4,4,0,4.5,0,5v6c0,0.6,0.4,1,1,1h2.5v1H2v1h4v-1H4.5v-1H15 c0.6,0,1-0.4,1-1V5C16,4.5,15.6,4,15,4z M1,11V5h2.5v6H1z M15,11H4.5V5H15V11z"/></symbol><symbol id="f-i-textarea" viewBox="0 0 16 16" xml:space="preserve" xmlns="http://www.w3.org/2000/svg"><path id="bhXMLID_1_" d="M3,11v-1h8v1H3L3,11z M3,7h10V6H3V7L3,7z M3,8v1h10V8H3L3,8z M13,4H3v1h10V4L13,4z M16,14V2c0-0.6-0.4-1-1-1 H1C0.4,1,0,1.4,0,2v12c0,0.6,0.4,1,1,1h14C15.6,15,16,14.6,16,14z M15,2v12H1V2H15z"/></symbol><symbol viewBox="0 0 24 32" id="f-i-triangle-down" xmlns="http://www.w3.org/2000/svg"><path fill="#444" d="M0 12l11.992 11.992 11.992-11.992h-23.984z"/></symbol><symbol viewBox="0 0 12 32" id="f-i-triangle-left" xmlns="http://www.w3.org/2000/svg"><path fill="#444" d="M0 15.996l11.992 11.992v-23.984l-11.992 11.992z"/></symbol><symbol viewBox="0 0 12 32" id="f-i-triangle-right" xmlns="http://www.w3.org/2000/svg"><path fill="#444" d="M0.002 4.008l11.992 11.992-11.992 11.992v-23.984z"/></symbol><symbol viewBox="0 0 24 32" id="f-i-triangle-up" xmlns="http://www.w3.org/2000/svg"><path fill="#444" d="M11.992 8l-11.992 11.992h23.984l-11.992-11.992z"/></symbol><symbol viewBox="0 0 512 512" id="f-i-upload" xmlns="http://www.w3.org/2000/svg"><g id="bmicomoon-ignore"/><path d="M240 352h-240v128h480v-128h-240zM448 416h-64v-32h64v32zM112 160l128-128 128 128h-80v160h-96v-160z"/></symbol></svg>';
9297
9318
  let FormeoEditor$1 = class FormeoEditor {
9298
9319
  /**
9299
9320
  * @param {Object} options formeo options
@@ -9314,11 +9335,7 @@ let FormeoEditor$1 = class FormeoEditor {
9314
9335
  this.dom = dom;
9315
9336
  events.init({ debug, ...events$1 });
9316
9337
  actions.init({ debug, sessionStorage: opts.sessionStorage, ...actions$1 });
9317
- this.loadResources().then(() => {
9318
- if (opts.allowEdit) {
9319
- this.init();
9320
- }
9321
- });
9338
+ document.addEventListener("DOMContentLoaded", this.loadResources.bind(this));
9322
9339
  }
9323
9340
  get formData() {
9324
9341
  return this.Components.formData;
@@ -9333,22 +9350,21 @@ let FormeoEditor$1 = class FormeoEditor {
9333
9350
  * Load remote resources
9334
9351
  * @return {Promise} asynchronously loaded remote resources
9335
9352
  */
9336
- loadResources() {
9353
+ async loadResources() {
9337
9354
  var _a;
9355
+ document.removeEventListener("DOMContentLoaded", this.loadResources);
9338
9356
  const promises = [];
9339
9357
  if (this.opts.polyfills) {
9340
9358
  loadPolyfills(this.opts.polyfills);
9341
9359
  }
9342
- if (this.opts.style) {
9343
- promises.push(insertStyle(this.opts.style));
9344
- }
9345
- if (this.opts.svgSprite) {
9346
- promises.push(ajax(this.opts.svgSprite, insertIcons, () => ajax(FALLBACK_SVG_SPRITE, insertIcons)));
9347
- } else {
9348
- promises.push(insertIcons(sprite));
9349
- }
9360
+ await fetchIcons(this.opts.svgSprite);
9361
+ promises.push(fetchFormeoStyle(this.opts.style));
9350
9362
  promises.push(mi18n.init({ ...this.opts.i18n, locale: (_a = window.sessionStorage) == null ? void 0 : _a.getItem(SESSION_LOCALE_KEY) }));
9351
- return Promise.all(promises);
9363
+ const resolvedPromises = await Promise.all(promises);
9364
+ if (this.opts.allowEdit) {
9365
+ this.init();
9366
+ }
9367
+ return resolvedPromises;
9352
9368
  }
9353
9369
  /**
9354
9370
  * Formeo initializer
@@ -1,8 +1,8 @@
1
1
 
2
2
  /**
3
3
  formeo - https://formeo.io
4
- Version: 2.1.6
4
+ Version: 2.1.7
5
5
  Author: Draggable https://draggable.io
6
6
  */
7
7
 
8
- .svg-icon{display:inline-block;width:24px;height:24px;pointer-events:none}.f-i-remove:hover{fill:#d9534f}button[class*=-move]:hover{background-color:#9954bb!important}button[class*=-move]:hover .svg-icon{fill:#fff}button[class*=-remove]:hover{background-color:#d9534f!important}button[class*=-remove]:hover .svg-icon{fill:#fff}button[class*=-clone]:hover{background-color:#93c54b!important}button[class*=-clone]:hover .svg-icon{fill:#fff}.item-edit-toggle:hover{background-color:#325d88!important}.item-edit-toggle:hover .svg-icon{fill:#fff}.f-autocomplete-list{background-color:#fff;display:none;list-style:none;padding:0;position:absolute;z-index:20;max-height:200px;overflow-y:auto;width:100%;margin:0 -1px;border:1px solid #999999;border-width:1px 1px 0;box-shadow:0 1px 4px #00000080}.f-autocomplete-list li{border:1px solid #999999;display:none;cursor:default;padding:4px;margin:-1px 0 0;border-width:1px 0;transition:background-color 133ms ease-in-out;will-change:background-color;font-size:.85em}.f-autocomplete-list li.active-option{background-color:#e1cceb}.f-autocomplete-list li:hover{background-color:#bd91d3}.f-autocomplete-list .component-type{color:#666;font-style:italic;font-size:.75em}.formeo-panels-wrap h5{margin:0;padding:.55em 0;color:#666;font-weight:400;display:inline-block;width:100%}.formeo-panels-wrap nav{position:relative;padding:0;overflow:hidden}.formeo-panels-wrap nav button{position:absolute;width:24px;color:#000;height:100%;padding:0;line-height:0;z-index:1}.formeo-panels-wrap nav button:focus{outline:none;border:1px solid rgb(102,175,233);box-shadow:none}.formeo-panels-wrap nav button .svg-icon{width:20px;height:20px}.formeo-panels-wrap nav button.next-group{right:0;top:0;border-top-left-radius:0;border-bottom-left-radius:0}.formeo-panels-wrap nav button.prev-group{left:0;top:0;border-top-right-radius:0;border-bottom-right-radius:0}.formeo-panels-wrap ul{margin:0;padding:0;list-style:none}.formeo-panels-wrap .f-panel{vertical-align:top;display:inline-block;width:100%;flex-direction:column;flex:1 0 100%}.formeo-panels-wrap .f-panel>li:last-child{border-radius:0 0 4px 4px}.formeo-panels-wrap .panels{white-space:nowrap;transition-property:height;transition-duration:.15s;transition-timing-function:ease-in-out;will-change:transform;flex-direction:row}.formeo-panels-wrap .panel-labels{height:100%;background:#fff;overflow:hidden;text-align:center;white-space:nowrap}.tabbed-panels .panel-nav{height:auto}.tabbed-panels .panel-nav button{display:none}.tabbed-panels .f-panel{background-color:#fff}.tabbed-panels .panel-labels div{flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch;display:flex}.tabbed-panels .panel-labels h5{flex-direction:column;flex:1;cursor:pointer;background-color:#ccc;box-shadow:0 -1px 8px #999 inset}.tabbed-panels .panel-labels h5.active-tab{color:#000;box-shadow:none;background-color:#fff}.formeo-sprite{display:none!important}.formeo *{box-sizing:inherit;font-family:inherit}.formeo .pill-buttons>button{border-radius:50px}.formeo hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid #cccccc}.formeo .f-field-group{flex-wrap:wrap;margin-bottom:12px}.formeo .f-field-group:last-child{margin-bottom:0}.formeo .f-field-group label+.badge{margin-left:8px}.formeo .f-field-group>label{display:inline-block;margin-bottom:4px}.formeo .f-field-group button{margin-right:4px}.formeo select{font-size:100%;font-family:inherit;height:2.1em;line-height:1.5;margin:0;border:1px solid #cccccc;border-radius:4px;background-color:#fff;width:100%;padding:.3em .6em;box-sizing:border-box}.formeo select:focus{border:1px solid rgb(102,175,233);outline:none}.formeo input{font-size:100%;font-family:inherit;height:2.1em;line-height:1.5;margin:0;border:1px solid #cccccc;border-radius:4px;background-color:#fff;width:100%;padding:.3em .6em;box-sizing:border-box}.formeo input:focus{border:1px solid rgb(102,175,233);outline:none}.formeo input[type=checkbox],.formeo input[type=radio]{width:auto;height:auto;margin-right:4px}.formeo input[type=date]{max-width:280px;display:block}.formeo textarea{font-size:100%;font-family:inherit;height:2.1em;line-height:1.5;margin:0;border:1px solid #cccccc;border-radius:4px;background-color:#fff;width:100%;padding:.3em .6em;box-sizing:border-box;height:auto}.formeo textarea:focus{border:1px solid rgb(102,175,233);outline:none}.formeo button{border-radius:4px;border:1px solid #666666;color:#333;background-color:#fff;padding:4px 8px;line-height:1.5em}.formeo button:active{transform:scale(.97)}.formeo button:hover{filter:brightness(.9)}.formeo button.primary,.formeo button.success,.formeo button.warning,.formeo button.error{color:#fff}.formeo button.primary{background-color:#325d88;border-color:#244463}.formeo button.success{background-color:#93c54b;border-color:#79a736}.formeo button.warning{background-color:#f47c3c;border-color:#ef5c0e}.formeo button.error{background-color:#d9534f;border-color:#c9302c}.formeo button[disabled]{background-color:#ccc;color:#fff}.formeo button:focus{border:1px solid rgb(102,175,233)}.formeo button:hover,.formeo button:focus{outline:0 none}.formeo .f-addon{font-size:100%;font-family:inherit;height:2.1em;line-height:1.5;margin:0;border:1px solid #cccccc;border-radius:4px;background-color:#fff;width:100%;padding:.3em .6em;box-sizing:border-box;width:auto}.formeo .f-addon:focus{border:1px solid rgb(102,175,233);outline:none}.formeo .f-addon label{margin:1px 0 0 3px}.formeo .f-addon:last-child{margin-left:-1px}.formeo .f-btn-group{display:inline-flex;vertical-align:middle}.formeo .f-btn-group>button{flex:0 1 auto}.formeo .f-btn-group>button:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.formeo .f-btn-group>button:last-child:not(:first-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-top-left-radius:0}.formeo .f-btn-group>button:first-child{margin-left:0}.formeo .f-btn-group>button:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.formeo .f-btn-group button+button,.formeo .f-btn-group button+.f-btn-group,.formeo .f-btn-group .f-btn-group+button,.formeo .f-btn-group .f-btn-group+.f-btn-group,.formeo .f-btn-group .f-btn-group-vertical button+button,.formeo .f-btn-group .f-btn-group-vertical button+.f-btn-group,.formeo .f-btn-group .f-btn-group-vertical .f-btn-group+button,.formeo .f-btn-group .f-btn-group-vertical .f-btn-group+.f-btn-group{margin-left:-1px}.formeo .f-input-group{display:flex;flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch;display:inline-flex;vertical-align:bottom}.formeo .f-input-group input+input,.formeo .f-input-group input+select,.formeo .f-input-group select+select,.formeo .f-input-group select+input{margin-left:-1px}.formeo .f-input-group select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyNCIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDI0IDMyIj4KPHBhdGggZmlsbD0iIzQ0NCIgZD0iTTAgMTJsMTEuOTkyIDExLjk5MiAxMS45OTItMTEuOTkyaC0yMy45ODR6Ij48L3BhdGg+Cjwvc3ZnPgo=);background-position:right 10px top 2px;background-repeat:no-repeat;background-size:16px}.formeo .f-input-group select::-ms-expand{display:none}.formeo .f-input-group .f-addon,.formeo .f-input-group input,.formeo .f-input-group select{flex:0 1 auto;border-radius:0}.formeo .f-input-group .f-addon:last-child,.formeo .f-input-group input:last-child,.formeo .f-input-group select:last-child{border-right-width:1px;border-radius:0 4px 4px 0}.formeo .f-input-group .f-addon:first-child,.formeo .f-input-group input:first-child,.formeo .f-input-group select:first-child{border-radius:4px 0 0 4px;border-left-width:1px}.formeo .f-input-group .f-addon:first-child:last-child,.formeo .f-input-group input:first-child:last-child,.formeo .f-input-group select:first-child:last-child{border-radius:4px}.formeo .f-input-group .f-addon:focus+input,.formeo .f-input-group .f-addon:focus+select,.formeo .f-input-group input:focus+input,.formeo .f-input-group input:focus+select,.formeo .f-input-group select:focus+input,.formeo .f-input-group select:focus+select{border-left:1px solid rgb(102,175,233)}.formeo .text-primary{color:#325d88}.formeo .text-success{color:#93c54b}.formeo .text-warning{color:#f47c3c}.formeo .text-error{color:#d9534f}.formeo.formeo-editor{display:flex;flex-direction:row;text-align:left;gap:16px}@keyframes PLACEHOLDER{0%{height:1px}to{height:15px}}@keyframes DRAG_GHOST{0%{box-shadow:0 0 #999}to{box-shadow:0 0 30px #999}}@keyframes EDIT_PULSE{0%,to{border-color:#66afe9}50%{border-color:#bfdef6}}@keyframes HIDE_CONDITION_FIELD{0%{display:none}to{display:none}}@keyframes COMPONENT_HIGHLIGHT_PULSE{0%{box-shadow:0 0 1px 8px #9954bb}to{box-shadow:0 0 #9954bb}}@keyframes SLIDE_UP{0%{transform:translateY(100%);clip-path:inset(0 0 100% -20%)}to{transform:translateY(0);clip-path:inset(0 0 0 -20%)}}.formeo.formeo-editor .component-tag{display:none;height:24px;z-index:200;flex-direction:row;gap:4px;align-items:center;position:absolute;font-size:.8em;padding:0 8px;left:50%;top:-24px;border-top-left-radius:8px;border-top-right-radius:8px;background-color:#fff;border-color:#ccc;border-style:solid;border-width:1px 1px 0 1px}.formeo.formeo-editor .component-tag [class*=-handle-]{width:12px;height:12px}.formeo.formeo-editor .component-tag .f-i-component-corner{position:absolute;width:8px;height:8px}.formeo.formeo-editor .component-tag .f-i-component-corner.bottom-right{bottom:0;right:-8px}.formeo.formeo-editor .component-tag .f-i-component-corner.bottom-left{bottom:0;left:-8px;transform:scaleX(-1)}.formeo.formeo-editor .children{margin:0;padding:0;list-style:none;height:100%}.formeo.formeo-editor .group-actions{display:flex;transition:opacity .3s ease-in-out allow-discrete;position:absolute;top:0;line-height:0;z-index:2;align-items:center;justify-content:center;flex-direction:row;border-radius:8px}.formeo.formeo-editor .group-actions .action-btn-wrap{display:none;align-items:center;justify-content:center;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px;transition:opacity 1s ease-in-out allow-discrete}.formeo.formeo-editor .group-actions .action-btn-wrap .component-handle{opacity:.65}.formeo.formeo-editor .group-actions .action-btn-wrap button{background-color:#fff}.formeo.formeo-editor .group-actions button{background-color:transparent;width:24px;height:24px;padding:6px;border:0 none;line-height:0}.formeo.formeo-editor .group-actions button:focus{border:0 none;outline:0 none;box-shadow:none}.formeo.formeo-editor .group-actions .svg-icon{width:12px;height:12px}.formeo.formeo-editor .last-field .group-actions button:last-child{border-radius:0}.formeo.formeo-editor .column-editing-field .column-actions{display:none}.formeo.formeo-editor .group-config{display:none;padding:.5rem}.formeo.formeo-editor .editing-row .column-actions{display:none}.formeo.formeo-editor .hovering>.children,.formeo.formeo-editor .hovering>.field-preview,.formeo.formeo-editor .hovering>.prev-label{opacity:.65}.formeo.formeo-editor .hovering .group-actions .f-i-handle{display:none}.formeo.formeo-editor .formeo-row{transition:background-color 125ms ease-in-out;position:relative;clear:both;background-color:#fff;box-shadow:0 0 0 1px #ccc;padding:16px}.formeo.formeo-editor .formeo-row>.children{display:flex;flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch;gap:16px;min-height:32px}.formeo.formeo-editor .formeo-row:after{clear:both}.formeo.formeo-editor .formeo-row.control-ghost{padding:10px}.formeo.formeo-editor .formeo-row:first-child{border-top-right-radius:8px}.formeo.formeo-editor .formeo-row:first-child:not(.editing-row,.hovering-row){border-top-left-radius:8px}.formeo.formeo-editor .formeo-row:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.formeo.formeo-editor .formeo-row:only-child{border-radius:8px}.formeo.formeo-editor .formeo-row.resizing-columns .formeo-column{transition:none}.formeo.formeo-editor .formeo-row.empty:after{left:0;transform:translate(8px,-50%)}.formeo.formeo-editor .formeo-row .layout-row-control{display:none}.formeo.formeo-editor .formeo-row .row-tag{left:-1px;border-color:#ef476f}.formeo.formeo-editor .formeo-row .row-tag .f-i-component-corner{fill:#fff;stroke:#ef476f}.formeo.formeo-editor .formeo-row:has(.hovering-column) .row-actions,.formeo.formeo-editor .formeo-row:has(.hovering-column) .field-actions{display:none}.formeo.formeo-editor .formeo-row.sortable-ghost{background-color:#fef0f3;box-shadow:0 0 0 1px #ef476f}.formeo.formeo-editor .formeo-row.sortable-ghost *{opacity:0}.formeo.formeo-editor .row-moving{background-color:#fef0f3!important}.formeo.formeo-editor .row-moving .action-btn-wrap button,.formeo.formeo-editor .row-moving .row-tag{background-color:#fef0f3}.formeo.formeo-editor .row-moving .row-tag .f-i-component-corner{fill:#fef0f3}.formeo.formeo-editor .row-actions{left:0}.formeo.formeo-editor .hovering-row .column-actions,.formeo.formeo-editor .hovering-row .field-actions{display:none}.formeo.formeo-editor .hovering-row:first-child{border-top-left-radius:0}.formeo.formeo-editor .hovering-row.editing-row:before{border-right-width:0}.formeo.formeo-editor .editing-row,.formeo.formeo-editor .editing-row .row-edit{display:block}.formeo.formeo-editor .editing-row.hovering-row .formeo-column{opacity:1}.formeo.formeo-editor .hovering-row,.formeo.formeo-editor .editing-row{box-shadow:0 0 0 1px #ef476f}.formeo.formeo-editor .hovering-row .row-handle,.formeo.formeo-editor .editing-row .row-handle{display:none}.formeo.formeo-editor .hovering-row .row-tag,.formeo.formeo-editor .editing-row .row-tag,.formeo.formeo-editor .hovering-row .row-action-btn-wrap,.formeo.formeo-editor .editing-row .row-action-btn-wrap{display:flex}.formeo.formeo-editor .hovering-row .row-action-btn-wrap button:last-child,.formeo.formeo-editor .editing-row .row-action-btn-wrap button:last-child{border-bottom-right-radius:8px}.formeo.formeo-editor .row-edit{padding-top:2rem}.formeo.formeo-editor .input-group-addon label{margin-bottom:0}.formeo.formeo-editor .formeo-column{margin:0;padding:0;list-style:none;transition:width 266ms;position:relative;flex-direction:column;will-change:width;max-width:100%}.formeo.formeo-editor .formeo-column>.children{display:flex;flex-direction:column;justify-content:flex-start;gap:16px}.formeo.formeo-editor .formeo-column .column-tag{border-color:#06d6a0}.formeo.formeo-editor .formeo-column .column-tag .f-i-component-corner{fill:#fff;stroke:#06d6a0}.formeo.formeo-editor .formeo-column .column-tag,.formeo.formeo-editor .formeo-column .column-actions{transform:translate(-50%)}.formeo.formeo-editor .formeo-column[class*=col-]{padding:0}.formeo.formeo-editor .formeo-column:first-child{border-bottom-left-radius:8px}.formeo.formeo-editor .formeo-column:last-child{border-bottom-right-radius:8px}.formeo.formeo-editor .formeo-column:last-child .resize-x-handle{display:none!important}.formeo.formeo-editor .formeo-column:only-child{border-bottom-right-radius:8px;border-bottom-left-radius:8px}.formeo.formeo-editor .formeo-column:only-child .resize-x-handle{display:none!important}.formeo.formeo-editor .formeo-column .resize-x-handle{display:none;position:absolute;right:-16px;top:0;bottom:0;width:16px;z-index:2;cursor:ew-resize}.formeo.formeo-editor .formeo-column .resize-x-handle:before{width:0;right:6px;border:1px dashed rgb(47.3227272727,249.1772727273,196.7727272727);border-width:0 2px;display:block;top:0;position:absolute;height:100%;content:""}.formeo.formeo-editor .formeo-column .resize-x-handle svg{fill:#2ff9c5;position:absolute;right:1px;width:14px}.formeo.formeo-editor .formeo-column .resize-x-handle svg.f-i-triangle-down{top:-14px}.formeo.formeo-editor .formeo-column .resize-x-handle svg.f-i-triangle-up{bottom:-14px}.formeo.formeo-editor .formeo-column .resize-x-handle:hover:before{border-color:#06d6a0}.formeo.formeo-editor .formeo-column .resize-x-handle:hover svg{fill:#06d6a0}.formeo.formeo-editor .formeo-column.editing-column{overflow:hidden}.formeo.formeo-editor .formeo-column.editing-column .column-edit{display:block}.formeo.formeo-editor .formeo-column:has(.hovering-field) .column-actions{display:none}.formeo.formeo-editor .formeo-column.sortable-ghost{background-color:#ddfef5;box-shadow:0 0 0 1px #06d6a0}.formeo.formeo-editor .formeo-column.sortable-ghost *{opacity:0}.formeo.formeo-editor .editing-row .formeo-column,.formeo.formeo-editor .editing-row .empty{border-radius:8px;height:60px;background-color:#e6e6e6}.formeo.formeo-editor .editing-row .formeo-column.empty,.formeo.formeo-editor .editing-row .empty.empty{min-height:0}.formeo.formeo-editor .editing-row .formeo-column .formeo-field,.formeo.formeo-editor .editing-row .empty .formeo-field{display:none}.formeo.formeo-editor .editing-row .formeo-column .resize-x-handle,.formeo.formeo-editor .editing-row .empty .resize-x-handle{display:block}.formeo.formeo-editor .editing-row .formeo-column:after,.formeo.formeo-editor .editing-row .empty:after{color:#333!important;line-height:1em;opacity:1;font-size:1.1em;content:attr(data-col-width)!important;display:block;width:100%;text-align:center;position:absolute;left:50%;margin-top:0;top:50%;transform:translate(-50%,-50%)}.formeo.formeo-editor .editing-field-preview .column-actions{display:none}.formeo.formeo-editor .column-moving,.formeo.formeo-editor .column-moving .action-btn-wrap button,.formeo.formeo-editor .column-moving .column-tag{background-color:#ddfef5}.formeo.formeo-editor .column-moving .column-tag .f-i-component-corner{fill:#ddfef5}.formeo.formeo-editor .hovering-column .column-tag{display:flex}.formeo.formeo-editor .hovering-column .column-handle{display:none}.formeo.formeo-editor .hovering-column .column-action-btn-wrap{display:flex}.formeo.formeo-editor .hovering-column:first-child{border-top-left-radius:0}.formeo.formeo-editor .hovering-column:after{opacity:0}.formeo.formeo-editor .hovering-column,.formeo.formeo-editor .editing-column{box-shadow:0 0 0 1px #06d6a0}.formeo.formeo-editor .column-actions{padding:0;left:50%;z-index:1;transition:width .15s}.formeo.formeo-editor .column-actions .f-i-handle{transform:rotate(90deg)}.formeo.formeo-editor .formeo-field{min-height:24px;position:relative;list-style:none;margin:0;will-change:box-shadow}.formeo.formeo-editor .formeo-field:last-child{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.formeo.formeo-editor .formeo-field.first-field,.formeo.formeo-editor .formeo-field.first-field .field-actions{border-top-right-radius:4px}.formeo.formeo-editor .formeo-field .prev-label{min-height:24px;max-width:calc(100% - 24px);display:flex;align-items:flex-end;margin-bottom:4px}.formeo.formeo-editor .formeo-field [contenteditable]{padding:1px 2px;-webkit-user-select:text;user-select:text;display:inline-block;position:relative;min-width:24px}.formeo.formeo-editor .formeo-field [contenteditable]:after{content:"";width:100%;position:absolute;bottom:0;left:0;border-bottom:1px dashed #cccccc}.formeo.formeo-editor .formeo-field [contenteditable]:focus{border-radius:4px;border-bottom-color:transparent;outline:none;box-shadow:0 0 0 1px #66afe9 inset}.formeo.formeo-editor .formeo-field [contenteditable]:focus:after{display:none}.formeo.formeo-editor .formeo-field .form-check{margin-left:1.25em}.formeo.formeo-editor .formeo-field .form-check-input:only-child{position:absolute}.formeo.formeo-editor .formeo-field.field-type-hidden{border:1px dashed #cccccc}.formeo.formeo-editor .formeo-field.sortable-ghost{background-color:#b8d2e9;box-shadow:0 0 0 1px #26547c}.formeo.formeo-editor .formeo-field.sortable-ghost *{opacity:0}.formeo.formeo-editor .field-tag{right:-1px;left:auto;top:-24px;border-color:#26547c;background-color:#fff}.formeo.formeo-editor .field-tag .f-i-component-corner{fill:#fff;stroke:#26547c}.formeo.formeo-editor .editing-field,.formeo.formeo-editor .hovering-field{box-shadow:0 0 0 1px #26547c}.formeo.formeo-editor .editing-field .field-tag,.formeo.formeo-editor .hovering-field .field-tag,.formeo.formeo-editor .editing-field .field-action-btn-wrap,.formeo.formeo-editor .hovering-field .field-action-btn-wrap{display:flex}.formeo.formeo-editor .editing-field .field-handle,.formeo.formeo-editor .hovering-field .field-handle{display:none}.formeo.formeo-editor .field-actions{border-color:transparent;border-width:1px 1px 0 0;border-style:solid;right:0;text-align:right;border-bottom-left-radius:4px;border-bottom-right-radius:0}.formeo.formeo-editor .field-actions .action-btn-wrap{flex-direction:row-reverse}.formeo.formeo-editor .field-moving,.formeo.formeo-editor .field-moving .action-btn-wrap button,.formeo.formeo-editor .field-moving .field-tag{background-color:#b8d2e9}.formeo.formeo-editor .field-moving .field-tag .f-i-component-corner{fill:#b8d2e9}.formeo.formeo-editor .editing-field{z-index:1}.formeo.formeo-editor .editing-field-preview .field-actions{display:none}.formeo.formeo-editor .field-preview p{white-space:normal}.formeo.formeo-editor .field-edit{display:none;overflow:hidden;margin-top:16px;border-top:1px solid #cccccc}.formeo.formeo-editor .field-edit label{font-size:.825em}.formeo.formeo-editor .field-edit .panel-nav{margin-bottom:0;padding:0;overflow:hidden}.formeo.formeo-editor .field-edit .panel-nav button{border-bottom-left-radius:0;border-bottom-right-radius:0}.formeo.formeo-editor .field-edit.field-edit-options{list-style:decimal}.formeo.formeo-editor .field-edit .active-panel{background-color:#fff}.formeo.formeo-editor .field-edit .field-prop{display:flex}.formeo.formeo-editor .field-edit .prop-controls{flex-shrink:0;align-items:center;display:flex;margin-left:3px}.formeo.formeo-editor .field-edit .prop-controls button{position:relative}.formeo.formeo-editor .field-edit .prop-controls .svg-icon{width:12px;height:12px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.formeo.formeo-editor .field-edit .prop-control{width:24px;height:24px;right:0;bottom:0;position:absolute;padding:0}.formeo.formeo-editor .field-edit .prop-control:nth-of-type(1){right:0}.formeo.formeo-editor .field-edit .prop-control:nth-of-type(2){right:24px}.formeo.formeo-editor .field-edit .prop-control:nth-of-type(3){right:48px}.formeo.formeo-editor .field-edit .prop-control:nth-of-type(4){right:72px}.formeo.formeo-editor .field-edit .prop-control:first-child{right:0}.formeo.formeo-editor :not(.control-count-1) .field-edit .prop-control:last-child{border-radius:4px 0 0 4px;margin-right:-1px;display:none}.formeo.formeo-editor :not(.control-count-1) .field-edit .prop-control:first-child{border-radius:4px}.formeo.formeo-editor .field-edit .prop-control:hover:first-child{border-radius:0 4px 4px 0}.formeo.formeo-editor .field-edit .prop-control:hover:first-child:last-child{border-radius:4px}.formeo.formeo-editor .field-edit .prop-control:hover:last-child{display:inline-block}.formeo.formeo-editor .field-edit .prop-control:last-child:first-child{display:inline-block;border-radius:4px;margin-right:0}.formeo.formeo-editor .field-edit .prop-wrap{position:relative;margin-bottom:8px;list-style:none;margin-left:0}.formeo.formeo-editor .field-edit .field-edit-group{padding:8px 8px 0}.formeo.formeo-editor .field-edit [contenteditable]{display:flex;flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch}.formeo.formeo-editor .field-edit .prop-inputs,.formeo.formeo-editor .field-edit .prop-controls{transition:width .15s;will-change:width}.formeo.formeo-editor .field-edit .prop-inputs .f-addon,.formeo.formeo-editor .field-edit .prop-inputs input:not([type=checkbox]):not([type=radio]),.formeo.formeo-editor .field-edit .prop-inputs select,.formeo.formeo-editor .field-edit .prop-inputs textarea,.formeo.formeo-editor .field-edit .prop-inputs [contenteditable],.formeo.formeo-editor .field-edit .prop-controls .f-addon,.formeo.formeo-editor .field-edit .prop-controls input:not([type=checkbox]):not([type=radio]),.formeo.formeo-editor .field-edit .prop-controls select,.formeo.formeo-editor .field-edit .prop-controls textarea,.formeo.formeo-editor .field-edit .prop-controls [contenteditable]{font-size:.825em;flex:1 1 auto}.formeo.formeo-editor .field-edit .prop-inputs .f-addon:focus,.formeo.formeo-editor .field-edit .prop-inputs input:not([type=checkbox]):not([type=radio]):focus,.formeo.formeo-editor .field-edit .prop-inputs select:focus,.formeo.formeo-editor .field-edit .prop-inputs textarea:focus,.formeo.formeo-editor .field-edit .prop-inputs [contenteditable]:focus,.formeo.formeo-editor .field-edit .prop-controls .f-addon:focus,.formeo.formeo-editor .field-edit .prop-controls input:not([type=checkbox]):not([type=radio]):focus,.formeo.formeo-editor .field-edit .prop-controls select:focus,.formeo.formeo-editor .field-edit .prop-controls textarea:focus,.formeo.formeo-editor .field-edit .prop-controls [contenteditable]:focus{z-index:1}.formeo.formeo-editor .field-edit .prop-inputs [class^=condition-]+select,.formeo.formeo-editor .field-edit .prop-inputs select+[class^=condition-],.formeo.formeo-editor .field-edit .prop-controls [class^=condition-]+select,.formeo.formeo-editor .field-edit .prop-controls select+[class^=condition-]{margin-left:-1px}.formeo.formeo-editor .field-edit .control-count-2 .prop-controls:hover{width:48px}.formeo.formeo-editor .field-edit .control-count-2 .prop-controls:hover+.prop-inputs{width:calc(100% - 24px)}.formeo.formeo-editor .field-edit.panel-count-1 .panel-nav{border-bottom:1px solid #999999}.formeo.formeo-editor .field-edit.panel-count-1 .panel-nav button{display:none}.formeo.formeo-editor .field-edit.panel-count-1 .panel-labels{background-color:transparent}.formeo.formeo-editor .f-condition-row{display:flex;width:100%;margin-top:-1px;border:1px solid #cccccc}.formeo.formeo-editor .f-condition-row input,.formeo.formeo-editor .f-condition-row select,.formeo.formeo-editor .f-condition-row [contenteditable]{border-width:0;border-radius:0;width:inherit;box-shadow:0 0 0 1px #ccc}.formeo.formeo-editor .f-condition-row input:focus,.formeo.formeo-editor .f-condition-row select:focus,.formeo.formeo-editor .f-condition-row [contenteditable]:focus{box-shadow:0 0 0 1px #66afe9}.formeo.formeo-editor .f-condition-row:first-child input:last-child,.formeo.formeo-editor .f-condition-row:first-child select:last-child{border-top-right-radius:4px}.formeo.formeo-editor .f-condition-row:last-child input:last-child,.formeo.formeo-editor .f-condition-row:last-child select:last-child{border-bottom-right-radius:4px}.formeo.formeo-editor .f-condition-row:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.formeo.formeo-editor .f-condition-row:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.formeo.formeo-editor .f-condition-row .condition-logical{max-width:56px;text-transform:uppercase}.formeo.formeo-editor .f-condition-row div.condition-source,.formeo.formeo-editor .f-condition-row div.condition-target{position:relative;width:100%}.formeo.formeo-editor .f-condition-row [class^=condition-]{max-width:100%;transition:max-width 266ms;will-change:max-width}.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-comparison,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-target,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-assignment,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-value,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-targetProperty,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-comparison,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-target,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-assignment,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-value,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-targetProperty,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isVisible .condition-comparison,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isVisible .condition-assignment,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isVisible .condition-value,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isNotVisible .condition-comparison,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isNotVisible .condition-assignment,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isNotVisible .condition-value,.formeo.formeo-editor .f-condition-row.condition-target .condition-targetProperty,.formeo.formeo-editor .f-condition-row.condition-source .condition-sourceProperty{max-width:0%;padding:0;border:0 none;overflow:hidden}.formeo.formeo-editor .f-autocomplete-display-field+.f-autocomplete-list:focus{z-index:100}.formeo.formeo-editor [class$=-focused]{z-index:1}.formeo.formeo-editor [class$=-focused] .f-autocomplete-list{z-index:100}.formeo.formeo-editor .conditions-prop-inputs label.condition-label{display:inline-flex;flex:0 0 auto;box-shadow:0 0 0 1px #ccc;align-items:center;padding:4px;border-right:0;text-transform:uppercase;color:#999}.formeo.formeo-editor .conditions-prop-inputs label.condition-label.if-condition-label{border-top-left-radius:4px;border-bottom-left-radius:0;border-bottom-right-radius:0}.formeo.formeo-editor .conditions-prop-inputs label.condition-label.then-condition-label{border-bottom-left-radius:4px;border-top-left-radius:0;border-top-right-radius:0;border-top:0}.formeo.formeo-editor .field-edit-group{margin:0;padding:0;list-style:none}.formeo.formeo-editor .hidden-property{display:none}.formeo.formeo-editor .options-panel .prop-wrap{margin-bottom:8px}.formeo.formeo-editor .options-panel .input-group-addon{line-height:0}.formeo.formeo-editor .options-panel .prop-labels{padding:8px 34px 8px 8px}.formeo.formeo-editor .options-panel .prop-labels .input-group-addon{font-size:12px}.formeo.formeo-editor .options-panel .prop-labels label{font-size:12px;width:50%;position:relative;display:table-cell}.formeo.formeo-editor .options-panel .prop-label-selected,.formeo.formeo-editor .options-panel .prop-label-disabled{width:1%!important;white-space:nowrap;vertical-align:middle;border:0 none;background-color:transparent}.formeo.formeo-editor .panel-action-buttons{padding:0 8px 8px}.formeo.formeo-editor .panel-action-buttons:after{content:"";display:table;clear:both}.formeo.formeo-editor .panel-action-buttons [class^=add-]{float:right}.formeo.formeo-editor .prop-inputs{width:100%;align-items:center;vertical-align:bottom;display:flex;flex-direction:row;flex-grow:1}.formeo.formeo-editor .prop-inputs.conditions-prop-inputs{flex-direction:column}.formeo.formeo-editor .prop-inputs .f-field-group{width:100%;margin-bottom:0;display:inline-flex;align-items:center}.formeo.formeo-editor .prop-inputs .f-addon{display:flex;align-items:center;flex:0}.formeo.formeo-editor .prop-inputs .f-addon:first-child{margin-right:-1px}.formeo.formeo-editor .prop-inputs .f-addon:last-child{margin-left:-1px}.formeo.formeo-editor .prop-inputs label{padding-right:1em;margin-bottom:0}.formeo.formeo-editor .prop-inputs.attrs-prop-inputs .f-addon,.formeo.formeo-editor .prop-inputs.attrs-prop-inputs input:not([type=checkbox]):not([type=radio]),.formeo.formeo-editor .prop-inputs.attrs-prop-inputs select,.formeo.formeo-editor .prop-inputs.attrs-prop-inputs textarea,.formeo.formeo-editor .prop-inputs.attrs-prop-inputs [contenteditable]{flex:2}.formeo.formeo-editor .highlight-component{box-shadow:0 0 4px 2px #9954bb}.formeo.formeo-editor .formeo-stage{width:73%;box-sizing:border-box;transition:width .25s;flex:1 1 auto;position:relative;transition-property:background-color,border-color;transition-duration:.5s,333ms;border:0 dashed transparent;background-color:#fff0;overflow:visible;margin:0;padding:0;list-style:none}.formeo.formeo-editor .formeo-stage>.children{display:flex;flex-direction:column;justify-content:flex-start;gap:16px}.formeo.formeo-editor .formeo-stage.empty{border:3px dashed #cccccc;background-color:#ffffff40}.formeo.formeo-editor .formeo-stage.removing-all-fields .formeo-row{transition:margin-top .25s ease-in}.formeo.formeo-editor .formeo-stage>.formeo-field{background-color:#fff}@media (max-width: 481px){.formeo.formeo-editor .formeo-stage{width:calc(100% - 50px)}}.formeo.formeo-editor .formeo-stage:has(.editing-field) .column-actions{display:none}.formeo.formeo-editor .formeo-stage:has(.editing-field) .row-actions{display:none}.formeo.formeo-editor .editing-stage .formeo-settings{display:block}.formeo.formeo-editor .editing-stage .formeo-stage{display:none}.formeo.formeo-editor .f-field-group{margin-bottom:0}.formeo.formeo-editor [class$=empty][class*=editing-]:after{opacity:0}.formeo.formeo-editor [class$=empty]:after{opacity:1;font-size:24px;position:absolute;top:50%;left:50%;color:#999;transition:opacity .2s ease-in-out;will-change:opacity;text-align:center;transform:translate(-50%,-50%);content:attr(data-hover-tag)}.formeo.formeo-editor .formeo-settings{display:none}.formeo.formeo-editor [dir=rtl] .f-btn-group{display:inline-flex;vertical-align:middle}.formeo.formeo-editor [dir=rtl] .f-btn-group>button{flex:0 1 auto}.formeo.formeo-editor [dir=rtl] .f-btn-group>button:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.formeo.formeo-editor [dir=rtl] .f-btn-group>button:last-child:not(:first-child):not(.dropdown-toggle){border-radius:4px 0 0 4px}.formeo.formeo-editor [dir=rtl] .f-btn-group>button:first-child{margin-left:0}.formeo.formeo-editor [dir=rtl] .f-btn-group>button:first-child:not(:last-child):not(.dropdown-toggle){border-radius:0 4px 4px 0}.formeo.formeo-editor [dir=rtl] .f-btn-group button+button,.formeo.formeo-editor [dir=rtl] .f-btn-group button+.f-btn-group,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group+button,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group+.f-btn-group,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group-vertical button+button,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group-vertical button+.f-btn-group,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group-vertical .f-btn-group+button,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group-vertical .f-btn-group+.f-btn-group{margin-right:-1px}.formeo.formeo-editor [dir=rtl] .formeo-controls,.formeo.formeo-editor [dir=rtl] .formeo-controls .form-actions{float:left}.formeo.formeo-editor [dir=rtl] .formeo-stage-wrap{float:right}.formeo.formeo-editor [dir=rtl] .formeo-stage-wrap .formeo-stage{padding-left:4px;padding-right:23px}.formeo.formeo-editor [dir=rtl] .formeo-row:before{border-bottom-left-radius:8px;border-bottom-right-radius:0;right:0;left:auto}.formeo.formeo-editor [dir=rtl] .formeo-row:first-child{border-top-left-radius:8px;border-top-right-radius:0}.formeo.formeo-editor [dir=rtl] .formeo-row:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.formeo.formeo-editor [dir=rtl] .formeo-row.hovering-row:first-child{border-top-left-radius:0}.formeo.formeo-editor [dir=rtl] .formeo-row.hovering-row:before{border-left-width:1px}.formeo.formeo-editor [dir=rtl] .formeo-row.empty:after{left:0;right:auto}.formeo.formeo-render .formeo-row,.formeo.formeo-render .formeo-column,.formeo.formeo-render .formeo-field{position:relative}.formeo.formeo-render .f-input-group-wrap>fieldset{position:relative}.formeo.formeo-render .f-input-group-wrap>fieldset .remove-input-group{top:8px}.formeo.formeo-render .will-remove{background-color:#d9534f40;box-shadow:0 0 1px #d9534f inset}.formeo.formeo-render .formeo-row{margin-bottom:1em;flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch;display:flex;border-radius:8px;transition:background-color .2s,padding .2s;padding:4px 0}.formeo.formeo-render .formeo-row.will-remove{padding:4px}.formeo.formeo-render .formeo-row:last-of-type{margin-bottom:0}.formeo.formeo-render .formeo-row-wrap{margin-bottom:1em}.formeo.formeo-render .formeo-row-wrap:last-child{margin-bottom:0}.formeo.formeo-render .f-input-group-wrap:after{content:"";display:table;clear:both}.formeo.formeo-render .f-input-group-wrap .formeo-row:first-of-type .remove-input-group{display:none}.formeo.formeo-render .f-input-group{position:relative}.formeo.formeo-render .f-input-group:first-child .remove-input-group{display:none}.formeo.formeo-render .add-input-group{float:right;margin-top:10px}.formeo.formeo-render .remove-input-group{position:absolute;right:0;top:0;width:16px;height:16px;border:0 none;background:transparent;outline:0 none;line-height:0;padding:4px}.formeo.formeo-render .remove-input-group:hover .svg-icon{fill:#d9534f}.formeo.formeo-render .remove-input-group .svg-icon{pointer-events:none}.formeo.formeo-render .form-check-input:only-child{position:absolute}.formeo.formeo-render .svg-icon{max-width:100%;max-height:100%}.formeo.formeo-render .formeo-column{padding:0 4px;float:left;max-width:none;flex-direction:column}.formeo.formeo-render .formeo-column:first-of-type{padding-left:0}.formeo.formeo-render .formeo-column:last-of-type{padding-right:0}.formeo-controls{width:26%;overflow:hidden}.formeo-controls.formeo-sticky{position:sticky;top:0;align-self:flex-start}.formeo-controls.pull-left .form-actions{float:left}.formeo-controls .filtered-term{background-color:#fff;text-align:center;border-radius:4px 4px 0 0;border:1px solid #cccccc;border-bottom:0 none;width:calc(100% - 2px)}.formeo-controls .tabbed-panels nav{padding:0}.formeo-controls nav{position:relative;padding:0 24px;overflow:hidden}.formeo-controls nav h5{font-size:13px;line-height:22px}.formeo-controls nav button{position:absolute;width:24px;color:#000;height:calc(100% + 1px);padding:0;line-height:0;margin:0;border-color:#ccc}.formeo-controls nav button.next-group{right:0;top:0;border-radius:0 8px 0 0}.formeo-controls nav button.prev-group{border-top-left-radius:8px;border-bottom-left-radius:0;left:0}.formeo-controls .formeo-panels-wrap{font-size:.85em;line-height:1.8em}.formeo-controls .panel-labels{border-top:1px solid #cccccc}.formeo-controls .panel-count-1{border-bottom-left-radius:0}.formeo-controls .panel-count-1 .panel-nav{display:none}.formeo-controls .panel-count-1 .control-group li:first-child{border-radius:8px 8px 0 0}.formeo-controls ul{margin:0;padding:0;list-style:none}.formeo-controls .control-group{vertical-align:top;display:inline-block;width:100%;border-top:1px solid #cccccc}.formeo-controls .control-group>li:first-child{border-top-right-radius:0}.formeo-controls .control-group>li:last-child{border-radius:0 0 8px 8px}.formeo-controls.filtered .panel-nav{display:none}.formeo-controls.filtered .control-group{display:block}.formeo-controls.filtered .control-group>li{border-radius:0}.formeo-controls.filtered .control-group:last-child>li:last-child{border-radius:0 0 0 4px}.formeo-controls .control-groups{white-space:nowrap}.formeo-controls .control-group-labels{height:100%;background:#fff;overflow:hidden}.formeo-controls .control-group-labels div{white-space:nowrap}.formeo-controls .control-group-labels h4{display:inline-block;width:100%}.formeo-controls .form-actions{float:right;margin-top:4px}.formeo-controls .form-actions .svg-icon{fill:#666;display:none}.formeo-controls .form-actions .svg-icon:hover{fill:#000}.formeo-controls .form-actions .save-form:hover,.formeo-controls .form-actions .clear-form:hover{color:#fff}.formeo-controls .form-actions .save-form:hover{background-color:#325d88}.formeo-controls .form-actions .clear-form:hover{background-color:#d9534f}@media (max-width: 481px){.formeo-controls{width:45px}.formeo-controls .control-group{text-indent:-9999px}.formeo-controls .form-actions{display:inline-block;width:100%;position:relative;vertical-align:middle;float:none;margin-top:10px}.formeo-controls .form-actions>button+button{margin-top:-1px;margin-left:0}.formeo-controls .form-actions>button{max-width:100%;padding:10px;border-radius:0;line-height:0;width:100%;float:none;position:relative;display:block}.formeo-controls .form-actions>button:not(:first-child):not(:last-child){border-radius:0}.formeo-controls .form-actions>button:first-child:not(:last-child){border-radius:4px 4px 0 0}.formeo-controls .form-actions>button:last-child:not(:first-child){border-radius:0 0 4px 4px}.formeo-controls .form-actions .control-icon{display:inline-block;margin-right:10px}}.formeo-controls .field-control{cursor:move;list-style:none;margin:-1px 0 0;border:1px solid #cccccc;text-align:left;background:#fff;-webkit-user-select:none;user-select:none;overflow:hidden}.formeo-controls .field-control.control-moving{border-radius:8px;animation:DRAG_GHOST .5s forwards}.formeo-controls .field-control:before{margin-right:8px;font-size:16px}.formeo-controls .field-control:hover{background-color:#f2f2f2}.formeo-controls .field-control button{box-sizing:border-box;font-size:1em;line-height:1.8em;display:flex;height:100%;width:100%;background:transparent;border:0 none;text-align:left;padding:8px;border-radius:0}.formeo-controls .field-control button:focus{outline:0 none;background-color:#f2f2f2;box-shadow:0 0 0 1px #66afe9 inset;border-radius:0!important}.formeo-controls .field-control button:active{transform:none}.formeo-controls .field-control button:hover{filter:none}.formeo-controls .field-control .control-icon{margin-right:8px;text-align:center;width:24px;height:24px;display:flex;align-items:center;justify-content:center}[dir=rtl] .formeo-controls .field-control button{text-align:right!important}[dir=rtl] .formeo-controls .field-control svg{float:right!important;margin:0 0 0 8px!important}.formeo-controls .field-control .control-icon{pointer-events:none}.formeo-controls .field-control .control-icon .f-i-hash{padding:2px}.field-control{cursor:move;list-style:none;margin:-1px 0 0;border:1px solid #cccccc;text-align:left;background:#fff;-webkit-user-select:none;user-select:none;overflow:hidden}.field-control.control-moving{border-radius:8px;animation:DRAG_GHOST .5s forwards}.field-control:before{margin-right:8px;font-size:16px}.field-control:hover{background-color:#f2f2f2}.field-control button{box-sizing:border-box;font-size:1em;line-height:1.8em;display:flex;height:100%;width:100%;background:transparent;border:0 none;text-align:left;padding:8px;border-radius:0}.field-control button:focus{outline:0 none;background-color:#f2f2f2;box-shadow:0 0 0 1px #66afe9 inset;border-radius:0!important}.field-control button:active{transform:none}.field-control button:hover{filter:none}.field-control .control-icon{margin-right:8px;text-align:center;width:24px;height:24px;display:flex;align-items:center;justify-content:center}[dir=rtl] .field-control button{text-align:right!important}[dir=rtl] .field-control svg{float:right!important;margin:0 0 0 8px!important}.field-control .svg-icon{pointer-events:none}
8
+ .svg-icon{display:inline-block;width:24px;height:24px;pointer-events:none}.f-i-remove:hover{fill:#d9534f}button[class*=-move]:hover{background-color:#9954bb!important}button[class*=-move]:hover .svg-icon{fill:#fff}button[class*=-remove]:hover{background-color:#d9534f!important}button[class*=-remove]:hover .svg-icon{fill:#fff}button[class*=-clone]:hover{background-color:#93c54b!important}button[class*=-clone]:hover .svg-icon{fill:#fff}.item-edit-toggle:hover{background-color:#325d88!important}.item-edit-toggle:hover .svg-icon{fill:#fff}.f-autocomplete-list{background-color:#fff;display:none;list-style:none;padding:0;position:absolute;z-index:20;max-height:200px;overflow-y:auto;width:100%;margin:0 -1px;border:1px solid #999999;border-width:1px 1px 0;box-shadow:0 1px 4px #00000080}.f-autocomplete-list li{border:1px solid #999999;display:none;cursor:default;padding:4px;margin:-1px 0 0;border-width:1px 0;transition:background-color 133ms ease-in-out;will-change:background-color;font-size:.85em}.f-autocomplete-list li.active-option{background-color:#e1cceb}.f-autocomplete-list li:hover{background-color:#bd91d3}.f-autocomplete-list .component-type{color:#666;font-style:italic;font-size:.75em}.formeo-panels-wrap h5{margin:0;padding:.55em 0;color:#666;font-weight:400;display:inline-block;width:100%}.formeo-panels-wrap nav{position:relative;padding:0;overflow:hidden}.formeo-panels-wrap nav button{position:absolute;width:24px;color:#000;height:100%;padding:0;line-height:0;z-index:1}.formeo-panels-wrap nav button:focus{outline:none;border:1px solid rgb(102,175,233);box-shadow:none}.formeo-panels-wrap nav button .svg-icon{width:20px;height:20px}.formeo-panels-wrap nav button.next-group{right:0;top:0;border-top-left-radius:0;border-bottom-left-radius:0}.formeo-panels-wrap nav button.prev-group{left:0;top:0;border-top-right-radius:0;border-bottom-right-radius:0}.formeo-panels-wrap ul{margin:0;padding:0;list-style:none}.formeo-panels-wrap .f-panel{vertical-align:top;display:inline-block;width:100%;flex-direction:column;flex:1 0 100%}.formeo-panels-wrap .f-panel>li:last-child{border-radius:0 0 4px 4px}.formeo-panels-wrap .panels{white-space:nowrap;transition-property:height;transition-duration:.15s;transition-timing-function:ease-in-out;will-change:transform;flex-direction:row}.formeo-panels-wrap .panel-labels{height:100%;background:#fff;overflow:hidden;text-align:center;white-space:nowrap}.tabbed-panels .panel-nav{height:auto}.tabbed-panels .panel-nav button{display:none}.tabbed-panels .f-panel{background-color:#fff}.tabbed-panels .panel-labels div{flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch;display:flex}.tabbed-panels .panel-labels h5{flex-direction:column;flex:1;cursor:pointer;background-color:#ccc;box-shadow:0 -1px 8px #999 inset}.tabbed-panels .panel-labels h5.active-tab{color:#000;box-shadow:none;background-color:#fff}#formeo-sprite{display:none!important;visibility:hidden!important}.formeo *{box-sizing:inherit;font-family:inherit}.formeo .pill-buttons>button{border-radius:50px}.formeo hr{margin-top:1rem;margin-bottom:1rem;border:0;border-top:1px solid #cccccc}.formeo .f-field-group{flex-wrap:wrap;margin-bottom:12px}.formeo .f-field-group:last-child{margin-bottom:0}.formeo .f-field-group label+.badge{margin-left:8px}.formeo .f-field-group>label{display:inline-block;margin-bottom:4px}.formeo .f-field-group button{margin-right:4px}.formeo select{font-size:100%;font-family:inherit;height:2.1em;line-height:1.5;margin:0;border:1px solid #cccccc;border-radius:4px;background-color:#fff;width:100%;padding:.3em .6em;box-sizing:border-box}.formeo select:focus{border:1px solid rgb(102,175,233);outline:none}.formeo input{font-size:100%;font-family:inherit;height:2.1em;line-height:1.5;margin:0;border:1px solid #cccccc;border-radius:4px;background-color:#fff;width:100%;padding:.3em .6em;box-sizing:border-box}.formeo input:focus{border:1px solid rgb(102,175,233);outline:none}.formeo input[type=checkbox],.formeo input[type=radio]{width:auto;height:auto;margin-right:4px}.formeo input[type=date]{max-width:280px;display:block}.formeo textarea{font-size:100%;font-family:inherit;height:2.1em;line-height:1.5;margin:0;border:1px solid #cccccc;border-radius:4px;background-color:#fff;width:100%;padding:.3em .6em;box-sizing:border-box;height:auto}.formeo textarea:focus{border:1px solid rgb(102,175,233);outline:none}.formeo button{border-radius:4px;border:1px solid #666666;color:#333;background-color:#fff;padding:4px 8px;line-height:1.5em}.formeo button:active{transform:scale(.97)}.formeo button:hover{filter:brightness(.9)}.formeo button.primary,.formeo button.success,.formeo button.warning,.formeo button.error{color:#fff}.formeo button.primary{background-color:#325d88;border-color:#244463}.formeo button.success{background-color:#93c54b;border-color:#79a736}.formeo button.warning{background-color:#f47c3c;border-color:#ef5c0e}.formeo button.error{background-color:#d9534f;border-color:#c9302c}.formeo button[disabled]{background-color:#ccc;color:#fff}.formeo button:focus{border:1px solid rgb(102,175,233)}.formeo button:hover,.formeo button:focus{outline:0 none}.formeo .f-addon{font-size:100%;font-family:inherit;height:2.1em;line-height:1.5;margin:0;border:1px solid #cccccc;border-radius:4px;background-color:#fff;width:100%;padding:.3em .6em;box-sizing:border-box;width:auto}.formeo .f-addon:focus{border:1px solid rgb(102,175,233);outline:none}.formeo .f-addon label{margin:1px 0 0 3px}.formeo .f-addon:last-child{margin-left:-1px}.formeo .f-btn-group{display:inline-flex;vertical-align:middle}.formeo .f-btn-group>button{flex:0 1 auto}.formeo .f-btn-group>button:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.formeo .f-btn-group>button:last-child:not(:first-child):not(.dropdown-toggle){border-bottom-left-radius:0;border-top-left-radius:0}.formeo .f-btn-group>button:first-child{margin-left:0}.formeo .f-btn-group>button:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.formeo .f-btn-group button+button,.formeo .f-btn-group button+.f-btn-group,.formeo .f-btn-group .f-btn-group+button,.formeo .f-btn-group .f-btn-group+.f-btn-group,.formeo .f-btn-group .f-btn-group-vertical button+button,.formeo .f-btn-group .f-btn-group-vertical button+.f-btn-group,.formeo .f-btn-group .f-btn-group-vertical .f-btn-group+button,.formeo .f-btn-group .f-btn-group-vertical .f-btn-group+.f-btn-group{margin-left:-1px}.formeo .f-input-group{display:flex;flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch;display:inline-flex;vertical-align:bottom}.formeo .f-input-group input+input,.formeo .f-input-group input+select,.formeo .f-input-group select+select,.formeo .f-input-group select+input{margin-left:-1px}.formeo .f-input-group select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPCFET0NUWVBFIHN2ZyBQVUJMSUMgIi0vL1czQy8vRFREIFNWRyAxLjEvL0VOIiAiaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkIj4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHdpZHRoPSIyNCIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDI0IDMyIj4KPHBhdGggZmlsbD0iIzQ0NCIgZD0iTTAgMTJsMTEuOTkyIDExLjk5MiAxMS45OTItMTEuOTkyaC0yMy45ODR6Ij48L3BhdGg+Cjwvc3ZnPgo=);background-position:right 10px top 2px;background-repeat:no-repeat;background-size:16px}.formeo .f-input-group select::-ms-expand{display:none}.formeo .f-input-group .f-addon,.formeo .f-input-group input,.formeo .f-input-group select{flex:0 1 auto;border-radius:0}.formeo .f-input-group .f-addon:last-child,.formeo .f-input-group input:last-child,.formeo .f-input-group select:last-child{border-right-width:1px;border-radius:0 4px 4px 0}.formeo .f-input-group .f-addon:first-child,.formeo .f-input-group input:first-child,.formeo .f-input-group select:first-child{border-radius:4px 0 0 4px;border-left-width:1px}.formeo .f-input-group .f-addon:first-child:last-child,.formeo .f-input-group input:first-child:last-child,.formeo .f-input-group select:first-child:last-child{border-radius:4px}.formeo .f-input-group .f-addon:focus+input,.formeo .f-input-group .f-addon:focus+select,.formeo .f-input-group input:focus+input,.formeo .f-input-group input:focus+select,.formeo .f-input-group select:focus+input,.formeo .f-input-group select:focus+select{border-left:1px solid rgb(102,175,233)}.formeo .text-primary{color:#325d88}.formeo .text-success{color:#93c54b}.formeo .text-warning{color:#f47c3c}.formeo .text-error{color:#d9534f}.formeo.formeo-editor{display:flex;flex-direction:row;text-align:left;gap:16px}@keyframes PLACEHOLDER{0%{height:1px}to{height:15px}}@keyframes DRAG_GHOST{0%{box-shadow:0 0 #999}to{box-shadow:0 0 30px #999}}@keyframes EDIT_PULSE{0%,to{border-color:#66afe9}50%{border-color:#bfdef6}}@keyframes HIDE_CONDITION_FIELD{0%{display:none}to{display:none}}@keyframes COMPONENT_HIGHLIGHT_PULSE{0%{box-shadow:0 0 1px 8px #9954bb}to{box-shadow:0 0 #9954bb}}@keyframes SLIDE_UP{0%{transform:translateY(100%);clip-path:inset(0 0 100% -20%)}to{transform:translateY(0);clip-path:inset(0 0 0 -20%)}}.formeo.formeo-editor .component-tag{display:none;height:24px;z-index:200;flex-direction:row;gap:4px;align-items:center;position:absolute;font-size:.8em;padding:0 8px;left:50%;top:-24px;border-top-left-radius:8px;border-top-right-radius:8px;background-color:#fff;border-color:#ccc;border-style:solid;border-width:1px 1px 0 1px}.formeo.formeo-editor .component-tag [class*=-handle-]{width:12px;height:12px}.formeo.formeo-editor .component-tag .f-i-component-corner{position:absolute;width:8px;height:8px}.formeo.formeo-editor .component-tag .f-i-component-corner.bottom-right{bottom:0;right:-8px}.formeo.formeo-editor .component-tag .f-i-component-corner.bottom-left{bottom:0;left:-8px;transform:scaleX(-1)}.formeo.formeo-editor .children{margin:0;padding:0;list-style:none;height:100%}.formeo.formeo-editor .group-actions{display:flex;transition:opacity .3s ease-in-out allow-discrete;position:absolute;top:0;line-height:0;z-index:2;align-items:center;justify-content:center;flex-direction:row;border-radius:8px}.formeo.formeo-editor .group-actions .action-btn-wrap{display:none;align-items:center;justify-content:center;border-top-right-radius:8px;border-bottom-left-radius:8px;border-bottom-right-radius:8px;transition:opacity 1s ease-in-out allow-discrete}.formeo.formeo-editor .group-actions .action-btn-wrap .component-handle{opacity:.65}.formeo.formeo-editor .group-actions .action-btn-wrap button{background-color:#fff}.formeo.formeo-editor .group-actions button{background-color:transparent;width:24px;height:24px;padding:6px;border:0 none;line-height:0}.formeo.formeo-editor .group-actions button:focus{border:0 none;outline:0 none;box-shadow:none}.formeo.formeo-editor .group-actions .svg-icon{width:12px;height:12px}.formeo.formeo-editor .last-field .group-actions button:last-child{border-radius:0}.formeo.formeo-editor .column-editing-field .column-actions{display:none}.formeo.formeo-editor .group-config{display:none;padding:.5rem}.formeo.formeo-editor .editing-row .column-actions{display:none}.formeo.formeo-editor .hovering>.children,.formeo.formeo-editor .hovering>.field-preview,.formeo.formeo-editor .hovering>.prev-label{opacity:.65}.formeo.formeo-editor .hovering .group-actions .f-i-handle{display:none}.formeo.formeo-editor .formeo-row{transition:background-color 125ms ease-in-out;position:relative;clear:both;background-color:#fff;box-shadow:0 0 0 1px #ccc;padding:16px}.formeo.formeo-editor .formeo-row>.children{display:flex;flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch;gap:16px;min-height:32px}.formeo.formeo-editor .formeo-row:after{clear:both}.formeo.formeo-editor .formeo-row.control-ghost{padding:10px}.formeo.formeo-editor .formeo-row:first-child{border-top-right-radius:8px}.formeo.formeo-editor .formeo-row:first-child:not(.editing-row,.hovering-row){border-top-left-radius:8px}.formeo.formeo-editor .formeo-row:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.formeo.formeo-editor .formeo-row:only-child{border-radius:8px}.formeo.formeo-editor .formeo-row.resizing-columns .formeo-column{transition:none}.formeo.formeo-editor .formeo-row.empty:after{left:0;transform:translate(8px,-50%)}.formeo.formeo-editor .formeo-row .layout-row-control{display:none}.formeo.formeo-editor .formeo-row .row-tag{left:-1px;border-color:#ef476f}.formeo.formeo-editor .formeo-row .row-tag .f-i-component-corner{fill:#fff;stroke:#ef476f}.formeo.formeo-editor .formeo-row:has(.hovering-column) .row-actions,.formeo.formeo-editor .formeo-row:has(.hovering-column) .field-actions{display:none}.formeo.formeo-editor .formeo-row.sortable-ghost{background-color:#fef0f3;box-shadow:0 0 0 1px #ef476f}.formeo.formeo-editor .formeo-row.sortable-ghost *{opacity:0}.formeo.formeo-editor .row-moving{background-color:#fef0f3!important}.formeo.formeo-editor .row-moving .action-btn-wrap button,.formeo.formeo-editor .row-moving .row-tag{background-color:#fef0f3}.formeo.formeo-editor .row-moving .row-tag .f-i-component-corner{fill:#fef0f3}.formeo.formeo-editor .row-actions{left:0}.formeo.formeo-editor .hovering-row .column-actions,.formeo.formeo-editor .hovering-row .field-actions{display:none}.formeo.formeo-editor .hovering-row:first-child{border-top-left-radius:0}.formeo.formeo-editor .hovering-row.editing-row:before{border-right-width:0}.formeo.formeo-editor .editing-row,.formeo.formeo-editor .editing-row .row-edit{display:block}.formeo.formeo-editor .editing-row.hovering-row .formeo-column{opacity:1}.formeo.formeo-editor .hovering-row,.formeo.formeo-editor .editing-row{box-shadow:0 0 0 1px #ef476f}.formeo.formeo-editor .hovering-row .row-handle,.formeo.formeo-editor .editing-row .row-handle{display:none}.formeo.formeo-editor .hovering-row .row-tag,.formeo.formeo-editor .editing-row .row-tag,.formeo.formeo-editor .hovering-row .row-action-btn-wrap,.formeo.formeo-editor .editing-row .row-action-btn-wrap{display:flex}.formeo.formeo-editor .hovering-row .row-action-btn-wrap button:last-child,.formeo.formeo-editor .editing-row .row-action-btn-wrap button:last-child{border-bottom-right-radius:8px}.formeo.formeo-editor .row-edit{padding-top:2rem}.formeo.formeo-editor .input-group-addon label{margin-bottom:0}.formeo.formeo-editor .formeo-column{margin:0;padding:0;list-style:none;transition:width 266ms;position:relative;flex-direction:column;will-change:width;max-width:100%}.formeo.formeo-editor .formeo-column>.children{display:flex;flex-direction:column;justify-content:flex-start;gap:16px}.formeo.formeo-editor .formeo-column .column-tag{border-color:#06d6a0}.formeo.formeo-editor .formeo-column .column-tag .f-i-component-corner{fill:#fff;stroke:#06d6a0}.formeo.formeo-editor .formeo-column .column-tag,.formeo.formeo-editor .formeo-column .column-actions{transform:translate(-50%)}.formeo.formeo-editor .formeo-column[class*=col-]{padding:0}.formeo.formeo-editor .formeo-column:first-child{border-bottom-left-radius:8px}.formeo.formeo-editor .formeo-column:last-child{border-bottom-right-radius:8px}.formeo.formeo-editor .formeo-column:last-child .resize-x-handle{display:none!important}.formeo.formeo-editor .formeo-column:only-child{border-bottom-right-radius:8px;border-bottom-left-radius:8px}.formeo.formeo-editor .formeo-column:only-child .resize-x-handle{display:none!important}.formeo.formeo-editor .formeo-column .resize-x-handle{display:none;position:absolute;right:-16px;top:0;bottom:0;width:16px;z-index:2;cursor:ew-resize}.formeo.formeo-editor .formeo-column .resize-x-handle:before{width:0;right:6px;border:1px dashed rgb(47.3227272727,249.1772727273,196.7727272727);border-width:0 2px;display:block;top:0;position:absolute;height:100%;content:""}.formeo.formeo-editor .formeo-column .resize-x-handle svg{fill:#2ff9c5;position:absolute;right:1px;width:14px}.formeo.formeo-editor .formeo-column .resize-x-handle svg.f-i-triangle-down{top:-14px}.formeo.formeo-editor .formeo-column .resize-x-handle svg.f-i-triangle-up{bottom:-14px}.formeo.formeo-editor .formeo-column .resize-x-handle:hover:before{border-color:#06d6a0}.formeo.formeo-editor .formeo-column .resize-x-handle:hover svg{fill:#06d6a0}.formeo.formeo-editor .formeo-column.editing-column{overflow:hidden}.formeo.formeo-editor .formeo-column.editing-column .column-edit{display:block}.formeo.formeo-editor .formeo-column:has(.hovering-field) .column-actions{display:none}.formeo.formeo-editor .formeo-column.sortable-ghost{background-color:#ddfef5;box-shadow:0 0 0 1px #06d6a0}.formeo.formeo-editor .formeo-column.sortable-ghost *{opacity:0}.formeo.formeo-editor .editing-row .formeo-column,.formeo.formeo-editor .editing-row .empty{border-radius:8px;height:60px;background-color:#e6e6e6}.formeo.formeo-editor .editing-row .formeo-column.empty,.formeo.formeo-editor .editing-row .empty.empty{min-height:0}.formeo.formeo-editor .editing-row .formeo-column .formeo-field,.formeo.formeo-editor .editing-row .empty .formeo-field{display:none}.formeo.formeo-editor .editing-row .formeo-column .resize-x-handle,.formeo.formeo-editor .editing-row .empty .resize-x-handle{display:block}.formeo.formeo-editor .editing-row .formeo-column:after,.formeo.formeo-editor .editing-row .empty:after{color:#333!important;line-height:1em;opacity:1;font-size:1.1em;content:attr(data-col-width)!important;display:block;width:100%;text-align:center;position:absolute;left:50%;margin-top:0;top:50%;transform:translate(-50%,-50%)}.formeo.formeo-editor .editing-field-preview .column-actions{display:none}.formeo.formeo-editor .column-moving,.formeo.formeo-editor .column-moving .action-btn-wrap button,.formeo.formeo-editor .column-moving .column-tag{background-color:#ddfef5}.formeo.formeo-editor .column-moving .column-tag .f-i-component-corner{fill:#ddfef5}.formeo.formeo-editor .hovering-column .column-tag{display:flex}.formeo.formeo-editor .hovering-column .column-handle{display:none}.formeo.formeo-editor .hovering-column .column-action-btn-wrap{display:flex}.formeo.formeo-editor .hovering-column:first-child{border-top-left-radius:0}.formeo.formeo-editor .hovering-column:after{opacity:0}.formeo.formeo-editor .hovering-column,.formeo.formeo-editor .editing-column{box-shadow:0 0 0 1px #06d6a0}.formeo.formeo-editor .column-actions{padding:0;left:50%;z-index:1;transition:width .15s}.formeo.formeo-editor .column-actions .f-i-handle{transform:rotate(90deg)}.formeo.formeo-editor .formeo-field{min-height:24px;position:relative;list-style:none;margin:0;will-change:box-shadow}.formeo.formeo-editor .formeo-field:last-child{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.formeo.formeo-editor .formeo-field.first-field,.formeo.formeo-editor .formeo-field.first-field .field-actions{border-top-right-radius:4px}.formeo.formeo-editor .formeo-field .prev-label{min-height:24px;max-width:calc(100% - 24px);display:flex;align-items:flex-end;margin-bottom:4px}.formeo.formeo-editor .formeo-field [contenteditable]{padding:1px 2px;-webkit-user-select:text;user-select:text;display:inline-block;position:relative;min-width:24px}.formeo.formeo-editor .formeo-field [contenteditable]:after{content:"";width:100%;position:absolute;bottom:0;left:0;border-bottom:1px dashed #cccccc}.formeo.formeo-editor .formeo-field [contenteditable]:focus{border-radius:4px;border-bottom-color:transparent;outline:none;box-shadow:0 0 0 1px #66afe9 inset}.formeo.formeo-editor .formeo-field [contenteditable]:focus:after{display:none}.formeo.formeo-editor .formeo-field .form-check{margin-left:1.25em}.formeo.formeo-editor .formeo-field .form-check-input:only-child{position:absolute}.formeo.formeo-editor .formeo-field.field-type-hidden{border:1px dashed #cccccc}.formeo.formeo-editor .formeo-field.sortable-ghost{background-color:#b8d2e9;box-shadow:0 0 0 1px #26547c}.formeo.formeo-editor .formeo-field.sortable-ghost *{opacity:0}.formeo.formeo-editor .field-tag{right:-1px;left:auto;top:-24px;border-color:#26547c;background-color:#fff}.formeo.formeo-editor .field-tag .f-i-component-corner{fill:#fff;stroke:#26547c}.formeo.formeo-editor .editing-field,.formeo.formeo-editor .hovering-field{box-shadow:0 0 0 1px #26547c}.formeo.formeo-editor .editing-field .field-tag,.formeo.formeo-editor .hovering-field .field-tag,.formeo.formeo-editor .editing-field .field-action-btn-wrap,.formeo.formeo-editor .hovering-field .field-action-btn-wrap{display:flex}.formeo.formeo-editor .editing-field .field-handle,.formeo.formeo-editor .hovering-field .field-handle{display:none}.formeo.formeo-editor .field-actions{border-color:transparent;border-width:1px 1px 0 0;border-style:solid;right:0;text-align:right;border-bottom-left-radius:4px;border-bottom-right-radius:0}.formeo.formeo-editor .field-actions .action-btn-wrap{flex-direction:row-reverse}.formeo.formeo-editor .field-moving,.formeo.formeo-editor .field-moving .action-btn-wrap button,.formeo.formeo-editor .field-moving .field-tag{background-color:#b8d2e9}.formeo.formeo-editor .field-moving .field-tag .f-i-component-corner{fill:#b8d2e9}.formeo.formeo-editor .editing-field{z-index:1}.formeo.formeo-editor .editing-field-preview .field-actions{display:none}.formeo.formeo-editor .field-preview p{white-space:normal}.formeo.formeo-editor .field-edit{display:none;overflow:hidden;margin-top:16px;border-top:1px solid #cccccc}.formeo.formeo-editor .field-edit label{font-size:.825em}.formeo.formeo-editor .field-edit .panel-nav{margin-bottom:0;padding:0;overflow:hidden}.formeo.formeo-editor .field-edit .panel-nav button{border-bottom-left-radius:0;border-bottom-right-radius:0}.formeo.formeo-editor .field-edit.field-edit-options{list-style:decimal}.formeo.formeo-editor .field-edit .active-panel{background-color:#fff}.formeo.formeo-editor .field-edit .field-prop{display:flex}.formeo.formeo-editor .field-edit .prop-controls{flex-shrink:0;align-items:center;display:flex;margin-left:3px}.formeo.formeo-editor .field-edit .prop-controls button{position:relative}.formeo.formeo-editor .field-edit .prop-controls .svg-icon{width:12px;height:12px;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.formeo.formeo-editor .field-edit .prop-control{width:24px;height:24px;right:0;bottom:0;position:absolute;padding:0}.formeo.formeo-editor .field-edit .prop-control:nth-of-type(1){right:0}.formeo.formeo-editor .field-edit .prop-control:nth-of-type(2){right:24px}.formeo.formeo-editor .field-edit .prop-control:nth-of-type(3){right:48px}.formeo.formeo-editor .field-edit .prop-control:nth-of-type(4){right:72px}.formeo.formeo-editor .field-edit .prop-control:first-child{right:0}.formeo.formeo-editor :not(.control-count-1) .field-edit .prop-control:last-child{border-radius:4px 0 0 4px;margin-right:-1px;display:none}.formeo.formeo-editor :not(.control-count-1) .field-edit .prop-control:first-child{border-radius:4px}.formeo.formeo-editor .field-edit .prop-control:hover:first-child{border-radius:0 4px 4px 0}.formeo.formeo-editor .field-edit .prop-control:hover:first-child:last-child{border-radius:4px}.formeo.formeo-editor .field-edit .prop-control:hover:last-child{display:inline-block}.formeo.formeo-editor .field-edit .prop-control:last-child:first-child{display:inline-block;border-radius:4px;margin-right:0}.formeo.formeo-editor .field-edit .prop-wrap{position:relative;margin-bottom:8px;list-style:none;margin-left:0}.formeo.formeo-editor .field-edit .field-edit-group{padding:8px 8px 0}.formeo.formeo-editor .field-edit [contenteditable]{display:flex;flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch}.formeo.formeo-editor .field-edit .prop-inputs,.formeo.formeo-editor .field-edit .prop-controls{transition:width .15s;will-change:width}.formeo.formeo-editor .field-edit .prop-inputs .f-addon,.formeo.formeo-editor .field-edit .prop-inputs input:not([type=checkbox]):not([type=radio]),.formeo.formeo-editor .field-edit .prop-inputs select,.formeo.formeo-editor .field-edit .prop-inputs textarea,.formeo.formeo-editor .field-edit .prop-inputs [contenteditable],.formeo.formeo-editor .field-edit .prop-controls .f-addon,.formeo.formeo-editor .field-edit .prop-controls input:not([type=checkbox]):not([type=radio]),.formeo.formeo-editor .field-edit .prop-controls select,.formeo.formeo-editor .field-edit .prop-controls textarea,.formeo.formeo-editor .field-edit .prop-controls [contenteditable]{font-size:.825em;flex:1 1 auto}.formeo.formeo-editor .field-edit .prop-inputs .f-addon:focus,.formeo.formeo-editor .field-edit .prop-inputs input:not([type=checkbox]):not([type=radio]):focus,.formeo.formeo-editor .field-edit .prop-inputs select:focus,.formeo.formeo-editor .field-edit .prop-inputs textarea:focus,.formeo.formeo-editor .field-edit .prop-inputs [contenteditable]:focus,.formeo.formeo-editor .field-edit .prop-controls .f-addon:focus,.formeo.formeo-editor .field-edit .prop-controls input:not([type=checkbox]):not([type=radio]):focus,.formeo.formeo-editor .field-edit .prop-controls select:focus,.formeo.formeo-editor .field-edit .prop-controls textarea:focus,.formeo.formeo-editor .field-edit .prop-controls [contenteditable]:focus{z-index:1}.formeo.formeo-editor .field-edit .prop-inputs [class^=condition-]+select,.formeo.formeo-editor .field-edit .prop-inputs select+[class^=condition-],.formeo.formeo-editor .field-edit .prop-controls [class^=condition-]+select,.formeo.formeo-editor .field-edit .prop-controls select+[class^=condition-]{margin-left:-1px}.formeo.formeo-editor .field-edit .control-count-2 .prop-controls:hover{width:48px}.formeo.formeo-editor .field-edit .control-count-2 .prop-controls:hover+.prop-inputs{width:calc(100% - 24px)}.formeo.formeo-editor .field-edit.panel-count-1 .panel-nav{border-bottom:1px solid #999999}.formeo.formeo-editor .field-edit.panel-count-1 .panel-nav button{display:none}.formeo.formeo-editor .field-edit.panel-count-1 .panel-labels{background-color:transparent}.formeo.formeo-editor .f-condition-row{display:flex;width:100%;margin-top:-1px;border:1px solid #cccccc}.formeo.formeo-editor .f-condition-row input,.formeo.formeo-editor .f-condition-row select,.formeo.formeo-editor .f-condition-row [contenteditable]{border-width:0;border-radius:0;width:inherit;box-shadow:0 0 0 1px #ccc}.formeo.formeo-editor .f-condition-row input:focus,.formeo.formeo-editor .f-condition-row select:focus,.formeo.formeo-editor .f-condition-row [contenteditable]:focus{box-shadow:0 0 0 1px #66afe9}.formeo.formeo-editor .f-condition-row:first-child input:last-child,.formeo.formeo-editor .f-condition-row:first-child select:last-child{border-top-right-radius:4px}.formeo.formeo-editor .f-condition-row:last-child input:last-child,.formeo.formeo-editor .f-condition-row:last-child select:last-child{border-bottom-right-radius:4px}.formeo.formeo-editor .f-condition-row:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.formeo.formeo-editor .f-condition-row:last-child{border-bottom-left-radius:4px;border-bottom-right-radius:4px}.formeo.formeo-editor .f-condition-row .condition-logical{max-width:56px;text-transform:uppercase}.formeo.formeo-editor .f-condition-row div.condition-source,.formeo.formeo-editor .f-condition-row div.condition-target{position:relative;width:100%}.formeo.formeo-editor .f-condition-row [class^=condition-]{max-width:100%;transition:max-width 266ms;will-change:max-width}.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-comparison,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-target,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-assignment,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-value,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isVisible .condition-targetProperty,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-comparison,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-target,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-assignment,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-value,.formeo.formeo-editor .f-condition-row.if-condition-row.condition-sourceProperty-isNotVisible .condition-targetProperty,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isVisible .condition-comparison,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isVisible .condition-assignment,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isVisible .condition-value,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isNotVisible .condition-comparison,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isNotVisible .condition-assignment,.formeo.formeo-editor .f-condition-row.then-condition-row.condition-targetProperty-isNotVisible .condition-value,.formeo.formeo-editor .f-condition-row.condition-target .condition-targetProperty,.formeo.formeo-editor .f-condition-row.condition-source .condition-sourceProperty{max-width:0%;padding:0;border:0 none;overflow:hidden}.formeo.formeo-editor .f-autocomplete-display-field+.f-autocomplete-list:focus{z-index:100}.formeo.formeo-editor [class$=-focused]{z-index:1}.formeo.formeo-editor [class$=-focused] .f-autocomplete-list{z-index:100}.formeo.formeo-editor .conditions-prop-inputs label.condition-label{display:inline-flex;flex:0 0 auto;box-shadow:0 0 0 1px #ccc;align-items:center;padding:4px;border-right:0;text-transform:uppercase;color:#999}.formeo.formeo-editor .conditions-prop-inputs label.condition-label.if-condition-label{border-top-left-radius:4px;border-bottom-left-radius:0;border-bottom-right-radius:0}.formeo.formeo-editor .conditions-prop-inputs label.condition-label.then-condition-label{border-bottom-left-radius:4px;border-top-left-radius:0;border-top-right-radius:0;border-top:0}.formeo.formeo-editor .field-edit-group{margin:0;padding:0;list-style:none}.formeo.formeo-editor .hidden-property{display:none}.formeo.formeo-editor .options-panel .prop-wrap{margin-bottom:8px}.formeo.formeo-editor .options-panel .input-group-addon{line-height:0}.formeo.formeo-editor .options-panel .prop-labels{padding:8px 34px 8px 8px}.formeo.formeo-editor .options-panel .prop-labels .input-group-addon{font-size:12px}.formeo.formeo-editor .options-panel .prop-labels label{font-size:12px;width:50%;position:relative;display:table-cell}.formeo.formeo-editor .options-panel .prop-label-selected,.formeo.formeo-editor .options-panel .prop-label-disabled{width:1%!important;white-space:nowrap;vertical-align:middle;border:0 none;background-color:transparent}.formeo.formeo-editor .panel-action-buttons{padding:0 8px 8px}.formeo.formeo-editor .panel-action-buttons:after{content:"";display:table;clear:both}.formeo.formeo-editor .panel-action-buttons [class^=add-]{float:right}.formeo.formeo-editor .prop-inputs{width:100%;align-items:center;vertical-align:bottom;display:flex;flex-direction:row;flex-grow:1}.formeo.formeo-editor .prop-inputs.conditions-prop-inputs{flex-direction:column}.formeo.formeo-editor .prop-inputs .f-field-group{width:100%;margin-bottom:0;display:inline-flex;align-items:center}.formeo.formeo-editor .prop-inputs .f-addon{display:flex;align-items:center;flex:0}.formeo.formeo-editor .prop-inputs .f-addon:first-child{margin-right:-1px}.formeo.formeo-editor .prop-inputs .f-addon:last-child{margin-left:-1px}.formeo.formeo-editor .prop-inputs label{padding-right:1em;margin-bottom:0}.formeo.formeo-editor .prop-inputs.attrs-prop-inputs .f-addon,.formeo.formeo-editor .prop-inputs.attrs-prop-inputs input:not([type=checkbox]):not([type=radio]),.formeo.formeo-editor .prop-inputs.attrs-prop-inputs select,.formeo.formeo-editor .prop-inputs.attrs-prop-inputs textarea,.formeo.formeo-editor .prop-inputs.attrs-prop-inputs [contenteditable]{flex:2}.formeo.formeo-editor .highlight-component{box-shadow:0 0 4px 2px #9954bb}.formeo.formeo-editor .formeo-stage{width:73%;box-sizing:border-box;transition:width .25s;flex:1 1 auto;position:relative;transition-property:background-color,border-color;transition-duration:.5s,333ms;border:0 dashed transparent;background-color:#fff0;overflow:visible;margin:0;padding:0;list-style:none}.formeo.formeo-editor .formeo-stage>.children{display:flex;flex-direction:column;justify-content:flex-start;gap:16px}.formeo.formeo-editor .formeo-stage.empty{border:3px dashed #cccccc;background-color:#ffffff40}.formeo.formeo-editor .formeo-stage.removing-all-fields .formeo-row{transition:margin-top .25s ease-in}.formeo.formeo-editor .formeo-stage>.formeo-field{background-color:#fff}@media (max-width: 481px){.formeo.formeo-editor .formeo-stage{width:calc(100% - 50px)}}.formeo.formeo-editor .formeo-stage:has(.editing-field) .column-actions{display:none}.formeo.formeo-editor .formeo-stage:has(.editing-field) .row-actions{display:none}.formeo.formeo-editor .editing-stage .formeo-settings{display:block}.formeo.formeo-editor .editing-stage .formeo-stage{display:none}.formeo.formeo-editor .f-field-group{margin-bottom:0}.formeo.formeo-editor [class$=empty][class*=editing-]:after{opacity:0}.formeo.formeo-editor [class$=empty]:after{opacity:1;font-size:24px;position:absolute;top:50%;left:50%;color:#999;transition:opacity .2s ease-in-out;will-change:opacity;text-align:center;transform:translate(-50%,-50%);content:attr(data-hover-tag)}.formeo.formeo-editor .formeo-settings{display:none}.formeo.formeo-editor [dir=rtl] .f-btn-group{display:inline-flex;vertical-align:middle}.formeo.formeo-editor [dir=rtl] .f-btn-group>button{flex:0 1 auto}.formeo.formeo-editor [dir=rtl] .f-btn-group>button:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.formeo.formeo-editor [dir=rtl] .f-btn-group>button:last-child:not(:first-child):not(.dropdown-toggle){border-radius:4px 0 0 4px}.formeo.formeo-editor [dir=rtl] .f-btn-group>button:first-child{margin-left:0}.formeo.formeo-editor [dir=rtl] .f-btn-group>button:first-child:not(:last-child):not(.dropdown-toggle){border-radius:0 4px 4px 0}.formeo.formeo-editor [dir=rtl] .f-btn-group button+button,.formeo.formeo-editor [dir=rtl] .f-btn-group button+.f-btn-group,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group+button,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group+.f-btn-group,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group-vertical button+button,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group-vertical button+.f-btn-group,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group-vertical .f-btn-group+button,.formeo.formeo-editor [dir=rtl] .f-btn-group .f-btn-group-vertical .f-btn-group+.f-btn-group{margin-right:-1px}.formeo.formeo-editor [dir=rtl] .formeo-controls,.formeo.formeo-editor [dir=rtl] .formeo-controls .form-actions{float:left}.formeo.formeo-editor [dir=rtl] .formeo-stage-wrap{float:right}.formeo.formeo-editor [dir=rtl] .formeo-stage-wrap .formeo-stage{padding-left:4px;padding-right:23px}.formeo.formeo-editor [dir=rtl] .formeo-row:before{border-bottom-left-radius:8px;border-bottom-right-radius:0;right:0;left:auto}.formeo.formeo-editor [dir=rtl] .formeo-row:first-child{border-top-left-radius:8px;border-top-right-radius:0}.formeo.formeo-editor [dir=rtl] .formeo-row:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.formeo.formeo-editor [dir=rtl] .formeo-row.hovering-row:first-child{border-top-left-radius:0}.formeo.formeo-editor [dir=rtl] .formeo-row.hovering-row:before{border-left-width:1px}.formeo.formeo-editor [dir=rtl] .formeo-row.empty:after{left:0;right:auto}.formeo.formeo-render .formeo-row,.formeo.formeo-render .formeo-column,.formeo.formeo-render .formeo-field{position:relative}.formeo.formeo-render .f-input-group-wrap>fieldset{position:relative}.formeo.formeo-render .f-input-group-wrap>fieldset .remove-input-group{top:8px}.formeo.formeo-render .will-remove{background-color:#d9534f40;box-shadow:0 0 1px #d9534f inset}.formeo.formeo-render .formeo-row{margin-bottom:1em;flex-direction:row;justify-content:flex-start;flex-wrap:nowrap;align-content:stretch;align-items:stretch;display:flex;border-radius:8px;transition:background-color .2s,padding .2s;padding:4px 0}.formeo.formeo-render .formeo-row.will-remove{padding:4px}.formeo.formeo-render .formeo-row:last-of-type{margin-bottom:0}.formeo.formeo-render .formeo-row-wrap{margin-bottom:1em}.formeo.formeo-render .formeo-row-wrap:last-child{margin-bottom:0}.formeo.formeo-render .f-input-group-wrap:after{content:"";display:table;clear:both}.formeo.formeo-render .f-input-group-wrap .formeo-row:first-of-type .remove-input-group{display:none}.formeo.formeo-render .f-input-group{position:relative}.formeo.formeo-render .f-input-group:first-child .remove-input-group{display:none}.formeo.formeo-render .add-input-group{float:right;margin-top:10px}.formeo.formeo-render .remove-input-group{position:absolute;right:0;top:0;width:16px;height:16px;border:0 none;background:transparent;outline:0 none;line-height:0;padding:4px}.formeo.formeo-render .remove-input-group:hover .svg-icon{fill:#d9534f}.formeo.formeo-render .remove-input-group .svg-icon{pointer-events:none}.formeo.formeo-render .form-check-input:only-child{position:absolute}.formeo.formeo-render .svg-icon{max-width:100%;max-height:100%}.formeo.formeo-render .formeo-column{padding:0 4px;float:left;max-width:none;flex-direction:column}.formeo.formeo-render .formeo-column:first-of-type{padding-left:0}.formeo.formeo-render .formeo-column:last-of-type{padding-right:0}.formeo-controls{width:26%;overflow:hidden}.formeo-controls.formeo-sticky{position:sticky;top:0;align-self:flex-start}.formeo-controls.pull-left .form-actions{float:left}.formeo-controls .filtered-term{background-color:#fff;text-align:center;border-radius:4px 4px 0 0;border:1px solid #cccccc;border-bottom:0 none;width:calc(100% - 2px)}.formeo-controls .tabbed-panels nav{padding:0}.formeo-controls nav{position:relative;padding:0 24px;overflow:hidden}.formeo-controls nav h5{font-size:13px;line-height:22px}.formeo-controls nav button{position:absolute;width:24px;color:#000;height:calc(100% + 1px);padding:0;line-height:0;margin:0;border-color:#ccc}.formeo-controls nav button.next-group{right:0;top:0;border-radius:0 8px 0 0}.formeo-controls nav button.prev-group{border-top-left-radius:8px;border-bottom-left-radius:0;left:0}.formeo-controls .formeo-panels-wrap{font-size:.85em;line-height:1.8em}.formeo-controls .panel-labels{border-top:1px solid #cccccc}.formeo-controls .panel-count-1{border-bottom-left-radius:0}.formeo-controls .panel-count-1 .panel-nav{display:none}.formeo-controls .panel-count-1 .control-group li:first-child{border-radius:8px 8px 0 0}.formeo-controls ul{margin:0;padding:0;list-style:none}.formeo-controls .control-group{vertical-align:top;display:inline-block;width:100%;border-top:1px solid #cccccc}.formeo-controls .control-group>li:first-child{border-top-right-radius:0}.formeo-controls .control-group>li:last-child{border-radius:0 0 8px 8px}.formeo-controls.filtered .panel-nav{display:none}.formeo-controls.filtered .control-group{display:block}.formeo-controls.filtered .control-group>li{border-radius:0}.formeo-controls.filtered .control-group:last-child>li:last-child{border-radius:0 0 0 4px}.formeo-controls .control-groups{white-space:nowrap}.formeo-controls .control-group-labels{height:100%;background:#fff;overflow:hidden}.formeo-controls .control-group-labels div{white-space:nowrap}.formeo-controls .control-group-labels h4{display:inline-block;width:100%}.formeo-controls .form-actions{float:right;margin-top:4px}.formeo-controls .form-actions .svg-icon{fill:#666;display:none}.formeo-controls .form-actions .svg-icon:hover{fill:#000}.formeo-controls .form-actions .save-form:hover,.formeo-controls .form-actions .clear-form:hover{color:#fff}.formeo-controls .form-actions .save-form:hover{background-color:#325d88}.formeo-controls .form-actions .clear-form:hover{background-color:#d9534f}@media (max-width: 481px){.formeo-controls{width:45px}.formeo-controls .control-group{text-indent:-9999px}.formeo-controls .form-actions{display:inline-block;width:100%;position:relative;vertical-align:middle;float:none;margin-top:10px}.formeo-controls .form-actions>button+button{margin-top:-1px;margin-left:0}.formeo-controls .form-actions>button{max-width:100%;padding:10px;border-radius:0;line-height:0;width:100%;float:none;position:relative;display:block}.formeo-controls .form-actions>button:not(:first-child):not(:last-child){border-radius:0}.formeo-controls .form-actions>button:first-child:not(:last-child){border-radius:4px 4px 0 0}.formeo-controls .form-actions>button:last-child:not(:first-child){border-radius:0 0 4px 4px}.formeo-controls .form-actions .control-icon{display:inline-block;margin-right:10px}}.formeo-controls .field-control{cursor:move;list-style:none;margin:-1px 0 0;border:1px solid #cccccc;text-align:left;background:#fff;-webkit-user-select:none;user-select:none;overflow:hidden}.formeo-controls .field-control.control-moving{border-radius:8px;animation:DRAG_GHOST .5s forwards}.formeo-controls .field-control:before{margin-right:8px;font-size:16px}.formeo-controls .field-control:hover{background-color:#f2f2f2}.formeo-controls .field-control button{box-sizing:border-box;font-size:1em;line-height:1.8em;display:flex;height:100%;width:100%;background:transparent;border:0 none;text-align:left;padding:8px;border-radius:0}.formeo-controls .field-control button:focus{outline:0 none;background-color:#f2f2f2;box-shadow:0 0 0 1px #66afe9 inset;border-radius:0!important}.formeo-controls .field-control button:active{transform:none}.formeo-controls .field-control button:hover{filter:none}.formeo-controls .field-control .control-icon{margin-right:8px;text-align:center;width:24px;height:24px;display:flex;align-items:center;justify-content:center}[dir=rtl] .formeo-controls .field-control button{text-align:right!important}[dir=rtl] .formeo-controls .field-control svg{float:right!important;margin:0 0 0 8px!important}.formeo-controls .field-control .control-icon{pointer-events:none}.formeo-controls .field-control .control-icon .f-i-hash{padding:2px}.field-control{cursor:move;list-style:none;margin:-1px 0 0;border:1px solid #cccccc;text-align:left;background:#fff;-webkit-user-select:none;user-select:none;overflow:hidden}.field-control.control-moving{border-radius:8px;animation:DRAG_GHOST .5s forwards}.field-control:before{margin-right:8px;font-size:16px}.field-control:hover{background-color:#f2f2f2}.field-control button{box-sizing:border-box;font-size:1em;line-height:1.8em;display:flex;height:100%;width:100%;background:transparent;border:0 none;text-align:left;padding:8px;border-radius:0}.field-control button:focus{outline:0 none;background-color:#f2f2f2;box-shadow:0 0 0 1px #66afe9 inset;border-radius:0!important}.field-control button:active{transform:none}.field-control button:hover{filter:none}.field-control .control-icon{margin-right:8px;text-align:center;width:24px;height:24px;display:flex;align-items:center;justify-content:center}[dir=rtl] .field-control button{text-align:right!important}[dir=rtl] .field-control svg{float:right!important;margin:0 0 0 8px!important}.field-control .svg-icon{pointer-events:none}