1. .Tooltip {
    
  2.   position: absolute;
    
  3.   pointer-events: none;
    
  4.   border: none;
    
  5.   border-radius: 0.25rem;
    
  6.   padding: 0.25rem 0.5rem;
    
  7.   font-family: var(--font-family-sans);
    
  8.   font-size: 12px;
    
  9.   background-color: var(--color-tooltip-background);
    
  10.   color: var(--color-tooltip-text);
    
  11.   opacity: 1;
    
  12.   white-space: nowrap;
    
  13.   /* Make sure this is above the DevTools, which are above the Overlay */
    
  14.   z-index: 10000002;
    
  15. }
    
  16. 
    
  17. .Tooltip.hidden {
    
  18.   opacity: 0;
    
  19. }
    
  20. 
    
  21. 
    
  22. .Container {
    
  23.   width: -moz-max-content;
    
  24.   width: -webkit-max-content;
    
  25. }