/**
 * 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
 */
.md-avatar {
  width: 40px;
  min-width: 40px;
  height: 40px;
  margin: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  user-select: none;
  position: relative;
  border-radius: 40px;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: color, background-color;
  will-change: color, background-color;
  font-size: 24px;
  letter-spacing: -0.05em;
  vertical-align: middle;
  background-color: var(--md-outline);
  color: var(--md-on-primary);
}
.md-avatar.md-large {
  min-width: 64px;
  min-height: 64px;
  border-radius: 64px;
  font-size: 32px;
}
.md-avatar.md-large .md-icon {
  font-size: 40px !important;
}
.md-avatar.md-small {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 24px;
  font-size: 14px;
}
.md-avatar.md-small .md-icon {
  font-size: 16px !important;
}
.md-avatar .md-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.md-avatar img {
  width: 100%;
  height: 100%;
  display: block;
}
.md-avatar .md-ripple {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.md-avatar.md-primary {
  background-color: var(--md-primary);
}
.md-avatar.md-accent {
  background-color: var(--md-secondary);
}