API Endpoints Reference

Complete reference of Plugin Integration API endpoints with request/response schemas

PathRequestResponseDescription
GET /languagesLanguageI[]List of languages for multilingual support
GET /widgetsQuery params: search: string offset: number limit: number layoutTypes: LayoutType[] (optional){ totalCount: number, items: WidgetI[] }Get list of widgets. Notes: WidgetType.TEASER should by filtered out searchparameter could support “id:123“ for searching widget by it’s id
GET /widget/{widgetId}WidgetIGet widget details
PATCH /widget/{widgetId}Body: WidgetIPartially update widget
GET /widget/{widgetId}/appearancesWidgetAppearanceI[]Get widget appearances
PUT /widget/{widgetId}/appearancesBody: WidgetAppearanceI[]Update widget appearances
GET /widget/{widgetId}/revisionQuery params: limit: number offset: numberWidgetRevisionI[]Get revisions list for widget
POST /widget/{widgetId}/revisionBody: WidgetRevisionI{ uuid: string }Create widget revision
GET /widget/revision/${revisionId}WidgetRevisionIGet widget’s revision by revision id
GET /project/configsProjectConfigI[]Get project configs
GET /iconsQuery params: type: string{url: string}[]Get icons by type. Note: type can be used as directory to store related images. See image uploading
GET /image-libraryQuery params: search: string useCache: boolean page: number limit: number type: 'IMAGE' / 'ICON'ImageLibraryResponseIGet Image Library with paging and filters
GET /user-imagesQuery params: page: number limit: numberUserImagesResponseIGet images uploaded by user
POST /upload/imageBody: UploadImagePayloadI{url: string}Upload image by file
POST /upload/image/urlBody: { url: string; widgetId: number }{ url: string }Upload image by URL. Note: this is used when user selects image from the Image Library
POST /copy-imageBody: { imageUrl: string; widgetId: number; type?: string }{ url: string }Copy image by URL. Notes: This is used when the user selects an image from the Uploaded Images section. Copying preserves the image, even if the original uploaded image is deleted. type can be used as directory to store related images
DELETE /fileQuery params: fileUrl: string widgetId: numberDelete file (e.g. image)
POST /translateBody: TranslateRequestI{response: TranslateRequestJsonI}AI-powered text translation
POST /widgetBody: CreateWidgetPayloadICreateWidgetResponseICreate new widget. This is used when creating a teaser

LanguageI

{
  languageCode: string;
  name: string; // fallback for missing interface language in localisation map
  localisation: { // should contain all language codes that are used in UI
    native: string;
    en: string;
    [key: string]: string; // other language codes
  }
}

Example:

[
  {
    "languageCode": "en",
    "name": "English",
    "localisation": {
      "en": "English",
      "ru": "Английский",
      "native": "English",
      "pl": "Angielski",
    },
  },
  {
    "languageCode": "pl",
    "name": "Polish",
    "localisation": {
      "en": "Polish",
      "ru": "Польский",
      "native": "Polski",
      "pl": "Polski",
    },
  }
]

LayoutType

enum LayoutType {
  BUILT_IN = 'BUILT_IN',
  DETACHED = 'DETACHED', // dialog
  FLOATING_BOX = 'FLOATING_BOX',
  FLOATING_BAR = 'FLOATING_BAR',
  LAUNCHER = 'LAUNCHER',
  CONTENT_LOCKER = 'CONTENT_LOCKER'
}

WidgetType

enum WidgetType {
  SUBSCRIPTION_FORM = 'SUBSCRIPTION_FORM',
  INFORMER = 'INFORMER',
  REQUEST_FORM = 'REQUEST_FORM',
  LAUNCHER = 'LAUNCHER',
  AGE_VERIFY = 'AGE_VERIFY',
  TEASER = 'TEASER',
}

WidgetI

{
  id: number;
  name: string;
  publishStatus: WidgetPublishStatus;
  createdDate: string;
  updatedDate: string;
  config: WidgetVariantI;
  variants: WidgetVariantI[]
}

Notes: variants is always array of one, same object as config

Example:

{
  "id": 1,
  "name": "New widget",
  "publishStatus": "DEBUG",
  "createdDate": "2026-01-06T08:11:18.484Z",
  "updatedDate": "2026-01-06T08:19:20.093Z",
  "variants": [
    {
      "id": 1,
      "formId": 1,
      "linkedToVariantId": null,
      "config": {
        "type": "DETACHED",
        "placements": [],
        "prizePoolIds": []
      },
      "appearances": [
        {
          "id": 1,
          "language": null,
          "origin": true
        }
      ],
      "revision": "5c217908-0f7b-4c77-bc5d-0dadf07f6939",
      "publishedRevision": "5c217908-0f7b-4c77-bc5d-0dadf07f6939",
      "type": "SUBSCRIPTION_FORM"
    }
  ],
  "config": {
    "id": 1,
    "formId": 1,
    "linkedToVariantId": null,
    "config": {
      "type": "DETACHED",
      "placements": [],
      "prizePoolIds": []
    },
    "appearances": [
      {
        "id": 1,
        "language": null,
        "origin": true
      }
    ],
    "revision": "5c217908-0f7b-4c77-bc5d-0dadf07f6939",
    "publishedRevision": "5c217908-0f7b-4c77-bc5d-0dadf07f6939",
    "type": "SUBSCRIPTION_FORM"
  }
}

WidgetPublishStatus

enum FormPublishStatus {
  FOR_ALL = 'FOR_ALL', // published
  PAUSED = 'PAUSED', // marks teaser as disabled. Any other status means that teaser is enabled and status works as usual
  DEBUG = 'DEBUG', // unpublished
}

WidgetVariantI

{
  formId: number; // widgetId, usually equals to variant id
  id: number;
  config: WidgetVariantConfigI;
  appearances: {
    id: number;
    language: string | null; // language code if set
    origin: boolean;
  }[];
  type: WidgetType;
  revision: string;
  publishedRevision?: string;
  linkedToVariantId?: number;
}

interface WidgetVariantConfigI {
  type: LayoutType;
  placements: {
    selector: string;
    insertType: PlacementInsertType;
  }[];
  prizePoolIds?: string[];
}

Notes:

  • placements is used only by LayoutType.BUILT_IN

  • widget should be created with revision

  • if publishedRevision is not equal to revision it means that user created a draft

  • linkedToVariantId can be used to link widget to WidgetType.LAUNCHER or TEASER

    • when user disables TEASER it stays linked to be able to restore teaser settings when user decides to enable it

PlacementInsertType

enum PlacementInsertType {
  BEFORE_BEGIN = 'BEFORE_BEGIN',
  AFTER_BEGIN = 'AFTER_BEGIN',
  BEFORE_END = 'BEFORE_END',
  AFTER_END = 'AFTER_END',
  REPLACE = 'REPLACE',
}

WidgetAppearanceI

interface WidgetAppearanceI {
  id: number;
  origin: boolean;
  language: string | null;
  translations: string | null;
  document: string | null;
  sync: string | null;
}

Notes:

  • origin appearance (origin: true) should have document and sync fields
  • translation appearance (origin: false) should have translations field instead of document and sync
  • document is a stringified ClDocumentI from @claspo/common/document/Document.interface
  • syncinternal state of the components synchronisation
  • translations is a map where key is a component id and value is a nested map. Nested map has key as comma separated prop path inside componentModel.props and value as text

Example:

[
  {
    "id": 73987,
    "language": "en",
    "origin": true,
    "translations": null,
    "document": "{\"shared\":{\"cssVars\":{},\"closeIcon\":{\"mobile\":{\"color\":\"rgba(255, 255, 255, 1)\",\"width\":\"30px\",\"height\":\"30px\",\"content\":\"0\",\"verticalOffset\":\"-30px\",\"horizontalOffset\":\"0px\",\"horizontalPosition\":\"RIGHT\",\"defaultIcon\":true},\"desktop\":{\"color\":\"rgba(255, 255, 255, 1)\",\"width\":\"30px\",\"height\":\"30px\",\"content\":\"0\",\"verticalOffset\":\"-30px\",\"horizontalOffset\":\"-30px\",\"horizontalPosition\":\"RIGHT\",\"defaultIcon\":true}},\"actualSize\":[{\"viewId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"desktop\":{\"width\":\"360px\",\"height\":\"411px\"}},{\"viewId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"desktop\":{\"width\":\"290px\",\"height\":\"295.267px\"}},{\"viewId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"desktop\":{\"width\":\"290px\",\"height\":\"227px\"}},{\"viewId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"desktop\":{\"width\":\"290px\",\"height\":\"191px\"}}],\"linkParams\":{\"color\":\"rgb(0, 0, 238)\"},\"googleFonts\":[\"Poppins\"],\"textClasses\":{\"cl-text-class-h1\":{\"id\":\"cl-text-class-h1\",\"name\":\"H1\",\"isHeader\":true,\"styleAttributes\":{\"color\":\"rgba(0, 0, 0, 1)\",\"fontSize\":\"25px\",\"textAlign\":\"center\",\"fontFamily\":null,\"fontWeight\":\"700\",\"lineHeight\":\"120%\",\"textShadow\":\"none\",\"letterSpacing\":\"0px\"},\"placeholderStyleAttributes\":{\"color\":\"rgb(0, 0, 0)\"}},\"cl-text-class-button\":{\"id\":\"cl-text-class-button\",\"name\":\"Button text\",\"isHeader\":false,\"styleAttributes\":{\"color\":\"rgba(255, 255, 255, 1)\",\"fontSize\":\"16px\",\"textAlign\":\"center\",\"fontFamily\":null,\"fontWeight\":\"700\",\"lineHeight\":\"120%\",\"textShadow\":\"none\",\"letterSpacing\":\"0px\"},\"placeholderStyleAttributes\":{}},\"cl-text-class-input-label\":{\"id\":\"cl-text-class-input-label\",\"name\":\"Title\",\"isHeader\":false,\"styleAttributes\":{\"color\":\"rgba(24, 20, 20, 1)\",\"fontSize\":\"15px\",\"textAlign\":\"center\",\"fontFamily\":\"Poppins\",\"fontWeight\":\"700\",\"lineHeight\":\"120%\",\"textShadow\":\"none\",\"letterSpacing\":\"0px\"},\"placeholderStyleAttributes\":{\"color\":\"rgb(0, 0, 0)\"}},\"cl-text-class-regular-text\":{\"id\":\"cl-text-class-regular-text\",\"name\":\"Regular text\",\"isHeader\":false,\"styleAttributes\":{\"color\":\"rgba(13, 12, 12, 1)\",\"fontSize\":\"15px\",\"textAlign\":\"center\",\"fontFamily\":null,\"fontWeight\":\"300\",\"lineHeight\":\"120%\",\"textShadow\":\"none\",\"letterSpacing\":\"0px\"},\"placeholderStyleAttributes\":{\"color\":\"rgb(0, 0, 0)\"}},\"cl-text-class-3fe157f4-e6ff-4ea4-9c41-3200956bebe8\":{\"id\":\"cl-text-class-3fe157f4-e6ff-4ea4-9c41-3200956bebe8\",\"name\":\"Input text mobile\",\"isHeader\":false,\"styleAttributes\":{\"color\":\"rgba(0, 0, 0, 1)\",\"fontSize\":\"12px\",\"textAlign\":\"start\",\"fontFamily\":null,\"fontWeight\":\"300\",\"lineHeight\":\"120%\",\"textShadow\":\"none\",\"letterSpacing\":\"0px\"},\"placeholderStyleAttributes\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"cl-text-class-6678abb0-b059-41ad-9ec8-744e85096dc1\":{\"id\":\"cl-text-class-6678abb0-b059-41ad-9ec8-744e85096dc1\",\"name\":\"Input text\",\"isHeader\":false,\"styleAttributes\":{\"color\":\"rgba(0, 0, 0, 1)\",\"fontSize\":\"16px\",\"textAlign\":\"start\",\"fontFamily\":null,\"fontWeight\":\"300\",\"lineHeight\":\"120%\",\"textShadow\":\"none\",\"letterSpacing\":\"0px\"},\"placeholderStyleAttributes\":{\"color\":\"rgba(0, 0, 0, 1)\"}},\"cl-text-class-754b776e-789f-452d-983b-869db3ab0df4\":{\"id\":\"cl-text-class-754b776e-789f-452d-983b-869db3ab0df4\",\"name\":\"Subtitle mobile\",\"isHeader\":true,\"styleAttributes\":{\"color\":\"rgba(0, 0, 0, 1)\",\"fontSize\":\"25px\",\"textAlign\":\"center\",\"fontFamily\":null,\"fontWeight\":\"700\",\"lineHeight\":\"120%\",\"textShadow\":\"none\",\"letterSpacing\":\"0px\"},\"placeholderStyleAttributes\":{\"color\":\"rgb(0, 0, 0)\"}},\"cl-text-class-f2677636-569f-46bf-9e13-fb55ca29268e\":{\"id\":\"cl-text-class-f2677636-569f-46bf-9e13-fb55ca29268e\",\"name\":\"Title mobile\",\"isHeader\":false,\"styleAttributes\":{\"color\":\"rgba(0, 0, 0, 1)\",\"fontSize\":\"12px\",\"textAlign\":\"center\",\"fontFamily\":\"Poppins\",\"fontWeight\":\"400\",\"lineHeight\":\"120%\",\"textShadow\":\"none\",\"letterSpacing\":\"0px\"},\"placeholderStyleAttributes\":{\"color\":\"rgb(0, 0, 0)\"}},\"cl-text-class-f38ae9ad-f7ac-4a90-88e7-1edb856cd7e5\":{\"id\":\"cl-text-class-f38ae9ad-f7ac-4a90-88e7-1edb856cd7e5\",\"name\":\"Button text mobile\",\"isHeader\":false,\"styleAttributes\":{\"color\":\"rgba(255, 255, 255, 1)\",\"fontSize\":\"12px\",\"textAlign\":\"center\",\"fontFamily\":null,\"fontWeight\":\"700\",\"lineHeight\":\"120%\",\"textShadow\":\"none\",\"letterSpacing\":\"0px\"},\"placeholderStyleAttributes\":{}}},\"textFontFamily\":\"Montserrat\",\"headerFontFamily\":\"Montserrat\",\"mobileBreakpointWidth\":576.0},\"views\":[{\"id\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"name\":\"SysColumnsComponent\",\"path\":[0.0],\"type\":\"VIEW\",\"label\":\"DOCUMENT_VIEW_TYPE_DEFAULT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"boxShadow\":\"0px 4px 20px 0px rgba(0, 0, 0, 0.25098039215686274)\",\"borderTopColor\":\"rgba(196, 196, 196, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgba(196, 196, 196, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgba(196, 196, 196, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgba(196, 196, 196, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}}],\"isResponsive\":true,\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"minHeight\":null,\"alignItems\":\"initial\",\"background\":\"rgb(255, 255, 255)\"}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"minHeight\":null,\"alignItems\":\"initial\",\"background\":\"rgb(255, 255, 255)\"}}]},\"backgroundDynamicInlineSVGElements\":null},\"version\":\"1.0.0\",\"children\":[{\"id\":\"91c33e33-1f1d-4a49-b87e-05655a83ece3\",\"name\":\"SysColumnComponent\",\"path\":[0.0,0.0],\"type\":\"COLUMN\",\"props\":{\"content\":{\"size\":\"1\"},\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"5px\",\"display\":\"inline-flex\",\"marginTop\":\"0px\",\"alignItems\":\"center\",\"marginLeft\":\"0px\",\"paddingTop\":\"0px\",\"marginRight\":\"0px\",\"paddingLeft\":\"0px\",\"marginBottom\":\"0px\",\"paddingRight\":\"0px\",\"flexDirection\":\"column\",\"paddingBottom\":\"0px\",\"_marginEnabled\":false,\"borderTopStyle\":\"solid\",\"justifyContent\":\"center\",\"_paddingEnabled\":false,\"borderLeftStyle\":\"solid\",\"borderRightStyle\":\"solid\",\"borderBottomStyle\":\"solid\"}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"display\":\"inline-flex\",\"marginTop\":\"0px\",\"alignItems\":\"center\",\"marginLeft\":\"0px\",\"paddingTop\":\"0px\",\"marginRight\":\"0px\",\"paddingLeft\":\"0px\",\"marginBottom\":\"0px\",\"paddingRight\":\"0px\",\"flexDirection\":\"column\",\"paddingBottom\":\"0px\",\"_marginEnabled\":false,\"borderTopStyle\":\"solid\",\"justifyContent\":\"center\",\"_paddingEnabled\":false,\"borderLeftStyle\":\"solid\",\"borderRightStyle\":\"solid\",\"borderBottomStyle\":\"solid\"}}]},\"styles\":[{\"element\":\"host\",\"styleAttributes\":{\"position\":\"relative\",\"width\":\"auto\",\"minWidth\":\"min-content\",\"height\":\"100%\",\"borderTopWidth\":\"0px\",\"borderTopColor\":\"rgb(0, 0, 0)\",\"borderBottomWidth\":\"0px\",\"borderBottomColor\":\"rgb(0, 0, 0)\",\"borderLeftWidth\":\"0px\",\"borderLeftColor\":\"rgb(0, 0, 0)\",\"borderRightWidth\":\"0px\",\"borderRightColor\":\"rgb(0, 0, 0)\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\",\"boxShadow\":\"none\",\"flexBasis\":\"0\"},\"classes\":\"\"}]},\"version\":\"1.0.0\",\"canStack\":false,\"children\":[{\"id\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"name\":\"SysImageComponent\",\"path\":[0.0,0.0,0.0],\"type\":\"IMAGE\",\"props\":{\"control\":{\"imageSource\":{\"url\":\"https://cdn.claspo.io/img/77/forms/6557/4d817044-f143-46c9-810e-875d5bbe9e05.png\"}},\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"width\":\"calc(100% - 0px)\",\"height\":\"auto\",\"zIndex\":\"0\",\"display\":\"block\",\"minWidth\":null,\"minHeight\":null,\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}},{\"classes\":\"\",\"element\":\"image\",\"styleAttributes\":{\"objectFit\":\"cover\",\"background\":\"transparent\",\"borderTopColor\":\"rgb(0, 0, 0)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgb(0, 0, 0)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgb(0, 0, 0)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgb(0, 0, 0)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"auto\",\"zIndex\":\"0\",\"display\":\"block\",\"minWidth\":null,\"minHeight\":null,\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"marginBottom\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_marginEnabled\":false,\"_paddingEnabled\":false}},{\"classes\":\"\",\"element\":\"image\",\"styleAttributes\":{\"objectFit\":\"cover\",\"background\":\"transparent\",\"borderTopColor\":\"rgb(0, 0, 0)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgb(0, 0, 0)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgb(0, 0, 0)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgb(0, 0, 0)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}}]}},\"version\":\"1.0.0\"},{\"id\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"name\":\"SysContainerComponent\",\"path\":[0.0,0.0,1.0],\"type\":\"CONTAINER\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"boxShadow\":\"none\",\"borderTopColor\":\"rgb(0, 0, 0)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgb(0, 0, 0)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgb(0, 0, 0)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgb(0, 0, 0)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}}],\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"marginTop\":\"0px\",\"minHeight\":null,\"alignItems\":\"center\",\"background\":\"transparent\",\"marginLeft\":\"0px\",\"paddingTop\":\"15px\",\"marginRight\":\"0px\",\"paddingLeft\":\"10px\",\"marginBottom\":\"0px\",\"paddingRight\":\"10px\",\"flexDirection\":\"column\",\"paddingBottom\":\"35px\",\"_marginEnabled\":false,\"justifyContent\":\"center\",\"_paddingEnabled\":true}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"marginTop\":\"15px\",\"minHeight\":null,\"alignItems\":\"center\",\"background\":\"transparent\",\"marginLeft\":\"15px\",\"paddingTop\":\"35px\",\"marginRight\":\"15px\",\"paddingLeft\":\"35px\",\"marginBottom\":\"15px\",\"paddingRight\":\"35px\",\"flexDirection\":\"column\",\"paddingBottom\":\"35px\",\"_marginEnabled\":true,\"justifyContent\":\"center\",\"_paddingEnabled\":true}}]}},\"version\":\"1.0.0\",\"children\":[{\"id\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"name\":\"SysTextComponent\",\"path\":[0.0,0.0,1.0,0.0],\"type\":\"TEXT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{}}],\"content\":{\"text\":\"Title\",\"textContrastEnabled\":true},\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"auto\",\"zIndex\":\"0\",\"minWidth\":null,\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-h1\",\"element\":\"text\",\"styleAttributes\":{\"color\":null,\"fontSize\":null,\"textAlign\":null,\"fontFamily\":null,\"fontWeight\":null,\"lineHeight\":null,\"paddingTop\":\"0px\",\"textShadow\":null,\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"letterSpacing\":null,\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"placeholderStyleAttributes\":null}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"auto\",\"zIndex\":\"0\",\"minWidth\":null,\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-h1\",\"element\":\"text\",\"styleAttributes\":{\"color\":null,\"fontSize\":null,\"textAlign\":null,\"fontFamily\":null,\"fontWeight\":null,\"lineHeight\":null,\"paddingTop\":\"0px\",\"textShadow\":null,\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"letterSpacing\":null,\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"placeholderStyleAttributes\":null}]}},\"version\":\"1.0.0\"},{\"id\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"name\":\"SysTextComponent\",\"path\":[0.0,0.0,1.0,1.0],\"type\":\"TEXT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{}}],\"content\":{\"text\":\"Regular text\",\"textContrastEnabled\":true},\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"auto\",\"zIndex\":\"0\",\"minWidth\":null,\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-regular-text\",\"element\":\"text\",\"styleAttributes\":{\"color\":null,\"fontSize\":null,\"textAlign\":null,\"fontFamily\":null,\"fontWeight\":null,\"lineHeight\":null,\"paddingTop\":\"0px\",\"textShadow\":null,\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"letterSpacing\":null,\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"placeholderStyleAttributes\":null}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"auto\",\"zIndex\":\"0\",\"minWidth\":null,\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-regular-text\",\"element\":\"text\",\"styleAttributes\":{\"color\":null,\"fontSize\":null,\"textAlign\":null,\"fontFamily\":null,\"fontWeight\":null,\"lineHeight\":null,\"paddingTop\":\"0px\",\"textShadow\":null,\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"letterSpacing\":null,\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"placeholderStyleAttributes\":null}]}},\"version\":\"1.0.0\"},{\"id\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"name\":\"SysInputComponent\",\"path\":[0.0,0.0,1.0,2.0],\"type\":\"INPUT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"input\",\"styleAttributes\":{\"boxShadow\":\"none\",\"background\":\"rgba(255, 255, 255, 1)\",\"borderTopColor\":\"rgba(0, 0, 0, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"1px\",\"borderLeftColor\":\"rgba(0, 0, 0, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"1px\",\"borderRightColor\":\"rgba(0, 0, 0, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"1px\",\"borderBottomColor\":\"rgba(0, 0, 0, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"1px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}},{\"params\":{\"margin\":5.0,\"enabled\":false,\"position\":\"TOP\"},\"element\":\"label\"}],\"content\":{\"label\":\"Title\",\"placeholder\":\"First name\",\"suggestionLabel\":\"Did you mean\",\"textContrastEnabled\":true,\"placeholderTextContrastEnabled\":true},\"control\":{\"name\":\"first_name\",\"validation\":{\"required\":true,\"validator\":\"SYS_NAME\",\"validationErrors\":{\"REQUIRED\":\"This field can\\u0027t be empty\",\"MAX_LENGTH_40\":\"Maximum length is 40\",\"MAX_LENGTH_50\":\"Maximum length is 50\",\"NAME_CONTAINS_NUMBERS\":\"Name contains numbers\",\"NAME_CONTAINS_FORBIDDEN_CHARACTERS\":\"Name contains forbidden characters\"}},\"defaultValue\":\"\",\"integrationName\":\"first_name\"},\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"zIndex\":\"0\",\"marginTop\":\"0px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-3fe157f4-e6ff-4ea4-9c41-3200956bebe8\",\"element\":\"input\",\"styleAttributes\":{\"width\":\"220px\",\"height\":\"35px\",\"minWidth\":\"220px\",\"minHeight\":\"35px\",\"paddingTop\":\"10px\",\"paddingLeft\":\"10px\",\"paddingRight\":\"10px\",\"paddingBottom\":\"10px\",\"_paddingEnabled\":true},\"placeholderStyleAttributes\":{}},{\"classes\":\"cl-text-class-input-label\",\"element\":\"label\",\"styleAttributes\":{}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"zIndex\":\"0\",\"marginTop\":\"0px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-6678abb0-b059-41ad-9ec8-744e85096dc1\",\"element\":\"input\",\"styleAttributes\":{\"width\":\"240px\",\"height\":\"40px\",\"minWidth\":\"240px\",\"minHeight\":\"40px\",\"paddingTop\":\"10px\",\"paddingLeft\":\"10px\",\"paddingRight\":\"10px\",\"paddingBottom\":\"10px\",\"_paddingEnabled\":true},\"placeholderStyleAttributes\":{}},{\"classes\":\"cl-text-class-input-label\",\"element\":\"label\",\"styleAttributes\":{}}]}},\"version\":\"1.0.0\"},{\"id\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"name\":\"SysInputComponent\",\"path\":[0.0,0.0,1.0,3.0],\"type\":\"INPUT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"input\",\"styleAttributes\":{\"boxShadow\":\"none\",\"background\":\"rgba(255, 255, 255, 1)\",\"borderTopColor\":\"rgba(0, 0, 0, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"1px\",\"borderLeftColor\":\"rgba(0, 0, 0, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"1px\",\"borderRightColor\":\"rgba(0, 0, 0, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"1px\",\"borderBottomColor\":\"rgba(0, 0, 0, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"1px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}},{\"params\":{\"margin\":5.0,\"enabled\":false,\"position\":\"TOP\"},\"element\":\"label\"}],\"content\":{\"label\":\"Title\",\"placeholder\":\"Email\",\"textContrastEnabled\":true,\"placeholderTextContrastEnabled\":true},\"control\":{\"name\":\"email\",\"validation\":{\"required\":true,\"validator\":\"EMAIL\",\"validationErrors\":{\"REQUIRED\":\"This field can\\u0027t be empty\",\"EMAIL_IS_INVALID\":\"Email is invalid\"}},\"defaultValue\":\"\"},\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"marginTop\":\"0px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-3fe157f4-e6ff-4ea4-9c41-3200956bebe8\",\"element\":\"input\",\"styleAttributes\":{\"width\":\"220px\",\"height\":\"35px\",\"minWidth\":\"220px\",\"minHeight\":\"35px\",\"paddingTop\":\"10px\",\"paddingLeft\":\"10px\",\"paddingRight\":\"10px\",\"paddingBottom\":\"10px\",\"_paddingEnabled\":true},\"placeholderStyleAttributes\":{}},{\"classes\":\"cl-text-class-input-label\",\"element\":\"label\",\"styleAttributes\":{}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"marginTop\":\"0px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-6678abb0-b059-41ad-9ec8-744e85096dc1\",\"element\":\"input\",\"styleAttributes\":{\"width\":\"240px\",\"height\":\"40px\",\"minWidth\":\"240px\",\"minHeight\":\"40px\",\"paddingTop\":\"10px\",\"paddingLeft\":\"10px\",\"paddingRight\":\"10px\",\"paddingBottom\":\"10px\",\"_paddingEnabled\":true},\"placeholderStyleAttributes\":{}},{\"classes\":\"cl-text-class-input-label\",\"element\":\"label\",\"styleAttributes\":{}}]}},\"version\":\"1.0.0\"},{\"id\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"name\":\"SysPhoneInputComponent\",\"path\":[0.0,0.0,1.0,4.0],\"type\":\"INPUT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"input\",\"styleAttributes\":{\"boxShadow\":\"none\",\"background\":\"rgba(255, 255, 255, 1)\",\"borderTopColor\":\"rgba(0, 0, 0, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"1px\",\"borderLeftColor\":\"rgba(0, 0, 0, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"1px\",\"borderRightColor\":\"rgba(0, 0, 0, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"1px\",\"borderBottomColor\":\"rgba(0, 0, 0, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"1px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}},{\"params\":{\"margin\":5.0,\"enabled\":false,\"position\":\"TOP\"},\"element\":\"label\"}],\"content\":{\"label\":\"Title\",\"textContrastEnabled\":true},\"control\":{\"name\":\"phone\",\"validation\":{\"required\":true,\"validator\":\"PHONE\",\"validationErrors\":{\"REQUIRED\":\"This field can\\u0027t be empty\",\"PHONE_INVALID_NUMBER\":\"Phone number is invalid\"}},\"countryCode\":\"UA\"},\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"zIndex\":\"0\",\"marginTop\":\"0px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-3fe157f4-e6ff-4ea4-9c41-3200956bebe8\",\"element\":\"input\",\"styleAttributes\":{\"width\":\"220px\",\"height\":\"35px\",\"minWidth\":\"220px\",\"minHeight\":\"35px\",\"paddingTop\":\"10px\",\"paddingLeft\":\"10px\",\"paddingRight\":\"10px\",\"paddingBottom\":\"10px\",\"_paddingEnabled\":true},\"placeholderStyleAttributes\":{}},{\"classes\":\"cl-text-class-input-label\",\"element\":\"label\",\"styleAttributes\":{}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"zIndex\":\"0\",\"marginTop\":\"0px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-6678abb0-b059-41ad-9ec8-744e85096dc1\",\"element\":\"input\",\"styleAttributes\":{\"width\":\"240px\",\"height\":\"40px\",\"minWidth\":\"240px\",\"minHeight\":\"40px\",\"paddingTop\":\"10px\",\"paddingLeft\":\"10px\",\"paddingRight\":\"10px\",\"paddingBottom\":\"10px\",\"_paddingEnabled\":true},\"placeholderStyleAttributes\":{}},{\"classes\":\"cl-text-class-input-label\",\"element\":\"label\",\"styleAttributes\":{}}]}},\"version\":\"1.0.0\"},{\"id\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"name\":\"SysButtonComponent\",\"path\":[0.0,0.0,1.0,5.0],\"type\":\"BUTTON\",\"props\":{\"styles\":[{\"classes\":\"cl-loop-animation-null\",\"element\":\"button\",\"styleAttributes\":{\"boxShadow\":\"none\",\"background\":\"rgba(0, 0, 0, 1)\",\"borderTopColor\":\"rgba(255, 255, 255, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgba(255, 255, 255, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgba(255, 255, 255, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgba(255, 255, 255, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"},\"hoverStyleAttributes\":{\"background\":\"rgba(0, 0, 0, 0.73)\",\"borderTopColor\":\"rgba(255, 230, 100, 0)\",\"borderLeftColor\":\"rgba(255, 230, 100, 0)\",\"borderRightColor\":\"rgba(255, 230, 100, 0)\",\"borderBottomColor\":\"rgba(255, 230, 100, 0)\"}}],\"content\":{\"text\":\"BUTTON\",\"textContrastEnabled\":true},\"handlers\":[{\"type\":\"CLICK\",\"actions\":[{\"type\":\"SUBSCRIBE_CONTACT\",\"params\":{\"viewIndexOnError\":3.0,\"viewIndexOnSuccess\":1.0,\"viewIndexOnSubscribed\":2.0}}],\"relativeSelector\":\"button\"}],\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"220px\",\"height\":\"35px\",\"builder\":{\"styles\":{}},\"minWidth\":\"220px\",\"marginTop\":\"0px\",\"minHeight\":\"35px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-f38ae9ad-f7ac-4a90-88e7-1edb856cd7e5\",\"element\":\"button\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"100%\",\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"hoverAnimationType\":null,\"hoverStyleAttributes\":{\"boxShadow\":null}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"240px\",\"height\":\"40px\",\"builder\":{\"styles\":{}},\"minWidth\":\"240px\",\"marginTop\":\"0px\",\"minHeight\":\"40px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-button\",\"element\":\"button\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"100%\",\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false,\"--cl-PULSE-color\":\"rgba(0,0,0,0.7)\",\"--cl-PULSE-borderRadius\":\"50px\"},\"hoverAnimationType\":null,\"hoverStyleAttributes\":{\"boxShadow\":null}}]}},\"version\":\"1.0.0\"}]}],\"recursiveRemove\":true,\"preventDraggable\":true,\"focusParentOnClick\":false}]},{\"id\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"name\":\"SysColumnsComponent\",\"path\":[1.0],\"type\":\"VIEW\",\"label\":\"DOCUMENT_VIEW_TYPE_SUCCESS\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"boxShadow\":\"0px 4px 20px 0px rgba(0, 0, 0, 0.25098039215686274)\",\"borderTopColor\":\"rgba(196, 196, 196, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgba(196, 196, 196, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgba(196, 196, 196, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgba(196, 196, 196, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}}],\"isResponsive\":true,\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"minHeight\":null,\"alignItems\":\"initial\",\"background\":\"rgb(255, 255, 255)\"}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"minHeight\":null,\"alignItems\":\"initial\",\"background\":\"rgb(255, 255, 255)\"}}]},\"backgroundDynamicInlineSVGElements\":null},\"version\":\"1.0.0\",\"children\":[{\"id\":\"5a203b11-df6d-4419-992e-1a508485e288\",\"name\":\"SysColumnComponent\",\"path\":[1.0,0.0],\"type\":\"COLUMN\",\"props\":{\"content\":{\"size\":\"1\"},\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"5px\",\"display\":\"inline-flex\",\"marginTop\":\"0px\",\"alignItems\":\"center\",\"marginLeft\":\"0px\",\"paddingTop\":\"20px\",\"marginRight\":\"0px\",\"paddingLeft\":\"20px\",\"marginBottom\":\"0px\",\"paddingRight\":\"20px\",\"flexDirection\":\"column\",\"paddingBottom\":\"20px\",\"_marginEnabled\":false,\"borderTopStyle\":\"solid\",\"justifyContent\":\"center\",\"_paddingEnabled\":true,\"borderLeftStyle\":\"solid\",\"borderRightStyle\":\"solid\",\"borderBottomStyle\":\"solid\"}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"display\":\"inline-flex\",\"marginTop\":\"0px\",\"alignItems\":\"center\",\"marginLeft\":\"0px\",\"paddingTop\":\"30px\",\"marginRight\":\"0px\",\"paddingLeft\":\"30px\",\"marginBottom\":\"0px\",\"paddingRight\":\"30px\",\"flexDirection\":\"column\",\"paddingBottom\":\"30px\",\"_marginEnabled\":false,\"borderTopStyle\":\"solid\",\"justifyContent\":\"center\",\"_paddingEnabled\":true,\"borderLeftStyle\":\"solid\",\"borderRightStyle\":\"solid\",\"borderBottomStyle\":\"solid\"}}]},\"styles\":[{\"element\":\"host\",\"styleAttributes\":{\"position\":\"relative\",\"width\":\"auto\",\"minWidth\":\"min-content\",\"height\":\"100%\",\"borderTopWidth\":\"0px\",\"borderTopColor\":\"rgb(0, 0, 0)\",\"borderBottomWidth\":\"0px\",\"borderBottomColor\":\"rgb(0, 0, 0)\",\"borderLeftWidth\":\"0px\",\"borderLeftColor\":\"rgb(0, 0, 0)\",\"borderRightWidth\":\"0px\",\"borderRightColor\":\"rgb(0, 0, 0)\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\",\"boxShadow\":\"none\",\"flexBasis\":\"0\"},\"classes\":\"\"}]},\"version\":\"1.0.0\",\"canStack\":false,\"children\":[{\"id\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"name\":\"SysTextComponent\",\"path\":[1.0,0.0,0.0],\"type\":\"TEXT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{}}],\"content\":{\"text\":\"Thanks for subscribe!\",\"textContrastEnabled\":true},\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"250px\",\"height\":\"auto\",\"minWidth\":\"250px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-h1\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"354px\",\"height\":\"auto\",\"minWidth\":\"354px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-h1\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}]}},\"version\":\"1.0.0\"},{\"id\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"name\":\"SysPromoCodeComponent\",\"path\":[1.0,0.0,1.0],\"type\":\"PROMO_CODE\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"text\",\"styleAttributes\":{\"boxShadow\":\"none\",\"background\":\"rgb(255, 255, 255)\",\"borderTopColor\":\"rgb(0, 0, 0)\",\"borderTopStyle\":\"dashed\",\"borderTopWidth\":\"2px\",\"borderLeftColor\":\"rgb(0, 0, 0)\",\"borderLeftStyle\":\"dashed\",\"borderLeftWidth\":\"2px\",\"borderRightColor\":\"rgb(0, 0, 0)\",\"borderRightStyle\":\"dashed\",\"borderRightWidth\":\"2px\",\"borderBottomColor\":\"rgb(0, 0, 0)\",\"borderBottomStyle\":\"dashed\",\"borderBottomWidth\":\"2px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"},\"hoverStyleAttributes\":{}},{\"classes\":\"\",\"element\":\"icon\",\"styleAttributes\":{\"color\":\"#000000\",\"right\":\"5px\",\"display\":\"none\",\"position\":\"static\",\"marginLeft\":\"15px\",\"--clPromocodeIconWidth\":\"24px\",\"--clPromocodeIconHeight\":\"24px\"}}],\"content\":{\"text\":\"SALE_15\",\"iconContent\":null,\"iconContrastEnabled\":true,\"textContrastEnabled\":true},\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"auto\",\"height\":\"auto\",\"zIndex\":\"0\",\"minWidth\":null,\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"\",\"element\":\"text\",\"styleAttributes\":{\"color\":\"rgb(50, 66, 67)\",\"fontSize\":\"18px\",\"textAlign\":\"center\",\"fontFamily\":null,\"fontWeight\":\"400\",\"lineHeight\":\"120%\",\"paddingTop\":\"10px\",\"textShadow\":\"none\",\"paddingLeft\":\"10px\",\"paddingRight\":\"10px\",\"paddingBottom\":\"10px\",\"_paddingEnabled\":true}},{\"classes\":\"\",\"element\":\"icon\",\"styleAttributes\":{\"color\":\"#000000\",\"right\":\"5px\",\"display\":\"none\",\"position\":\"static\",\"marginLeft\":\"15px\",\"_marginEnabled\":true,\"--clPromocodeIconWidth\":\"24px\",\"--clPromocodeIconHeight\":\"24px\"}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"165px\",\"height\":\"auto\",\"zIndex\":\"0\",\"minWidth\":\"165px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"\",\"element\":\"text\",\"styleAttributes\":{\"color\":\"rgb(0, 0, 0)\",\"fontSize\":\"18px\",\"textAlign\":\"center\",\"fontFamily\":null,\"fontWeight\":\"400\",\"lineHeight\":\"120%\",\"paddingTop\":\"10px\",\"textShadow\":\"none\",\"paddingLeft\":\"10px\",\"paddingRight\":\"10px\",\"paddingBottom\":\"10px\",\"_paddingEnabled\":true}},{\"classes\":\"\",\"element\":\"icon\",\"styleAttributes\":{\"color\":\"#000000\",\"right\":\"5px\",\"display\":\"none\",\"position\":\"static\",\"marginLeft\":\"15px\",\"_marginEnabled\":true,\"--clPromocodeIconWidth\":\"24px\",\"--clPromocodeIconHeight\":\"24px\"}}]}},\"version\":\"1.0.0\"},{\"id\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"name\":\"SysTextComponent\",\"path\":[1.0,0.0,2.0],\"type\":\"TEXT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{}}],\"content\":{\"text\":\"We’ve sent an email with a confirmation link to your email address. To complete subscription, please click the confirmation link.\",\"textContrastEnabled\":true},\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"250px\",\"height\":\"auto\",\"minWidth\":\"250px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"10px\",\"_marginEnabled\":true}},{\"classes\":\"cl-text-class-regular-text\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"354px\",\"height\":\"auto\",\"minWidth\":\"354px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"10px\",\"_marginEnabled\":true}},{\"classes\":\"cl-text-class-regular-text\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}]}},\"version\":\"1.0.0\"},{\"id\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"name\":\"SysButtonComponent\",\"path\":[1.0,0.0,3.0],\"type\":\"BUTTON\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"button\",\"styleAttributes\":{\"boxShadow\":\"none\",\"background\":\"rgba(0, 0, 0, 1)\",\"borderTopColor\":\"rgba(255, 255, 255, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgba(255, 255, 255, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgba(255, 255, 255, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgba(255, 255, 255, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"},\"hoverStyleAttributes\":{\"background\":\"rgba(0, 0, 0, 0.73)\",\"borderTopColor\":\"rgba(255, 230, 100, 0)\",\"borderLeftColor\":\"rgba(255, 230, 100, 0)\",\"borderRightColor\":\"rgba(255, 230, 100, 0)\",\"borderBottomColor\":\"rgba(255, 230, 100, 0)\"}}],\"content\":{\"text\":\"CLOSE\",\"textContrastEnabled\":true},\"handlers\":[{\"type\":\"CLICK\",\"actions\":[{\"type\":\"CLOSE_WIDGET\",\"params\":{}}]}],\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"220px\",\"height\":\"35px\",\"builder\":{\"styles\":{}},\"minWidth\":\"220px\",\"marginTop\":\"0px\",\"minHeight\":\"35px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-f38ae9ad-f7ac-4a90-88e7-1edb856cd7e5\",\"element\":\"button\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"100%\",\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"hoverAnimationType\":null,\"hoverStyleAttributes\":{\"boxShadow\":null}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"240px\",\"height\":\"40px\",\"builder\":{\"styles\":{}},\"minWidth\":\"240px\",\"marginTop\":\"0px\",\"minHeight\":\"40px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-button\",\"element\":\"button\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"100%\",\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"hoverAnimationType\":null,\"hoverStyleAttributes\":{\"boxShadow\":null}}]}},\"version\":\"1.0.0\"}],\"recursiveRemove\":true,\"preventDraggable\":true,\"focusParentOnClick\":false}]},{\"id\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"name\":\"SysColumnsComponent\",\"path\":[2.0],\"type\":\"VIEW\",\"label\":\"DOCUMENT_VIEW_TYPE_SUBSCRIBED\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"boxShadow\":\"0px 4px 20px 0px rgba(0, 0, 0, 0.25098039215686274)\",\"borderTopColor\":\"rgba(196, 196, 196, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgba(196, 196, 196, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgba(196, 196, 196, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgba(196, 196, 196, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}}],\"isResponsive\":true,\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"minHeight\":null,\"alignItems\":\"initial\",\"background\":\"rgb(255, 255, 255)\"}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"minHeight\":null,\"alignItems\":\"initial\",\"background\":\"rgb(255, 255, 255)\"}}]},\"backgroundDynamicInlineSVGElements\":null},\"version\":\"1.0.0\",\"children\":[{\"id\":\"6d1c443d-5673-47c5-abe3-23e4d08e4cb0\",\"name\":\"SysColumnComponent\",\"path\":[2.0,0.0],\"type\":\"COLUMN\",\"props\":{\"content\":{\"size\":\"1\"},\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"5px\",\"display\":\"inline-flex\",\"marginTop\":\"0px\",\"alignItems\":\"center\",\"marginLeft\":\"0px\",\"paddingTop\":\"20px\",\"marginRight\":\"0px\",\"paddingLeft\":\"20px\",\"marginBottom\":\"0px\",\"paddingRight\":\"20px\",\"flexDirection\":\"column\",\"paddingBottom\":\"20px\",\"_marginEnabled\":false,\"borderTopStyle\":\"solid\",\"justifyContent\":\"center\",\"_paddingEnabled\":true,\"borderLeftStyle\":\"solid\",\"borderRightStyle\":\"solid\",\"borderBottomStyle\":\"solid\"}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"display\":\"inline-flex\",\"marginTop\":\"0px\",\"alignItems\":\"center\",\"marginLeft\":\"0px\",\"paddingTop\":\"30px\",\"marginRight\":\"0px\",\"paddingLeft\":\"30px\",\"marginBottom\":\"0px\",\"paddingRight\":\"30px\",\"flexDirection\":\"column\",\"paddingBottom\":\"30px\",\"_marginEnabled\":false,\"borderTopStyle\":\"solid\",\"justifyContent\":\"center\",\"_paddingEnabled\":true,\"borderLeftStyle\":\"solid\",\"borderRightStyle\":\"solid\",\"borderBottomStyle\":\"solid\"}}]},\"styles\":[{\"element\":\"host\",\"styleAttributes\":{\"position\":\"relative\",\"width\":\"auto\",\"minWidth\":\"min-content\",\"height\":\"100%\",\"borderTopWidth\":\"0px\",\"borderTopColor\":\"rgb(0, 0, 0)\",\"borderBottomWidth\":\"0px\",\"borderBottomColor\":\"rgb(0, 0, 0)\",\"borderLeftWidth\":\"0px\",\"borderLeftColor\":\"rgb(0, 0, 0)\",\"borderRightWidth\":\"0px\",\"borderRightColor\":\"rgb(0, 0, 0)\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\",\"boxShadow\":\"none\",\"flexBasis\":\"0\"},\"classes\":\"\"}]},\"version\":\"1.0.0\",\"canStack\":false,\"children\":[{\"id\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"name\":\"SysTextComponent\",\"path\":[2.0,0.0,0.0],\"type\":\"TEXT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{}}],\"content\":{\"text\":\"You’re already subscribed\",\"textContrastEnabled\":true},\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"250px\",\"height\":\"auto\",\"minWidth\":\"250px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-754b776e-789f-452d-983b-869db3ab0df4\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"354px\",\"height\":\"auto\",\"minWidth\":\"354px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-h1\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}]}},\"version\":\"1.0.0\"},{\"id\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"name\":\"SysTextComponent\",\"path\":[2.0,0.0,1.0],\"type\":\"TEXT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{}}],\"content\":{\"text\":\"If you aren’t getting our emails, please check your Spam folder in case they are being delivered there instead of Inbox.  \",\"textContrastEnabled\":true},\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"250px\",\"height\":\"auto\",\"minWidth\":\"250px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"10px\",\"_marginEnabled\":true}},{\"classes\":\"cl-text-class-regular-text\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"354px\",\"height\":\"auto\",\"minWidth\":\"354px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"10px\",\"_marginEnabled\":true}},{\"classes\":\"cl-text-class-regular-text\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}]}},\"version\":\"1.0.0\"},{\"id\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"name\":\"SysButtonComponent\",\"path\":[2.0,0.0,2.0],\"type\":\"BUTTON\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"button\",\"styleAttributes\":{\"boxShadow\":\"none\",\"background\":\"rgba(0, 0, 0, 1)\",\"borderTopColor\":\"rgba(255, 255, 255, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgba(255, 255, 255, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgba(255, 255, 255, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgba(255, 255, 255, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"},\"hoverStyleAttributes\":{\"background\":\"rgba(0, 0, 0, 0.73)\",\"borderTopColor\":\"rgba(255, 230, 100, 0)\",\"borderLeftColor\":\"rgba(255, 230, 100, 0)\",\"borderRightColor\":\"rgba(255, 230, 100, 0)\",\"borderBottomColor\":\"rgba(255, 230, 100, 0)\"}}],\"content\":{\"text\":\"TRY ANOTHER EMAIL\",\"textContrastEnabled\":true},\"handlers\":[{\"type\":\"CLICK\",\"actions\":[{\"type\":\"GO_TO_VIEW\",\"params\":{\"viewId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\"}}]}],\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"220px\",\"height\":\"35px\",\"builder\":{\"styles\":{}},\"minWidth\":\"220px\",\"marginTop\":\"0px\",\"minHeight\":\"35px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-f38ae9ad-f7ac-4a90-88e7-1edb856cd7e5\",\"element\":\"button\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"100%\",\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"hoverAnimationType\":null,\"hoverStyleAttributes\":{\"boxShadow\":null}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"240px\",\"height\":\"40px\",\"builder\":{\"styles\":{}},\"minWidth\":\"240px\",\"marginTop\":\"0px\",\"minHeight\":\"40px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-button\",\"element\":\"button\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"100%\",\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"hoverAnimationType\":null,\"hoverStyleAttributes\":{\"boxShadow\":null}}]}},\"version\":\"1.0.0\"}],\"recursiveRemove\":true,\"preventDraggable\":true,\"focusParentOnClick\":false}]},{\"id\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"name\":\"SysColumnsComponent\",\"path\":[3.0],\"type\":\"VIEW\",\"label\":\"DOCUMENT_VIEW_TYPE_ERROR\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"boxShadow\":\"0px 4px 20px 0px rgba(0, 0, 0, 0.25098039215686274)\",\"borderTopColor\":\"rgba(196, 196, 196, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgba(196, 196, 196, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgba(196, 196, 196, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgba(196, 196, 196, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"}}],\"isResponsive\":true,\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"minHeight\":null,\"alignItems\":\"initial\",\"background\":\"rgb(255, 255, 255)\"}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"width\":\"auto\",\"height\":\"auto\",\"minWidth\":null,\"position\":\"relative\",\"minHeight\":null,\"alignItems\":\"initial\",\"background\":\"rgb(255, 255, 255)\"}}]},\"backgroundDynamicInlineSVGElements\":null},\"version\":\"1.0.0\",\"children\":[{\"id\":\"4cf2b2a6-04cb-4003-95ec-99ab8dbb50df\",\"name\":\"SysColumnComponent\",\"path\":[3.0,0.0],\"type\":\"COLUMN\",\"props\":{\"content\":{\"size\":\"1\"},\"adaptiveStyles\":{\"mobile\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"5px\",\"display\":\"inline-flex\",\"marginTop\":\"0px\",\"alignItems\":\"center\",\"marginLeft\":\"0px\",\"paddingTop\":\"20px\",\"marginRight\":\"0px\",\"paddingLeft\":\"20px\",\"marginBottom\":\"0px\",\"paddingRight\":\"20px\",\"flexDirection\":\"column\",\"paddingBottom\":\"20px\",\"_marginEnabled\":false,\"borderTopStyle\":\"solid\",\"justifyContent\":\"center\",\"_paddingEnabled\":true,\"borderLeftStyle\":\"solid\",\"borderRightStyle\":\"solid\",\"borderBottomStyle\":\"solid\"}}],\"desktop\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{\"gap\":\"10px\",\"display\":\"inline-flex\",\"marginTop\":\"0px\",\"alignItems\":\"center\",\"marginLeft\":\"0px\",\"paddingTop\":\"30px\",\"marginRight\":\"0px\",\"paddingLeft\":\"30px\",\"marginBottom\":\"0px\",\"paddingRight\":\"30px\",\"flexDirection\":\"column\",\"paddingBottom\":\"30px\",\"_marginEnabled\":false,\"borderTopStyle\":\"solid\",\"justifyContent\":\"center\",\"_paddingEnabled\":true,\"borderLeftStyle\":\"solid\",\"borderRightStyle\":\"solid\",\"borderBottomStyle\":\"solid\"}}]},\"styles\":[{\"element\":\"host\",\"styleAttributes\":{\"position\":\"relative\",\"width\":\"auto\",\"minWidth\":\"min-content\",\"height\":\"100%\",\"borderTopWidth\":\"0px\",\"borderTopColor\":\"rgb(0, 0, 0)\",\"borderBottomWidth\":\"0px\",\"borderBottomColor\":\"rgb(0, 0, 0)\",\"borderLeftWidth\":\"0px\",\"borderLeftColor\":\"rgb(0, 0, 0)\",\"borderRightWidth\":\"0px\",\"borderRightColor\":\"rgb(0, 0, 0)\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\",\"boxShadow\":\"none\",\"flexBasis\":\"0\"},\"classes\":\"\"}]},\"version\":\"1.0.0\",\"canStack\":false,\"children\":[{\"id\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"name\":\"SysTextComponent\",\"path\":[3.0,0.0,0.0],\"type\":\"TEXT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{}}],\"content\":{\"text\":\"Oops! Something went wrong!\",\"textContrastEnabled\":true},\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"250px\",\"height\":\"auto\",\"minWidth\":\"250px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-754b776e-789f-452d-983b-869db3ab0df4\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"354px\",\"height\":\"auto\",\"minWidth\":\"354px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-h1\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}]}},\"version\":\"1.0.0\"},{\"id\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"name\":\"SysTextComponent\",\"path\":[3.0,0.0,1.0],\"type\":\"TEXT\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"host\",\"styleAttributes\":{}}],\"content\":{\"text\":\"Subscription failed. Please try to subscribe again!\",\"textContrastEnabled\":true},\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"250px\",\"height\":\"auto\",\"minWidth\":\"250px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"10px\",\"_marginEnabled\":true}},{\"classes\":\"cl-text-class-regular-text\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"354px\",\"height\":\"auto\",\"minWidth\":\"354px\",\"marginTop\":\"0px\",\"minHeight\":null,\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"10px\",\"_marginEnabled\":true}},{\"classes\":\"cl-text-class-regular-text\",\"element\":\"text\",\"styleAttributes\":{\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false}}]}},\"version\":\"1.0.0\"},{\"id\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"name\":\"SysButtonComponent\",\"path\":[3.0,0.0,2.0],\"type\":\"BUTTON\",\"props\":{\"styles\":[{\"classes\":\"\",\"element\":\"button\",\"styleAttributes\":{\"boxShadow\":\"none\",\"background\":\"rgba(0, 0, 0, 1)\",\"borderTopColor\":\"rgba(255, 255, 255, 1)\",\"borderTopStyle\":\"solid\",\"borderTopWidth\":\"0px\",\"borderLeftColor\":\"rgba(255, 255, 255, 1)\",\"borderLeftStyle\":\"solid\",\"borderLeftWidth\":\"0px\",\"borderRightColor\":\"rgba(255, 255, 255, 1)\",\"borderRightStyle\":\"solid\",\"borderRightWidth\":\"0px\",\"borderBottomColor\":\"rgba(255, 255, 255, 1)\",\"borderBottomStyle\":\"solid\",\"borderBottomWidth\":\"0px\",\"borderTopLeftRadius\":\"0px\",\"borderTopRightRadius\":\"0px\",\"borderBottomLeftRadius\":\"0px\",\"borderBottomRightRadius\":\"0px\"},\"hoverStyleAttributes\":{\"background\":\"rgba(0, 0, 0, 0.73)\",\"borderTopColor\":\"rgba(255, 230, 100, 0)\",\"borderLeftColor\":\"rgba(255, 230, 100, 0)\",\"borderRightColor\":\"rgba(255, 230, 100, 0)\",\"borderBottomColor\":\"rgba(255, 230, 100, 0)\"}}],\"content\":{\"text\":\"TRY AGAIN!\",\"textContrastEnabled\":true},\"handlers\":[{\"type\":\"CLICK\",\"actions\":[{\"type\":\"SUBSCRIBE_CONTACT\",\"params\":{\"viewIndexOnError\":3.0,\"viewIndexOnSuccess\":1.0,\"viewIndexOnSubscribed\":2.0}}]}],\"adaptiveStyles\":{\"mobile\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"220px\",\"height\":\"35px\",\"builder\":{\"styles\":{}},\"minWidth\":\"220px\",\"marginTop\":\"0px\",\"minHeight\":\"35px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-f38ae9ad-f7ac-4a90-88e7-1edb856cd7e5\",\"element\":\"button\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"100%\",\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"hoverAnimationType\":null,\"hoverStyleAttributes\":{\"boxShadow\":null}}],\"desktop\":[{\"element\":\"host\",\"styleAttributes\":{\"width\":\"240px\",\"height\":\"40px\",\"builder\":{\"styles\":{}},\"minWidth\":\"240px\",\"marginTop\":\"0px\",\"minHeight\":\"40px\",\"marginLeft\":\"0px\",\"marginRight\":\"0px\",\"marginBottom\":\"0px\",\"_marginEnabled\":false}},{\"classes\":\"cl-text-class-button\",\"element\":\"button\",\"styleAttributes\":{\"width\":\"100%\",\"height\":\"100%\",\"paddingTop\":\"0px\",\"paddingLeft\":\"0px\",\"paddingRight\":\"0px\",\"paddingBottom\":\"0px\",\"_paddingEnabled\":false},\"hoverAnimationType\":null,\"hoverStyleAttributes\":{\"boxShadow\":null}}]}},\"version\":\"1.0.0\"}],\"recursiveRemove\":true,\"preventDraggable\":true,\"focusParentOnClick\":false}]}]}",
    "sync": "{\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"}],\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"TEXT_VISIBILITY\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"TEXT_VISIBILITY\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"button\",\"syncState\":null,\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"button\",\"syncState\":null,\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"margin\"},{\"env\":null,\"control\":\"HOVER_ANIMATION\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null}],\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"height\"},{\"env\":\"DESKTOP\",\"control\":\"RADIO_BUTTONS\",\"element\":\"image\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"objectFit\"},{\"env\":\"MOBILE\",\"control\":\"RADIO_BUTTONS\",\"element\":\"image\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"objectFit\"},{\"env\":\"DESKTOP\",\"control\":\"BORDER_RADIUS\",\"element\":\"image\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BORDER_RADIUS\",\"element\":\"image\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e70c1397-e5ed-4cae-8ca2-c94b0cf229e7\",\"viewEntryType\":\"IMAGE\",\"syncControlPropertyName\":\"margin\"}],\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"TEXT_VISIBILITY\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"TEXT_VISIBILITY\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"button\",\"syncState\":null,\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"button\",\"syncState\":null,\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"margin\"},{\"env\":null,\"control\":\"HOVER_ANIMATION\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null}],\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"padding\"},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"INPUT_LABEL\",\"element\":\"label\",\"syncState\":null,\"componentId\":\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null}],\"13773407-892c-48d0-a400-8603b2761cb9\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"TEXT_VISIBILITY\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"TEXT_VISIBILITY\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"button\",\"syncState\":null,\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"button\",\"syncState\":null,\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"margin\"},{\"env\":null,\"control\":\"HOVER_ANIMATION\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"13773407-892c-48d0-a400-8603b2761cb9\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null}],\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"height\"},{\"env\":\"DESKTOP\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"DESKTOP\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"6d5ec7b3-125d-4375-8e27-e7765a9aff2e\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null}],\"e0963145-1b40-465e-9682-a3fa61dcd705\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"text\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"text\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"text\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"text\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"text\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"text\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":\"margin\"},{\"env\":null,\"control\":\"HOVER_ANIMATION\",\"element\":\"text\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"PROMOCODE_ICON\",\"element\":\"icon\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"e0963145-1b40-465e-9682-a3fa61dcd705\",\"viewEntryType\":\"PROMO_CODE\",\"syncControlPropertyName\":null}],\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"}],\"36ee404a-45d2-4cdb-8a88-a80991314d8c\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"padding\"},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"INPUT_LABEL\",\"element\":\"label\",\"syncState\":null,\"componentId\":\"36ee404a-45d2-4cdb-8a88-a80991314d8c\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null}],\"54ab9631-f34a-468e-b26d-821141c8041c\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"54ab9631-f34a-468e-b26d-821141c8041c\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"}],\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"}],\"37f5d432-b28d-427a-8c00-abdf3596aca9\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"37f5d432-b28d-427a-8c00-abdf3596aca9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"}],\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"}],\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"height\"},{\"env\":\"DESKTOP\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"DESKTOP\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"fff58784-6ad6-4ff0-b3f4-994b9dc43284\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null}],\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":\"padding\"},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"input\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"INPUT_LABEL\",\"element\":\"label\",\"syncState\":null,\"componentId\":\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\",\"viewEntryType\":\"INPUT\",\"syncControlPropertyName\":null}],\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"TEXT_VISIBILITY\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"TEXT_VISIBILITY\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"button\",\"syncState\":null,\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"button\",\"syncState\":null,\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":\"margin\"},{\"env\":null,\"control\":\"HOVER_ANIMATION\",\"element\":\"button\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\",\"viewEntryType\":\"BUTTON\",\"syncControlPropertyName\":null}],\"b2b9b57d-f3df-405f-a9e8-76708962a669\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"height\"},{\"env\":\"DESKTOP\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"DESKTOP\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"b2b9b57d-f3df-405f-a9e8-76708962a669\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null}],\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"}],\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"height\"},{\"env\":null,\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"text\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\",\"viewEntryType\":\"TEXT\",\"syncControlPropertyName\":\"margin\"}],\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"height\"},{\"env\":\"DESKTOP\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_ENV\",\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV\",\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"DESKTOP\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"99ee4ae3-d8ad-42ef-ba66-a610220b25ce\",\"viewEntryType\":\"VIEW\",\"syncControlPropertyName\":null}],\"6b3f7e32-d5db-44cb-a710-35ae131ef725\":[{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":\"width\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":\"width\"},{\"env\":\"DESKTOP\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":\"height\"},{\"env\":\"MOBILE\",\"control\":\"SIZE\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":\"height\"},{\"env\":\"DESKTOP\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"ALIGNMENT\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BACKDROP_FILTER\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BOX_SHADOW\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDERS\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":null},{\"env\":null,\"control\":\"BORDER_RADIUS\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":null},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":\"padding\"},{\"env\":\"DESKTOP\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"MOBILE\",\"control\":\"INDENTATION\",\"element\":\"host\",\"syncState\":null,\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":\"margin\"},{\"env\":\"DESKTOP\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":null},{\"env\":\"MOBILE\",\"control\":\"BACKGROUND\",\"element\":\"host\",\"syncState\":\"SAME_TYPE_CROSS_ENV_WHILE_VALUES_MATCH\",\"componentId\":\"6b3f7e32-d5db-44cb-a710-35ae131ef725\",\"viewEntryType\":\"CONTAINER\",\"syncControlPropertyName\":null}]}"
  },
  {
    "id": 75201,
    "language": "es",
    "origin": false,
    "translations": "{\"9507004a-4d33-45c3-a8a6-a61bb26d2f46\":{\"content,text\":\"Hemos enviado un correo electrónico con un enlace de confirmación a tu dirección de correo electrónico. Para completar la suscripción, haz clic en el enlace de confirmación.\"},\"00d891aa-f09b-4ff6-8a23-42e797e8eff8\":{\"content,text\":\"PROBAR CON OTRO CORREO ELECTRÓNICO\"},\"eb4bd830-411c-4f34-a7ef-a413dd3df35d\":{\"content,text\":\"BOTÓN\"},\"c4e5b5aa-c215-457c-8e0a-1155ebee1e7c\":{\"content,label\":\"Título\",\"content,suggestionLabel\":\"Quisiste decir\",\"content,placeholder\":\"Nombre\"},\"13773407-892c-48d0-a400-8603b2761cb9\":{\"content,text\":\"¡INTÉNTALO DE NUEVO!\"},\"6c0f0c68-b311-4fa7-8a4e-9077139aa6e0\":{\"content,text\":\"¡Gracias por suscribirte!\"},\"e0963145-1b40-465e-9682-a3fa61dcd705\":{\"content,text\":\"SALE_15\"},\"36ee404a-45d2-4cdb-8a88-a80991314d8c\":{\"content,label\":\"Título\",\"content,placeholder\":\"Correo electrónico\"},\"54ab9631-f34a-468e-b26d-821141c8041c\":{\"content,text\":\"Ya estás suscrito\"},\"9df981d7-8b5b-4bfe-ab86-68a6d5205be7\":{\"content,text\":\"Si no estás recibiendo nuestros correos electrónicos, por favor revisa tu carpeta de Spam en caso de que se estén entregando allí en lugar de en la Bandeja de entrada.\"},\"37f5d432-b28d-427a-8c00-abdf3596aca9\":{\"content,text\":\"¡Ups! ¡Algo salió mal!\"},\"9c044c4a-9fb5-4bbb-a6bd-a747e702d7bd\":{\"content,text\":\"Título\"},\"37fbd7a0-72d7-4f27-98cd-422d4cea025e\":{\"content,label\":\"Título\"},\"98d10d1a-3cfd-458d-82ba-1279f2e264b4\":{\"content,text\":\"CERRAR\"},\"4ef2b5e6-0bd4-4351-8b3b-64b14a30ba1f\":{\"content,text\":\"Texto regular\"},\"ed86bd61-1acb-4b53-b2ce-c0624c05a9e9\":{\"content,text\":\"La suscripción falló. ¡Por favor, intenta suscribirte de nuevo!\"}}",
    "document": null,
    "sync": null
  }
]

WidgetRevisionI

interface WidgetRevisionI {
  uuid: string;
  createdDate: string;
  widgetId: number;
  userId: number;
  published: boolean;
  changesSaved: boolean;
  payload: {
    type: WidgetType;
    presentation: {
      type: LayoutType;
    };
    linkedTo: number | null;
    appearances: {
      id: number;
      origin: boolean;
      lang: string | null;
      translations: {
        [id: string]: {[propPath: string]: string};
      };
      document: ClDocumentI;
      sync: any;
    }[];
    prizePoolIds?: string[];
    publishStatus?: WidgetPublishStatus; // only for teaser
  };
}

Example:

{
  "uuid": "90973d51-367b-4f36-acf2-1d0fd88a7044",
  "widgetId": 70806,
  "createdDate": "2026-01-20T09:12:17.477+00:00",
  "payload": {
    "type": "SUBSCRIPTION_FORM",
    "presentation": {
      "type": "DETACHED",
      "prizePoolIds": null
    },
    "linkedTo": 70807,
    "appearances": [
      {
        "id": 73987,
        "translations": null,
        "document": {},
        "sync": {},
        "lang": "en",
        "origin": true,
      },
      {
        "id": null,
        "translations": {},
        "document": null,
        "sync": null,
        "lang": "es",
        "origin": false,
      }
    ]
  },
  "userId": 303,
  "userName": "[email protected]"
}

ProjectConfigI

interface ProjectConfigI {
  id: ProjectConfigId
  value: string;
}

Example:

{
  "id": "COUNTRY_CODES_PRIORITY",
  "value": "{\"includedList\":[\"PT\",\"ES\",\"FR\"],\"allowToAddOnlyFromIncludedList\":false}"
}

ProjectConfigId

enum ProjectConfigId {
  COUNTRY_CODES_PRIORITY = 'COUNTRY_CODES_PRIORITY',
}

ImageLibraryResponseI

interface ImageLibraryResponseI {
  data: ImageLibraryItemI[];
  total: number;
}

ImageLibraryItemI

{
  url: string;
  smallUrl: string;
}

Note: smallUrl is for a image preview with lower resolution

UserImagesResponseI

interface UserImagesResponseI {
  items: {url: string}[];
  total: number;
}

UploadImagePayloadI

interface UploadImagePayloadI {
  file: FormData;
  widgetId: number;
  type?: string;
}

Note: type can be used as directory to store related images

TranslateRequestI

interface TranslateRequestI {
  json: TranslateRequestJsonI;
  sourceLanguage: string;
  targetLanguage: string;
}

Example:

{
  "json": {
    "widgetTranslations": {
      "876d3fdd-8c31-43c2-8e20-944a2cae4104": {
        "content,text": "Want 10% off?"
      },
      "8054178e-e666-4e25-9128-da111b20d1d3": {
        "content,text": "fill out the form to get a discount"
      }
    },
    "teaserTranslations": {
      "15442d1d-001e-45e0-8ade-6e047bae05a7": {
        "content,text": "10% off"
      }
    }
  },
  "sourceLanguage": "en",
  "targetLanguage": "pl"
}

TranslateRequestJsonI

interface TranslateRequestJsonI {
  widgetTranslations: LanguageTranslation;
  teaserTranslations?: LanguageTranslation;
}

interface LanguageTranslation {
  [id: string]: ComponentTranslateMapI;
}

interface ComponentTranslateMapI {
  [propPath: string]: string;
}

CreateWidgetPayloadI

interface CreateWidgetPayloadI {
  name: string;
  variant: CreateWidgetVariantPayloadI;
  publishStatus?: FormPublishStatus;
}

interface CreateWidgetVariantPayloadI {
  type: WidgetType;
  config: WidgetVariantConfigI;
  appearances: WidgetAppearanceI[];
  linkedToVariantId?: number;
}

CreateWidgetResponseI

interface CreateWidgetResponseI {
  variant: WidgetVariantI;
  appearances: WidgetAppearanceI[];
}