{"js":"\n\tif (window.ZammoBotUIKit && window.ZammoBotUIKit.onDocumentReady) {\n\t\twindow.ZammoBotUIKit.onDocumentReady(() => {\n\t\t\t// check the page every half-second to see if the chatbot is loaded yet\n            (function checkExist() {\n                if (window.zammoBotUIInstance) {\n                    // zammoBotUIInstance is loaded\n                    if (window.zammoBotUIInstance.initializeGUIConfiguration) {\n                        window.zammoBotUIInstance.initializeGUIConfiguration({\"ButtonType\":\"Prominent\",\"Theme\":\"Dark\",\"ChatIconBorder\":\"None\",\"CustomThemePrimaryColor\":\"#d9d9d9\",\"CustomChatIconBorderColor\":\"#7a7a7a\",\"ShouldOpenChatbotOnPageLoad\":true,\"StickyChat\":true,\"Ttl\":3600000,\"ShouldShowMicrophone\":true,\"ShouldShowExtensionMenu\":false,\"ShouldAllowUserToDownloadTranscript\":false,\"ShouldDisableBargeIn\":true,\"SuggestedActionDirection\":0,\"ShouldAllowFullScreen\":true,\"ShouldAllowTypingEffect\":true,\"ShouldAllowCopyToClipboard\":true,\"TypeSpeed\":6,\"ShouldAllowLeaveFeedback\":true,\"ShouldShowAdditionalFeedback\":true,\"ShouldAllowFeedbackOnAllMessagesInTurn\":false,\"ShouldPersistFeedbackOnOldMessages\":false,\"FeedbackVisibilityInMessages\":false,\"RateThisResponseText\":\"Rate this response\",\"ShouldAllowReferences\":false,\"ShouldAllowMultilineWrap\":true,\"ChatInputPlaceholderText\":null,\"ShouldShowFailbackMessageOnLaunchFailure\":false,\"ConnectionTimeoutWaitTime\":120000,\"ConnectionTimeoutMessage\":\"I'm sorry, we are encountering issues connecting at this time. Please try again later.\"});\n                    } else {\n                        // -- compatible with UI Kit versions 11.4 and below.\n                        var styles = `\n                            \n\n\t#zammoBotUIComponent.reshape-icon #zammoBotUIComponent--chatIcon {\n\t\twidth: 250px;\n\t\theight: fit-content;\n\t\tborder-radius: 0;\n\t\ttext-align: left;\n\t\tbackground: transparent !important;\n\t}\n\n\t#zammoBotUIComponent.reshape-icon #zammoBotUIComponent--chatIcon #zammoBotUIComponent--chatIcon--icon {\n\t\tdisplay: none; // hide the original chat icon\n\t}\n\n\t#reshape-icon-addon { width: 100%;\n\t}\n\n\t#reshape-icon-addon .top * {\n\t\tcolor: black;\n\t\tpadding-left: 5%;\n\t\tpadding-right: 5%;\n\t}\n\n\t#reshape-icon-addon .bottom {\n\t\tbackground: var(--zammo-theme-primary) !important;\n\t\tpadding: 5%;\n\t\tdisplay: flex;\n\t\tflex-direction: row;\n\t\tjustify-content: space-between;\n\t\talign-items: center;\n\t}\n\n\n\t#zammoBotUIComponent--chatIcon, #zammoBotUIComponent--chatFrame--header--closeIcon {\n\t\tbackground: #013777;\n\t}\n\n\t#zammoBotUIComponent--chatFrame--chat .right-msg .msg-bubble {\n\t\t\tbackground: #013777;\n\t}\n\n    #zammoBotUIComponent--chatFrame {\n        border-color: #013777;\n    }\n\n                        `;\n                        if (document) {\n                            var styleSheet = document.createElement(\"style\");\n                            styleSheet.id = \"ZammoPersonalizerConfigurationCustomCssStylesheet\";\n                            styleSheet.textContent = styles;\n                            document.head.appendChild(styleSheet);  \n                        }\n\n                        \n\n\tif (window.ZammoBotUIKit && window.ZammoBotUIKit.onDocumentReady) {\n\t\twindow.ZammoBotUIKit.onDocumentReady(() => {\n\t\t\t// check the page every half-second to see if the chatbot is loaded yet\n\t\t\tvar checkExist = setInterval(function() {\n\t\t\t\tif (document.querySelector('#zammoBotUIComponent--chatIcon')) {\n\t\t\t\t\t// Zammo chatbot is loaded\n\n\t\t\t\t\tvar zammoChatbot = document.querySelector('#zammoBotUIComponent');\n\t\t\t\t\tif (zammoChatbot) {\n\t\t\t\t\t\tvar div = document.createElement('div');\n\t\t\t\t\t\t// This content can be customized to display any text or graphic\n\t\t\t\t\t\tdiv.innerHTML = '<div class=\"top\"><h3>Need help?</h3><p>Click here and start chatting with us</p></div><div class=\"bottom\"><span>Chat now</span><i class=\"material-icons\">question_answer</i></div>';\n\t\t\t\t\t\tdiv.setAttribute('id', 'reshape-icon-addon'); // add an element ID for styling\n\t\t\t\t\t\tzammoChatbot.classList.add('reshape-icon'); // add a class for custom styling\n\t\t\t\t\t\tvar zammoChatbotButton = document.querySelector('#zammoBotUIComponent--chatIcon');\n\t\t\t\t\t\tif (zammoChatbotButton) zammoChatbotButton.prepend(div); // add the new icon to the document model\n\t\t\t\t\t} // !if\n\n\t\t\t\t\tclearInterval(checkExist); // stop checking to see if it's loaded\n\t\t\t\t}\n\t\t\t}, 500);\n\t\t});\n\t}\n\n\n\n\tif (window.ZammoBotUIKit && window.ZammoBotUIKit.onDocumentReady) {\n\t  window.ZammoBotUIKit.onDocumentReady(() => {\n\t    // check the page every half-second to see if the chatbot is loaded yet\n\t    var checkExist = setInterval(function() {\n\t      if (document.querySelector('#zammoBotUIComponent--chatIcon')) {\n\t        // it's loaded\n\n            var visibleZammoChatFrame = document.querySelector('#zammoBotUIComponent--chatFrame.is-visible');\n            if (!visibleZammoChatFrame) {\n                // triggers a click on the chat icon to force it to open\n                var zammoChatIcon = document.querySelector('#zammoBotUIComponent--chatIcon');\n                if (zammoChatIcon) {\n                  zammoChatIcon.click();\n                }\n            }\n\n\t        clearInterval(checkExist); // stop checking to see if the element is there\n\t      }\n\t    }, 500);\n\t  });\n\t}\n\n\n\n\tif (window.ZammoBotUIKit && window.ZammoBotUIKit.onDocumentReady) {\n\t\twindow.ZammoBotUIKit.onDocumentReady(() => {\n\t\t\t// check the page every half-second to see if the chatbot is loaded yet\n            (function checkExist() {\n                if (window.zammoBotUIInstance) {\n                    // zammoBotUIInstance is loaded\n\n                    var scriptElem = document.getElementById('ZammoBotUIKitScript');\n\n                    \n            if (window.zammoBotUIInstance.setZammoColors) {\n                window.zammoBotUIInstance.setZammoColors({\n                    primary: '#013777'\n                });\n            } else {\n                var styles = `\n                    :root {\n                      --zammo-theme-primary: #013777;\n                    }\n                `;\n\n                 if (document) {\n                    var styleSheet = document.createElement(\"style\");\n                    styleSheet.id = \"ZammoPersonalizerCustomThemeCssStylesheet\";\n                    styleSheet.textContent = styles;\n                    document.head.appendChild(styleSheet);  \n                 }\n            }\n        \nif (!scriptElem.getAttribute('ttl')) {\n    window.zammoBotUIInstance.ttl = 3600000;\n}\nif (!scriptElem.getAttribute('stickyChat')) {\n    window.zammoBotUIInstance.stickyChat = true;\n}\nif (!scriptElem.getAttribute('shouldDisableBargeIn')) {\n    window.zammoBotUIInstance.shouldDisableBargeIn = true;\n}\n\nif (!scriptElem.getAttribute('suggestedActionDirection')) {\n    window.zammoBotUIInstance.suggestedActionDirection = 'vertical';\n}\nif (!scriptElem.getAttribute('shouldAllowFullScreen')) {\n    window.zammoBotUIInstance.shouldAllowFullScreen = true;\n    window.zammoBotUIInstance.addFullscreenButton();\n}\nif (!scriptElem.getAttribute('shouldAllowTypingEffect')) {\n    window.zammoBotUIInstance.loadTypedJsDependency().then(() => {\n        window.zammoBotUIInstance.shouldAllowTypingEffect = true;\n    });\n}\nif (!scriptElem.getAttribute('typeSpeed')) {\n    window.zammoBotUIInstance.typeSpeed = 6;\n}\nif (!scriptElem.getAttribute('shouldAllowCopyToClipboard')) {\n    window.zammoBotUIInstance.shouldAllowCopyToClipboard = true;\n}\nif (!scriptElem.getAttribute('shouldAllowLeaveFeedback')) {\n    zammoBotUIInstance.loadA11yDialog().then(() => {\n        window.zammoBotUIInstance.shouldAllowLeaveFeedback = true;\n        window.zammoBotUIInstance.shouldShowAdditionalFeedback = true;\n        window.zammoBotUIInstance.addFeedbackModal();\n        \n    });\n}\nif (!scriptElem.getAttribute('shouldShowMicrophone')) {\n    window.zammoBotUIInstance.shouldShowMicrophone = true;\n    window.zammoBotUIInstance.addMicrophoneButton();\n}\nif (!scriptElem.getAttribute('shouldAllowMultilineWrap')) {\n    window.zammoBotUIInstance.shouldAllowMultilineWrap = true;\n}\n                }\n                else {\n                    setTimeout(checkExist, 500);\n                }\n            })();\n\t\t});\n\t}\n\n                    }\n                } else {\n                    setTimeout(checkExist, 500);\n                }\n            })();\n\t\t});\n\t}\n\n\n","css":"\n\n:root{\r\n  --maintextcolor:black;\r\n  --urltextcolor:#7272a2;\r\n  --footertextsize:14px;\r\n  --maintextsize:20px;\r\n  --userinputbackground:#355997;\r\n}\r\n.zammo-card__supporting-text { color:var(--maintextcolor) !important; font-weight: bold; font-size: var(--maintextsize);}\r\n#zammo-url { color:var(--urltextcolor); font-weight: bold;font-size: var(--footertextsize);}\r\n#zammoBotUIComponent--chatFrame--footer {color:var(--maintextcolor);font-weight: bold;font-size: var(--footertextsize);}\r\n.msg-bubble{\r\n  background-color: var(--userinputbackground);\r\n}\r\n.msg-bubble-container .msg-bubble .msg-text span{\r\n  font-size: var(--maintextsize);\r\n}\r\n.msg-bubble-container .msg-bubble .msg-text span p{\r\n  font-size: var(--maintextsize) !important;\r\n}\r\n.msg-info-time{\r\n  font-size: var(--footertextsize);\r\n}\r\n.zammo-message-attachments p{\r\n  font-size: var(--maintextsize) !important;\r\n}\r\n\r\n#zammoBotUIComponent.reshape-icon #zammoBotUIComponent--chatIcon {\r\n background: #fff !important;\r\n}\r\n\r\n#zammoBotUIComponent--chatIcon .top{\r\n  font-weight:normal !important;\r\n  line-height: 28px !important;\r\n  font-size: 16px !important;\r\n  padding-top: 0px !important;\r\n  padding-bottom: 10px !important;\r\n  height: 113px !important;\r\n}\r\n#zammoBotUIComponent--chatIcon{\r\nfont-family: \"Open Sans\", sans-serif !important;\r\n}\r\n\r\n#zammoBotUIComponent--chatIcon .top h3{\r\n  font-family: Open Sans, sans-serif !important;\r\n    font-weight: 300 !important;\r\n    line-height: 120% !important;\r\n    /* color: #355997; */\r\n    margin: 20px 0 17px 0;\r\n    font-size: 23px !important;\r\n}\r\n\r\n#zammoBotUIComponent--chatIcon .top p{\r\n  font-weight: normal !important;\r\n    line-height: 28px !important;\r\n    font-size: 15px !important;\r\n}\r\n\r\n#zammoBotUIComponent--chatFrame--chat .msg-bubble p{\r\n  font-family: \"Open Sans\", sans-serif !important;\r\n}\r\n\r\n#zammoBotUIComponent--chatFrame--chat .msg-bubble li{\r\n  font-family: \"Open Sans\", sans-serif !important;\r\n}\r\n#zammoBotUIComponent--chatFrame--chat .msg-bubble a{\r\ncolor:rgb(53, 89, 151);\r\n}\r\n\r\n\r\n\r\n\r\n"}