<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tooltip {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background-color: #252525;
    box-sizing: border-box;
    padding: 8px 16px;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    width: fit-content;
    height: fit-content;
    max-width: calc(100vw - 32px);
    margin: 0 auto;
    filter: drop-shadow(0px 4px 4px rgba(0,0,0,0.25));
    position: fixed !important;
    left: 0;
    right: 0;
    margin: auto;
    top: unset !important;
    bottom: 16px;
    z-index: 100;
    transform: none !important;
  }

  /* dock縺瑚｡ｨ遉ｺ縺輔ｌ縺ｦ縺�ｋ 縺九▽dock陦ｨ遉ｺ縺ゅｊ縺ｮ蝣ｴ蜷� */
  body:has(.c-dock) {
    position: relative;
  }
  
  body:has(.c-dock) .tooltip {
    bottom: 204px;
  }

  .tooltip .tooltip-inner {
    text-align: left;
    display: flex;
    align-items: center;
  }

  .tooltip[aria-hidden='true'] {
    visibility: hidden;
    opacity: 0;
    transition: opacity .15s, visibility .15s;
  }

  .tooltip[aria-hidden='false'] {
    visibility: visible;
    opacity: 1;
    transition: opacity .15s;
  }

  .tooltip .closeIcon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 auto;
    cursor: pointer;
    margin-left: 16px;
  }

  .tooltip .closeIcon &gt; svg {
    fill: #fff;
    width: 32px;
    height: 32px;
  }

  @media only screen and (min-width:1024px) {
    .tooltip {
        position: fixed !important;
        bottom: 16px;
        left: 16px !important;
        right: auto;
    }

    /* dock縺瑚｡ｨ遉ｺ縺輔ｌ縺ｦ縺�ｋ蝣ｴ蜷� */
    body:has(.c-dock) .tooltip {
        bottom: 236px;
    }
}
</pre></body></html>