Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Bad Address

New Here ,
Mar 03, 2025 Mar 03, 2025

When I make HTML TO PDF API using  .Net SDK I get this error 

"{"Bad Address, request terminated; requestId=8a16cea5-deb2-4d6b-a044-74b4e0451467"}"

 

private async Task<Stream> CreateFromHtmlStream(Stream htmlDataStream)
{
    try
    {
        // Initial setup, create credentials instance
        var credentials = GetCredentials();

        // Creates a PDF Services instance
        var pdfServices = new PDFServices(credentials);

        // Creates an asset(s) from source file(s) and upload
        var asset = pdfServices.Upload(htmlDataStream, PDFServicesMediaType.HTML.GetMIMETypeValue());

        // Create parameters for the job
        var htmlToPDFParams = GetHtmlToPdfParams();

        // Creates a new job instance
        var htmlToPdfJob = new HTMLToPDFJob(asset).SetParams(htmlToPDFParams);

        // Submits the job and gets the job result
        var location = pdfServices.Submit(htmlToPdfJob);
        var pdfServicesResponse = pdfServices.GetJobResult<HTMLToPDFResult>(location, typeof(HTMLToPDFResult));

        // Get content from the resulting asset(s)
        var resultAsset = pdfServicesResponse.Result.Asset;
        var streamAsset = pdfServices.GetContent(resultAsset);

        // Save the PDF to a temporary file
        var tempPdfFilePath = Path.GetTempFileName();

        using (var tempPdfStream = new FileStream(tempPdfFilePath, FileMode.Create, FileAccess.Write))
        {
            streamAsset.Stream.CopyTo(tempPdfStream);
        }

        // Convert the PDF to Word
        var outputStream = ConvertPdfToWordStream(tempPdfFilePath);

        // Clean up temporary PDF file
        System.IO.File.Delete(tempPdfFilePath);

        return outputStream;
    }
    catch (ServiceUsageException ex)
    {
        //_logger??.LogError("Exception encountered while executing operation", ex);
    }
    catch (ServiceApiException ex)
    {
        //_logger??.LogError("Exception encountered while executing operation", ex);
    }
    catch (SDKException ex)
    {
        //_logger??.LogError("Exception encountered while executing operation", ex);
    }
    catch (IOException ex)
    {
        //_logger??.LogError("Exception encountered while executing operation", ex);
    }
    catch (Exception ex)
    {
        //_logger??.LogError("Exception encountered while executing operation", ex);
    }

    return null;
}

My API code is copied above. I am clueless to find what is going on here. I am trying to send HTML to our RESTful POST endpoint & perform this operation. 

 

Please help me asap because we are evaluvating this service to buy coporate licence. 

112
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 03, 2025 Mar 03, 2025
LATEST

Attached our sample API call JS fetch

 

fetch("/api/customerservice/reportbuilder/word", {
  "headers": {
    "accept": "*/*",
    "accept-language": "en",
    "authorization": "Bearer a.b.cc",
    "cache-control": "no-cache",
    "content-type": "text/html",    
    "pragma": "no-cache",
    "priority": "u=1, i",
    "request-context": "appId=cid-v1:566d7384-93f9-4940-911f-cf1c5687991c",
    "request-id": "|24e2ebf8021a410faf5bdc68a4f9944a.c870d47f8fdf41ce",
    "sec-ch-ua": "\"Not(A:Brand\";v=\"99\", \"Google Chrome\";v=\"133\", \"Chromium\";v=\"133\"",
    "sec-ch-ua-mobile": "?0",
    "sec-ch-ua-platform": "\"Windows\"",
    "sec-fetch-dest": "empty",
    "sec-fetch-mode": "cors",
    "sec-fetch-site": "cross-site",    
  },
  "referrer": "https://api.honeywellcloud.com/",
  "referrerPolicy": "strict-origin-when-cross-origin",
  "body": "<!DOCTYPE html><html><head><style>\n        @page {\n            /* Remove browser default header (title) and footer (url) */\n            margin: 0;\n        }\n        @Media print {\n            body {\n                /* Tell browsers to print background colors */\n                -webkit-print-color-adjust: exact; /* Chrome/Safari/Edge/Opera */\n                color-adjust: exact; /* Firefox */\n            }\n        }\n    </style><link href=\"/static/css/10.25430c43.chunk.css\" rel=\"stylesheet\"><link href=\"/static/css/main.3d2d6960.chunk.css\" rel=\"stylesheet\"><style id=\"react-to-print-2\">#onetrust-banner-sdk .onetrust-vendors-list-handler { cursor: pointer; color: rgb(31, 150, 219); font-size: inherit; font-weight: bold; text-decoration: none; margin-left: 5px; }\r\n#onetrust-banner-sdk .onetrust-vendors-list-handler:hover { color: rgb(31, 150, 219); }\r\n#onetrust-banner-sdk:focus { outline: rgb(0, 0, 0) solid 2px; outline-offset: -2px; }\r\n#onetrust-banner-sdk a:focus { outline: rgb(0, 0, 0) solid 2px; }\r\n#onetrust-banner-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler, #onetrust-banner-sdk #onetrust-pc-btn-handler { outline-offset: 1px; }\r\n#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo { height: 64px; width: 64px; }\r\n#onetrust-banner-sdk .ot-tcf2-vendor-count.ot-text-bold { font-weight: bold; }\r\n#onetrust-banner-sdk .ot-close-icon, #onetrust-pc-sdk .ot-close-icon, #ot-sync-ntfy .ot-close-icon { background-size: contain; background-repeat: no-repeat; background-position: center center; height: 12px; width: 12px; }\r\n#onetrust-banner-sdk .powered-by-logo, #onetrust-banner-sdk .ot-pc-footer-logo a, #onetrust-pc-sdk .powered-by-logo, #onetrust-pc-sdk .ot-pc-footer-logo a, #ot-sync-ntfy .powered-by-logo, #ot-sync-ntfy .ot-pc-footer-logo a { background-size: contain; background-repeat: no-repeat; background-position: center center; height: 25px; width: 152px; display: block; text-decoration: none; font-size: 0.75em; }\r\n#onetrust-banner-sdk .powered-by-logo:hover, #onetrust-banner-sdk .ot-pc-footer-logo a:hover, #onetrust-pc-sdk .powered-by-logo:hover, #onetrust-pc-sdk .ot-pc-footer-logo a:hover, #ot-sync-ntfy .powered-by-logo:hover, #ot-sync-ntfy .ot-pc-footer-logo a:hover { color: rgb(86, 86, 86); }\r\n#onetrust-banner-sdk h3 *, #onetrust-banner-sdk h4 *, #onetrust-banner-sdk h6 *, #onetrust-banner-sdk button *, #onetrust-banner-sdk a[data-parent-id] *, #onetrust-pc-sdk h3 *, #onetrust-pc-sdk h4 *, #onetrust-pc-sdk h6 *, #onetrust-pc-sdk button *, #onetrust-pc-sdk a[data-parent-id] *, #ot-sync-ntfy h3 *, #ot-sync-ntfy h4 *, #ot-sync-ntfy h6 *, #ot-sync-ntfy button *, #ot-sync-ntfy a[data-parent-id] * { font-size: inherit; font-weight: inherit; color: inherit; }\r\n#onetrust-banner-sdk .ot-hide, #onetrust-pc-sdk .ot-hide, #ot-sync-ntfy .ot-hide { display: none !important; }\r\n#onetrust-banner-sdk button.ot-link-btn:hover, #onetrust-pc-sdk button.ot-link-btn:hover, #ot-sync-ntfy button.ot-link-btn:hover { text-decoration: underline; opacity: 1; }\r\n#onetrust-pc-sdk .ot-sdk-row .ot-sdk-column { padding: 0px; }\r\n#onetrust-pc-sdk .ot-sdk-container { padding-right: 0px; }\r\n#onetrust-pc-sdk .ot-sdk-row { flex-direction: initial; width: 100%; }\r\n#onetrust-pc-sdk [type=\"checkbox\"]:checked, #onetrust-pc-sdk [type=\"checkbox\"]:not(:checked) { pointer-events: initial; }\r\n#onetrust-pc-sdk [type=\"checkbox\"]:disabled + label::before, #onetrust-pc-sdk [type=\"checkbox\"]:disabled + label::after, #onetrust-pc-sdk [type=\"checkbox\"]:disabled + label { pointer-events: none; opacity: 0.8; }\r\n#onetrust-pc-sdk #vendor-list-content { transform: translate3d(0px, 0px, 0px); }\r\n#onetrust-pc-sdk li input[type=\"checkbox\"] { z-index: 1; }\r\n#onetrust-pc-sdk li .ot-checkbox label { z-index: 2; }\r\n#onetrust-pc-sdk li .ot-checkbox input[type=\"checkbox\"] { height: auto; width: auto; }\r\n#onetrust-pc-sdk li .host-title a, #onetrust-pc-sdk li .ot-host-name a, #onetrust-pc-sdk li .accordion-text, #onetrust-pc-sdk li .ot-acc-txt { z-index: 2; position: relative; }\r\n#onetrust-pc-sdk input { margin: 3px 0.1ex; }\r\n#onetrust-pc-sdk .pc-logo, #onetrust-pc-sdk .ot-pc-logo { height: 60px; width: 180px; background-position: center center; background-size: contain; background-repeat: no-repeat; display: inline-flex; justify-content: center; align-items: center; }\r\n#onetrust-pc-sdk .pc-logo img, #onetrust-pc-sdk .ot-pc-logo img { max-height: 100%; max-width: 100%; }\r\n#onetrust-pc-sdk .screen-reader-only, #onetrust-pc-sdk .ot-scrn-rdr, .ot-sdk-cookie-policy .screen-reader-only, .ot-sdk-cookie-policy .ot-scrn-rdr { border: 0px; clip: rect(0px, 0px, 0px, 0px); height: 1px; margin: -1px; overflow: hidden; padding: 0px; position: absolute; width: 1px; }\r\n#onetrust-pc-sdk.ot-fade-in, .onetrust-pc-dark-filter.ot-fade-in, #onetrust-banner-sdk.ot-fade-in { animation-name: onetrust-fade-in; animation-duration: 400ms; animation-timing-function: ease-in-out; }\r\n#onetrust-pc-sdk.ot-hide { display: none !important; }\r\n.onetrust-pc-dark-filter.ot-hide { display: none !important; }\r\n#ot-sdk-btn.ot-sdk-show-settings, #ot-sdk-btn.optanon-show-settings { color: rgb(104, 182, 49); border: 1px solid rgb(104, 182, 49); height: auto; white-space: normal; overflow-wrap: break-word; padding: 0.8em 2em; font-size: 0.8em; line-height: 1.2; cursor: pointer; transition: 0.1s; }\r\n#ot-sdk-btn.ot-sdk-show-settings:hover, #ot-sdk-btn.optanon-show-settings:hover { color: rgb(255, 255, 255); background-color: rgb(104, 182, 49); }\r\n.onetrust-pc-dark-filter { background: rgba(0, 0, 0, 0.5); z-index: 2147483646; width: 100%; height: 100%; overflow: hidden; position: fixed; top: 0px; bottom: 0px; left: 0px; }\r\n@keyframes onetrust-fade-in { \n  0% { opacity: 0; }\n  100% { opacity: 1; }\n}\r\n.ot-cookie-label { text-decoration: underline; }\r\n@media only screen and (min-width: 426px) and (max-width: 896px) and (orientation: landscape) {\n  #onetrust-pc-sdk p { font-size: 0.75em; }\n}\r\n#onetrust-banner-sdk .banner-option-input:focus + label { outline: rgb(0, 0, 0) auto 1px; }\r\n.category-vendors-list-handler + a:focus, .category-vendors-list-handler + a:focus-visible { outline: rgb(0, 0, 0) solid 2px; }\r\n#onetrust-pc-sdk .ot-userid-title { margin-top: 10px; }\r\n#onetrust-pc-sdk .ot-userid-title > span, #onetrust-pc-sdk .ot-userid-timestamp > span { font-weight: 700; }\r\n#onetrust-pc-sdk .ot-userid-desc { font-style: italic; }\r\n#onetrust-pc-sdk .ot-host-desc a { pointer-events: initial; }\r\n#onetrust-pc-sdk .ot-ven-hdr > p a { position: relative; z-index: 2; pointer-events: initial; }\r\n#onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info a { margin-right: auto; }\r\n#onetrust-pc-sdk .ot-pc-footer-logo img { width: 136px; height: 16px; }\r\n#onetrust-pc-sdk .ot-pur-vdr-count { font-weight: 400; font-size: 0.7rem; padding-top: 3px; display: block; }\r\n#onetrust-banner-sdk .ot-optout-signal, #onetrust-pc-sdk .ot-optout-signal { border: 1px solid rgb(50, 174, 136); border-radius: 3px; padding: 5px; margin-bottom: 10px; background-color: rgb(249, 255, 250); font-size: 0.85rem; line-height: 2; }\r\n#onetrust-banner-sdk .ot-optout-signal .ot-optout-icon, #onetrust-pc-sdk .ot-optout-signal .ot-optout-icon { display: inline; margin-right: 5px; }\r\n#onetrust-banner-sdk .ot-optout-signal svg, #onetrust-pc-sdk .ot-optout-signal svg { height: 20px; width: 30px; transform: scale(0.5); }\r\n#onetrust-banner-sdk .ot-optout-signal svg path, #onetrust-pc-sdk .ot-optout-signal svg path { fill: rgb(50, 174, 136); }\r\n#onetrust-consent-sdk .ot-general-modal { overflow: hidden; position: fixed; margin: 0px auto; top: 50%; left: 50%; width: 40%; padding: 1.5rem; max-width: 575px; min-width: 575px; z-index: 2147483647; border-radius: 2.5px; transform: translate(-50%, -50%); }\r\n#onetrust-consent-sdk .ot-signature-health-group { margin-top: 1rem; padding-left: 1.25rem; padding-right: 1.25rem; margin-bottom: 0.625rem; width: calc(100% - 2.5rem); }\r\n#onetrust-consent-sdk .ot-signature-health-group .ot-signature-health-form { gap: 0.5rem; }\r\n#onetrust-consent-sdk .ot-signature-health .ot-signature-health-form { width: 70%; gap: 0.35rem; }\r\n#onetrust-consent-sdk .ot-signature-health .ot-signature-input { height: 38px; padding: 6px 10px; background-color: rgb(255, 255, 255); border: 1px solid rgb(209, 209, 209); border-radius: 4px; box-shadow: none; box-sizing: border-box; }\r\n#onetrust-consent-sdk .ot-signature-health .ot-signature-subtitle { font-size: 1.125rem; }\r\n#onetrust-consent-sdk .ot-signature-health .ot-signature-group-title { font-size: 1.25rem; font-weight: bold; }\r\n#onetrust-consent-sdk .ot-signature-health, #onetrust-consent-sdk .ot-signature-health-group { display: flex; flex-direction: column; gap: 1rem; }\r\n#onetrust-consent-sdk .ot-signature-health .ot-signature-cont, #onetrust-consent-sdk .ot-signature-health-group .ot-signature-cont { display: flex; flex-direction: column; gap: 0.25rem; }\r\n#onetrust-consent-sdk .ot-signature-health .ot-signature-paragraph, #onetrust-consent-sdk .ot-signature-health-group .ot-signature-paragraph { margin: 0px; line-height: 20px; font-size: max(14px, 0.875rem); }\r\n#onetrust-consent-sdk .ot-signature-health .ot-health-signature-error, #onetrust-consent-sdk .ot-signature-health-group .ot-health-signature-error { color: rgb(77, 77, 77); font-size: min(12px, 0.75rem); }\r\n#onetrust-consent-sdk .ot-signature-health .ot-signature-buttons-cont, #onetrust-consent-sdk .ot-signature-health-group .ot-signature-buttons-cont { margin-top: max(0.75rem, 2%); gap: 1rem; display: flex; justify-content: flex-end; }\r\n#onetrust-consent-sdk .ot-signature-health .ot-signature-button, #onetrust-consent-sdk .ot-signature-health-group .ot-signature-button { flex: 1 1 0%; height: auto; color: rgb(255, 255, 255); cursor: pointer; line-height: 1.2; min-width: 125px; font-weight: 600; font-size: 0.813em; border-radius: 2px; padding: 12px 10px; white-space: normal; overflow-wrap: break-word; word-break: break-word; background-color: rgb(104, 182, 49); border: 2px solid rgb(104, 182, 49); }\r\n#onetrust-consent-sdk .ot-signature-health .ot-signature-button.reject, #onetrust-consent-sdk .ot-signature-health-group .ot-signature-button.reject { background-color: rgb(255, 255, 255); }\r\n#onetrust-consent-sdk .ot-input-field-cont { display: flex; flex-direction: column; gap: 0.5rem; }\r\n#onetrust-consent-sdk .ot-input-field-cont .ot-signature-input { width: 65%; }\r\n#onetrust-consent-sdk .ot-signature-health-form { display: flex; flex-direction: column; }\r\n#onetrust-consent-sdk .ot-signature-health-form .ot-signature-label { margin-bottom: 0px; line-height: 20px; font-size: max(14px, 0.875rem); }\r\n@media only screen and (max-width: 600px) {\n  #onetrust-consent-sdk .ot-general-modal { min-width: 100%; }\n  #onetrust-consent-sdk .ot-signature-health .ot-signature-health-form { width: 100%; }\n  #onetrust-consent-sdk .ot-input-field-cont .ot-signature-input { width: 100%; }\n}\r\n#onetrust-banner-sdk, #onetrust-pc-sdk, #ot-sdk-cookie-policy, #ot-sync-ntfy { font-size: 16px; }\r\n#onetrust-banner-sdk *, #onetrust-banner-sdk ::after, #onetrust-banner-sdk ::before, #onetrust-pc-sdk *, #onetrust-pc-sdk ::after, #onetrust-pc-sdk ::before, #ot-sdk-cookie-policy *, #ot-sdk-cookie-policy ::after, #ot-sdk-cookie-policy ::before, #ot-sync-ntfy *, #ot-sync-ntfy ::after, #ot-sync-ntfy ::before { box-sizing: content-box; }\r\n#onetrust-banner-sdk div, #onetrust-banner-sdk span, #onetrust-banner-sdk h1, #onetrust-banner-sdk h2, #onetrust-banner-sdk h3, #onetrust-banner-sdk h4, #onetrust-banner-sdk h5, #onetrust-banner-sdk h6, #onetrust-banner-sdk p, #onetrust-banner-sdk img, #onetrust-banner-sdk svg, #onetrust-banner-sdk button, #onetrust-banner-sdk section, #onetrust-banner-sdk a, #onetrust-banner-sdk label, #onetrust-banner-sdk input, #onetrust-banner-sdk ul, #onetrust-banner-sdk li, #onetrust-banner-sdk nav, #onetrust-banner-sdk table, #onetrust-banner-sdk thead, #onetrust-banner-sdk tr, #onetrust-banner-sdk td, #onetrust-banner-sdk tbody, #onetrust-banner-sdk .ot-main-content, #onetrust-banner-sdk .ot-toggle, #onetrust-banner-sdk #ot-content, #onetrust-banner-sdk #ot-pc-content, #onetrust-banner-sdk .checkbox, #onetrust-pc-sdk div, #onetrust-pc-sdk span, #onetrust-pc-sdk h1, #onetrust-pc-sdk h2, #onetrust-pc-sdk h3, #onetrust-pc-sdk h4, #onetrust-pc-sdk h5, #onetrust-pc-sdk h6, #onetrust-pc-sdk p, #onetrust-pc-sdk img, #onetrust-pc-sdk svg, #onetrust-pc-sdk button, #onetrust-pc-sdk section, #onetrust-pc-sdk a, #onetrust-pc-sdk label, #onetrust-pc-sdk input, #onetrust-pc-sdk ul, #onetrust-pc-sdk li, #onetrust-pc-sdk nav, #onetrust-pc-sdk table, #onetrust-pc-sdk thead, #onetrust-pc-sdk tr, #onetrust-pc-sdk td, #onetrust-pc-sdk tbody, #onetrust-pc-sdk .ot-main-content, #onetrust-pc-sdk .ot-toggle, #onetrust-pc-sdk #ot-content, #onetrust-pc-sdk #ot-pc-content, #onetrust-pc-sdk .checkbox, #ot-sdk-cookie-policy div, #ot-sdk-cookie-policy span, #ot-sdk-cookie-policy h1, #ot-sdk-cookie-policy h2, #ot-sdk-cookie-policy h3, #ot-sdk-cookie-policy h4, #ot-sdk-cookie-policy h5, #ot-sdk-cookie-policy h6, #ot-sdk-cookie-policy p, #ot-sdk-cookie-policy img, #ot-sdk-cookie-policy svg, #ot-sdk-cookie-policy button, #ot-sdk-cookie-policy section, #ot-sdk-cookie-policy a, #ot-sdk-cookie-policy label, #ot-sdk-cookie-policy input, #ot-sdk-cookie-policy ul, #ot-sdk-cookie-policy li, #ot-sdk-cookie-policy nav, #ot-sdk-cookie-policy table, #ot-sdk-cookie-policy thead, #ot-sdk-cookie-policy tr, #ot-sdk-cookie-policy td, #ot-sdk-cookie-policy tbody, #ot-sdk-cookie-policy .ot-main-content, #ot-sdk-cookie-policy .ot-toggle, #ot-sdk-cookie-policy #ot-content, #ot-sdk-cookie-policy #ot-pc-content, #ot-sdk-cookie-policy .checkbox, #ot-sync-ntfy div, #ot-sync-ntfy span, #ot-sync-ntfy h1, #ot-sync-ntfy h2, #ot-sync-ntfy h3, #ot-sync-ntfy h4, #ot-sync-ntfy h5, #ot-sync-ntfy h6, #ot-sync-ntfy p, #ot-sync-ntfy img, #ot-sync-ntfy svg, #ot-sync-ntfy button, #ot-sync-ntfy section, #ot-sync-ntfy a, #ot-sync-ntfy label, #ot-sync-ntfy input, #ot-sync-ntfy ul, #ot-sync-ntfy li, #ot-sync-ntfy nav, #ot-sync-ntfy table, #ot-sync-ntfy thead, #ot-sync-ntfy tr, #ot-sync-ntfy td, #ot-sync-ntfy tbody, #ot-sync-ntfy .ot-main-content, #ot-sync-ntfy .ot-toggle, #ot-sync-ntfy #ot-content, #ot-sync-ntfy #ot-pc-content, #ot-sync-ntfy .checkbox { font-family: inherit; font-weight: normal; -webkit-font-smoothing: auto; letter-spacing: normal; line-height: normal; padding: 0px; margin: 0px; height: auto; min-height: 0px; max-height: none; width: auto; min-width: 0px; max-width: none; border-radius: 0px; border: none; clear: none; float: none; position: static; inset: auto; text-align: left; text-decoration: none; text-indent: 0px; text-shadow: none; text-transform: none; white-space: normal; background: none; overflow: visible; vertical-align: baseline; visibility: visible; z-index: auto; box-shadow: none; }\r\n#onetrust-banner-sdk label::before, #onetrust-banner-sdk label::after, #onetrust-banner-sdk .checkbox::after, #onetrust-banner-sdk .checkbox::before, #onetrust-pc-sdk label::before, #onetrust-pc-sdk label::after, #onetrust-pc-sdk .checkbox::after, #onetrust-pc-sdk .checkbox::before, #ot-sdk-cookie-policy label::before, #ot-sdk-cookie-policy label::after, #ot-sdk-cookie-policy .checkbox::after, #ot-sdk-cookie-policy .checkbox::before, #ot-sync-ntfy label::before, #ot-sync-ntfy label::after, #ot-sync-ntfy .checkbox::after, #ot-sync-ntfy .checkbox::before { content: none; }\r\n#onetrust-banner-sdk .ot-sdk-container, #onetrust-pc-sdk .ot-sdk-container, #ot-sdk-cookie-policy .ot-sdk-container { position: relative; width: 100%; max-width: 100%; margin: 0px auto; padding: 0px 20px; box-sizing: border-box; }\r\n#onetrust-banner-sdk .ot-sdk-column, #onetrust-banner-sdk .ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-column, #onetrust-pc-sdk .ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-column, #ot-sdk-cookie-policy .ot-sdk-columns { width: 100%; float: left; box-sizing: border-box; padding: 0px; display: initial; }\r\n@media (min-width: 400px) {\n  #onetrust-banner-sdk .ot-sdk-container, #onetrust-pc-sdk .ot-sdk-container, #ot-sdk-cookie-policy .ot-sdk-container { width: 90%; padding: 0px; }\n}\r\n@media (min-width: 550px) {\n  #onetrust-banner-sdk .ot-sdk-container, #onetrust-pc-sdk .ot-sdk-container, #ot-sdk-cookie-policy .ot-sdk-container { width: 100%; }\n  #onetrust-banner-sdk .ot-sdk-column, #onetrust-banner-sdk .ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-column, #onetrust-pc-sdk .ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-column, #ot-sdk-cookie-policy .ot-sdk-columns { margin-left: 4%; }\n  #onetrust-banner-sdk .ot-sdk-column:first-child, #onetrust-banner-sdk .ot-sdk-columns:first-child, #onetrust-pc-sdk .ot-sdk-column:first-child, #onetrust-pc-sdk .ot-sdk-columns:first-child, #ot-sdk-cookie-policy .ot-sdk-column:first-child, #ot-sdk-cookie-policy .ot-sdk-columns:first-child { margin-left: 0px; }\n  #onetrust-banner-sdk .ot-sdk-two.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-two.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-two.ot-sdk-columns { width: 13.3333%; }\n  #onetrust-banner-sdk .ot-sdk-three.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-three.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-three.ot-sdk-columns { width: 22%; }\n  #onetrust-banner-sdk .ot-sdk-four.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-four.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-four.ot-sdk-columns { width: 30.6667%; }\n  #onetrust-banner-sdk .ot-sdk-eight.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-eight.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-eight.ot-sdk-columns { width: 65.3333%; }\n  #onetrust-banner-sdk .ot-sdk-nine.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-nine.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-nine.ot-sdk-columns { width: 74%; }\n  #onetrust-banner-sdk .ot-sdk-ten.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-ten.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-ten.ot-sdk-columns { width: 82.6667%; }\n  #onetrust-banner-sdk .ot-sdk-eleven.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-eleven.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-eleven.ot-sdk-columns { width: 91.3333%; }\n  #onetrust-banner-sdk .ot-sdk-twelve.ot-sdk-columns, #onetrust-pc-sdk .ot-sdk-twelve.ot-sdk-columns, #ot-sdk-cookie-policy .ot-sdk-twelve.ot-sdk-columns { width: 100%; margin-left: 0px; }\n}\r\n#onetrust-banner-sdk h1, #onetrust-banner-sdk h2, #onetrust-banner-sdk h3, #onetrust-banner-sdk h4, #onetrust-banner-sdk h5, #onetrust-banner-sdk h6, #onetrust-pc-sdk h1, #onetrust-pc-sdk h2, #onetrust-pc-sdk h3, #onetrust-pc-sdk h4, #onetrust-pc-sdk h5, #onetrust-pc-sdk h6, #ot-sdk-cookie-policy h1, #ot-sdk-cookie-policy h2, #ot-sdk-cookie-policy h3, #ot-sdk-cookie-policy h4, #ot-sdk-cookie-policy h5, #ot-sdk-cookie-policy h6 { margin-top: 0px; font-weight: 600; font-family: inherit; }\r\n#onetrust-banner-sdk h1, #onetrust-pc-sdk h1, #ot-sdk-cookie-policy h1 { font-size: 1.5rem; line-height: 1.2; }\r\n#onetrust-banner-sdk h2, #onetrust-pc-sdk h2, #ot-sdk-cookie-policy h2 { font-size: 1.5rem; line-height: 1.25; }\r\n#onetrust-banner-sdk h3, #onetrust-pc-sdk h3, #ot-sdk-cookie-policy h3 { font-size: 1.5rem; line-height: 1.3; }\r\n#onetrust-banner-sdk h4, #onetrust-pc-sdk h4, #ot-sdk-cookie-policy h4 { font-size: 1.5rem; line-height: 1.35; }\r\n#onetrust-banner-sdk h5, #onetrust-pc-sdk h5, #ot-sdk-cookie-policy h5 { font-size: 1.5rem; line-height: 1.5; }\r\n#onetrust-banner-sdk h6, #onetrust-pc-sdk h6, #ot-sdk-cookie-policy h6 { font-size: 1.5rem; line-height: 1.6; }\r\n@media (min-width: 550px) {\n  #onetrust-banner-sdk h1, #onetrust-pc-sdk h1, #ot-sdk-cookie-policy h1 { font-size: 1.5rem; }\n  #onetrust-banner-sdk h2, #onetrust-pc-sdk h2, #ot-sdk-cookie-policy h2 { font-size: 1.5rem; }\n  #onetrust-banner-sdk h3, #onetrust-pc-sdk h3, #ot-sdk-cookie-policy h3 { font-size: 1.5rem; }\n  #onetrust-banner-sdk h4, #onetrust-pc-sdk h4, #ot-sdk-cookie-policy h4 { font-size: 1.5rem; }\n  #onetrust-banner-sdk h5, #onetrust-pc-sdk h5, #ot-sdk-cookie-policy h5 { font-size: 1.5rem; }\n  #onetrust-banner-sdk h6, #onetrust-pc-sdk h6, #ot-sdk-cookie-policy h6 { font-size: 1.5rem; }\n}\r\n#onetrust-banner-sdk p, #onetrust-pc-sdk p, #ot-sdk-cookie-policy p { margin: 0px 0px 1em; font-family: inherit; line-height: normal; }\r\n#onetrust-banner-sdk a, #onetrust-pc-sdk a, #ot-sdk-cookie-policy a { color: rgb(86, 86, 86); text-decoration: underline; }\r\n#onetrust-banner-sdk a:hover, #onetrust-pc-sdk a:hover, #ot-sdk-cookie-policy a:hover { color: rgb(86, 86, 86); text-decoration: none; }\r\n#onetrust-banner-sdk .ot-sdk-button, #onetrust-banner-sdk button, #onetrust-pc-sdk .ot-sdk-button, #onetrust-pc-sdk button, #ot-sdk-cookie-policy .ot-sdk-button, #ot-sdk-cookie-policy button { margin-bottom: 1rem; font-family: inherit; }\r\n#onetrust-banner-sdk .ot-sdk-button, #onetrust-banner-sdk button, #onetrust-pc-sdk .ot-sdk-button, #onetrust-pc-sdk button, #ot-sdk-cookie-policy .ot-sdk-button, #ot-sdk-cookie-policy button { display: inline-block; height: 38px; padding: 0px 30px; color: rgb(85, 85, 85); text-align: center; font-size: 0.9em; font-weight: 400; line-height: 38px; letter-spacing: 0.01em; text-decoration: none; white-space: nowrap; background-color: rgba(0, 0, 0, 0); border-radius: 2px; border: 1px solid rgb(187, 187, 187); cursor: pointer; box-sizing: border-box; }\r\n#onetrust-banner-sdk .ot-sdk-button:hover, #onetrust-banner-sdk :not(.ot-leg-btn-container) > button:not(.ot-link-btn):hover, #onetrust-banner-sdk :not(.ot-leg-btn-container) > button:not(.ot-link-btn):focus, #onetrust-pc-sdk .ot-sdk-button:hover, #onetrust-pc-sdk :not(.ot-leg-btn-container) > button:not(.ot-link-btn):hover, #onetrust-pc-sdk :not(.ot-leg-btn-container) > button:not(.ot-link-btn):focus, #ot-sdk-cookie-policy .ot-sdk-button:hover, #ot-sdk-cookie-policy :not(.ot-leg-btn-container) > button:not(.ot-link-btn):hover, #ot-sdk-cookie-policy :not(.ot-leg-btn-container) > button:not(.ot-link-btn):focus { color: rgb(51, 51, 51); border-color: rgb(136, 136, 136); opacity: 0.7; }\r\n#onetrust-banner-sdk .ot-sdk-button:focus, #onetrust-banner-sdk :not(.ot-leg-btn-container) > button:focus, #onetrust-pc-sdk .ot-sdk-button:focus, #onetrust-pc-sdk :not(.ot-leg-btn-container) > button:focus, #ot-sdk-cookie-policy .ot-sdk-button:focus, #ot-sdk-cookie-policy :not(.ot-leg-btn-container) > button:focus { outline: rgb(0, 0, 0) solid 2px; }\r\n#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary, #onetrust-banner-sdk button.ot-sdk-button-primary, #onetrust-banner-sdk input[type=\"submit\"].ot-sdk-button-primary, #onetrust-banner-sdk input[type=\"reset\"].ot-sdk-button-primary, #onetrust-banner-sdk input[type=\"button\"].ot-sdk-button-primary, #onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary, #onetrust-pc-sdk button.ot-sdk-button-primary, #onetrust-pc-sdk input[type=\"submit\"].ot-sdk-button-primary, #onetrust-pc-sdk input[type=\"reset\"].ot-sdk-button-primary, #onetrust-pc-sdk input[type=\"button\"].ot-sdk-button-primary, #ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary, #ot-sdk-cookie-policy button.ot-sdk-button-primary, #ot-sdk-cookie-policy input[type=\"submit\"].ot-sdk-button-primary, #ot-sdk-cookie-policy input[type=\"reset\"].ot-sdk-button-primary, #ot-sdk-cookie-policy input[type=\"button\"].ot-sdk-button-primary { color: rgb(255, 255, 255); background-color: rgb(51, 195, 240); border-color: rgb(51, 195, 240); }\r\n#onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:hover, #onetrust-banner-sdk button.ot-sdk-button-primary:hover, #onetrust-banner-sdk input[type=\"submit\"].ot-sdk-button-primary:hover, #onetrust-banner-sdk input[type=\"reset\"].ot-sdk-button-primary:hover, #onetrust-banner-sdk input[type=\"button\"].ot-sdk-button-primary:hover, #onetrust-banner-sdk .ot-sdk-button.ot-sdk-button-primary:focus, #onetrust-banner-sdk button.ot-sdk-button-primary:focus, #onetrust-banner-sdk input[type=\"submit\"].ot-sdk-button-primary:focus, #onetrust-banner-sdk input[type=\"reset\"].ot-sdk-button-primary:focus, #onetrust-banner-sdk input[type=\"button\"].ot-sdk-button-primary:focus, #onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:hover, #onetrust-pc-sdk button.ot-sdk-button-primary:hover, #onetrust-pc-sdk input[type=\"submit\"].ot-sdk-button-primary:hover, #onetrust-pc-sdk input[type=\"reset\"].ot-sdk-button-primary:hover, #onetrust-pc-sdk input[type=\"button\"].ot-sdk-button-primary:hover, #onetrust-pc-sdk .ot-sdk-button.ot-sdk-button-primary:focus, #onetrust-pc-sdk button.ot-sdk-button-primary:focus, #onetrust-pc-sdk input[type=\"submit\"].ot-sdk-button-primary:focus, #onetrust-pc-sdk input[type=\"reset\"].ot-sdk-button-primary:focus, #onetrust-pc-sdk input[type=\"button\"].ot-sdk-button-primary:focus, #ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:hover, #ot-sdk-cookie-policy button.ot-sdk-button-primary:hover, #ot-sdk-cookie-policy input[type=\"submit\"].ot-sdk-button-primary:hover, #ot-sdk-cookie-policy input[type=\"reset\"].ot-sdk-button-primary:hover, #ot-sdk-cookie-policy input[type=\"button\"].ot-sdk-button-primary:hover, #ot-sdk-cookie-policy .ot-sdk-button.ot-sdk-button-primary:focus, #ot-sdk-cookie-policy button.ot-sdk-button-primary:focus, #ot-sdk-cookie-policy input[type=\"submit\"].ot-sdk-button-primary:focus, #ot-sdk-cookie-policy input[type=\"reset\"].ot-sdk-button-primary:focus, #ot-sdk-cookie-policy input[type=\"button\"].ot-sdk-button-primary:focus { color: rgb(255, 255, 255); background-color: rgb(30, 174, 219); border-color: rgb(30, 174, 219); }\r\n#onetrust-banner-sdk input[type=\"text\"], #onetrust-pc-sdk input[type=\"text\"], #ot-sdk-cookie-policy input[type=\"text\"] { height: 38px; padding: 6px 10px; background-color: rgb(255, 255, 255); border: 1px solid rgb(209, 209, 209); border-radius: 4px; box-shadow: none; box-sizing: border-box; }\r\n#onetrust-banner-sdk input[type=\"text\"], #onetrust-pc-sdk input[type=\"text\"], #ot-sdk-cookie-policy input[type=\"text\"] { appearance: none; }\r\n#onetrust-banner-sdk input[type=\"text\"]:focus, #onetrust-pc-sdk input[type=\"text\"]:focus, #ot-sdk-cookie-policy input[type=\"text\"]:focus { border: 1px solid rgb(0, 0, 0); outline: 0px; }\r\n#onetrust-banner-sdk label, #onetrust-pc-sdk label, #ot-sdk-cookie-policy label { display: block; margin-bottom: 0.5rem; font-weight: 600; }\r\n#onetrust-banner-sdk input[type=\"checkbox\"], #onetrust-pc-sdk input[type=\"checkbox\"], #ot-sdk-cookie-policy input[type=\"checkbox\"] { display: inline; }\r\n#onetrust-banner-sdk ul, #onetrust-pc-sdk ul, #ot-sdk-cookie-policy ul { list-style: inside circle; }\r\n#onetrust-banner-sdk ul, #onetrust-pc-sdk ul, #ot-sdk-cookie-policy ul { padding-left: 0px; margin-top: 0px; }\r\n#onetrust-banner-sdk ul ul, #onetrust-pc-sdk ul ul, #ot-sdk-cookie-policy ul ul { margin: 1.5rem 0px 1.5rem 3rem; font-size: 90%; }\r\n#onetrust-banner-sdk li, #onetrust-pc-sdk li, #ot-sdk-cookie-policy li { margin-bottom: 1rem; }\r\n#onetrust-banner-sdk th, #onetrust-banner-sdk td, #onetrust-pc-sdk th, #onetrust-pc-sdk td, #ot-sdk-cookie-policy th, #ot-sdk-cookie-policy td { padding: 12px 15px; text-align: left; border-bottom: 1px solid rgb(225, 225, 225); }\r\n#onetrust-banner-sdk button, #onetrust-pc-sdk button, #ot-sdk-cookie-policy button { margin-bottom: 1rem; font-family: inherit; }\r\n#onetrust-banner-sdk .ot-sdk-container::after, #onetrust-banner-sdk .ot-sdk-row::after, #onetrust-pc-sdk .ot-sdk-container::after, #onetrust-pc-sdk .ot-sdk-row::after, #ot-sdk-cookie-policy .ot-sdk-container::after, #ot-sdk-cookie-policy .ot-sdk-row::after { content: \"\"; display: table; clear: both; }\r\n#onetrust-banner-sdk .ot-sdk-row, #onetrust-pc-sdk .ot-sdk-row, #ot-sdk-cookie-policy .ot-sdk-row { margin: 0px; max-width: none; display: block; }\r\n#onetrust-banner-sdk { box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 18px; }\r\n#onetrust-banner-sdk.otFlat { position: fixed; z-index: 2147483645; bottom: 0px; right: 0px; left: 0px; background-color: rgb(255, 255, 255); max-height: 90%; overflow: hidden auto; }\r\n#onetrust-banner-sdk.otFlat.top { top: 0px; bottom: auto; }\r\n#onetrust-banner-sdk.otRelFont { font-size: 1rem; }\r\n#onetrust-banner-sdk > .ot-sdk-container { overflow: hidden; }\r\n#onetrust-banner-sdk::-webkit-scrollbar { width: 11px; }\r\n#onetrust-banner-sdk::-webkit-scrollbar-thumb { border-radius: 10px; background: rgb(193, 193, 193); }\r\n#onetrust-banner-sdk { }\r\n#onetrust-banner-sdk #onetrust-policy { margin: 1.25em 0px 0.625em 2em; overflow: hidden; }\r\n#onetrust-banner-sdk #onetrust-policy .ot-gv-list-handler { float: left; font-size: 0.82em; padding: 0px; margin-bottom: 0px; border: 0px; line-height: normal; height: auto; width: auto; }\r\n#onetrust-banner-sdk #onetrust-policy-title { font-size: 1.2em; line-height: 1.3; margin-bottom: 10px; }\r\n#onetrust-banner-sdk #onetrust-policy-text { clear: both; text-align: left; font-size: 0.88em; line-height: 1.4; }\r\n#onetrust-banner-sdk #onetrust-policy-text * { font-size: inherit; line-height: inherit; }\r\n#onetrust-banner-sdk #onetrust-policy-text a { font-weight: bold; margin-left: 5px; }\r\n#onetrust-banner-sdk #onetrust-policy-title, #onetrust-banner-sdk #onetrust-policy-text { color: dimgray; float: left; }\r\n#onetrust-banner-sdk #onetrust-button-group-parent { min-height: 1px; text-align: center; }\r\n#onetrust-banner-sdk #onetrust-button-group { display: inline-block; }\r\n#onetrust-banner-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler, #onetrust-banner-sdk #onetrust-pc-btn-handler { background-color: rgb(104, 182, 49); color: rgb(255, 255, 255); border-color: rgb(104, 182, 49); margin-right: 1em; min-width: 125px; height: auto; white-space: normal; word-break: break-word; overflow-wrap: break-word; padding: 12px 10px; line-height: 1.2; font-size: 0.813em; font-weight: 600; }\r\n#onetrust-banner-sdk #onetrust-pc-btn-handler.cookie-setting-link { background-color: rgb(255, 255, 255); border: none; color: rgb(104, 182, 49); text-decoration: underline; padding-left: 0px; padding-right: 0px; }\r\n#onetrust-banner-sdk .onetrust-close-btn-ui { width: 44px; height: 44px; background-size: 12px; border: none; position: relative; margin: auto; padding: 0px; }\r\n#onetrust-banner-sdk .banner_logo { display: none; }\r\n#onetrust-banner-sdk.ot-bnr-w-logo .ot-bnr-logo { position: absolute; top: 50%; transform: translateY(-50%); left: 0px; }\r\n#onetrust-banner-sdk.ot-bnr-w-logo #onetrust-policy { margin-left: 65px; }\r\n#onetrust-banner-sdk .ot-b-addl-desc { clear: both; float: left; display: block; }\r\n#onetrust-banner-sdk #banner-options { float: left; display: table; margin-right: 0px; margin-left: 1em; width: calc(100% - 1em); }\r\n#onetrust-banner-sdk .banner-option-input { cursor: pointer; width: auto; height: auto; border: none; padding: 0px 3px 0px 0px; margin: 0px 0px 10px; font-size: 0.82em; line-height: 1.4; }\r\n#onetrust-banner-sdk .banner-option-input * { pointer-events: none; font-size: inherit; line-height: inherit; }\r\n#onetrust-banner-sdk .banner-option-input[aria-expanded=\"true\"] ~ .banner-option-details { display: block; height: auto; }\r\n#onetrust-banner-sdk .banner-option-input[aria-expanded=\"true\"] .ot-arrow-container { transform: rotate(90deg); }\r\n#onetrust-banner-sdk .banner-option { margin-bottom: 12px; margin-left: 0px; border: none; float: left; padding: 0px; }\r\n#onetrust-banner-sdk .banner-option:first-child { padding-left: 2px; }\r\n#onetrust-banner-sdk .banner-option:not(:first-child) { padding: 0px; border: none; }\r\n#onetrust-banner-sdk .banner-option-header { cursor: pointer; display: inline-block; }\r\n#onetrust-banner-sdk .banner-option-header :first-child { color: dimgray; font-weight: bold; float: left; }\r\n#onetrust-banner-sdk .banner-option-header .ot-arrow-container { display: inline-block; border-top: 6px solid rgba(0, 0, 0, 0); border-bottom: 6px solid rgba(0, 0, 0, 0); border-left: 6px solid dimgray; margin-left: 10px; vertical-align: middle; }\r\n#onetrust-banner-sdk .banner-option-details { display: none; font-size: 0.83em; line-height: 1.5; padding: 10px 0px 5px 10px; margin-right: 10px; height: 0px; }\r\n#onetrust-banner-sdk .banner-option-details * { font-size: inherit; line-height: inherit; color: dimgray; }\r\n#onetrust-banner-sdk .ot-arrow-container, #onetrust-banner-sdk .banner-option-details { transition: 300ms ease-in; }\r\n#onetrust-banner-sdk .ot-dpd-container { float: left; }\r\n#onetrust-banner-sdk .ot-dpd-title { margin-bottom: 10px; }\r\n#onetrust-banner-sdk .ot-dpd-title, #onetrust-banner-sdk .ot-dpd-desc { font-size: 0.88em; line-height: 1.4; color: dimgray; }\r\n#onetrust-banner-sdk .ot-dpd-title *, #onetrust-banner-sdk .ot-dpd-desc * { font-size: inherit; line-height: inherit; }\r\n#onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text * { margin-bottom: 0px; }\r\n#onetrust-banner-sdk.ot-iab-2 .onetrust-vendors-list-handler { display: block; margin-left: 0px; margin-top: 5px; clear: both; margin-bottom: 0px; padding: 0px; border: 0px; height: auto; width: auto; }\r\n#onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button { display: block; }\r\n#onetrust-banner-sdk.ot-close-btn-link { padding-top: 25px; }\r\n#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container { top: 15px; transform: none; right: 15px; }\r\n#onetrust-banner-sdk.ot-close-btn-link #onetrust-close-btn-container button { padding: 0px; white-space: pre-wrap; border: none; height: auto; line-height: 1.5; text-decoration: underline; font-size: 0.69em; }\r\n#onetrust-banner-sdk #onetrust-policy-text, #onetrust-banner-sdk .ot-dpd-desc, #onetrust-banner-sdk .ot-b-addl-desc { font-size: 0.813em; line-height: 1.5; }\r\n#onetrust-banner-sdk .ot-dpd-desc { margin-bottom: 10px; }\r\n#onetrust-banner-sdk .ot-dpd-desc > .ot-b-addl-desc { margin-top: 10px; margin-bottom: 10px; font-size: 1em; }\r\n@media only screen and (max-width: 425px) {\n  #onetrust-banner-sdk #onetrust-close-btn-container { position: absolute; top: 6px; right: 2px; }\n  #onetrust-banner-sdk #onetrust-policy { margin-left: 0px; margin-top: 3em; }\n  #onetrust-banner-sdk #onetrust-button-group { display: block; }\n  #onetrust-banner-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler, #onetrust-banner-sdk #onetrust-pc-btn-handler { width: 100%; }\n  #onetrust-banner-sdk .onetrust-close-btn-ui { top: auto; transform: none; }\n  #onetrust-banner-sdk #onetrust-policy-title { display: inline; float: none; }\n  #onetrust-banner-sdk #banner-options { margin: 0px; padding: 0px; width: 100%; }\n}\r\n@media only screen and (min-width: 426px) and (max-width: 896px) {\n  #onetrust-banner-sdk #onetrust-close-btn-container { position: absolute; top: 0px; right: 0px; }\n  #onetrust-banner-sdk #onetrust-policy { margin-left: 1em; margin-right: 1em; }\n  #onetrust-banner-sdk .onetrust-close-btn-ui { top: 10px; right: 10px; }\n  #onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container { width: 95%; }\n  #onetrust-banner-sdk.ot-iab-2 #onetrust-group-container { width: 100%; }\n  #onetrust-banner-sdk.ot-bnr-w-logo #onetrust-button-group-parent { padding-left: 50px; }\n  #onetrust-banner-sdk #onetrust-button-group-parent { width: 100%; position: relative; margin-left: 0px; }\n  #onetrust-banner-sdk #onetrust-button-group button { display: inline-block; }\n  #onetrust-banner-sdk #onetrust-button-group { margin-right: 0px; text-align: center; }\n  #onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler { float: left; }\n  #onetrust-banner-sdk .has-reject-all-button #onetrust-reject-all-handler, #onetrust-banner-sdk .has-reject-all-button #onetrust-accept-btn-handler { float: right; }\n  #onetrust-banner-sdk .has-reject-all-button #onetrust-button-group { width: calc(100% - 2em); margin-right: 0px; }\n  #onetrust-banner-sdk .has-reject-all-button #onetrust-pc-btn-handler.cookie-setting-link { padding-left: 0px; text-align: left; }\n  #onetrust-banner-sdk.ot-buttons-fw .ot-sdk-three button { width: 100%; text-align: center; }\n  #onetrust-banner-sdk.ot-buttons-fw #onetrust-button-group-parent button { float: none; }\n  #onetrust-banner-sdk.ot-buttons-fw #onetrust-pc-btn-handler.cookie-setting-link { text-align: center; }\n}\r\n@media only screen and (min-width: 550px) {\n  #onetrust-banner-sdk .banner-option:not(:first-child) { border-left: 1px solid rgb(216, 216, 216); padding-left: 25px; }\n}\r\n@media only screen and (min-width: 425px) and (max-width: 550px) {\n  #onetrust-banner-sdk.ot-iab-2 #onetrust-button-group, #onetrust-banner-sdk.ot-iab-2 #onetrust-policy, #onetrust-banner-sdk.ot-iab-2 .banner-option { width: 100%; }\n  #onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler, #onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler, #onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-pc-btn-handler { width: 100%; }\n  #onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-accept-btn-handler, #onetrust-banner-sdk.ot-iab-2 #onetrust-button-group #onetrust-reject-all-handler { float: left; }\n}\r\n@media only screen and (min-width: 769px) {\n  #onetrust-banner-sdk #onetrust-button-group { margin-right: 30%; }\n  #onetrust-banner-sdk #banner-options { margin-left: 2em; margin-right: 5em; margin-bottom: 1.25em; width: calc(100% - 7em); }\n}\r\n@media only screen and (min-width: 897px) and (max-width: 1023px) {\n  #onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent { position: absolute; top: 50%; left: 75%; transform: translateY(-50%); }\n  #onetrust-banner-sdk #onetrust-close-btn-container { top: 50%; margin: auto; transform: translate(-50%, -50%); position: absolute; padding: 0px; right: 0px; }\n  #onetrust-banner-sdk #onetrust-close-btn-container button { position: relative; margin: 0px; right: -22px; top: 2px; }\n}\r\n@media only screen and (min-width: 1024px) {\n  #onetrust-banner-sdk #onetrust-close-btn-container { top: 50%; margin: auto; transform: translate(-50%, -50%); position: absolute; right: 0px; }\n  #onetrust-banner-sdk #onetrust-close-btn-container button { right: -12px; }\n  #onetrust-banner-sdk #onetrust-policy { margin-left: 2em; }\n  #onetrust-banner-sdk.vertical-align-content #onetrust-button-group-parent { position: absolute; top: 50%; left: 60%; transform: translateY(-50%); }\n  #onetrust-banner-sdk .ot-optout-signal { width: 50%; }\n  #onetrust-banner-sdk.ot-iab-2 #onetrust-policy-title { width: 50%; }\n  #onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text, #onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc) > .ot-b-addl-desc { margin-bottom: 1em; width: 50%; border-right: 1px solid rgb(216, 216, 216); padding-right: 1rem; }\n  #onetrust-banner-sdk.ot-iab-2 #onetrust-policy-text { margin-bottom: 0px; padding-bottom: 1em; }\n  #onetrust-banner-sdk.ot-iab-2 :not(.ot-dpd-desc) > .ot-b-addl-desc { margin-bottom: 0px; padding-bottom: 1em; }\n  #onetrust-banner-sdk.ot-iab-2 .ot-dpd-container { width: 45%; padding-left: 1rem; display: inline-block; float: none; }\n  #onetrust-banner-sdk.ot-iab-2 .ot-dpd-title { line-height: 1.7; }\n  #onetrust-banner-sdk.ot-iab-2 #onetrust-button-group-parent { left: auto; right: 4%; margin-left: 0px; }\n  #onetrust-banner-sdk.ot-iab-2 #onetrust-button-group button { display: block; }\n  #onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent { margin: auto; width: 30%; }\n  #onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container { width: 60%; }\n  #onetrust-banner-sdk #onetrust-button-group { margin-right: auto; }\n  #onetrust-banner-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler, #onetrust-banner-sdk #onetrust-pc-btn-handler { margin-top: 1em; }\n}\r\n@media only screen and (min-width: 890px) {\n  #onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group-parent { padding-left: 3%; padding-right: 4%; margin-left: 0px; }\n  #onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group { margin-right: 0px; margin-top: 1.25em; width: 100%; }\n  #onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button { width: 100%; margin-bottom: 5px; margin-top: 5px; }\n  #onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button:last-of-type { margin-bottom: 20px; }\n}\r\n@media only screen and (min-width: 1280px) {\n  #onetrust-banner-sdk:not(.ot-iab-2) #onetrust-group-container { width: 55%; }\n  #onetrust-banner-sdk:not(.ot-iab-2) #onetrust-button-group-parent { width: 44%; padding-left: 2%; padding-right: 2%; }\n  #onetrust-banner-sdk:not(.ot-iab-2).vertical-align-content #onetrust-button-group-parent { position: absolute; left: 55%; }\n}\r\n#onetrust-consent-sdk #onetrust-banner-sdk { background-color: rgb(255, 255, 255); }\r\n#onetrust-consent-sdk #onetrust-policy-title, #onetrust-consent-sdk #onetrust-policy-text, #onetrust-consent-sdk .ot-b-addl-desc, #onetrust-consent-sdk .ot-dpd-desc, #onetrust-consent-sdk .ot-dpd-title, #onetrust-consent-sdk #onetrust-policy-text :not(.onetrust-vendors-list-handler), #onetrust-consent-sdk .ot-dpd-desc :not(.onetrust-vendors-list-handler), #onetrust-consent-sdk #onetrust-banner-sdk #banner-options *, #onetrust-banner-sdk .ot-cat-header, #onetrust-banner-sdk .ot-optout-signal { color: rgb(48, 48, 48); }\r\n#onetrust-consent-sdk #onetrust-banner-sdk .banner-option-details { background-color: rgb(233, 233, 233); }\r\n#onetrust-consent-sdk #onetrust-banner-sdk a[href], #onetrust-consent-sdk #onetrust-banner-sdk a[href] font, #onetrust-consent-sdk #onetrust-banner-sdk .ot-link-btn { color: rgb(0, 123, 194); }\r\n#onetrust-consent-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler { background-color: rgb(0, 123, 194); border-color: rgb(0, 123, 194); color: rgb(255, 255, 255); }\r\n#onetrust-consent-sdk #onetrust-banner-sdk :focus, #onetrust-consent-sdk #onetrust-banner-sdk:focus { outline-color: rgb(0, 0, 0); outline-width: 1px; }\r\n#onetrust-consent-sdk #onetrust-pc-btn-handler, #onetrust-consent-sdk #onetrust-pc-btn-handler.cookie-setting-link { color: rgb(255, 255, 255); border-color: rgb(255, 255, 255); background-color: rgb(0, 123, 194); }\r\n#onetrust-banner-sdk.otFlat { }\r\n#onetrust-consent-sdk #onetrust-banner-sdk a[href] { color: rgb(0, 123, 194); text-decoration: underline; outline: none; margin-left: 3px; }\r\n#onetrust-banner-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler, #onetrust-banner-sdk #onetrust-pc-btn-handler { margin-right: auto; }\r\nbutton#onetrust-accept-btn-handler:hover { background-color: rgb(0, 98, 155) !important; opacity: 100 !important; }\r\nbutton#onetrust-pc-btn-handler:hover { background-color: rgb(0, 98, 155) !important; opacity: 100 !important; }\r\nbutton.save-preference-btn-handler:hover { background-color: rgb(0, 98, 155) !important; opacity: 100 !important; }\r\nbutton#accept-recommended-btn-handler:hover { background-color: rgb(0, 98, 155) !important; opacity: 100 !important; }\r\nbutton#onetrust-reject-all-handler:hover { background-color: rgb(0, 98, 155) !important; opacity: 100 !important; }\r\nbutton.ot-pc-refuse-all-handler:hover { background-color: rgb(0, 98, 155) !important; opacity: 100 !important; }\r\nbutton#onetrust-accept-btn-handler:active { background-color: rgb(0, 123, 194) !important; opacity: 100 !important; }\r\nbutton#onetrust-pc-btn-handler:active { background-color: rgb(0, 123, 194) !important; opacity: 100 !important; }\r\nbutton.save-preference-btn-handler:active { background-color: rgb(0, 123, 194) !important; opacity: 100 !important; }\r\nbutton#accept-recommended-btn-handler:active { background-color: rgb(0, 123, 194) !important; opacity: 100 !important; }\r\nbutton#onetrust-reject-all-handler:active { background-color: rgb(0, 123, 194) !important; opacity: 100 !important; }\r\nbutton.ot-pc-refuse-all-handler:active { background-color: rgb(0, 123, 194) !important; opacity: 100 !important; }\r\n#onetrust-pc-sdk { position: fixed; width: 730px; max-width: 730px; height: 610px; inset: 0px; margin: auto; font-size: 16px; z-index: 2147483647; border-radius: 2px; background-color: rgb(255, 255, 255); box-shadow: rgba(0, 0, 0, 0) 0px 2px 4px 0px, rgba(50, 50, 93, 0.1) 0px 7px 14px 0px; }\r\n#onetrust-pc-sdk.otRelFont { font-size: 1rem; }\r\n#onetrust-pc-sdk *, #onetrust-pc-sdk ::after, #onetrust-pc-sdk ::before { box-sizing: content-box; }\r\n#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr, #onetrust-pc-sdk .ot-hide-tgl { visibility: hidden; }\r\n#onetrust-pc-sdk #ot-addtl-venlst .ot-arw-cntr *, #onetrust-pc-sdk .ot-hide-tgl * { visibility: hidden; }\r\n#onetrust-pc-sdk #ot-pc-content, #onetrust-pc-sdk #ot-pc-lst { height: calc(100% - 185px); }\r\n#onetrust-pc-sdk li { list-style: none; }\r\n#onetrust-pc-sdk ul, #onetrust-pc-sdk li { margin: 0px; }\r\n#onetrust-pc-sdk a { text-decoration: none; }\r\n#onetrust-pc-sdk .ot-link-btn { padding: 0px; margin-bottom: 0px; border: 0px; font-weight: normal; line-height: normal; width: auto; height: auto; }\r\n#onetrust-pc-sdk .ot-grps-cntr ::-webkit-scrollbar, #onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar { width: 11px; }\r\n#onetrust-pc-sdk .ot-grps-cntr ::-webkit-scrollbar-thumb, #onetrust-pc-sdk .ot-pc-scrollbar::-webkit-scrollbar-thumb { border-radius: 10px; background: rgb(193, 193, 193); }\r\n#onetrust-pc-sdk .ot-grps-cntr *, #onetrust-pc-sdk .ot-pc-scrollbar { }\r\n#onetrust-pc-sdk .ot-pc-header { height: auto; padding: 10px; display: block; width: calc(100% - 20px); min-height: 52px; border-bottom: 1px solid rgb(216, 216, 216); position: relative; }\r\n#onetrust-pc-sdk .ot-pc-logo { vertical-align: middle; width: 180px; }\r\n#onetrust-pc-sdk .ot-pc-logo.ot-pc-logo { height: 40px; }\r\n#onetrust-pc-sdk .ot-title-cntr { position: relative; display: inline-block; vertical-align: middle; width: calc(100% - 190px); padding-left: 10px; }\r\n#onetrust-pc-sdk .ot-optout-signal { margin: 0.625rem 0.625rem 0.625rem 1.75rem; }\r\n#onetrust-pc-sdk .ot-always-active { font-size: 0.813em; line-height: 1.5; font-weight: 700; color: rgb(56, 96, 190); }\r\n#onetrust-pc-sdk .ot-close-cntr { float: right; position: absolute; right: -9px; top: 50%; transform: translateY(-50%); }\r\n#onetrust-pc-sdk #ot-pc-content { position: relative; overflow: hidden auto; }\r\n#onetrust-pc-sdk #ot-pc-content .ot-sdk-container { margin-left: 0px; }\r\n#onetrust-pc-sdk .ot-grps-cntr, #onetrust-pc-sdk .ot-grps-cntr > * { height: 100%; overflow-y: auto; }\r\n#onetrust-pc-sdk .category-menu-switch-handler { cursor: pointer; border-left: 10px solid rgba(0, 0, 0, 0); background-color: rgb(244, 244, 244); border-bottom: 1px solid rgb(215, 215, 215); padding: 12px 5px 12px 12px; overflow: hidden; }\r\n#onetrust-pc-sdk .category-menu-switch-handler h3 { float: left; text-align: left; margin: 0px; color: dimgray; line-height: 1.4; font-size: 0.875em; word-break: break-word; overflow-wrap: break-word; }\r\n#onetrust-pc-sdk .ot-active-menu { border-left: 10px solid rgb(104, 182, 49); background-color: rgb(255, 255, 255); border-bottom: none; position: relative; }\r\n#onetrust-pc-sdk .ot-active-menu h3 { color: rgb(38, 50, 56); font-weight: bold; }\r\n#onetrust-pc-sdk .ot-desc-cntr { word-break: break-word; overflow-wrap: break-word; padding-top: 20px; padding-right: 16px; padding-bottom: 15px; }\r\n#onetrust-pc-sdk .ot-grp-desc { word-break: break-word; overflow-wrap: break-word; text-align: left; font-size: 0.813em; line-height: 1.5; margin: 0px; }\r\n#onetrust-pc-sdk .ot-grp-desc * { font-size: inherit; line-height: inherit; }\r\n#onetrust-pc-sdk #ot-pc-desc a { color: rgb(56, 96, 190); cursor: pointer; font-size: 1em; margin-right: 8px; }\r\n#onetrust-pc-sdk #ot-pc-desc a:hover { color: rgb(24, 131, 253); }\r\n#onetrust-pc-sdk #ot-pc-desc button { margin-right: 8px; }\r\n#onetrust-pc-sdk #ot-pc-desc * { font-size: inherit; }\r\n#onetrust-pc-sdk #ot-pc-desc ul li { padding: 10px 0px; border-bottom: 1px solid rgb(226, 226, 226); }\r\n#onetrust-pc-sdk #ot-pc-desc + .ot-link-btn { display: none; }\r\n#onetrust-pc-sdk .ot-btn-subcntr { float: right; }\r\n#onetrust-pc-sdk .ot-close-icon { background-image: url(\"data&colon;image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjQ3Ljk3MSIgaGVpZ2h0PSI0Ny45NzEiIHZpZXdCb3g9IjAgMCA0Ny45NzEgNDcuOTcxIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA0Ny45NzEgNDcuOTcxOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGc+PHBhdGggZD0iTTI4LjIyOCwyMy45ODZMNDcuMDkyLDUuMTIyYzEuMTcyLTEuMTcxLDEuMTcyLTMuMDcxLDAtNC4yNDJjLTEuMTcyLTEuMTcyLTMuMDctMS4xNzItNC4yNDIsMEwyMy45ODYsMTkuNzQ0TDUuMTIxLDAuODhjLTEuMTcyLTEuMTcyLTMuMDctMS4xNzItNC4yNDIsMGMtMS4xNzIsMS4xNzEtMS4xNzIsMy4wNzEsMCw0LjI0MmwxOC44NjUsMTguODY0TDAuODc5LDQyLjg1Yy0xLjE3MiwxLjE3MS0xLjE3MiwzLjA3MSwwLDQuMjQyQzEuNDY1LDQ3LjY3NywyLjIzMyw0Ny45NywzLDQ3Ljk3czEuNTM1LTAuMjkzLDIuMTIxLTAuODc5bDE4Ljg2NS0xOC44NjRMNDIuODUsNDcuMDkxYzAuNTg2LDAuNTg2LDEuMzU0LDAuODc5LDIuMTIxLDAuODc5czEuNTM1LTAuMjkzLDIuMTIxLTAuODc5YzEuMTcyLTEuMTcxLDEuMTcyLTMuMDcxLDAtNC4yNDJMMjguMjI4LDIzLjk4NnoiLz48L2c+PC9zdmc+\"); background-size: 12px; background-repeat: no-repeat; background-position: center center; height: 44px; width: 44px; display: inline-block; }\r\n#onetrust-pc-sdk .ot-tgl { float: right; position: relative; z-index: 1; }\r\n#onetrust-pc-sdk .ot-tgl input:checked + .ot-switch .ot-switch-nob { background-color: rgb(60, 115, 86); }\r\n#onetrust-pc-sdk .ot-tgl input:checked + .ot-switch .ot-switch-nob::before { transform: translateX(16px); background-color: rgb(111, 150, 129); }\r\n#onetrust-pc-sdk .ot-tgl input:focus + .ot-switch .ot-switch-nob::before { box-shadow: rgb(33, 150, 243) 0px 0px 1px; outline-style: auto; outline-width: 1px; }\r\n#onetrust-pc-sdk .ot-switch { position: relative; display: inline-block; width: 35px; height: 10px; margin-bottom: 0px; }\r\n#onetrust-pc-sdk .ot-switch-nob { position: absolute; cursor: pointer; inset: 0px; background-color: rgb(118, 118, 118); border: none; transition: 0.2s ease-in; border-radius: 46px; }\r\n#onetrust-pc-sdk .ot-switch-nob::before { position: absolute; content: \"\"; height: 20px; width: 20px; bottom: 1px; background-color: rgb(77, 77, 77); border-radius: 100%; top: -5px; transition: 0.4s; }\r\n#onetrust-pc-sdk .ot-chkbox { z-index: 1; position: relative; float: left; }\r\n#onetrust-pc-sdk .ot-chkbox input:checked ~ label::before { background-color: rgb(56, 96, 190); }\r\n#onetrust-pc-sdk .ot-chkbox input + label::after { content: none; color: rgb(255, 255, 255); }\r\n#onetrust-pc-sdk .ot-chkbox input:checked + label::after { content: \"\"; }\r\n#onetrust-pc-sdk .ot-chkbox input:focus + label::before { outline-width: 2px; outline-style: auto; }\r\n#onetrust-pc-sdk .ot-chkbox label { position: relative; height: 20px; padding-left: 30px; display: inline-block; cursor: pointer; }\r\n#onetrust-pc-sdk .ot-chkbox label::before, #onetrust-pc-sdk .ot-chkbox label::after { position: absolute; content: \"\"; display: inline-block; border-radius: 3px; }\r\n#onetrust-pc-sdk .ot-chkbox label::before { height: 18px; width: 18px; border: 1px solid rgb(56, 96, 190); left: 0px; }\r\n#onetrust-pc-sdk .ot-chkbox label::after { height: 5px; width: 9px; border-left: 3px solid; border-bottom: 3px solid; transform: rotate(-45deg); left: 4px; top: 5px; }\r\n#onetrust-pc-sdk .ot-label-txt { display: none; }\r\n#onetrust-pc-sdk .ot-fltr-opt .ot-label-txt { display: block; }\r\n#onetrust-pc-sdk .ot-chkbox input, #onetrust-pc-sdk .ot-tgl input { position: absolute; opacity: 0; width: 0px; height: 0px; }\r\n#onetrust-pc-sdk .ot-arw-cntr { float: right; position: relative; pointer-events: none; }\r\n#onetrust-pc-sdk .ot-arw { width: 16px; height: 16px; margin-left: 5px; color: dimgray; display: inline-block; vertical-align: middle; transition: 150ms ease-in; }\r\n#onetrust-pc-sdk input:checked ~ .ot-acc-hdr .ot-arw, #onetrust-pc-sdk button[aria-expanded=\"true\"] ~ .ot-acc-hdr .ot-arw-cntr svg { transform: rotate(90deg); }\r\n#onetrust-pc-sdk .ot-label-status { font-size: 0.75em; position: relative; top: 2px; display: none; padding-right: 5px; float: left; }\r\n#onetrust-pc-sdk #ot-lst-cnt .ot-label-status { top: -6px; }\r\n#onetrust-pc-sdk .ot-fltr-opts { min-height: 35px; }\r\n#onetrust-pc-sdk .ot-fltr-btns { margin: 10px 15px 0px; }\r\n#onetrust-pc-sdk .ot-fltr-btns button { padding: 12px 30px; }\r\n#onetrust-pc-sdk .ot-pc-footer { position: absolute; bottom: 0px; width: 100%; max-height: 160px; border-top: 1px solid rgb(216, 216, 216); }\r\n#onetrust-pc-sdk .ot-pc-footer button { margin-top: 20px; margin-bottom: 20px; font-weight: 600; font-size: 0.813em; min-height: 40px; height: auto; line-height: normal; padding: 10px 30px; }\r\n#onetrust-pc-sdk .ot-tab-desc { margin-left: 3%; }\r\n#onetrust-pc-sdk .ot-grp-hdr1 { display: inline-block; width: 100%; margin-bottom: 10px; }\r\n#onetrust-pc-sdk .ot-desc-cntr h4 { color: rgb(38, 50, 56); display: inline-block; vertical-align: middle; margin: 0px; font-weight: bold; font-size: 0.875em; line-height: 1.3; max-width: 80%; }\r\n#onetrust-pc-sdk .ot-subgrps .ot-subgrp h5 { top: 0px; max-width: unset; }\r\n#onetrust-pc-sdk #ot-pvcy-hdr { margin-bottom: 10px; }\r\n#onetrust-pc-sdk .ot-vlst-cntr { overflow: hidden; }\r\n#onetrust-pc-sdk .category-vendors-list-handler, #onetrust-pc-sdk .category-host-list-handler, #onetrust-pc-sdk .category-vendors-list-handler + a { display: block; float: left; color: rgb(56, 96, 190); font-size: 0.813em; font-weight: 400; line-height: 1.1; cursor: pointer; margin: 5px 0px; }\r\n#onetrust-pc-sdk .category-vendors-list-handler:hover, #onetrust-pc-sdk .category-host-list-handler:hover, #onetrust-pc-sdk .category-vendors-list-handler + a:hover { text-decoration-line: underline; }\r\n#onetrust-pc-sdk .ot-vlst-cntr .ot-ext-lnk, #onetrust-pc-sdk .ot-ven-hdr .ot-ext-lnk { display: inline-block; height: 13px; width: 13px; background-repeat: no-repeat; margin-left: 1px; margin-top: 6px; cursor: pointer; }\r\n#onetrust-pc-sdk .ot-ven-hdr .ot-ext-lnk { margin-bottom: -1px; }\r\n#onetrust-pc-sdk .category-host-list-handler, #onetrust-pc-sdk .ot-vlst-cntr, #onetrust-pc-sdk #ot-pc-desc + .category-vendors-list-handler { margin-top: 8px; }\r\n#onetrust-pc-sdk .ot-grp-hdr1 + .ot-vlst-cntr { margin-top: 0px; margin-bottom: 10px; }\r\n#onetrust-pc-sdk .ot-always-active-group h3.ot-cat-header, #onetrust-pc-sdk .ot-subgrp.ot-always-active-group > h4 { max-width: 70%; }\r\n#onetrust-pc-sdk .ot-always-active-group .ot-tgl-cntr { max-width: 28%; }\r\n#onetrust-pc-sdk .ot-grp-desc ul, #onetrust-pc-sdk li.ot-subgrp p ul { margin: 0px 0px 0px 15px; padding-bottom: 8px; }\r\n#onetrust-pc-sdk .ot-grp-desc ul li, #onetrust-pc-sdk li.ot-subgrp p ul li { font-size: inherit; padding-top: 8px; display: list-item; list-style: disc; }\r\n#onetrust-pc-sdk ul.ot-subgrps { margin: 0px; font-size: inherit; }\r\n#onetrust-pc-sdk ul.ot-subgrps li { padding: 0px; border: none; position: relative; }\r\n#onetrust-pc-sdk ul.ot-subgrps li h5, #onetrust-pc-sdk ul.ot-subgrps li p { font-size: 0.82em; line-height: 1.4; }\r\n#onetrust-pc-sdk ul.ot-subgrps li p { color: dimgray; clear: both; float: left; margin-top: 10px; margin-bottom: 0px; word-break: break-word; overflow-wrap: break-word; }\r\n#onetrust-pc-sdk ul.ot-subgrps li h5 { color: rgb(38, 50, 56); font-weight: bold; margin-bottom: 0px; float: left; position: relative; top: 3px; }\r\n#onetrust-pc-sdk li.ot-subgrp { margin-left: 30px; display: inline-block; width: calc(100% - 30px); }\r\n#onetrust-pc-sdk .ot-subgrp-tgl { float: right; }\r\n#onetrust-pc-sdk .ot-subgrp-tgl.ot-always-active-subgroup { width: auto; }\r\n#onetrust-pc-sdk .ot-pc-footer-logo { height: 30px; width: 100%; text-align: right; background: rgb(244, 244, 244); border-radius: 0px 0px 2px 2px; }\r\n#onetrust-pc-sdk .ot-pc-footer-logo a { display: inline-block; margin-top: 5px; margin-right: 10px; }\r\n#onetrust-pc-sdk #accept-recommended-btn-handler { float: right; text-align: center; }\r\n#onetrust-pc-sdk .save-preference-btn-handler { min-width: 155px; background-color: rgb(104, 182, 49); border-radius: 2px; color: rgb(255, 255, 255); font-size: 0.9em; line-height: 1.1; text-align: center; margin-left: 15px; margin-right: 15px; }\r\n#onetrust-pc-sdk .ot-btn-subcntr button { margin-right: 16px; }\r\n#onetrust-pc-sdk.ot-ftr-stacked .save-preference-btn-handler, #onetrust-pc-sdk.ot-ftr-stacked .ot-btn-subcntr { white-space: normal; text-align: center; width: min-content; float: left; min-width: 40%; }\r\n#onetrust-pc-sdk.ot-ftr-stacked .ot-btn-subcntr button { text-wrap: wrap; margin-left: auto; margin-right: auto; width: 90%; }\r\n#onetrust-pc-sdk.ot-ftr-stacked .ot-btn-subcntr button:nth-child(2) { margin-top: 0px; }\r\n#onetrust-pc-sdk.ot-ftr-stacked .ot-btn-subcntr { float: right; }\r\n#onetrust-pc-sdk.ot-ftr-stacked #accept-recommended-btn-handler { float: none; }\r\n#onetrust-pc-sdk.ot-ftr-stacked .ot-btn-container { overflow: hidden; }\r\n#onetrust-pc-sdk #ot-pc-title { margin: 0px; overflow: hidden; position: relative; line-height: 1.2; max-height: 2.4em; padding-right: 1em; font-size: 1.37em; text-overflow: ellipsis; white-space: nowrap; display: block; max-width: 90%; }\r\n#onetrust-pc-sdk #ot-pc-title.ot-pc-title-shrink { max-width: 70%; }\r\n#onetrust-pc-sdk #ot-pc-lst { width: 100%; position: relative; }\r\n#onetrust-pc-sdk #ot-pc-lst .ot-acc-hdr { padding: 17px 15px 17px 20px; display: inline-block; width: calc(100% - 35px); vertical-align: middle; }\r\n#onetrust-pc-sdk #ot-pc-lst .ot-acc-txt { padding: 6px 15px 10px 20px; }\r\n#onetrust-pc-sdk .ot-lst-cntr { height: 100%; }\r\n#onetrust-pc-sdk #ot-pc-hdr { padding: 15px 30px 15px 20px; display: inline-block; width: calc(100% - 50px); height: 20px; border-bottom: 1px solid rgb(216, 216, 216); }\r\n#onetrust-pc-sdk #ot-pc-hdr input { height: 32px; width: 100%; border-radius: 50px; font-size: 0.8em; padding-right: 35px; padding-left: 15px; float: left; }\r\n#onetrust-pc-sdk #ot-pc-hdr input::placeholder { color: rgb(112, 112, 112); font-style: italic; }\r\n#onetrust-pc-sdk #ot-lst-cnt { height: calc(100% - 86px); padding-left: 30px; padding-right: 27px; padding-top: 20px; margin: 8px 3px 4px 0px; overflow: hidden auto; transform: translate3d(0px, 0px, 0px); }\r\n#onetrust-pc-sdk #ot-back-arw { height: 12px; width: 12px; }\r\n#onetrust-pc-sdk #ot-lst-title { display: inline-block; font-size: 1em; }\r\n#onetrust-pc-sdk #ot-lst-title h3 { color: dimgray; font-weight: bold; margin-left: 10px; display: inline-block; font-size: 1em; }\r\n#onetrust-pc-sdk #ot-lst-title h3 * { font-size: inherit; }\r\n#onetrust-pc-sdk .ot-lst-subhdr { float: right; position: relative; bottom: 6px; }\r\n#onetrust-pc-sdk #ot-search-cntr { display: inline-block; vertical-align: middle; position: relative; width: 300px; }\r\n#onetrust-pc-sdk #ot-search-cntr svg { position: absolute; right: 0px; width: 30px; height: 30px; font-size: 1em; line-height: 1; top: 2px; }\r\n#onetrust-pc-sdk #ot-fltr-cntr { display: inline-block; position: relative; margin-left: 20px; vertical-align: middle; font-size: 0px; }\r\n#onetrust-pc-sdk #filter-btn-handler { background-color: rgb(56, 96, 190); border-radius: 17px; transition: 0.1s; width: 32px; height: 32px; padding: 0px; margin: 0px; position: relative; }\r\n#onetrust-pc-sdk #filter-btn-handler svg { cursor: pointer; width: 15px; height: 15px; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); padding-top: 5px; }\r\n#onetrust-pc-sdk #filter-btn-handler path { fill: rgb(255, 255, 255); }\r\n#onetrust-pc-sdk #ot-sel-blk { min-width: 200px; min-height: 30px; padding-left: 20px; }\r\n#onetrust-pc-sdk #ot-selall-vencntr, #onetrust-pc-sdk #ot-selall-adtlvencntr { float: left; height: 100%; }\r\n#onetrust-pc-sdk #ot-selall-vencntr label, #onetrust-pc-sdk #ot-selall-adtlvencntr label { height: 100%; padding-left: 0px; }\r\n#onetrust-pc-sdk #ot-selall-hostcntr { width: 21px; height: 21px; position: relative; left: 20px; }\r\n#onetrust-pc-sdk #ot-selall-vencntr.line-through label::after, #onetrust-pc-sdk #ot-selall-adtlvencntr.line-through label::after, #onetrust-pc-sdk #ot-selall-licntr.line-through label::after, #onetrust-pc-sdk #ot-selall-hostcntr.line-through label::after, #onetrust-pc-sdk #ot-selall-gnvencntr.line-through label::after { height: auto; border-left: 0px; left: 5px; top: 10.5px; transform: none; }\r\n#onetrust-pc-sdk .ot-ven-name, #onetrust-pc-sdk .ot-host-name { color: rgb(44, 54, 67); font-weight: bold; font-size: 0.813em; line-height: 1.2; margin: 0px; height: auto; text-align: left; word-break: break-word; overflow-wrap: break-word; }\r\n#onetrust-pc-sdk .ot-ven-name *, #onetrust-pc-sdk .ot-host-name * { font-size: inherit; }\r\n#onetrust-pc-sdk .ot-host-desc { font-size: 0.69em; line-height: 1.4; margin-top: 5px; margin-bottom: 5px; color: dimgray; }\r\n#onetrust-pc-sdk .ot-host-name > a { text-decoration: underline; position: relative; z-index: 2; margin-bottom: 5px; font-weight: bold; }\r\n#onetrust-pc-sdk .ot-host-hdr { float: left; width: calc(100% - 50px); pointer-events: none; position: relative; z-index: 1; }\r\n#onetrust-pc-sdk .ot-host-hdr .ot-host-name { pointer-events: none; }\r\n#onetrust-pc-sdk .ot-host-hdr a { pointer-events: initial; }\r\n#onetrust-pc-sdk .ot-host-hdr .ot-host-name ~ a { margin-top: 5px; font-size: 0.813em; text-decoration: underline; }\r\n#onetrust-pc-sdk .ot-ven-hdr { width: 88%; float: right; }\r\n#onetrust-pc-sdk input:focus + .ot-acc-hdr { outline: rgb(0, 0, 0) solid 1px !important; }\r\n#onetrust-pc-sdk #ot-selall-hostcntr input[type=\"checkbox\"], #onetrust-pc-sdk #ot-selall-vencntr input[type=\"checkbox\"], #onetrust-pc-sdk #ot-selall-adtlvencntr input[type=\"checkbox\"] { position: absolute; }\r\n#onetrust-pc-sdk .ot-host-item .ot-chkbox { float: left; }\r\n#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all-hdr { right: 38px; }\r\n#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) #ot-sel-blk { background-color: rgb(249, 249, 252); border: 1px solid rgb(226, 226, 226); width: auto; padding-bottom: 5px; padding-top: 5px; }\r\n#onetrust-pc-sdk.ot-addtl-vendors #ot-lst-cnt:not(.ot-host-cnt) .ot-sel-all-chkbox { right: 2px; width: auto; }\r\n#onetrust-pc-sdk #ot-pc-lst .ot-acc-cntr { position: relative; border-left: 1px solid rgb(226, 226, 226); border-right: 1px solid rgb(226, 226, 226); border-bottom: 1px solid rgb(226, 226, 226); }\r\n#onetrust-pc-sdk #ot-pc-lst .ot-acc-cntr input { z-index: 1; }\r\n#onetrust-pc-sdk #ot-pc-lst .ot-acc-cntr > .ot-acc-hdr { background: rgb(249, 249, 252); padding-top: 10px; padding-bottom: 10px; }\r\n#onetrust-pc-sdk #ot-pc-lst .ot-acc-cntr > .ot-acc-hdr input { z-index: 2; }\r\n#onetrust-pc-sdk #ot-pc-lst .ot-acc-cntr > input[type=\"checkbox\"]:checked ~ .ot-acc-hdr { border-bottom: 1px solid rgb(226, 226, 226); }\r\n#onetrust-pc-sdk #ot-pc-lst .ot-acc-cntr .ot-addtl-venbox { display: none; }\r\n#onetrust-pc-sdk #ot-addtl-venlst .ot-tgl-cntr { margin-right: 13px; }\r\n#onetrust-pc-sdk .ot-vensec-title { font-size: 0.813em; display: inline-block; }\r\n#onetrust-pc-sdk .ot-ven-item > button:focus, #onetrust-pc-sdk .ot-host-item > button:focus, #onetrust-pc-sdk .ot-acc-cntr > button:focus { outline: rgb(0, 0, 0) solid 2px; }\r\n#onetrust-pc-sdk .ot-ven-item > button, #onetrust-pc-sdk .ot-host-item > button, #onetrust-pc-sdk .ot-acc-cntr > button { position: absolute; cursor: pointer; width: 100%; height: 100%; border: 0px; opacity: 0; margin: 0px; top: 0px; left: 0px; }\r\n#onetrust-pc-sdk .ot-ven-item > button ~ .ot-acc-hdr, #onetrust-pc-sdk .ot-host-item > button ~ .ot-acc-hdr, #onetrust-pc-sdk .ot-acc-cntr > button ~ .ot-acc-hdr { cursor: pointer; }\r\n#onetrust-pc-sdk .ot-ven-item > button[aria-expanded=\"false\"] ~ .ot-acc-txt, #onetrust-pc-sdk .ot-host-item > button[aria-expanded=\"false\"] ~ .ot-acc-txt, #onetrust-pc-sdk .ot-acc-cntr > button[aria-expanded=\"false\"] ~ .ot-acc-txt { margin-top: 0px; max-height: 0px; opacity: 0; overflow: hidden; width: 100%; transition: 0.25s ease-out; display: none; }\r\n#onetrust-pc-sdk .ot-ven-item > button[aria-expanded=\"true\"] ~ .ot-acc-txt, #onetrust-pc-sdk .ot-host-item > button[aria-expanded=\"true\"] ~ .ot-acc-txt, #onetrust-pc-sdk .ot-acc-cntr > button[aria-expanded=\"true\"] ~ .ot-acc-txt { transition: 0.1s ease-in; display: block; }\r\n#onetrust-pc-sdk .ot-ven-item ul { list-style: inside none; font-size: 100%; margin: 0px; }\r\n#onetrust-pc-sdk .ot-ven-item ul li { padding: 0px; margin: 0px !important; border: none !important; }\r\n#onetrust-pc-sdk .ot-hide-acc > button { pointer-events: none; }\r\n#onetrust-pc-sdk .ot-hide-acc .ot-arw-cntr > * { visibility: hidden; }\r\n#onetrust-pc-sdk #ot-ven-lst, #onetrust-pc-sdk #ot-host-lst, #onetrust-pc-sdk #ot-addtl-venlst, #onetrust-pc-sdk #ot-gn-venlst { width: 100%; }\r\n#onetrust-pc-sdk #ot-ven-lst li, #onetrust-pc-sdk #ot-host-lst li, #onetrust-pc-sdk #ot-addtl-venlst li, #onetrust-pc-sdk #ot-gn-venlst li { border: 1px solid rgb(215, 215, 215); border-radius: 2px; position: relative; margin-top: 10px; }\r\n#onetrust-pc-sdk #ot-gn-venlst li.ot-host-info { padding: 0.5rem; overflow-y: hidden; }\r\n#onetrust-pc-sdk #ot-ven-lst .ot-tgl-cntr { width: 65%; }\r\n#onetrust-pc-sdk #ot-host-lst .ot-tgl-cntr { width: 65%; float: left; }\r\n#onetrust-pc-sdk label { margin-bottom: 0px; }\r\n#onetrust-pc-sdk .ot-host-notice { float: right; }\r\n#onetrust-pc-sdk .ot-ven-link, #onetrust-pc-sdk .ot-ven-legclaim-link, #onetrust-pc-sdk .ot-host-expand { color: dimgray; font-size: 0.75em; line-height: 0.9; display: inline-block; }\r\n#onetrust-pc-sdk .ot-ven-link *, #onetrust-pc-sdk .ot-ven-legclaim-link *, #onetrust-pc-sdk .ot-host-expand * { font-size: inherit; }\r\n#onetrust-pc-sdk .ot-ven-link, #onetrust-pc-sdk .ot-ven-legclaim-link { position: relative; z-index: 2; }\r\n#onetrust-pc-sdk .ot-ven-link:hover, #onetrust-pc-sdk .ot-ven-legclaim-link:hover { text-decoration: underline; }\r\n#onetrust-pc-sdk .ot-ven-dets { border-radius: 2px; background-color: rgb(248, 248, 248); }\r\n#onetrust-pc-sdk .ot-ven-dets li:first-child p:first-child { border-top: none; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:not(:first-child) { border-top: 1px solid rgb(221, 221, 221) !important; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p { display: inline-block; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(2n+1) { width: 30%; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc:nth-child(n+3) p:nth-of-type(2n) { width: 50%; word-break: break-word; overflow-wrap: break-word; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p, #onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5 { padding-top: 5px; padding-bottom: 5px; display: block; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc h5 { display: inline-block; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-last-child(-n+1) { padding-bottom: 10px; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc p:nth-child(-n+2):not(.disc-pur) { padding-top: 10px; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur-cont { display: inline; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur { position: relative; word-break: break-word; overflow-wrap: break-word; left: calc(30% + 17px); width: 50% !important; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-disc .disc-pur:nth-child(-n+1) { position: static; }\r\n#onetrust-pc-sdk .ot-ven-dets p, #onetrust-pc-sdk .ot-ven-dets h5, #onetrust-pc-sdk .ot-ven-dets span { font-size: 0.69em; text-align: left; vertical-align: middle; word-break: break-word; overflow-wrap: break-word; margin: 0px; padding-bottom: 10px; padding-left: 15px; color: rgb(46, 54, 68); }\r\n#onetrust-pc-sdk .ot-ven-dets h5 { padding-top: 5px; }\r\n#onetrust-pc-sdk .ot-ven-dets span { color: dimgray; padding: 0px; vertical-align: baseline; }\r\n#onetrust-pc-sdk .ot-ven-dets .ot-ven-pur h5 { border-top: 1px solid rgb(233, 233, 233); border-bottom: 1px solid rgb(233, 233, 233); padding-bottom: 5px; margin-bottom: 5px; font-weight: bold; }\r\n#onetrust-pc-sdk .ot-host-opt { display: inline-block; width: 100%; margin: 0px; font-size: inherit; }\r\n#onetrust-pc-sdk .ot-host-opt li > div div { font-size: 0.81em; padding: 5px 0px; }\r\n#onetrust-pc-sdk .ot-host-opt li > div div:nth-child(1) { width: 30%; float: left; }\r\n#onetrust-pc-sdk .ot-host-opt li > div div:nth-child(2) { width: 70%; float: left; word-break: break-word; overflow-wrap: break-word; }\r\n#onetrust-pc-sdk #ot-host-lst li.ot-host-info { border: none; font-size: 0.8em; color: dimgray; float: left; text-align: left; padding: 10px; margin-bottom: 10px; width: calc(100% - 10px); background-color: rgb(248, 248, 248); }\r\n#onetrust-pc-sdk #ot-host-lst li.ot-host-info a { color: dimgray; }\r\n#onetrust-pc-sdk #ot-host-lst li.ot-host-info > div { overflow: auto; }\r\n#onetrust-pc-sdk #no-results { text-align: center; margin-top: 30px; }\r\n#onetrust-pc-sdk #no-results p { font-size: 1em; color: rgb(46, 54, 68); word-break: break-word; overflow-wrap: break-word; }\r\n#onetrust-pc-sdk #no-results p span { font-weight: bold; }\r\n#onetrust-pc-sdk .ot-tgl-cntr { display: inline-block; vertical-align: middle; }\r\n#onetrust-pc-sdk .ot-arw-cntr, #onetrust-pc-sdk .ot-tgl-cntr { float: right; }\r\n#onetrust-pc-sdk .ot-desc-cntr { padding-top: 0px; margin-top: 20px; padding-right: 0px; border-radius: 3px; overflow: hidden; padding-bottom: 10px; }\r\n#onetrust-pc-sdk .ot-desc-cntr:focus, #onetrust-pc-sdk .ot-desc-cntr:active, #onetrust-pc-sdk .ot-desc-cntr:focus-visible { outline: rgb(16, 16, 16) solid 2px; border-radius: 2px; }\r\n#onetrust-pc-sdk .ot-leg-border-color { border: 1px solid rgb(233, 233, 233); }\r\n#onetrust-pc-sdk .ot-leg-border-color .ot-subgrp-cntr { border-top: 1px solid rgb(233, 233, 233); padding-bottom: 10px; }\r\n#onetrust-pc-sdk .ot-category-desc { padding-bottom: 10px; }\r\n#onetrust-pc-sdk .ot-grp-hdr1 { padding-left: 10px; width: calc(100% - 20px); padding-top: 10px; margin-bottom: 0px; padding-bottom: 8px; }\r\n#onetrust-pc-sdk .ot-subgrp-cntr { padding-top: 10px; }\r\n#onetrust-pc-sdk .ot-desc-cntr > :not(.ot-grp-hdr1) { padding-left: 10px; padding-right: 10px; }\r\n#onetrust-pc-sdk .ot-pli-hdr { overflow: hidden; padding-top: 7.5px; padding-bottom: 7.5px; background-color: rgb(248, 248, 248); border-top: none; border-right: none; border-left: none; border-image: initial; border-bottom: 1px solid rgb(233, 233, 233); }\r\n#onetrust-pc-sdk .ot-pli-hdr span:first-child { text-align: left; max-width: 80px; padding-right: 5px; }\r\n#onetrust-pc-sdk .ot-pli-hdr span:last-child { padding-right: 20px; text-align: center; }\r\n#onetrust-pc-sdk .ot-li-title { float: right; font-size: 0.813em; }\r\n#onetrust-pc-sdk .ot-desc-cntr .ot-tgl-cntr:first-of-type, #onetrust-pc-sdk .ot-cat-header + .ot-tgl { padding-left: 7px; padding-right: 7px; }\r\n#onetrust-pc-sdk .ot-always-active-group .ot-grp-hdr1 .ot-tgl-cntr:first-of-type { padding-left: 0px; }\r\n#onetrust-pc-sdk .ot-cat-header, #onetrust-pc-sdk .ot-subgrp h4 { max-width: calc(100% - 133px); }\r\n#onetrust-pc-sdk #ot-lst-cnt #ot-sel-blk { width: 100%; display: inline-block; padding: 0px; }\r\n#onetrust-pc-sdk .ot-sel-all { display: inline-block; width: 100%; }\r\n#onetrust-pc-sdk .ot-sel-all-hdr, #onetrust-pc-sdk .ot-sel-all-chkbox { width: 100%; float: right; position: relative; }\r\n#onetrust-pc-sdk .ot-sel-all-chkbox { z-index: 1; }\r\n#onetrust-pc-sdk :not(.ot-hosts-ui) .ot-sel-all-hdr, #onetrust-pc-sdk :not(.ot-hosts-ui) .ot-sel-all-chkbox { right: 23px; width: calc(100% - 23px); }\r\n#onetrust-pc-sdk .ot-consent-hdr, #onetrust-pc-sdk .ot-li-hdr { float: right; font-size: 0.813em; position: relative; line-height: normal; text-align: center; word-break: break-word; overflow-wrap: break-word; }\r\n#onetrust-pc-sdk .ot-hosts-ui .ot-consent-hdr { float: left; position: relative; left: 5px; }\r\n#onetrust-pc-sdk .ot-li-hdr { max-width: 100px; margin-right: 10px; }\r\n#onetrust-pc-sdk .ot-consent-hdr { max-width: 55px; }\r\n#onetrust-pc-sdk .ot-ven-ctgl { margin-left: 10px; }\r\n#onetrust-pc-sdk .ot-ven-litgl { margin-right: 55px; }\r\n#onetrust-pc-sdk .ot-ven-litgl.ot-ven-litgl-only { margin-right: 86px; }\r\n#onetrust-pc-sdk .ot-ven-ctgl, #onetrust-pc-sdk .ot-ven-litgl, #onetrust-pc-sdk .ot-ven-gvctgl { float: left; }\r\n#onetrust-pc-sdk .ot-ven-ctgl label, #onetrust-pc-sdk .ot-ven-litgl label, #onetrust-pc-sdk .ot-ven-gvctgl label { width: 22px; padding: 0px; }\r\n#onetrust-pc-sdk #ot-selall-licntr { display: block; width: 21px; height: 21px; position: relative; float: right; right: 80px; }\r\n#onetrust-pc-sdk #ot-selall-licntr input { position: absolute; }\r\n#onetrust-pc-sdk #ot-selall-vencntr, #onetrust-pc-sdk #ot-selall-adtlvencntr, #onetrust-pc-sdk #ot-selall-gnvencntr { float: right; width: 21px; height: 21px; position: relative; right: 15px; }\r\n#onetrust-pc-sdk #ot-ven-lst .ot-tgl-cntr { float: right; width: auto; }\r\n#onetrust-pc-sdk .ot-ven-hdr { float: left; width: 60%; }\r\n#onetrust-pc-sdk #vdr-lst-dsc { font-size: 0.812em; line-height: 1.5; padding: 10px 15px 5px; }\r\n#onetrust-pc-sdk #ot-anchor { border: 12px solid rgba(0, 0, 0, 0); display: none; position: absolute; z-index: 2147483647; top: 40px; right: 35px; transform: rotate(45deg); background-color: rgb(255, 255, 255); box-shadow: rgb(199, 197, 199) -3px -3px 5px -2px; }\r\n#onetrust-pc-sdk #ot-fltr-modal { width: 300px; position: absolute; z-index: 2147483646; top: 46px; height: 90%; max-height: 350px; display: none; transition: 0.2s; opacity: 1; right: 0px; }\r\n#onetrust-pc-sdk #ot-fltr-modal button { max-width: 200px; line-height: 1; word-break: break-word; white-space: normal; height: auto; font-weight: bold; }\r\n#onetrust-pc-sdk #ot-fltr-cnt { background-color: rgb(255, 255, 255); margin: 5px 10px 5px 5px; border-radius: 3px; height: 100%; padding-right: 10px; box-shadow: rgb(199, 197, 199) 0px 0px 12px 2px; }\r\n#onetrust-pc-sdk .ot-fltr-scrlcnt { overflow: hidden auto; clear: both; max-height: calc(100% - 60px); }\r\n#onetrust-pc-sdk .ot-fltr-opt { margin-bottom: 25px; margin-left: 15px; clear: both; }\r\n#onetrust-pc-sdk .ot-fltr-opt label { height: auto; }\r\n#onetrust-pc-sdk .ot-fltr-opt span { cursor: pointer; color: dimgray; font-size: 0.8em; line-height: 1.1; font-weight: normal; }\r\n#onetrust-pc-sdk #clear-filters-handler { float: right; margin-top: 15px; margin-bottom: 10px; text-decoration: none; color: rgb(56, 96, 190); font-size: 0.9em; border: none; padding: 1px; }\r\n#onetrust-pc-sdk #clear-filters-handler:hover { color: rgb(24, 131, 253); }\r\n#onetrust-pc-sdk #clear-filters-handler:focus { outline: rgb(0, 0, 0) solid 1px; }\r\n#onetrust-pc-sdk #filter-apply-handler { margin-right: 10px; }\r\n#onetrust-pc-sdk .ot-grp-desc + .ot-leg-btn-container { margin-top: 0px; }\r\n#onetrust-pc-sdk .ot-leg-btn-container { display: inline-block; width: 100%; margin-top: 10px; }\r\n#onetrust-pc-sdk .ot-leg-btn-container button { height: auto; padding: 6.5px 8px; margin-bottom: 0px; line-height: normal; letter-spacing: 0px; }\r\n#onetrust-pc-sdk .ot-leg-btn-container svg { display: none; height: 14px; width: 14px; padding-right: 5px; vertical-align: sub; }\r\n#onetrust-pc-sdk .ot-active-leg-btn { cursor: default; pointer-events: none; }\r\n#onetrust-pc-sdk .ot-active-leg-btn svg { display: inline-block; }\r\n#onetrust-pc-sdk .ot-remove-objection-handler { border: none; text-decoration: underline; padding: 0px 0px 0px 10px; font-size: 0.82em; font-weight: 600; line-height: 1.4; }\r\n#onetrust-pc-sdk .ot-obj-leg-btn-handler span { font-weight: bold; text-align: center; font-size: 0.91em; line-height: 1.5; }\r\n#onetrust-pc-sdk.ot-close-btn-link #close-pc-btn-handler { border: none; height: auto; line-height: 1.5; text-decoration: underline; font-size: 0.69em; background: none; width: auto; }\r\n#onetrust-pc-sdk.ot-close-btn-link .ot-close-cntr { right: 5px; top: 5px; transform: none; }\r\n#onetrust-pc-sdk .ot-grps-cntr { overflow-y: hidden; }\r\n#onetrust-pc-sdk .ot-cat-header { float: left; font-weight: 600; font-size: 0.875em; line-height: 1.5; max-width: 90%; vertical-align: middle; }\r\n#onetrust-pc-sdk .ot-vnd-item > button:focus { outline: rgb(0, 0, 0) solid 2px; }\r\n#onetrust-pc-sdk .ot-vnd-item > button { position: absolute; cursor: pointer; width: 100%; height: 100%; margin: 0px; top: 0px; left: 0px; z-index: 1; max-width: none; border: none; }\r\n#onetrust-pc-sdk .ot-vnd-item > button[aria-expanded=\"false\"] ~ .ot-acc-txt { margin-top: 0px; max-height: 0px; opacity: 0; overflow: hidden; width: 100%; transition: 0.25s ease-out; display: none; }\r\n#onetrust-pc-sdk .ot-vnd-item > button[aria-expanded=\"true\"] ~ .ot-acc-txt { transition: 0.1s ease-in; margin-top: 10px; width: 100%; overflow: auto; display: block; }\r\n#onetrust-pc-sdk .ot-vnd-item > button[aria-expanded=\"true\"] ~ .ot-acc-grpcntr { width: auto; margin-top: 0px; padding-bottom: 10px; }\r\n#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item { position: relative; border-radius: 2px; margin: 0px; padding: 0px; border-right: 1px solid rgb(216, 216, 216); border-bottom: 1px solid rgb(216, 216, 216); border-left: 1px solid rgb(216, 216, 216); border-image: initial; border-top: none; width: calc(100% - 2px); float: left; }\r\n#onetrust-pc-sdk .ot-accordion-layout.ot-cat-item:first-of-type { margin-top: 10px; border-top: 1px solid rgb(216, 216, 216); }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:first-child { margin-top: 10px; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr:last-child, #onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr:last-child { margin-bottom: 5px; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr { padding: 11.5px 20px; width: calc(100% - 40px); display: inline-block; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-acc-txt { width: 100%; padding: 0px; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp-cntr { padding-left: 20px; padding-right: 15px; padding-bottom: 0px; width: calc(100% - 35px); }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-subgrp { padding-right: 5px; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-acc-grpcntr { z-index: 1; position: relative; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header + .ot-arw-cntr { position: absolute; top: 50%; transform: translateY(-50%); right: 20px; margin-top: -2px; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header + .ot-arw-cntr .ot-arw { width: 15px; height: 20px; margin-left: 5px; color: dimgray; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-cat-header { float: none; color: rgb(46, 54, 68); margin: 0px; display: inline-block; height: auto; overflow-wrap: break-word; min-height: inherit; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-vlst-cntr, #onetrust-pc-sdk .ot-accordion-layout .ot-hlst-cntr { padding-left: 20px; width: calc(100% - 20px); display: inline-block; margin-top: 0px; padding-bottom: 2px; }\r\n#onetrust-pc-sdk .ot-accordion-layout .ot-acc-hdr { position: relative; min-height: 25px; }\r\n#onetrust-pc-sdk .ot-accordion-layout h4 ~ .ot-tgl, #onetrust-pc-sdk .ot-accordion-layout h4 ~ .ot-always-active { position: absolute; top: 50%; transform: translateY(-50%); right: 20px; }\r\n#onetrust-pc-sdk .ot-accordion-layout h4 ~ .ot-tgl + .ot-tgl { right: 95px; }\r\n#onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler, #onetrust-pc-sdk .ot-accordion-layout .category-vendors-list-handler + a { margin-top: 5px; }\r\n#onetrust-pc-sdk #ot-lst-cnt { margin-top: 1rem; max-height: calc(100% - 96px); }\r\n#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info-cntr { border: 1px solid rgb(216, 216, 216); padding: 0.75rem 2rem 0px; width: auto; margin-top: 0.5rem; }\r\n#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info { margin-bottom: 1rem; padding-left: 0.75rem; padding-right: 0.75rem; display: flex; flex-direction: column; }\r\n#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=\"DPOEmail\"] { border-top: 1px solid rgb(216, 216, 216); padding-top: 1rem; }\r\n#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info[data-vnd-info-key*=\"DPOLink\"] { border-bottom: 1px solid rgb(216, 216, 216); padding-bottom: 1rem; }\r\n#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-lbl { font-weight: bold; font-size: 0.85em; margin-bottom: 0.5rem; }\r\n#onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info .ot-vnd-cnt { margin-left: 0.5rem; font-weight: 500; font-size: 0.85rem; }\r\n#onetrust-pc-sdk .ot-vs-list, #onetrust-pc-sdk .ot-vnd-serv { width: auto; padding: 1rem 1.25rem 0px; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr { padding-bottom: 0.75rem; border-bottom: 1px solid rgb(216, 216, 216); }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr { font-weight: 600; font-size: 0.95em; line-height: 2; margin-left: 0.5rem; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item { border: none; margin: 0px; padding: 0px; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button { outline: none; border-bottom: 1px solid rgb(216, 216, 216); }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item button[aria-expanded=\"true\"], #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item button[aria-expanded=\"true\"] { border-bottom: none; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:first-child, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:first-child { margin-top: 0.25rem; border-top: unset; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child { margin-bottom: 0.5rem; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item:last-child button, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item:last-child button { border-bottom: none; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info-cntr, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info-cntr { border: 1px solid rgb(216, 216, 216); padding: 0.75rem 1.75rem 0px; width: auto; margin-top: 0.5rem; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info { margin-bottom: 1rem; padding-left: 0.75rem; padding-right: 0.75rem; display: flex; flex-direction: column; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=\"DPOEmail\"], #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=\"DPOEmail\"] { border-top: 1px solid rgb(216, 216, 216); padding-top: 1rem; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=\"DPOLink\"], #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info[data-vnd-info-key*=\"DPOLink\"] { border-bottom: 1px solid rgb(216, 216, 216); padding-bottom: 1rem; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-lbl, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-lbl { font-weight: bold; font-size: 0.85em; margin-bottom: 0.5rem; }\r\n#onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-vnd-info .ot-vnd-cnt, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info .ot-vnd-cnt { margin-left: 0.5rem; font-weight: 500; font-size: 0.85rem; }\r\n#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt, #onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt { padding-left: 40px; }\r\n#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr, #onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr { font-size: 0.8em; }\r\n#onetrust-pc-sdk .ot-vs-list.ot-vnd-subgrp-cnt .ot-cat-header, #onetrust-pc-sdk .ot-vnd-serv.ot-vnd-subgrp-cnt .ot-cat-header { font-size: 0.8em; }\r\n#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv { margin-bottom: 1rem; padding: 1rem 0.95rem; }\r\n#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr { padding-bottom: 0.75rem; border-bottom: 1px solid rgb(216, 216, 216); }\r\n#onetrust-pc-sdk .ot-subgrp-cntr .ot-vnd-serv .ot-vnd-serv-hdr-cntr .ot-vnd-serv-hdr { font-weight: 700; font-size: 0.8em; line-height: 20px; margin-left: 0.82rem; }\r\n#onetrust-pc-sdk .ot-subgrp-cntr .ot-cat-header { font-weight: 700; font-size: 0.8em; line-height: 20px; }\r\n#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-vnd-serv .ot-vnd-lst-cont .ot-accordion-layout .ot-acc-hdr div.ot-chkbox { margin-left: 0.82rem; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr { padding: 0.7rem 0px; margin: 0px; display: flex; width: 100%; align-items: center; justify-content: space-between; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:first-child, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:first-child, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:first-child, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:first-child, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:first-child, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:first-child { margin-left: 0.5rem; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr div:last-child, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr div:last-child, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr div:last-child, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr div:last-child, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr div:last-child, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr div:last-child { margin-right: 0.5rem; margin-left: 0.5rem; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-always-active, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-always-active, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-always-active, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-always-active, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-always-active, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-always-active { position: relative; right: unset; top: unset; transform: unset; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-arw-cntr, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-arw-cntr, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-arw-cntr, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-arw-cntr, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-arw-cntr { float: none; top: unset; right: unset; transform: unset; margin-top: -2px; position: relative; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-cat-header, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-cat-header, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-cat-header, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-cat-header, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-cat-header, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-cat-header { flex: 1 1 0%; margin: 0px 0.5rem; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-tgl, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-tgl, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-tgl, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-tgl, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-tgl, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-tgl { position: relative; transform: none; right: 0px; top: 0px; float: none; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox { position: relative; margin: 0px 0.5rem; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label { padding: 0px; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox label::before, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox label::before, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox label::before, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox label::before { position: relative; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-acc-hdr .ot-chkbox input, #onetrust-pc-sdk ul.ot-subgrps .ot-acc-hdr .ot-chkbox input, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps .ot-acc-hdr .ot-chkbox input, #onetrust-pc-sdk .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input, #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-acc-hdr .ot-chkbox input, #onetrust-pc-sdk #ot-pc-lst .ot-vs-list .ot-vnd-item .ot-acc-hdr .ot-chkbox input, #onetrust-pc-sdk .ot-accordion-layout.ot-checkbox-consent .ot-acc-hdr .ot-chkbox input { position: absolute; cursor: pointer; width: 100%; height: 100%; opacity: 0; margin: 0px; top: 0px; left: 0px; z-index: 1; }\r\n#onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h5.ot-cat-header, #onetrust-pc-sdk .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp .ot-acc-hdr h4.ot-cat-header { margin: 0px; }\r\n#onetrust-pc-sdk .ot-vs-config .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp h5 { top: 0px; line-height: 20px; }\r\n#onetrust-pc-sdk .ot-vs-list { display: flex; flex-direction: column; padding: 0px; margin: 0.5rem 4px; }\r\n#onetrust-pc-sdk .ot-vs-selc-all { display: flex; padding: 0px; float: unset; align-items: center; justify-content: flex-start; }\r\n#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf { justify-content: flex-end; }\r\n#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox { margin-right: 48px; }\r\n#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox { margin: 0px 14px 0px 0px; padding: 0px; justify-content: flex-end; }\r\n#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-chkbox, #onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr.ot-tgl { display: inline-block; right: unset; width: auto; height: auto; float: none; }\r\n#onetrust-pc-sdk .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr label { width: 45px; height: 25px; }\r\n#onetrust-pc-sdk .ot-vs-selc-all .ot-sel-all-chkbox { margin-right: 11px; margin-left: 0.75rem; display: flex; align-items: center; }\r\n#onetrust-pc-sdk .ot-vs-selc-all .sel-all-hdr { margin: 0px 1.25rem; font-size: 0.812em; line-height: normal; text-align: center; word-break: break-word; overflow-wrap: break-word; }\r\n#onetrust-pc-sdk .ot-vnd-list-cnt #ot-selall-vencntr.ot-chkbox { float: unset; right: 0px; }\r\n#onetrust-pc-sdk.otPcTab .ot-vs-selc-all.ot-toggle-conf.ot-caret-conf .ot-sel-all-chkbox { margin-right: 50px; }\r\n#onetrust-pc-sdk.otPcTab .ot-vs-selc-all.ot-toggle-conf #ot-selall-vencntr label { width: 35px; height: 10px; }\r\n#onetrust-pc-sdk.otPcTab .ot-vs-selc-all.ot-toggle-conf .ot-sel-all-chkbox { justify-content: flex-end; }\r\n#onetrust-pc-sdk.otPcTab .ot-vs-selc-all .ot-sel-all-chkbox { right: unset; display: flex; align-items: center; }\r\n#onetrust-pc-sdk.otPcTab .ot-vs-selc-all .ot-sel-all-chkbox #ot-selall-vencntr.ot-chkbox { right: unset; }\r\n#onetrust-pc-sdk.otPcTab .ot-vs-selc-all .ot-sel-all-chkbox { margin-left: 12px; }\r\n#onetrust-pc-sdk.otPcTab .ot-vs-selc-all .ot-sel-all-chkbox .sel-all-hdr { margin: 0px 1rem; }\r\n#onetrust-pc-sdk .ot-pgph-link { font-size: 0.813em; margin-top: 5px; position: relative; }\r\n#onetrust-pc-sdk .ot-pgph-link.ot-pgph-link-subgroup { margin-bottom: 1rem; }\r\n#onetrust-pc-sdk .ot-pgph-contr { margin: 0px 2.5rem; }\r\n#onetrust-pc-sdk .ot-pgph-title { font-size: 1.18rem; margin-bottom: 2rem; }\r\n#onetrust-pc-sdk .ot-pgph-desc { font-size: 1rem; font-weight: 400; margin-bottom: 2rem; line-height: 1.5rem; }\r\n#onetrust-pc-sdk .ot-pgph-desc:not(:last-child)::after { content: \"\"; width: 96%; display: block; margin: 0px auto; padding-bottom: 2rem; border-bottom: 1px solid rgb(233, 233, 233); }\r\n#onetrust-pc-sdk.otPcTab[dir=\"rtl\"] input ~ .ot-acc-hdr .ot-arw, #onetrust-pc-sdk.otPcTab[dir=\"rtl\"] #ot-back-arw { transform: rotate(180deg); }\r\n#onetrust-pc-sdk.otPcTab[dir=\"rtl\"] input:checked ~ .ot-acc-hdr .ot-arw { transform: rotate(270deg); }\r\n#onetrust-pc-sdk.otPcTab[dir=\"rtl\"] #ot-search-cntr svg { right: 15px; }\r\n#onetrust-pc-sdk.otPcTab[dir=\"rtl\"] .ot-chkbox label::after { transform: rotate(45deg); border-left: 0px; border-right: 3px solid; }\r\n#onetrust-pc-sdk #close-pc-btn-handler.ot-close-icon { padding: 0px; background-color: rgba(0, 0, 0, 0); border: none; margin: 0px; }\r\n@media (max-width: 767px) {\n  #onetrust-pc-sdk { width: 100%; border: none; }\n  #onetrust-pc-sdk .ot-optout-signal { margin: 0.625rem; }\n  #onetrust-pc-sdk .ot-sdk-container, #onetrust-pc-sdk .ot-sdk-container { padding: 0px; margin: 0px; }\n  #onetrust-pc-sdk .ot-title-cntr { width: 75%; }\n  #onetrust-pc-sdk .ot-title-cntr #ot-pc-title { white-space: break-spaces; font-size: 20px; overflow-x: visible; margin-left: 10px; }\n  #onetrust-pc-sdk .ot-pc-logo { width: 15%; }\n  #onetrust-pc-sdk .ot-pc-logo img { max-height: fit-content; font-size: 10px; }\n  #onetrust-pc-sdk .ot-desc-cntr { margin: 0px; padding: 20px 20px 15px; position: relative; left: auto; }\n  #onetrust-pc-sdk .ot-desc-cntr { margin-top: 20px; margin-left: 20px; padding: 0px 0px 10px; }\n  #onetrust-pc-sdk .ot-grps-cntr { max-height: none; overflow: hidden; }\n  #onetrust-pc-sdk #accept-recommended-btn-handler { float: none; }\n}\r\n@media (min-width: 768px) {\n  #onetrust-pc-sdk.ot-tgl-with-label .ot-label-status { display: inline; }\n  #onetrust-pc-sdk.ot-tgl-with-label #ot-pc-lst .ot-label-status { display: none; }\n  #onetrust-pc-sdk.ot-tgl-with-label.ot-leg-opt-out .ot-pli-hdr { padding-right: 8%; }\n  #onetrust-pc-sdk.ot-tgl-with-label .ot-cat-header { max-width: 60%; }\n  #onetrust-pc-sdk.ot-tgl-with-label .ot-subgrp h4 { max-width: 58%; }\n  #onetrust-pc-sdk.ot-tgl-with-label .ot-subgrp-cntr ul.ot-subgrps li.ot-subgrp > h6 { max-width: 50%; }\n  #onetrust-pc-sdk.ot-tgl-with-label .ot-desc-cntr .ot-tgl-cntr:first-of-type, #onetrust-pc-sdk.ot-tgl-with-label .ot-cat-header + .ot-tgl { padding-left: 15px; }\n}\r\n@media (max-width: 640px) {\n  #onetrust-pc-sdk { height: 100%; }\n  #onetrust-pc-sdk .ot-optout-signal { margin: 0.625rem; }\n  #onetrust-pc-sdk .ot-pc-header { padding: 10px; width: calc(100% - 20px); }\n  #onetrust-pc-sdk #ot-pc-content { overflow: auto; }\n  #onetrust-pc-sdk .ot-sdk-row .ot-sdk-columns { width: 100%; }\n  #onetrust-pc-sdk .ot-desc-cntr { margin: 0px; overflow: hidden; }\n  #onetrust-pc-sdk .ot-desc-cntr { margin-left: 10px; width: calc(100% - 15px); margin-top: 5px; margin-bottom: 5px; }\n  #onetrust-pc-sdk .ot-ven-hdr { max-width: 80%; }\n  #onetrust-pc-sdk #ot-lst-cnt { width: calc(100% - 18px); padding-top: 13px; padding-right: 5px; padding-left: 10px; }\n  #onetrust-pc-sdk .ot-grps-cntr { width: 100%; }\n  #onetrust-pc-sdk .ot-pc-footer { max-height: 300px; }\n  #onetrust-pc-sdk #ot-pc-content, #onetrust-pc-sdk #ot-pc-lst { height: calc(100% - 322px); }\n  #onetrust-pc-sdk.ot-close-btn-link #close-pc-btn-handler { position: fixed; top: 10px; right: 15px; }\n  #onetrust-pc-sdk.ot-close-btn-link .ot-pc-header { padding-top: 25px; }\n  #onetrust-pc-sdk.ot-close-btn-link #ot-pc-title { max-width: 100%; }\n}\r\n@media (max-width: 640px) and (orientation: portrait) {\n  #onetrust-pc-sdk #ot-pc-hdr { height: 70px; padding: 15px 0px; width: 100%; }\n  #onetrust-pc-sdk .ot-lst-subhdr { width: calc(100% - 15px); float: none; bottom: auto; display: inline-block; padding-top: 8px; padding-left: 15px; }\n  #onetrust-pc-sdk .ot-btn-subcntr { float: none; }\n  #onetrust-pc-sdk #ot-search-cntr { display: inline-block; width: calc(100% - 55px); position: relative; }\n  #onetrust-pc-sdk #ot-anchor { top: 75px; right: 30px; }\n  #onetrust-pc-sdk #ot-fltr-modal { top: 81px; }\n  #onetrust-pc-sdk #ot-fltr-cntr { float: right; right: 15px; }\n  #onetrust-pc-sdk #ot-lst-title { padding-left: 15px; }\n  #onetrust-pc-sdk #ot-lst-cnt { height: auto; overflow: auto; }\n  #onetrust-pc-sdk .save-preference-btn-handler, #onetrust-pc-sdk #accept-recommended-btn-handler, #onetrust-pc-sdk .ot-pc-refuse-all-handler { width: calc(100% - 33px); }\n  #onetrust-pc-sdk.ot-ftr-stacked .save-preference-btn-handler, #onetrust-pc-sdk.ot-ftr-stacked .ot-btn-subcntr { max-width: none; }\n  #onetrust-pc-sdk.ot-ftr-stacked .ot-pc-footer button { margin: 15px; }\n  #onetrust-pc-sdk.ot-ftr-stacked .ot-btn-subcntr button { max-width: none; }\n  #onetrust-pc-sdk.ot-ftr-stacked .ot-btn-subcntr button:nth-child(2) { margin-top: 15px; }\n  #onetrust-pc-sdk.ot-ftr-stacked .ot-btn-container button:not(:last-child) { margin-bottom: 0px; }\n}\r\n@media (max-width: 425px) {\n  #onetrust-pc-sdk .ot-pc-header .ot-pc-logo { width: 15%; }\n  #onetrust-pc-sdk .ot-pc-header .ot-pc-logo img { max-height: fit-content; font-size: 10px; }\n  #onetrust-pc-sdk .ot-title-cntr { width: 75%; }\n  #onetrust-pc-sdk #ot-pc-lst .ot-acc-txt { padding-top: 6px; padding-bottom: 10px; }\n  #onetrust-pc-sdk #ot-pc-lst .ot-host-notice { float: left; margin-left: 30px; }\n  #onetrust-pc-sdk #ot-pc-lst .ot-arw-cntr { float: none; display: inline; }\n  #onetrust-pc-sdk #ot-pc-lst .ot-ven-hdr { float: left; width: 100%; max-width: 85%; }\n  #onetrust-pc-sdk.ot-addtl-vendors #ot-pc-lst .ot-acc-cntr .ot-arw-cntr:first-of-type { float: right; }\n  #onetrust-pc-sdk #ot-pc-title { max-width: 100%; white-space: break-spaces; font-size: 20px; overflow-x: visible; }\n  #onetrust-pc-sdk .ot-subgrp-cntr li.ot-subgrp { margin-left: 10px; width: calc(100% - 10px); }\n  #onetrust-pc-sdk #ot-ven-lst .ot-tgl-cntr { width: auto; float: right; }\n  #onetrust-pc-sdk #ot-ven-lst .ot-arw-cntr { float: right; }\n  #onetrust-pc-sdk .ot-ven-hdr { max-width: 47%; }\n  #onetrust-pc-sdk .ot-always-active-group .ot-tgl-cntr:first-of-type { max-width: none; padding-left: 20px; }\n}\r\n@media only screen and (max-height: 425px) and (max-width: 896px) and (orientation: landscape) {\n  #onetrust-pc-sdk { height: 100%; width: 100%; max-width: none; }\n  #onetrust-pc-sdk .ot-always-active-group .ot-tgl-cntr { max-width: none; }\n  #onetrust-pc-sdk .ot-pc-header { padding: 10px; width: calc(100% - 20px); height: auto; min-height: 20px; }\n  #onetrust-pc-sdk .ot-pc-header .ot-pc-logo { max-height: 20px; width: 15%; }\n  #onetrust-pc-sdk .ot-pc-header .ot-pc-logo img { max-height: fit-content; font-size: 10px; }\n  #onetrust-pc-sdk .ot-title-cntr { width: 75%; }\n  #onetrust-pc-sdk .ot-title-cntr #ot-pc-title { white-space: break-spaces; font-size: 20px; overflow-x: visible; }\n  #onetrust-pc-sdk .ot-pc-footer { max-height: 52px; overflow-y: auto; }\n  #onetrust-pc-sdk #ot-pc-lst { overflow-y: auto; }\n  #onetrust-pc-sdk #ot-pc-lst #ot-pc-hdr { height: auto; }\n  #onetrust-pc-sdk #ot-pc-lst #ot-pc-hdr #ot-pc-title { max-height: 20px; }\n  #onetrust-pc-sdk #ot-pc-lst #ot-pc-hdr .ot-lst-subhdr { padding: 10px 5px; float: none; }\n  #onetrust-pc-sdk #ot-pc-lst #ot-pc-hdr .ot-lst-subhdr #ot-fltr-cntr { margin-top: 5px; }\n  #onetrust-pc-sdk #ot-pc-lst #ot-lst-cnt { overflow: visible; }\n  #onetrust-pc-sdk #ot-lst-cnt { height: auto; overflow: auto; }\n  #onetrust-pc-sdk #accept-recommended-btn-handler { float: right; }\n  #onetrust-pc-sdk .save-preference-btn-handler, #onetrust-pc-sdk #accept-recommended-btn-handler, #onetrust-pc-sdk .ot-pc-refuse-all-handler { width: auto; }\n  #onetrust-pc-sdk.ot-ftr-stacked #accept-recommended-btn-handler, #onetrust-pc-sdk.ot-ftr-stacked .ot-pc-refuse-all-handler { width: 90%; }\n  #onetrust-pc-sdk #ot-pc-content, #onetrust-pc-sdk #ot-pc-lst { height: calc(100% - 120px); }\n  #onetrust-pc-sdk.ot-shw-fltr .ot-lst-cntr { overflow: hidden; }\n  #onetrust-pc-sdk.ot-shw-fltr #ot-pc-lst { position: static; }\n  #onetrust-pc-sdk.ot-shw-fltr #ot-fltr-modal { top: 0px; width: 100%; height: 100%; max-height: none; }\n  #onetrust-pc-sdk.ot-shw-fltr #ot-fltr-modal > div { margin: 0px; box-sizing: initial; height: 100%; max-height: none; }\n  #onetrust-pc-sdk.ot-shw-fltr #clear-filters-handler { padding-right: 20px; }\n  #onetrust-pc-sdk.ot-shw-fltr #ot-anchor { display: none !important; }\n  #onetrust-pc-sdk .ot-pc-footer button { margin: 10px; }\n}\r\n@media (max-width: 425px), (max-width: 896px) and (max-height: 425px) and (orientation: landscape) {\n  #onetrust-pc-sdk .ot-pc-header { padding-right: 20px; }\n  #onetrust-pc-sdk .ot-pc-logo { margin-left: 0px; margin-top: 5px; width: 150px; }\n  #onetrust-pc-sdk .ot-close-icon { width: 44px; height: 44px; background-size: 12px; }\n  #onetrust-pc-sdk .ot-grp-hdr1 { float: right; padding-right: 10px; }\n  #onetrust-pc-sdk .ot-grp-hdr1 + .ot-vlst-cntr { padding-top: 10px; }\n}\r\n@media only screen and (max-height: 610px) {\n  #onetrust-pc-sdk { max-height: 100%; }\n}\r\n@media (max-width: 425px) and (orientation: landscape) {\n  #onetrust-pc-sdk .ot-pc-header #ot-pc-title { font-size: 10px; }\n}\r\n#onetrust-consent-sdk #onetrust-pc-sdk, #onetrust-consent-sdk #ot-search-cntr, #onetrust-consent-sdk #onetrust-pc-sdk .ot-switch.ot-toggle, #onetrust-consent-sdk #onetrust-pc-sdk ot-grp-hdr1 .checkbox, #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title::after, #onetrust-consent-sdk #onetrust-pc-sdk #ot-sel-blk, #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-cnt, #onetrust-consent-sdk #onetrust-pc-sdk #ot-anchor { background-color: rgb(255, 255, 255); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk h3, #onetrust-consent-sdk #onetrust-pc-sdk h4, #onetrust-consent-sdk #onetrust-pc-sdk h5, #onetrust-consent-sdk #onetrust-pc-sdk h6, #onetrust-consent-sdk #onetrust-pc-sdk p, #onetrust-consent-sdk #onetrust-pc-sdk #ot-ven-lst .ot-ven-opts p, #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-desc, #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-title, #onetrust-consent-sdk #onetrust-pc-sdk .ot-li-title, #onetrust-consent-sdk #onetrust-pc-sdk .ot-sel-all-hdr span, #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, #onetrust-consent-sdk #onetrust-pc-sdk #ot-fltr-modal #modal-header, #onetrust-consent-sdk #onetrust-pc-sdk .ot-checkbox label span, #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-sel-blk p, #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-lst-title h3, #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .back-btn-handler p, #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst .ot-ven-name, #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-lst #ot-ven-lst .consent-category, #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn, #onetrust-consent-sdk #onetrust-pc-sdk .ot-label-status, #onetrust-consent-sdk #onetrust-pc-sdk .ot-chkbox label span, #onetrust-consent-sdk #onetrust-pc-sdk #clear-filters-handler, #onetrust-consent-sdk #onetrust-pc-sdk .ot-optout-signal { color: rgb(0, 0, 0); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .privacy-notice-link, #onetrust-consent-sdk #onetrust-pc-sdk .ot-pgph-link, #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler, #onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler + a, #onetrust-consent-sdk #onetrust-pc-sdk .category-host-list-handler, #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-link, #onetrust-consent-sdk #onetrust-pc-sdk .ot-ven-legclaim-link, #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-name a, #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-acc-hdr .ot-host-expand, #onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info a, #onetrust-consent-sdk #onetrust-pc-sdk #ot-pc-content #ot-pc-desc .ot-link-btn, #onetrust-consent-sdk #onetrust-pc-sdk .ot-vnd-serv .ot-vnd-item .ot-vnd-info a, #onetrust-consent-sdk #onetrust-pc-sdk #ot-lst-cnt .ot-vnd-info a { color: rgb(0, 123, 194); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .category-vendors-list-handler:hover { text-decoration: underline; }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-grpcntr.ot-acc-txt, #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-subgrp-tgl .ot-switch.ot-toggle { background-color: rgb(248, 248, 248); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk #ot-host-lst .ot-host-info, #onetrust-consent-sdk #onetrust-pc-sdk .ot-acc-txt .ot-ven-dets { background-color: rgb(248, 248, 248); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk button:not(#clear-filters-handler):not(.ot-close-icon):not(#filter-btn-handler):not(.ot-remove-objection-handler):not(.ot-obj-leg-btn-handler):not([aria-expanded]):not(.ot-link-btn), #onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-active-leg-btn { background-color: rgb(0, 123, 194); border-color: rgb(0, 123, 194); color: rgb(255, 255, 255); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .ot-active-menu { border-color: rgb(0, 123, 194); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-remove-objection-handler { background-color: transparent; border: 1px solid transparent; }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .ot-leg-btn-container .ot-inactive-leg-btn { background-color: rgb(255, 255, 255); color: rgb(120, 128, 142); border-color: rgb(120, 128, 142); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .ot-tgl input:focus + .ot-switch, .ot-switch .ot-switch-nob, .ot-switch .ot-switch-nob::before, #onetrust-pc-sdk .ot-checkbox input[type=\"checkbox\"]:focus + label::before, #onetrust-pc-sdk .ot-chkbox input[type=\"checkbox\"]:focus + label::before { outline-color: rgb(0, 0, 0); outline-width: 1px; }\r\n#onetrust-pc-sdk .ot-host-item > button:focus, #onetrust-pc-sdk .ot-ven-item > button:focus { border: 1px solid rgb(0, 0, 0); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk :focus, #onetrust-consent-sdk #onetrust-pc-sdk .ot-vlst-cntr > a:focus { outline: rgb(0, 0, 0) solid 1px; }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .category-menu-switch-handler { background-color: rgb(244, 244, 244); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .ot-active-menu { background-color: rgb(255, 255, 255); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .category-menu-switch-handler { background-color: rgb(244, 244, 244); }\r\n#onetrust-consent-sdk #onetrust-pc-sdk .ot-active-menu { background-color: rgb(255, 255, 255); }\r\n#onetrust-pc-sdk .ot-vlst-cntr .ot-ext-lnk, #onetrust-pc-sdk .ot-ven-hdr .ot-ext-lnk { background-image: url(\"https://cdn.cookielaw.org/logos/static/ot_external_link.svg\"); }\r\n#ot-sdk-btn-floating.ot-floating-button { width: 40px !important; height: 47px !important; padding: 1px !important; bottom: 18px !important; left: 5px !important; }\r\ndiv.ot-floating-button__back { width: 34px !important; height: 34px !important; background-color: rgb(0, 123, 194) !important; }\r\n#ot-sdk-btn-floating .ot-floating-button__back { bottom: 8px !important; }\r\nbutton.ot-floating-button__close { width: 24px !important; height: 24px !important; padding: 5px !important; margin: auto !important; }\r\n#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__back { transform: rotateY(0deg); }\r\n.ot-floating-button__back.custom-persistent-icon { border-radius: 10px !important; }\r\n#ot-sdk-btn-floating .ot-floating-button__front { background-color: rgb(0, 123, 194) !important; box-shadow: rgba(0, 0, 0, 0.2) 5px 5px 8px 0px !important; border-radius: 10px !important; }\r\n.ot-sdk-cookie-policy { font-family: inherit; font-size: 16px; }\r\n.ot-sdk-cookie-policy.otRelFont { font-size: 1rem; }\r\n.ot-sdk-cookie-policy h3, .ot-sdk-cookie-policy h4, .ot-sdk-cookie-policy h6, .ot-sdk-cookie-policy p, .ot-sdk-cookie-policy li, .ot-sdk-cookie-policy a, .ot-sdk-cookie-policy th, .ot-sdk-cookie-policy #cookie-policy-description, .ot-sdk-cookie-policy .ot-sdk-cookie-policy-group, .ot-sdk-cookie-policy #cookie-policy-title { color: dimgray; }\r\n.ot-sdk-cookie-policy #cookie-policy-description { margin-bottom: 1em; }\r\n.ot-sdk-cookie-policy h4 { font-size: 1.2em; }\r\n.ot-sdk-cookie-policy h6 { font-size: 1em; margin-top: 2em; }\r\n.ot-sdk-cookie-policy th { min-width: 75px; }\r\n.ot-sdk-cookie-policy a, .ot-sdk-cookie-policy a:hover { background: rgb(255, 255, 255); }\r\n.ot-sdk-cookie-policy thead { background-color: rgb(246, 246, 244); font-weight: bold; }\r\n.ot-sdk-cookie-policy .ot-mobile-border { display: none; }\r\n.ot-sdk-cookie-policy section { margin-bottom: 2em; }\r\n.ot-sdk-cookie-policy table { border-collapse: inherit; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy { font-family: inherit; font-size: 1rem; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h3, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h4, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title { color: dimgray; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description { margin-bottom: 1em; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup { margin-left: 1.5em; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group-desc, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-table-header, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td { font-size: 0.9em; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td span, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td a { font-size: inherit; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group { font-size: 1em; margin-bottom: 0.6em; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-title { margin-bottom: 1.2em; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy > section { margin-bottom: 1em; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th { min-width: 75px; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a:hover { background: rgb(255, 255, 255); }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead { background-color: rgb(246, 246, 244); font-weight: bold; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-mobile-border { display: none; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy section { margin-bottom: 2em; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li { list-style: disc; margin-left: 1.5em; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-subgroup ul li h4 { display: inline-block; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table { border-collapse: inherit; margin: auto; border: 1px solid rgb(215, 215, 215); border-radius: 5px; border-spacing: initial; width: 100%; overflow: hidden; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td { border-bottom: 1px solid rgb(215, 215, 215); border-right: 1px solid rgb(215, 215, 215); }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td { border-bottom: 0px; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr th:last-child, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr td:last-child { border-right: 0px; }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type { width: 25%; }\r\n.ot-sdk-cookie-policy[dir=\"rtl\"] { text-align: left; }\r\n#ot-sdk-cookie-policy h3 { font-size: 1.5em; }\r\n@media only screen and (max-width: 530px) {\n  .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) table, .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead, .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tbody, .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) th, .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td, .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr { display: block; }\n  .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) thead tr { position: absolute; top: -9999px; left: -9999px; }\n  .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr { margin: 0px 0px 1em; }\n  .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(2n+1), .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) tr:nth-child(2n+1) a { background: rgb(246, 246, 244); }\n  .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td { border-top: none; border-right: none; border-left: none; border-image: initial; border-bottom: 1px solid rgb(238, 238, 238); position: relative; padding-left: 50%; }\n  .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td::before { position: absolute; height: 100%; left: 6px; width: 40%; padding-right: 10px; }\n  .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) .ot-mobile-border { display: inline-block; background-color: rgb(228, 228, 228); position: absolute; height: 100%; top: 0px; left: 45%; width: 2px; }\n  .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) td::before { content: attr(data-label); font-weight: bold; }\n  .ot-sdk-cookie-policy:not(#ot-sdk-cookie-policy-v2) li { word-break: break-word; overflow-wrap: break-word; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table { overflow: hidden; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table td { border-top: none; border-right: none; border-left: none; border-image: initial; border-bottom: 1px solid rgb(215, 215, 215); }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tbody, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr { display: block; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-host, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table .ot-cookies-type { width: auto; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy tr { margin: 0px 0px 1em; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td::before { height: 100%; width: 40%; padding-right: 10px; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td::before { content: attr(data-label); font-weight: bold; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li { word-break: break-word; overflow-wrap: break-word; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy thead tr { position: absolute; top: -9999px; left: -9999px; z-index: -9999; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td { border-bottom: 1px solid rgb(215, 215, 215); border-right: 0px; }\n  #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table tr:last-child td:last-child { border-bottom: 0px; }\n}\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h5, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy h6, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy li, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy p, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy a, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy span, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy td, #ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-description { color: rgb(105, 105, 105); }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy th { color: rgb(105, 105, 105); }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy .ot-sdk-cookie-policy-group { color: rgb(105, 105, 105); }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy #cookie-policy-title { color: rgb(105, 105, 105); }\r\n#ot-sdk-cookie-policy-v2.ot-sdk-cookie-policy table th { background-color: rgb(248, 248, 248); }\r\n.ot-floating-button__front { background-image: url(\"https://cdn.cookielaw.org/logos/ba35bc6e-7778-4444-a092-5c752d0ba73f/15086884-2eb2-4e77-a1bc-e8b3141a0cd8/45d1fb2f-027d-4c7d-9098-a6299f7c1e0b/Blank_Shield_Icon.png\"); }\r\n#ot-sdk-btn-floating.ot-floating-button { position: fixed; bottom: 10px; opacity: 0; width: 50px; height: 50px; line-height: 15px; cursor: pointer; background-color: rgba(0, 0, 0, 0); transition: 300ms; z-index: 2147483646; animation: 800ms ease 0ms 1 normal forwards running otFloatingBtnIntro; }\r\n#ot-sdk-btn-floating.ot-floating-button.ot-hide { display: none; }\r\n#ot-sdk-btn-floating.ot-floating-button::before, #ot-sdk-btn-floating.ot-floating-button::after { text-transform: none; line-height: 1; user-select: none; pointer-events: none; position: absolute; transform: scale(0); opacity: 0; transition: 300ms; display: block; height: auto; }\r\n#ot-sdk-btn-floating.ot-floating-button::before { content: \"\"; border-width: 5px 5px 5px 0px; border-style: solid; border-color: rgba(0, 0, 0, 0) rgb(51, 51, 51) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); border-image: initial; z-index: 1001; top: 50%; right: calc(0em - 5px); transform: translate(10px, -50%); }\r\n#ot-sdk-btn-floating.ot-floating-button::after { content: attr(data-title); position: absolute; text-align: center; top: 50%; left: calc(100% + 5px); transform: translate(10px, -50%); font-size: 0.75rem; min-width: 3em; max-width: 21em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 5px; border-radius: 0.3ch 0.3ch 0.3ch 0.3ch / 0.3ch 0.3ch 0.3ch 0.3ch; box-shadow: rgba(0, 0, 0, 0.35) 0px 1em 2em -0.5em; background: rgb(51, 51, 51); color: rgb(255, 255, 255); z-index: 2147483645; }\r\n#ot-sdk-btn-floating.ot-floating-button:hover::before, #ot-sdk-btn-floating.ot-floating-button:hover::after { opacity: 1; }\r\n#ot-sdk-btn-floating.ot-floating-button:hover::before { transform: translate(0.5em, -50%) scale(1); }\r\n#ot-sdk-btn-floating.ot-floating-button:hover::after { transform: translate(0.5em, -50%) scale(1); }\r\n#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__front { transform: rotateY(-180deg); }\r\n#ot-sdk-btn-floating.ot-floating-button.ot-pc-open .ot-floating-button__back { transform: rotateY(0deg); }\r\n#ot-sdk-btn-floating .ot-floating-button__front, #ot-sdk-btn-floating .ot-floating-button__back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; background-color: rgb(106, 170, 228); border-radius: 10px; box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px 0px; transition: transform 0.6s; transform-style: preserve-3d; }\r\n#ot-sdk-btn-floating .ot-floating-button__front { background-color: rgb(106, 170, 228); transform: rotateY(0deg); }\r\n#ot-sdk-btn-floating .ot-floating-button__front.custom-persistent-icon { background-position: center center; background-repeat: no-repeat; background-size: 100%; border-radius: 100px; }\r\n#ot-sdk-btn-floating .ot-floating-button__front svg { width: 30px; height: 37px; }\r\n#ot-sdk-btn-floating .ot-floating-button__back { background-color: rgb(102, 153, 204); transform: rotateY(-180deg); }\r\n#ot-sdk-btn-floating .ot-floating-button__back.custom-persistent-icon { background-position: center center; background-repeat: no-repeat; background-size: 100%; border-radius: 100px; }\r\n#ot-sdk-btn-floating .ot-floating-button__back svg { width: 24px; height: 24px; }\r\n#ot-sdk-btn-floating.ot-floating-button button { padding: 0px; background-color: rgba(0, 0, 0, 0); border: 0px; width: 100%; height: 100%; cursor: pointer; }\r\n@keyframes otFloatingBtnIntro { \n  0% { opacity: 0; left: -75px; }\n  100% { opacity: 1; left: 1%; }\n}\r\n@keyframes otFloatingBtnImageIntro { \n  0% { opacity: 0; transform: scale(0) rotate(-270deg); }\n  100% { opacity: 1; transform: scale(0.95) rotate(0deg); }\n}\r\n</style><link rel=\"stylesheet\" type=\"text/css\" href=\"/static/css/11.ba1910b3.chunk.css\"><link rel=\"stylesheet\" type=\"text/css\" href=\"https://web-sdk-us2.aptrinsic.com/style.css?a=AP-951TOKPMAOVU-2-3\"><style id=\"react-to-print-5\">.hfgJah { font-size: 1rem !important; }\r\n.hfgJah::before { content: \"\"; }\r\n.gQKDBc { font-size: 1rem !important; }\r\n.gQKDBc::before { content: \"\"; }\r\n.hfggXD { font-size: 1rem !important; }\r\n.hfggXD::before { content: \"\"; }\r\n.gSybVg { font-size: 1rem !important; }\r\n.gSybVg::before { content: \"\"; }\r\n.cOUHNs::before { content: \"\"; }\r\n.gQKoHB { font-size: 1rem !important; }\r\n.gQKoHB::before { content: \"\"; }\r\n.gShkqa { font-size: 1rem !important; }\r\n.gShkqa::before { content: \"\"; }\r\n.cPbGKf { font-size: 1.5rem !important; }\r\n.cPbGKf::before { content: \"\"; }\r\n.cQfWIb { font-size: 1.5rem !important; }\r\n.cQfWIb::before { content: \"\"; }\r\n.cPGVRD { font-size: 1.5rem !important; }\r\n.cPGVRD::before { content: \"\"; }\r\n.cIaVfn { font-size: 1.5rem !important; }\r\n.cIaVfn::before { content: \"\"; }\r\n.cPSuoQ { font-size: 1.5rem !important; }\r\n.cPSuoQ::before { content: \"\"; }\r\n.hfwCDr { font-size: 1rem !important; }\r\n.hfwCDr::before { content: \"\"; }\r\n.gSFMmY { font-size: 1rem !important; }\r\n.gSFMmY::before { content: \"\"; }\r\n.kpNdKw { font-size: 1em !important; }\r\n.kpNdKw::before { content: \"\"; }\r\n.cHKtLN { font-size: 1.5rem !important; }\r\n.cHKtLN::before { content: \"\"; }\r\n.cPHhCi { font-size: 1.5rem !important; }\r\n.cPHhCi::before { content: \"\"; }\r\n.gQCHyF { font-size: 1rem !important; }\r\n.gQCHyF::before { content: \"\"; }\r\n.cPjAne::before { content: \"\"; }\r\n.cOxupd::before { content: \"\"; }\r\n.gRJhwC { font-size: 1rem !important; }\r\n.gRJhwC::before { content: \"\"; }\r\n.bioeq { font-size: 10px !important; }\r\n.bioeq::before { content: \"\"; }\r\n.gSFxtx { font-size: 1rem !important; }\r\n.gSFxtx::before { content: \"\"; }\r\n.gQpRBp { font-size: 1rem !important; }\r\n.gQpRBp::before { content: \"\"; }\r\n.gRAalM { font-size: 1rem !important; }\r\n.gRAalM::before { content: \"\"; }\r\n.gfuSqG { position: fixed; display: flex; flex-direction: row-reverse; z-index: 1100; inset: 0px; height: 100%; width: 100%; }\r\n.dJdFwe { overflow-y: auto; -webkit-box-flex: 1; flex-grow: 1; }\r\n</style><style id=\"react-to-print-6\">@keyframes table-shimmer { \n  0% { background-position: -100% center; }\n  100% { background-position: 200% center; }\n}\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)) > .content { height: calc(100% - 3rem); display: flex; }\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).widget > .content { max-height: 400px; min-height: 324px; }\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).not-ok-state.dashboard > .content { min-height: 150px; }\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).dashboard.add-widget > .content { display: flex; flex-flow: row; align-items: center; align-self: center; }\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)) iframe { border: none; }\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).dashboard:not(.richText-card) .custom-display-label { min-height: 36px; }\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).richText-card .custom-display-label, html.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).richText-card .chart-footer .view-dashboard-link { padding: 0.5rem 0.5rem 0px; }\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).richText-card > .content { padding: 0.5rem; }\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).frame-card .custom-display-label, html.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).frame-card .chart-footer .view-dashboard-link { padding: 0.75rem 1rem; }\r\nhtml.honeywell-dark-theme .ui.card.custom-display-card:not(.printing:has(.p-datatable)).frame-card > .content { padding: 0px; }\r\nhtml.honeywell-dark-theme .dashboard-preview .react-resizable-hide .react-resizable-handle { display: none; }\r\nhtml.honeywell-dark-theme .dashboard-composer { display: flex; flex: 1 0 auto; height: 100%; flex-flow: column; position: relative; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.single-input .input-wrap input.input-box, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.single-input .input-wrap input.input-box { color: rgb(255, 255, 255); height: 2.5rem; background-color: rgb(32, 32, 32) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.single-input.disabled .input-wrap input.input-box, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.single-input.readonly .input-wrap input.input-box, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.single-input.focused .input-wrap input.input-box, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper .ui.dropdown, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(32, 32, 32); height: 2.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper .ui.dropdown .text, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper .ui.dropdown.active, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(32, 32, 32); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper .ui.dropdown.active .text, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper.disabled .ui.dropdown, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(96, 96, 96); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper.readonly .ui.dropdown, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(64, 64, 64); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .scuf-textarea-wrapper textarea, html.honeywell-dark-theme .dashboard-composer .composer-header .scuf-textarea-wrapper textarea { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); resize: none; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .scuf-textarea-wrapper textarea:disabled, html.honeywell-dark-theme .dashboard-composer .composer-header .scuf-textarea-wrapper textarea:disabled { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .scuf-textarea-wrapper.readonly textarea, html.honeywell-dark-theme .dashboard-composer .composer-header .scuf-textarea-wrapper.readonly textarea { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.input-label .input-label-message, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.input-label .input-label-message { color: rgb(176, 176, 176); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper > .ui.multiple.selection.dropdown > .label, html.honeywell-dark-theme .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper > .ui.multiple.selection.dropdown > .label { background-color: rgb(64, 64, 64); }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-preview { height: 100%; overflow: auto; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-preview .ui.secondary.menu { margin: 0px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .react-grid-item.react-grid-placeholder { background: rgb(0, 102, 255); z-index: 1; opacity: 0.35; }\r\nhtml.honeywell-dark-theme .dashboard-composer .react-grid-item.react-draggable-dragging { border: 0.0625rem solid rgb(69, 167, 234); opacity: 0.7; }\r\nhtml.honeywell-dark-theme .dashboard-composer .react-grid-item.react-draggable-dragging .move-icon { cursor: grabbing; }\r\nhtml.honeywell-dark-theme .dashboard-composer .react-grid-item.react-draggable { cursor: pointer; }\r\nhtml.honeywell-dark-theme .dashboard-composer .react-resizable-handle::after { border-color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-title-input.single-input { padding: 0px 0.75rem; line-height: 0; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-title-input.single-input .input-wrap, html.honeywell-dark-theme .dashboard-composer .dashboard-title-input.single-input .input-wrap input.input-box { background-color: rgba(0, 0, 0, 0) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-title-input.single-input .input-wrap input.input-box { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: rgb(255, 255, 255); padding: 0.75rem; height: 56px !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-title-input.single-input .input-wrap input.input-box::placeholder { font-size: 1.625rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .floating-panel { top: 6.25rem; height: calc(100% - 6.25rem); }\r\nhtml.honeywell-dark-theme .dashboard-composer .ui.single-input.dashboard-title-input .input-wrap input.input-box { background-color: rgb(32, 32, 32) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer > :not(:last-child):not(.Toastify) { margin-bottom: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-content { display: flex; flex-flow: row; flex-grow: 1; min-height: 0px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-content > :not(:last-child) { margin-right: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header { display: flex; align-items: center; background-color: rgb(48, 48, 48); padding: 1.5rem 1.5rem 0.25rem; z-index: 3; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .toolbar { display: flex; flex-grow: 1; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .toolbar > .toolbar-icon:not(:last-of-type) { margin-right: 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header > :not(:last-child):not(.toolbar) { margin-right: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header > :not(.header-name-input) { padding-bottom: 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .ui.single-input { width: 100%; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .toolbar-icon { color: rgb(255, 255, 255); transition: color 0.1s linear; cursor: pointer; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .toolbar-icon:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .toolbar-icon:active { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .toolbar-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .header-dashboard-title { flex-shrink: 0; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .header-dashboard-title .badge { margin-left: 0.25rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .composer-header .header-name-input .below-text { margin: 0px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .preview { display: flex; flex-flow: column; width: 0px; flex: 1 1 75%; }\r\nhtml.honeywell-dark-theme .dashboard-composer .ui.card.custom-display-card { border: 0.0625rem solid rgba(0, 0, 0, 0) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .ui.card.custom-display-card.active { border-color: rgb(69, 167, 234) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .preview-content { display: flex; }\r\nhtml.honeywell-dark-theme .dashboard-composer .preview-content.widget { width: 50%; min-width: 400px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel { min-width: 300px; flex-basis: 25%; background-color: rgb(48, 48, 48); color: rgb(255, 255, 255); display: flex; flex-flow: column; position: relative; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel > div:first-child { display: flex; flex-flow: column; flex-grow: 1; overflow: hidden; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .action-panel-tab { display: flex; align-self: center; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .action-panel-footer { display: flex; align-self: flex-end; padding: 1rem; flex-direction: column; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .action-panel-footer .info-wrapper { text-align: left; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .action-panel-footer .button { align-self: flex-end; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .back-to-properties { position: absolute; padding-left: 1rem; width: 100%; height: 45px; background-color: rgb(48, 48, 48); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane { display: flex; flex-flow: column; min-height: 0px; flex-grow: 1; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content { margin: 0px 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .single-input, html.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .scuf-dropdown-wrapper, html.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .chip-container, html.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-list-container { padding-bottom: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .scuf-dropdown-wrapper .multiple.dropdown { height: unset; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-accordion { border: none; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-accordion > div > div.content { padding: 0px !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-accordion > div > div.title { padding: 0.75rem 0px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-accordion > .hide { display: none; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .data-type-dropdown { display: flex; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-window { border: 0.0625rem solid rgb(112, 112, 112); padding: 0.75rem 0.75rem 0px; margin-bottom: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container { display: flex; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .menu { margin: 0px; min-height: 0px; overflow-x: auto; scrollbar-width: none; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .menu::-webkit-scrollbar { display: none; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .menu .item { margin-left: 0px; padding-top: 6px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .menu .badge { margin-left: 0px; background-color: rgba(0, 0, 0, 0) !important; border-color: rgba(0, 0, 0, 0) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-left, html.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-right { height: 22px; margin-top: 6px; cursor: pointer; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-left::before, html.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-right::before { vertical-align: middle; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-left { margin-right: 0.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-right { margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container.disable-left .slide-left { color: rgb(160, 160, 160); pointer-events: none; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container.disable-right .slide-right { color: rgb(160, 160, 160); pointer-events: none; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .datasource-filter-icon { margin-left: 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .datasource-filter-icon i { line-height: 40px; cursor: pointer; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .secondary-charts-table { width: 100%; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .secondary-charts-table td { padding-bottom: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .secondary-charts-table td.action-column { width: 54px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .widget-property-metric { display: flex; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .metric-color { margin-top: auto; margin-bottom: 1.25rem; margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .color-picker-wrapper { position: relative; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .color-picker-wrapper .color-picker-display-color { width: 25px; height: 25px; cursor: pointer; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .color-picker-wrapper .color-picker { right: -5px; top: 2.5rem; z-index: 2; position: absolute !important; background-color: rgb(48, 48, 48) !important; border-color: rgb(112, 112, 112) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .color-picker-wrapper .color-picker div { border-bottom-color: rgb(112, 112, 112) !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .reference-lines-property-toggle.checked { margin-bottom: 0px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 0.875rem; background: rgb(32, 32, 32); border: 0.0625rem solid rgb(112, 112, 112); border-radius: 0px; color: rgb(224, 224, 224); transition: border-color 150ms ease-in; box-sizing: border-box; padding: 0.6875rem 0.4375rem; margin-bottom: 0.75rem; line-height: 1rem; overflow: hidden; height: 100px; }\r\n@media (-ms-high-contrast: none), (-ms-high-contrast: active) {\n  html.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables { line-height: 0.875rem !important; }\n}\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables:focus { border-color: rgb(69, 167, 234); outline: none; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables::-webkit-input-placeholder { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 0.875rem; line-height: 1.375rem; color: rgb(160, 160, 160); font-style: italic; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables:focus::-webkit-input-placeholder { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 0.875rem; line-height: 1.375rem; color: rgb(160, 160, 160); font-style: italic; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables.error { border-color: rgb(241, 90, 79); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables:empty::before { content: attr(data-placeholder); font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 0.875rem; color: rgb(160, 160, 160); font-style: italic; line-height: 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables span.placeholder { font-weight: bold; font-style: italic; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-url-embed-button { margin-left: auto; display: block; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-url-date-format .input-label { display: inline-block; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .close-tab-icon { vertical-align: unset; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .checkbox-with-info .checkbox { margin-right: 0.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .publish-tab-pane { display: flex; flex-flow: column; min-height: 0px; flex-grow: 1; margin: 0px 1.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .publish-tab-pane .publish-row { margin: 0.5rem 0px 0px; display: flex; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .publish-tab-pane .publish-row .checkbox { padding: 0px 0px 0.75rem; margin: 0px 0.25rem 0px 0px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .publish-tab-pane .publish-location-dropdown { padding-bottom: 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .publish-tab-pane .publish-toggle-label { padding-left: 0px; font-size: 0.875rem; line-height: 18px; color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .search-wrap { width: 100%; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .search-wrap .ui.icon.input { min-width: auto !important; width: 100%; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .search-wrap .ui.icon.input input { min-height: 2.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .search-wrap .results { display: none !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .search-wrap .search-icon { height: 2.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .search-wrap .publish-search-box { padding-bottom: 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .action-panel .ui.toggle.checkbox label::before, html.honeywell-dark-theme .dashboard-composer .action-panel .ui.toggle.checkbox label::after { z-index: 1; }\r\nhtml.honeywell-dark-theme .dashboard-composer .selectable-tree-content { width: calc(100% - 1rem); }\r\nhtml.honeywell-dark-theme .dashboard-composer .selectable-tree-content:first-of-type { margin-left: 0px; padding-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-composer-filter { display: flex; flex-flow: column; flex-grow: 1; max-height: unset; padding-right: 0px; padding-top: 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-composer-filter > * { display: flex; flex-flow: column; flex-grow: 1; overflow: auto; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-composer-filter .FilterControls__filterControlContainer { max-height: unset !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-composer-filter .FilterControls__filterControlContainer::-webkit-scrollbar { width: 10px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-composer-filter .FilterControls__filterControlCloseIcon { align-self: center; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-composer-filter .close-icon { margin: unset; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-composer-filter .FilterControls__filterControlsHeader { padding-right: 24px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .dashboard-composer-filter .FilterAccordion__filterAccordionWrapper > div > div > div.title { font-weight: unset; letter-spacing: unset; color: silver; padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; font-size: 0.875rem !important; }\r\nhtml.honeywell-dark-theme .dashboard-composer .properties-action { color: rgb(255, 255, 255); transition: color 0.1s linear; cursor: pointer; user-select: none; display: flex; align-items: center; margin-bottom: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .properties-action:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .dashboard-composer .properties-action:active { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .dashboard-composer .properties-action.disabled { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .dashboard-composer .properties-action > :not(:last-child) { margin-right: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .chip-container { display: flex; flex-flow: wrap; font-size: 0.75rem; color: silver; }\r\nhtml.honeywell-dark-theme .dashboard-composer .chip-container > .chip:not(:last-child) { margin-right: 0.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .no-chip { margin: 2px 0px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .chip { display: flex; align-items: center; padding: 0px 0.75rem; margin: 2px 0px; outline: rgb(96, 96, 96) solid 0.0625rem; box-sizing: border-box; border-radius: 0.25rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .chip-close-icon { margin-left: 0.25rem; vertical-align: unset; cursor: pointer; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-tabs { display: flex; flex-grow: 1; align-items: center; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-tabs > * { margin: 0px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-tabs .properties-action { padding-top: 2px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-tabs .properties-action:not(.scuf-tab + .properties-action) { margin-left: 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-tabs .properties-action + .ui.secondary.menu.scuf-tab { margin-left: 1rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-tabs .ui.secondary.menu.scuf-tab:first-child { margin-left: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-tabs .ui.secondary.menu.scuf-tab .item { cursor: unset; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-tabs .ui.secondary.menu.scuf-tab .item > * { cursor: pointer; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-tabs .delete-view-level-icon { margin-left: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-header { display: flex; align-items: center; height: 3rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-header .ui.toggle.checkbox { padding-top: calc(2px + 0.25rem); margin-bottom: 0px; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-header .info-wrapper { padding-top: 2px; margin-left: 0.75rem; }\r\nhtml.honeywell-dark-theme .dashboard-composer .view-level-header .info-wrapper i { color: rgb(243, 112, 33); }\r\nhtml.honeywell-dark-theme .dashboard-composer-notification-container .ui.notification.important { border-color: rgb(241, 90, 79); }\r\nhtml.honeywell-dark-theme .dashboard-composer-notification-container .ui.notification.important .icon .h-icon { color: rgb(241, 90, 79); }\r\nhtml.honeywell-dark-theme .properties-url-date-format-info-tooltip { white-space: pre-wrap; }\r\nhtml.honeywell-dark-theme .properties-url-date-format-info-tooltip > .content { width: 320px; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .scrolling.content { max-height: unset; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .open-card .header { padding-right: 0px; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .open-card .header .header-content { width: 100%; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .open-card .header .header-content .close-icon { margin-left: auto; cursor: pointer; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .open-card .open-card-content { min-height: 50vh; display: flex; flex-flow: column; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable { display: flex; flex-grow: 1; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable > .p-datatable-scrollable { display: flex; flex-flow: column; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-header { flex-shrink: 0; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-wrapper { height: 100%; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-view { height: 100%; display: flex; flex-flow: column; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-header { flex-shrink: 0; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-body { height: 100%; overflow: hidden auto; max-height: 100% !important; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-body-table { position: absolute; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .ui.forge-datatable-wrap .cell-data-wrap { display: flex; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .ui.forge-datatable-wrap .linked-indicator { margin-left: 0.75rem; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .ui.forge-datatable-wrap .skeleton table { left: 0px; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .editable-action-icon, html.honeywell-dark-theme .properties-tab-pane .editable-action-icon { color: rgb(255, 255, 255); transition: color 0.1s linear; cursor: pointer; }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .editable-action-icon:hover, html.honeywell-dark-theme .properties-tab-pane .editable-action-icon:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .editable-action-icon:active, html.honeywell-dark-theme .properties-tab-pane .editable-action-icon:active { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .editable-action-icon.disabled, html.honeywell-dark-theme .properties-tab-pane .editable-action-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .ui.modal.dashboard-compose-modal-open .editable-action-icon:not(:first-child), html.honeywell-dark-theme .properties-tab-pane .editable-action-icon:not(:first-child) { margin-left: 1.2rem; }\r\nhtml.honeywell-dark-theme .dashboard-tile-copy.popup.menu { box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px; margin: 0px; border: 0.0625rem solid rgb(96, 96, 96); overflow: hidden; }\r\nhtml.honeywell-dark-theme .dashboard-tile-copy.popup.menu, html.honeywell-dark-theme .dashboard-tile-copy.popup.menu .ui.vertical.menu { width: 150px; }\r\nhtml.honeywell-dark-theme .dashboard-tile-copy.popup.menu.ui.menu, html.honeywell-dark-theme .dashboard-tile-copy.popup.menu .ui.menu { min-height: auto; }\r\nhtml.honeywell-dark-theme .dashboard-tile-copy.popup.menu .vertical-menu .item::before { background: rgba(0, 0, 0, 0); }\r\nhtml.honeywell-dark-theme .custom-display-card { margin: 0px !important; }\r\nhtml.honeywell-dark-theme .custom-display-card .scuf-grid.custom-display-grid { margin: 0px; }\r\nhtml.honeywell-dark-theme .custom-display-card .scuf-grid.custom-display-grid > .scuf-grid, html.honeywell-dark-theme .custom-display-card .scuf-grid.custom-display-grid > .scuf-grid > .scuf-col { padding: 0px !important; }\r\nhtml.honeywell-dark-theme .custom-display-card .tile-actions { display: flex; position: absolute; z-index: 2; right: 0px; padding: 0.75rem 1rem; }\r\nhtml.honeywell-dark-theme .custom-display-card .tile-actions .tile-action-icon { color: rgb(255, 255, 255); transition: color 0.1s linear; cursor: pointer; }\r\nhtml.honeywell-dark-theme .custom-display-card .tile-actions .tile-action-icon:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .custom-display-card .tile-actions .tile-action-icon:active { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .custom-display-card .tile-actions .tile-action-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .custom-display-card .tile-actions .move-icon { cursor: grab; }\r\nhtml.honeywell-dark-theme .custom-display-card .tile-actions > :not(:first-child) { margin-left: 1rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) { height: 100%; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) > .content { flex-flow: column; text-align: center; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) > .content .kanban-panel-container-v2 { text-align: initial; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .highcharts-root { height: 100%; overflow: visible !important; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .scuf-grid.custom-display-grid { height: 0px; flex-basis: 100%; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .scuf-grid.custom-display-grid > .scuf-grid, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .scuf-grid.custom-display-grid > .scuf-grid > .scuf-col { height: 100%; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-description { text-align: left; color: rgb(160, 160, 160); flex-grow: 1; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-description.old { text-align: center; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-description.old > div { padding-top: 0.5rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper { height: 100%; display: flex; flex-direction: column; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart { flex-basis: 100%; height: 0px; overflow: visible !important; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .center-block { font-size: 2.5rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .center-block .donut-value { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; color: rgb(240, 240, 240); font-weight: 500; font-size: inherit; padding-bottom: 0.25em; line-height: 1em; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .center-block .donut-value:last-child { padding-bottom: 0px; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .donut-label { font-size: 0.75rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; line-height: 1.125rem; color: rgb(208, 208, 208); font-weight: 500; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap { height: 100%; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable { height: 100%; display: flex; flex-direction: column; overflow-y: hidden; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable .p-datatable-scrollable-wrapper { height: 100%; overflow-y: hidden; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable .p-datatable-scrollable-wrapper .p-datatable-scrollable-view { height: 100%; display: flex; flex-direction: column; overflow-y: hidden; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable .p-datatable-scrollable-wrapper .p-datatable-scrollable-view .p-datatable-scrollable-body { height: 100%; overflow-x: hidden; max-height: 100% !important; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable .p-datatable-scrollable-wrapper .p-datatable-scrollable-view .p-datatable-scrollable-body .cell-data-wrap { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text-wrapper { height: 100%; display: flex; flex-direction: column; text-align: left; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text-wrapper .below-text { min-height: 0px; margin-bottom: 0px; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text { height: 0px; flex: 1 1 0%; display: flex; flex-direction: column; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-container { flex-basis: 100%; height: 0px; border-top: 1px solid; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-editor { padding: 0.5rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-editor img { height: unset; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text.focus .ql-container { border-color: rgb(69, 167, 234); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text.error .ql-container { border-color: rgb(241, 90, 79); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-disabled { border: none; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-container { border-color: rgb(112, 112, 112); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-picker.ql-expanded .ql-picker-label { border-color: rgb(112, 112, 112); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-tooltip, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-picker-options { background-color: rgb(48, 48, 48); border-color: rgb(112, 112, 112); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar { padding: 0.25rem 2rem 0.25rem 0.25rem; border-bottom: none; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button .ql-stroke, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label .ql-stroke, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item .ql-stroke { stroke: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button .ql-fill, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label .ql-fill, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item .ql-fill { fill: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button:hover, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label:hover, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button:hover .ql-stroke, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label:hover .ql-stroke, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item:hover .ql-stroke { stroke: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button:hover .ql-fill, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label:hover .ql-fill, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item:hover .ql-fill { fill: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button.ql-active, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label.ql-active, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item.ql-active { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button.ql-active .ql-stroke, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label.ql-active .ql-stroke, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item.ql-active .ql-stroke { stroke: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button.ql-active .ql-fill, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label.ql-active .ql-fill, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item.ql-active .ql-fill { fill: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend .highcharts-legend-item { cursor: pointer; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend .highcharts-legend-item rect { width: 4px; height: 20px; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend .highcharts-legend-item span { line-height: 20px; font-size: 0.75rem !important; font-weight: 300 !important; top: 4px !important; left: 12px !important; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend .highcharts-legend-navigation { fill: rgb(224, 224, 224); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend path.highcharts-legend-nav-active { fill: rgb(69, 167, 234); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend path.highcharts-legend-nav-inactive { fill: rgb(80, 80, 80); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend-box { height: 20px; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-data-labels { font-size: 0.875rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content { padding: 10px 20px; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content .tooltip-value { font-size: 1rem !important; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content .legend { margin: 0.25rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content .legend .label-color { vertical-align: middle; position: relative; display: inline-block; width: 0.125rem; height: 1.25rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content .legend .label-text { margin-left: 0.5rem; vertical-align: middle; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart:not(.custom-gauge) .highcharts-yaxis-grid path { stroke: rgb(96, 96, 96); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart:not(.custom-gauge) .highcharts-xaxis path { stroke: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .table-widget, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .heatmap-widget { text-align: left; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .heatmap-widget { height: 100%; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .chart-footer { display: flex; align-items: center; align-self: flex-end; width: 100%; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .view-dashboard-link { font-size: 0.75rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; cursor: pointer; text-transform: uppercase; font-weight: 300; color: silver; flex-shrink: 0; padding-left: 0.5rem; padding-top: 0.5rem; margin-left: auto; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .frame-preview { display: flex; height: 100%; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .frame-preview > div { width: 100%; margin: auto 1rem; overflow-wrap: anywhere; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .frame-preview > div .frame-preview-button { display: block; margin: 1rem auto; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .forge-datatable-wrap .p-datatable-scrollable-header { flex-shrink: 0; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .ui.forge-datatable-wrap .p-datatable table th, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .ui.forge-datatable-wrap .p-datatable table td .cell-data-wrap { padding-left: 1rem; padding-right: 0.5rem; white-space: pre !important; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .ui.forge-datatable-wrap .p-datatable table .cell-data-wrap .disabled { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list { margin-left: 1rem; height: 100%; text-align: left; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries { overflow-y: auto; margin-top: 0.75rem !important; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries .scuf-grid { flex-wrap: nowrap; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries .item .content { padding: 0px; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries .item .content .accordion-item { padding: 0px 0.3rem 0.6rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries .item .content .accordion-item [class^=\"accordion-item-marker\"] { border-width: 0.125rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action { display: flex; align-items: center; color: rgb(255, 255, 255); transition: color 0.1s linear; cursor: pointer; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action:active { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action.disabled { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action > i { margin-left: 0.25rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action.linkable:hover { text-decoration: underline; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .statistic-widget, html.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .gauge-widget { overflow: clip auto; height: 100%; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .statistic-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); row-gap: 1.5rem; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .statistic-single-wrapper { text-align: left; overflow: hidden; margin-right: 1rem; container: statistic / inline-size; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .statistic-label { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; color: rgb(208, 208, 208); font-weight: 300; padding-bottom: 0.25rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; line-height: normal; font-size: clamp(0.75em, 2cqi + 0.75em, 1em); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .statistic-value { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; color: rgb(240, 240, 240); font-weight: 500; padding-bottom: 0px; line-height: normal; font-size: clamp(1em, 4cqi + 1em, 2em); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .gauge-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .gauge-chart { aspect-ratio: 1 / 1; justify-self: center; width: 100%; min-width: 0px; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .gauge-chart .gauge-plotband-out-of-limit { fill: rgb(96, 96, 96); }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .gauge-chart .center-block { container: gauge-center-block / inline-size; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .gauge-chart .center-block .donut-value { font-size: 20cqi !important; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .gauge-legend { width: 100%; flex-shrink: 0; }\r\nhtml.honeywell-dark-theme .custom-display-card:not(.printing:has(.p-datatable)) .gauge-legend .highcharts-root { width: 100%; }\r\nhtml.honeywell-dark-theme .heatmap-tooltip td .disabled { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table { border-spacing: 0px; width: 100%; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-header-label > div { display: inline-block; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-header-info { margin-left: 0.5em; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table th { text-align: left; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table td { padding: 0px 0px 0.5rem; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-remove-icon { color: rgb(255, 255, 255); transition: color 0.1s linear; cursor: pointer; line-height: 0; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-remove-icon:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-remove-icon:active { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-remove-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-row th:not(:first-child), html.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-row td:not(:first-child) { padding-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-row th .ui.single-input, html.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-row th .ui.scuf-dropdown-wrapper, html.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-row td .ui.single-input, html.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-row td .ui.scuf-dropdown-wrapper { padding: 0px; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-row th .ui.selection.dropdown.fluid, html.honeywell-dark-theme .properties-tab-content .input-list-table .input-list-row td .ui.selection.dropdown.fluid { width: 0px !important; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table td.color, html.honeywell-dark-theme .properties-tab-content .input-list-table td.remove { width: 25px; }\r\nhtml.honeywell-dark-theme .properties-tab-content .input-list-table .ui.single-input .input-wrap input.input-box:disabled { background: rgb(48, 48, 48) !important; color: rgb(160, 160, 160) !important; cursor: default !important; }\r\nhtml.honeywell-dark-theme .input-list-add-item { color: rgb(255, 255, 255); transition: color 0.1s linear; cursor: pointer; display: flex; align-items: center; }\r\nhtml.honeywell-dark-theme .input-list-add-item:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .input-list-add-item:active { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .input-list-add-item.disabled { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .input-list-add-item i { margin-right: 0.5rem; }\r\nhtml.honeywell-dark-theme .dashboard-preview.print { max-width: 1100px; }\r\nhtml.honeywell-dark-theme .dashboard-preview.print .react-grid-layout { width: 1100px; }\r\n@media screen {\n  html.honeywell-dark-theme .only-print { display: none !important; }\n}\r\n@media print {\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 { background-color: rgb(255, 255, 255); }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .print-header { margin-bottom: 1rem; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .print-header > div { break-after: avoid; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .primary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: silver; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .secondary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-size: 1rem; line-height: 1.5rem; color: silver; font-weight: 700; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .no-print { display: none !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .ql-toolbar, html.honeywell-dark-theme body.insight-builder-print-container.v1 .tile-actions, html.honeywell-dark-theme body.insight-builder-print-container.v1 .not-ok-error-state, html.honeywell-dark-theme body.insight-builder-print-container.v1 .react-resizable-handle, html.honeywell-dark-theme body.insight-builder-print-container.v1 .action-panel, html.honeywell-dark-theme body.insight-builder-print-container.v1 .panel-overlay { display: none !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .react-grid-item { margin-top: 4mm; display: inline-block; position: unset !important; transform: unset !important; height: auto !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .react-grid-item > span { break-inside: avoid; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .react-grid-layout { height: unset !important; display: table; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .ui.raised.card.custom-display-card { border: none !important; box-shadow: none !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .rich-text .ql-container { border: none !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container.v1 .preview { display: block !important; flex: unset !important; }\n  html.honeywell-dark-theme .custom-display-card:not(.print-v1) .custom-display-label > :not(.header) { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) { background-color: rgb(255, 255, 255); }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) * { color: rgb(0, 0, 0); letter-spacing: normal !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .print-header { margin-bottom: 1rem; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .print-header .header-row { display: flex; justify-content: space-between; align-items: baseline; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .print-header td { vertical-align: baseline; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .primary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: silver; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .secondary-title { font-weight: 700; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .created-title { font-style: italic; font-size: 0.75rem; text-align: right; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .no-print { display: none !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .ql-toolbar, html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .tile-actions, html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .not-ok-error-state, html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .react-resizable-handle, html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .action-panel, html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .panel-overlay, html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .chart-footer .view-dashboard-link, html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .accordion-footer-link { display: none !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .react-grid-item { margin-top: 4mm; display: inline-block; position: unset !important; transform: unset !important; height: auto !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .react-grid-item > span { break-inside: avoid; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .react-grid-item:has(.p-datatable) { display: block !important; width: calc(100% - 64.252px) !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .react-grid-layout { height: unset !important; display: table; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .ui.card { border: none !important; box-shadow: none !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .ui.card .header, html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .ui.card .content { padding-left: 0px !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .rich-text .ql-container { border: none !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .preview { display: block !important; flex: unset !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) thead { display: table-header-group; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap thead.p-datatable-thead > tr > th, html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap tbody.p-datatable-tbody > tr td > .cell-data-wrap { padding-left: 0px !important; padding-right: 2.5mm !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap .p-datatable { display: block !important; height: unset !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap .p-datatable-wrapper { overflow: unset !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) th .p-column-title { color: rgb(0, 0, 0) !important; }\n  html.honeywell-dark-theme body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .heatmap-datatable-reference { display: block !important; height: unset !important; }\n}\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 { background-color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .print-header { margin-bottom: 1rem; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .print-header > div { break-after: avoid; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .primary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: silver; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .secondary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-size: 1rem; line-height: 1.5rem; color: silver; font-weight: 700; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .no-print { display: none !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .ql-toolbar, html.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .tile-actions, html.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .not-ok-error-state, html.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .react-resizable-handle, html.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .action-panel, html.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .panel-overlay { display: none !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .react-grid-item { margin-top: 4mm; display: inline-block; position: unset !important; transform: unset !important; height: auto !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .react-grid-item > span { break-inside: avoid; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .react-grid-layout { height: unset !important; display: table; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .ui.raised.card.custom-display-card { border: none !important; box-shadow: none !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .rich-text .ql-container { border: none !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container.v1 .preview { display: block !important; flex: unset !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) { background-color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) * { color: rgb(0, 0, 0); letter-spacing: normal !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .print-header { margin-bottom: 1rem; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .print-header .header-row { display: flex; justify-content: space-between; align-items: baseline; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .print-header td { vertical-align: baseline; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .primary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: silver; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .secondary-title { font-weight: 700; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .created-title { font-style: italic; font-size: 0.75rem; text-align: right; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .no-print { display: none !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .ql-toolbar, html.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .tile-actions, html.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .not-ok-error-state, html.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .react-resizable-handle, html.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .action-panel, html.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .panel-overlay, html.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .chart-footer .view-dashboard-link, html.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .accordion-footer-link { display: none !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .react-grid-item { margin-top: 4mm; display: inline-block; position: unset !important; transform: unset !important; height: auto !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .react-grid-item > span { break-inside: avoid; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .react-grid-item:has(.p-datatable) { display: block !important; width: calc(100% - 64.252px) !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .react-grid-layout { height: unset !important; display: table; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .ui.card { border: none !important; box-shadow: none !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .ui.card .header, html.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .ui.card .content { padding-left: 0px !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .rich-text .ql-container { border: none !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .preview { display: block !important; flex: unset !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) thead { display: table-header-group; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap thead.p-datatable-thead > tr > th, html.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap tbody.p-datatable-tbody > tr td > .cell-data-wrap { padding-left: 0px !important; padding-right: 2.5mm !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap .p-datatable { display: block !important; height: unset !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap .p-datatable-wrapper { overflow: unset !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) th .p-column-title { color: rgb(0, 0, 0) !important; }\r\nhtml.honeywell-dark-theme body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .heatmap-datatable-reference { display: block !important; height: unset !important; }\r\nhtml.honeywell-dark-theme .export-word .custom-display-card:not(.print-v1) .custom-display-label > :not(.header) { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block !important; }\r\nhtml.honeywell-dark-theme .progress-widget { display: flex; flex-direction: column; max-height: 100%; height: 100%; }\r\nhtml.honeywell-dark-theme .relative-count-rating { flex-grow: 1; overflow: auto; padding-right: 0.75rem; }\r\nhtml.honeywell-dark-theme .relative-count-rating > div { line-height: 1.25rem; text-align: left; }\r\nhtml.honeywell-dark-theme .relative-count-rating > div:not(:first-child) { margin-top: 0.75rem; }\r\nhtml.honeywell-dark-theme .relative-count-rating table { width: 100%; }\r\nhtml.honeywell-dark-theme .relative-count-rating .column-series-name { padding-right: 0.5rem; font-size: 0.75rem; }\r\nhtml.honeywell-dark-theme .relative-count-rating .rating-category { display: flex; }\r\nhtml.honeywell-dark-theme .relative-count-rating .counts-wrapper { display: flex; align-items: center; }\r\nhtml.honeywell-dark-theme .relative-count-rating .category-bar { height: 0.25rem; }\r\nhtml.honeywell-dark-theme .relative-count-rating .total { padding-left: 0.75rem; font-weight: 700; font-size: 1rem; }\r\nhtml.honeywell-dark-theme .relative-count-rating-tooltip td { padding: 0.25rem; }\r\nhtml.honeywell-dark-theme .relative-count-rating-tooltip .category-count-indicator { height: 1rem; width: 4px; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content { margin-left: 1.5rem; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content:first-of-type { padding-left: 0.5rem; margin-left: 0px; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content i { vertical-align: text-bottom; padding-right: 0.5rem; cursor: pointer; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .leaf-node { margin-left: 1.5rem; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .leaf-node i { display: none; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .selectable-tree-item { display: flex; flex-flow: column; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .selectable-tree-content:not(:first-of-type) > .selectable-tree-item > .selectable-tree-item-header span { color: silver; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .selectable-tree-item-header { display: flex; align-items: center; padding-bottom: 0.5rem; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .selectable-tree-item-header .ui.checkbox { margin: 0px; flex-shrink: 0; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .selectable-tree-item-header .badge { margin-right: 0px; margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .selectable-tree-item-header span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .selectable-tree-item-header .select-all { margin-left: 1.5rem; }\r\nhtml.honeywell-dark-theme .publish-row .selectable-tree-content .selectable-tree-item-header .select-all:hover { cursor: pointer; text-decoration: underline; }\r\n@keyframes table-shimmer { \n  0% { background-position: -100% center; }\n  100% { background-position: 200% center; }\n}\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)) > .content { height: calc(100% - 3rem); display: flex; }\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).widget > .content { max-height: 400px; min-height: 324px; }\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).not-ok-state.dashboard > .content { min-height: 150px; }\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).dashboard.add-widget > .content { display: flex; flex-flow: row; align-items: center; align-self: center; }\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)) iframe { border: none; }\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).dashboard:not(.richText-card) .custom-display-label { min-height: 36px; }\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).richText-card .custom-display-label, html:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).richText-card .chart-footer .view-dashboard-link { padding: 0.5rem 0.5rem 0px; }\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).richText-card > .content { padding: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).frame-card .custom-display-label, html:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).frame-card .chart-footer .view-dashboard-link { padding: 0.75rem 1rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.card.custom-display-card:not(.printing:has(.p-datatable)).frame-card > .content { padding: 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-preview .react-resizable-hide .react-resizable-handle { display: none; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer { display: flex; flex: 1 0 auto; height: 100%; flex-flow: column; position: relative; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.single-input .input-wrap input.input-box, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.single-input .input-wrap input.input-box { color: rgb(96, 96, 96); height: 2.5rem; background-color: rgb(240, 240, 240) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.single-input.disabled .input-wrap input.input-box, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.single-input.readonly .input-wrap input.input-box, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.single-input.focused .input-wrap input.input-box, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(240, 240, 240); color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper .ui.dropdown, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(240, 240, 240); height: 2.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper .ui.dropdown .text, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper .ui.dropdown.active, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(240, 240, 240); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper .ui.dropdown.active .text, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper.disabled .ui.dropdown, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper.readonly .ui.dropdown, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .scuf-textarea-wrapper textarea, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .scuf-textarea-wrapper textarea { background-color: rgb(240, 240, 240); color: rgb(96, 96, 96); resize: none; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .scuf-textarea-wrapper textarea:disabled, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .scuf-textarea-wrapper textarea:disabled { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .scuf-textarea-wrapper.readonly textarea, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .scuf-textarea-wrapper.readonly textarea { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.input-label .input-label-message, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.input-label .input-label-message { color: rgb(48, 48, 48); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.scuf-dropdown-wrapper > .ui.multiple.selection.dropdown > .label, html:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.scuf-dropdown-wrapper > .ui.multiple.selection.dropdown > .label { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-preview { height: 100%; overflow: auto; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-preview .ui.secondary.menu { margin: 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .react-grid-item.react-grid-placeholder { background: rgb(0, 102, 255); z-index: 1; opacity: 0.35; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .react-grid-item.react-draggable-dragging { border: 0.0625rem solid rgb(18, 116, 183); opacity: 0.7; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .react-grid-item.react-draggable-dragging .move-icon { cursor: grabbing; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .react-grid-item.react-draggable { cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .react-resizable-handle::after { border-color: rgb(48, 48, 48); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-title-input.single-input { padding: 0px 0.75rem; line-height: 0; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-title-input.single-input .input-wrap, html:not(.honeywell-dark-theme) .dashboard-composer .dashboard-title-input.single-input .input-wrap input.input-box { background-color: rgba(0, 0, 0, 0) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-title-input.single-input .input-wrap input.input-box { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: rgb(48, 48, 48); padding: 0.75rem; height: 56px !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-title-input.single-input .input-wrap input.input-box::placeholder { font-size: 1.625rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .floating-panel { top: 6.25rem; height: calc(100% - 6.25rem); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .ui.single-input.dashboard-title-input .input-wrap input.input-box { background-color: rgb(240, 240, 240) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer > :not(:last-child):not(.Toastify) { margin-bottom: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-content { display: flex; flex-flow: row; flex-grow: 1; min-height: 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-content > :not(:last-child) { margin-right: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header { display: flex; align-items: center; background-color: rgb(255, 255, 255); padding: 1.5rem 1.5rem 0.25rem; z-index: 3; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .toolbar { display: flex; flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .toolbar > .toolbar-icon:not(:last-of-type) { margin-right: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header > :not(:last-child):not(.toolbar) { margin-right: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header > :not(.header-name-input) { padding-bottom: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .ui.single-input { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .toolbar-icon { color: rgb(48, 48, 48); transition: color 0.1s linear; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .toolbar-icon:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .toolbar-icon:active { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .toolbar-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .header-dashboard-title { flex-shrink: 0; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .header-dashboard-title .badge { margin-left: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .composer-header .header-name-input .below-text { margin: 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .preview { display: flex; flex-flow: column; width: 0px; flex: 1 1 75%; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .ui.card.custom-display-card { border: 0.0625rem solid rgba(0, 0, 0, 0) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .ui.card.custom-display-card.active { border-color: rgb(18, 116, 183) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .preview-content { display: flex; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .preview-content.widget { width: 50%; min-width: 400px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel { min-width: 300px; flex-basis: 25%; background-color: rgb(255, 255, 255); color: rgb(48, 48, 48); display: flex; flex-flow: column; position: relative; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel > div:first-child { display: flex; flex-flow: column; flex-grow: 1; overflow: hidden; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .action-panel-tab { display: flex; align-self: center; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .action-panel-footer { display: flex; align-self: flex-end; padding: 1rem; flex-direction: column; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .action-panel-footer .info-wrapper { text-align: left; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .action-panel-footer .button { align-self: flex-end; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .back-to-properties { position: absolute; padding-left: 1rem; width: 100%; height: 45px; background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane { display: flex; flex-flow: column; min-height: 0px; flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content { margin: 0px 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .single-input, html:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .scuf-dropdown-wrapper, html:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .chip-container, html:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-list-container { padding-bottom: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .scuf-dropdown-wrapper .multiple.dropdown { height: unset; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-accordion { border: none; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-accordion > div > div.content { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-accordion > div > div.title { padding: 0.75rem 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-accordion > .hide { display: none; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .data-type-dropdown { display: flex; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-window { border: 0.0625rem solid rgb(208, 208, 208); padding: 0.75rem 0.75rem 0px; margin-bottom: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container { display: flex; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .menu { margin: 0px; min-height: 0px; overflow-x: auto; scrollbar-width: none; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .menu::-webkit-scrollbar { display: none; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .menu .item { margin-left: 0px; padding-top: 6px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .menu .badge { margin-left: 0px; background-color: rgba(0, 0, 0, 0) !important; border-color: rgba(0, 0, 0, 0) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-left, html:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-right { height: 22px; margin-top: 6px; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-left::before, html:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-right::before { vertical-align: middle; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-left { margin-right: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container .slide-right { margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container.disable-left .slide-left { color: rgb(96, 96, 96); pointer-events: none; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .tabbed-property-container.disable-right .slide-right { color: rgb(96, 96, 96); pointer-events: none; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .datasource-filter-icon { margin-left: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .datasource-filter-icon i { line-height: 40px; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .secondary-charts-table { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .secondary-charts-table td { padding-bottom: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .secondary-charts-table td.action-column { width: 54px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .widget-property-metric { display: flex; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .metric-color { margin-top: auto; margin-bottom: 1.25rem; margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .color-picker-wrapper { position: relative; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .color-picker-wrapper .color-picker-display-color { width: 25px; height: 25px; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .color-picker-wrapper .color-picker { right: -5px; top: 2.5rem; z-index: 2; position: absolute !important; background-color: rgb(255, 255, 255) !important; border-color: rgb(208, 208, 208) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .color-picker-wrapper .color-picker div { border-bottom-color: rgb(208, 208, 208) !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .reference-lines-property-toggle.checked { margin-bottom: 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 0.875rem; background: rgb(247, 247, 247); border: 0.0625rem solid rgb(208, 208, 208); border-radius: 0px; color: rgb(48, 48, 48); transition: border-color 150ms ease-in; box-sizing: border-box; padding: 0.6875rem 0.4375rem; margin-bottom: 0.75rem; line-height: 1rem; overflow: hidden; height: 100px; }\r\n@media (-ms-high-contrast: none), (-ms-high-contrast: active) {\n  html:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables { line-height: 0.875rem !important; }\n}\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables:focus { border-color: rgb(18, 116, 183); outline: none; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables::-webkit-input-placeholder { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 0.875rem; line-height: 1.375rem; color: rgb(96, 96, 96); font-style: italic; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables:focus::-webkit-input-placeholder { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 0.875rem; line-height: 1.375rem; color: rgb(96, 96, 96); font-style: italic; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables.error { border-color: rgb(190, 39, 28); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables:empty::before { content: attr(data-placeholder); font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 0.875rem; color: rgb(96, 96, 96); font-style: italic; line-height: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .input-with-variables span.placeholder { font-weight: bold; font-style: italic; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-url-embed-button { margin-left: auto; display: block; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .properties-url-date-format .input-label { display: inline-block; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .close-tab-icon { vertical-align: unset; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .properties-tab-pane .properties-tab-content .checkbox-with-info .checkbox { margin-right: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .publish-tab-pane { display: flex; flex-flow: column; min-height: 0px; flex-grow: 1; margin: 0px 1.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .publish-tab-pane .publish-row { margin: 0.5rem 0px 0px; display: flex; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .publish-tab-pane .publish-row .checkbox { padding: 0px 0px 0.75rem; margin: 0px 0.25rem 0px 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .publish-tab-pane .publish-location-dropdown { padding-bottom: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .publish-tab-pane .publish-toggle-label { padding-left: 0px; font-size: 0.875rem; line-height: 18px; color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .search-wrap { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .search-wrap .ui.icon.input { min-width: auto !important; width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .search-wrap .ui.icon.input input { min-height: 2.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .search-wrap .results { display: none !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .search-wrap .search-icon { height: 2.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .search-wrap .publish-search-box { padding-bottom: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.toggle.checkbox label::before, html:not(.honeywell-dark-theme) .dashboard-composer .action-panel .ui.toggle.checkbox label::after { z-index: 1; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .selectable-tree-content { width: calc(100% - 1rem); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .selectable-tree-content:first-of-type { margin-left: 0px; padding-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-composer-filter { display: flex; flex-flow: column; flex-grow: 1; max-height: unset; padding-right: 0px; padding-top: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-composer-filter > * { display: flex; flex-flow: column; flex-grow: 1; overflow: auto; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-composer-filter .FilterControls__filterControlContainer { max-height: unset !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-composer-filter .FilterControls__filterControlContainer::-webkit-scrollbar { width: 10px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-composer-filter .FilterControls__filterControlCloseIcon { align-self: center; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-composer-filter .close-icon { margin: unset; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-composer-filter .FilterControls__filterControlsHeader { padding-right: 24px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .dashboard-composer-filter .FilterAccordion__filterAccordionWrapper > div > div > div.title { font-weight: unset; letter-spacing: unset; color: rgb(64, 64, 64); padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; font-size: 0.875rem !important; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .properties-action { color: rgb(48, 48, 48); transition: color 0.1s linear; cursor: pointer; user-select: none; display: flex; align-items: center; margin-bottom: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .properties-action:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .properties-action:active { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .properties-action.disabled { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .properties-action > :not(:last-child) { margin-right: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .chip-container { display: flex; flex-flow: wrap; font-size: 0.75rem; color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .chip-container > .chip:not(:last-child) { margin-right: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .no-chip { margin: 2px 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .chip { display: flex; align-items: center; padding: 0px 0.75rem; margin: 2px 0px; outline: rgb(208, 208, 208) solid 0.0625rem; box-sizing: border-box; border-radius: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .chip-close-icon { margin-left: 0.25rem; vertical-align: unset; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-tabs { display: flex; flex-grow: 1; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-tabs > * { margin: 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-tabs .properties-action { padding-top: 2px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-tabs .properties-action:not(.scuf-tab + .properties-action) { margin-left: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-tabs .properties-action + .ui.secondary.menu.scuf-tab { margin-left: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-tabs .ui.secondary.menu.scuf-tab:first-child { margin-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-tabs .ui.secondary.menu.scuf-tab .item { cursor: unset; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-tabs .ui.secondary.menu.scuf-tab .item > * { cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-tabs .delete-view-level-icon { margin-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-header { display: flex; align-items: center; height: 3rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-header .ui.toggle.checkbox { padding-top: calc(2px + 0.25rem); margin-bottom: 0px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-header .info-wrapper { padding-top: 2px; margin-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer .view-level-header .info-wrapper i { color: rgb(243, 112, 33); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer-notification-container .ui.notification.important { border-color: rgb(241, 90, 79); }\r\nhtml:not(.honeywell-dark-theme) .dashboard-composer-notification-container .ui.notification.important .icon .h-icon { color: rgb(241, 90, 79); }\r\nhtml:not(.honeywell-dark-theme) .properties-url-date-format-info-tooltip { white-space: pre-wrap; }\r\nhtml:not(.honeywell-dark-theme) .properties-url-date-format-info-tooltip > .content { width: 320px; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .scrolling.content { max-height: unset; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .open-card .header { padding-right: 0px; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .open-card .header .header-content { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .open-card .header .header-content .close-icon { margin-left: auto; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .open-card .open-card-content { min-height: 50vh; display: flex; flex-flow: column; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable { display: flex; flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable > .p-datatable-scrollable { display: flex; flex-flow: column; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-header { flex-shrink: 0; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-wrapper { height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-view { height: 100%; display: flex; flex-flow: column; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-header { flex-shrink: 0; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-body { height: 100%; overflow: hidden auto; max-height: 100% !important; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .forge-datatable-wrap.h-scrollable .p-datatable-scrollable-body-table { position: absolute; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .ui.forge-datatable-wrap .cell-data-wrap { display: flex; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .ui.forge-datatable-wrap .linked-indicator { margin-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .ui.forge-datatable-wrap .skeleton table { left: 0px; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .editable-action-icon, html:not(.honeywell-dark-theme) .properties-tab-pane .editable-action-icon { color: rgb(48, 48, 48); transition: color 0.1s linear; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .editable-action-icon:hover, html:not(.honeywell-dark-theme) .properties-tab-pane .editable-action-icon:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .editable-action-icon:active, html:not(.honeywell-dark-theme) .properties-tab-pane .editable-action-icon:active { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .editable-action-icon.disabled, html:not(.honeywell-dark-theme) .properties-tab-pane .editable-action-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dashboard-compose-modal-open .editable-action-icon:not(:first-child), html:not(.honeywell-dark-theme) .properties-tab-pane .editable-action-icon:not(:first-child) { margin-left: 1.2rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-tile-copy.popup.menu { box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px; margin: 0px; border: 0.0625rem solid rgb(208, 208, 208); overflow: hidden; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-tile-copy.popup.menu, html:not(.honeywell-dark-theme) .dashboard-tile-copy.popup.menu .ui.vertical.menu { width: 150px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-tile-copy.popup.menu.ui.menu, html:not(.honeywell-dark-theme) .dashboard-tile-copy.popup.menu .ui.menu { min-height: auto; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-tile-copy.popup.menu .vertical-menu .item::before { background: rgba(0, 0, 0, 0); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card { margin: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card .scuf-grid.custom-display-grid { margin: 0px; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card .scuf-grid.custom-display-grid > .scuf-grid, html:not(.honeywell-dark-theme) .custom-display-card .scuf-grid.custom-display-grid > .scuf-grid > .scuf-col { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card .tile-actions { display: flex; position: absolute; z-index: 2; right: 0px; padding: 0.75rem 1rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card .tile-actions .tile-action-icon { color: rgb(48, 48, 48); transition: color 0.1s linear; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card .tile-actions .tile-action-icon:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card .tile-actions .tile-action-icon:active { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card .tile-actions .tile-action-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card .tile-actions .move-icon { cursor: grab; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card .tile-actions > :not(:first-child) { margin-left: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) { height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) > .content { flex-flow: column; text-align: center; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) > .content .kanban-panel-container-v2 { text-align: initial; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .highcharts-root { height: 100%; overflow: visible !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .scuf-grid.custom-display-grid { height: 0px; flex-basis: 100%; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .scuf-grid.custom-display-grid > .scuf-grid, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .scuf-grid.custom-display-grid > .scuf-grid > .scuf-col { height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-description { text-align: left; color: rgb(96, 96, 96); flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-description.old { text-align: center; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-description.old > div { padding-top: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper { height: 100%; display: flex; flex-direction: column; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart { flex-basis: 100%; height: 0px; overflow: visible !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .center-block { font-size: 2.5rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .center-block .donut-value { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; color: rgb(48, 48, 48); font-weight: 700; font-size: inherit; padding-bottom: 0.25em; line-height: 1em; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .center-block .donut-value:last-child { padding-bottom: 0px; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .donut-label { font-size: 0.75rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; line-height: 1.125rem; color: rgb(96, 96, 96); font-weight: 700; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap { height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable { height: 100%; display: flex; flex-direction: column; overflow-y: hidden; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable .p-datatable-scrollable-wrapper { height: 100%; overflow-y: hidden; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable .p-datatable-scrollable-wrapper .p-datatable-scrollable-view { height: 100%; display: flex; flex-direction: column; overflow-y: hidden; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable .p-datatable-scrollable-wrapper .p-datatable-scrollable-view .p-datatable-scrollable-body { height: 100%; overflow-x: hidden; max-height: 100% !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .ui.forge-datatable-wrap .p-datatable-virtual-scrollable .p-datatable-scrollable-wrapper .p-datatable-scrollable-view .p-datatable-scrollable-body .cell-data-wrap { text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text-wrapper { height: 100%; display: flex; flex-direction: column; text-align: left; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text-wrapper .below-text { min-height: 0px; margin-bottom: 0px; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text { height: 0px; flex: 1 1 0%; display: flex; flex-direction: column; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-container { flex-basis: 100%; height: 0px; border-top: 1px solid; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-editor { padding: 0.5rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-editor img { height: unset; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text.focus .ql-container { border-color: rgb(18, 116, 183); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text.error .ql-container { border-color: rgb(190, 39, 28); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-disabled { border: none; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-container { border-color: rgb(208, 208, 208); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-picker.ql-expanded .ql-picker-label { border-color: rgb(208, 208, 208); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-tooltip, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-picker-options { background-color: rgb(255, 255, 255); border-color: rgb(208, 208, 208); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar { padding: 0.25rem 2rem 0.25rem 0.25rem; border-bottom: none; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button .ql-stroke, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label .ql-stroke, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item .ql-stroke { stroke: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button .ql-fill, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label .ql-fill, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item .ql-fill { fill: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button:hover, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label:hover, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button:hover .ql-stroke, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label:hover .ql-stroke, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item:hover .ql-stroke { stroke: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button:hover .ql-fill, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label:hover .ql-fill, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item:hover .ql-fill { fill: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button.ql-active, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label.ql-active, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item.ql-active { color: rgb(48, 48, 48); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button.ql-active .ql-stroke, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label.ql-active .ql-stroke, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item.ql-active .ql-stroke { stroke: rgb(48, 48, 48); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar button.ql-active .ql-fill, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-label.ql-active .ql-fill, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .rich-text .ql-toolbar .ql-picker-item.ql-active .ql-fill { fill: rgb(48, 48, 48); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend .highcharts-legend-item { cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend .highcharts-legend-item rect { width: 4px; height: 20px; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend .highcharts-legend-item span { line-height: 20px; font-size: 0.75rem !important; font-weight: 300 !important; top: 4px !important; left: 12px !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend .highcharts-legend-navigation { fill: rgb(48, 48, 48); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend path.highcharts-legend-nav-active { fill: rgb(18, 116, 183); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend path.highcharts-legend-nav-inactive { fill: rgb(160, 160, 160); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-legend-box { height: 20px; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart.legend-styles .highcharts-data-labels { font-size: 0.875rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content { padding: 10px 20px; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content .tooltip-value { font-size: 1rem !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content .legend { margin: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content .legend .label-color { vertical-align: middle; position: relative; display: inline-block; width: 0.125rem; height: 1.25rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .tooltip-content .legend .label-text { margin-left: 0.5rem; vertical-align: middle; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart:not(.custom-gauge) .highcharts-yaxis-grid path { stroke: silver; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart:not(.custom-gauge) .highcharts-xaxis path { stroke: rgb(160, 160, 160); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .table-widget, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .heatmap-widget { text-align: left; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .custom-display-chart .heatmap-widget { height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .chart-footer { display: flex; align-items: center; align-self: flex-end; width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .view-dashboard-link { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; cursor: pointer; text-transform: uppercase; font-weight: 700; font-size: 14px; color: rgb(0, 94, 172); flex-shrink: 0; padding-left: 0.5rem; padding-top: 0.5rem; margin-left: auto; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .view-dashboard-link:hover, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .view-dashboard-link:active { text-decoration: underline; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .frame-preview { display: flex; height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .frame-preview > div { width: 100%; margin: auto 1rem; overflow-wrap: anywhere; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .frame-preview > div .frame-preview-button { display: block; margin: 1rem auto; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .forge-datatable-wrap .p-datatable-scrollable-header { flex-shrink: 0; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .ui.forge-datatable-wrap .p-datatable table th, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .ui.forge-datatable-wrap .p-datatable table td .cell-data-wrap { padding-left: 1rem; padding-right: 0.5rem; white-space: pre !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .chart-wrapper .ui.forge-datatable-wrap .p-datatable table .cell-data-wrap .disabled { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list { margin-left: 1rem; height: 100%; text-align: left; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries { overflow-y: auto; margin-top: 0.75rem !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries .scuf-grid { flex-wrap: nowrap; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries .item .content { padding: 0px; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries .item .content .accordion-item { padding: 0px 0.3rem 0.6rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .custom-accordion-legend.accordion-list .accordion-entries .item .content .accordion-item [class^=\"accordion-item-marker\"] { border-width: 0.125rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action { display: flex; align-items: center; color: rgb(48, 48, 48); transition: color 0.1s linear; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action:active { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action.disabled { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action > i { margin-left: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .ui.forge-datatable-wrap .p-datatable .cell-with-action.linkable:hover { text-decoration: underline; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .statistic-widget, html:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .gauge-widget { overflow: clip auto; height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .statistic-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); row-gap: 1.5rem; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .statistic-single-wrapper { text-align: left; overflow: hidden; margin-right: 1rem; container: statistic / inline-size; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .statistic-label { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; color: rgb(96, 96, 96); font-weight: 300; padding-bottom: 0.25rem; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; line-height: normal; font-size: clamp(0.75em, 2cqi + 0.75em, 1em); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .statistic-value { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; color: rgb(48, 48, 48); font-weight: 700; padding-bottom: 0px; line-height: normal; font-size: clamp(1em, 4cqi + 1em, 2em); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .gauge-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .gauge-chart { aspect-ratio: 1 / 1; justify-self: center; width: 100%; min-width: 0px; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .gauge-chart .gauge-plotband-out-of-limit { fill: rgb(226, 226, 226); }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .gauge-chart .center-block { container: gauge-center-block / inline-size; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .gauge-chart .center-block .donut-value { font-size: 20cqi !important; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .gauge-legend { width: 100%; flex-shrink: 0; }\r\nhtml:not(.honeywell-dark-theme) .custom-display-card:not(.printing:has(.p-datatable)) .gauge-legend .highcharts-root { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .heatmap-tooltip td .disabled { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table { border-spacing: 0px; width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-header-label > div { display: inline-block; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-header-info { margin-left: 0.5em; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table th { text-align: left; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table td { padding: 0px 0px 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-remove-icon { color: rgb(48, 48, 48); transition: color 0.1s linear; cursor: pointer; line-height: 0; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-remove-icon:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-remove-icon:active { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-remove-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-row th:not(:first-child), html:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-row td:not(:first-child) { padding-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-row th .ui.single-input, html:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-row th .ui.scuf-dropdown-wrapper, html:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-row td .ui.single-input, html:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-row td .ui.scuf-dropdown-wrapper { padding: 0px; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-row th .ui.selection.dropdown.fluid, html:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .input-list-row td .ui.selection.dropdown.fluid { width: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table td.color, html:not(.honeywell-dark-theme) .properties-tab-content .input-list-table td.remove { width: 25px; }\r\nhtml:not(.honeywell-dark-theme) .properties-tab-content .input-list-table .ui.single-input .input-wrap input.input-box:disabled { background: rgb(255, 255, 255) !important; color: rgb(96, 96, 96) !important; cursor: default !important; }\r\nhtml:not(.honeywell-dark-theme) .input-list-add-item { color: rgb(48, 48, 48); transition: color 0.1s linear; cursor: pointer; display: flex; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) .input-list-add-item:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .input-list-add-item:active { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .input-list-add-item.disabled { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .input-list-add-item i { margin-right: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-preview.print { max-width: 1100px; }\r\nhtml:not(.honeywell-dark-theme) .dashboard-preview.print .react-grid-layout { width: 1100px; }\r\n@media screen {\n  html:not(.honeywell-dark-theme) .only-print { display: none !important; }\n}\r\n@media print {\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 { background-color: rgb(255, 255, 255); }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .print-header { margin-bottom: 1rem; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .print-header > div { break-after: avoid; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .primary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: rgb(64, 64, 64); }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .secondary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-size: 1rem; line-height: 1.5rem; color: rgb(64, 64, 64); font-weight: 700; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .no-print { display: none !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .ql-toolbar, html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .tile-actions, html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .not-ok-error-state, html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .react-resizable-handle, html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .action-panel, html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .panel-overlay { display: none !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .react-grid-item { margin-top: 4mm; display: inline-block; position: unset !important; transform: unset !important; height: auto !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .react-grid-item > span { break-inside: avoid; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .react-grid-layout { height: unset !important; display: table; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .ui.raised.card.custom-display-card { border: none !important; box-shadow: none !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .rich-text .ql-container { border: none !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container.v1 .preview { display: block !important; flex: unset !important; }\n  html:not(.honeywell-dark-theme) .custom-display-card:not(.print-v1) .custom-display-label > :not(.header) { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) { background-color: rgb(255, 255, 255); }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) * { color: rgb(0, 0, 0); letter-spacing: normal !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .print-header { margin-bottom: 1rem; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .print-header .header-row { display: flex; justify-content: space-between; align-items: baseline; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .print-header td { vertical-align: baseline; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .primary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: rgb(64, 64, 64); }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .secondary-title { font-weight: 700; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .created-title { font-style: italic; font-size: 0.75rem; text-align: right; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .no-print { display: none !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .ql-toolbar, html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .tile-actions, html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .not-ok-error-state, html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .react-resizable-handle, html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .action-panel, html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .panel-overlay, html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .chart-footer .view-dashboard-link, html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .accordion-footer-link { display: none !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .react-grid-item { margin-top: 4mm; display: inline-block; position: unset !important; transform: unset !important; height: auto !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .react-grid-item > span { break-inside: avoid; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .react-grid-item:has(.p-datatable) { display: block !important; width: calc(100% - 64.252px) !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .react-grid-layout { height: unset !important; display: table; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .ui.card { border: none !important; box-shadow: none !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .ui.card .header, html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .ui.card .content { padding-left: 0px !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .rich-text .ql-container { border: none !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .preview { display: block !important; flex: unset !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) thead { display: table-header-group; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap thead.p-datatable-thead > tr > th, html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap tbody.p-datatable-tbody > tr td > .cell-data-wrap { padding-left: 0px !important; padding-right: 2.5mm !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap .p-datatable { display: block !important; height: unset !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap .p-datatable-wrapper { overflow: unset !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) th .p-column-title { color: rgb(0, 0, 0) !important; }\n  html:not(.honeywell-dark-theme) body.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .heatmap-datatable-reference { display: block !important; height: unset !important; }\n}\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .print-header { margin-bottom: 1rem; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .print-header > div { break-after: avoid; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .primary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .secondary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-size: 1rem; line-height: 1.5rem; color: rgb(64, 64, 64); font-weight: 700; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .no-print { display: none !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .ql-toolbar, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .tile-actions, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .not-ok-error-state, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .react-resizable-handle, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .action-panel, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .panel-overlay { display: none !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .react-grid-item { margin-top: 4mm; display: inline-block; position: unset !important; transform: unset !important; height: auto !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .react-grid-item > span { break-inside: avoid; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .react-grid-layout { height: unset !important; display: table; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .ui.raised.card.custom-display-card { border: none !important; box-shadow: none !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .rich-text .ql-container { border: none !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container.v1 .preview { display: block !important; flex: unset !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) * { color: rgb(0, 0, 0); letter-spacing: normal !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .print-header { margin-bottom: 1rem; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .print-header .header-row { display: flex; justify-content: space-between; align-items: baseline; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .print-header td { vertical-align: baseline; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .primary-title { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; letter-spacing: 0px; font-weight: 400; font-size: 1.625rem; line-height: 2.125rem; color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .secondary-title { font-weight: 700; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .created-title { font-style: italic; font-size: 0.75rem; text-align: right; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .no-print { display: none !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .ql-toolbar, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .tile-actions, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .not-ok-error-state, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .react-resizable-handle, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .action-panel, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .panel-overlay, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .chart-footer .view-dashboard-link, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .accordion-footer-link { display: none !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .react-grid-item { margin-top: 4mm; display: inline-block; position: unset !important; transform: unset !important; height: auto !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .react-grid-item > span { break-inside: avoid; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .react-grid-item:has(.p-datatable) { display: block !important; width: calc(100% - 64.252px) !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .react-grid-layout { height: unset !important; display: table; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .ui.card { border: none !important; box-shadow: none !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .ui.card .header, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .ui.card .content { padding-left: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .rich-text .ql-container { border: none !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .preview { display: block !important; flex: unset !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) thead { display: table-header-group; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap thead.p-datatable-thead > tr > th, html:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap tbody.p-datatable-tbody > tr td > .cell-data-wrap { padding-left: 0px !important; padding-right: 2.5mm !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap .p-datatable { display: block !important; height: unset !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .ui.forge-datatable-wrap .p-datatable-wrapper { overflow: unset !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) th .p-column-title { color: rgb(0, 0, 0) !important; }\r\nhtml:not(.honeywell-dark-theme) body.export-word.insight-builder-print-container:not(.v1) .custom-display-chart:has(.p-datatable) .heatmap-datatable-reference { display: block !important; height: unset !important; }\r\nhtml:not(.honeywell-dark-theme) .export-word .custom-display-card:not(.print-v1) .custom-display-label > :not(.header) { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block !important; }\r\nhtml:not(.honeywell-dark-theme) .progress-widget { display: flex; flex-direction: column; max-height: 100%; height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating { flex-grow: 1; overflow: auto; padding-right: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating > div { line-height: 1.25rem; text-align: left; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating > div:not(:first-child) { margin-top: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating table { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating .column-series-name { padding-right: 0.5rem; font-size: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating .rating-category { display: flex; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating .counts-wrapper { display: flex; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating .category-bar { height: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating .total { padding-left: 0.75rem; font-weight: 700; font-size: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating-tooltip td { padding: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating-tooltip .category-count-indicator { height: 1rem; width: 4px; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content { margin-left: 1.5rem; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content:first-of-type { padding-left: 0.5rem; margin-left: 0px; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content i { vertical-align: text-bottom; padding-right: 0.5rem; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .leaf-node { margin-left: 1.5rem; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .leaf-node i { display: none; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .selectable-tree-item { display: flex; flex-flow: column; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .selectable-tree-content:not(:first-of-type) > .selectable-tree-item > .selectable-tree-item-header span { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .selectable-tree-item-header { display: flex; align-items: center; padding-bottom: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .selectable-tree-item-header .ui.checkbox { margin: 0px; flex-shrink: 0; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .selectable-tree-item-header .badge { margin-right: 0px; margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .selectable-tree-item-header span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .selectable-tree-item-header .select-all { margin-left: 1.5rem; }\r\nhtml:not(.honeywell-dark-theme) .publish-row .selectable-tree-content .selectable-tree-item-header .select-all:hover { cursor: pointer; text-decoration: underline; }\r\n</style><style id=\"react-to-print-7\">.ql-container { box-sizing: border-box; font-family: Helvetica, Arial, sans-serif; font-size: 13px; height: 100%; margin: 0px; position: relative; }\r\n.ql-container.ql-disabled .ql-tooltip { visibility: hidden; }\r\n.ql-container.ql-disabled .ql-editor ul[data-checked] > li::before { pointer-events: none; }\r\n.ql-clipboard { left: -100000px; height: 1px; overflow-y: hidden; position: absolute; top: 50%; }\r\n.ql-clipboard p { margin: 0px; padding: 0px; }\r\n.ql-editor { box-sizing: border-box; line-height: 1.42; height: 100%; outline: none; overflow-y: auto; padding: 12px 15px; tab-size: 4; text-align: left; white-space: pre-wrap; overflow-wrap: break-word; }\r\n.ql-editor > * { cursor: text; }\r\n.ql-editor p, .ql-editor ol, .ql-editor ul, .ql-editor pre, .ql-editor blockquote, .ql-editor h1, .ql-editor h2, .ql-editor h3, .ql-editor h4, .ql-editor h5, .ql-editor h6 { margin: 0px; padding: 0px; counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; }\r\n.ql-editor ol, .ql-editor ul { padding-left: 1.5em; }\r\n.ql-editor ol > li, .ql-editor ul > li { list-style-type: none; }\r\n.ql-editor ul > li::before { content: \"•\"; }\r\n.ql-editor ul[data-checked=\"true\"], .ql-editor ul[data-checked=\"false\"] { pointer-events: none; }\r\n.ql-editor ul[data-checked=\"true\"] > li *, .ql-editor ul[data-checked=\"false\"] > li * { pointer-events: all; }\r\n.ql-editor ul[data-checked=\"true\"] > li::before, .ql-editor ul[data-checked=\"false\"] > li::before { color: rgb(119, 119, 119); cursor: pointer; pointer-events: all; }\r\n.ql-editor ul[data-checked=\"true\"] > li::before { content: \"☑\"; }\r\n.ql-editor ul[data-checked=\"false\"] > li::before { content: \"☐\"; }\r\n.ql-editor li::before { display: inline-block; white-space: nowrap; width: 1.2em; }\r\n.ql-editor li:not(.ql-direction-rtl)::before { margin-left: -1.5em; margin-right: 0.3em; text-align: right; }\r\n.ql-editor li.ql-direction-rtl::before { margin-left: 0.3em; margin-right: -1.5em; }\r\n.ql-editor ol li:not(.ql-direction-rtl), .ql-editor ul li:not(.ql-direction-rtl) { padding-left: 1.5em; }\r\n.ql-editor ol li.ql-direction-rtl, .ql-editor ul li.ql-direction-rtl { padding-right: 1.5em; }\r\n.ql-editor ol li { counter-reset: list-1 0 list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; counter-increment: list-0 1; }\r\n.ql-editor ol li::before { content: counter(list-0) \". \"; }\r\n.ql-editor ol li.ql-indent-1 { counter-increment: list-1 1; }\r\n.ql-editor ol li.ql-indent-1::before { content: counter(list-1, lower-alpha) \". \"; }\r\n.ql-editor ol li.ql-indent-1 { counter-reset: list-2 0 list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; }\r\n.ql-editor ol li.ql-indent-2 { counter-increment: list-2 1; }\r\n.ql-editor ol li.ql-indent-2::before { content: counter(list-2, lower-roman) \". \"; }\r\n.ql-editor ol li.ql-indent-2 { counter-reset: list-3 0 list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; }\r\n.ql-editor ol li.ql-indent-3 { counter-increment: list-3 1; }\r\n.ql-editor ol li.ql-indent-3::before { content: counter(list-3) \". \"; }\r\n.ql-editor ol li.ql-indent-3 { counter-reset: list-4 0 list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; }\r\n.ql-editor ol li.ql-indent-4 { counter-increment: list-4 1; }\r\n.ql-editor ol li.ql-indent-4::before { content: counter(list-4, lower-alpha) \". \"; }\r\n.ql-editor ol li.ql-indent-4 { counter-reset: list-5 0 list-6 0 list-7 0 list-8 0 list-9 0; }\r\n.ql-editor ol li.ql-indent-5 { counter-increment: list-5 1; }\r\n.ql-editor ol li.ql-indent-5::before { content: counter(list-5, lower-roman) \". \"; }\r\n.ql-editor ol li.ql-indent-5 { counter-reset: list-6 0 list-7 0 list-8 0 list-9 0; }\r\n.ql-editor ol li.ql-indent-6 { counter-increment: list-6 1; }\r\n.ql-editor ol li.ql-indent-6::before { content: counter(list-6) \". \"; }\r\n.ql-editor ol li.ql-indent-6 { counter-reset: list-7 0 list-8 0 list-9 0; }\r\n.ql-editor ol li.ql-indent-7 { counter-increment: list-7 1; }\r\n.ql-editor ol li.ql-indent-7::before { content: counter(list-7, lower-alpha) \". \"; }\r\n.ql-editor ol li.ql-indent-7 { counter-reset: list-8 0 list-9 0; }\r\n.ql-editor ol li.ql-indent-8 { counter-increment: list-8 1; }\r\n.ql-editor ol li.ql-indent-8::before { content: counter(list-8, lower-roman) \". \"; }\r\n.ql-editor ol li.ql-indent-8 { counter-reset: list-9 0; }\r\n.ql-editor ol li.ql-indent-9 { counter-increment: list-9 1; }\r\n.ql-editor ol li.ql-indent-9::before { content: counter(list-9) \". \"; }\r\n.ql-editor .ql-indent-1:not(.ql-direction-rtl) { padding-left: 3em; }\r\n.ql-editor li.ql-indent-1:not(.ql-direction-rtl) { padding-left: 4.5em; }\r\n.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right { padding-right: 3em; }\r\n.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right { padding-right: 4.5em; }\r\n.ql-editor .ql-indent-2:not(.ql-direction-rtl) { padding-left: 6em; }\r\n.ql-editor li.ql-indent-2:not(.ql-direction-rtl) { padding-left: 7.5em; }\r\n.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right { padding-right: 6em; }\r\n.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right { padding-right: 7.5em; }\r\n.ql-editor .ql-indent-3:not(.ql-direction-rtl) { padding-left: 9em; }\r\n.ql-editor li.ql-indent-3:not(.ql-direction-rtl) { padding-left: 10.5em; }\r\n.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right { padding-right: 9em; }\r\n.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right { padding-right: 10.5em; }\r\n.ql-editor .ql-indent-4:not(.ql-direction-rtl) { padding-left: 12em; }\r\n.ql-editor li.ql-indent-4:not(.ql-direction-rtl) { padding-left: 13.5em; }\r\n.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right { padding-right: 12em; }\r\n.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right { padding-right: 13.5em; }\r\n.ql-editor .ql-indent-5:not(.ql-direction-rtl) { padding-left: 15em; }\r\n.ql-editor li.ql-indent-5:not(.ql-direction-rtl) { padding-left: 16.5em; }\r\n.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right { padding-right: 15em; }\r\n.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right { padding-right: 16.5em; }\r\n.ql-editor .ql-indent-6:not(.ql-direction-rtl) { padding-left: 18em; }\r\n.ql-editor li.ql-indent-6:not(.ql-direction-rtl) { padding-left: 19.5em; }\r\n.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right { padding-right: 18em; }\r\n.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right { padding-right: 19.5em; }\r\n.ql-editor .ql-indent-7:not(.ql-direction-rtl) { padding-left: 21em; }\r\n.ql-editor li.ql-indent-7:not(.ql-direction-rtl) { padding-left: 22.5em; }\r\n.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right { padding-right: 21em; }\r\n.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right { padding-right: 22.5em; }\r\n.ql-editor .ql-indent-8:not(.ql-direction-rtl) { padding-left: 24em; }\r\n.ql-editor li.ql-indent-8:not(.ql-direction-rtl) { padding-left: 25.5em; }\r\n.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right { padding-right: 24em; }\r\n.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right { padding-right: 25.5em; }\r\n.ql-editor .ql-indent-9:not(.ql-direction-rtl) { padding-left: 27em; }\r\n.ql-editor li.ql-indent-9:not(.ql-direction-rtl) { padding-left: 28.5em; }\r\n.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right { padding-right: 27em; }\r\n.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right { padding-right: 28.5em; }\r\n.ql-editor .ql-video { display: block; max-width: 100%; }\r\n.ql-editor .ql-video.ql-align-center { margin: 0px auto; }\r\n.ql-editor .ql-video.ql-align-right { margin: 0px 0px 0px auto; }\r\n.ql-editor .ql-bg-black { background-color: rgb(0, 0, 0); }\r\n.ql-editor .ql-bg-red { background-color: rgb(230, 0, 0); }\r\n.ql-editor .ql-bg-orange { background-color: rgb(255, 153, 0); }\r\n.ql-editor .ql-bg-yellow { background-color: rgb(255, 255, 0); }\r\n.ql-editor .ql-bg-green { background-color: rgb(0, 138, 0); }\r\n.ql-editor .ql-bg-blue { background-color: rgb(0, 102, 204); }\r\n.ql-editor .ql-bg-purple { background-color: rgb(153, 51, 255); }\r\n.ql-editor .ql-color-white { color: rgb(255, 255, 255); }\r\n.ql-editor .ql-color-red { color: rgb(230, 0, 0); }\r\n.ql-editor .ql-color-orange { color: rgb(255, 153, 0); }\r\n.ql-editor .ql-color-yellow { color: rgb(255, 255, 0); }\r\n.ql-editor .ql-color-green { color: rgb(0, 138, 0); }\r\n.ql-editor .ql-color-blue { color: rgb(0, 102, 204); }\r\n.ql-editor .ql-color-purple { color: rgb(153, 51, 255); }\r\n.ql-editor .ql-font-serif { font-family: Georgia, \"Times New Roman\", serif; }\r\n.ql-editor .ql-font-monospace { font-family: Monaco, \"Courier New\", monospace; }\r\n.ql-editor .ql-size-small { font-size: 0.75em; }\r\n.ql-editor .ql-size-large { font-size: 1.5em; }\r\n.ql-editor .ql-size-huge { font-size: 2.5em; }\r\n.ql-editor .ql-direction-rtl { direction: rtl; text-align: inherit; }\r\n.ql-editor .ql-align-center { text-align: center; }\r\n.ql-editor .ql-align-justify { text-align: justify; }\r\n.ql-editor .ql-align-right { text-align: right; }\r\n.ql-editor.ql-blank::before { color: rgba(0, 0, 0, 0.6); content: attr(data-placeholder); font-style: italic; left: 15px; pointer-events: none; position: absolute; right: 15px; }\r\n.ql-snow.ql-toolbar::after, .ql-snow .ql-toolbar::after { clear: both; content: \"\"; display: table; }\r\n.ql-snow.ql-toolbar button, .ql-snow .ql-toolbar button { background: none; border: none; cursor: pointer; display: inline-block; float: left; height: 24px; padding: 3px 5px; width: 28px; }\r\n.ql-snow.ql-toolbar button svg, .ql-snow .ql-toolbar button svg { float: left; height: 100%; }\r\n.ql-snow.ql-toolbar button:active:hover, .ql-snow .ql-toolbar button:active:hover { outline: none; }\r\n.ql-snow.ql-toolbar input.ql-image[type=\"file\"], .ql-snow .ql-toolbar input.ql-image[type=\"file\"] { display: none; }\r\n.ql-snow.ql-toolbar button:hover, .ql-snow .ql-toolbar button:hover, .ql-snow.ql-toolbar button:focus, .ql-snow .ql-toolbar button:focus, .ql-snow.ql-toolbar button.ql-active, .ql-snow .ql-toolbar button.ql-active, .ql-snow.ql-toolbar .ql-picker-label:hover, .ql-snow .ql-toolbar .ql-picker-label:hover, .ql-snow.ql-toolbar .ql-picker-label.ql-active, .ql-snow .ql-toolbar .ql-picker-label.ql-active, .ql-snow.ql-toolbar .ql-picker-item:hover, .ql-snow .ql-toolbar .ql-picker-item:hover, .ql-snow.ql-toolbar .ql-picker-item.ql-selected, .ql-snow .ql-toolbar .ql-picker-item.ql-selected { color: rgb(0, 102, 204); }\r\n.ql-snow.ql-toolbar button:hover .ql-fill, .ql-snow .ql-toolbar button:hover .ql-fill, .ql-snow.ql-toolbar button:focus .ql-fill, .ql-snow .ql-toolbar button:focus .ql-fill, .ql-snow.ql-toolbar button.ql-active .ql-fill, .ql-snow .ql-toolbar button.ql-active .ql-fill, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill, .ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill, .ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill, .ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill, .ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill, .ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill, .ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill { fill: rgb(0, 102, 204); }\r\n.ql-snow.ql-toolbar button:hover .ql-stroke, .ql-snow .ql-toolbar button:hover .ql-stroke, .ql-snow.ql-toolbar button:focus .ql-stroke, .ql-snow .ql-toolbar button:focus .ql-stroke, .ql-snow.ql-toolbar button.ql-active .ql-stroke, .ql-snow .ql-toolbar button.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke, .ql-snow.ql-toolbar button:hover .ql-stroke-miter, .ql-snow .ql-toolbar button:hover .ql-stroke-miter, .ql-snow.ql-toolbar button:focus .ql-stroke-miter, .ql-snow .ql-toolbar button:focus .ql-stroke-miter, .ql-snow.ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar button.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter, .ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter, .ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter { stroke: rgb(0, 102, 204); }\r\n@media (pointer: coarse) {\n  .ql-snow.ql-toolbar button:hover:not(.ql-active), .ql-snow .ql-toolbar button:hover:not(.ql-active) { color: rgb(68, 68, 68); }\n  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill, .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill { fill: rgb(68, 68, 68); }\n  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke, .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter, .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter { stroke: rgb(68, 68, 68); }\n}\r\n.ql-snow { box-sizing: border-box; }\r\n.ql-snow * { box-sizing: border-box; }\r\n.ql-snow .ql-hidden { display: none; }\r\n.ql-snow .ql-out-bottom, .ql-snow .ql-out-top { visibility: hidden; }\r\n.ql-snow .ql-tooltip { position: absolute; transform: translateY(10px); }\r\n.ql-snow .ql-tooltip a { cursor: pointer; text-decoration: none; }\r\n.ql-snow .ql-tooltip.ql-flip { transform: translateY(-10px); }\r\n.ql-snow .ql-formats { display: inline-block; vertical-align: middle; }\r\n.ql-snow .ql-formats::after { clear: both; content: \"\"; display: table; }\r\n.ql-snow .ql-stroke { fill: none; stroke: rgb(68, 68, 68); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }\r\n.ql-snow .ql-stroke-miter { fill: none; stroke: rgb(68, 68, 68); stroke-miterlimit: 10; stroke-width: 2; }\r\n.ql-snow .ql-fill, .ql-snow .ql-stroke.ql-fill { fill: rgb(68, 68, 68); }\r\n.ql-snow .ql-empty { fill: none; }\r\n.ql-snow .ql-even { fill-rule: evenodd; }\r\n.ql-snow .ql-thin, .ql-snow .ql-stroke.ql-thin { stroke-width: 1; }\r\n.ql-snow .ql-transparent { opacity: 0.4; }\r\n.ql-snow .ql-direction svg:last-child { display: none; }\r\n.ql-snow .ql-direction.ql-active svg:last-child { display: inline; }\r\n.ql-snow .ql-direction.ql-active svg:first-child { display: none; }\r\n.ql-snow .ql-editor h1 { font-size: 2em; }\r\n.ql-snow .ql-editor h2 { font-size: 1.5em; }\r\n.ql-snow .ql-editor h3 { font-size: 1.17em; }\r\n.ql-snow .ql-editor h4 { font-size: 1em; }\r\n.ql-snow .ql-editor h5 { font-size: 0.83em; }\r\n.ql-snow .ql-editor h6 { font-size: 0.67em; }\r\n.ql-snow .ql-editor a { text-decoration: underline; }\r\n.ql-snow .ql-editor blockquote { border-left: 4px solid rgb(204, 204, 204); margin-bottom: 5px; margin-top: 5px; padding-left: 16px; }\r\n.ql-snow .ql-editor code, .ql-snow .ql-editor pre { background-color: rgb(240, 240, 240); border-radius: 3px; }\r\n.ql-snow .ql-editor pre { white-space: pre-wrap; margin-bottom: 5px; margin-top: 5px; padding: 5px 10px; }\r\n.ql-snow .ql-editor code { font-size: 85%; padding: 2px 4px; }\r\n.ql-snow .ql-editor pre.ql-syntax { background-color: rgb(35, 36, 31); color: rgb(248, 248, 242); overflow: visible; }\r\n.ql-snow .ql-editor img { max-width: 100%; }\r\n.ql-snow .ql-picker { color: rgb(68, 68, 68); display: inline-block; float: left; font-size: 14px; font-weight: 500; height: 24px; position: relative; vertical-align: middle; }\r\n.ql-snow .ql-picker-label { cursor: pointer; display: inline-block; height: 100%; padding-left: 8px; padding-right: 2px; position: relative; width: 100%; }\r\n.ql-snow .ql-picker-label::before { display: inline-block; line-height: 22px; }\r\n.ql-snow .ql-picker-options { background-color: rgb(255, 255, 255); display: none; min-width: 100%; padding: 4px 8px; position: absolute; white-space: nowrap; }\r\n.ql-snow .ql-picker-options .ql-picker-item { cursor: pointer; display: block; padding-bottom: 5px; padding-top: 5px; }\r\n.ql-snow .ql-picker.ql-expanded .ql-picker-label { color: rgb(204, 204, 204); z-index: 2; }\r\n.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill { fill: rgb(204, 204, 204); }\r\n.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke { stroke: rgb(204, 204, 204); }\r\n.ql-snow .ql-picker.ql-expanded .ql-picker-options { display: block; margin-top: -1px; top: 100%; z-index: 1; }\r\n.ql-snow .ql-color-picker, .ql-snow .ql-icon-picker { width: 28px; }\r\n.ql-snow .ql-color-picker .ql-picker-label, .ql-snow .ql-icon-picker .ql-picker-label { padding: 2px 4px; }\r\n.ql-snow .ql-color-picker .ql-picker-label svg, .ql-snow .ql-icon-picker .ql-picker-label svg { right: 4px; }\r\n.ql-snow .ql-icon-picker .ql-picker-options { padding: 4px 0px; }\r\n.ql-snow .ql-icon-picker .ql-picker-item { height: 24px; width: 24px; padding: 2px 4px; }\r\n.ql-snow .ql-color-picker .ql-picker-options { padding: 3px 5px; width: 152px; }\r\n.ql-snow .ql-color-picker .ql-picker-item { border: 1px solid transparent; float: left; height: 16px; margin: 2px; padding: 0px; width: 16px; }\r\n.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg { position: absolute; margin-top: -9px; right: 0px; top: 50%; width: 18px; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=\"\"])::before, .ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=\"\"])::before, .ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=\"\"])::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=\"\"])::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=\"\"])::before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=\"\"])::before { content: attr(data-label); }\r\n.ql-snow .ql-picker.ql-header { width: 98px; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-label::before, .ql-snow .ql-picker.ql-header .ql-picker-item::before { content: \"Normal\"; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"1\"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]::before { content: \"Heading 1\"; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"2\"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]::before { content: \"Heading 2\"; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"3\"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]::before { content: \"Heading 3\"; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"4\"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]::before { content: \"Heading 4\"; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"5\"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]::before { content: \"Heading 5\"; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-label[data-value=\"6\"]::before, .ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]::before { content: \"Heading 6\"; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"1\"]::before { font-size: 2em; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"2\"]::before { font-size: 1.5em; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"3\"]::before { font-size: 1.17em; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"4\"]::before { font-size: 1em; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"5\"]::before { font-size: 0.83em; }\r\n.ql-snow .ql-picker.ql-header .ql-picker-item[data-value=\"6\"]::before { font-size: 0.67em; }\r\n.ql-snow .ql-picker.ql-font { width: 108px; }\r\n.ql-snow .ql-picker.ql-font .ql-picker-label::before, .ql-snow .ql-picker.ql-font .ql-picker-item::before { content: \"Sans Serif\"; }\r\n.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=\"serif\"]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=\"serif\"]::before { content: \"Serif\"; }\r\n.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=\"monospace\"]::before, .ql-snow .ql-picker.ql-font .ql-picker-item[data-value=\"monospace\"]::before { content: \"Monospace\"; }\r\n.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=\"serif\"]::before { font-family: Georgia, \"Times New Roman\", serif; }\r\n.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=\"monospace\"]::before { font-family: Monaco, \"Courier New\", monospace; }\r\n.ql-snow .ql-picker.ql-size { width: 98px; }\r\n.ql-snow .ql-picker.ql-size .ql-picker-label::before, .ql-snow .ql-picker.ql-size .ql-picker-item::before { content: \"Normal\"; }\r\n.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=\"small\"]::before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=\"small\"]::before { content: \"Small\"; }\r\n.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=\"large\"]::before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=\"large\"]::before { content: \"Large\"; }\r\n.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=\"huge\"]::before, .ql-snow .ql-picker.ql-size .ql-picker-item[data-value=\"huge\"]::before { content: \"Huge\"; }\r\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=\"small\"]::before { font-size: 10px; }\r\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=\"large\"]::before { font-size: 18px; }\r\n.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=\"huge\"]::before { font-size: 32px; }\r\n.ql-snow .ql-color-picker.ql-background .ql-picker-item { background-color: rgb(255, 255, 255); }\r\n.ql-snow .ql-color-picker.ql-color .ql-picker-item { background-color: rgb(0, 0, 0); }\r\n.ql-toolbar.ql-snow { border: 1px solid rgb(204, 204, 204); box-sizing: border-box; font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif; padding: 8px; }\r\n.ql-toolbar.ql-snow .ql-formats { margin-right: 15px; }\r\n.ql-toolbar.ql-snow .ql-picker-label { border: 1px solid transparent; }\r\n.ql-toolbar.ql-snow .ql-picker-options { border: 1px solid transparent; box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px; }\r\n.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label { border-color: rgb(204, 204, 204); }\r\n.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options { border-color: rgb(204, 204, 204); }\r\n.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected, .ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover { border-color: rgb(0, 0, 0); }\r\n.ql-toolbar.ql-snow + .ql-container.ql-snow { border-top: 0px; }\r\n.ql-snow .ql-tooltip { background-color: rgb(255, 255, 255); border: 1px solid rgb(204, 204, 204); box-shadow: rgb(221, 221, 221) 0px 0px 5px; color: rgb(68, 68, 68); padding: 5px 12px; white-space: nowrap; }\r\n.ql-snow .ql-tooltip::before { content: \"Visit URL:\"; line-height: 26px; margin-right: 8px; }\r\n.ql-snow .ql-tooltip input[type=\"text\"] { display: none; border: 1px solid rgb(204, 204, 204); font-size: 13px; height: 26px; margin: 0px; padding: 3px 5px; width: 170px; }\r\n.ql-snow .ql-tooltip a.ql-preview { display: inline-block; max-width: 200px; overflow-x: hidden; text-overflow: ellipsis; vertical-align: top; }\r\n.ql-snow .ql-tooltip a.ql-action::after { border-right: 1px solid rgb(204, 204, 204); content: \"Edit\"; margin-left: 16px; padding-right: 8px; }\r\n.ql-snow .ql-tooltip a.ql-remove::before { content: \"Remove\"; margin-left: 8px; }\r\n.ql-snow .ql-tooltip a { line-height: 26px; }\r\n.ql-snow .ql-tooltip.ql-editing a.ql-preview, .ql-snow .ql-tooltip.ql-editing a.ql-remove { display: none; }\r\n.ql-snow .ql-tooltip.ql-editing input[type=\"text\"] { display: inline-block; }\r\n.ql-snow .ql-tooltip.ql-editing a.ql-action::after { border-right: 0px; content: \"Save\"; padding-right: 0px; }\r\n.ql-snow .ql-tooltip[data-mode=\"link\"]::before { content: \"Enter link:\"; }\r\n.ql-snow .ql-tooltip[data-mode=\"formula\"]::before { content: \"Enter formula:\"; }\r\n.ql-snow .ql-tooltip[data-mode=\"video\"]::before { content: \"Enter video:\"; }\r\n.ql-snow a { color: rgb(0, 102, 204); }\r\n.ql-container.ql-snow { border: 1px solid rgb(204, 204, 204); }\r\n</style><style id=\"react-to-print-8\">.iframe-component-container { position: relative; }\r\n.iframe-component-container iframe { border: none; }\r\n</style><link type=\"text/css\" rel=\"stylesheet\" href=\"blob:https://connectedbuilding-performance.dev.honeywellcloud.com/f8f4d5dd-8886-44fe-9cdc-4bce0009400e\"><link type=\"text/css\" rel=\"stylesheet\" href=\"blob:https://connectedbuilding-performance.dev.honeywellcloud.com/4e9ab9f3-8ecc-48b3-8ae8-185fa05d0cdc\"><link type=\"text/css\" rel=\"stylesheet\" href=\"blob:https://connectedbuilding-performance.dev.honeywellcloud.com/53f9434b-7fae-409b-a84a-74a14d0b4549\"><style id=\"react-to-print-12\"></style><style id=\"react-to-print-13\">.accordion.ui.fluid .title .h-icon { float: right; }\r\n.content img { vertical-align: middle; }\r\n</style><link rel=\"stylesheet\" type=\"text/css\" href=\"/static/css/13.f9cd9dc3.chunk.css\"><style id=\"react-to-print-15\">@keyframes alert-table-shimmer { \n  0% { background-position: -100% center; }\n  100% { background-position: 200% center; }\n}\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input { flex: 1 1 0px; width: 0%; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input div.ui.input-label .input-label-message { color: rgb(176, 176, 176); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .input-wrap input.input-box { color: rgb(255, 255, 255); font-size: 0.875rem; border-radius: 3px; height: 2.5rem; padding: 0px 0.69rem; background-color: rgb(32, 32, 32) !important; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .input-wrap input.input-box::-webkit-outer-spin-button, html.honeywell-dark-theme .ui.single-input.analog-property-input .input-wrap input.input-box::-webkit-inner-spin-button { appearance: none; margin: 0px; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .input-wrap input.input-box[type=\"number\"] { }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .input-wrap .icon-container { font-size: 0.875rem; color: rgb(255, 255, 255); line-height: 0; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .input-wrap .icon-container.disabled { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .input-wrap .icon-container .progress div { width: 0.75rem; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .input-wrap .icon-container .progress div .rc-progress-circle-path { stroke: rgb(224, 224, 224) !important; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .input-wrap .icon-control-success { color: rgb(126, 179, 56); }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input.disabled .input-wrap input.input-box { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input.readonly .input-wrap input.input-box { background-color: rgb(64, 64, 64) !important; color: rgb(255, 255, 255) !important; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input.focused .input-wrap input.input-box { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .input-icon { cursor: auto; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .below-text { display: block; line-height: 0; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message { display: inline-block; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator { position: relative; display: inline-block; left: 10px; margin-right: 1.5rem; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.undefined, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.not-set, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.undefined, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.not-set { color: rgb(241, 90, 79); left: 0px; margin-right: 0.875rem; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.info, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.info { left: 0px; margin-right: 0.875rem; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.mode-state::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.failed::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.error::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.bad::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.stale::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.mode-state::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.failed::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.error::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.bad::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.stale::after { background-color: rgb(23, 146, 229); width: 6px; height: 6px; border-radius: 50%; content: \"\"; display: block; position: absolute; top: 7px; left: -10px; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.error::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.failed::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.bad::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.error::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.failed::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.bad::after { background-color: rgb(241, 90, 79); }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.stale::after, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.stale::after { background-color: rgb(255, 198, 39); }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator .info-icon, html.honeywell-dark-theme .ui.single-input.analog-property-input .below-text .error-message .quality-indicator .info-icon { color: rgb(255, 255, 255); margin-left: 4px; }\r\nhtml.honeywell-dark-theme .ui.single-input.analog-property-input.error { padding: 0px !important; }\r\nhtml.honeywell-dark-theme .property-label-info { margin: 0px !important; }\r\nhtml.honeywell-dark-theme .property-label-info .popup-header { font-size: medium; padding: 1rem 1rem 0px !important; text-transform: none !important; }\r\nhtml.honeywell-dark-theme .property-label-info .popup-content-container { display: flex; align-items: center; width: 100% !important; padding: 0.5rem 1rem 1rem !important; }\r\nhtml.honeywell-dark-theme .property-label-info .popup-content-container .popup-content-span { color: rgb(224, 224, 224); overflow-wrap: break-word; border: none; resize: none; outline: 0px; font-size: 0.875rem; line-height: 1.2rem; background: rgba(0, 0, 0, 0) !important; width: 12rem !important; }\r\nhtml.honeywell-dark-theme .property-label-info .popup-content-container .popup-content-span::selection { background-color: rgba(0, 0, 0, 0); color: rgb(224, 224, 224); border: none !important; outline: 0px !important; outline-offset: 0px !important; transition: none !important; transform: none !important; }\r\nhtml.honeywell-dark-theme .property-label-info .popup-content-container span[data-iconid].popup-content-copy { align-self: flex-start; height: 2rem; width: 2rem; cursor: pointer; background: center center / cover no-repeat; }\r\nhtml.honeywell-dark-theme .property-label-info .popup-content-container span[data-iconid].popup-content-copy[data-iconid=\"copy\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3ctitle%3eCopy_Icon%3c/title%3e %3cg id='Copy_Icon' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='4.1-Properties-info-point-ID' transform='translate(-1450.000000, -250.000000)'%3e %3cg id='Group-7' transform='translate(1450.000000, 250.000000)'%3e %3crect id='Rectangle' fill='%23000000' opacity='0' x='0' y='0' width='24' height='24'%3e%3c/rect%3e %3cg id='Group-5' transform='translate(6.000000, 4.000000)' stroke='%23FFFFFF' stroke-width='1.2'%3e %3cg id='Group-3'%3e %3cpath d='M2.66666667,1.71357557 L2.66666667,1.71357557 L2.66666667,0.888888889 C2.66666667,0.397969111 3.06463578,0 3.55555556,0 L11.5555556,0 C12.0464753,0 12.4444444,0.397969111 12.4444444,0.888888889 L12.4444444,13.3333333 C12.4444444,13.8242531 12.0464753,14.2222222 11.5555556,14.2222222 L9.90058491,14.2222222 L9.90058491,14.2222222' id='Path'%3e%3c/path%3e %3cpath d='M1,1.77777778 L5.09885289,1.77777778 L5.09885289,1.77777778 L8.77777778,1.77777778 C9.33006253,1.77777778 9.77777778,2.22549303 9.77777778,2.77777778 L9.77777778,15 C9.77777778,15.5522847 9.33006253,16 8.77777778,16 L1,16 C0.44771525,16 1.49277938e-15,15.5522847 0,15 L0,2.77777778 C-6.76353751e-17,2.22549303 0.44771525,1.77777778 1,1.77777778 Z' id='Rectangle-Copy'%3e%3c/path%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme .property-label-info .popup-content-container span[data-iconid].popup-content-copy[data-iconid=\"tick\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3ctitle%3eTick_Icon%3c/title%3e %3cg id='Tick_Icon' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='4.1-Properties-info-point-ID' transform='translate(-1450.000000, -276.000000)'%3e %3cg id='Group-7' transform='translate(1450.000000, 276.000000)'%3e %3crect id='Rectangle' fill='%23000000' opacity='0' x='0' y='0' width='24' height='24'%3e%3c/rect%3e %3cpolyline id='Path-6' stroke='%23FFFFFF' stroke-width='1.2' points='6 12.1805691 9.77447842 15.9550475 17.729526 8'%3e%3c/polyline%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme .property-label-tooltip .content { word-break: break-all; }\r\nhtml.honeywell-dark-theme .control-container { display: flex; width: 100%; }\r\nhtml.honeywell-dark-theme .control-container .edit-confirmation-container { position: absolute; right: 0px; display: flex; flex-direction: row; }\r\nhtml.honeywell-dark-theme .control-container .edit-confirmation-container::after { width: 0.0625rem; height: 0.625rem; background-color: rgb(255, 255, 255); content: \"\"; display: block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }\r\nhtml.honeywell-dark-theme .control-container .edit-confirmation-container:hover::after { background-color: rgba(0, 0, 0, 0); }\r\nhtml.honeywell-dark-theme .control-container .edit-confirmation-container .confirmation-button { height: 1.375rem; padding: 0px 1rem; background-color: rgb(32, 32, 32); color: rgb(224, 224, 224); cursor: pointer; border-right: 0.0625rem solid rgba(0, 0, 0, 0); border-bottom: 0.0625rem solid rgba(0, 0, 0, 0); border-left: 0.0625rem solid rgba(0, 0, 0, 0); border-image: initial; border-top: none; width: 57px; }\r\nhtml.honeywell-dark-theme .control-container .edit-confirmation-container .confirmation-button:hover { background-color: rgb(32, 32, 32); border-right: 0.0625rem solid rgb(69, 167, 234); border-bottom: 0.0625rem solid rgb(69, 167, 234); border-left: 0.0625rem solid rgb(69, 167, 234); border-image: initial; border-top: none; }\r\nhtml.honeywell-dark-theme .control-container .edit-confirmation-container .confirmation-icon { color: rgb(255, 255, 255); font-weight: 700; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }\r\nhtml.honeywell-dark-theme .control-container .edit-confirmation-container .ui.button + .ui.button { margin-left: 0px; }\r\nhtml.honeywell-dark-theme .control-container .edit-confirmation-container.hide { display: none; }\r\nhtml.honeywell-dark-theme .control-container .relinquish-container { display: flex; flex: 0 0 1.75rem; align-items: center; height: 2.5rem; margin-top: 1.5rem; }\r\nhtml.honeywell-dark-theme .control-container .relinquish-container .relinquish { color: rgb(255, 255, 255); transition: color 0.1s linear; cursor: pointer; margin-left: 0.25rem; }\r\nhtml.honeywell-dark-theme .control-container .relinquish-container .relinquish:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .control-container .relinquish-container .relinquish:active { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .control-container .relinquish-container .relinquish.disabled { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .control-container .relinquish-container .relinquish.disabled { cursor: not-allowed; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input { flex: 1 1 0px; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input div.ui.input-label .input-label-message { color: rgb(176, 176, 176); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown { background-color: rgb(32, 32, 32); height: 2.5rem; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown i { font-size: 0.75rem !important; color: rgb(255, 255, 255) !important; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown.loading > i::before, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown.loading > i::after { display: none; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown.active { background-color: rgb(32, 32, 32); }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown.active .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input.disabled .ui.dropdown .chevron.down.icon, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input.readonly .ui.dropdown .chevron.down.icon { display: none; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input.disabled .ui.dropdown { background-color: rgb(96, 96, 96); }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input.disabled .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input.readonly .ui.dropdown { background-color: rgb(64, 64, 64); }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input.readonly .ui.dropdown .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text { display: block; line-height: 0; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message { display: inline-block; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator { position: relative; display: inline-block; left: 10px; margin-right: 1.5rem; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.undefined, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.not-set, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.undefined, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.not-set { color: rgb(241, 90, 79); left: 0px; margin-right: 0.875rem; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.info, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.info { left: 0px; margin-right: 0.875rem; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.mode-state::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.failed::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.error::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.bad::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.stale::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.mode-state::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.failed::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.error::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.bad::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.stale::after { background-color: rgb(23, 146, 229); width: 6px; height: 6px; border-radius: 50%; content: \"\"; display: block; position: absolute; top: 7px; left: -10px; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.error::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.failed::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.bad::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.error::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.failed::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.bad::after { background-color: rgb(241, 90, 79); }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.stale::after, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.stale::after { background-color: rgb(255, 198, 39); }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator .info-icon, html.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator .info-icon { color: rgb(255, 255, 255); margin-left: 4px; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input.error { padding: 0px !important; }\r\nhtml.honeywell-dark-theme .ui.scuf-dropdown-wrapper.property-digital-input.error .dropdown { border-color: rgb(241, 90, 79) !important; }\r\nhtml.honeywell-dark-theme .digital-property-container { display: flex; flex: 1 1 0%; width: 0%; position: relative; }\r\nhtml.honeywell-dark-theme .digital-property-container .icon-container { font-size: 0.875rem; color: rgb(255, 255, 255); line-height: 0; }\r\nhtml.honeywell-dark-theme .digital-property-container .icon-container.disabled { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .digital-property-container .icon-container .progress div { width: 0.75rem; }\r\nhtml.honeywell-dark-theme .digital-property-container .icon-container .progress div .rc-progress-circle-path { stroke: rgb(224, 224, 224) !important; }\r\nhtml.honeywell-dark-theme .digital-property-container .icon-control-success { color: rgb(126, 179, 56); }\r\nhtml.honeywell-dark-theme .digital-property-container .icon-container { right: 0.75rem; position: absolute; top: 2.375rem; z-index: 1; }\r\nhtml.honeywell-dark-theme .digital-property-container .icon-container.success { top: 2.25rem; }\r\nhtml.honeywell-dark-theme .digital-property-tooltip-not-defined-info { max-width: 212px !important; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay { position: fixed; display: flex; flex-direction: row-reverse; z-index: 1100; inset: 0px; height: 100%; width: 100%; background: rgba(32, 32, 32, 0.5); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay div.ui.input-label .input-label-message { color: rgb(176, 176, 176); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.single-input .input-wrap input.input-box { color: rgb(255, 255, 255); height: 2.5rem; background-color: rgb(32, 32, 32) !important; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(32, 32, 32); height: 2.5rem; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(32, 32, 32); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(96, 96, 96); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(64, 64, 64); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .scuf-textarea-wrapper textarea { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); resize: none; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .scuf-textarea-wrapper textarea:disabled { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .scuf-textarea-wrapper.readonly textarea { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .ui.input-label .input-label-message { color: rgb(176, 176, 176); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel { padding-bottom: 0px; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel [class~=\"scuf-grid\"][class~=\"col\"], html.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel [class~=\"scuf-grid\"][class*=\"col-\"], html.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel [class~=\"scuf-grid\"][class*=\"col_\"] { padding: 0px !important; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel [class~=\"col\"], html.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel [class*=\"col-\"], html.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel [class*=\"col_\"] { padding: 0px 0.5rem 1rem !important; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel [role=\"option\"].item { display: flex; align-items: center; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel [role=\"option\"].item [data-priority].priority-icon { height: 1rem; width: 1rem; background-size: cover; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel .acknowledgement-button { float: right; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel .grid-column-textarea { display: flex; flex-grow: 1; flex-basis: auto; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel .acknowledgement-note-textarea { flex-grow: 1; display: flex; flex-flow: column; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel .acknowledgement-note-textarea textarea { resize: none; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel .grid-description { flex-flow: column; flex-grow: 1; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel .grid-column-legal { flex-basis: auto; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel .grid-column-acknowledgement { flex-basis: auto; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel .panel-sub-header { margin-left: 10px; text-transform: none; color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-fields-content { overflow: auto; display: flex; flex-flow: column; flex-grow: 1; }\r\nhtml.honeywell-dark-theme .acknowledgement-panel.panel-overlay .acknowledgement-panel-loader-wrapper { position: relative; height: 100%; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay { position: fixed; display: flex; flex-direction: row-reverse; z-index: 1100; inset: 0px; height: 100%; width: 100%; background: rgba(32, 32, 32, 0.5); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay div.ui.input-label .input-label-message { color: rgb(176, 176, 176); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.single-input .input-wrap input.input-box { color: rgb(255, 255, 255); height: 2.5rem; background-color: rgb(32, 32, 32) !important; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(32, 32, 32); height: 2.5rem; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(32, 32, 32); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(96, 96, 96); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(64, 64, 64); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .scuf-textarea-wrapper textarea { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); resize: none; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .scuf-textarea-wrapper textarea:disabled { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .scuf-textarea-wrapper.readonly textarea { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .ui.input-label .input-label-message { color: rgb(176, 176, 176); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel { padding-bottom: 0px; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel [class~=\"scuf-grid\"][class~=\"col\"], html.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel [class~=\"scuf-grid\"][class*=\"col-\"], html.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel [class~=\"scuf-grid\"][class*=\"col_\"] { padding: 0px !important; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel [class~=\"col\"], html.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel [class*=\"col-\"], html.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel [class*=\"col_\"] { padding: 0px 0.5rem 1rem !important; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel [role=\"option\"].item { display: flex; align-items: center; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel [role=\"option\"].item [data-priority].priority-icon { height: 1rem; width: 1rem; background-size: cover; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel .alert-action-button { float: right; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel .grid-column-textarea { display: flex; flex-grow: 1; flex-basis: auto; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel .alert-action-note-textarea { flex-grow: 1; display: flex; flex-flow: column; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel .alert-action-note-textarea textarea { resize: none; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel .grid-description { flex-flow: column; flex-grow: 1; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel .grid-column-legal { flex-basis: auto; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel .grid-column-alert-action { flex-basis: auto; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel .panel-sub-header { margin-left: 10px; text-transform: none; color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-fields-content { overflow: auto; display: flex; flex-flow: column; flex-grow: 1; }\r\nhtml.honeywell-dark-theme .alert-action-panel.panel-overlay .alert-action-panel-loader-wrapper { position: relative; height: 100%; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container { padding: 8px 1rem 1rem; background-color: rgb(48, 48, 48); width: 100%; height: fit-content; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .dynamic-column-select { width: 100%; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .asset-table > .p-datatable-wrapper > table { min-width: 1200px; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table-checkbox-row div:first-child { padding: 0px !important; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .forge-datatable-wrap .alerts-table .p-datatable-scrollable-wrapper, html.honeywell-dark-theme #root .alert-dashboard-container .forge-datatable-wrap .asset-table .p-datatable-scrollable-wrapper { height: 100%; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .forge-datatable-wrap .alerts-table .p-datatable-scrollable-wrapper .p-datatable-scrollable-view, html.honeywell-dark-theme #root .alert-dashboard-container .forge-datatable-wrap .asset-table .p-datatable-scrollable-wrapper .p-datatable-scrollable-view { display: flex; flex-direction: column; height: 100%; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .forge-datatable-wrap .alerts-table .p-datatable-scrollable-wrapper .p-datatable-scrollable-view .p-datatable-scrollable-body, html.honeywell-dark-theme #root .alert-dashboard-container .forge-datatable-wrap .asset-table .p-datatable-scrollable-wrapper .p-datatable-scrollable-view .p-datatable-scrollable-body { overflow-y: auto; height: 100%; max-height: 100% !important; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox { position: static; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box { background: rgba(0, 0, 0, 0) !important; border: none !important; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon { font-family: Honeywell-Icons; font-size: 1rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon::before, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon::before { content: \"\" !important; color: rgb(224, 224, 224); }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon.pi-check::before, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon.pi-check::before { content: \"\" !important; color: rgb(224, 224, 224); }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody > tr.p-datatable-row.p-highlight, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody > tr.p-datatable-row.p-highlight { background-color: rgb(23, 146, 229) !important; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody > tr.p-datatable-row.p-highlight + tr:not(.p-datatable-row), html.honeywell-dark-theme #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody > tr.p-datatable-row.p-highlight + tr:not(.p-datatable-row) { border: 0.0625rem solid rgb(23, 146, 229); }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table table th:not(.perAssetAlertActions), html.honeywell-dark-theme #root .alert-dashboard-container .asset-table table th:not(.perAssetAlertActions) { padding-right: 0px; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table table tr.p-datatable-emptymessage td, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table table tr.p-datatable-emptymessage td { font-size: 1rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table table td, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table table td { position: unset; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table table td .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table table td .cell-data-wrap { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table table td:not(.perAssetAlertActions) .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table table td:not(.perAssetAlertActions) .cell-data-wrap { padding-right: 0px; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .asset-table-alert-count-column .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .asset-table-alert-count-column .cell-data-wrap { padding-left: 0px; text-align: center; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .alerts-table-checkbox-row .p-column-title, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .alerts-table-checkbox-row .p-column-title { overflow: visible; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .alert-column-caseNumber .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .alert-column-caseNumber .cell-data-wrap { padding-right: 0px; text-overflow: unset; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .alert-column-caseNumber .cell-data-wrap .service-case-link-loader, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .alert-column-caseNumber .cell-data-wrap .service-case-link-loader { margin-left: 0.75rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .alert-column-isAcknowledged .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .alert-column-isAcknowledged .cell-data-wrap { flex-flow: row; display: flex; align-items: center; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .alert-column-isAcknowledged .cell-data-wrap i, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .alert-column-isAcknowledged .cell-data-wrap i { color: rgb(238, 49, 36); font-weight: bold; width: 2rem; text-align: center; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .alert-column-isAcknowledged .cell-data-wrap .acknowledgement-link-loader, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .alert-column-isAcknowledged .cell-data-wrap .acknowledgement-link-loader { width: 2rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .asset-column-name .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .asset-column-name .cell-data-wrap { flex-flow: row; display: flex; align-items: center; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .asset-column-name .cell-data-wrap .asset-link-loader, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .asset-column-name .cell-data-wrap .asset-link-loader { width: 2rem; margin-left: 0.75rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table th, html.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table td .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table th, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table td .cell-data-wrap { padding-left: 1rem; padding-right: 0.5rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table [class$=\"column-priorityLevel\"] .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table [class$=\"column-priorityLevel\"] .cell-data-wrap { padding-left: 0.75rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table .alert-column-isAcknowledged .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table .alert-column-isAcknowledged .cell-data-wrap { padding-left: 0.5rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table .alerts-table-checkbox-row .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table .alerts-table-checkbox-row .cell-data-wrap { padding-right: 0px; padding-left: 0.75rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table .bulkAlertSelector .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table .bulkAlertSelector .cell-data-wrap { padding-left: 0.75rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table .asset-expander, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table .asset-expander { padding-left: 0.75rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table .asset-expander .p-checkbox.p-component, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table .asset-expander .p-checkbox.p-component { left: 0px; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table .perAssetAlertActions .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table .perAssetAlertActions .cell-data-wrap { padding-right: 0.25rem; padding-left: 0.75rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.narrow table .asset-table-alert-count-column .cell-data-wrap, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.narrow table .asset-table-alert-count-column .cell-data-wrap { padding-right: 0px; padding-left: 0.25rem; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table .video-button, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table .video-button { border: none; left: -5px; top: 2px; position: relative; padding: 0px; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .table-skeleton > div > table > tbody > tr .alerts-table-checkbox-row > div > div { display: none; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table > div > table > thead > tr > th, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table > div > table > thead > tr > th { border-top: none !important; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.table-skeleton span[data-icon].acknowledgement-status-icon, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.table-skeleton span[data-icon].acknowledgement-status-icon { background-image: none !important; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.table-skeleton table, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.table-skeleton table { padding: 0px; overflow: auto; margin: 0px; list-style: none; left: 0px; animation: 1s linear 0s infinite normal forwards running alert-table-shimmer; background-image: linear-gradient(to right, rgb(64, 64, 64) 0%, rgb(80, 80, 80) 40%, rgb(64, 64, 64) 100%); background-repeat: no-repeat; background-size: 50%; background-color: rgb(64, 64, 64) !important; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr { background: none !important; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr div, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr div { height: 42px; border-width: 10px 0px; border-style: solid; border-color: rgb(48, 48, 48); }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr td:first-child div, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr td:first-child div { border-left-width: 10px; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr td:last-child div, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr td:last-child div { border-right-width: 10px; padding: 0px; }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr:nth-child(2n) div, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr:nth-child(2n) div { border-color: rgb(32, 32, 32); }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr:nth-child(2n+1) div, html.honeywell-dark-theme #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr:nth-child(2n+1) div { border-color: rgb(48, 48, 48); }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container #alert-dashboard-notification-container-id .ui.notification.important, html.honeywell-dark-theme #root .alert-dashboard-container .service-case-creation.panel-overlay .ui.notification.important { border-color: rgb(241, 90, 79); }\r\nhtml.honeywell-dark-theme #root .alert-dashboard-container #alert-dashboard-notification-container-id .ui.notification.important .icon .h-icon, html.honeywell-dark-theme #root .alert-dashboard-container .service-case-creation.panel-overlay .ui.notification.important .icon .h-icon { color: rgb(241, 90, 79); }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row { display: flex; align-items: center; background-color: rgb(48, 48, 48); }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row:not(:first-of-type) { padding-top: 0px; }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row #refresh-dashboard-icon { display: flex; align-items: center; border-top: 0.0625rem solid rgb(112, 112, 112); border-right: 0.0625rem solid rgb(112, 112, 112); border-bottom: 0.0625rem solid rgb(112, 112, 112); border-image: initial; border-left: none; align-self: stretch; padding: 0px 8px; color: rgb(255, 255, 255); transition: color 0.1s linear; cursor: pointer; }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row #refresh-dashboard-icon:hover { color: rgb(208, 208, 208); }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row #refresh-dashboard-icon:active { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row #refresh-dashboard-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row #refresh-dashboard-icon .disabled { cursor: not-allowed; }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row .bulk-action-dropdown-wrapper { padding: 0px; margin-left: auto; width: 12rem; }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row .ui.buttons.toggle-button-group .secondary { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row .ui.buttons.toggle-button-group .primary:hover { border-bottom: 0.125rem solid rgba(0, 0, 0, 0); }\r\nhtml.honeywell-dark-theme .alert-dashboard-header-row .ui.buttons.toggle-button-group .primary:focus { border-bottom-width: 0.125rem; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.single-input .input-wrap input.input-box { color: rgb(255, 255, 255); height: 2.5rem; background-color: rgb(32, 32, 32) !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(32, 32, 32); height: 2.5rem; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(32, 32, 32); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(96, 96, 96); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(64, 64, 64); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .scuf-textarea-wrapper textarea { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); resize: none; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .scuf-textarea-wrapper textarea:disabled { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .scuf-textarea-wrapper.readonly textarea { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .ui.input-label .input-label-message { color: rgb(176, 176, 176); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel [class~=\"scuf-grid\"][class~=\"col\"], html.honeywell-dark-theme .alert-dashboard-container .alert-details-panel [class~=\"scuf-grid\"][class*=\"col-\"], html.honeywell-dark-theme .alert-dashboard-container .alert-details-panel [class~=\"scuf-grid\"][class*=\"col_\"] { padding: 0px !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel [class~=\"col\"], html.honeywell-dark-theme .alert-dashboard-container .alert-details-panel [class*=\"col-\"], html.honeywell-dark-theme .alert-dashboard-container .alert-details-panel [class*=\"col_\"] { padding: 0px 0.5rem 1rem !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel div.ui.input-label .input-label-message { color: rgb(176, 176, 176); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .icon-container { font-size: 0.875rem; color: rgb(255, 255, 255); line-height: 0; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .icon-container.disabled { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .icon-container .progress div { width: 0.75rem; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .icon-container .progress div .rc-progress-circle-path { stroke: rgb(224, 224, 224) !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .icon-control-success { color: rgb(126, 179, 56); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .alerts-panel-input { flex: 1 1 0px; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .flex-grow { flex-grow: 1; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .float-right { float: right; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .assignee-select-input { width: 100%; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .workflow-status-select-input { width: 100%; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .workflow-action-note-textarea { padding-top: 1rem; flex-grow: 1; display: flex; flex-flow: column; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .workflow-action-note-textarea textarea { resize: none; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .asset-panel-property-divider.ui.divider:not(.vertical):not(.horizontal) { border-top: 0.0625rem solid rgb(96, 96, 96); }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .select-with-control { padding-bottom: 0px !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .select-with-control .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator { left: 0px; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .select-with-control .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator::after { display: none; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .no-padding { padding: 0px !important; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .spacing-top { margin-top: 16px; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .shadow-top { box-shadow: rgba(0, 0, 0, 0.5) 0px -5px 5px -5px; width: 485px; height: 45px; margin: 0px; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .shadow-top .bottom-buttons-container { width: 480px; padding: 12px; margin-top: 4px; }\r\nhtml.honeywell-dark-theme .alert-dashboard-container .alert-details-panel .sendEmailCheckbox { margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .details-panel-base { background-color: rgb(64, 64, 64); color: rgb(255, 255, 255); box-shadow: rgba(0, 0, 0, 0.5) -1px 0px 1px 0px; }\r\nhtml.honeywell-dark-theme .details-panel-base .panel-sub-header { color: silver; }\r\nhtml.honeywell-dark-theme .details-panel-base .detail-panel-base-loader-wrapper { position: relative; height: 100%; }\r\nhtml.honeywell-dark-theme .alert-filter-panel-overlay { position: fixed; display: flex; flex-direction: row-reverse; z-index: 1090; top: 38px; right: 0px; height: calc(-38px + 100vh); }\r\nhtml.honeywell-dark-theme .alert-filter-panel-overlay .alert-filter-panel { max-height: 100vh; }\r\nhtml.honeywell-dark-theme .alert-filter-panel-overlay .alert-filter-panel .FilterControls__filterControlContainer { max-height: calc(-118px + 100vh) !important; }\r\nhtml.honeywell-dark-theme .alert-filter-panel-overlay .alert-filter-panel .FilterAccordion__filterAccordionWrapper .close-icon { margin: 0px; }\r\nhtml.honeywell-dark-theme .alert-filter-summary { display: flex; padding: 1rem 1rem 1rem 0px; flex-grow: 1; align-items: center; }\r\nhtml.honeywell-dark-theme .alert-filter-summary .filter-results { margin: 2px 0px; }\r\nhtml.honeywell-dark-theme .alert-filter-summary .alert-filter-link-clear-all-filters { margin-left: 1rem; }\r\nhtml.honeywell-dark-theme .alert-filter-summary .alert-filter-chip { padding: 0px 0.75rem; margin: 2px 0px 2px 1rem; outline: rgb(96, 96, 96) solid 0.0625rem; box-sizing: border-box; border-radius: 0.25rem; }\r\nhtml.honeywell-dark-theme .alert-filter-summary .alert-filter-chip-close-icon { margin-left: 0.25rem; vertical-align: unset; cursor: pointer; }\r\nhtml.honeywell-dark-theme .alert-filter-summary .filter-divider { align-self: stretch; }\r\nhtml.honeywell-dark-theme .alert-filter-summary .filter-chip-container { display: flex; flex-flow: wrap; }\r\nhtml.honeywell-dark-theme span[data-icon].acknowledgement-status-icon { height: 2rem; width: 2rem; display: block; margin-right: 6px; background: center center no-repeat; }\r\nhtml.honeywell-dark-theme span[data-icon].acknowledgement-status-icon[data-icon=\"acknowledged\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3crect width='24' height='24' fill='none'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.82205 13.8525L6.60352 12.602L11.9843 3L15.1245 8.54599L13.9124 9.81521L11.9996 6.41502L7.82205 13.8525Z' fill='%23888888'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.37922 16.5742L5.59821 17.817L4.86488 19.1309H7.00801L8.66532 20.8232H2L4.37922 16.5742Z' fill='%23888888'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.238 13.9663L19.1337 19.1269H11.1759L9.49414 20.81H22.0012L17.4536 12.7305L16.238 13.9663Z' fill='%23888888'/%3e %3cpath d='M19.8166 5.8418L21.007 7.02927L9.02475 19.4825L3.07422 13.3562L4.25916 12.163L9.01914 17.0636L19.8166 5.8418Z' fill='%23888888'/%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-icon].acknowledgement-status-icon[data-icon=\"unacknowledged\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3crect width='24' height='24' fill='none'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.2385 13.9664L19.1344 19.1273H11.176L9.49414 20.8106H22.0021L17.4542 12.7305L16.2385 13.9664Z' fill='%23888888'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M 19.122 19.123 L 21.922 20.752 L 1.999 20.864 L 11.985 3 L 18.686 14.932 L 17.355 15.941 L 12 6.415 L 5.045 19.12 L 19.122 19.123 Z' fill='%23888888'/%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-icon].asset-link-icon { height: 2rem; width: 2rem; display: block; background: url(\"data&colon;image/svg+xml,%3csvg width='27' height='24' viewBox='0 0 27 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.9539 14.7586C10.4299 14.7586 9.18937 13.5196 9.18937 11.9948C9.18937 10.4708 10.4299 9.23108 11.9539 9.23108C13.4779 9.23108 14.7176 10.4708 14.7176 11.9948C14.7176 13.5196 13.4779 14.7586 11.9539 14.7586ZM11.9539 8.50657C10.0309 8.50657 8.46563 10.0718 8.46563 11.9948C8.46563 13.9186 10.0309 15.4838 11.9539 15.4838C13.8769 15.4838 15.4421 13.9186 15.4421 11.9948C15.4421 10.0718 13.8769 8.50657 11.9539 8.50657ZM18.7177 16.8885L17.0797 18.6L15.0607 17.667L13.989 18.1395L13.3357 20.2275L11.0295 20.319L10.2937 18.243L9.03975 17.7353L7.0185 18.735L5.481 17.2155L6.39075 15.1988L5.868 13.8653L3.77325 13.0575L3.73575 10.8938L5.86275 10.1558L6.393 8.859L5.45925 6.86175L7.04325 5.2785L9.063 6.27825L10.2982 5.766L10.974 3.74025C11.4307 3.732 12.4747 3.72825 13.266 3.7275L14.1127 5.94225L15.09 6.39825L16.9822 5.3985L18.7147 7.1505L17.7142 9.15225L18.1395 10.1355L20.175 10.8285V13.1685L18.0585 13.9545L17.7195 14.8703L18.7177 16.8885ZM20.9032 13.6755V10.3073L18.6795 9.5505L18.5167 9.17475L19.5998 7.008L17.1195 4.5015L15.0705 5.586L14.688 5.40675L13.767 3H13.5165C10.4738 3 10.4738 3 10.3718 3.2475L9.7125 5.22075L9.09 5.4795L6.897 4.395L4.584 6.708L5.59875 8.8785L5.31375 9.57525L3 10.3778L3.054 13.5608L5.30775 14.4293L5.601 15.1793L4.60875 17.376L6.876 19.617L9.069 18.5325L9.71775 18.795L10.5225 21.0683L13.8787 20.934L14.5845 18.672L15.0532 18.4658L17.2477 19.4798L19.5975 17.0235L18.5115 14.829L18.6248 14.5208L20.9032 13.6755Z' fill='%23FFFFFF'/%3e %3cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='3' y='3' width='18' height='19'%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.9539 14.7586C10.4299 14.7586 9.18937 13.5196 9.18937 11.9948C9.18937 10.4708 10.4299 9.23108 11.9539 9.23108C13.4779 9.23108 14.7176 10.4708 14.7176 11.9948C14.7176 13.5196 13.4779 14.7586 11.9539 14.7586ZM11.9539 8.50657C10.0309 8.50657 8.46563 10.0718 8.46563 11.9948C8.46563 13.9186 10.0309 15.4838 11.9539 15.4838C13.8769 15.4838 15.4421 13.9186 15.4421 11.9948C15.4421 10.0718 13.8769 8.50657 11.9539 8.50657ZM18.7177 16.8885L17.0797 18.6L15.0607 17.667L13.989 18.1395L13.3357 20.2275L11.0295 20.319L10.2937 18.243L9.03975 17.7353L7.0185 18.735L5.481 17.2155L6.39075 15.1988L5.868 13.8653L3.77325 13.0575L3.73575 10.8938L5.86275 10.1558L6.393 8.859L5.45925 6.86175L7.04325 5.2785L9.063 6.27825L10.2982 5.766L10.974 3.74025C11.4307 3.732 12.4747 3.72825 13.266 3.7275L14.1127 5.94225L15.09 6.39825L16.9822 5.3985L18.7147 7.1505L17.7142 9.15225L18.1395 10.1355L20.175 10.8285V13.1685L18.0585 13.9545L17.7195 14.8703L18.7177 16.8885ZM20.9032 13.6755V10.3073L18.6795 9.5505L18.5167 9.17475L19.5998 7.008L17.1195 4.5015L15.0705 5.586L14.688 5.40675L13.767 3H13.5165C10.4738 3 10.4738 3 10.3718 3.2475L9.7125 5.22075L9.09 5.4795L6.897 4.395L4.584 6.708L5.59875 8.8785L5.31375 9.57525L3 10.3778L3.054 13.5608L5.30775 14.4293L5.601 15.1793L4.60875 17.376L6.876 19.617L9.069 18.5325L9.71775 18.795L10.5225 21.0683L13.8787 20.934L14.5845 18.672L15.0532 18.4658L17.2477 19.4798L19.5975 17.0235L18.5115 14.829L18.6248 14.5208L20.9032 13.6755Z' fill='%23FFFFFF'/%3e %3c/mask%3e %3cg mask='url(%23mask0)'%3e %3c/g%3e %3c/svg%3e\") 50% center / cover no-repeat; cursor: pointer !important; }\r\nhtml.honeywell-dark-theme .priority-icon { height: 2rem; width: 2rem; display: block; margin-right: 6px; background: center center no-repeat; }\r\nhtml.honeywell-dark-theme div.priority-icon [data-ffbs-iconid] { width: 2rem; height: 2rem; background: center center no-repeat; }\r\nhtml.honeywell-dark-theme div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-critical\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3ecritical%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23EE3124' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-high\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3ehigh%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23f37021' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23f37021' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23f37021' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-medium\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3emedium%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/high' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='high24x24' transform='translate(3.000000, 3.000000)'%3e %3ccircle id='Oval-3' fill='%23f5a623' cx='9' cy='9' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23f5a623' cx='9' cy='9' r='8.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-low\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3elow%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/low' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='low24x24' transform='translate(6.000000, 6.000000)' fill='%231272b2'%3e %3ccircle cx='6' cy='6' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-critical-v3\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3ecritical%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23EE3124' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-high-v3\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eurgent24x24%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23EE3124' cx='12' cy='12' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-medium-v3\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/high%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/high' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='high24x24' transform='translate(3.000000, 3.000000)'%3e %3ccircle id='Oval-3' fill='%23F37021' cx='9' cy='9' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-low-v3\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/low%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/low' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='low24x24' transform='translate(6.000000, 6.000000)' fill='%23FFC627'%3e %3ccircle cx='6' cy='6' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-priority].priority-icon[data-priority=\"high\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eurgent24x24%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23EE3124' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-priority].priority-icon[data-priority=\"medium\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/high%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/high' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='high24x24' transform='translate(3.000000, 3.000000)'%3e %3ccircle id='Oval-3' fill='%23F37021' cx='9' cy='9' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23F37021' cx='9' cy='9' r='8.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-priority].priority-icon[data-priority=\"low\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/low%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/low' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='low24x24' transform='translate(6.000000, 6.000000)' fill='%23FFC627'%3e %3ccircle cx='6' cy='6' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-priority].priority-icon[data-priority=\"high-inactive\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eurgent24x24%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23888888' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23888888' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23888888' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-priority].priority-icon[data-priority=\"medium-inactive\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/high%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/high' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='high24x24' transform='translate(3.000000, 3.000000)'%3e %3ccircle id='Oval-3' fill='%23888888' cx='9' cy='9' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23888888' cx='9' cy='9' r='8.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-priority].priority-icon[data-priority=\"low-inactive\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/low%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/low' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='low24x24' transform='translate(6.000000, 6.000000)' fill='%23888888'%3e %3ccircle cx='6' cy='6' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-icon][class^=\"workflow-status-icon\"] { height: 2rem; width: 2rem; display: block; background: center center no-repeat; margin-left: 6px; }\r\nhtml.honeywell-dark-theme span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"waiting-for-input\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_1509_121291)'%3e %3cpath d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M4.04993 8.80005C4.46414 8.80005 4.79993 8.46426 4.79993 8.05005C4.79993 7.63584 4.46414 7.30005 4.04993 7.30005C3.63571 7.30005 3.29993 7.63584 3.29993 8.05005C3.29993 8.46426 3.63571 8.80005 4.04993 8.80005Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M7.94995 8.79999C8.36416 8.79999 8.69995 8.4642 8.69995 8.04999C8.69995 7.63577 8.36416 7.29999 7.94995 7.29999C7.53574 7.29999 7.19995 7.63577 7.19995 8.04999C7.19995 8.4642 7.53574 8.79999 7.94995 8.79999Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M11.85 8.80005C12.2642 8.80005 12.6 8.46426 12.6 8.05005C12.6 7.63584 12.2642 7.30005 11.85 7.30005C11.4358 7.30005 11.1 7.63584 11.1 8.05005C11.1 8.46426 11.4358 8.80005 11.85 8.80005Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3c/g%3e %3cdefs%3e %3cclipPath id='clip0_1509_121291'%3e %3crect width='16' height='16' fill='white'/%3e %3c/clipPath%3e %3c/defs%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"identified\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_1356_106279)'%3e %3cpath d='M8.23071 5.2V8M8.23071 10.8H8.22371M1.23071 8C1.23071 4.13401 4.36472 1 8.23071 1C12.0967 1 15.2307 4.13401 15.2307 8C15.2307 11.866 12.0967 15 8.23071 15C4.36472 15 1.23071 11.866 1.23071 8Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3c/g%3e %3cdefs%3e %3cclipPath id='clip0_1356_106279'%3e %3crect width='16' height='16' fill='white' transform='matrix(-1 0 0 -1 16.2307 16)'/%3e %3c/clipPath%3e %3c/defs%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"in-progress\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_1509_121258)'%3e %3cpath d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' stroke='%23FFC627' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M4.04993 8.80005C4.46414 8.80005 4.79993 8.46426 4.79993 8.05005C4.79993 7.63584 4.46414 7.30005 4.04993 7.30005C3.63571 7.30005 3.29993 7.63584 3.29993 8.05005C3.29993 8.46426 3.63571 8.80005 4.04993 8.80005Z' stroke='%23FFC627' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M7.94995 8.79999C8.36416 8.79999 8.69995 8.4642 8.69995 8.04999C8.69995 7.63577 8.36416 7.29999 7.94995 7.29999C7.53574 7.29999 7.19995 7.63577 7.19995 8.04999C7.19995 8.4642 7.53574 8.79999 7.94995 8.79999Z' stroke='%23FFC627' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M11.85 8.80005C12.2642 8.80005 12.6 8.46426 12.6 8.05005C12.6 7.63584 12.2642 7.30005 11.85 7.30005C11.4358 7.30005 11.1 7.63584 11.1 8.05005C11.1 8.46426 11.4358 8.80005 11.85 8.80005Z' stroke='%23FFC627' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3c/g%3e %3cdefs%3e %3cclipPath id='clip0_1509_121258'%3e %3crect width='16' height='16' fill='white'/%3e %3c/clipPath%3e %3c/defs%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"done\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8C16 12.4183 12.4183 16 8 16ZM8 14.6667C11.6819 14.6667 14.6667 11.6819 14.6667 8C14.6667 4.3181 11.6819 1.33333 8 1.33333C4.3181 1.33333 1.33333 4.3181 1.33333 8C1.33333 11.6819 4.3181 14.6667 8 14.6667ZM11.4714 6.2357L10.5286 5.29289L7 8.82149L5.47141 7.29289L4.5286 8.2357L7 10.7071L11.4714 6.2357Z' fill='%237EB338'/%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"transferred-to-field\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8C16 12.4183 12.4183 16 8 16ZM8 14.6667C11.6819 14.6667 14.6667 11.6819 14.6667 8C14.6667 4.3181 11.6819 1.33333 8 1.33333C4.3181 1.33333 1.33333 4.3181 1.33333 8C1.33333 11.6819 4.3181 14.6667 8 14.6667ZM11.4714 6.2357L10.5286 5.29289L7 8.82149L5.47141 7.29289L4.5286 8.2357L7 10.7071L11.4714 6.2357Z' fill='%237EB338'/%3e %3c/svg%3e\"); }\r\nhtml.honeywell-dark-theme .disclosure { display: flex; }\r\nhtml.honeywell-dark-theme .disclosure .legal-text { display: inline-block; margin-left: 1rem; color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .disclosure .badge-info { font-weight: bold; }\r\nhtml.honeywell-dark-theme .disclosure .information-icon-tooltip .content { word-break: break-all; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay { position: fixed; display: flex; flex-direction: row-reverse; z-index: 1100; inset: 0px; height: 100%; width: 100%; background: rgba(32, 32, 32, 0.5); }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay div.ui.input-label .input-label-message { color: rgb(176, 176, 176); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.single-input .input-wrap input.input-box { color: rgb(255, 255, 255); height: 2.5rem; background-color: rgb(32, 32, 32) !important; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(32, 32, 32); height: 2.5rem; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(32, 32, 32); }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(255, 255, 255); }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(96, 96, 96); }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(64, 64, 64); }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(160, 160, 160); }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .scuf-textarea-wrapper textarea { background-color: rgb(32, 32, 32); color: rgb(255, 255, 255); resize: none; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .scuf-textarea-wrapper textarea:disabled { background-color: rgb(96, 96, 96) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .scuf-textarea-wrapper.readonly textarea { background-color: rgb(64, 64, 64) !important; color: rgb(160, 160, 160) !important; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .ui.input-label .input-label-message { color: rgb(176, 176, 176); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel { padding-bottom: 0px; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel [class~=\"scuf-grid\"][class~=\"col\"], html.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel [class~=\"scuf-grid\"][class*=\"col-\"], html.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel [class~=\"scuf-grid\"][class*=\"col_\"] { padding: 0px !important; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel [class~=\"col\"], html.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel [class*=\"col-\"], html.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel [class*=\"col_\"] { padding: 0px 0.5rem 1rem !important; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel [role=\"option\"].item { display: flex; align-items: center; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel [role=\"option\"].item [data-priority].priority-icon { height: 1rem; width: 1rem; background-size: cover; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel .description-textarea { flex-grow: 1; display: flex; flex-flow: column; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel .description-textarea textarea { flex-grow: 1; min-height: auto; resize: none; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel .create-service-case-button { float: right; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel .grid-description { flex-flow: column; flex-grow: 1; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel .grid-column-textarea { display: flex; flex-grow: 1; flex-basis: auto; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel .grid-column-create-service-case, html.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-panel .grid-column-acknowledge-alert { flex-basis: auto; }\r\nhtml.honeywell-dark-theme .service-case-creation.panel-overlay .service-case-creation-fields-content { overflow: auto; display: flex; flex-flow: column; flex-grow: 1; }\r\nhtml.honeywell-dark-theme .alert-column-slaStatus .slaStatus { padding-right: 1rem; display: flex; align-items: center; justify-content: left; }\r\nhtml.honeywell-dark-theme .alert-column-slaStatus .slaStatus-progress-bar { width: 60%; height: 100%; padding-right: 0.5rem; }\r\nhtml.honeywell-dark-theme .alert-column-slaStatus .slaStatus-progress-bar .progress { margin-bottom: 0rem !important; }\r\nhtml.honeywell-dark-theme .alert-column-slaStatus .slaStatus-progress-bar .progress:last-child { margin: 0rem !important; }\r\nhtml.honeywell-dark-theme .alert-column-slaStatus .slaStatus-progress-bar .scuf-progress-wrapper.xsmall .bar { height: 0.3125rem !important; }\r\nhtml.honeywell-dark-theme .alert-column-slaStatus .slaStatus-progress-bar .scuf-progress-wrapper.low-bar-bg .ui.progress .bar { background-color: rgb(238, 49, 36); }\r\nhtml.honeywell-dark-theme .alert-column-slaStatus .slaStatus-progress-bar .scuf-progress-wrapper.medium-bar-bg .ui.progress .bar { background-color: rgb(245, 166, 35); }\r\nhtml.honeywell-dark-theme .alert-column-slaStatus .slaStatus-progress-bar .scuf-progress-wrapper.high-bar-bg .ui.progress .bar { background-color: rgb(18, 114, 178); }\r\nhtml.honeywell-dark-theme .asset-action-popup-menu.popup.menu { box-shadow: rgba(0, 0, 0, 0.5) 0px 1px 2px; margin: 0px; border: 0.0625rem solid rgb(96, 96, 96); overflow: hidden; }\r\nhtml.honeywell-dark-theme .asset-action-popup-menu.popup.menu.ui.menu, html.honeywell-dark-theme .asset-action-popup-menu.popup.menu .ui.menu { min-height: auto; }\r\nhtml.honeywell-dark-theme .asset-action-popup-menu.popup.menu .vertical-menu .item::before { background: rgba(0, 0, 0, 0); }\r\nhtml.honeywell-dark-theme .asset-table .asset-actions-column { display: flex; flex-direction: row-reverse; }\r\nhtml.honeywell-dark-theme .ui.modal.dvm-modal-player { padding: 1rem; width: calc(470px + 2rem); height: calc(306px + 2rem); }\r\nhtml.honeywell-dark-theme .ui.modal.dvm-modal-player .video-player-iframe { width: 100%; height: 100%; border: none; }\r\nhtml.honeywell-dark-theme .alert-widget-card { height: 100%; }\r\nhtml.honeywell-dark-theme .alert-widget-card .alert-widget-content { display: flex; flex-flow: column; height: 100%; min-height: 0px; }\r\nhtml.honeywell-dark-theme .alert-widget-card .alert-widget-content-summary { margin-top: 0.75rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .alert-widget-footer { display: flex; align-items: center; margin-top: 0.75rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .summary-value { font-size: 2.5rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; padding-bottom: 0.875rem; color: rgb(240, 240, 240); font-weight: 500; line-height: unset; }\r\nhtml.honeywell-dark-theme .alert-widget-card .summary-value:not(:first-child) { margin-left: 1rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .summary-label { font-size: 0.75rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; line-height: 1.125rem; color: rgb(208, 208, 208); font-weight: 500; text-transform: uppercase; padding-left: 0.5rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .not-ok-error-state { height: auto; }\r\nhtml.honeywell-dark-theme .alert-widget-card .relative-count-rating { flex-grow: 1; overflow: auto; padding-right: 0.75rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .relative-count-rating > div { line-height: 1.25rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .relative-count-rating > div:not(:first-child) { margin-top: 0.75rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .relative-count-rating table { width: 100%; }\r\nhtml.honeywell-dark-theme .alert-widget-card .relative-count-rating .column-series-name { padding-right: 0.5rem; font-size: 0.75rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .relative-count-rating .rating-category { display: flex; }\r\nhtml.honeywell-dark-theme .alert-widget-card .relative-count-rating .counts-wrapper { display: flex; align-items: center; }\r\nhtml.honeywell-dark-theme .alert-widget-card .relative-count-rating .category-bar { height: 0.25rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .relative-count-rating .total { padding-left: 0.75rem; font-weight: 700; font-size: 1rem; }\r\nhtml.honeywell-dark-theme .alert-widget-card .footer { display: flex; align-items: center; }\r\nhtml.honeywell-dark-theme .alert-widget-card .view-all-alerts-link { font-size: 0.75rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; cursor: pointer; text-transform: uppercase; font-weight: 300; color: silver; flex: 1 0 auto; text-align: right; }\r\nhtml.honeywell-dark-theme .alert-widget-card .has-action { cursor: pointer; }\r\nhtml.honeywell-dark-theme .relative-count-rating-tooltip td { padding: 0.25rem; }\r\nhtml.honeywell-dark-theme .relative-count-rating-tooltip .category-count-indicator { height: 1rem; width: 4px; }\r\n@keyframes alert-table-shimmer { \n  0% { background-position: -100% center; }\n  100% { background-position: 200% center; }\n}\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input { flex: 1 1 0px; width: 0%; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input div.ui.input-label .input-label-message { color: rgb(48, 48, 48); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-wrap input.input-box { color: rgb(96, 96, 96); font-size: 0.875rem; border-radius: 3px; height: 2.5rem; padding: 0px 0.69rem; background-color: rgb(240, 240, 240) !important; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-wrap input.input-box::-webkit-outer-spin-button, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-wrap input.input-box::-webkit-inner-spin-button { appearance: none; margin: 0px; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-wrap input.input-box[type=\"number\"] { }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-wrap .icon-container { font-size: 0.875rem; color: rgb(48, 48, 48); line-height: 0; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-wrap .icon-container.disabled { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-wrap .icon-container .progress div { width: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-wrap .icon-container .progress div .rc-progress-circle-path { stroke: rgb(48, 48, 48) !important; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-wrap .icon-control-success { color: rgb(126, 179, 56); }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input.disabled .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input.readonly .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input.focused .input-wrap input.input-box { background-color: rgb(240, 240, 240); color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .input-icon { cursor: auto; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text { display: block; line-height: 0; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message { display: inline-block; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator { position: relative; display: inline-block; left: 10px; margin-right: 1.5rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.undefined, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.not-set, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.undefined, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.not-set { color: rgb(190, 39, 28); left: 0px; margin-right: 0.875rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.info, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.info { left: 0px; margin-right: 0.875rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.mode-state::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.failed::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.error::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.bad::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.stale::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.mode-state::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.failed::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.error::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.bad::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.stale::after { background-color: rgb(23, 146, 229); width: 6px; height: 6px; border-radius: 50%; content: \"\"; display: block; position: absolute; top: 7px; left: -10px; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.error::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.failed::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.bad::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.error::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.failed::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.bad::after { background-color: rgb(190, 39, 28); }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator.stale::after, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator.stale::after { background-color: rgb(255, 198, 39); }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .helper-message .quality-indicator .info-icon, html:not(.honeywell-dark-theme) .ui.single-input.analog-property-input .below-text .error-message .quality-indicator .info-icon { color: rgb(48, 48, 48); margin-left: 4px; }\r\nhtml:not(.honeywell-dark-theme) .ui.single-input.analog-property-input.error { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .property-label-info { margin: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .property-label-info .popup-header { font-size: medium; padding: 1rem 1rem 0px !important; text-transform: none !important; }\r\nhtml:not(.honeywell-dark-theme) .property-label-info .popup-content-container { display: flex; align-items: center; width: 100% !important; padding: 0.5rem 1rem 1rem !important; }\r\nhtml:not(.honeywell-dark-theme) .property-label-info .popup-content-container .popup-content-span { color: rgb(48, 48, 48); overflow-wrap: break-word; border: none; resize: none; outline: 0px; font-size: 0.875rem; line-height: 1.2rem; background: rgba(0, 0, 0, 0) !important; width: 12rem !important; }\r\nhtml:not(.honeywell-dark-theme) .property-label-info .popup-content-container .popup-content-span::selection { background-color: rgba(0, 0, 0, 0); color: rgb(48, 48, 48); border: none !important; outline: 0px !important; outline-offset: 0px !important; transition: none !important; transform: none !important; }\r\nhtml:not(.honeywell-dark-theme) .property-label-info .popup-content-container span[data-iconid].popup-content-copy { align-self: flex-start; height: 2rem; width: 2rem; cursor: pointer; background: center center / cover no-repeat; }\r\nhtml:not(.honeywell-dark-theme) .property-label-info .popup-content-container span[data-iconid].popup-content-copy[data-iconid=\"copy\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3ctitle%3eCopy_Icon%3c/title%3e %3cg id='Copy_Icon' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='4.1-Properties-info-point-ID' transform='translate(-1450.000000, -250.000000)'%3e %3cg id='Group-7' transform='translate(1450.000000, 250.000000)'%3e %3crect id='Rectangle' fill='%23000000' opacity='0' x='0' y='0' width='24' height='24'%3e%3c/rect%3e %3cg id='Group-5' transform='translate(6.000000, 4.000000)' stroke='%23303030' stroke-width='1.2'%3e %3cg id='Group-3'%3e %3cpath d='M2.66666667,1.71357557 L2.66666667,1.71357557 L2.66666667,0.888888889 C2.66666667,0.397969111 3.06463578,0 3.55555556,0 L11.5555556,0 C12.0464753,0 12.4444444,0.397969111 12.4444444,0.888888889 L12.4444444,13.3333333 C12.4444444,13.8242531 12.0464753,14.2222222 11.5555556,14.2222222 L9.90058491,14.2222222 L9.90058491,14.2222222' id='Path'%3e%3c/path%3e %3cpath d='M1,1.77777778 L5.09885289,1.77777778 L5.09885289,1.77777778 L8.77777778,1.77777778 C9.33006253,1.77777778 9.77777778,2.22549303 9.77777778,2.77777778 L9.77777778,15 C9.77777778,15.5522847 9.33006253,16 8.77777778,16 L1,16 C0.44771525,16 1.49277938e-15,15.5522847 0,15 L0,2.77777778 C-6.76353751e-17,2.22549303 0.44771525,1.77777778 1,1.77777778 Z' id='Rectangle-Copy'%3e%3c/path%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) .property-label-info .popup-content-container span[data-iconid].popup-content-copy[data-iconid=\"tick\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3ctitle%3eTick_Icon%3c/title%3e %3cg id='Tick_Icon' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='4.1-Properties-info-point-ID' transform='translate(-1450.000000, -276.000000)'%3e %3cg id='Group-7' transform='translate(1450.000000, 276.000000)'%3e %3crect id='Rectangle' fill='%23000000' opacity='0' x='0' y='0' width='24' height='24'%3e%3c/rect%3e %3cpolyline id='Path-6' stroke='%23303030' stroke-width='1.2' points='6 12.1805691 9.77447842 15.9550475 17.729526 8'%3e%3c/polyline%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) .property-label-tooltip .content { word-break: break-all; }\r\nhtml:not(.honeywell-dark-theme) .control-container { display: flex; width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .control-container .edit-confirmation-container { position: absolute; right: 0px; display: flex; flex-direction: row; }\r\nhtml:not(.honeywell-dark-theme) .control-container .edit-confirmation-container::after { width: 0.0625rem; height: 0.625rem; background-color: rgb(48, 48, 48); content: \"\"; display: block; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }\r\nhtml:not(.honeywell-dark-theme) .control-container .edit-confirmation-container:hover::after { background-color: rgba(0, 0, 0, 0); }\r\nhtml:not(.honeywell-dark-theme) .control-container .edit-confirmation-container .confirmation-button { height: 1.375rem; padding: 0px 1rem; background-color: rgb(240, 240, 240); color: rgb(48, 48, 48); cursor: pointer; border-right: 0.0625rem solid rgba(0, 0, 0, 0); border-bottom: 0.0625rem solid rgba(0, 0, 0, 0); border-left: 0.0625rem solid rgba(0, 0, 0, 0); border-image: initial; border-top: none; width: 57px; }\r\nhtml:not(.honeywell-dark-theme) .control-container .edit-confirmation-container .confirmation-button:hover { background-color: rgb(240, 240, 240); border-right: 0.0625rem solid rgb(18, 116, 183); border-bottom: 0.0625rem solid rgb(18, 116, 183); border-left: 0.0625rem solid rgb(18, 116, 183); border-image: initial; border-top: none; }\r\nhtml:not(.honeywell-dark-theme) .control-container .edit-confirmation-container .confirmation-icon { color: rgb(48, 48, 48); font-weight: 700; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }\r\nhtml:not(.honeywell-dark-theme) .control-container .edit-confirmation-container .ui.button + .ui.button { margin-left: 0px; }\r\nhtml:not(.honeywell-dark-theme) .control-container .edit-confirmation-container.hide { display: none; }\r\nhtml:not(.honeywell-dark-theme) .control-container .relinquish-container { display: flex; flex: 0 0 1.75rem; align-items: center; height: 2.5rem; margin-top: 1.5rem; }\r\nhtml:not(.honeywell-dark-theme) .control-container .relinquish-container .relinquish { color: rgb(48, 48, 48); transition: color 0.1s linear; cursor: pointer; margin-left: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .control-container .relinquish-container .relinquish:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .control-container .relinquish-container .relinquish:active { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .control-container .relinquish-container .relinquish.disabled { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .control-container .relinquish-container .relinquish.disabled { cursor: not-allowed; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input { flex: 1 1 0px; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input div.ui.input-label .input-label-message { color: rgb(48, 48, 48); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown { background-color: rgb(240, 240, 240); height: 2.5rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown .text { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown i { font-size: 0.75rem !important; color: rgb(48, 48, 48) !important; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown.loading > i::before, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown.loading > i::after { display: none; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown.active { background-color: rgb(240, 240, 240); }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .ui.dropdown.active .text { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input.disabled .ui.dropdown .chevron.down.icon, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input.readonly .ui.dropdown .chevron.down.icon { display: none; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input.disabled .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input.disabled .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input.readonly .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input.readonly .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text { display: block; line-height: 0; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message { display: inline-block; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator { position: relative; display: inline-block; left: 10px; margin-right: 1.5rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.undefined, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.not-set, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.undefined, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.not-set { color: rgb(190, 39, 28); left: 0px; margin-right: 0.875rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.info, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.info { left: 0px; margin-right: 0.875rem; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.mode-state::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.failed::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.error::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.bad::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.stale::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.mode-state::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.failed::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.error::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.bad::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.stale::after { background-color: rgb(23, 146, 229); width: 6px; height: 6px; border-radius: 50%; content: \"\"; display: block; position: absolute; top: 7px; left: -10px; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.error::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.failed::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.bad::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.error::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.failed::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.bad::after { background-color: rgb(190, 39, 28); }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator.stale::after, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator.stale::after { background-color: rgb(255, 198, 39); }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .helper-message .quality-indicator .info-icon, html:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator .info-icon { color: rgb(48, 48, 48); margin-left: 4px; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input.error { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .ui.scuf-dropdown-wrapper.property-digital-input.error .dropdown { border-color: rgb(190, 39, 28) !important; }\r\nhtml:not(.honeywell-dark-theme) .digital-property-container { display: flex; flex: 1 1 0%; width: 0%; position: relative; }\r\nhtml:not(.honeywell-dark-theme) .digital-property-container .icon-container { font-size: 0.875rem; color: rgb(48, 48, 48); line-height: 0; }\r\nhtml:not(.honeywell-dark-theme) .digital-property-container .icon-container.disabled { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .digital-property-container .icon-container .progress div { width: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .digital-property-container .icon-container .progress div .rc-progress-circle-path { stroke: rgb(48, 48, 48) !important; }\r\nhtml:not(.honeywell-dark-theme) .digital-property-container .icon-control-success { color: rgb(126, 179, 56); }\r\nhtml:not(.honeywell-dark-theme) .digital-property-container .icon-container { right: 0.75rem; position: absolute; top: 2.375rem; z-index: 1; }\r\nhtml:not(.honeywell-dark-theme) .digital-property-container .icon-container.success { top: 2.25rem; }\r\nhtml:not(.honeywell-dark-theme) .digital-property-tooltip-not-defined-info { max-width: 212px !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay { position: fixed; display: flex; flex-direction: row-reverse; z-index: 1100; inset: 0px; height: 100%; width: 100%; background: rgba(224, 224, 224, 0.4) !important; backdrop-filter: none !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay div.ui.input-label .input-label-message { color: rgb(48, 48, 48); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.single-input .input-wrap input.input-box { color: rgb(96, 96, 96); height: 2.5rem; background-color: rgb(240, 240, 240) !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(240, 240, 240); color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(240, 240, 240); height: 2.5rem; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(240, 240, 240); }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .scuf-textarea-wrapper textarea { background-color: rgb(240, 240, 240); color: rgb(96, 96, 96); resize: none; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .scuf-textarea-wrapper textarea:disabled { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .scuf-textarea-wrapper.readonly textarea { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .ui.input-label .input-label-message { color: rgb(48, 48, 48); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel { padding-bottom: 0px; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel [class~=\"scuf-grid\"][class~=\"col\"], html:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel [class~=\"scuf-grid\"][class*=\"col-\"], html:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel [class~=\"scuf-grid\"][class*=\"col_\"] { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel [class~=\"col\"], html:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel [class*=\"col-\"], html:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel [class*=\"col_\"] { padding: 0px 0.5rem 1rem !important; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel [role=\"option\"].item { display: flex; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel [role=\"option\"].item [data-priority].priority-icon { height: 1rem; width: 1rem; background-size: cover; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel .acknowledgement-button { float: right; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel .grid-column-textarea { display: flex; flex-grow: 1; flex-basis: auto; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel .acknowledgement-note-textarea { flex-grow: 1; display: flex; flex-flow: column; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel .acknowledgement-note-textarea textarea { resize: none; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel .grid-description { flex-flow: column; flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel .grid-column-legal { flex-basis: auto; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel .grid-column-acknowledgement { flex-basis: auto; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel .panel-sub-header { margin-left: 10px; text-transform: none; color: rgb(48, 48, 48); }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-fields-content { overflow: auto; display: flex; flex-flow: column; flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .acknowledgement-panel.panel-overlay .acknowledgement-panel-loader-wrapper { position: relative; height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay { position: fixed; display: flex; flex-direction: row-reverse; z-index: 1100; inset: 0px; height: 100%; width: 100%; background: rgba(224, 224, 224, 0.4) !important; backdrop-filter: none !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay div.ui.input-label .input-label-message { color: rgb(48, 48, 48); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.single-input .input-wrap input.input-box { color: rgb(96, 96, 96); height: 2.5rem; background-color: rgb(240, 240, 240) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(240, 240, 240); color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(240, 240, 240); height: 2.5rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(240, 240, 240); }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .scuf-textarea-wrapper textarea { background-color: rgb(240, 240, 240); color: rgb(96, 96, 96); resize: none; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .scuf-textarea-wrapper textarea:disabled { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .scuf-textarea-wrapper.readonly textarea { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .ui.input-label .input-label-message { color: rgb(48, 48, 48); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel { padding-bottom: 0px; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel [class~=\"scuf-grid\"][class~=\"col\"], html:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel [class~=\"scuf-grid\"][class*=\"col-\"], html:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel [class~=\"scuf-grid\"][class*=\"col_\"] { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel [class~=\"col\"], html:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel [class*=\"col-\"], html:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel [class*=\"col_\"] { padding: 0px 0.5rem 1rem !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel [role=\"option\"].item { display: flex; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel [role=\"option\"].item [data-priority].priority-icon { height: 1rem; width: 1rem; background-size: cover; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel .alert-action-button { float: right; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel .grid-column-textarea { display: flex; flex-grow: 1; flex-basis: auto; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel .alert-action-note-textarea { flex-grow: 1; display: flex; flex-flow: column; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel .alert-action-note-textarea textarea { resize: none; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel .grid-description { flex-flow: column; flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel .grid-column-legal { flex-basis: auto; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel .grid-column-alert-action { flex-basis: auto; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel .panel-sub-header { margin-left: 10px; text-transform: none; color: rgb(48, 48, 48); }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-fields-content { overflow: auto; display: flex; flex-flow: column; flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .alert-action-panel.panel-overlay .alert-action-panel-loader-wrapper { position: relative; height: 100%; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container { padding: 8px 1rem 1rem; background-color: rgb(255, 255, 255); width: 100%; height: fit-content; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .dynamic-column-select { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table > .p-datatable-wrapper > table { min-width: 1200px; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table-checkbox-row div:first-child { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .forge-datatable-wrap .alerts-table .p-datatable-scrollable-wrapper, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .forge-datatable-wrap .asset-table .p-datatable-scrollable-wrapper { height: 100%; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .forge-datatable-wrap .alerts-table .p-datatable-scrollable-wrapper .p-datatable-scrollable-view, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .forge-datatable-wrap .asset-table .p-datatable-scrollable-wrapper .p-datatable-scrollable-view { display: flex; flex-direction: column; height: 100%; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .forge-datatable-wrap .alerts-table .p-datatable-scrollable-wrapper .p-datatable-scrollable-view .p-datatable-scrollable-body, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .forge-datatable-wrap .asset-table .p-datatable-scrollable-wrapper .p-datatable-scrollable-view .p-datatable-scrollable-body { overflow-y: auto; height: 100%; max-height: 100% !important; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox { position: static; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box { background: rgba(0, 0, 0, 0) !important; border: none !important; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon { font-family: Honeywell-Icons; font-size: 1rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon::before, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon::before { content: \"\" !important; color: rgb(48, 48, 48); }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon.pi-check::before, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table:not(.expandable) table tbody.p-datatable-tbody .p-selection-column .p-checkbox .p-checkbox-box .p-checkbox-icon.pi-check::before { content: \"\" !important; color: rgb(48, 48, 48); }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table table th:not(.perAssetAlertActions), html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table table th:not(.perAssetAlertActions) { padding-right: 0px; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table table tr.p-datatable-emptymessage td, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table table tr.p-datatable-emptymessage td { font-size: 1rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table table td, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table table td { position: unset; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table table td .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table table td .cell-data-wrap { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table table td:not(.perAssetAlertActions) .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table table td:not(.perAssetAlertActions) .cell-data-wrap { padding-right: 0px; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .asset-table-alert-count-column .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .asset-table-alert-count-column .cell-data-wrap { padding-left: 0px; text-align: center; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .alerts-table-checkbox-row .p-column-title, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .alerts-table-checkbox-row .p-column-title { overflow: visible; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .alert-column-caseNumber .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .alert-column-caseNumber .cell-data-wrap { padding-right: 0px; text-overflow: unset; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .alert-column-caseNumber .cell-data-wrap .service-case-link-loader, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .alert-column-caseNumber .cell-data-wrap .service-case-link-loader { margin-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .alert-column-isAcknowledged .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .alert-column-isAcknowledged .cell-data-wrap { flex-flow: row; display: flex; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .alert-column-isAcknowledged .cell-data-wrap i, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .alert-column-isAcknowledged .cell-data-wrap i { color: rgb(238, 49, 36); font-weight: bold; width: 2rem; text-align: center; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .alert-column-isAcknowledged .cell-data-wrap .acknowledgement-link-loader, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .alert-column-isAcknowledged .cell-data-wrap .acknowledgement-link-loader { width: 2rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .asset-column-name .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .asset-column-name .cell-data-wrap { flex-flow: row; display: flex; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .asset-column-name .cell-data-wrap .asset-link-loader, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .asset-column-name .cell-data-wrap .asset-link-loader { width: 2rem; margin-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table th, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table td .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table th, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table td .cell-data-wrap { padding-left: 1rem; padding-right: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table [class$=\"column-priorityLevel\"] .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table [class$=\"column-priorityLevel\"] .cell-data-wrap { padding-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table .alert-column-isAcknowledged .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table .alert-column-isAcknowledged .cell-data-wrap { padding-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table .alerts-table-checkbox-row .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table .alerts-table-checkbox-row .cell-data-wrap { padding-right: 0px; padding-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table .bulkAlertSelector .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table .bulkAlertSelector .cell-data-wrap { padding-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table .asset-expander, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table .asset-expander { padding-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table .asset-expander .p-checkbox.p-component, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table .asset-expander .p-checkbox.p-component { left: 0px; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table .perAssetAlertActions .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table .perAssetAlertActions .cell-data-wrap { padding-right: 0.25rem; padding-left: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.narrow table .asset-table-alert-count-column .cell-data-wrap, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.narrow table .asset-table-alert-count-column .cell-data-wrap { padding-right: 0px; padding-left: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table .video-button, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table .video-button { border: none; left: -5px; top: 2px; position: relative; padding: 0px; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .table-skeleton > div > table > tbody > tr .alerts-table-checkbox-row > div > div { display: none; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table > div > table > thead > tr > th, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table > div > table > thead > tr > th { border-top: none !important; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.table-skeleton span[data-icon].acknowledgement-status-icon, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.table-skeleton span[data-icon].acknowledgement-status-icon { background-image: none !important; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.table-skeleton table, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.table-skeleton table { padding: 0px; overflow: auto; margin: 0px; list-style: none; left: 0px; animation: 1s linear 0s infinite normal forwards running alert-table-shimmer; background-image: linear-gradient(to right, rgb(240, 240, 240) 0%, rgb(226, 226, 226) 40%, rgb(240, 240, 240) 100%); background-repeat: no-repeat; background-size: 50%; background-color: rgb(240, 240, 240) !important; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr { background: none !important; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr div, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr div { height: 42px; border-width: 10px 0px; border-style: solid; border-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr td:first-child div, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr td:first-child div { border-left-width: 10px; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container .alerts-table.table-skeleton table tbody tr td:last-child div, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .asset-table.table-skeleton table tbody tr td:last-child div { border-right-width: 10px; padding: 0px; }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container #alert-dashboard-notification-container-id .ui.notification.important, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .service-case-creation.panel-overlay .ui.notification.important { border-color: rgb(241, 90, 79); }\r\nhtml:not(.honeywell-dark-theme) #root .alert-dashboard-container #alert-dashboard-notification-container-id .ui.notification.important .icon .h-icon, html:not(.honeywell-dark-theme) #root .alert-dashboard-container .service-case-creation.panel-overlay .ui.notification.important .icon .h-icon { color: rgb(241, 90, 79); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row { display: flex; align-items: center; background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row:not(:first-of-type) { padding-top: 0px; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row #refresh-dashboard-icon { display: flex; align-items: center; border-top: 0.0625rem solid rgb(208, 208, 208); border-right: 0.0625rem solid rgb(208, 208, 208); border-bottom: 0.0625rem solid rgb(208, 208, 208); border-image: initial; border-left: none; align-self: stretch; padding: 0px 8px; color: rgb(48, 48, 48); transition: color 0.1s linear; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row #refresh-dashboard-icon:hover { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row #refresh-dashboard-icon:active { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row #refresh-dashboard-icon.disabled { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row #refresh-dashboard-icon .disabled { cursor: not-allowed; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row .bulk-action-dropdown-wrapper { padding: 0px; margin-left: auto; width: 12rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row .ui.buttons.toggle-button-group .primary:hover { border-bottom: 0.125rem solid rgba(0, 0, 0, 0); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-header-row .ui.buttons.toggle-button-group .primary:focus { border-bottom-width: 0.125rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.single-input .input-wrap input.input-box { color: rgb(96, 96, 96); height: 2.5rem; background-color: rgb(240, 240, 240) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(240, 240, 240); color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(240, 240, 240); height: 2.5rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(240, 240, 240); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .scuf-textarea-wrapper textarea { background-color: rgb(240, 240, 240); color: rgb(96, 96, 96); resize: none; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .scuf-textarea-wrapper textarea:disabled { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .scuf-textarea-wrapper.readonly textarea { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .ui.input-label .input-label-message { color: rgb(48, 48, 48); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel [class~=\"scuf-grid\"][class~=\"col\"], html:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel [class~=\"scuf-grid\"][class*=\"col-\"], html:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel [class~=\"scuf-grid\"][class*=\"col_\"] { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel [class~=\"col\"], html:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel [class*=\"col-\"], html:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel [class*=\"col_\"] { padding: 0px 0.5rem 1rem !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel div.ui.input-label .input-label-message { color: rgb(48, 48, 48); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .icon-container { font-size: 0.875rem; color: rgb(48, 48, 48); line-height: 0; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .icon-container.disabled { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .icon-container .progress div { width: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .icon-container .progress div .rc-progress-circle-path { stroke: rgb(48, 48, 48) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .icon-control-success { color: rgb(126, 179, 56); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .alerts-panel-input { flex: 1 1 0px; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .flex-grow { flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .float-right { float: right; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .assignee-select-input { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .workflow-status-select-input { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .workflow-action-note-textarea { padding-top: 1rem; flex-grow: 1; display: flex; flex-flow: column; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .workflow-action-note-textarea textarea { resize: none; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .asset-panel-property-divider.ui.divider:not(.vertical):not(.horizontal) { border-top: 0.0625rem solid rgb(208, 208, 208); }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .select-with-control { padding-bottom: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .select-with-control .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator { left: 0px; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .select-with-control .ui.scuf-dropdown-wrapper.property-digital-input .below-text .error-message .quality-indicator::after { display: none; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .no-padding { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .spacing-top { margin-top: 16px; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .shadow-top { box-shadow: rgba(0, 0, 0, 0.1) 0px -5px 5px -5px; width: 485px; height: 45px; margin: 0px; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .shadow-top .bottom-buttons-container { width: 480px; padding: 12px; margin-top: 4px; }\r\nhtml:not(.honeywell-dark-theme) .alert-dashboard-container .alert-details-panel .sendEmailCheckbox { margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .details-panel-base { background-color: rgb(255, 255, 255); color: rgb(48, 48, 48); box-shadow: rgba(0, 0, 0, 0.1) -1px 0px 1px 0px; }\r\nhtml:not(.honeywell-dark-theme) .details-panel-base .panel-sub-header { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .details-panel-base .detail-panel-base-loader-wrapper { position: relative; height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-panel-overlay { position: fixed; display: flex; flex-direction: row-reverse; z-index: 1090; top: 38px; right: 0px; height: calc(-38px + 100vh); }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-panel-overlay .alert-filter-panel { max-height: 100vh; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-panel-overlay .alert-filter-panel .FilterControls__filterControlContainer { max-height: calc(-118px + 100vh) !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-panel-overlay .alert-filter-panel .FilterAccordion__filterAccordionWrapper .close-icon { margin: 0px; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-summary { display: flex; padding: 1rem 1rem 1rem 0px; flex-grow: 1; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-summary .filter-results { margin: 2px 0px; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-summary .alert-filter-link-clear-all-filters { margin-left: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-summary .alert-filter-chip { padding: 0px 0.75rem; margin: 2px 0px 2px 1rem; outline: rgb(208, 208, 208) solid 0.0625rem; box-sizing: border-box; border-radius: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-summary .alert-filter-chip-close-icon { margin-left: 0.25rem; vertical-align: unset; cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-summary .filter-divider { align-self: stretch; }\r\nhtml:not(.honeywell-dark-theme) .alert-filter-summary .filter-chip-container { display: flex; flex-flow: wrap; }\r\nhtml:not(.honeywell-dark-theme) span[data-icon].acknowledgement-status-icon { height: 2rem; width: 2rem; display: block; margin-right: 6px; background: center center no-repeat; }\r\nhtml:not(.honeywell-dark-theme) span[data-icon].acknowledgement-status-icon[data-icon=\"acknowledged\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3crect width='24' height='24' fill='none'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.82205 13.8525L6.60352 12.602L11.9843 3L15.1245 8.54599L13.9124 9.81521L11.9996 6.41502L7.82205 13.8525Z' fill='%23888888'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.37922 16.5742L5.59821 17.817L4.86488 19.1309H7.00801L8.66532 20.8232H2L4.37922 16.5742Z' fill='%23888888'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.238 13.9663L19.1337 19.1269H11.1759L9.49414 20.81H22.0012L17.4536 12.7305L16.238 13.9663Z' fill='%23888888'/%3e %3cpath d='M19.8166 5.8418L21.007 7.02927L9.02475 19.4825L3.07422 13.3562L4.25916 12.163L9.01914 17.0636L19.8166 5.8418Z' fill='%23888888'/%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-icon].acknowledgement-status-icon[data-icon=\"unacknowledged\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3crect width='24' height='24' fill='none'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M16.2385 13.9664L19.1344 19.1273H11.176L9.49414 20.8106H22.0021L17.4542 12.7305L16.2385 13.9664Z' fill='%23888888'/%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M 19.122 19.123 L 21.922 20.752 L 1.999 20.864 L 11.985 3 L 18.686 14.932 L 17.355 15.941 L 12 6.415 L 5.045 19.12 L 19.122 19.123 Z' fill='%23888888'/%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-icon].asset-link-icon { height: 2rem; width: 2rem; display: block; background: url(\"data&colon;image/svg+xml,%3csvg width='27' height='24' viewBox='0 0 27 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.9539 14.7586C10.4299 14.7586 9.18937 13.5196 9.18937 11.9948C9.18937 10.4708 10.4299 9.23108 11.9539 9.23108C13.4779 9.23108 14.7176 10.4708 14.7176 11.9948C14.7176 13.5196 13.4779 14.7586 11.9539 14.7586ZM11.9539 8.50657C10.0309 8.50657 8.46563 10.0718 8.46563 11.9948C8.46563 13.9186 10.0309 15.4838 11.9539 15.4838C13.8769 15.4838 15.4421 13.9186 15.4421 11.9948C15.4421 10.0718 13.8769 8.50657 11.9539 8.50657ZM18.7177 16.8885L17.0797 18.6L15.0607 17.667L13.989 18.1395L13.3357 20.2275L11.0295 20.319L10.2937 18.243L9.03975 17.7353L7.0185 18.735L5.481 17.2155L6.39075 15.1988L5.868 13.8653L3.77325 13.0575L3.73575 10.8938L5.86275 10.1558L6.393 8.859L5.45925 6.86175L7.04325 5.2785L9.063 6.27825L10.2982 5.766L10.974 3.74025C11.4307 3.732 12.4747 3.72825 13.266 3.7275L14.1127 5.94225L15.09 6.39825L16.9822 5.3985L18.7147 7.1505L17.7142 9.15225L18.1395 10.1355L20.175 10.8285V13.1685L18.0585 13.9545L17.7195 14.8703L18.7177 16.8885ZM20.9032 13.6755V10.3073L18.6795 9.5505L18.5167 9.17475L19.5998 7.008L17.1195 4.5015L15.0705 5.586L14.688 5.40675L13.767 3H13.5165C10.4738 3 10.4738 3 10.3718 3.2475L9.7125 5.22075L9.09 5.4795L6.897 4.395L4.584 6.708L5.59875 8.8785L5.31375 9.57525L3 10.3778L3.054 13.5608L5.30775 14.4293L5.601 15.1793L4.60875 17.376L6.876 19.617L9.069 18.5325L9.71775 18.795L10.5225 21.0683L13.8787 20.934L14.5845 18.672L15.0532 18.4658L17.2477 19.4798L19.5975 17.0235L18.5115 14.829L18.6248 14.5208L20.9032 13.6755Z' fill='%23303030'/%3e %3cmask id='mask0' mask-type='alpha' maskUnits='userSpaceOnUse' x='3' y='3' width='18' height='19'%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.9539 14.7586C10.4299 14.7586 9.18937 13.5196 9.18937 11.9948C9.18937 10.4708 10.4299 9.23108 11.9539 9.23108C13.4779 9.23108 14.7176 10.4708 14.7176 11.9948C14.7176 13.5196 13.4779 14.7586 11.9539 14.7586ZM11.9539 8.50657C10.0309 8.50657 8.46563 10.0718 8.46563 11.9948C8.46563 13.9186 10.0309 15.4838 11.9539 15.4838C13.8769 15.4838 15.4421 13.9186 15.4421 11.9948C15.4421 10.0718 13.8769 8.50657 11.9539 8.50657ZM18.7177 16.8885L17.0797 18.6L15.0607 17.667L13.989 18.1395L13.3357 20.2275L11.0295 20.319L10.2937 18.243L9.03975 17.7353L7.0185 18.735L5.481 17.2155L6.39075 15.1988L5.868 13.8653L3.77325 13.0575L3.73575 10.8938L5.86275 10.1558L6.393 8.859L5.45925 6.86175L7.04325 5.2785L9.063 6.27825L10.2982 5.766L10.974 3.74025C11.4307 3.732 12.4747 3.72825 13.266 3.7275L14.1127 5.94225L15.09 6.39825L16.9822 5.3985L18.7147 7.1505L17.7142 9.15225L18.1395 10.1355L20.175 10.8285V13.1685L18.0585 13.9545L17.7195 14.8703L18.7177 16.8885ZM20.9032 13.6755V10.3073L18.6795 9.5505L18.5167 9.17475L19.5998 7.008L17.1195 4.5015L15.0705 5.586L14.688 5.40675L13.767 3H13.5165C10.4738 3 10.4738 3 10.3718 3.2475L9.7125 5.22075L9.09 5.4795L6.897 4.395L4.584 6.708L5.59875 8.8785L5.31375 9.57525L3 10.3778L3.054 13.5608L5.30775 14.4293L5.601 15.1793L4.60875 17.376L6.876 19.617L9.069 18.5325L9.71775 18.795L10.5225 21.0683L13.8787 20.934L14.5845 18.672L15.0532 18.4658L17.2477 19.4798L19.5975 17.0235L18.5115 14.829L18.6248 14.5208L20.9032 13.6755Z' fill='%23303030'/%3e %3c/mask%3e %3cg mask='url(%23mask0)'%3e %3c/g%3e %3c/svg%3e\") 50% center / cover no-repeat; cursor: pointer !important; }\r\nhtml:not(.honeywell-dark-theme) .priority-icon { height: 2rem; width: 2rem; display: block; margin-right: 6px; background: center center no-repeat; }\r\nhtml:not(.honeywell-dark-theme) div.priority-icon [data-ffbs-iconid] { width: 2rem; height: 2rem; background: center center no-repeat; }\r\nhtml:not(.honeywell-dark-theme) div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-critical\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3ecritical%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23EE3124' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-high\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3ehigh%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23f37021' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23f37021' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23f37021' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-medium\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3emedium%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/high' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='high24x24' transform='translate(3.000000, 3.000000)'%3e %3ccircle id='Oval-3' fill='%23f5a623' cx='9' cy='9' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23f5a623' cx='9' cy='9' r='8.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-low\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3elow%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/low' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='low24x24' transform='translate(6.000000, 6.000000)' fill='%231272b2'%3e %3ccircle cx='6' cy='6' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-critical-v3\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3ecritical%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23EE3124' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-high-v3\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eurgent24x24%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23EE3124' cx='12' cy='12' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-medium-v3\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/high%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/high' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='high24x24' transform='translate(3.000000, 3.000000)'%3e %3ccircle id='Oval-3' fill='%23F37021' cx='9' cy='9' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) div.priority-icon [data-ffbs-iconid][data-ffbs-iconid=\"priority-low-v3\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/low%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/low' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='low24x24' transform='translate(6.000000, 6.000000)' fill='%23FFC627'%3e %3ccircle cx='6' cy='6' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-priority].priority-icon[data-priority=\"high\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eurgent24x24%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23EE3124' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23EE3124' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-priority].priority-icon[data-priority=\"medium\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/high%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/high' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='high24x24' transform='translate(3.000000, 3.000000)'%3e %3ccircle id='Oval-3' fill='%23F37021' cx='9' cy='9' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23F37021' cx='9' cy='9' r='8.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-priority].priority-icon[data-priority=\"low\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/low%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/low' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='low24x24' transform='translate(6.000000, 6.000000)' fill='%23FFC627'%3e %3ccircle cx='6' cy='6' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-priority].priority-icon[data-priority=\"high-inactive\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eurgent24x24%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='Icons' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='icons/priority/urgent'%3e %3cg id='urgent24x24'%3e %3ccircle id='Oval-3' fill='%23888888' cx='12' cy='12' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23888888' cx='12' cy='12' r='8.5'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23888888' cx='12' cy='12' r='11.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-priority].priority-icon[data-priority=\"medium-inactive\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/high%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/high' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='high24x24' transform='translate(3.000000, 3.000000)'%3e %3ccircle id='Oval-3' fill='%23888888' cx='9' cy='9' r='6'%3e%3c/circle%3e %3ccircle id='Oval-3' stroke='%23888888' cx='9' cy='9' r='8.5'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-priority].priority-icon[data-priority=\"low-inactive\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='24px' height='24px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3e %3c!-- Generator: Sketch 53.2 (72643) - https://sketchapp.com --%3e %3ctitle%3eicons/priority/low%3c/title%3e %3cdesc%3eCreated with Sketch.%3c/desc%3e %3cg id='icons/priority/low' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3e %3cg id='low24x24' transform='translate(6.000000, 6.000000)' fill='%23888888'%3e %3ccircle cx='6' cy='6' r='6'%3e%3c/circle%3e %3c/g%3e %3c/g%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-icon][class^=\"workflow-status-icon\"] { height: 2rem; width: 2rem; display: block; background: center center no-repeat; margin-left: 6px; }\r\nhtml:not(.honeywell-dark-theme) span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"waiting-for-input\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_1509_121291)'%3e %3cpath d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M4.04993 8.80005C4.46414 8.80005 4.79993 8.46426 4.79993 8.05005C4.79993 7.63584 4.46414 7.30005 4.04993 7.30005C3.63571 7.30005 3.29993 7.63584 3.29993 8.05005C3.29993 8.46426 3.63571 8.80005 4.04993 8.80005Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M7.94995 8.79999C8.36416 8.79999 8.69995 8.4642 8.69995 8.04999C8.69995 7.63577 8.36416 7.29999 7.94995 7.29999C7.53574 7.29999 7.19995 7.63577 7.19995 8.04999C7.19995 8.4642 7.53574 8.79999 7.94995 8.79999Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M11.85 8.80005C12.2642 8.80005 12.6 8.46426 12.6 8.05005C12.6 7.63584 12.2642 7.30005 11.85 7.30005C11.4358 7.30005 11.1 7.63584 11.1 8.05005C11.1 8.46426 11.4358 8.80005 11.85 8.80005Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3c/g%3e %3cdefs%3e %3cclipPath id='clip0_1509_121291'%3e %3crect width='16' height='16' fill='white'/%3e %3c/clipPath%3e %3c/defs%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"identified\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_1356_106279)'%3e %3cpath d='M8.23071 5.2V8M8.23071 10.8H8.22371M1.23071 8C1.23071 4.13401 4.36472 1 8.23071 1C12.0967 1 15.2307 4.13401 15.2307 8C15.2307 11.866 12.0967 15 8.23071 15C4.36472 15 1.23071 11.866 1.23071 8Z' stroke='%23F37021' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3c/g%3e %3cdefs%3e %3cclipPath id='clip0_1356_106279'%3e %3crect width='16' height='16' fill='white' transform='matrix(-1 0 0 -1 16.2307 16)'/%3e %3c/clipPath%3e %3c/defs%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"in-progress\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cg clip-path='url(%23clip0_1509_121258)'%3e %3cpath d='M8 15C11.866 15 15 11.866 15 8C15 4.13401 11.866 1 8 1C4.13401 1 1 4.13401 1 8C1 11.866 4.13401 15 8 15Z' stroke='%23FFC627' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M4.04993 8.80005C4.46414 8.80005 4.79993 8.46426 4.79993 8.05005C4.79993 7.63584 4.46414 7.30005 4.04993 7.30005C3.63571 7.30005 3.29993 7.63584 3.29993 8.05005C3.29993 8.46426 3.63571 8.80005 4.04993 8.80005Z' stroke='%23FFC627' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M7.94995 8.79999C8.36416 8.79999 8.69995 8.4642 8.69995 8.04999C8.69995 7.63577 8.36416 7.29999 7.94995 7.29999C7.53574 7.29999 7.19995 7.63577 7.19995 8.04999C7.19995 8.4642 7.53574 8.79999 7.94995 8.79999Z' stroke='%23FFC627' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3cpath d='M11.85 8.80005C12.2642 8.80005 12.6 8.46426 12.6 8.05005C12.6 7.63584 12.2642 7.30005 11.85 7.30005C11.4358 7.30005 11.1 7.63584 11.1 8.05005C11.1 8.46426 11.4358 8.80005 11.85 8.80005Z' stroke='%23FFC627' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e %3c/g%3e %3cdefs%3e %3cclipPath id='clip0_1509_121258'%3e %3crect width='16' height='16' fill='white'/%3e %3c/clipPath%3e %3c/defs%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"done\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8C16 12.4183 12.4183 16 8 16ZM8 14.6667C11.6819 14.6667 14.6667 11.6819 14.6667 8C14.6667 4.3181 11.6819 1.33333 8 1.33333C4.3181 1.33333 1.33333 4.3181 1.33333 8C1.33333 11.6819 4.3181 14.6667 8 14.6667ZM11.4714 6.2357L10.5286 5.29289L7 8.82149L5.47141 7.29289L4.5286 8.2357L7 10.7071L11.4714 6.2357Z' fill='%237EB338'/%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) span[data-icon][class^=\"workflow-status-icon\"][data-icon=\"transferred-to-field\"] { background-image: url(\"data&colon;image/svg+xml,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e %3cpath fill-rule='evenodd' clip-rule='evenodd' d='M8 16C3.58172 16 0 12.4183 0 8C0 3.58172 3.58172 0 8 0C12.4183 0 16 3.58172 16 8C16 12.4183 12.4183 16 8 16ZM8 14.6667C11.6819 14.6667 14.6667 11.6819 14.6667 8C14.6667 4.3181 11.6819 1.33333 8 1.33333C4.3181 1.33333 1.33333 4.3181 1.33333 8C1.33333 11.6819 4.3181 14.6667 8 14.6667ZM11.4714 6.2357L10.5286 5.29289L7 8.82149L5.47141 7.29289L4.5286 8.2357L7 10.7071L11.4714 6.2357Z' fill='%237EB338'/%3e %3c/svg%3e\"); }\r\nhtml:not(.honeywell-dark-theme) .disclosure { display: flex; }\r\nhtml:not(.honeywell-dark-theme) .disclosure .legal-text { display: inline-block; margin-left: 1rem; color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .disclosure .badge-info { font-weight: bold; }\r\nhtml:not(.honeywell-dark-theme) .disclosure .information-icon-tooltip .content { word-break: break-all; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay { position: fixed; display: flex; flex-direction: row-reverse; z-index: 1100; inset: 0px; height: 100%; width: 100%; background: rgba(224, 224, 224, 0.4) !important; backdrop-filter: none !important; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay div.ui.input-label .input-label-message { color: rgb(48, 48, 48); font-size: 0.75rem; font-weight: 500; display: flex; align-items: center; overflow: hidden; cursor: auto !important; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay div.ui.input-label .input-label-message > span:first-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay div.ui.input-label .input-label-message .popup-pointer { width: 1rem; margin-top: -0.1rem; margin-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.single-input .input-wrap input.input-box { color: rgb(96, 96, 96); height: 2.5rem; background-color: rgb(240, 240, 240) !important; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.single-input.disabled .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.single-input.readonly .input-wrap input.input-box { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.single-input.focused .input-wrap input.input-box { background-color: rgb(240, 240, 240); color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown { background-color: rgb(240, 240, 240); height: 2.5rem; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown .text { color: rgb(96, 96, 96); }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active { background-color: rgb(240, 240, 240); }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper .ui.dropdown.active .text { color: rgb(64, 64, 64); }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper.disabled .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown { background-color: rgb(255, 255, 255); }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.scuf-dropdown-wrapper.readonly .ui.dropdown .text { color: rgb(176, 176, 176); }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .scuf-textarea-wrapper textarea { background-color: rgb(240, 240, 240); color: rgb(96, 96, 96); resize: none; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .scuf-textarea-wrapper textarea:disabled { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .scuf-textarea-wrapper.readonly textarea { background-color: rgb(255, 255, 255) !important; color: rgb(176, 176, 176) !important; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .ui.input-label .input-label-message { color: rgb(48, 48, 48); font-weight: 500; font-size: 0.75rem; cursor: auto; margin-right: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel { padding-bottom: 0px; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel [class~=\"scuf-grid\"][class~=\"col\"], html:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel [class~=\"scuf-grid\"][class*=\"col-\"], html:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel [class~=\"scuf-grid\"][class*=\"col_\"] { padding: 0px !important; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel [class~=\"col\"], html:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel [class*=\"col-\"], html:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel [class*=\"col_\"] { padding: 0px 0.5rem 1rem !important; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel [role=\"option\"].item { display: flex; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel [role=\"option\"].item [data-priority].priority-icon { height: 1rem; width: 1rem; background-size: cover; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel .description-textarea { flex-grow: 1; display: flex; flex-flow: column; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel .description-textarea textarea { flex-grow: 1; min-height: auto; resize: none; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel .create-service-case-button { float: right; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel .grid-description { flex-flow: column; flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel .grid-column-textarea { display: flex; flex-grow: 1; flex-basis: auto; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel .grid-column-create-service-case, html:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-panel .grid-column-acknowledge-alert { flex-basis: auto; }\r\nhtml:not(.honeywell-dark-theme) .service-case-creation.panel-overlay .service-case-creation-fields-content { overflow: auto; display: flex; flex-flow: column; flex-grow: 1; }\r\nhtml:not(.honeywell-dark-theme) .alert-column-slaStatus .slaStatus { padding-right: 1rem; display: flex; align-items: center; justify-content: left; }\r\nhtml:not(.honeywell-dark-theme) .alert-column-slaStatus .slaStatus-progress-bar { width: 60%; height: 100%; padding-right: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-column-slaStatus .slaStatus-progress-bar .progress { margin-bottom: 0rem !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-column-slaStatus .slaStatus-progress-bar .progress:last-child { margin: 0rem !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-column-slaStatus .slaStatus-progress-bar .scuf-progress-wrapper.xsmall .bar { height: 0.3125rem !important; }\r\nhtml:not(.honeywell-dark-theme) .alert-column-slaStatus .slaStatus-progress-bar .scuf-progress-wrapper.low-bar-bg .ui.progress .bar { background-color: rgb(238, 49, 36); }\r\nhtml:not(.honeywell-dark-theme) .alert-column-slaStatus .slaStatus-progress-bar .scuf-progress-wrapper.medium-bar-bg .ui.progress .bar { background-color: rgb(233, 115, 13); }\r\nhtml:not(.honeywell-dark-theme) .alert-column-slaStatus .slaStatus-progress-bar .scuf-progress-wrapper.high-bar-bg .ui.progress .bar { background-color: rgb(39, 157, 43); }\r\nhtml:not(.honeywell-dark-theme) .asset-action-popup-menu.popup.menu { box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px; margin: 0px; border: 0.0625rem solid rgb(208, 208, 208); overflow: hidden; }\r\nhtml:not(.honeywell-dark-theme) .asset-action-popup-menu.popup.menu.ui.menu, html:not(.honeywell-dark-theme) .asset-action-popup-menu.popup.menu .ui.menu { min-height: auto; }\r\nhtml:not(.honeywell-dark-theme) .asset-action-popup-menu.popup.menu .vertical-menu .item::before { background: rgba(0, 0, 0, 0); }\r\nhtml:not(.honeywell-dark-theme) .asset-table .asset-actions-column { display: flex; flex-direction: row-reverse; }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dvm-modal-player { padding: 1rem; width: calc(470px + 2rem); height: calc(306px + 2rem); }\r\nhtml:not(.honeywell-dark-theme) .ui.modal.dvm-modal-player .video-player-iframe { width: 100%; height: 100%; border: none; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card { height: 100%; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .alert-widget-content { display: flex; flex-flow: column; height: 100%; min-height: 0px; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .alert-widget-content-summary { margin-top: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .alert-widget-footer { display: flex; align-items: center; margin-top: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .summary-value { font-size: 2.5rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; padding-bottom: 0.875rem; color: rgb(48, 48, 48); font-weight: 700; line-height: unset; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .summary-value:not(:first-child) { margin-left: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .summary-label { font-size: 0.75rem; font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; line-height: 1.125rem; color: rgb(96, 96, 96); font-weight: 700; text-transform: uppercase; padding-left: 0.5rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .not-ok-error-state { height: auto; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .relative-count-rating { flex-grow: 1; overflow: auto; padding-right: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .relative-count-rating > div { line-height: 1.25rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .relative-count-rating > div:not(:first-child) { margin-top: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .relative-count-rating table { width: 100%; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .relative-count-rating .column-series-name { padding-right: 0.5rem; font-size: 0.75rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .relative-count-rating .rating-category { display: flex; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .relative-count-rating .counts-wrapper { display: flex; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .relative-count-rating .category-bar { height: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .relative-count-rating .total { padding-left: 0.75rem; font-weight: 700; font-size: 1rem; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .footer { display: flex; align-items: center; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .view-all-alerts-link { font-family: \"Honeywell Sans Web\", Arial, Helvetica, sans-serif; cursor: pointer; text-transform: uppercase; font-weight: 700; font-size: 14px; color: rgb(0, 94, 172); flex: 1 0 auto; text-align: right; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .view-all-alerts-link:hover, html:not(.honeywell-dark-theme) .alert-widget-card .view-all-alerts-link:active { text-decoration: underline; }\r\nhtml:not(.honeywell-dark-theme) .alert-widget-card .has-action { cursor: pointer; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating-tooltip td { padding: 0.25rem; }\r\nhtml:not(.honeywell-dark-theme) .relative-count-rating-tooltip .category-count-indicator { height: 1rem; width: 4px; }\r\n</style><style id=\"react-to-print-16\">.Toastify__toast-container { z-index: 9999; transform: translate3d(0px, 0px, 9999px); position: fixed; padding: 4px; width: 320px; box-sizing: border-box; color: rgb(255, 255, 255); }\r\n.Toastify__toast-container--top-left { top: 1em; left: 1em; }\r\n.Toastify__toast-container--top-center { top: 1em; left: 50%; transform: translateX(-50%); }\r\n.Toastify__toast-container--top-right { top: 1em; right: 1em; }\r\n.Toastify__toast-container--bottom-left { bottom: 1em; left: 1em; }\r\n.Toastify__toast-container--bottom-center { bottom: 1em; left: 50%; transform: translateX(-50%); }\r\n.Toastify__toast-container--bottom-right { bottom: 1em; right: 1em; }\r\n@media only screen and (max-width: 480px) {\n  .Toastify__toast-container { width: 100vw; padding: 0px; left: 0px; margin: 0px; }\n  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right { top: 0px; transform: translateX(0px); }\n  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right { bottom: 0px; transform: translateX(0px); }\n  .Toastify__toast-container--rtl { right: 0px; left: initial; }\n}\r\n.Toastify__toast { position: relative; min-height: 64px; box-sizing: border-box; margin-bottom: 1rem; padding: 8px; border-radius: 1px; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 10px 0px, rgba(0, 0, 0, 0.05) 0px 2px 15px 0px; display: flex; justify-content: space-between; max-height: 800px; overflow: hidden; font-family: sans-serif; cursor: pointer; direction: ltr; }\r\n.Toastify__toast--rtl { direction: rtl; }\r\n.Toastify__toast--dark { background: rgb(18, 18, 18); color: rgb(255, 255, 255); }\r\n.Toastify__toast--default { background: rgb(255, 255, 255); color: rgb(170, 170, 170); }\r\n.Toastify__toast--info { background: rgb(52, 152, 219); }\r\n.Toastify__toast--success { background: rgb(7, 188, 12); }\r\n.Toastify__toast--warning { background: rgb(241, 196, 15); }\r\n.Toastify__toast--error { background: rgb(231, 76, 60); }\r\n.Toastify__toast-body { margin: auto 0px; flex: 1 1 auto; }\r\n@media only screen and (max-width: 480px) {\n  .Toastify__toast { margin-bottom: 0px; }\n}\r\n.Toastify__close-button { color: rgb(255, 255, 255); background: rgba(0, 0, 0, 0); outline: none; border: none; padding: 0px; cursor: pointer; opacity: 0.7; transition: 0.3s; align-self: flex-start; }\r\n.Toastify__close-button--default { color: rgb(0, 0, 0); opacity: 0.3; }\r\n.Toastify__close-button > svg { fill: currentcolor; height: 16px; width: 14px; }\r\n.Toastify__close-button:hover, .Toastify__close-button:focus { opacity: 1; }\r\n@keyframes Toastify__trackProgress { \n  0% { transform: scaleX(1); }\n  100% { transform: scaleX(0); }\n}\r\n.Toastify__progress-bar { position: absolute; bottom: 0px; left: 0px; width: 100%; height: 5px; z-index: 9999; opacity: 0.7; background-color: rgba(255, 255, 255, 0.7); transform-origin: left center; }\r\n.Toastify__progress-bar--animated { animation: auto linear 0s 1 normal forwards running Toastify__trackProgress; }\r\n.Toastify__progress-bar--controlled { transition: transform 0.2s; }\r\n.Toastify__progress-bar--rtl { right: 0px; left: initial; transform-origin: right center; }\r\n.Toastify__progress-bar--default { background: linear-gradient(to right, rgb(76, 217, 100), rgb(90, 200, 250), rgb(0, 122, 255), rgb(52, 170, 220), rgb(88, 86, 214), rgb(255, 45, 85)); }\r\n.Toastify__progress-bar--dark { background: rgb(187, 134, 252); }\r\n@keyframes Toastify__bounceInRight { \n  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }\n  0% { opacity: 0; transform: translate3d(3000px, 0px, 0px); }\n  60% { opacity: 1; transform: translate3d(-25px, 0px, 0px); }\n  75% { transform: translate3d(10px, 0px, 0px); }\n  90% { transform: translate3d(-5px, 0px, 0px); }\n  100% { transform: none; }\n}\r\n@keyframes Toastify__bounceOutRight { \n  20% { opacity: 1; transform: translate3d(-20px, 0px, 0px); }\n  100% { opacity: 0; transform: translate3d(2000px, 0px, 0px); }\n}\r\n@keyframes Toastify__bounceInLeft { \n  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }\n  0% { opacity: 0; transform: translate3d(-3000px, 0px, 0px); }\n  60% { opacity: 1; transform: translate3d(25px, 0px, 0px); }\n  75% { transform: translate3d(-10px, 0px, 0px); }\n  90% { transform: translate3d(5px, 0px, 0px); }\n  100% { transform: none; }\n}\r\n@keyframes Toastify__bounceOutLeft { \n  20% { opacity: 1; transform: translate3d(20px, 0px, 0px); }\n  100% { opacity: 0; transform: translate3d(-2000px, 0px, 0px); }\n}\r\n@keyframes Toastify__bounceInUp { \n  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }\n  0% { opacity: 0; transform: translate3d(0px, 3000px, 0px); }\n  60% { opacity: 1; transform: translate3d(0px, -20px, 0px); }\n  75% { transform: translate3d(0px, 10px, 0px); }\n  90% { transform: translate3d(0px, -5px, 0px); }\n  100% { transform: translate3d(0px, 0px, 0px); }\n}\r\n@keyframes Toastify__bounceOutUp { \n  20% { transform: translate3d(0px, -10px, 0px); }\n  40%, 45% { opacity: 1; transform: translate3d(0px, 20px, 0px); }\n  100% { opacity: 0; transform: translate3d(0px, -2000px, 0px); }\n}\r\n@keyframes Toastify__bounceInDown { \n  0%, 60%, 75%, 90%, 100% { animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }\n  0% { opacity: 0; transform: translate3d(0px, -3000px, 0px); }\n  60% { opacity: 1; transform: translate3d(0px, 25px, 0px); }\n  75% { transform: translate3d(0px, -10px, 0px); }\n  90% { transform: translate3d(0px, 5px, 0px); }\n  100% { transform: none; }\n}\r\n@keyframes Toastify__bounceOutDown { \n  20% { transform: translate3d(0px, 10px, 0px); }\n  40%, 45% { opacity: 1; transform: translate3d(0px, -20px, 0px); }\n  100% { opacity: 0; transform: translate3d(0px, 2000px, 0px); }\n}\r\n.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left { animation-name: Toastify__bounceInLeft; }\r\n.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right { animation-name: Toastify__bounceInRight; }\r\n.Toastify__bounce-enter--top-center { animation-name: Toastify__bounceInDown; }\r\n.Toastify__bounce-enter--bottom-center { animation-name: Toastify__bounceInUp; }\r\n.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left { animation-name: Toastify__bounceOutLeft; }\r\n.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right { animation-name: Toastify__bounceOutRight; }\r\n.Toastify__bounce-exit--top-center { animation-name: Toastify__bounceOutUp; }\r\n.Toastify__bounce-exit--bottom-center { animation-name: Toastify__bounceOutDown; }\r\n@keyframes Toastify__zoomIn { \n  0% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }\n  50% { opacity: 1; }\n}\r\n@keyframes Toastify__zoomOut { \n  0% { opacity: 1; }\n  50% { opacity: 0; transform: scale3d(0.3, 0.3, 0.3); }\n  100% { opacity: 0; }\n}\r\n.Toastify__zoom-enter { animation-name: Toastify__zoomIn; }\r\n.Toastify__zoom-exit { animation-name: Toastify__zoomOut; }\r\n@keyframes Toastify__flipIn { \n  0% { transform: perspective(400px) rotate3d(1, 0, 0, 90deg); animation-timing-function: ease-in; opacity: 0; }\n  40% { transform: perspective(400px) rotate3d(1, 0, 0, -20deg); animation-timing-function: ease-in; }\n  60% { transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; }\n  80% { transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }\n  100% { transform: perspective(400px); }\n}\r\n@keyframes Toastify__flipOut { \n  0% { transform: perspective(400px); }\n  30% { transform: perspective(400px) rotate3d(1, 0, 0, -20deg); opacity: 1; }\n  100% { transform: perspective(400px) rotate3d(1, 0, 0, 90deg); opacity: 0; }\n}\r\n.Toastify__flip-enter { animation-name: Toastify__flipIn; }\r\n.Toastify__flip-exit { animation-name: Toastify__flipOut; }\r\n@keyframes Toastify__slideInRight { \n  0% { transform: translate3d(110%, 0px, 0px); visibility: visible; }\n  100% { transform: translate3d(0px, 0px, 0px); }\n}\r\n@keyframes Toastify__slideInLeft { \n  0% { transform: translate3d(-110%, 0px, 0px); visibility: visible; }\n  100% { transform: translate3d(0px, 0px, 0px); }\n}\r\n@keyframes Toastify__slideInUp { \n  0% { transform: translate3d(0px, 110%, 0px); visibility: visible; }\n  100% { transform: translate3d(0px, 0px, 0px); }\n}\r\n@keyframes Toastify__slideInDown { \n  0% { transform: translate3d(0px, -110%, 0px); visibility: visible; }\n  100% { transform: translate3d(0px, 0px, 0px); }\n}\r\n@keyframes Toastify__slideOutRight { \n  0% { transform: translate3d(0px, 0px, 0px); }\n  100% { visibility: hidden; transform: translate3d(110%, 0px, 0px); }\n}\r\n@keyframes Toastify__slideOutLeft { \n  0% { transform: translate3d(0px, 0px, 0px); }\n  100% { visibility: hidden; transform: translate3d(-110%, 0px, 0px); }\n}\r\n@keyframes Toastify__slideOutDown { \n  0% { transform: translate3d(0px, 0px, 0px); }\n  100% { visibility: hidden; transform: translate3d(0px, 500px, 0px); }\n}\r\n@keyframes Toastify__slideOutUp { \n  0% { transform: translate3d(0px, 0px, 0px); }\n  100% { visibility: hidden; transform: translate3d(0px, -500px, 0px); }\n}\r\n.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left { animation-name: Toastify__slideInLeft; }\r\n.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right { animation-name: Toastify__slideInRight; }\r\n.Toastify__slide-enter--top-center { animation-name: Toastify__slideInDown; }\r\n.Toastify__slide-enter--bottom-center { animation-name: Toastify__slideInUp; }\r\n.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left { animation-name: Toastify__slideOutLeft; }\r\n.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right { animation-name: Toastify__slideOutRight; }\r\n.Toastify__slide-exit--top-center { animation-name: Toastify__slideOutUp; }\r\n.Toastify__slide-exit--bottom-center { animation-name: Toastify__slideOutDown; }\r\n</style><style id=\"react-to-print-17\">@page { margin: 15mm !important; }\r\n</style></head><body class=\"export-word insight-builder-print-container\"><div class=\"preview\"><style>@page { margin: 15mm !important; }</style><div class=\"sc-gtsrHT gfuSqG panel-overlay\"><div data-testid=\"loading-overlay\" class=\"ui loader-wrap loading\"><div class=\"ui large text loader loader\">Loading...</div><div class=\"color-overlay\" style=\"opacity: 0.8;\"></div></div><div class=\"loader-content\"></div></div><div class=\"dashboard-preview print\" data-testid=\"dashboard-preview\"><div data-testid=\"dashboard-title-input\" class=\"ui single-input dashboard-title-input no-print fluid\"><div class=\"input-wrap\"><input type=\"text\" class=\"input-box\" placeholder=\"Enter dashboard title...\" data-testid=\"dashboard-title-input\" step=\"1\" value=\"Alerts Details\"></div></div><div class=\"view-level-header no-print\"><div class=\"view-level-tabs\"></div><div class=\"ui checked toggle checkbox\"><input class=\"hidden\" readonly=\"\" tabindex=\"0\" type=\"checkbox\" value=\"\" checked=\"\"><label>Use for all published view levels</label></div></div><header class=\"print-header only-print\"><div class=\"primary-title\">Alerts Details</div><table><tbody><tr><td class=\"secondary-title\">Customer: </td><td>PerfEnvEOM_Cust05</td></tr><tr><td class=\"secondary-title\">Facilities: </td><td>PerfEnvEOM_Cust05_Site03, perfenv_eom_cust05_site1</td></tr><tr><td class=\"secondary-title\">Date Range: </td><td>Feb 25, 2025 - Mar 4, 2025</td></tr></tbody></table></header><div class=\"react-grid-layout\" style=\"height: 1562px;\"><div class=\"react-grid-item react-draggable react-resizable\" style=\"width: 532px; height: 484px; position: absolute; top: 12px; left: 12px;\"><span data-testid=\"widget-select-wrapper\"><div class=\"ui raised card custom-display-card donut-card dashboard active printing\"><div class=\"tile-actions\"><div class=\"tile-action-icon\" data-testid=\"tile-action-duplicate\"><i class=\"sc-bdnxRM gQpRBp h-icon common\" title=\"Clone\" aria-label=\"Clone\" color=\"\"></i></div><div class=\"tile-action-icon\" data-testid=\"tile-action-delete\"><i class=\"sc-bdnxRM gSFxtx h-icon common\" title=\"Delete\" aria-label=\"Delete\" color=\"\"></i></div><div class=\"tile-action-icon move-icon\" data-testid=\"tile-action-move\"><i class=\"sc-bdnxRM gRAalM h-icon common\" title=\"Move\" aria-label=\"Move\" color=\"\"></i></div></div><div data-testid=\"custom-display-label\" class=\"header custom-display-label\"><div class=\"header-content\">Active Alerts by Priority</div></div><div class=\"content\"><div class=\"chart-description\" targetref=\"[object Object]\" width=\"498\" height=\"0\"></div><div targetref=\"[object Object]\" class=\"ui scuf-grid custom-display-grid media-xs\" width=\"498\" height=\"0\"><div class=\"scuf-grid col-12\"><div class=\"scuf-col col-7\"><div class=\"chart-wrapper\"><div class=\"ui forge chart-wrap basic-chart forge-for-buildings-chart custom-display-chart custom-donut legend-styles\"><div class=\"forge ui chart-head\"><div class=\"title align-center\"></div><div class=\"subtitle align-center\"></div></div><div class=\"center-block\" style=\"top: 216px; left: 145px; font-size: 43.5px; width: 174px;\"><div class=\"donut-value\">0%</div><div class=\"donut-label\">High</div></div><div class=\"highcharts-root\" data-highcharts-chart=\"14\" style=\"overflow: hidden;\"><div id=\"highcharts-ftj1x5x-151\" dir=\"ltr\" class=\"highcharts-container forge-for-buildings-chart custom-display-chart custom-donut legend-styles\" style=\"position: relative; overflow: hidden; width: 290px; height: 422px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: &quot;Honeywell Sans Web&quot;, Arial, Helvetica, sans-serif;\"><img src=\"data&colon;image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGNsYXNzPSJoaWdoY2hhcnRzLXJvb3QiIHN0eWxlPSJmb250LWZhbWlseTonSG9uZXl3ZWxsIFNhbnMgV2ViJywgQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjtmb250LXNpemU6MTJweDsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjI5MCIgaGVpZ2h0PSI0MjIiIHZpZXdCb3g9IjAgMCAyOTAgNDIyIj48ZGVzYz5DcmVhdGVkIHdpdGggSGlnaGNoYXJ0cyA5LjEuMjwvZGVzYz48ZGVmcz48Y2xpcFBhdGggaWQ9ImhpZ2hjaGFydHMtZnRqMXg1eC0xNTQtIj48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMjkwIiBoZWlnaHQ9IjQxMiIgZmlsbD0ibm9uZSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxyZWN0IGZpbGw9IiNGRkZGRkYwMCIgY2xhc3M9ImhpZ2hjaGFydHMtYmFja2dyb3VuZCIgeD0iMCIgeT0iMCIgd2lkdGg9IjI5MCIgaGVpZ2h0PSI0MjIiIHJ4PSIwIiByeT0iMCIvPjxyZWN0IGZpbGw9Im5vbmUiIGNsYXNzPSJoaWdoY2hhcnRzLXBsb3QtYmFja2dyb3VuZCIgeD0iMCIgeT0iMTAiIHdpZHRoPSIyOTAiIGhlaWdodD0iNDEyIi8+PHJlY3QgZmlsbD0ibm9uZSIgY2xhc3M9ImhpZ2hjaGFydHMtcGxvdC1ib3JkZXIiIGRhdGEtei1pbmRleD0iMSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIyOTAiIGhlaWdodD0iNDEyIi8+PGcgY2xhc3M9ImhpZ2hjaGFydHMtc2VyaWVzLWdyb3VwIiBkYXRhLXotaW5kZXg9IjMiPjxnIGNsYXNzPSJoaWdoY2hhcnRzLXNlcmllcyBoaWdoY2hhcnRzLXNlcmllcy0wIGhpZ2hjaGFydHMtcGllLXNlcmllcyBkb251dC1zZXJpZXMgaGlnaGNoYXJ0cy10cmFja2VyIiBkYXRhLXotaW5kZXg9IjAuMSIgb3BhY2l0eT0iMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCwxMCkgc2NhbGUoMSAxKSI+PHBhdGggZmlsbD0iIzE3OTJFNSIgZD0iTSAxNDQuOTcyNTA0MTE3NTAxMTYgNzEuMDAwMDAyODAwMDg3MjYgQSAxMzUgMTM1IDAgMSAxIDEwLjA1NTE4MDE3OTY2NjUzNiAyMDkuODU5NDgyMzA0MzY5IEwgMTguMTUxODY5MzY4ODg2NTUgMjA5LjYyNzkxMzM2NjEwNjg3IEEgMTI2LjkgMTI2LjkgMCAxIDAgMTQ0Ljk3NDE1Mzg3MDQ1MTEgNzkuMTAwMDAyNjMyMDgyMDIgWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCwwKSIgb3BhY2l0eT0iMSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImhpZ2hjaGFydHMtcG9pbnQgaGlnaGNoYXJ0cy1jb2xvci0wIi8+PHBhdGggZmlsbD0iIzdFQjMzOCIgZD0iTSAxMC4wNTEzODgxNzA0MDk2OTUgMjA5LjcyNDUzNTU3NzI5ODUyIEEgMTM1IDEzNSAwIDAgMSAxNDQuODEyNDg3NzA4MzYwMzIgNzEuMDAwMTMwMjI1NDY4NDEgTCAxNDQuODIzNzM4NDQ1ODU4NyA3OS4xMDAxMjI0MTE5NDAzIEEgMTI2LjkgMTI2LjkgMCAwIDAgMTguMTQ4MzA0ODgwMTg1MTEgMjA5LjUwMTA2MzQ0MjY2MDYgWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCwwKSIgb3BhY2l0eT0iMSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImhpZ2hjaGFydHMtcG9pbnQgaGlnaGNoYXJ0cy1jb2xvci0xIi8+PC9nPjxnIGNsYXNzPSJoaWdoY2hhcnRzLW1hcmtlcnMgaGlnaGNoYXJ0cy1zZXJpZXMtMCBoaWdoY2hhcnRzLXBpZS1zZXJpZXMgZG9udXQtc2VyaWVzIiBkYXRhLXotaW5kZXg9IjAuMSIgb3BhY2l0eT0iMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCwxMCkgc2NhbGUoMSAxKSIvPjwvZz48dGV4dCB4PSIxNDUiIHRleHQtYW5jaG9yPSJtaWRkbGUiIGNsYXNzPSJoaWdoY2hhcnRzLXRpdGxlIiBkYXRhLXotaW5kZXg9IjQiIHN0eWxlPSJjb2xvcjojMzMzMzMzO2ZvbnQtc2l6ZToxOHB4O2ZpbGw6IzMzMzMzMzsiIHk9IjI0Ii8+PHRleHQgeD0iMTQ1IiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBjbGFzcz0iaGlnaGNoYXJ0cy1zdWJ0aXRsZSIgZGF0YS16LWluZGV4PSI0IiBzdHlsZT0iY29sb3I6IzY2NjY2NjtmaWxsOiM2NjY2NjY7IiB5PSIyNCIvPjx0ZXh0IHg9IjAiIHRleHQtYW5jaG9yPSJzdGFydCIgY2xhc3M9ImhpZ2hjaGFydHMtY2FwdGlvbiIgZGF0YS16LWluZGV4PSI0IiBzdHlsZT0iY29sb3I6IzY2NjY2NjtmaWxsOiM2NjY2NjY7IiB5PSI0MzQiLz48L3N2Zz4=\"></div></div></div><div class=\"chart-footer\"></div></div></div><div class=\"scuf-col accordion-column col-5\"><div class=\"accordion-list custom-accordion-legend\"><div role=\"list\" class=\"ui list scuf-list-wrapper  accordion-entries\"><div role=\"listitem\" class=\"item\"><div class=\"content\"><div class=\"header\"></div><div class=\"ui scuf-grid media-xs\"><div class=\"scuf-col accordion-item col-1\"><div class=\"accordion-item-marker-0 \" style=\"border-left-color: rgb(23, 146, 229);\"></div></div><div class=\"scuf-col accordion-item col-11\"><span>Medium (211)</span></div></div><div></div></div></div><div role=\"listitem\" class=\"item\"><div class=\"content\"><div class=\"header\"></div><div class=\"ui scuf-grid media-xs\"><div class=\"scuf-col accordion-item col-1\"><div class=\"accordion-item-marker-1 \" style=\"border-left-color: rgb(126, 179, 56);\"></div></div><div class=\"scuf-col accordion-item col-11\"><span>Low (72)</span></div></div><div></div></div></div></div></div></div></div></div><div></div></div></div></span><span class=\"react-resizable-handle react-resizable-handle-se\"></span></div><div class=\"react-grid-item react-draggable react-resizable\" style=\"width: 532px; height: 484px; position: absolute; top: 12px; left: 556px;\"><span data-testid=\"widget-select-wrapper\"><div class=\"ui raised card custom-display-card donut-card dashboard printing\"><div class=\"tile-actions\"><div class=\"tile-action-icon\" data-testid=\"tile-action-duplicate\"><i class=\"sc-bdnxRM gQpRBp h-icon common\" title=\"Clone\" aria-label=\"Clone\" color=\"\"></i></div><div class=\"tile-action-icon\" data-testid=\"tile-action-delete\"><i class=\"sc-bdnxRM gSFxtx h-icon common\" title=\"Delete\" aria-label=\"Delete\" color=\"\"></i></div><div class=\"tile-action-icon move-icon\" data-testid=\"tile-action-move\"><i class=\"sc-bdnxRM gRAalM h-icon common\" title=\"Move\" aria-label=\"Move\" color=\"\"></i></div></div><div data-testid=\"custom-display-label\" class=\"header custom-display-label\"><div class=\"header-content\">Alarms VS Faults</div></div><div class=\"content\"><div class=\"chart-description\" targetref=\"[object Object]\" width=\"498\" height=\"0\"></div><div targetref=\"[object Object]\" class=\"ui scuf-grid custom-display-grid media-xs\" width=\"498\" height=\"0\"><div class=\"scuf-grid col-12\"><div class=\"scuf-col col-7\"><div class=\"chart-wrapper\"><div class=\"ui forge chart-wrap basic-chart forge-for-buildings-chart custom-display-chart custom-donut legend-styles\"><div class=\"forge ui chart-head\"><div class=\"title align-center\"></div><div class=\"subtitle align-center\"></div></div><div class=\"center-block\" style=\"top: 216px; left: 145px; font-size: 43.5px; width: 174px;\"><div class=\"donut-value\">0.4%</div><div class=\"donut-label\">Alarm</div></div><div class=\"highcharts-root\" data-highcharts-chart=\"12\" style=\"overflow: hidden;\"><div id=\"highcharts-ftj1x5x-139\" dir=\"ltr\" class=\"highcharts-container forge-for-buildings-chart custom-display-chart custom-donut legend-styles\" style=\"position: relative; overflow: hidden; width: 290px; height: 422px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: &quot;Honeywell Sans Web&quot;, Arial, Helvetica, sans-serif;\"><svg version=\"1.1\" class=\"highcharts-root\" style=\"font-family:'Honeywell Sans Web', Arial, Helvetica, sans-serif;font-size:12px;\" xmlns=\"http://www.w3.org/2000/svg\" width=\"290\" height=\"422\" viewBox=\"0 0 290 422\"><desc>Created with Highcharts 9.1.2</desc><defs><clipPath id=\"highcharts-ftj1x5x-142-\"><rect x=\"0\" y=\"0\" width=\"290\" height=\"412\" fill=\"none\"></rect></clipPath></defs><rect fill=\"#FFFFFF00\" class=\"highcharts-background\" x=\"0\" y=\"0\" width=\"290\" height=\"422\" rx=\"0\" ry=\"0\"></rect><rect fill=\"none\" class=\"highcharts-plot-background\" x=\"0\" y=\"10\" width=\"290\" height=\"412\"></rect><rect fill=\"none\" class=\"highcharts-plot-border\" data-z-index=\"1\" x=\"0\" y=\"10\" width=\"290\" height=\"412\"></rect><g class=\"highcharts-series-group\" data-z-index=\"3\"><g class=\"highcharts-series highcharts-series-0 highcharts-pie-series donut-series highcharts-tracker\" data-z-index=\"0.1\" opacity=\"1\" transform=\"translate(0,10) scale(1 1)\"><path fill=\"#1792E5\" d=\"M 144.97250411750116 71.00000280008726 A 135 135 0 0 1 147.8073017534175 71.0291918344368 L 147.63886364821246 79.1274403243706 A 126.9 126.9 0 0 0 144.9741538704511 79.10000263208202 Z\" transform=\"translate(0,0)\" opacity=\"1\" stroke-linejoin=\"round\" class=\"highcharts-point highcharts-color-0\"></path><path fill=\"#7EB338\" d=\"M 147.94227113543715 71.0320666211208 A 135 135 0 1 1 144.81248770836032 71.00013022546841 L 144.8237384458587 79.1001224119403 A 126.9 126.9 0 1 0 147.76573486731093 79.13014262385354 Z\" transform=\"translate(0,0)\" opacity=\"1\" stroke-linejoin=\"round\" class=\"highcharts-point highcharts-color-1\"></path></g><g class=\"highcharts-markers highcharts-series-0 highcharts-pie-series donut-series\" data-z-index=\"0.1\" opacity=\"1\" transform=\"translate(0,10) scale(1 1)\"></g></g><text x=\"145\" text-anchor=\"middle\" class=\"highcharts-title\" data-z-index=\"4\" style=\"color:#333333;font-size:18px;fill:#333333;\" y=\"24\"></text><text x=\"145\" text-anchor=\"middle\" class=\"highcharts-subtitle\" data-z-index=\"4\" style=\"color:#666666;fill:#666666;\" y=\"24\"></text><text x=\"0\" text-anchor=\"start\" class=\"highcharts-caption\" data-z-index=\"4\" style=\"color:#666666;fill:#666666;\" y=\"434\"></text></svg></div></div></div><div class=\"chart-footer\"></div></div></div><div class=\"scuf-col accordion-column col-5\"><div class=\"accordion-list custom-accordion-legend\"><div role=\"list\" class=\"ui list scuf-list-wrapper  accordion-entries\"><div role=\"listitem\" class=\"item\"><div class=\"content\"><div class=\"header\"></div><div class=\"ui scuf-grid media-xs\"><div class=\"scuf-col accordion-item col-1\"><div class=\"accordion-item-marker-0 \" style=\"border-left-color: rgb(23, 146, 229);\"></div></div><div class=\"scuf-col accordion-item col-11\"><span>Alarm (1)</span></div></div><div></div></div></div><div role=\"listitem\" class=\"item\"><div class=\"content\"><div class=\"header\"></div><div class=\"ui scuf-grid media-xs\"><div class=\"scuf-col accordion-item col-1\"><div class=\"accordion-item-marker-1 \" style=\"border-left-color: rgb(126, 179, 56);\"></div></div><div class=\"scuf-col accordion-item col-11\"><span>Fault (282)</span></div></div><div></div></div></div></div></div></div></div></div><div></div></div></div></span><span class=\"react-resizable-handle react-resizable-handle-se\"></span></div><div class=\"react-grid-item react-draggable react-resizable\" style=\"width: 532px; height: 484px; position: absolute; top: 508px; left: 12px;\"><span data-testid=\"widget-select-wrapper\"><div class=\"ui raised card custom-display-card donut-card dashboard printing\"><div class=\"tile-actions\"><div class=\"tile-action-icon\" data-testid=\"tile-action-duplicate\"><i class=\"sc-bdnxRM gQpRBp h-icon common\" title=\"Clone\" aria-label=\"Clone\" color=\"\"></i></div><div class=\"tile-action-icon\" data-testid=\"tile-action-delete\"><i class=\"sc-bdnxRM gSFxtx h-icon common\" title=\"Delete\" aria-label=\"Delete\" color=\"\"></i></div><div class=\"tile-action-icon move-icon\" data-testid=\"tile-action-move\"><i class=\"sc-bdnxRM gRAalM h-icon common\" title=\"Move\" aria-label=\"Move\" color=\"\"></i></div></div><div data-testid=\"custom-display-label\" class=\"header custom-display-label\"><div class=\"header-content\">Alerts By Source Type</div></div><div class=\"content\"><div class=\"chart-description\" targetref=\"[object Object]\" width=\"498\" height=\"0\"></div><div targetref=\"[object Object]\" class=\"ui scuf-grid custom-display-grid media-xs\" width=\"498\" height=\"0\"><div class=\"scuf-grid col-12\"><div class=\"scuf-col col-7\"><div class=\"chart-wrapper\"><div class=\"ui forge chart-wrap basic-chart forge-for-buildings-chart custom-display-chart custom-donut legend-styles\"><div class=\"forge ui chart-head\"><div class=\"title align-center\"></div><div class=\"subtitle align-center\"></div></div><div class=\"center-block\" style=\"top: 216px; left: 145px; font-size: 43.5px; width: 174px;\"><div class=\"donut-value\">39.6%</div><div class=\"donut-label\">Operations</div></div><div class=\"highcharts-root\" data-highcharts-chart=\"13\" style=\"overflow: hidden;\"><div id=\"highcharts-ftj1x5x-143\" dir=\"ltr\" class=\"highcharts-container forge-for-buildings-chart custom-display-chart custom-donut legend-styles\" style=\"position: relative; overflow: hidden; width: 290px; height: 422px; text-align: left; line-height: normal; z-index: 0; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); user-select: none; touch-action: manipulation; outline: none; font-family: &quot;Honeywell Sans Web&quot;, Arial, Helvetica, sans-serif;\"><img src=\"data&colon;image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGNsYXNzPSJoaWdoY2hhcnRzLXJvb3QiIHN0eWxlPSJmb250LWZhbWlseTonSG9uZXl3ZWxsIFNhbnMgV2ViJywgQXJpYWwsIEhlbHZldGljYSwgc2Fucy1zZXJpZjtmb250LXNpemU6MTJweDsiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjI5MCIgaGVpZ2h0PSI0MjIiIHZpZXdCb3g9IjAgMCAyOTAgNDIyIj48ZGVzYz5DcmVhdGVkIHdpdGggSGlnaGNoYXJ0cyA5LjEuMjwvZGVzYz48ZGVmcz48Y2xpcFBhdGggaWQ9ImhpZ2hjaGFydHMtZnRqMXg1eC0xNDgtIj48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMjkwIiBoZWlnaHQ9IjQxMiIgZmlsbD0ibm9uZSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxyZWN0IGZpbGw9IiNGRkZGRkYwMCIgY2xhc3M9ImhpZ2hjaGFydHMtYmFja2dyb3VuZCIgeD0iMCIgeT0iMCIgd2lkdGg9IjI5MCIgaGVpZ2h0PSI0MjIiIHJ4PSIwIiByeT0iMCIvPjxyZWN0IGZpbGw9Im5vbmUiIGNsYXNzPSJoaWdoY2hhcnRzLXBsb3QtYmFja2dyb3VuZCIgeD0iMCIgeT0iMTAiIHdpZHRoPSIyOTAiIGhlaWdodD0iNDEyIi8+PHJlY3QgZmlsbD0ibm9uZSIgY2xhc3M9ImhpZ2hjaGFydHMtcGxvdC1ib3JkZXIiIGRhdGEtei1pbmRleD0iMSIgeD0iMCIgeT0iMTAiIHdpZHRoPSIyOTAiIGhlaWdodD0iNDEyIi8+PGcgY2xhc3M9ImhpZ2hjaGFydHMtc2VyaWVzLWdyb3VwIiBkYXRhLXotaW5kZXg9IjMiPjxnIGNsYXNzPSJoaWdoY2hhcnRzLXNlcmllcyBoaWdoY2hhcnRzLXNlcmllcy0wIGhpZ2hjaGFydHMtcGllLXNlcmllcyBkb251dC1zZXJpZXMgaGlnaGNoYXJ0cy10cmFja2VyIiBkYXRhLXotaW5kZXg9IjAuMSIgb3BhY2l0eT0iMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMCwxMCkgc2NhbGUoMSAxKSI+PHBhdGggZmlsbD0iIzE3OTJFNSIgZD0iTSAxNDQuOTcyNTA0MTE3NTAxMTYgNzEuMDAwMDAyODAwMDg3MjYgQSAxMzUgMTM1IDAgMCAxIDIyNy4zMjE3Mjc2ODMzODA3NCAzMTIuOTk1OTQ5MjI4MTA1MzYgTCAyMjIuMzgyNDI0MDIyMzc3OSAzMDYuNTc2MTkyMjc0NDE5MDQgQSAxMjYuOSAxMjYuOSAwIDAgMCAxNDQuOTc0MTUzODcwNDUxMSA3OS4xMDAwMDI2MzIwODIwMiBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLDApIiBvcGFjaXR5PSIxIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iaGlnaGNoYXJ0cy1wb2ludCBoaWdoY2hhcnRzLWNvbG9yLTAiLz48cGF0aCBmaWxsPSIjN0VCMzM4IiBkPSJNIDIyNy4yMTQ2OTA1OTExMjQ5IDMxMy4wNzgyMTc0NDQwOTgzIEEgMTM1IDEzNSAwIDAgMSAxMC4xNzI3MzcyNzA1MDAxOTMgMjEyLjgyNzA5NDkwNzA5MSBMIDE4LjI2MjM3MzAzNDI3MDE3IDIxMi40MTc0NjkyMTI2NjU1NCBBIDEyNi45IDEyNi45IDAgMCAwIDIyMi4yODE4MDkxNTU2NTc0IDMwNi42NTM1MjQzOTc0NTI0MyBaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLDApIiBvcGFjaXR5PSIxIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0iaGlnaGNoYXJ0cy1wb2ludCBoaWdoY2hhcnRzLWNvbG9yLTEiLz48cGF0aCBmaWxsPSIjRkZDNjI3IiBkPSJNIDEwLjE2NTk3NzU5MDM1NjY3NSAyMTIuNjkyMjY0MjUzMjg1NTcgQSAxMzUgMTM1IDAgMCAxIDE0MS44NDI3NzU1MjM0MzYyMiA3MS4wMzY5MjM4MTM5Mzg3IEwgMTQyLjAzMjIwODk5MjAzMDA0IDc5LjEzNDcwODM4NTEwMjM5IEEgMTI2LjkgMTI2LjkgMCAwIDAgMTguMjU2MDE4OTM0OTM1MjcgMjEyLjI5MDcyODM5ODA4ODQyIFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsMCkiIG9wYWNpdHk9IjEiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJoaWdoY2hhcnRzLXBvaW50IGhpZ2hjaGFydHMtY29sb3ItMiIvPjxwYXRoIGZpbGw9IiNGMzcwMjEiIGQ9Ik0gMTQxLjk3Nzc0MDE1NTc0MDU4IDcxLjAzMzgzNDA3MTUyMDgzIEEgMTM1IDEzNSAwIDAgMSAxNDQuODEyNDg3NzA4MzYwMzIgNzEuMDAwMTMwMjI1NDY4NDEgTCAxNDQuODIzNzM4NDQ1ODU4NyA3OS4xMDAxMjI0MTE5NDAzIEEgMTI2LjkgMTI2LjkgMCAwIDAgMTQyLjE1OTA3NTc0NjM5NjE2IDc5LjEzMTgwNDAyNzIyOTU2IFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsMCkiIG9wYWNpdHk9IjEiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJoaWdoY2hhcnRzLXBvaW50IGhpZ2hjaGFydHMtY29sb3ItMyIvPjwvZz48ZyBjbGFzcz0iaGlnaGNoYXJ0cy1tYXJrZXJzIGhpZ2hjaGFydHMtc2VyaWVzLTAgaGlnaGNoYXJ0cy1waWUtc2VyaWVzIGRvbnV0LXNlcmllcyIgZGF0YS16LWluZGV4PSIwLjEiIG9wYWNpdHk9IjEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsMTApIHNjYWxlKDEgMSkiLz48L2c+PHRleHQgeD0iMTQ1IiB0ZXh0LWFuY2hvcj0ibWlkZGxlIiBjbGFzcz0iaGlnaGNoYXJ0cy10aXRsZSIgZGF0YS16LWluZGV4PSI0IiBzdHlsZT0iY29sb3I6IzMzMzMzMztmb250LXNpemU6MThweDtmaWxsOiMzMzMzMzM7IiB5PSIyNCIvPjx0ZXh0IHg9IjE0NSIgdGV4dC1hbmNob3I9Im1pZGRsZSIgY2xhc3M9ImhpZ2hjaGFydHMtc3VidGl0bGUiIGRhdGEtei1pbmRleD0iNCIgc3R5bGU9ImNvbG9yOiM2NjY2NjY7ZmlsbDojNjY2NjY2OyIgeT0iMjQiLz48dGV4dCB4PSIwIiB0ZXh0LWFuY2hvcj0ic3RhcnQiIGNsYXNzPSJoaWdoY2hhcnRzLWNhcHRpb24iIGRhdGEtei1pbmRleD0iNCIgc3R5bGU9ImNvbG9yOiM2NjY2NjY7ZmlsbDojNjY2NjY2OyIgeT0iNDM0Ii8+PC9zdmc+\"></div></div></div><div class=\"chart-footer\"></div></div></div><div class=\"scuf-col accordion-column col-5\"><div class=\"accordion-list custom-accordion-legend\"><div role=\"list\" class=\"ui list scuf-list-wrapper  accordion-entries\"><div role=\"listitem\" class=\"item\"><div class=\"content\"><div class=\"header\"></div><div class=\"ui scuf-grid media-xs\"><div class=\"scuf-col accordion-item col-1\"><div class=\"accordion-item-marker-0 \" style=\"border-left-color: rgb(23, 146, 229);\"></div></div><div class=\"scuf-col accordion-item col-11\"><span>Operations (112)</span></div></div><div></div></div></div><div role=\"listitem\" class=\"item\"><div class=\"content\"><div class=\"header\"></div><div class=\"ui scuf-grid media-xs\"><div class=\"scuf-col accordion-item col-1\"><div class=\"accordion-item-marker-1 \" style=\"border-left-color: rgb(126, 179, 56);\"></div></div><div class=\"scuf-col accordion-item col-11\"><span>Water (98)</span></div></div><div></div></div></div><div role=\"listitem\" class=\"item\"><div class=\"content\"><div class=\"header\"></div><div class=\"ui scuf-grid media-xs\"><div class=\"scuf-col accordion-item col-1\"><div class=\"accordion-item-marker-2 \" style=\"border-left-color: rgb(255, 198, 39);\"></div></div><div class=\"scuf-col accordion-item col-11\"><span>Comfort (72)</span></div></div><div></div></div></div><div role=\"listitem\" class=\"item\"><div class=\"content\"><div class=\"header\"></div><div class=\"ui scuf-grid media-xs\"><div class=\"scuf-col accordion-item col-1\"><div class=\"accordion-item-marker-3 \" style=\"border-left-color: rgb(243, 112, 33);\"></div></div><div class=\"scuf-col accordion-item col-11\"><span>Point Alarm (1)</span></div></div><div></div></div></div></div></div></div></div></div><div></div></div></div></span><span class=\"react-resizable-handle react-resizable-handle-se\"></span></div><div class=\"react-grid-item react-draggable react-resizable\" style=\"width: 532px; height: 484px; position: absolute; top: 508px; left: 556px;\"><span data-testid=\"widget-select-wrapper\"><div class=\"ui raised card custom-display-card richText-card dashboard printing\"><div class=\"tile-actions\"><div class=\"tile-action-icon\" data-testid=\"tile-action-duplicate\"><i class=\"sc-bdnxRM gQpRBp h-icon common\" title=\"Clone\" aria-label=\"Clone\" color=\"\"></i></div><div class=\"tile-action-icon\" data-testid=\"tile-action-delete\"><i class=\"sc-bdnxRM gSFxtx h-icon common\" title=\"Delete\" aria-label=\"Delete\" color=\"\"></i></div><div class=\"tile-action-icon move-icon\" data-testid=\"tile-action-move\"><i class=\"sc-bdnxRM gRAalM h-icon common\" title=\"Move\" aria-label=\"Move\" color=\"\"></i></div></div><div class=\"content\"><div class=\"chart-description\" targetref=\"[object Object]\" width=\"514\" height=\"0\"></div><div targetref=\"[object Object]\" class=\"ui scuf-grid custom-display-grid media-xs\" width=\"514\" height=\"0\"><div class=\"scuf-grid col-12\"><div class=\"scuf-col col-12\"><div class=\"chart-wrapper\"><div class=\"custom-display-chart custom-richText legend-styles\"><div class=\"rich-text-wrapper\"><div class=\"quill rich-text\"><div class=\"ql-toolbar ql-snow\"><span class=\"ql-formats\"><span class=\"ql-header ql-picker\"><span class=\"ql-picker-label\" tabindex=\"0\" role=\"button\" aria-expanded=\"false\" aria-controls=\"ql-picker-options-2\"><svg viewBox=\"0 0 18 18\"> <polygon class=\"ql-stroke\" points=\"7 11 9 13 11 11 7 11\"></polygon> <polygon class=\"ql-stroke\" points=\"7 7 9 5 11 7 7 7\"></polygon> </svg></span><span class=\"ql-picker-options\" aria-hidden=\"true\" tabindex=\"-1\" id=\"ql-picker-options-2\"><span tabindex=\"0\" role=\"button\" class=\"ql-picker-item\" data-value=\"1\"></span><span tabindex=\"0\" role=\"button\" class=\"ql-picker-item\" data-value=\"2\"></span><span tabindex=\"0\" role=\"button\" class=\"ql-picker-item\" data-value=\"3\"></span><span tabindex=\"0\" role=\"button\" class=\"ql-picker-item\"></span></span></span><select class=\"ql-header\" style=\"display: none;\"><option value=\"1\"></option><option value=\"2\"></option><option value=\"3\"></option><option selected=\"selected\"></option></select><button type=\"button\" class=\"ql-bold\" title=\"Bold\"><img src=\"data&colon;image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+IDxwYXRoIGNsYXNzPSJxbC1zdHJva2UiIGQ9Ik01LDRIOS41QTIuNSwyLjUsMCwwLDEsMTIsNi41djBBMi41LDIuNSwwLDAsMSw5LjUsOUg1QTAsMCwwLDAsMSw1LDlWNEEwLDAsMCwwLDEsNSw0WiIvPiA8cGF0aCBjbGFzcz0icWwtc3Ryb2tlIiBkPSJNNSw5aDUuNUEyLjUsMi41LDAsMCwxLDEzLDExLjV2MEEyLjUsMi41LDAsMCwxLDEwLjUsMTRINWEwLDAsMCwwLDEsMCwwVjlBMCwwLDAsMCwxLDUsOVoiLz4gPC9zdmc+\"></button><button type=\"button\" class=\"ql-list\" value=\"ordered\" title=\"Numbering\"><svg viewBox=\"0 0 18 18\"> <line class=\"ql-stroke\" x1=\"7\" x2=\"15\" y1=\"4\" y2=\"4\"></line> <line class=\"ql-stroke\" x1=\"7\" x2=\"15\" y1=\"9\" y2=\"9\"></line> <line class=\"ql-stroke\" x1=\"7\" x2=\"15\" y1=\"14\" y2=\"14\"></line> <line class=\"ql-stroke ql-thin\" x1=\"2.5\" x2=\"4.5\" y1=\"5.5\" y2=\"5.5\"></line> <path class=\"ql-fill\" d=\"M3.5,6A0.5,0.5,0,0,1,3,5.5V3.085l-0.276.138A0.5,0.5,0,0,1,2.053,3c-0.124-.247-0.023-0.324.224-0.447l1-.5A0.5,0.5,0,0,1,4,2.5v3A0.5,0.5,0,0,1,3.5,6Z\"></path> <path class=\"ql-stroke ql-thin\" d=\"M4.5,10.5h-2c0-.234,1.85-1.076,1.85-2.234A0.959,0.959,0,0,0,2.5,8.156\"></path> <path class=\"ql-stroke ql-thin\" d=\"M2.5,14.846a0.959,0.959,0,0,0,1.85-.109A0.7,0.7,0,0,0,3.75,14a0.688,0.688,0,0,0,.6-0.736,0.959,0.959,0,0,0-1.85-.109\"></path> </svg></button><button type=\"button\" class=\"ql-list\" value=\"bullet\" title=\"Bullets\"><img src=\"data&colon;image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+IDxsaW5lIGNsYXNzPSJxbC1zdHJva2UiIHgxPSI2IiB4Mj0iMTUiIHkxPSI0IiB5Mj0iNCIvPiA8bGluZSBjbGFzcz0icWwtc3Ryb2tlIiB4MT0iNiIgeDI9IjE1IiB5MT0iOSIgeTI9IjkiLz4gPGxpbmUgY2xhc3M9InFsLXN0cm9rZSIgeDE9IjYiIHgyPSIxNSIgeTE9IjE0IiB5Mj0iMTQiLz4gPGxpbmUgY2xhc3M9InFsLXN0cm9rZSIgeDE9IjMiIHgyPSIzIiB5MT0iNCIgeTI9IjQiLz4gPGxpbmUgY2xhc3M9InFsLXN0cm9rZSIgeDE9IjMiIHgyPSIzIiB5MT0iOSIgeTI9IjkiLz4gPGxpbmUgY2xhc3M9InFsLXN0cm9rZSIgeDE9IjMiIHgyPSIzIiB5MT0iMTQiIHkyPSIxNCIvPiA8L3N2Zz4=\"></button><button type=\"button\" class=\"ql-indent\" value=\"-1\" title=\"Decrease Indent\"><svg viewBox=\"0 0 18 18\"> <line class=\"ql-stroke\" x1=\"3\" x2=\"15\" y1=\"14\" y2=\"14\"></line> <line class=\"ql-stroke\" x1=\"3\" x2=\"15\" y1=\"4\" y2=\"4\"></line> <line class=\"ql-stroke\" x1=\"9\" x2=\"15\" y1=\"9\" y2=\"9\"></line> <polyline class=\"ql-stroke\" points=\"5 7 5 11 3 9 5 7\"></polyline> </svg></button><button type=\"button\" class=\"ql-indent\" value=\"+1\" title=\"Increase Indent\"><img src=\"data&colon;image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+IDxsaW5lIGNsYXNzPSJxbC1zdHJva2UiIHgxPSIzIiB4Mj0iMTUiIHkxPSIxNCIgeTI9IjE0Ii8+IDxsaW5lIGNsYXNzPSJxbC1zdHJva2UiIHgxPSIzIiB4Mj0iMTUiIHkxPSI0IiB5Mj0iNCIvPiA8bGluZSBjbGFzcz0icWwtc3Ryb2tlIiB4MT0iOSIgeDI9IjE1IiB5MT0iOSIgeTI9IjkiLz4gPHBvbHlsaW5lIGNsYXNzPSJxbC1maWxsIHFsLXN0cm9rZSIgcG9pbnRzPSIzIDcgMyAxMSA1IDkgMyA3Ii8+IDwvc3ZnPg==\"></button><span class=\"ql-align ql-picker ql-icon-picker\" title=\"Align\"><span class=\"ql-picker-label\" tabindex=\"0\" role=\"button\" aria-expanded=\"false\" aria-controls=\"ql-picker-options-3\"><svg viewBox=\"0 0 18 18\"> <line class=\"ql-stroke\" x1=\"3\" x2=\"15\" y1=\"9\" y2=\"9\"></line> <line class=\"ql-stroke\" x1=\"3\" x2=\"13\" y1=\"14\" y2=\"14\"></line> <line class=\"ql-stroke\" x1=\"3\" x2=\"9\" y1=\"4\" y2=\"4\"></line> </svg></span><span class=\"ql-picker-options\" aria-hidden=\"true\" tabindex=\"-1\" id=\"ql-picker-options-3\"><span tabindex=\"0\" role=\"button\" class=\"ql-picker-item\"><img src=\"data&colon;image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+IDxsaW5lIGNsYXNzPSJxbC1zdHJva2UiIHgxPSIzIiB4Mj0iMTUiIHkxPSI5IiB5Mj0iOSIvPiA8bGluZSBjbGFzcz0icWwtc3Ryb2tlIiB4MT0iMyIgeDI9IjEzIiB5MT0iMTQiIHkyPSIxNCIvPiA8bGluZSBjbGFzcz0icWwtc3Ryb2tlIiB4MT0iMyIgeDI9IjkiIHkxPSI0IiB5Mj0iNCIvPiA8L3N2Zz4=\"></span><span tabindex=\"0\" role=\"button\" class=\"ql-picker-item\" data-value=\"center\"><svg viewBox=\"0 0 18 18\"> <line class=\"ql-stroke\" x1=\"15\" x2=\"3\" y1=\"9\" y2=\"9\"></line> <line class=\"ql-stroke\" x1=\"14\" x2=\"4\" y1=\"14\" y2=\"14\"></line> <line class=\"ql-stroke\" x1=\"12\" x2=\"6\" y1=\"4\" y2=\"4\"></line> </svg></span><span tabindex=\"0\" role=\"button\" class=\"ql-picker-item\" data-value=\"right\"><img src=\"data&colon;image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+IDxsaW5lIGNsYXNzPSJxbC1zdHJva2UiIHgxPSIxNSIgeDI9IjMiIHkxPSI5IiB5Mj0iOSIvPiA8bGluZSBjbGFzcz0icWwtc3Ryb2tlIiB4MT0iMTUiIHgyPSI1IiB5MT0iMTQiIHkyPSIxNCIvPiA8bGluZSBjbGFzcz0icWwtc3Ryb2tlIiB4MT0iMTUiIHgyPSI5IiB5MT0iNCIgeTI9IjQiLz4gPC9zdmc+\"></span><span tabindex=\"0\" role=\"button\" class=\"ql-picker-item\" data-value=\"justify\"><svg viewBox=\"0 0 18 18\"> <line class=\"ql-stroke\" x1=\"15\" x2=\"3\" y1=\"9\" y2=\"9\"></line> <line class=\"ql-stroke\" x1=\"15\" x2=\"3\" y1=\"14\" y2=\"14\"></line> <line class=\"ql-stroke\" x1=\"15\" x2=\"3\" y1=\"4\" y2=\"4\"></line> </svg></span></span></span><select class=\"ql-align\" style=\"display: none;\"><option selected=\"selected\"></option><option value=\"center\"></option><option value=\"right\"></option><option value=\"justify\"></option></select><button type=\"button\" class=\"ql-image\" title=\"Upload Image. Only JPG and PNG files are allowed\"><img src=\"data&colon;image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCI+IDxyZWN0IGNsYXNzPSJxbC1zdHJva2UiIGhlaWdodD0iMTAiIHdpZHRoPSIxMiIgeD0iMyIgeT0iNCIvPiA8Y2lyY2xlIGNsYXNzPSJxbC1maWxsIiBjeD0iNiIgY3k9IjciIHI9IjEiLz4gPHBvbHlsaW5lIGNsYXNzPSJxbC1ldmVuIHFsLWZpbGwiIHBvaW50cz0iNSAxMiA1IDExIDcgOSA4IDEwIDExIDcgMTMgOSAxMyAxMiA1IDEyIi8+IDwvc3ZnPg==\"></button><button type=\"button\" class=\"ql-clean\" title=\"Clear All Formatting\"><svg class=\"\" viewBox=\"0 0 18 18\"> <line class=\"ql-stroke\" x1=\"5\" x2=\"13\" y1=\"3\" y2=\"3\"></line> <line class=\"ql-stroke\" x1=\"6\" x2=\"9.35\" y1=\"12\" y2=\"3\"></line> <line class=\"ql-stroke\" x1=\"11\" x2=\"15\" y1=\"11\" y2=\"15\"></line> <line class=\"ql-stroke\" x1=\"15\" x2=\"11\" y1=\"11\" y2=\"15\"></line> <rect class=\"ql-fill\" height=\"1\" rx=\"0.5\" ry=\"0.5\" width=\"7\" x=\"2\" y=\"14\"></rect> </svg></button></span></div><div class=\"ql-container ql-snow\" style=\"position: relative;\"><div class=\"ql-editor\" data-gramm=\"false\" contenteditable=\"true\"><h3>Generating random paragraphs can be an excellent way for writers to get their creative flow going at the beginning of the day. The writer has no idea what topic the random paragraph will be about when it appears. This forces the writer to use creativity to complete one of three common writing challenges. The writer can use the paragraph as the first one of a short story and build upon it. A second option is to use the random paragraph somewhere in a short story they create. The third option is to have the random paragraph be the ending paragraph in a short story. No matter which of these challenges is undertaken, the writer is forced to use creativity to incorporate the paragraph into their writing.</h3><p><br></p><h3>Generating random paragraphs can be an excellent way for writers to get their creative flow going at the beginning of the day. The writer has no idea what topic the random paragraph will be about when it appears. This forces the writer to use creativity to complete one of three common writing challenges. The writer can use the paragraph as the first one of a short story and build upon it. A second option is to use the random paragraph somewhere in a short story they create. The third option is to have the random paragraph be the ending paragraph in a short story. No matter which of these challenges is undertaken, the writer is forced to use creativity to incorporate the paragraph into their writing.</h3><p><br></p><p><br></p><h3>Generating random paragraphs can be an excellent way for writers to get their creative flow going at the beginning of the day. The writer has no idea what topic the random paragraph will be about when it appears. This forces the writer to use creativity to complete one of three common writing challenges. The writer can use the paragraph as the first one of a short story and build upon it. </h3></div><div class=\"ql-clipboard\" contenteditable=\"true\" tabindex=\"-1\"></div><div class=\"ql-tooltip ql-hidden\"><a class=\"ql-preview\" rel=\"noopener noreferrer\" target=\"_blank\" href=\"about:blank\"></a><input type=\"text\" data-formula=\"e=mc^2\" data-link=\"https://quilljs.com\" data-video=\"Embed URL\"><a class=\"ql-action\"></a><a class=\"ql-remove\"></a></div></div></div><div class=\"below-text\"></div></div></div><div class=\"chart-footer\"></div></div></div></div></div><div></div></div></div></span><span class=\"react-resizable-handle react-resizable-handle-se\"></span></div><div class=\"react-grid-item react-draggable react-resizable\" style=\"width: 1076px; height: 422px; position: absolute; top: 1004px; left: 12px;\"><span data-testid=\"widget-select-wrapper\"><div class=\"ui raised card custom-display-card table-card dashboard printing\"><div class=\"tile-actions\"><div class=\"tile-action-icon\" data-testid=\"tile-action-duplicate\"><i class=\"sc-bdnxRM gQpRBp h-icon common\" title=\"Clone\" aria-label=\"Clone\" color=\"\"></i></div><div class=\"tile-action-icon\" data-testid=\"tile-action-delete\"><i class=\"sc-bdnxRM gSFxtx h-icon common\" title=\"Delete\" aria-label=\"Delete\" color=\"\"></i></div><div class=\"tile-action-icon move-icon\" data-testid=\"tile-action-move\"><i class=\"sc-bdnxRM gRAalM h-icon common\" title=\"Move\" aria-label=\"Move\" color=\"\"></i></div></div><div data-testid=\"custom-display-label\" class=\"header custom-display-label\"><div class=\"header-content\">active alarm records</div></div><div class=\"content\"><div class=\"chart-description\" targetref=\"[object Object]\" width=\"1042\" height=\"0\"></div><div targetref=\"[object Object]\" class=\"ui scuf-grid custom-display-grid media-m\" width=\"1042\" height=\"0\"><div class=\"scuf-grid col-12\"><div class=\"scuf-col col-12\"><div class=\"chart-wrapper\"><div class=\"custom-display-chart custom-table legend-styles\"><div class=\"ui forge-datatable-wrap\"><div class=\"p-datatable p-component p-datatable-resizable p-datatable-resizable-fit table-widget\"><div class=\"p-datatable-wrapper\"><table><thead class=\"p-datatable-thead\"><tr><th tabindex=\"0\" class=\"p-sortable-column p-resizable-column\"><span class=\"p-column-resizer p-clickable\"></span><span class=\"p-column-title\">External Source id</span><span class=\"p-sortable-column-icon pi pi-fw pi-sort\"></span></th><th tabindex=\"0\" class=\"p-sortable-column p-resizable-column\"><span class=\"p-column-resizer p-clickable\"></span><span class=\"p-column-title\">External Name</span><span class=\"p-sortable-column-icon pi pi-fw pi-sort\"></span></th><th tabindex=\"0\" class=\"p-sortable-column p-highlight p-resizable-column\"><span class=\"p-column-resizer p-clickable\"></span><span class=\"p-column-title\">Priority Type</span><span class=\"p-sortable-column-icon pi pi-fw pi-sort-up\"></span></th><th tabindex=\"0\" class=\"p-sortable-column p-resizable-column\"><span class=\"p-column-resizer p-clickable\"></span><span class=\"p-column-title\">Acknowledgement State</span><span class=\"p-sortable-column-icon pi pi-fw pi-sort\"></span></th><th tabindex=\"0\" class=\"p-sortable-column p-resizable-column\"><span class=\"p-column-resizer p-clickable\"></span><span class=\"p-column-title\">Value</span><span class=\"p-sortable-column-icon pi pi-fw pi-sort\"></span></th><th tabindex=\"0\" class=\"p-sortable-column p-resizable-column\"><span class=\"p-column-resizer p-clickable\"></span><span class=\"p-column-title\">ServiceCase</span><span class=\"p-sortable-column-icon pi pi-fw pi-sort\"></span></th></tr></thead><tfoot class=\"p-datatable-tfoot\"><tr><td class=\"\"></td><td class=\"\"></td><td class=\"\"></td><td class=\"\"></td><td class=\"\"></td><td class=\"\"></td></tr></tfoot><tbody class=\"p-datatable-tbody\"><tr class=\"p-datatable-row\" style=\"height: 32px;\"><td class=\"\"><div class=\"cell-data-wrap\"><span class=\"\" title=\"AHU1_VAV1_FLOW_SETPOINT_OBS\">AHU1_VAV1_FLOW_SETPOINT_OBS</span></div></td><td class=\"\"><div class=\"cell-data-wrap\"><span class=\"\" title=\"PVHI\">PVHI</span></div></td><td class=\"\"><div class=\"cell-data-wrap\"><span class=\"\" title=\"Medium\">Medium</span></div></td><td class=\"\"><div class=\"cell-data-wrap\"><span class=\"\" title=\"NotAcknowledged\">NotAcknowledged</span></div></td><td class=\"\"><div class=\"cell-data-wrap\"><span class=\"\" title=\"30\">30</span></div></td><td class=\"\"><div class=\"cell-data-wrap\"><span class=\"disabled\" title=\"No Data\">No Data</span></div></td></tr></tbody></table></div><div class=\"p-column-resizer-helper p-highlight\" style=\"display: none;\"></div><span class=\"pi pi-arrow-down p-datatable-reorder-indicator-up\" style=\"position: absolute; display: none;\"></span><span class=\"pi pi-arrow-up p-datatable-reorder-indicator-down\" style=\"position: absolute; display: none;\"></span></div></div></div><div class=\"chart-footer\"></div></div></div></div></div><div></div></div></div></span><span class=\"react-resizable-handle react-resizable-handle-se\"></span></div><div class=\"react-grid-item react-resizable-hide react-resizable\" style=\"width: 1076px; height: 112px; position: absolute; top: 1438px; left: 12px;\"><div class=\"ui raised card custom-display-card dashboard add-widget no-print\"><div class=\"content\"><button data-testid=\"add-new-widget-link\" type=\"button\" class=\"ui medium button link\" style=\"min-width: auto;\"><div class=\"button-content\">Click here to add new widget</div></button></div></div><span class=\"react-resizable-handle react-resizable-handle-se\"></span></div></div></div></div></body></html>",
  "method": "POST",
  "mode": "cors",
  "credentials": "include"
});
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources