@coveops/abi 0.6.0 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/abi/abi.css +1 -1
- package/dist/abi/abi.esm.js +1 -1
- package/dist/abi/index.esm.js +1 -1
- package/dist/abi/p-0b2d2c7b.entry.js +1 -0
- package/dist/abi/p-1c8e5ecc.entry.js +1 -0
- package/dist/abi/{p-24a5774b.entry.js → p-9f80f982.entry.js} +1 -1
- package/dist/abi/{p-adb4a9f9.entry.js → p-e7416b40.entry.js} +1 -1
- package/dist/abi/p-facfefe1.js +2 -0
- package/dist/bundle/index.css +1 -1
- package/dist/bundle/index.html +1 -1
- package/dist/bundle/index.js +28 -28
- package/dist/cjs/abi.cjs.js +1 -1
- package/dist/cjs/faq-popup-component.cjs.entry.js +33 -16
- package/dist/cjs/{index-9c1d2337.js → index-87155b50.js} +32 -1
- package/dist/cjs/index.cjs.js +1 -1
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/cjs/results-manager.cjs.entry.js +10 -10
- package/dist/cjs/sample-component.cjs.entry.js +1 -1
- package/dist/cjs/strip-html-component.cjs.entry.js +1 -1
- package/dist/collection/components/faq-popup-component/faq-popup-component.js +32 -15
- package/dist/components/index.js +74 -26
- package/dist/esm/abi.js +1 -1
- package/dist/esm/faq-popup-component.entry.js +33 -16
- package/dist/esm/{index-8b0b351b.js → index-99665e7c.js} +32 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/loader.js +1 -1
- package/dist/esm/results-manager.entry.js +10 -10
- package/dist/esm/sample-component.entry.js +1 -1
- package/dist/esm/strip-html-component.entry.js +1 -1
- package/package.json +1 -1
- package/src/components/faq-popup-component/faq-popup-component.tsx +38 -20
- package/src/components/results-manager/AppTemplate.html +1 -1
- package/src/components/results-manager/DocumentsTemplate.html +1 -1
- package/src/components/results-manager/ELearningTemplate.html +1 -1
- package/src/components/results-manager/FAQTemplate.html +1 -1
- package/src/components/results-manager/KATemplate.html +2 -2
- package/src/components/results-manager/MediaTemplate.html +2 -2
- package/src/components/results-manager/QuickLinksTemplate.html +1 -1
- package/src/components/results-manager/SitePagesTemplate.html +1 -1
- package/src/components/results-manager/template-1.html +1 -1
- package/src/pages/index.html +1 -1
- package/src/style/index.css +51 -18
- package/dist/abi/p-1cbc472e.entry.js +0 -1
- package/dist/abi/p-3d7bc0f4.entry.js +0 -1
- package/dist/abi/p-52c70e74.js +0 -2
| @@ -1,4 +1,4 @@ | |
| 1 | 
            -
            import { r as registerInstance, h, g as getElement, f as forceUpdate } from './index- | 
| 1 | 
            +
            import { r as registerInstance, h, g as getElement, f as forceUpdate } from './index-99665e7c.js';
         | 
| 2 2 | 
             
            import { i as initializeBindings, n as nw, D as DI } from './index-42e9a708.js';
         | 
| 3 3 | 
             
            import { w as waitForAtomic } from './atomic-0e957d02.js';
         | 
| 4 4 | 
             
            import './headless.esm-085e70ed-c4dfb380.js';
         | 
| @@ -1,4 +1,4 @@ | |
| 1 | 
            -
            import { r as registerInstance, h, g as getElement } from './index- | 
| 1 | 
            +
            import { r as registerInstance, h, g as getElement } from './index-99665e7c.js';
         | 
| 2 2 | 
             
            import './headless.esm-085e70ed-c4dfb380.js';
         | 
| 3 3 | 
             
            import { r as resultContext } from './result-template-decorators-881a4c8e-ed85ad21.js';
         | 
| 4 4 |  | 
    
        package/package.json
    CHANGED
    
    
| @@ -44,47 +44,63 @@ export class FaqPopupComponent { | |
| 44 44 |  | 
| 45 45 | 
             
              private openFAQModal(result: Result) {
         | 
| 46 46 | 
             
                if(this.bindings){
         | 
| 47 | 
            -
             | 
| 48 | 
            -
             | 
| 49 | 
            -
             | 
| 50 | 
            -
             | 
| 47 | 
            +
                  const { logClickEvent } = loadGenericAnalyticsActions (this.bindings.engine);
         | 
| 48 | 
            +
                  const logClickPayload : LogClickEventActionCreatorPayload= { 
         | 
| 49 | 
            +
                    evt: 'documentQuickview',
         | 
| 50 | 
            +
                    result: result,
         | 
| 51 | 
            +
                  }
         | 
| 52 | 
            +
                  this.bindings.engine.dispatch(logClickEvent(logClickPayload))
         | 
| 51 53 | 
             
                }
         | 
| 52 | 
            -
                this.bindings.engine.dispatch(logClickEvent(logClickPayload))
         | 
| 53 | 
            -
              }
         | 
| 54 54 | 
             
                this.modalElement.source = this.host; 
         | 
| 55 | 
            -
                this.modalElement.querySelector('[slot=header]').children[0].innerHTML = 'Question: ' + (this.result?.title || '');
         | 
| 56 55 | 
             
                // Get the body slot
         | 
| 57 56 | 
             
                const bodySlot = this.modalElement.querySelector('[slot=body]');
         | 
| 58 57 |  | 
| 59 58 | 
             
                // Clear any existing content
         | 
| 60 59 | 
             
                bodySlot.innerHTML = '';
         | 
| 61 60 |  | 
| 62 | 
            -
                const  | 
| 63 | 
            -
             | 
| 64 | 
            -
                 | 
| 61 | 
            +
                const tableEl = document.createElement('table');
         | 
| 62 | 
            +
             | 
| 63 | 
            +
                const questionElement = document.createElement("tr");
         | 
| 64 | 
            +
                questionElement.className = "question-row";
         | 
| 65 | 
            +
                questionElement.innerHTML = '<td>Question: </td> <td>' + (this.result?.title || '') + '</td>'
         | 
| 66 | 
            +
                    +'<div id="faq-modal-close-button"><svg width="48" height="49" viewBox="0 0 48 49" fill="black" xmlns="http://www.w3.org/2000/svg"><rect y="0.5" width="48" height="48" rx="24" fill="white"/><path fill-rule="evenodd" clip-rule="evenodd" d="M22.5382 24.5L15 16.9618L16.4618 15.5L24 23.0382L31.5382 15.5L33 16.9618L25.4618 24.5L33 32.0382L31.5382 33.5L24 25.9618L16.4618 33.5L15 32.0382L22.5382 24.5Z" fill="#17171A"/></svg></div>';
         | 
| 65 67 |  | 
| 68 | 
            +
                tableEl.appendChild(questionElement);
         | 
| 69 | 
            +
             | 
| 70 | 
            +
                const answerElement = document.createElement('tr');
         | 
| 71 | 
            +
                
         | 
| 66 72 | 
             
                // Create the answer title element and set its text
         | 
| 67 | 
            -
                const answerTitleElement = document.createElement(' | 
| 73 | 
            +
                const answerTitleElement = document.createElement('td');
         | 
| 68 74 | 
             
                answerTitleElement.innerText = 'Answer:';
         | 
| 69 75 | 
             
                answerElement.appendChild(answerTitleElement);
         | 
| 70 76 |  | 
| 71 | 
            -
                // Get the answer from the result object
         | 
| 72 | 
            -
                const answerContent = this.result?.raw.answer as string || '';
         | 
| 73 | 
            -
             | 
| 74 77 | 
             
                // Create a new element to contain the answer content
         | 
| 75 | 
            -
                const answerContentElement = document.createElement(' | 
| 76 | 
            -
                answerContentElement.innerHTML =  | 
| 78 | 
            +
                const answerContentElement = document.createElement('td');
         | 
| 79 | 
            +
                answerContentElement.innerHTML = this.result?.raw.answer as string || '';
         | 
| 77 80 |  | 
| 78 81 | 
             
                // Append the answer content element to the answer element
         | 
| 79 82 | 
             
                answerElement.appendChild(answerContentElement);
         | 
| 80 83 |  | 
| 81 84 | 
             
                // Now, the answer element has the title and the content properly appended
         | 
| 82 85 |  | 
| 83 | 
            -
                 | 
| 86 | 
            +
                tableEl.appendChild(answerElement);
         | 
| 84 87 |  | 
| 85 88 |  | 
| 89 | 
            +
                if(this.result?.raw.category) {
         | 
| 90 | 
            +
                  const categoryElement = document.createElement("tr");
         | 
| 91 | 
            +
                  categoryElement.innerHTML = '<td> Category: </td><td>'+ this.result.raw.category + '</td>';
         | 
| 92 | 
            +
                  tableEl.appendChild(categoryElement);
         | 
| 93 | 
            +
                }
         | 
| 94 | 
            +
             | 
| 95 | 
            +
                if(this.result?.raw.newmoreinfo) {
         | 
| 96 | 
            +
                  const linkElement = document.createElement("tr");
         | 
| 97 | 
            +
                  const linkUrl = this.result.raw.newmoreinfo;
         | 
| 98 | 
            +
                  linkElement.innerHTML = '<td> Link: </td><td> <a href="'+linkUrl+'" target="_blank">'+linkUrl+'</a> </td>';
         | 
| 99 | 
            +
                  tableEl.appendChild(linkElement);
         | 
| 100 | 
            +
                }
         | 
| 101 | 
            +
             | 
| 86 102 | 
             
                // Create and append the category element
         | 
| 87 | 
            -
                const categoryElement = document.createElement('div');
         | 
| 103 | 
            +
                /*const categoryElement = document.createElement('div');
         | 
| 88 104 | 
             
                categoryElement.innerHTML = 'Category: ' + (this.result?.raw.category || '');
         | 
| 89 105 | 
             
                bodySlot.appendChild(categoryElement);
         | 
| 90 106 |  | 
| @@ -94,9 +110,11 @@ export class FaqPopupComponent { | |
| 94 110 | 
             
                const linkElement = document.createElement('div');
         | 
| 95 111 | 
             
                const linkUrl = this.result?.raw.newmoreinfo || '';
         | 
| 96 112 | 
             
                linkElement.innerHTML = `Link: <a href="${linkUrl}" target="_blank">${linkUrl}</a>`;
         | 
| 97 | 
            -
                bodySlot.appendChild(linkElement) | 
| 113 | 
            +
                bodySlot.appendChild(linkElement);*/
         | 
| 114 | 
            +
             | 
| 115 | 
            +
                bodySlot.appendChild(tableEl);
         | 
| 98 116 |  | 
| 99 | 
            -
                this.modalElement.querySelector('#faq-modal-close').addEventListener('click', this.closeFAQModal);
         | 
| 117 | 
            +
                this.modalElement.querySelector('#faq-modal-close-button').addEventListener('click', this.closeFAQModal);
         | 
| 100 118 | 
             
                this.modalElement.setAttribute('is-open', 'true');
         | 
| 101 119 |  | 
| 102 120 | 
             
                if (this.result) {
         | 
| @@ -41,7 +41,7 @@ | |
| 41 41 | 
             
            </style>
         | 
| 42 42 |  | 
| 43 43 | 
             
            <atomic-result-section-visual>
         | 
| 44 | 
            -
              <img src=" | 
| 44 | 
            +
              <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/ProcessPeople.png" alt="Image" />
         | 
| 45 45 |  | 
| 46 46 | 
             
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 47 47 | 
             
              <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="38" height="35" viewBox="0 0 60 50">
         | 
| @@ -58,7 +58,7 @@ | |
| 58 58 | 
             
            </style>
         | 
| 59 59 |  | 
| 60 60 | 
             
            <atomic-result-section-visual>
         | 
| 61 | 
            -
              <img src=" | 
| 61 | 
            +
              <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/Documents.png" alt="Image" />
         | 
| 62 62 | 
             
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 63 63 | 
             
              <?xml version="1.0" encoding="UTF-8"?>
         | 
| 64 64 | 
             
              <svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="35" height="35" viewBox="0 0 55 50">
         | 
| @@ -45,7 +45,7 @@ | |
| 45 45 | 
             
            </style>
         | 
| 46 46 |  | 
| 47 47 | 
             
            <atomic-result-section-visual>
         | 
| 48 | 
            -
              <img src=" | 
| 48 | 
            +
              <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/Link.png" alt="Image" />
         | 
| 49 49 |  | 
| 50 50 | 
             
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 51 51 | 
             
              <?xml version="1.0" encoding="UTF-8"?>
         | 
| @@ -73,7 +73,7 @@ atomic-result-section-visual { | |
| 73 73 | 
             
            </style>
         | 
| 74 74 |  | 
| 75 75 | 
             
            <atomic-result-section-visual>
         | 
| 76 | 
            -
              <img src=" | 
| 76 | 
            +
              <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/FAQ.png" alt="Image" />
         | 
| 77 77 | 
             
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 78 78 | 
             
              <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="40px" height="45px" viewBox="0 0 50 45" version="1.1">
         | 
| 79 79 | 
             
                <g id="surface1">
         | 
| @@ -56,7 +56,7 @@ | |
| 56 56 |  | 
| 57 57 | 
             
            <atomic-result-section-visual>
         | 
| 58 58 | 
             
            <atomic-field-condition  must-match-source="ServiceNow - Knowledge">
         | 
| 59 | 
            -
              <img src=" | 
| 59 | 
            +
              <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/Default.png" alt="Image" />
         | 
| 60 60 | 
             
              <!-- <atomic-icon class="icon"></atomic-icon>  <?xml version="1.0" encoding="UTF-8"?>
         | 
| 61 61 | 
             
              <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="55px" height="55px" viewBox="0 0 65 65" version="1.1">
         | 
| 62 62 | 
             
              <g id="surface1">
         | 
| @@ -90,7 +90,7 @@ | |
| 90 90 | 
             
              </svg> -->
         | 
| 91 91 | 
             
            </atomic-field-condition>
         | 
| 92 92 | 
             
              <atomic-field-condition class="field" must-match-source="Salesforce - Guru">
         | 
| 93 | 
            -
                <img src=" | 
| 93 | 
            +
                <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/FAQ.png" alt="Image" />
         | 
| 94 94 |  | 
| 95 95 | 
             
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 96 96 |  | 
| @@ -44,12 +44,12 @@ | |
| 44 44 |  | 
| 45 45 | 
             
            <atomic-result-section-visual>
         | 
| 46 46 | 
             
              <atomic-field-condition class="field" must-match-filetype="mp4,wmv,avi,MOV,flv,mkv,webm,ogg,ogv,m4v">
         | 
| 47 | 
            -
                <img src=" | 
| 47 | 
            +
                <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/Images.png" alt="Image" />
         | 
| 48 48 | 
             
                <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 49 49 | 
             
                <img src="https://abiglobal--c.vf.force.com/resource/PP_Coveo/img/Movies.png" class="thumbnail"> -->
         | 
| 50 50 | 
             
              </atomic-field-condition>
         | 
| 51 51 | 
             
              <atomic-field-condition class="field" must-match-filetype="gif,jpeg,jpg,png,bmp,Image,mp3,mp4,wmv,avi,MOV,flv,mkv,webm,ogg,ogv,m4v">
         | 
| 52 | 
            -
                <img src=" | 
| 52 | 
            +
                <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/Movies.png" alt="Image" />
         | 
| 53 53 | 
             
                <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 54 54 | 
             
                <img src="https://abiglobal--c.vf.force.com/resource/PP_Coveo/img/Images.png" class="thumbnail"> -->
         | 
| 55 55 | 
             
              </atomic-field-condition>
         | 
| @@ -56,7 +56,7 @@ | |
| 56 56 | 
             
                <path d="M0 0 C3.43595166 1.52708963 6.11912454 3.59927045 9 6 C8.01 6.66 7.02 7.32 6 8 C4.02 6.35 2.04 4.7 0 3 C-0.99 4.485 -0.99 4.485 -2 6 C-2.66 6 -3.32 6 -4 6 C-4 5.01 -4 4.02 -4 3 C-2 1.3125 -2 1.3125 0 0 Z " fill="#DFDFDF" transform="translate(28,34)"></path>
         | 
| 57 57 | 
             
                <path d="M0 0 C1 3 1 3 1 5 C2.45833358 6.62514468 2.45833358 6.62514468 4 8 C3.34 9.32 2.68 10.64 2 12 C0.00449854 10.00449854 -0.81376393 8.52075165 -2 6 C-2.37125 5.2575 -2.7425 4.515 -3.125 3.75 C-3.41375 3.1725 -3.7025 2.595 -4 2 C-2.68 1.34 -1.36 0.68 0 0 Z " fill="#C6C6C6" transform="translate(36,28)"></path>
         | 
| 58 58 | 
             
                </svg> -->
         | 
| 59 | 
            -
                <img src=" | 
| 59 | 
            +
                <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/ProcessPeople.png" alt="Image" />
         | 
| 60 60 |  | 
| 61 61 | 
             
            </atomic-result-section-visual>
         | 
| 62 62 |  | 
| @@ -69,7 +69,7 @@ | |
| 69 69 | 
             
            </style>
         | 
| 70 70 |  | 
| 71 71 | 
             
            <atomic-result-section-visual>
         | 
| 72 | 
            -
              <img src=" | 
| 72 | 
            +
              <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/Default.png" alt="Image" />
         | 
| 73 73 | 
             
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 74 74 | 
             
              <?xml version="1.0" encoding="UTF-8"?>
         | 
| 75 75 | 
             
              <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="55px" height="55px" viewBox="0 0 65 65" version="1.1">
         | 
| @@ -56,7 +56,7 @@ | |
| 56 56 | 
             
            </style>
         | 
| 57 57 |  | 
| 58 58 | 
             
            <atomic-result-section-visual>
         | 
| 59 | 
            -
              <img src=" | 
| 59 | 
            +
              <img src="https://cdn.jsdelivr.net/npm/@coveops/abi@latest/dist/abi/images/Default.png" alt="Image" />
         | 
| 60 60 | 
             
              <!-- <atomic-icon class="icon"></atomic-icon>
         | 
| 61 61 | 
             
              <?xml version="1.0" encoding="UTF-8"?>
         | 
| 62 62 | 
             
              <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="55px" height="55px"
         | 
    
        package/src/pages/index.html
    CHANGED
    
    | @@ -60,7 +60,7 @@ | |
| 60 60 |  | 
| 61 61 | 
             
                </div>
         | 
| 62 62 | 
             
                <div slot="body" style="max-width: none;">This is the body</div>
         | 
| 63 | 
            -
                 | 
| 63 | 
            +
                <div slot="footer"><button id="btn-done">Done</button></div>
         | 
| 64 64 | 
             
              </atomic-modal>
         | 
| 65 65 | 
             
                  <atomic-search-layout>
         | 
| 66 66 | 
             
                    <atomic-layout-section style="justify-self:center" section="search">
         | 
    
        package/src/style/index.css
    CHANGED
    
    | @@ -4,12 +4,6 @@ body { | |
| 4 4 |  | 
| 5 5 | 
             
            }
         | 
| 6 6 |  | 
| 7 | 
            -
            atomic-modal#faq-modal::part(header-wrapper) {
         | 
| 8 | 
            -
            display: grid;
         | 
| 9 | 
            -
            width: 100%;
         | 
| 10 | 
            -
            padding-right: 0px !important;
         | 
| 11 | 
            -
            }
         | 
| 12 | 
            -
             | 
| 13 7 | 
             
            atomic-search-box::part(wrapper) {
         | 
| 14 8 | 
             
              border-radius: 30px;
         | 
| 15 9 | 
             
              border: thin solid #7e8c9a;
         | 
| @@ -51,28 +45,67 @@ atomic-pager::part(page-button):hover { | |
| 51 45 | 
             
              cursor: pointer;
         | 
| 52 46 | 
             
            }
         | 
| 53 47 |  | 
| 54 | 
            -
            atomic-modal#faq-modal::part(header-wrapper) {
         | 
| 55 | 
            -
              display: grid;
         | 
| 56 | 
            -
              width: 100%;
         | 
| 57 | 
            -
              padding-right: 0px !important;
         | 
| 58 | 
            -
              }
         | 
| 59 | 
            -
             | 
| 60 | 
            -
             | 
| 61 48 | 
             
            atomic-result-section-visual {
         | 
| 62 49 | 
             
                height: 6rem !important;
         | 
| 63 50 | 
             
                width: 3rem !important;
         | 
| 64 51 | 
             
            }
         | 
| 65 52 |  | 
| 53 | 
            +
            atomic-modal#faq-modal::part(header-wrapper) {
         | 
| 54 | 
            +
              display: none;
         | 
| 55 | 
            +
            }
         | 
| 66 56 | 
             
            atomic-modal::part(backdrop){
         | 
| 67 57 | 
             
              grid-template-columns: none !important;
         | 
| 68 58 | 
             
            }
         | 
| 69 59 | 
             
            atomic-modal::part(header){
         | 
| 70 60 | 
             
              max-width: none;
         | 
| 71 | 
            -
             | 
| 61 | 
            +
            }
         | 
| 62 | 
            +
            atomic-modal::part(body-wrapper) {
         | 
| 63 | 
            +
              padding: 0;
         | 
| 64 | 
            +
            }
         | 
| 72 65 | 
             
            atomic-modal::part(body){
         | 
| 73 66 | 
             
              max-width: none;
         | 
| 74 | 
            -
             | 
| 67 | 
            +
            }
         | 
| 68 | 
            +
             | 
| 69 | 
            +
            atomic-modal::part(footer),
         | 
| 70 | 
            +
            atomic-modal::part(footer-wrapper) {
         | 
| 71 | 
            +
              display: none;
         | 
| 72 | 
            +
            }
         | 
| 73 | 
            +
             | 
| 74 | 
            +
            atomic-modal#faq-modal table {
         | 
| 75 | 
            +
              width: -moz-available;          /* WebKit-based browsers will ignore this. */
         | 
| 76 | 
            +
              width: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
         | 
| 77 | 
            +
              width: fill-available;
         | 
| 78 | 
            +
              border-collapse: collapse;
         | 
| 79 | 
            +
              font-size: 1.3rem;
         | 
| 80 | 
            +
            }
         | 
| 81 | 
            +
             | 
| 82 | 
            +
            atomic-modal#faq-modal table tr.question-row {
         | 
| 83 | 
            +
              border-bottom: 1px solid #a6a6a6;
         | 
| 84 | 
            +
            }
         | 
| 85 | 
            +
             | 
| 86 | 
            +
            atomic-modal#faq-modal table tr {
         | 
| 87 | 
            +
              vertical-align: top;
         | 
| 88 | 
            +
            }
         | 
| 89 | 
            +
             | 
| 90 | 
            +
            atomic-modal#faq-modal table tr td {
         | 
| 91 | 
            +
              padding: 1.5rem;
         | 
| 92 | 
            +
            }
         | 
| 93 | 
            +
            atomic-modal#faq-modal table tr td a {
         | 
| 94 | 
            +
              color: #caa144;
         | 
| 95 | 
            +
            }
         | 
| 96 | 
            +
             | 
| 97 | 
            +
             | 
| 98 | 
            +
            atomic-modal#faq-modal #faq-modal-close-button {
         | 
| 99 | 
            +
              cursor: pointer;
         | 
| 100 | 
            +
              top: 0;
         | 
| 101 | 
            +
              right: 1.5rem;
         | 
| 102 | 
            +
              position: absolute;
         | 
| 103 | 
            +
            }
         | 
| 104 | 
            +
             | 
| 105 | 
            +
            atomic-search-box::part(recent-query-text), 
         | 
| 106 | 
            +
            atomic-search-box::part(input), 
         | 
| 107 | 
            +
            atomic-search-box::part(query-suggestion-text) {
         | 
| 108 | 
            +
              font-size: 1.3rem !important
         | 
| 109 | 
            +
            }
         | 
| 110 | 
            +
             | 
| 75 111 |  | 
| 76 | 
            -
              atomic-search-box::part(recent-query-text), 
         | 
| 77 | 
            -
              atomic-search-box::part(input), 
         | 
| 78 | 
            -
              atomic-search-box::part(query-suggestion-text) {font-size: 1.3rem !important}
         |