/**
 * 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-empty-state .md-icon {
  color: var(--md-on-surface-medium);
}
.md-empty-state.md-rounded {
  background-color: var(--md-outline);
}
.md-empty-state.md-primary .md-icon {
  color: var(--md-primary);
}
.md-empty-state.md-accent .md-icon {
  color: var(--md-secondary);
}

.md-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 420px;
  padding: 36px;
  margin: 0 auto;
  position: relative;
  transition: opacity 0.15s cubic-bezier(0, 0, 0.2, 1), transform 0.3s cubic-bezier(0, 0, 0.2, 1);
  will-change: transform, opacity;
}
.md-empty-state.md-rounded {
  max-width: auto;
  border-radius: 50%;
}
.md-empty-state.md-rounded .md-empty-state-container {
  padding: 40px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.md-empty-state .md-button {
  margin: 0.5em 0 0;
}

.md-empty-state-enter {
  opacity: 0;
  transform: scale(0.87);
}
.md-empty-state-enter .md-empty-state-container {
  opacity: 0;
}

.md-empty-state-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}
.md-empty-state-container .md-icon {
  width: 160px;
  height: 160px;
  margin: 0;
  color: rgba(0, 0, 0, 0.24);
}

.md-empty-state-label {
  font-size: 26px;
  font-weight: 500;
  line-height: 40px;
}

.md-empty-state-description {
  margin: 1em 0;
  font-size: 16px;
  line-height: 24px;
}