/*!
 Material Components for the web
 Copyright (c) 2018 ...
 License: Apache-2.0
*/
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-ext-data-table {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
  border-collapse: collapse;
  vertical-align: middle; }
  .mdc-ext-data-table tr {
    border-bottom-style: solid;
    border-width: 1px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .mdc-ext-data-table thead {
    color: rgba(0, 0, 0, 0.54);
    /* @alternate */
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)); }
    .mdc-ext-data-table thead > tr {
      border-color: rgba(0, 0, 0, 0.12); }
  .mdc-ext-data-table tbody > tr {
    border-color: rgba(0, 0, 0, 0.12); }
  .mdc-ext-data-table tbody tr:last-of-type {
    border-bottom-style: none; }
  .mdc-ext-data-table tr > .mdc-ext-data-table__cell--non-numeric {
    text-align: left; }
  .mdc-ext-data-table td, .mdc-ext-data-table th {
    padding-left: 18px;
    padding-right: 18px;
    text-align: right; }
    .mdc-ext-data-table td:first-of-type, .mdc-ext-data-table th:first-of-type {
      padding-left: 24px; }
    .mdc-ext-data-table td:last-of-type, .mdc-ext-data-table th:last-of-type {
      padding-right: 24px; }
  .mdc-ext-data-table th {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 0.75rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-decoration: inherit;
    text-transform: inherit;
    font-weight: 500;
    padding-bottom: 17.5px;
    padding-top: 17.5px;
    text-overflow: ellipsis; }
  .mdc-ext-data-table td {
    padding-bottom: 13.5px;
    padding-top: 13.5px; }

.mdc-ext-data-table:not(.mdc-ext-data-table--non-interactive) > tbody > tr:hover, .mdc-ext-data-table:not(.mdc-ext-data-table--non-interactive) > tbody > tr:focus, .mdc-ext-data-table:not(.mdc-ext-data-table--non-interactive) > tbody > tr:focus-within {
  background-color: rgba(0, 0, 0, 0.04); }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
@-webkit-keyframes invalid-shake-float-above-standard {
  0% {
    -webkit-transform: translateX(0) translateY(-100%) scale(0.75, 0.75);
            transform: translateX(0) translateY(-100%) scale(0.75, 0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(5px) translateY(-100%) scale(0.75, 0.75);
            transform: translateX(5px) translateY(-100%) scale(0.75, 0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(-5px) translateY(-100%) scale(0.75, 0.75);
            transform: translateX(-5px) translateY(-100%) scale(0.75, 0.75); }
  100% {
    -webkit-transform: translateX(0) translateY(-100%) scale(0.75, 0.75);
            transform: translateX(0) translateY(-100%) scale(0.75, 0.75); } }
@keyframes invalid-shake-float-above-standard {
  0% {
    -webkit-transform: translateX(0) translateY(-100%) scale(0.75, 0.75);
            transform: translateX(0) translateY(-100%) scale(0.75, 0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(5px) translateY(-100%) scale(0.75, 0.75);
            transform: translateX(5px) translateY(-100%) scale(0.75, 0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(-5px) translateY(-100%) scale(0.75, 0.75);
            transform: translateX(-5px) translateY(-100%) scale(0.75, 0.75); }
  100% {
    -webkit-transform: translateX(0) translateY(-100%) scale(0.75, 0.75);
            transform: translateX(0) translateY(-100%) scale(0.75, 0.75); } }

@-webkit-keyframes invalid-shake-float-above-box {
  0% {
    -webkit-transform: translateX(0) translateY(-50%) scale(0.75, 0.75);
            transform: translateX(0) translateY(-50%) scale(0.75, 0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(5px) translateY(-50%) scale(0.75, 0.75);
            transform: translateX(5px) translateY(-50%) scale(0.75, 0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(-5px) translateY(-50%) scale(0.75, 0.75);
            transform: translateX(-5px) translateY(-50%) scale(0.75, 0.75); }
  100% {
    -webkit-transform: translateX(0) translateY(-50%) scale(0.75, 0.75);
            transform: translateX(0) translateY(-50%) scale(0.75, 0.75); } }

@keyframes invalid-shake-float-above-box {
  0% {
    -webkit-transform: translateX(0) translateY(-50%) scale(0.75, 0.75);
            transform: translateX(0) translateY(-50%) scale(0.75, 0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(5px) translateY(-50%) scale(0.75, 0.75);
            transform: translateX(5px) translateY(-50%) scale(0.75, 0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(-5px) translateY(-50%) scale(0.75, 0.75);
            transform: translateX(-5px) translateY(-50%) scale(0.75, 0.75); }
  100% {
    -webkit-transform: translateX(0) translateY(-50%) scale(0.75, 0.75);
            transform: translateX(0) translateY(-50%) scale(0.75, 0.75); } }

.mdc-ext-date-picker__label {
  position: absolute;
  bottom: 8px;
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(0, 0, 0, 0.5);
  cursor: text; }
  .mdc-ext-date-picker[dir="rtl"] .mdc-ext-date-picker__label,
  [dir="rtl"] .mdc-ext-date-picker .mdc-ext-date-picker__label {
    right: 0;
    left: auto;
    -webkit-transform-origin: right top;
            transform-origin: right top; }
  .mdc-ext-date-picker__label--float-above {
    -webkit-transform: translateY(-100%) scale(0.75, 0.75);
            transform: translateY(-100%) scale(0.75, 0.75);
    cursor: auto; }

.mdc-ext-date-picker__label--float-above.mdc-ext-date-picker__label--shake {
  -webkit-animation: invalid-shake-float-above-standard 250ms 1;
          animation: invalid-shake-float-above-standard 250ms 1; }

.mdc-ext-date-picker {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 48px;
  margin-bottom: 8px;
  margin-top: 16px;
  outline: none; }
  .mdc-ext-date-picker__input {
    color: rgba(0, 0, 0, 0.87);
    /* @alternate */
    color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    padding: 0 0 8px;
    -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    border-radius: 0;
    background: none;
    font-size: inherit;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none; }
    .mdc-ext-date-picker__input::-webkit-input-placeholder {
      color: rgba(0, 0, 0, 0.38);
      /* @alternate */
      color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38));
      -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 1; }
    .mdc-ext-date-picker__input:-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.38);
      /* @alternate */
      color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38));
      -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 1; }
    .mdc-ext-date-picker__input::-ms-input-placeholder {
      color: rgba(0, 0, 0, 0.38);
      /* @alternate */
      color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38));
      -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 1; }
    .mdc-ext-date-picker__input::placeholder {
      color: rgba(0, 0, 0, 0.38);
      /* @alternate */
      color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38));
      -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
      transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 1; }
    .mdc-ext-date-picker__input:hover {
      border-color: black; }
    .mdc-ext-date-picker__input:focus {
      outline: none; }
      .mdc-ext-date-picker__input:focus::-webkit-input-placeholder {
        color: rgba(0, 0, 0, 0.38); }
      .mdc-ext-date-picker__input:focus:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.38); }
      .mdc-ext-date-picker__input:focus::-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.38); }
      .mdc-ext-date-picker__input:focus::placeholder {
        color: rgba(0, 0, 0, 0.38); }
    .mdc-ext-date-picker__input:invalid {
      -webkit-box-shadow: none;
              box-shadow: none; }
  .mdc-ext-date-picker__surface {
    -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    background-color: #fff;
    /* @alternate */
    background-color: var(--mdc-theme-background, #fff);
    color: rgba(0, 0, 0, 0.54);
    /* @alternate */
    color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54));
    display: none;
    position: absolute;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    left: 0;
    max-width: 280px;
    top: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    -webkit-transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    transition: opacity 120ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
    z-index: 3; }
  .mdc-ext-date-picker--animating .mdc-ext-date-picker__surface {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .mdc-ext-date-picker--open .mdc-ext-date-picker__surface {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  .mdc-ext-date-picker__primary {
    background-color: #2e7d32;
    /* @alternate */
    background-color: var(--mdc-theme-primary, #2e7d32);
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-width: 120px;
    padding: 16px; }
  .mdc-ext-date-picker__button--year {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: inherit;
    text-transform: inherit;
    background-color: #2e7d32;
    /* @alternate */
    background-color: var(--mdc-theme-primary, #2e7d32);
    color: white;
    text-align: left;
    background: transparent;
    border: none;
    outline: none;
    padding: 0; }
    .mdc-ext-date-picker__button--year:focus {
      outline: none; }
  .mdc-ext-date-picker__txtdayanddate {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 400;
    letter-spacing: normal;
    text-decoration: inherit;
    text-transform: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .mdc-ext-date-picker__body {
    padding: 0; }
  .mdc-ext-date-picker__selection-container {
    position: relative; }
  .mdc-ext-date-picker__calendar {
    display: block;
    -ms-touch-action: none;
        touch-action: none; }
  .mdc-ext-date-picker--year-view .mdc-ext-date-picker__calendar {
    visibility: hidden; }
  .mdc-ext-date-picker__header {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: inherit;
    text-transform: inherit;
    color: rgba(0, 0, 0, 0.87);
    /* @alternate */
    color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .mdc-ext-date-picker__txtmonth {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center;
    outline: none; }
    .mdc-ext-date-picker__txtmonth:focus {
      outline: none; }
  .mdc-ext-date-picker__button {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: transparent;
    will-change: transform, opacity;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: none;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    height: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    outline: none;
    text-align: center;
    text-decoration: none;
    -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    width: 40px; }
    .mdc-ext-date-picker__button::before, .mdc-ext-date-picker__button::after {
      position: absolute;
      border-radius: 50%;
      opacity: 0;
      pointer-events: none;
      content: ""; }
    .mdc-ext-date-picker__button::before {
      -webkit-transition: opacity 15ms linear;
      transition: opacity 15ms linear;
      z-index: 1; }
    .mdc-ext-date-picker__button.mdc-ripple-upgraded::before {
      -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
              transform: scale(var(--mdc-ripple-fg-scale, 1)); }
    .mdc-ext-date-picker__button.mdc-ripple-upgraded::after {
      top: 0;
      /* @noflip */
      left: 0;
      -webkit-transform: scale(0);
              transform: scale(0);
      -webkit-transform-origin: center center;
              transform-origin: center center; }
    .mdc-ext-date-picker__button.mdc-ripple-upgraded--unbounded::after {
      top: var(--mdc-ripple-top, 0);
      /* @noflip */
      left: var(--mdc-ripple-left, 0); }
    .mdc-ext-date-picker__button.mdc-ripple-upgraded--foreground-activation::after {
      -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
              animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
    .mdc-ext-date-picker__button.mdc-ripple-upgraded--foreground-deactivation::after {
      -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
              animation: 150ms mdc-ripple-fg-opacity-out;
      -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
              transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
    .mdc-ext-date-picker__button::before, .mdc-ext-date-picker__button::after {
      top: calc(50% - 50%);
      /* @noflip */
      left: calc(50% - 50%);
      width: 100%;
      height: 100%; }
    .mdc-ext-date-picker__button.mdc-ripple-upgraded::before, .mdc-ext-date-picker__button.mdc-ripple-upgraded::after {
      top: var(--mdc-ripple-top, calc(50% - 50%));
      /* @noflip */
      left: var(--mdc-ripple-left, calc(50% - 50%));
      width: var(--mdc-ripple-fg-size, 100%);
      height: var(--mdc-ripple-fg-size, 100%); }
    .mdc-ext-date-picker__button.mdc-ripple-upgraded::after {
      width: var(--mdc-ripple-fg-size, 100%);
      height: var(--mdc-ripple-fg-size, 100%); }
    .mdc-ext-date-picker__button::before, .mdc-ext-date-picker__button::after {
      background-color: #00838f; }
      @supports not (-ms-ime-align: auto) {
        .mdc-ext-date-picker__button::before, .mdc-ext-date-picker__button::after {
          /* @alternate */
          background-color: var(--mdc-theme-secondary, #00838f); } }
    .mdc-ext-date-picker__button:hover::before {
      opacity: 0.04; }
    .mdc-ext-date-picker__button:not(.mdc-ripple-upgraded):focus::before, .mdc-ext-date-picker__button.mdc-ripple-upgraded--background-focused::before {
      -webkit-transition-duration: 75ms;
              transition-duration: 75ms;
      opacity: 0.12; }
    .mdc-ext-date-picker__button:not(.mdc-ripple-upgraded)::after {
      -webkit-transition: opacity 150ms linear;
      transition: opacity 150ms linear; }
    .mdc-ext-date-picker__button:not(.mdc-ripple-upgraded):active::after {
      -webkit-transition-duration: 75ms;
              transition-duration: 75ms;
      opacity: 0.16; }
    .mdc-ext-date-picker__button.mdc-ripple-upgraded {
      --mdc-ripple-fg-opacity: 0.16; }
    .mdc-ext-date-picker__button:focus {
      outline: none; }
    .mdc-ext-date-picker__button:disabled {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.38);
      /* @alternate */
      color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
      cursor: default;
      pointer-events: none; }
    .mdc-ext-date-picker__button:not(:disabled) {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.87);
      /* @alternate */
      color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87)); }
  .mdc-ext-date-picker__months {
    display: block;
    position: relative;
    overflow: hidden;
    padding: 0 16px; }
  .mdc-ext-date-picker__days {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 0.75rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    border: none;
    text-align: center;
    -webkit-transform: none;
            transform: none;
    top: 0px;
    visibility: hidden;
    width: 100%; }
    .mdc-ext-date-picker__days tr {
      height: 2.5em; }
    .mdc-ext-date-picker__days th {
      font-family: Roboto, sans-serif;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      font-size: 0.75rem;
      line-height: 1.25rem;
      font-weight: 400;
      letter-spacing: 0.08em;
      text-decoration: inherit;
      text-transform: inherit;
      color: rgba(0, 0, 0, 0.38);
      /* @alternate */
      color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38)); }
    .mdc-ext-date-picker__days--active {
      visibility: inherit; }
    .mdc-ext-date-picker__days--hidden {
      position: absolute;
      -webkit-transform: none;
              transform: none; }
    .mdc-ext-date-picker__days--next {
      position: absolute;
      -webkit-transform: translateX(100%);
              transform: translateX(100%); }
    .mdc-ext-date-picker__days--prev {
      position: absolute;
      -webkit-transform: translateX(-100%);
              transform: translateX(-100%); }
    .mdc-ext-date-picker__days--animating {
      visibility: visible;
      -webkit-transition: -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
      transition: -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
      transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
      transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1); }
  .mdc-ext-date-picker__day {
    position: relative;
    border-radius: 50%;
    cursor: pointer;
    outline: none;
    padding: 0;
    min-width: 2.5em; }
    .mdc-ext-date-picker__day::before {
      background-color: black;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      top: 0;
      border-radius: 50%;
      opacity: 0;
      pointer-events: none;
      content: "";
      will-change: opacity; }
    .mdc-ext-date-picker__day:not(.mdc-ext-date-picker__day--selected):hover::before {
      display: block;
      opacity: .38; }
  .mdc-ext-date-picker__day--selected {
    background-color: #00838f;
    /* @alternate */
    background-color: var(--mdc-theme-secondary, #00838f); }
  .mdc-ext-date-picker__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 0 16px 16px 16px; }
  .mdc-ext-date-picker__year-selection {
    background-color: #fff;
    /* @alternate */
    background-color: var(--mdc-theme-background, #fff);
    display: block;
    position: absolute;
    overflow-y: hidden;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    visibility: hidden; }
  .mdc-ext-date-picker--year-view .mdc-ext-date-picker__year-selection {
    visibility: visible; }
  .mdc-ext-date-picker__year-list {
    display: block;
    position: relative;
    list-style-type: none;
    padding: 0;
    text-align: center;
    -ms-touch-action: none;
        touch-action: none;
    will-change: transform; }
    .mdc-ext-date-picker__year-list--animating {
      -webkit-transition: -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
      transition: -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
      transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
      transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1); }
  .mdc-ext-date-picker__year {
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 1rem;
    line-height: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: inherit;
    text-transform: inherit;
    position: relative;
    line-height: 2.5rem;
    -webkit-transition: font-weight 75ms 0ms cubic-bezier(0.4, 0, 1, 1);
    transition: font-weight 75ms 0ms cubic-bezier(0.4, 0, 1, 1); }
    .mdc-ext-date-picker__year.mdc-ext-date-picker__year--selected {
      font-weight: 500; }

@media screen and (max-height: 360px) and (min-width: 380px) {
  .mdc-ext-date-picker__surface {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    max-width: none; } }

/**
 * The css property used for elevation. In most cases this should not be changed. It is exposed
 * as a variable for abstraction / easy use when needing to reference the property directly, for
 * example in a `will-change` rule.
 */
/**
 * The default duration value for elevation transitions.
 */
/**
 * The default easing value for elevation transitions.
 */
/**
 * Applies the correct CSS rules to an element to give it the elevation specified by $z-value.
 * The $z-value must be between 0 and 24.
 * If $color has an alpha channel, it will be ignored and overridden. To increase the opacity of the shadow, use
 * $opacity-boost.
 */
/**
 * Returns a string that can be used as the value for a `transition` property for elevation.
 * Calling this function directly is useful in situations where a component needs to transition
 * more than one property.
 *
 * ```scss
 * .foo {
 *   transition: mdc-elevation-transition-value(), opacity 100ms ease;
 *   will-change: $mdc-elevation-property, opacity;
 * }
 * ```
 */
@-webkit-keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1); }
  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); } }
@keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
            transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1); }
  to {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
            transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); } }

@-webkit-keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0; }
  to {
    opacity: var(--mdc-ripple-fg-opacity, 0); } }

@keyframes mdc-ripple-fg-opacity-in {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: 0; }
  to {
    opacity: var(--mdc-ripple-fg-opacity, 0); } }

@-webkit-keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0); }
  to {
    opacity: 0; } }

@keyframes mdc-ripple-fg-opacity-out {
  from {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    opacity: var(--mdc-ripple-fg-opacity, 0); }
  to {
    opacity: 0; } }

.mdc-ripple-surface--test-edge-var-bug {
  --mdc-ripple-surface-test-edge-var: 1px solid #000;
  visibility: hidden; }
  .mdc-ripple-surface--test-edge-var-bug::before {
    border: var(--mdc-ripple-surface-test-edge-var); }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-ext-multiselect__bottom-line {
  background-color: #2e7d32;
  /* @alternate */
  background-color: var(--mdc-theme-primary, #2e7d32);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), opacity 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 2; }

.mdc-ext-multiselect__bottom-line--active {
  -webkit-transform: scaleX(1);
          transform: scaleX(1); }

.mdc-ext-multiselect--focused .mdc-ext-multiselect__bottom-line {
  opacity: 1; }

/**
 * Creates a rule that will be applied when an MDC Web component is within the context of an RTL layout.
 *
 * Usage Example:
 * ```scss
 * .mdc-foo {
 *   position: absolute;
 *   left: 0;
 *
 *   @include mdc-rtl {
 *     left: auto;
 *     right: 0;
 *   }
 *
 *   &__bar {
 *     margin-left: 4px;
 *     @include mdc-rtl(".mdc-foo") {
 *       margin-left: auto;
 *       margin-right: 4px;
 *     }
 *   }
 * }
 *
 * .mdc-foo--mod {
 *   padding-left: 4px;
 *
 *   @include mdc-rtl {
 *     padding-left: auto;
 *     padding-right: 4px;
 *   }
 * }
 * ```
 *
 * Note that this works by checking for [dir="rtl"] on an ancestor element. While this will work
 * in most cases, it will in some cases lead to false negatives, e.g.
 *
 * ```html
 * <html dir="rtl">
 *   <!-- ... -->
 *   <div dir="ltr">
 *     <div class="mdc-foo">Styled incorrectly as RTL!</div>
 *   </div>
 * </html>
 * ```
 *
 * In the future, selectors such as :dir (http://mdn.io/:dir) will help us mitigate this.
 */
/**
 * Takes a base box-model property - e.g. margin / border / padding - along with a default
 * direction and value, and emits rules which apply the value to the
 * "<base-property>-<default-direction>" property by default, but flips the direction
 * when within an RTL context.
 *
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, left, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 8px;
 *     margin-left: 0;
 *   }
 * }
 * ```
 * whereas:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-box(margin, right, 8px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-right: 8px;
 *
 *   @include mdc-rtl {
 *     margin-right: 0;
 *     margin-left: 8px;
 *   }
 * }
 * ```
 *
 * You can also pass a 4th optional $root-selector argument which will be forwarded to `mdc-rtl`,
 * e.g. `@include mdc-rtl-reflexive-box(margin, left, 8px, ".mdc-component")`.
 *
 * Note that this function will always zero out the original value in an RTL context. If you're
 * trying to flip the values, use mdc-rtl-reflexive-property().
 */
/**
 * Takes a base property and emits rules that assign <base-property>-left to <left-value> and
 * <base-property>-right to <right-value> in a LTR context, and vice versa in a RTL context.
 * For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-property(margin, auto, 12px);
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 * .mdc-foo {
 *   margin-left: auto;
 *   margin-right: 12px;
 *
 *   @include mdc-rtl {
 *     margin-left: 12px;
 *     margin-right: auto;
 *   }
 * }
 * ```
 *
 * A 4th optional $root-selector argument can be given, which will be passed to `mdc-rtl`.
 */
/**
 * Takes an argument specifying a horizontal position property (either "left" or "right") as well
 * as a value, and applies that value to the specified position in a LTR context, and flips it in a
 * RTL context. For example:
 *
 * ```scss
 * .mdc-foo {
 *   @include mdc-rtl-reflexive-position(left, 0);
 *   position: absolute;
 * }
 * ```
 * is equivalent to:
 *
 * ```scss
 *  .mdc-foo {
 *    position: absolute;
 *    left: 0;
 *    right: initial;
 *
 *    @include mdc-rtl {
 *      right: 0;
 *      left: initial;
 *    }
 *  }
 * ```
 * An optional third $root-selector argument may also be given, which is passed to `mdc-rtl`.
 */
@keyframes invalid-shake-float-above-standard {
  0% {
    -webkit-transform: translateX(0) translateY(-100%) scale(0.75);
            transform: translateX(0) translateY(-100%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(5px) translateY(-100%) scale(0.75);
            transform: translateX(5px) translateY(-100%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(-5px) translateY(-100%) scale(0.75);
            transform: translateX(-5px) translateY(-100%) scale(0.75); }
  100% {
    -webkit-transform: translateX(0) translateY(-100%) scale(0.75);
            transform: translateX(0) translateY(-100%) scale(0.75); } }

@keyframes invalid-shake-float-above-box {
  0% {
    -webkit-transform: translateX(0) translateY(-50%) scale(0.75);
            transform: translateX(0) translateY(-50%) scale(0.75); }
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
            animation-timing-function: cubic-bezier(0.5, 0, 0.70173, 0.49582);
    -webkit-transform: translateX(5px) translateY(-50%) scale(0.75);
            transform: translateX(5px) translateY(-50%) scale(0.75); }
  66% {
    -webkit-animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
            animation-timing-function: cubic-bezier(0.30244, 0.38135, 0.55, 0.95635);
    -webkit-transform: translateX(-5px) translateY(-50%) scale(0.75);
            transform: translateX(-5px) translateY(-50%) scale(0.75); }
  100% {
    -webkit-transform: translateX(0) translateY(-50%) scale(0.75);
            transform: translateX(0) translateY(-50%) scale(0.75); } }

.mdc-ext-multiselect__label {
  position: absolute;
  bottom: 8px;
  left: 0;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1), color 180ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 180ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: text; }
  .mdc-ext-multiselect[dir="rtl"] .mdc-ext-multiselect__label,
  [dir="rtl"] .mdc-ext-multiselect .mdc-ext-multiselect__label {
    right: 0;
    left: auto;
    -webkit-transform-origin: right top;
            transform-origin: right top; }
  .mdc-ext-multiselect__label--float-above {
    -webkit-transform: translateY(-100%) scale(0.75, 0.75);
            transform: translateY(-100%) scale(0.75, 0.75);
    cursor: auto; }

.mdc-ext-multiselect__label--float-above.mdc-ext-multiselect__label--shake {
  -webkit-animation: invalid-shake-float-above-standard 250ms 1;
          animation: invalid-shake-float-above-standard 250ms 1; }

.mdc-ext-multiselect {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 48px;
  margin-bottom: 8px;
  margin-top: 16px; }
  .mdc-ext-multiselect:not(.mdc-ext-multiselect--disabled) .mdc-ext-multiselect__combobox {
    border-color: rgba(0, 0, 0, 0.5); }
  .mdc-ext-multiselect .mdc-ext-multiselect__combobox:hover {
    border-color: black; }
  .mdc-ext-multiselect .mdc-ext-multiselect__bottom-line {
    background-color: #2e7d32;
    /* @alternate */
    background-color: var(--mdc-theme-primary, #2e7d32); }
  .mdc-ext-multiselect:not(.mdc-ext-multiselect--disabled) .mdc-ext-multiselect__input {
    color: rgba(0, 0, 0, 0.87);
    /* @alternate */
    color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87)); }
  .mdc-ext-multiselect:not(.mdc-ext-multiselect--disabled) .mdc-ext-multiselect__label {
    color: rgba(0, 0, 0, 0.6); }
  .mdc-ext-multiselect__combobox {
    color: rgba(0, 0, 0, 0.87);
    /* @alternate */
    color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    position: relative;
    background: none;
    background-repeat: no-repeat;
    background-position: right center;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.5);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    min-width: 100px;
    padding: 0 18px 8px;
    width: 179px;
    background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%230%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.54%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E);
    /* @noflip */
    padding-left: 0;
    /* @noflip */
    padding-right: 18px;
    letter-spacing: 0.04em; }
    [dir="rtl"] .mdc-ext-multiselect__combobox, .mdc-ext-multiselect__combobox[dir="rtl"] {
      /* @noflip */
      padding-left: 18px;
      /* @noflip */
      padding-right: 0; }
    [dir="rtl"] .mdc-ext-multiselect__combobox, .mdc-ext-multiselect__combobox[dir="rtl"] {
      background-position: left center; }
    .mdc-ext-multiselect__combobox:hover {
      border-color: black; }
  .mdc-ext-multiselect__select {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    display: none;
    border: none;
    border-radius: 0;
    background: none;
    background-repeat: no-repeat;
    background-position: right center;
    padding: 0 18px 8px;
    background-image: url(data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%230%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.54%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E);
    color: rgba(0, 0, 0, 0.87);
    /* @alternate */
    color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87));
    font-family: Roboto, sans-serif;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    /* @noflip */
    padding-left: 0;
    /* @noflip */
    padding-right: 18px;
    font-size: inherit; }
    [dir="rtl"] .mdc-ext-multiselect__select, .mdc-ext-multiselect__select[dir="rtl"] {
      /* @noflip */
      padding-left: 18px;
      /* @noflip */
      padding-right: 0; }
    .mdc-ext-multiselect__select:focus {
      border-bottom-color: #2e7d32;
      /* @alternate */
      border-bottom-color: var(--mdc-theme-primary, #2e7d32);
      outline: none;
      background-color: rgba(0, 0, 0, 0.06); }
  .mdc-ext-multiselect__display {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%; }
    .mdc-ext-multiselect__display .mdc-ext-multiselect__input {
      border-style: none;
      background-color: transparent;
      display: inline;
      -ms-flex-preferred-size: 5px;
          flex-basis: 5px;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      min-width: 20px;
      outline: none;
      overflow-x: hidden;
      padding: 0 0 0 2px;
      width: auto; }
      .mdc-ext-multiselect__display .mdc-ext-multiselect__input::-webkit-input-placeholder {
        color: rgba(0, 0, 0, 0.38);
        /* @alternate */
        color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38)); }
      .mdc-ext-multiselect__display .mdc-ext-multiselect__input:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.38);
        /* @alternate */
        color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38)); }
      .mdc-ext-multiselect__display .mdc-ext-multiselect__input::-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.38);
        /* @alternate */
        color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38)); }
      .mdc-ext-multiselect__display .mdc-ext-multiselect__input::placeholder {
        color: rgba(0, 0, 0, 0.38);
        /* @alternate */
        color: var(--mdc-theme-text-hint-on-light, rgba(0, 0, 0, 0.38)); }
    .mdc-ext-multiselect__display .mdc-ext-multiselect__option {
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .mdc-ext-multiselect--upgraded .mdc-ext-multiselect__label {
    pointer-events: none; }
  .mdc-ext-multiselect--focused:not(.mdc-ext-multiselect--disabled) .mdc-ext-multiselect__label {
    color: #2e7d32;
    /* @alternate */
    color: var(--mdc-theme-primary, #2e7d32); }
  .mdc-ext-multiselect__list {
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    background-color: white;
    border: 1px solid black;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    max-width: calc(100vw - 32px);
    max-height: calc(100vh - 104px);
    overflow-x: hidden;
    overflow-y: overlay;
    padding: 0;
    -webkit-transform-origin: left top;
            transform-origin: left top;
    white-space: nowrap;
    z-index: 3;
    will-change: transform, opacity;
    -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
            box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
    /* stylelint-disable plugin/selector-bem-pattern */ }
    .mdc-ext-multiselect[dir="rtl"] .mdc-ext-multiselect__list,
    [dir="rtl"] .mdc-ext-multiselect .mdc-ext-multiselect__list {
      right: 0;
      -webkit-transform-origin: right top;
              transform-origin: right top; }
    .mdc-ext-multiselect__list--open {
      display: block;
      -webkit-transform: scale(1);
              transform: scale(1);
      opacity: 1; }
    .mdc-ext-multiselect__list .mdc-list {
      margin: 0px 0px;
      padding: 4px 0; }
    .mdc-ext-multiselect__list .mdc-list-item {
      font-family: Roboto, sans-serif;
      -moz-osx-font-smoothing: grayscale;
      -webkit-font-smoothing: antialiased;
      font-size: 1rem;
      line-height: 1.75rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      text-decoration: inherit;
      text-transform: inherit;
      color: rgba(0, 0, 0, 0.54);
      /* @alternate */
      color: var(--mdc-theme-text-secondary-on-light, rgba(0, 0, 0, 0.54));
      outline: none;
      padding: 0 16px;
      text-decoration: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none; }
      .mdc-ext-multiselect__list .mdc-list-item__nomatch {
        visibility: hidden;
        display: none; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)::before, .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)::after {
        background-color: black; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active):hover::before {
        opacity: 0.04; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active):not(.mdc-ripple-upgraded):focus::before, .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active).mdc-ripple-upgraded--background-focused::before {
        -webkit-transition-duration: 75ms;
                transition-duration: 75ms;
        opacity: 0.12; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active):not(.mdc-ripple-upgraded)::after {
        -webkit-transition: opacity 150ms linear;
        transition: opacity 150ms linear; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active):not(.mdc-ripple-upgraded):active::after {
        -webkit-transition-duration: 75ms;
                transition-duration: 75ms;
        opacity: 0.16; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active).mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: 0.16; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected::before {
        opacity: 0.08; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected::before, .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected::after {
        background-color: #2e7d32; }
        @supports not (-ms-ime-align: auto) {
          .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected::before, .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected::after {
            /* @alternate */
            background-color: var(--mdc-theme-primary, #2e7d32); } }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected:hover::before {
        opacity: 0.12; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected:not(.mdc-ripple-upgraded):focus::before, .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected.mdc-ripple-upgraded--background-focused::before {
        -webkit-transition-duration: 75ms;
                transition-duration: 75ms;
        opacity: 0.2; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected:not(.mdc-ripple-upgraded)::after {
        -webkit-transition: opacity 150ms linear;
        transition: opacity 150ms linear; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected:not(.mdc-ripple-upgraded):active::after {
        -webkit-transition-duration: 75ms;
                transition-duration: 75ms;
        opacity: 0.24; }
      .mdc-ext-multiselect__list .mdc-list-item--selected:not(.mdc-list-item:active)\--selected.mdc-ripple-upgraded {
        --mdc-ripple-fg-opacity: 0.24; }

.mdc-ext-multiselect--disabled,
.mdc-ext-multiselect[aria-disabled] {
  color: rgba(0, 0, 0, 0.38);
  /* @alternate */
  color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
  cursor: default;
  pointer-events: none; }
  .mdc-ext-multiselect--disabled .mdc-ext-multiselect__combobox-background,
  .mdc-ext-multiselect[aria-disabled] .mdc-ext-multiselect__combobox-background {
    border-bottom: 1px dotted rgba(35, 31, 32, 0.26); }
  .mdc-ext-multiselect--disabled .mdc-ext-multiselect__combobox,
  .mdc-ext-multiselect--disabled .mdc-ext-multiselect__combobox-background,
  .mdc-ext-multiselect--disabled .mdc-ext-multiselect__input,
  .mdc-ext-multiselect--disabled .mdc-ext-multiselect__label,
  .mdc-ext-multiselect[aria-disabled] .mdc-ext-multiselect__combobox,
  .mdc-ext-multiselect[aria-disabled] .mdc-ext-multiselect__combobox-background,
  .mdc-ext-multiselect[aria-disabled] .mdc-ext-multiselect__input,
  .mdc-ext-multiselect[aria-disabled] .mdc-ext-multiselect__label {
    color: rgba(0, 0, 0, 0.38);
    /* @alternate */
    color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38)); }

.mdc-ext-multiselect:not(.mdc-ext-multiselect--upgraded) .mdc-ext-multiselect__combobox {
  display: none; }

.mdc-ext-multiselect:not(.mdc-ext-multiselect--upgraded) .mdc-ext-multiselect__select {
  display: block;
  -webkit-transition: border-bottom-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: border-bottom-color 180ms cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12); }
  .mdc-ext-multiselect:not(.mdc-ext-multiselect--upgraded) .mdc-ext-multiselect__select:focus {
    border-color: #2e7d32;
    /* @alternate */
    border-color: var(--mdc-theme-primary, #2e7d32);
    outline: none;
    background-color: rgba(0, 0, 0, 0.06); }
  .mdc-ext-multiselect:not(.mdc-ext-multiselect--upgraded) .mdc-ext-multiselect__select:disabled {
    color: rgba(0, 0, 0, 0.38);
    /* @alternate */
    color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
    border-style: dotted;
    border-color: rgba(35, 31, 32, 0.26); }
  .mdc-ext-multiselect:not(.mdc-ext-multiselect--upgraded) .mdc-ext-multiselect__select:invalid:not(:focus) {
    border-color: #d50000; }

/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-ext-pagination {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  padding: 8px;
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.54);
  /* @alternate */
  color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54)); }
  .mdc-ext-pagination__txtto {
    padding: 0 2px; }
  .mdc-ext-pagination__txtof {
    padding: 0 4px; }
  .mdc-ext-pagination__button {
    --mdc-ripple-fg-size: 0;
    --mdc-ripple-left: 0;
    --mdc-ripple-top: 0;
    --mdc-ripple-fg-scale: 1;
    --mdc-ripple-fg-translate-end: 0;
    --mdc-ripple-fg-translate-start: 0;
    -webkit-tap-highlight-color: transparent;
    will-change: transform, opacity;
    display: inline;
    border: none;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    height: 40px;
    outline: none;
    text-align: center;
    text-decoration: none;
    -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    vertical-align: middle;
    width: 40px; }
    .mdc-ext-pagination__button::before, .mdc-ext-pagination__button::after {
      position: absolute;
      border-radius: 50%;
      opacity: 0;
      pointer-events: none;
      content: ""; }
    .mdc-ext-pagination__button::before {
      -webkit-transition: opacity 15ms linear;
      transition: opacity 15ms linear;
      z-index: 1; }
    .mdc-ext-pagination__button.mdc-ripple-upgraded::before {
      -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
              transform: scale(var(--mdc-ripple-fg-scale, 1)); }
    .mdc-ext-pagination__button.mdc-ripple-upgraded::after {
      top: 0;
      /* @noflip */
      left: 0;
      -webkit-transform: scale(0);
              transform: scale(0);
      -webkit-transform-origin: center center;
              transform-origin: center center; }
    .mdc-ext-pagination__button.mdc-ripple-upgraded--unbounded::after {
      top: var(--mdc-ripple-top, 0);
      /* @noflip */
      left: var(--mdc-ripple-left, 0); }
    .mdc-ext-pagination__button.mdc-ripple-upgraded--foreground-activation::after {
      -webkit-animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards;
              animation: 225ms mdc-ripple-fg-radius-in forwards, 75ms mdc-ripple-fg-opacity-in forwards; }
    .mdc-ext-pagination__button.mdc-ripple-upgraded--foreground-deactivation::after {
      -webkit-animation: 150ms mdc-ripple-fg-opacity-out;
              animation: 150ms mdc-ripple-fg-opacity-out;
      -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
              transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1)); }
    .mdc-ext-pagination__button::before, .mdc-ext-pagination__button::after {
      top: calc(50% - 50%);
      /* @noflip */
      left: calc(50% - 50%);
      width: 100%;
      height: 100%; }
    .mdc-ext-pagination__button.mdc-ripple-upgraded::before, .mdc-ext-pagination__button.mdc-ripple-upgraded::after {
      top: var(--mdc-ripple-top, calc(50% - 50%));
      /* @noflip */
      left: var(--mdc-ripple-left, calc(50% - 50%));
      width: var(--mdc-ripple-fg-size, 100%);
      height: var(--mdc-ripple-fg-size, 100%); }
    .mdc-ext-pagination__button.mdc-ripple-upgraded::after {
      width: var(--mdc-ripple-fg-size, 100%);
      height: var(--mdc-ripple-fg-size, 100%); }
    .mdc-ext-pagination__button::before, .mdc-ext-pagination__button::after {
      background-color: #00838f; }
      @supports not (-ms-ime-align: auto) {
        .mdc-ext-pagination__button::before, .mdc-ext-pagination__button::after {
          /* @alternate */
          background-color: var(--mdc-theme-secondary, #00838f); } }
    .mdc-ext-pagination__button:hover::before {
      opacity: 0.04; }
    .mdc-ext-pagination__button:not(.mdc-ripple-upgraded):focus::before, .mdc-ext-pagination__button.mdc-ripple-upgraded--background-focused::before {
      -webkit-transition-duration: 75ms;
              transition-duration: 75ms;
      opacity: 0.12; }
    .mdc-ext-pagination__button:not(.mdc-ripple-upgraded)::after {
      -webkit-transition: opacity 150ms linear;
      transition: opacity 150ms linear; }
    .mdc-ext-pagination__button:not(.mdc-ripple-upgraded):active::after {
      -webkit-transition-duration: 75ms;
              transition-duration: 75ms;
      opacity: 0.16; }
    .mdc-ext-pagination__button.mdc-ripple-upgraded {
      --mdc-ripple-fg-opacity: 0.16; }
    .mdc-ext-pagination__button:disabled {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.38);
      /* @alternate */
      color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
      cursor: default;
      pointer-events: none; }
    .mdc-ext-pagination__button:not(:disabled) {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.87);
      /* @alternate */
      color: var(--mdc-theme-text-primary-on-light, rgba(0, 0, 0, 0.87)); }
    .mdc-ext-pagination__button i {
      vertical-align: middle; }
  .mdc-ext-pagination:disabled .mdc-ext-pagination__button, .mdc-ext-pagination--disabled .mdc-ext-pagination__button {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.38);
    /* @alternate */
    color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
    cursor: default;
    pointer-events: none; }

/* TODO(sgomes): Figure out what to do about desktop font sizes. */
/* TODO(sgomes): Figure out what to do about i18n and i18n font sizes. */
.mdc-ext-treeview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  outline: none;
  padding: 8px;
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87)); }
  .mdc-ext-treeview-node {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    list-style-type: none;
    padding-left: 24px; }
  .mdc-ext-treeview-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .mdc-ext-treeview-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    vertical-align: middle; }
  .mdc-ext-treeview-item__text {
    display: inline-block;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    margin-top: 2px;
    vertical-align: top; }
  .mdc-ext-treeview-toggle {
    display: none; }
  .mdc-ext-treeview-icon-toggle {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 24px;
    width: 24px;
    margin-top: 4px;
    background-image: url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill%3D%22#000000%22%20stroke%3D%22#000000%22%20opacity%3D%220.54%22%20d%3D%22M10%206L8.59%207.41%2013.17%2012l-4.58%204.59L10%2018l6-6z%22/%3E%3C/svg%3E); }
  .mdc-ext-treeview-toggle:checked ~ .mdc-ext-treeview-item .mdc-ext-treeview-icon-toggle {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  .mdc-ext-treeview-toggle:checked ~ .mdc-ext-treeview-node, .mdc-ext-treeview > .mdc-ext-treeview-node {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .mdc-ext-treeview__native-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: inherit; }
  .mdc-ext-treeview-checkbox {
    display: inline-block;
    position: relative;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    height: 18px;
    width: 18px;
    margin-left: 24px;
    padding: 7px; }
    .mdc-ext-treeview-checkbox__native-control {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0;
      opacity: 0; }
    .mdc-ext-treeview-checkbox__background {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      background-color: transparent;
      border: 2px solid rgba(0, 0, 0, 0.54);
      border-radius: 2px;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      height: 56.25%;
      width: 56.25%;
      margin: auto;
      pointer-events: none; }
      .mdc-ext-treeview-checkbox__background::before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #2e7d32;
        /* @alternate */
        background: var(--mdc-theme-primary, #2e7d32);
        border-radius: 50%;
        content: "";
        height: 100%;
        width: 100%;
        opacity: 0;
        pointer-events: none; }
    .mdc-ext-treeview-checkbox__checkmark {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      fill: white;
      opacity: 0;
      width: 100%; }
      .mdc-ext-treeview-checkbox__checkmark__path {
        stroke: white;
        stroke-width: 3.12px; }
    .mdc-ext-treeview-checkbox__default-checkmark {
      background-image: url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20fill%3D%22none%22%20stroke%3D%22white%22%20stroke-width%3D%223.12px%22%20opacity%3D%221%22%20d%3D%22M1.73%2C12.91%208.1%2C19.28%2022.79%2C4.59%22/%3E%3C/svg%3E); }
    .mdc-ext-treeview-checkbox__mixedmark {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: white;
      opacity: 0;
      margin: auto 0; }
  .mdc-ext-treeview-checkbox__native-control:focus ~ .mdc-ext-treeview-checkbox__background::before {
    -webkit-transform: scale(2.75, 2.75);
            transform: scale(2.75, 2.75);
    opacity: .26; }
  .mdc-ext-treeview-checkbox__native-control:checked ~ .mdc-ext-treeview-checkbox__background {
    border-color: #2e7d32;
    /* @alternate */
    border-color: var(--mdc-theme-primary, #2e7d32);
    background-color: #2e7d32;
    /* @alternate */
    background-color: var(--mdc-theme-primary, #2e7d32); }
    .mdc-ext-treeview-checkbox__native-control:checked ~ .mdc-ext-treeview-checkbox__background .mdc-ext-treeview-checkbox__checkmark {
      opacity: 1; }
  .mdc-ext-treeview-checkbox__native-control:indeterminate ~ .mdc-ext-treeview-checkbox__background {
    border-color: #2e7d32;
    /* @alternate */
    border-color: var(--mdc-theme-primary, #2e7d32);
    background-color: #2e7d32;
    /* @alternate */
    background-color: var(--mdc-theme-primary, #2e7d32); }
    .mdc-ext-treeview-checkbox__native-control:indeterminate ~ .mdc-ext-treeview-checkbox__background .mdc-ext-treeview-checkbox__checkmark {
      opacity: 0; }
    .mdc-ext-treeview-checkbox__native-control:indeterminate ~ .mdc-ext-treeview-checkbox__background .mdc-ext-treeview-checkbox__mixedmark {
      opacity: 1; }
  .mdc-ext-treeview--disabled {
    cursor: default;
    pointer-events: none; }

.mdc-ext-treeview-checkbox__native-control:disabled,
fieldset:disabled .mdc-ext-treeview-checkbox__native-control,
[aria-disabled="true"] .mdc-ext-treeview-checkbox__native-control {
  cursor: default; }
  .mdc-ext-treeview-checkbox__native-control:disabled ~ .mdc-ext-treeview-checkbox__background,
  fieldset:disabled .mdc-ext-treeview-checkbox__native-control ~ .mdc-ext-treeview-checkbox__background,
  [aria-disabled="true"] .mdc-ext-treeview-checkbox__native-control ~ .mdc-ext-treeview-checkbox__background {
    border-color: rgba(0, 0, 0, 0.26); }
  .mdc-ext-treeview-checkbox__native-control:disabled:checked ~ .mdc-checkbox__background, .mdc-ext-treeview-checkbox__native-control:disabled:indeterminate ~ .mdc-checkbox__background,
  fieldset:disabled .mdc-ext-treeview-checkbox__native-control:checked ~ .mdc-checkbox__background,
  fieldset:disabled .mdc-ext-treeview-checkbox__native-control:indeterminate ~ .mdc-checkbox__background,
  [aria-disabled="true"] .mdc-ext-treeview-checkbox__native-control:checked ~ .mdc-checkbox__background,
  [aria-disabled="true"] .mdc-ext-treeview-checkbox__native-control:indeterminate ~ .mdc-checkbox__background {
    border-color: transparent;
    background-color: rgba(0, 0, 0, 0.26); }
