/**
 * The default transition, used when the element is visible
 * since the beginning of the animation
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The enter transition, used when the element is not visible on the screen
 * since the beginning of the animation and become visible
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The leave transition, used when the element is visible on the screen
 * since the beginning of the animation and is removed
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The stand transition, used when the element is going to accelerate,
 * like movements from bottom to top
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The out transition, used when the element is going to deaccelerate,
 * like movements from top to bottom
 * ---
 * @access private
 * @type transition
 * @group transition
 */
/**
 * The layout system breakpoints
 * ---
 * @access private
 * @type layout
 * @group layout
 */
/**
 * The available gutter sizes
 * ---
 * @access private
 * @type layout
 * @group layout
 */
/**
 * Breakpoint
 */
/**
 * Base
 */
/**
 * Layout Item
 */
/**
 * Hide Element
 */
.md-popover.md-tooltip {
  z-index: 111;
  pointer-events: none;
}
.md-popover.md-tooltip > .content {
  font-size: 10px;
  padding: 0 8px;
  height: 22px;
  line-height: 22px;
  text-transform: none;
  white-space: nowrap;
  color: var(--md-surface);
  background-color: var(--md-on-surface-medium);
}
@media (max-width: 960px) {
  .md-popover.md-tooltip > .content {
    height: 32px;
    font-size: 14px;
    line-height: 32px;
  }
}
.md-popover.md-tooltip .md-popover-enter-active {
  transition-duration: 0.15s;
}