{
    "$schema": "https://schemas.wp.org/trunk/block.json",
    "apiVersion": 3,
    "name": "tpgb/tp-container",
    "version": "0.1.0",
    "title": "Container",
    "category": "tpgb",
    "description": "Segment your full width page into horizontal rows.",
    "example": {
        "attributes": {}
    },
    "supports": {
        "anchor": true,
        "html": false,
        "align": [
            "wide",
            "full"
        ]
    },
    "textdomain": "the-plus-addons-for-block-editor",
    "attributes": {
        "block_id": {
            "type": "string",
            "default": ""
        },
        "anchor": {
            "type": "string"
        },
        "className": {
            "type": "string",
            "default": ""
        },
        "columns": {
            "type": "number",
            "default": ""
        },
        "contentWidth": {
            "type": "string",
            "default": "wide"
        },
        "align": {
            "type": "string",
            "default": "wide"
        },
        "containerWide": {
            "type": "object",
            "default": {
                "md": "",
                "unit": "%"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in{ --content-width : {{containerWide}};}"
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-nxtcont-type.tpgb-container-wide.alignwide { max-width : {{containerWide}} !important; } "
                }
            ]
        },
        "contwidFull": {
            "type": "string",
            "default": ""
        },
        "containerFull": {
            "type": "object",
            "default": {
                "md": 100,
                "unit": "vw"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_CLIENT_ID}}{ max-width : {{containerFull}}  !important;}",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "body {{PLUS_WRAP}}.alignfull.tpgb-container-full.tpgb-container-row{ max-width : {{containerFull}} !important;}",
                    "backend": false
                }
            ]
        },
        "colDir": {
            "type": "string",
            "default": ""
        },
        "sectionWidth": {
            "type": "string",
            "default": "boxed"
        },
        "height": {
            "type": "string",
            "default": ""
        },
        "minHeight": {
            "type": "object",
            "default": {
                "md": 300,
                "unit": "px"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "height",
                            "relation": "==",
                            "value": "min-height"
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in { min-height: {{minHeight}};}"
                },
                {
                    "condition": [
                        {
                            "key": "height",
                            "relation": "==",
                            "value": "min-height"
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}{ min-height: {{minHeight}};}"
                },
                {
                    "condition": [
                        {
                            "key": "height",
                            "relation": "==",
                            "value": "min-height"
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": " {{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ min-height: {{minHeight}};}",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "height",
                            "relation": "==",
                            "value": "min-height"
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .block-editor-block-list__layout { min-height: {{minHeight}}; }",
                    "backend": false
                }
            ]
        },
        "gutterSpace": {
            "type": "object",
            "default": {
                "md": 15,
                "unit": "px"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout> .components-resizable-box__container > [data-type=\"tpgb/tp-container-inner\"].tpgb-container-col-editor{ padding: {{gutterSpace}}; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .tpgb-container-col{ padding: {{gutterSpace}}; }"
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .block-editor-block-list__layout > .components-resizable-box__container > [data-type=\"tpgb/tp-container-inner\"].tpgb-container-col-editor{ padding: {{gutterSpace}}; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-container-col{ padding: {{gutterSpace}}; }"
                }
            ]
        },
        "tagName": {
            "type": "string",
            "default": "div"
        },
        "overflow": {
            "type": "string",
            "default": "",
            "style": [
                {
                    "selector": "{{PLUS_WRAP}}{ overflow: {{overflow}}; }"
                }
            ]
        },
        "customClass": {
            "type": "string",
            "default": ""
        },
        "customId": {
            "type": "string",
            "default": ""
        },
        "customCss": {
            "type": "string",
            "default": "",
            "style": [
                {
                    "selector": ""
                }
            ]
        },
        "shapeTop": {
            "type": "string",
            "default": "",
            "scopy": true
        },
        "shapeBottom": {
            "type": "string",
            "default": "",
            "scopy": true
        },
        "NormalBg": {
            "type": "object",
            "default": {
                "openBg": 0,
                "bgType": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}}"
                }
            ],
            "scopy": true
        },
        "HoverBg": {
            "type": "object",
            "default": {
                "openBg": 0,
                "bgType": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}}:hover"
                }
            ],
            "scopy": true
        },
        "NormalBorder": {
            "type": "object",
            "default": {
                "openBorder": 0,
                "type": "",
                "color": "",
                "width": {
                    "md": {
                        "top": "",
                        "bottom": "",
                        "left": "",
                        "right": ""
                    },
                    "unit": ""
                }
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}}"
                }
            ],
            "scopy": true
        },
        "HoverBorder": {
            "type": "object",
            "default": {
                "openBorder": 0,
                "type": "",
                "color": "",
                "width": {
                    "md": {
                        "top": "",
                        "bottom": "",
                        "left": "",
                        "right": ""
                    },
                    "unit": ""
                }
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}}:hover"
                }
            ],
            "scopy": true
        },
        "NormalBradius": {
            "type": "object",
            "default": {
                "md": {
                    "top": "",
                    "bottom": "",
                    "left": "",
                    "right": ""
                },
                "unit": "px"
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}} , {{PLUS_WRAP}} > .tpgb-top-layer { border-radius: {{NormalBradius}}; }"
                }
            ],
            "scopy": true
        },
        "HoverBradius": {
            "type": "object",
            "default": {
                "md": {
                    "top": "",
                    "bottom": "",
                    "left": "",
                    "right": ""
                },
                "unit": "px"
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}}:hover , {{PLUS_WRAP}}:hover > .tpgb-top-layer { border-radius: {{HoverBradius}}; }"
                }
            ],
            "scopy": true
        },
        "NormalBShadow": {
            "type": "object",
            "default": {
                "openShadow": 0,
                "inset": 0,
                "horizontal": 0,
                "vertical": 4,
                "blur": 8,
                "spread": 0,
                "color": "rgba(0,0,0,0.40)"
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}}"
                }
            ],
            "scopy": true
        },
        "HoverBShadow": {
            "type": "object",
            "default": {
                "openShadow": 0,
                "inset": 0,
                "horizontal": 0,
                "vertical": 4,
                "blur": 8,
                "spread": 0,
                "color": "rgba(0,0,0,0.40)"
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}}:hover"
                }
            ],
            "scopy": true
        },
        "Margin": {
            "type": "object",
            "default": {
                "md": {
                    "top": "",
                    "bottom": "",
                    "left": "",
                    "right": ""
                },
                "unit": "px"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "align",
                            "relation": "!=",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}{margin: {{Margin}} !important; }"
                },
                {
                    "condition": [
                        {
                            "key": "align",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.alignfull{margin: {{Margin}}; }"
                }
            ],
            "scopy": true
        },
        "Padding": {
            "type": "object",
            "default": {
                "md": {
                    "top": "",
                    "bottom": "",
                    "left": "",
                    "right": ""
                },
                "unit": "px"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}{ padding-left: {{LEFT}}{{Padding}} } {{PLUS_WRAP}}{ padding-right: {{RIGHT}}{{Padding}} } {{PLUS_WRAP}} > .tpgb-cont-in{ padding-top: {{TOP}}{{Padding}} } {{PLUS_WRAP}} > .tpgb-cont-in{ padding-bottom: {{BOTTOM}}{{Padding}} }"
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}{ padding : {{Padding}} }"
                }
            ],
            "scopy": true
        },
        "ZIndex": {
            "type": "string",
            "default": "",
            "style": [
                {
                    "selector": "{{PLUS_WRAP}}{z-index: {{ZIndex}};}"
                }
            ],
            "scopy": true
        },
        "HideDesktop": {
            "type": "boolean",
            "default": false,
            "style": [
                {
                    "selector": "@media (min-width: 1201px){ .edit-post-visual-editor {{PLUS_WRAP}},.editor-styles-wrapper {{PLUS_WRAP}}{display: block;opacity: .5;}}",
                    "backend": true
                },
                {
                    "selector": "@media (min-width: 1201px){ {{PLUS_WRAP}}{ display:none } }"
                }
            ],
            "scopy": true
        },
        "HideTablet": {
            "type": "boolean",
            "default": false,
            "style": [
                {
                    "selector": "@media (min-width: 768px) and (max-width: 1200px){ .edit-post-visual-editor {{PLUS_WRAP}},.editor-styles-wrapper {{PLUS_WRAP}}{display: block;opacity: .5;} }",
                    "backend": true
                },
                {
                    "selector": "@media (min-width: 768px) and (max-width: 1200px){  {{PLUS_WRAP}}{ display:none } }"
                }
            ],
            "scopy": true
        },
        "HideMobile": {
            "type": "boolean",
            "default": false,
            "style": [
                {
                    "selector": "@media (max-width: 1024px){.text-center{text-align: center;}}@media (max-width: 767px){ .edit-post-visual-editor {{PLUS_WRAP}},.editor-styles-wrapper {{PLUS_WRAP}}{display: block !important;opacity: .5;} }",
                    "backend": true
                },
                {
                    "selector": "@media (max-width: 1024px){.text-center{text-align: center;}}@media (max-width: 767px){ {{PLUS_WRAP}}{ display:none !important; } }"
                }
            ],
            "scopy": true
        },
        "wrapLink": {
            "type": "boolean",
            "default": false
        },
        "rowUrl": {
            "type": "object",
            "default": {
                "url": "",
                "target": "",
                "nofollow": ""
            }
        },
        "flexreverse": {
            "type": "boolean",
            "default": false,
            "scopy": true
        },
        "flexRespreverse": {
            "type": "boolean",
            "default": false,
            "scopy": true
        },
        "flexTabreverse": {
            "type": "boolean",
            "default": false,
            "scopy": true
        },
        "flexMobreverse": {
            "type": "boolean",
            "default": false,
            "scopy": true
        },
        "flexDirection": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": "column"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "flexreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "{{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in { flex-direction: {{flexDirection}} }",
                    "media": "md"
                },
                {
                    "condition": [
                        {
                            "key": "flexreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout, {{PLUS_WRAP}} > .block-editor-block-list__layout{ flex-direction: {{flexDirection}} }",
                    "media": "md",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "flexreverse",
                            "relation": "==",
                            "value": true
                        }
                    ],
                    "selector": "{{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in { flex-direction: {{flexDirection}}-reverse }",
                    "media": "md"
                },
                {
                    "condition": [
                        {
                            "key": "flexreverse",
                            "relation": "==",
                            "value": true
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout,{{PLUS_WRAP}} > .block-editor-block-list__layout{ flex-direction: {{flexDirection}}-reverse }",
                    "media": "md",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "@media (max-width: 1024px) { {{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in { flex-direction: {{flexDirection}} } }",
                    "media": "sm"
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "@media (max-width: 1024px) { {{PLUS_WRAP}} > .block-editor-block-list__layout,{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ flex-direction: {{flexDirection}} } }",
                    "media": "sm",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "flexTabreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "@media (max-width: 1024px) and (min-width:768px) { {{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in { flex-direction: {{flexDirection}} } }",
                    "media": "sm"
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "flexTabreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "@media (max-width: 1024px) and (min-width:768px) { {{PLUS_WRAP}} > .block-editor-block-list__layout,{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ flex-direction: {{flexDirection}} } }",
                    "media": "sm",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "flexTabreverse",
                            "relation": "==",
                            "value": true
                        }
                    ],
                    "selector": "@media (max-width: 1024px) and (min-width:768px) { {{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in { flex-direction: {{flexDirection}}-reverse  } }",
                    "media": "sm"
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "flexTabreverse",
                            "relation": "==",
                            "value": true
                        }
                    ],
                    "selector": "@media (max-width: 1024px) and (min-width:768px) { {{PLUS_WRAP}} > .block-editor-block-list__layout,{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ flex-direction: {{flexDirection}}-reverse  } }",
                    "media": "sm",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "@media (max-width: 1024px){.text-center{text-align: center;}}@media (max-width: 767px) { {{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in{ flex-direction: {{flexDirection}} } }",
                    "media": "xs"
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "@media (max-width: 1024px){.text-center{text-align: center;}}@media (max-width: 767px) { {{PLUS_WRAP}} > .block-editor-block-list__layout,{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ flex-direction: {{flexDirection}} } }",
                    "media": "xs",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "flexMobreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "@media (max-width: 1024px){.text-center{text-align: center;}}@media (max-width: 767px) { {{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in{ flex-direction: {{flexDirection}} } }",
                    "media": "xs"
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "flexMobreverse",
                            "relation": "==",
                            "value": false
                        }
                    ],
                    "selector": "@media (max-width: 1024px){.text-center{text-align: center;}}@media (max-width: 767px) { {{PLUS_WRAP}} > .block-editor-block-list__layout,{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ flex-direction: {{flexDirection}} } }",
                    "media": "xs",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "flexMobreverse",
                            "relation": "==",
                            "value": true
                        }
                    ],
                    "selector": "@media (max-width: 1024px){.text-center{text-align: center;}}@media (max-width: 767px){ {{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in { flex-direction: {{flexDirection}}-reverse  } }",
                    "media": "xs"
                },
                {
                    "condition": [
                        {
                            "key": "flexRespreverse",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "flexMobreverse",
                            "relation": "==",
                            "value": true
                        }
                    ],
                    "selector": "@media (max-width: 1024px){.text-center{text-align: center;}}@media (max-width: 767px){ {{PLUS_WRAP}} > .block-editor-block-list__layout,{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ flex-direction: {{flexDirection}}-reverse  } }",
                    "media": "xs",
                    "backend": true
                }
            ],
            "scopy": true
        },
        "flexAlign": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}} > .block-editor-block-list__layout,{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ align-items : {{flexAlign}} }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in{ align-items : {{flexAlign}} }"
                }
            ],
            "scopy": true
        },
        "flexJustify": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_WRAP}} > .block-editor-block-list__layout,{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ justify-content : {{flexJustify}} }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}},{{PLUS_WRAP}} > .tpgb-cont-in{ justify-content : {{flexJustify}} }"
                }
            ],
            "scopy": true
        },
        "flexGap": {
            "type": "object",
            "default": {
                "md": "",
                "unit": "px"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ gap : {{flexGap}} }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in{ gap : {{flexGap}} }"
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .block-editor-block-list__layout{ gap : {{flexGap}} }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}{ gap : {{flexGap}} }"
                }
            ],
            "scopy": true
        },
        "flexwrap": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": "wrap"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "reverseWrap",
                            "relation": "==",
                            "value": false
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ flex-wrap : {{flexwrap}} }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "reverseWrap",
                            "relation": "==",
                            "value": false
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in{ flex-wrap : {{flexwrap}} }"
                },
                {
                    "condition": [
                        {
                            "key": "reverseWrap",
                            "relation": "==",
                            "value": false
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row-editor > .block-editor-block-list__layout{ flex-wrap : {{flexwrap}} }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "reverseWrap",
                            "relation": "==",
                            "value": false
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}{ flex-wrap : {{flexwrap}} }"
                },
                {
                    "condition": [
                        {
                            "key": "reverseWrap",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ flex-wrap : {{flexwrap}}-reverse }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "reverseWrap",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in{ flex-wrap : {{flexwrap}}-reverse }"
                },
                {
                    "condition": [
                        {
                            "key": "reverseWrap",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .block-editor-block-list__layout{ flex-wrap : {{flexwrap}}-reverse }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "reverseWrap",
                            "relation": "==",
                            "value": true
                        },
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}{ flex-wrap : {{flexwrap}}-reverse }"
                }
            ],
            "scopy": true
        },
        "alignWrap": {
            "type": "object",
            "default": {
                "md": "flex-end",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .block-editor-block-list__layout{ align-content : {{alignWrap}} }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in{ align-content : {{alignWrap}} }"
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .block-editor-block-list__layout{ align-content : {{alignWrap}} }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}{ align-content : {{alignWrap}} }"
                }
            ],
            "scopy": true
        },
        "reverseWrap": {
            "type": "boolean",
            "default": false
        },
        "flexChild": {
            "type": "array",
            "repeaterField": [
                {
                    "flexShrink": {
                        "type": "object",
                        "default": {
                            "md": ""
                        },
                        "style": [
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "wide"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > .tpgb-cont-in > *:nth-child({{TP_INDEX}}){ flex-shrink : {{flexShrink}} }"
                            },
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "full"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > *:nth-child({{TP_INDEX}}){ flex-shrink : {{flexShrink}} }"
                            }
                        ],
                        "scopy": true
                    },
                    "flexGrow": {
                        "type": "object",
                        "default": {
                            "md": ""
                        },
                        "style": [
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "wide"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > .tpgb-cont-in > *:nth-child({{TP_INDEX}}){ flex-grow : {{flexGrow}} }"
                            },
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "full"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > *:nth-child({{TP_INDEX}}){ flex-grow : {{flexGrow}} }"
                            }
                        ],
                        "scopy": true
                    },
                    "flexBasis": {
                        "type": "object",
                        "default": {
                            "md": "",
                            "unit": "%"
                        },
                        "style": [
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "wide"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > .tpgb-cont-in > *:nth-child({{TP_INDEX}}){ flex-basis : {{flexBasis}} }"
                            },
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "full"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > *:nth-child({{TP_INDEX}}){ flex-basis : {{flexBasis}} }"
                            }
                        ],
                        "scopy": true
                    },
                    "flexselfAlign": {
                        "type": "object",
                        "default": {
                            "md": "auto",
                            "sm": "",
                            "xs": ""
                        },
                        "style": [
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "wide"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > .tpgb-cont-in > *:nth-child({{TP_INDEX}}){ align-self : {{flexselfAlign}} }"
                            },
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "full"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > *:nth-child({{TP_INDEX}}){ align-self : {{flexselfAlign}} }"
                            }
                        ],
                        "scopy": true
                    },
                    "flexOrder": {
                        "type": "object",
                        "default": {
                            "md": "",
                            "sm": "",
                            "xs": ""
                        },
                        "style": [
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "wide"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > .tpgb-cont-in > *:nth-child({{TP_INDEX}}){ order : {{flexOrder}} }"
                            },
                            {
                                "condition": [
                                    {
                                        "key": "contentWidth",
                                        "relation": "==",
                                        "value": "full"
                                    },
                                    {
                                        "key": "showchild",
                                        "relation": "==",
                                        "value": true
                                    }
                                ],
                                "selector": "{{PLUS_WRAP}}:not(.tpgb-container-row-editor) > *:nth-child({{TP_INDEX}}){ order : {{flexOrder}} }"
                            }
                        ],
                        "scopy": true
                    }
                }
            ],
            "default": [
                {
                    "_key": "cvi9",
                    "flexShrink": {
                        "md": ""
                    },
                    "flexGrow": {
                        "md": ""
                    },
                    "flexBasis": {
                        "md": ""
                    },
                    "flexselfAlign": {
                        "md": ""
                    },
                    "flexOrder": {
                        "md": ""
                    }
                }
            ]
        },
        "showchild": {
            "type": "boolean",
            "default": false
        },
        "conPosi": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}}{ position : {{conPosi}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { position : {{conPosi}}; }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "conhorizoOri": {
            "type": "object",
            "default": {
                "md": "left",
                "sm": "",
                "xs": ""
            }
        },
        "conhoriOffset": {
            "type": "object",
            "default": {
                "md": "0",
                "unit": "px"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "conPosi",
                            "relation": "==",
                            "value": [
                                "absolute",
                                "fixed"
                            ]
                        },
                        {
                            "key": "conhorizoOri",
                            "relation": "==",
                            "value": "left"
                        }
                    ],
                    "selector": "{{PLUS_CLIENT_ID}}{ left : {{conhoriOffset}};right : auto; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "conPosi",
                            "relation": "==",
                            "value": [
                                "absolute",
                                "fixed"
                            ]
                        },
                        {
                            "key": "conhorizoOri",
                            "relation": "==",
                            "value": "left"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { left : {{conhoriOffset}};right : auto; }",
                    "backend": false
                },
                {
                    "condition": [
                        {
                            "key": "conPosi",
                            "relation": "==",
                            "value": [
                                "absolute",
                                "fixed"
                            ]
                        },
                        {
                            "key": "conhorizoOri",
                            "relation": "==",
                            "value": "right"
                        }
                    ],
                    "selector": "{{PLUS_CLIENT_ID}}{ right : {{conhoriOffset}};left : auto; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "conPosi",
                            "relation": "==",
                            "value": [
                                "absolute",
                                "fixed"
                            ]
                        },
                        {
                            "key": "conhorizoOri",
                            "relation": "==",
                            "value": "right"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { right : {{conhoriOffset}};left : auto; }",
                    "backend": false
                }
            ]
        },
        "conabverticalOri": {
            "type": "object",
            "default": {
                "md": "top",
                "sm": "",
                "xs": ""
            }
        },
        "converticalOffset": {
            "type": "object",
            "default": {
                "md": "0",
                "unit": "px"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "conPosi",
                            "relation": "==",
                            "value": [
                                "absolute",
                                "fixed"
                            ]
                        },
                        {
                            "key": "conabverticalOri",
                            "relation": "==",
                            "value": "top"
                        }
                    ],
                    "selector": "{{PLUS_CLIENT_ID}}{ top : {{converticalOffset}}; bottom : auto; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "conPosi",
                            "relation": "==",
                            "value": [
                                "absolute",
                                "fixed"
                            ]
                        },
                        {
                            "key": "conabverticalOri",
                            "relation": "==",
                            "value": "top"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { top : {{converticalOffset}}; bottom : auto; }",
                    "backend": false
                },
                {
                    "condition": [
                        {
                            "key": "conPosi",
                            "relation": "==",
                            "value": [
                                "absolute",
                                "fixed"
                            ]
                        },
                        {
                            "key": "conabverticalOri",
                            "relation": "==",
                            "value": "bottom"
                        }
                    ],
                    "selector": "{{PLUS_CLIENT_ID}}{ bottom : {{converticalOffset}}; top : auto; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "conPosi",
                            "relation": "==",
                            "value": [
                                "absolute",
                                "fixed"
                            ]
                        },
                        {
                            "key": "conabverticalOri",
                            "relation": "==",
                            "value": "bottom"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { bottom : {{converticalOffset}}; top : auto; }",
                    "backend": false
                }
            ]
        },
        "columnsRepeater": {
            "type": "array",
            "repeaterField": [
                {
                    "gridProperty": {
                        "type": "object",
                        "default": {
                            "md": "custom"
                        }
                    },
                    "gridMin": {
                        "type": "object",
                        "default": {
                            "md": "10",
                            "unit": "px"
                        }
                    },
                    "gridMax": {
                        "type": "object",
                        "default": {
                            "md": "1",
                            "unit": "fr"
                        }
                    },
                    "gridWidth": {
                        "type": "object",
                        "default": {
                            "md": "1",
                            "unit": "fr"
                        }
                    }
                }
            ],
            "default": [
                {
                    "_key": "0",
                    "gridProperty": {
                        "md": "custom"
                    },
                    "gridMin": {
                        "md": "10",
                        "unit": "px"
                    },
                    "gridMax": {
                        "md": "1",
                        "unit": "fr"
                    },
                    "gridWidth": {
                        "md": "1",
                        "unit": "fr"
                    }
                }
            ]
        },
        "rowsRepeater": {
            "type": "array",
            "repeaterField": [
                {
                    "gridRowProperty": {
                        "type": "object",
                        "default": {
                            "md": "custom"
                        }
                    },
                    "gridRowMin": {
                        "type": "object",
                        "default": {
                            "md": "10",
                            "unit": "px"
                        }
                    },
                    "gridRowMax": {
                        "type": "object",
                        "default": {
                            "md": "1",
                            "unit": "fr"
                        }
                    },
                    "gridHeight": {
                        "type": "object",
                        "default": {
                            "md": "1",
                            "unit": "fr"
                        }
                    }
                }
            ],
            "default": [
                {
                    "_key": "0",
                    "gridRowProperty": {
                        "md": "custom"
                    },
                    "gridRowMin": {
                        "md": "10",
                        "unit": "px"
                    },
                    "gridRowMax": {
                        "md": "1",
                        "unit": "fr"
                    },
                    "gridHeight": {
                        "md": "1",
                        "unit": "fr"
                    }
                }
            ]
        },
        "gridFlow": {
            "type": "string",
            "default": "row",
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}}.tpgb-grid > .block-editor-block-list__layout, {{PLUS_CLIENT_ID}}.tpgb-grid > .tpgb-cont-in > .block-editor-block-list__layout { grid-auto-flow: {{gridFlow}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row.tpgb-grid .tpgb-cont-in, {{PLUS_WRAP}}.tpgb-container-full.tpgb-container-row.tpgb-grid { grid-auto-flow: {{gridFlow}}; }",
                    "backend": false
                }
            ]
        },
        "gridJustify": {
            "type": "object",
            "default": {
                "md": 0
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}}.tpgb-grid > .block-editor-block-list__layout, {{PLUS_CLIENT_ID}}.tpgb-grid > .tpgb-cont-in > .block-editor-block-list__layout {justify-content: {{gridJustify}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row.tpgb-grid .tpgb-cont-in,{{PLUS_WRAP}}.tpgb-container-full.tpgb-container-row.tpgb-grid {justify-content: {{gridJustify}}; }",
                    "backend": false
                }
            ]
        },
        "gridAlign": {
            "type": "object",
            "default": {
                "md": 0
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}}.tpgb-grid > .block-editor-block-list__layout, {{PLUS_CLIENT_ID}}.tpgb-grid > .tpgb-cont-in > .block-editor-block-list__layout {align-items: {{gridAlign}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row.tpgb-grid .tpgb-cont-in,{{PLUS_WRAP}}.tpgb-container-full.tpgb-container-row.tpgb-grid {align-items: {{gridAlign}}; }",
                    "backend": false
                }
            ]
        },
        "gridAlignCon": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}}.tpgb-grid > .block-editor-block-list__layout, {{PLUS_CLIENT_ID}}.tpgb-grid > .tpgb-cont-in > .block-editor-block-list__layout {align-content : {{gridAlignCon}} }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row.tpgb-grid .tpgb-cont-in,{{PLUS_WRAP}}.tpgb-container-full.tpgb-container-row.tpgb-grid {align-content : {{gridAlignCon}} }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "gridJustItems": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}}.tpgb-grid > .block-editor-block-list__layout, {{PLUS_CLIENT_ID}}.tpgb-grid > .tpgb-cont-in > .block-editor-block-list__layout {justify-items : {{gridJustItems}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row.tpgb-grid .tpgb-cont-in,{{PLUS_WRAP}}.tpgb-container-full.tpgb-container-row.tpgb-grid { justify-items : {{gridJustItems}}; }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "selectedLayout": {
            "type": "string",
            "default": ""
        },
        "gridStyle": {
            "type": "string",
            "default": ""
        },
        "isrootContainer": {
            "type": "boolean",
            "default": false
        },
        "iscontGrid": {
            "type": "boolean",
            "default": false
        },
        "colWidth": {
            "type": "object",
            "default": {
                "md": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}} {grid-column: span {{colWidth}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row {grid-column: span {{colWidth}}; }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "rowHeight": {
            "type": "object",
            "default": {
                "md": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}} {grid-row: span {{rowHeight}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row {grid-row: span {{rowHeight}};  }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "colStart": {
            "type": "object",
            "default": {
                "md": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}} {grid-column-start: {{colStart}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { grid-column-start: {{colStart}}; }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "colEnd": {
            "type": "object",
            "default": {
                "md": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}} {grid-column-end: {{colEnd}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { grid-column-end: {{colEnd}}; }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "rowStart": {
            "type": "object",
            "default": {
                "md": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}} {grid-row-start: {{rowStart}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { grid-row-start: {{rowStart}}; }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "rowEnd": {
            "type": "object",
            "default": {
                "md": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}} {grid-row-end: {{rowEnd}}; }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { grid-row-end: {{rowEnd}}; }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "gridFlexAlign": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}} { align-items : {{gridFlexAlign}} }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { align-items : {{gridFlexAlign}} }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "gridFlexJustify": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "selector": "{{PLUS_CLIENT_ID}} { justify-content : {{gridFlexJustify}} }",
                    "backend": true
                },
                {
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row { justify-content : {{gridFlexJustify}} }",
                    "backend": false
                }
            ],
            "scopy": true
        },
        "colGap": {
            "type": "object",
            "default": {
                "md": "",
                "unit": "px"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .tpgb-contain-block-editor.block-editor-block-list__layout {grid-column-gap: {{colGap}}; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-contain-block-editor.block-editor-block-list__layout {grid-column-gap: {{colGap}}; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row.tpgb-container-wide.tpgb-grid .tpgb-cont-in {grid-column-gap: {{colGap}}; }"
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row.tpgb-container-full.tpgb-grid {grid-column-gap: {{colGap}}; }"
                }
            ],
            "scopy": true
        },
        "rowGap": {
            "type": "object",
            "default": {
                "md": "",
                "unit": "px"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-cont-in > .tpgb-contain-block-editor.block-editor-block-list__layout {grid-row-gap: {{rowGap}}; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} > .tpgb-contain-block-editor.block-editor-block-list__layout {grid-row-gap: {{rowGap}}; }",
                    "backend": true
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "wide"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row.tpgb-container-wide.tpgb-grid .tpgb-cont-in {grid-row-gap: {{rowGap}};}"
                },
                {
                    "condition": [
                        {
                            "key": "contentWidth",
                            "relation": "==",
                            "value": "full"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}}.tpgb-container-row.tpgb-container-full.tpgb-grid {grid-row-gap: {{rowGap}}; }"
                }
            ],
            "scopy": true
        },
        "saveGlobalStyle": {
            "type": "string",
            "default": ""
        },
        "saveGlobalStyleClass": {
            "type": "string",
            "default": ""
        },
        "topOption": {
            "type": "string",
            "default": "",
            "scopy": true
        },
        "topBgtype": {
            "type": "object",
            "default": {
                "openBg": 0,
                "bgType": "color"
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "topOption",
                            "relation": "==",
                            "value": "color"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} .tpgb-top-layer"
                }
            ],
            "scopy": true
        },
        "textureImg": {
            "type": "object",
            "default": {
                "url": "",
                "id": ""
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "topOption",
                            "relation": "==",
                            "value": "texture-img"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} .tpgb-top-layer{ background-image: {{textureImg}}; }"
                }
            ],
            "scopy": true
        },
        "teximgPosition": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "topOption",
                            "relation": "==",
                            "value": "texture-img"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} .tpgb-top-layer { background-position : {{teximgPosition}}; }"
                }
            ],
            "scopy": true
        },
        "teximgAtta": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "topOption",
                            "relation": "==",
                            "value": "texture-img"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} .tpgb-top-layer { background-attachment : {{teximgAtta}}; }"
                }
            ],
            "scopy": true
        },
        "teximgRepeat": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "topOption",
                            "relation": "==",
                            "value": "texture-img"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} .tpgb-top-layer { background-repeat : {{teximgRepeat}}; }"
                }
            ],
            "scopy": true
        },
        "teximgSize": {
            "type": "object",
            "default": {
                "md": "",
                "sm": "",
                "xs": ""
            },
            "style": [
                {
                    "condition": [
                        {
                            "key": "topOption",
                            "relation": "==",
                            "value": "texture-img"
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} .tpgb-top-layer { background-size : {{teximgSize}}; }"
                }
            ],
            "scopy": true
        },
        "timgOpacity": {
            "type": "string",
            "default": "",
            "style": [
                {
                    "condition": [
                        {
                            "key": "topOption",
                            "relation": "!=",
                            "value": ""
                        }
                    ],
                    "selector": "{{PLUS_WRAP}} .tpgb-top-layer{opacity : {{timgOpacity}} }"
                }
            ],
            "scopy": true
        },
        "nxtcontType": {
            "type": "boolean",
            "default": false
        }
    },
    "render": "file:./render.php"
}