:host {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: Roboto, "Helvetica Neue", sans-serif; }

/** The top section of the view; contains the tab labels */
.md-tab-header {
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-bottom: 1px solid #e0e0e0;
  -ms-flex-negative: 0;
      flex-shrink: 0; }

/** Wraps each tab label */
.md-tab-label {
  line-height: 48px;
  height: 48px;
  padding: 0 12px;
  font-size: 14px;
  font-family: Roboto, "Helvetica Neue", sans-serif;
  font-weight: 500;
  cursor: pointer;
  box-sizing: border-box;
  color: currentColor;
  opacity: 0.6;
  min-width: 160px;
  text-align: center; }
  .md-tab-label:focus {
    outline: none;
    opacity: 1;
    background-color: rgba(178, 223, 219, 0.3); }

/** The bottom section of the view; contains the tab bodies */
.md-tab-body-wrapper {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

/** Wraps each tab body */
.md-tab-body {
  display: none;
  overflow: auto;
  box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1; }
  .md-tab-body.md-active {
    display: block; }

/** The colored bar that underlines the active tab */
md-ink-bar {
  position: absolute;
  bottom: 0;
  height: 2px;
  background-color: #009688;
  -webkit-transition: 350ms ease-out;
  transition: 350ms ease-out; }
