/**
 * 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 elevation transition duration
 * ---
 * @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-tabs {
  display: flex;
  flex-direction: column;
}
.md-tabs .md-tabs-navigation {
  background-color: var(--md-background);
}
.md-tabs .md-tabs-navigation .md-button {
  color: var(--md-on-surface-medium);
}
.md-tabs .md-tabs-navigation .md-button.md-active {
  color: var(--md-primary);
}
.md-tabs .md-tabs-indicator {
  background-color: var(--md-primary);
}
.md-tabs.md-primary .md-tabs-navigation {
  background-color: var(--md-primary);
}
.md-tabs.md-primary .md-tabs-navigation .md-button {
  color: var(--md-on-primary);
}
.md-tabs.md-primary .md-tabs-indicator {
  background-color: var(--md-on-primary);
}
.md-tabs.md-accent .md-tabs-navigation {
  background-color: var(--md-secondary);
}
.md-tabs.md-accent .md-tabs-navigation .md-button {
  color: var(--md-on-secondary);
}
.md-tabs.md-accent .md-tabs-indicator {
  background-color: var(--md-on-secondary);
}
.md-tabs.md-no-transition * {
  transition: none !important;
}
.md-tabs.md-dynamic-height .md-tabs-content {
  transition: height 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: height;
}
.md-tabs.md-transparent .md-tabs-navigation,
.md-tabs.md-transparent .md-tabs-content {
  background-color: transparent !important;
}
.md-tabs.md-alignment-left .md-tabs-navigation {
  justify-content: flex-start;
}
.md-tabs.md-alignment-right .md-tabs-navigation {
  justify-content: flex-end;
}
.md-tabs.md-alignment-centered .md-tabs-navigation {
  justify-content: center;
}
.md-tabs.md-alignment-fixed .md-tabs-navigation {
  justify-content: center;
}
.md-tabs.md-alignment-fixed .md-tabs-navigation .md-button {
  max-width: 264px;
  min-width: 160px;
  flex: 1;
}
@media (max-width: 960px) {
  .md-tabs.md-alignment-fixed .md-tabs-navigation .md-button {
    min-width: 72px;
  }
}
.md-toolbar .md-tabs {
  padding-left: 48px;
}
@media (max-width: 960px) {
  .md-toolbar .md-tabs {
    margin: 0 -8px;
    padding-left: 0;
  }
}

.md-tabs-navigation {
  display: flex;
  position: relative;
}
.md-tabs-navigation .md-button {
  max-width: 264px;
  min-width: 72px;
  height: 48px;
  margin: 0;
  cursor: pointer;
  border-radius: 0;
  font-size: 13px;
}
.md-tabs-navigation .md-button-content {
  position: static;
}
.md-tabs-navigation .md-icon-label {
  height: 72px;
}
.md-tabs-navigation .md-icon-label .md-button-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.md-tabs-navigation .md-icon-label .md-icon {
  font-size: 24px;
  margin-right: auto;
}
.md-tabs-navigation .md-icon-label .md-icon + span {
  margin-top: 10px;
}
.md-tabs-navigation .md-ripple {
  padding: 0 24px;
}
@media (max-width: 960px) {
  .md-tabs-navigation .md-ripple {
    padding: 0 12px;
  }
}

.md-tabs-indicator {
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateZ(0);
  will-change: left, right;
}
.md-tabs-indicator.md-tabs-indicator-left {
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.md-tabs-indicator.md-tabs-indicator-right {
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1), left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.md-tabs-content {
  overflow: hidden;
  transition: none;
  will-change: height;
}

.md-tabs-container {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  transform: translateZ(0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.md-tab {
  width: 100%;
  flex: 1 0 100%;
  padding: 16px;
}
@media (max-width: 960px) {
  .md-tab {
    padding: 8px;
  }
}