<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* This css should be used together with a theme css like light or dark */
* {
    xxbox-sizing: border-box;
  }
  
  body {
    xxfont-family: Arial, sans-serif;
  }
  
  @keyframes fadr {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Chat Button */
  #livechat-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    width: 70px;
    height: 70px;
    cursor: pointer;
    
    z-index: 7777;
    border-radius:100%;

    background: none;
    border: none;
  }

  #livechat-toggle:focus {
    outline: none;
    background: none;
    border: none;
  }
  
  #livechat-toggle:hover {
    border-radius:100%;
  }
  
  /* Mobile-First Chat Container */
  #livechat-container {
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    
    xxborder: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    display: none;
    flex-direction: column;
    z-index: 999999;
    
    border-radius:12px;

  
  }
  
  #livechat-header {
    padding-left: 10px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
  }
  
  #livechat-header button {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-right: 10px;
  }
  
  #livechat-messages {
    padding: 10px;
    overflow-y: auto;
  
    scrollbar-width: thin; /* For Firefox */
    
    flex: 1;
    /* On mobile: take up all remaining space below header and above input */
    max-height: calc(100vh - 85px - 60px); /* header (50px) + input container (50px) */
    min-height: calc(100vh - 85px - 60px);
    position: relative;
    z-index: 444;
  }
  
  
  /* For WebKit browsers (Chrome, Safari, Edge) */
  #livechat-messages::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
  }
  
  
  #livechat-messages::-webkit-scrollbar-thumb {
    border-radius: 10px; /* Rounded corners */
  }
  

  
  #livechat-input-wrap {
    display: flex;
    align-items: center;
    padding: 15px;
    padding-top: 17px;
    height: 50px;
  }

  #livechat-input-signature {
    display:flex;
    align-items: center;
    /* justify-content: center; 
    justify-content: space-between;*/
    width: 100%;
    font-size: 12px;
    height: 30px;
    opacity: 0.7;
    margin-top: 5px;
    white-space: nowrap; /* Prevents wrapping */
    padding-left: 12px;
  }

 
  #livechat-input-signature .signature-text {
    padding-left: 10px;
  }
  #livechat-input-signature .powered-by {
    padding-right: 10px;
    margin-left: auto;
  }
  #livechat-input-signature .powered-by-right {
    margin-left: auto;
    margin-right: 10px;
  }

  #livechat-input-signature .signature-text, 
  #livechat-input-signature .powered-by {
    flex-shrink: 0; /* Prevents shrinking */
    white-space: nowrap; /* Ensures text stays on one line */
    display: flex; 
    align-items: center;
}

  
  #livechat-input-signature a {
    text-decoration: none;
    display:flex;
    align-items: center;
    justify-content: center;
    padding-left: 0px;
    padding-right: 6px;
    border-radius: 6px;
    margin-left: 2px;
  
  }
  
  #livechat-input-signature a:hover {
    text-decoration: none;
  }
  
  #livechat-input-signature a img {
    margin-right: 3px;
    margin-left: 6px;
  }
  
  
  
  #livechat-input-container {
    margin-top:5px;
  }
  
  #livechat-input {
    flex: 1;
    padding: 7px;
    padding-left:20px;
    padding-right: 37px;
    outline: none;
    font-size: 14px;
    border-radius: 20px;
    margin-right: 10px;
    z-index: 888;
  }
  
  #livechat-attach-image {
    background-color: transparent;
    border: none;
    cursor: pointer;
  }

  #livechat-send {
    
    border: none;
    
    position: absolute;
    right: 65px;
    cursor: pointer;
    border-radius: 100%;
    z-index: 1000;
  }
  
  #livechat-send:hover {
    border-radius: 100%;
  }
  

  
  /* Messages */
  .message {
    margin-bottom: 10px;
    clear: both;
    max-width: 100%;
    overflow-x: auto;
  }
  
  .message.user {
    text-align: right;
    margin-left: min(15%, 60px);
  }
  .message.agent {
    text-align: left;
    margin-right: min(15%, 60px);
   
  }
  .message.system {
    text-align: center;
    /*margin-left: min(15%, 60px);
    margin-right: min(15%, 60px);*/
    overflow-y: auto;
    max-height: 400px;
    
    border-radius: 4px;
  }
  
  .system&gt;.bubble&gt;.message-title time{
    font-size: 11px;
 
    margin-top: -22px;
    float: right;
  }
  
  .message.user .bubble {

    display: inline-block;
    padding: 14px;
    border-radius: 12px;
    border-top-right-radius: 0px;
  
    margin-left: 3px;
    margin-bottom: 3px;
  }
  
  .message.agent .bubble {
    
    display: inline-block;
    padding: 14px;
    border-radius: 12px;
    border-top-left-radius: 0px;
  
    margin-right: 3px;
    margin-bottom: 3px;
  }
  
  .message.system .message-report {
    float:right;
    
    cursor: pointer;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 8px;
    font-size:10px;
  }
  

  .message.system .bubble {

    text-align: left;
    display: inline-block;
    padding: 4px;
    border-radius: 12px;
    width: 100%;
  }
  
  .message-option-text{
    font-weight: bold;
  }
  
  .message-option {
    display: flex;
  
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
   
    border-radius: 6px;
    padding: 10px;
  
  }
  
  
  .notvisible {
    visibility: hidden;
  }
  
  .message-title, time{
    height: 10px
  }
  
  .agent&gt;.bubble {
    border: 1px solid transparent;
  }
  
  .agent&gt;.bubble:hover{
    border: 1px solid #c2dbd6;
  }
  
  
  .agent&gt;.bubble&gt;.message-title&gt;.message-title-sender {
    float: right;
    font-size: 11px;
    margin-top: -10px;
    margin-left: 10px;
  }
  .user&gt;.bubble&gt;.message-title&gt;.message-title-sender {
    float: left;
    font-size: 11px;
    margin-top: -10px;
    
    margin-right: 10px;
  }
  
  .agent&gt;.bubble&gt;.message-title time{
      font-size: 11px;
      
      float: left;
      text-align: left;
      width: 100%;
      position: relative;
      right: 0px;
      padding: 0px;
      margin-top: -15px;
  }
  
  .user&gt;.bubble&gt;.message-title time{
      font-size: 11px;
      margin-top: -10px;
      float: right;
  }
  
  
  .message-options button {

    padding: 1px 10px 1px 10px;
    margin: 0px;
    margin-left: 15px;
    border-radius: 7px;
    cursor: pointer;

  }
  

  
  .message-images {
    padding-left: 10px;
    padding-right: 10px;
  
    display: grid;
    gap: 10px;
  }
  .message-images img{
    margin-top: 15px;
    border-radius: 10px;
  
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  
  .message-images:has(img:only-child) {
    grid-template-columns: 1fr;
  }
  .message-images:has(img:nth-child(2)) {
    grid-template-columns: repeat(2, 1fr);
  }
  .message-images:has(img:nth-child(n+3)) {
    grid-template-columns: repeat(2, 1fr);
  }
  
  #livechat-image-preview-container {
    position: absolute;
    bottom: 90px; /* adjust so it hovers above the button */
    left: auto;
    right: 20px; /* adjust based on your layout */

    border-radius: 4px;
    padding: 5px;
    
  
    display: flex;
    align-items: center;
    gap: 5px;
  
    z-index: 9999;
  }
  
  
  #livechat-image-preview-container img {
    max-width: 50px;
    max-height: 50px;
    border-radius: 4px;
  }
  
  .livechat-image-remove {
    background: none;
    
    cursor: pointer;
    padding: 0px;
    margin-left: 2px;
    line-height: 0;
  }
  .livechat-image-remove:hover {
    border-radius:7px;
  }
  

  
  .image-preview-content {
    padding:2px;
    border-radius: 5px;
    display: flex;
  }
  
  
  /* markdown elements */
  #livechat-container pre{
      
      padding: 10px;
      border-radius: 5px;
      display: block;
      font-size: 11px;
      overflow-x: auto;
  }
  
  /* Typing Indicator */
  .typing-indicator {
    display: inline-block;
    width: 50px;
    text-align: center;
  }
  
  .typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 2px;
    
    border-radius: 50%;
    opacity: 0.6;
    animation: typing-bounce 1s infinite;
  }
  
  .typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
  }
  
  .typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
  }
  
  @keyframes typing-bounce {
    0%, 80%, 100% {
      transform: translateY(0);
    } 
    40% {
      transform: translateY(-6px);
    }
  }
  
  #livechat-menu, .livechat-menu-item {
    cursor: pointer;
  }
  
  #livechat-menu-panel {
      position: absolute;
      float: left;
      margin-top: -30px;
      margin-left: 35px;
      
      height: fit-content;
      
      border-radius: 6px;
      padding: 7px;
      z-index: 500;

      display: none;
  }
  
  #livechat-menu-panel&gt;li {
      list-style-type: none;
      list-style: none;
  }
  
  .livechat-menu-item {
    padding: 5px;
    cursor: pointer;
    padding:3px;
    border-radius:4px;
    padding-left:14px;
    padding-right:14px;
  }
  
  #livechat-input-initialloader{
    text-align: center;
  }
  
  /* Desktop View (min-width: 601px): revert to a smaller, contained widget */
  @media (min-width: 601px) {
    #livechat-container {
      bottom: 95px;
      right: 20px;
      width: min(100vw, 476px);
      max-height: min(80vh, 700px);
      
      xxborder-radius: 8px;

    }
  
    #livechat-messages {
      max-height: calc(min(80vh, 700px) - 85px - 50px - 45px);
      min-height: calc(min(80vh, 700px) - 85px - 52px);
    }
    #livechat-header {
      xxborder-top-left-radius: 12px;
      xxborder-top-right-radius: 12px;
      animation: 500ms ease-out 0s 1 normal none running fadr;
    }
    #livechat-input-container {
      margin-top:0px;
    }
      
  }
  </pre></body></html>