:root {
  /* Colors */
  --primary: #167fd6;
  --primary-variant: #3700b3;
  --secondary: #03dac6;
  --secondary-variant: #018786;
  --background: #ffffff;
  --surface: #ffffff;
  --error: #b00020;
  --on-primary: #ffffff;
  --on-secondary: #000000;
  --on-background: #000000;
  --on-surface: #000000;
  --on-error: #ffffff;
  --disabled: rgba(0, 0, 0, 0.38);
  --disabled-background: rgba(0, 0, 0, 0.12);

  /* Typography */
  --font-family: 'Roboto', sans-serif;
  --typography-subtitle1-font-size: 1rem; /* 16px */
  --typography-subtitle1-line-height: 1.5rem;
  --typography-caption-font-size: 0.75rem; /* 12px */
  --typography-caption-line-height: 1.25rem;

  /* Elevation */
  --elevation-1: 0 2px 1px -1px rgba(0,0,0,0.2), 0 1px 1px 0 rgba(0,0,0,0.14), 0 1px 3px 0 rgba(0,0,0,0.12);
  --elevation-2: 0 3px 1px -2px rgba(0,0,0,0.2), 0 2px 2px 0 rgba(0,0,0,0.14), 0 1px 5px 0 rgba(0,0,0,0.12);
  --elevation-3: 0 3px 3px -2px rgba(0,0,0,0.2), 0 3px 4px 0 rgba(0,0,0,0.14), 0 1px 8px 0 rgba(0,0,0,0.12);
  --elevation-4: 0 2px 4px -1px rgba(0,0,0,0.2), 0 4px 5px 0 rgba(0,0,0,0.14), 0 1px 10px 0 rgba(0,0,0,0.12);
  --elevation-6: 0 3px 5px -1px rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.14), 0 1px 18px 0 rgba(0,0,0,0.12);
  --elevation-8: 0 5px 5px -3px rgba(0,0,0,0.2), 0 8px 10px 1px rgba(0,0,0,0.14), 0 3px 14px 2px rgba(0,0,0,0.12);

  /* Shape */
  --shape-small: 4px;
  --shape-medium: 8px;
  --shape-large: 16px;

  /* Animation */
  --animation-duration: 200ms;
  --animation-curve: cubic-bezier(0.4, 0, 0.2, 1);

  /* Component: Textfield */
  --textfield-background-color: rgba(0, 0, 0, 0.04); /* Filled text field bg */
  --textfield-hover-background-color: rgba(0, 0, 0, 0.08);
  --textfield-disabled-background-color: rgba(0, 0, 0, 0.02);
  --textfield-border-color: rgba(0, 0, 0, 0.38);
  --textfield-label-color: rgba(0, 0, 0, 0.6);
  --textfield-disabled-label-color: rgba(0, 0, 0, 0.38);
  --textfield-ink-color: rgba(0, 0, 0, 0.87);
  --textfield-disabled-ink-color: rgba(0, 0, 0, 0.38);
  --textfield-supporting-text-color: rgba(0, 0, 0, 0.6);
  --textfield-icon-color: rgba(0, 0, 0, 0.54);
  --textfield-disabled-icon-color: rgba(0, 0, 0, 0.38);
  --textfield-border-radius: 4px 4px 0 0; /* Top corners rounded for filled */
  --textfield-height: 56px;
  --textfield-padding-horizontal: 16px;
  --textfield-label-scale: 0.75;
}

body {
  -moz-osx-font-smoothing:grayscale;
  -webkit-font-smoothing:antialiased;
  text-decoration:inherit;
  text-transform:inherit;
}

/* Ripple */
.c_ripple {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: inherit;

  /** Forces webkit to properly contain content within border-radius. */
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
  -moz-mask-image: radial-gradient(circle, white, black);
  mask-image: radial-gradient(circle, white, black);
}

.c_ripple.c_ripple--fill::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
}

.c_ripple.c_ripple--fill {
  border-radius: 1000000px;  /** "large" number, but not 100% */
}


.c_ripple .c_ripple__ripple {
  position: absolute;
  border-radius: 100%;
  background: currentColor;
  opacity: 0.2;
  width: 0;
  height: 0;

  /** only animate transform and opacity */
  -webkit-transition: -webkit-transform 0.4s ease-out, opacity 0.4s ease-out;
  -moz-transition: -moz-transform 0.4s ease-out, opacity 0.4s ease-out;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;

  /** initially hidden */
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);

  pointer-events: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c_ripple .c_ripple__ripple.c_ripple__ripple--held {
  opacity: 0.4;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.c_ripple .c_ripple__ripple.c_ripple__ripple--done {
  opacity: 0
}

/* Button */
.c_button {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.0892857143em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 8px 0 8px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 64px;
  border: none;
  outline: none;
  /* @alternate */
  line-height: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
  overflow: visible;
  vertical-align: middle;
  border-radius: 4px;
}
.c_button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.c_button:active {
  outline: none;
}
.c_button:hover {
  cursor: pointer;
}
.c_button:disabled {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.37);
  cursor: default;
  pointer-events: none;
}
.c_button .c_button__ripple {
  border-radius: 4px;
}
.c_button:not(:disabled) {
  background-color: transparent;
}
.c_button .c_button__icon {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 8px;
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 18px;
  vertical-align: top;
}
[dir=rtl] .c_button .c_button__icon, .c_button .c_button__icon[dir=rtl] {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: 0;
}
.c_button .c_button__touch {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 48px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c_button:not(:disabled) {
  color: #6200ee;
  /* @alternate */
  color: var(--primary, #6200ee);
}

.c_button__label + .c_button__icon {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: 0;
}
[dir=rtl] .c_button__label + .c_button__icon, .c_button__label + .c_button__icon[dir=rtl] {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 8px;
}

svg.c_button__icon {
  fill: currentColor;
}

.c_button--raised .c_button__icon,
.c_button--unelevated .c_button__icon,
.c_button--outlined .c_button__icon {
  /* @noflip */
  margin-left: -4px;
  /* @noflip */
  margin-right: 8px;
}
[dir=rtl] .c_button--raised .c_button__icon, .c_button--raised .c_button__icon[dir=rtl],
[dir=rtl] .c_button--unelevated .c_button__icon,
.c_button--unelevated .c_button__icon[dir=rtl],
[dir=rtl] .c_button--outlined .c_button__icon,
.c_button--outlined .c_button__icon[dir=rtl] {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: -4px;
}
.c_button--raised .c_button__label + .c_button__icon,
.c_button--unelevated .c_button__label + .c_button__icon,
.c_button--outlined .c_button__label + .c_button__icon {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: -4px;
}
[dir=rtl] .c_button--raised .c_button__label + .c_button__icon, .c_button--raised .c_button__label + .c_button__icon[dir=rtl],
[dir=rtl] .c_button--unelevated .c_button__label + .c_button__icon,
.c_button--unelevated .c_button__label + .c_button__icon[dir=rtl],
[dir=rtl] .c_button--outlined .c_button__label + .c_button__icon,
.c_button--outlined .c_button__label + .c_button__icon[dir=rtl] {
  /* @noflip */
  margin-left: -4px;
  /* @noflip */
  margin-right: 8px;
}

.c_button--raised,
.c_button--unelevated {
  padding: 0 16px 0 16px;
}
.c_button--raised:disabled,
.c_button--unelevated:disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.37);
}
.c_button--raised:not(:disabled),
.c_button--unelevated:not(:disabled) {
  background-color: #6200ee;
}
@supports not (-ms-ime-align: auto) {
  .c_button--raised:not(:disabled),
.c_button--unelevated:not(:disabled) {
    /* @alternate */
    background-color: var(--primary, #6200ee);
  }
}
.c_button--raised:not(:disabled),
.c_button--unelevated:not(:disabled) {
  color: #fff;
  /* @alternate */
  color: var(--mdc-theme-on-primary, #fff);
}

.c_button--raised {
  -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);
  -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);
  -o-transition: 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);
}
.c_button--raised:hover, .c_button--raised:focus {
  -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.c_button--raised:active {
  -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.c_button--raised:disabled {
  -webkit-box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}

.c_button--outlined {
  border-style: solid;
  padding: 0 15px 0 15px;
  border-width: 1px;
}
.c_button--outlined:disabled {
  border-color: rgba(0, 0, 0, 0.37);
}
.c_button--outlined .c_button__ripple {
  top: -1px;
  left: -1px;
  border: 1px solid transparent;
}
.c_button--outlined:not(:disabled) {
  border-color: #6200ee;
  /* @alternate */
  border-color: var(--primary, #6200ee);
}

.c_button--touch {
  margin-top: 6px;
  margin-bottom: 6px;
}

.c_button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.c_button .c_button__ripple::before,
.c_button .c_button__ripple::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}
.c_button .c_button__ripple::before {
  -webkit-transition: opacity 15ms linear, background-color 15ms linear;
  -o-transition: opacity 15ms linear, background-color 15ms linear;
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
}

.c_button--shaped, .c_button--shaped .c_button__ripple {
    border-radius: 18px
}

.c_button .c_button__ripple::before,
.c_button .c_button__ripple::after {
  top: calc(50% - 100%);
  /* @noflip */
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
}

.c_button .c_button__ripple::before, .c_button .c_button__ripple::after {
  background-color: #6200ee;
}
@supports not (-ms-ime-align: auto) {
  .c_button .c_button__ripple::before, .c_button .c_button__ripple::after {
    /* @alternate */
    background-color: var(--primary, #6200ee);
  }
}
.c_button:hover .c_button__ripple::before {
  opacity: 0.04;
}
.c_button .c_button__ripple {
  position: absolute;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c_button:not(.c_button--outlined) .c_button__ripple {
  top: 0;
  left: 0;
}

.c_button--raised .c_button__ripple::before, .c_button--raised .c_button__ripple::after,
.c_button--unelevated .c_button__ripple::before,
.c_button--unelevated .c_button__ripple::after {
  background-color: #fff;
}
@supports not (-ms-ime-align: auto) {
  .c_button--raised .c_button__ripple::before, .c_button--raised .c_button__ripple::after,
.c_button--unelevated .c_button__ripple::before,
.c_button--unelevated .c_button__ripple::after {
    /* @alternate */
    background-color: var(--mdc-theme-on-primary, #fff);
  }
}
.c_button--raised:hover .c_button__ripple::before,
.c_button--unelevated:hover .c_button__ripple::before {
  opacity: 0.08;
}

.c_button {
  height: 36px;
}

/* Icon button */
.c_icon-button {
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  outline: none;
  background-color: transparent;
  fill: currentColor;
  color: inherit;
  font-size: 24px;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 48px;
  height: 48px;
  padding: 12px;
}
.c_icon-button svg,
.c_icon-button img {
  width: 24px;
  height: 24px;
}
.c_icon-button: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;
}

.c_icon-button__icon {
  display: inline-block;
}
.c_icon-button__icon.c_icon-button__icon--on {
  display: none;
}

.c_icon-button--on .c_icon-button__icon {
  display: none;
}
.c_icon-button--on .c_icon-button__icon.c_icon-button__icon--on {
  display: inline-block;
}

@-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);
}

.c_icon-button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.c_icon-button::before, .c_icon-button::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}
.c_icon-button::before {
  -webkit-transition: opacity 15ms linear, background-color 15ms linear;
  -o-transition: opacity 15ms linear, background-color 15ms linear;
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
}
.c_icon-button.mdc-ripple-upgraded::before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
      -ms-transform: scale(var(--mdc-ripple-fg-scale, 1));
          transform: scale(var(--mdc-ripple-fg-scale, 1));
}
.c_icon-button.mdc-ripple-upgraded::after {
  top: 0;
  /* @noflip */
  left: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
}
.c_icon-button.mdc-ripple-upgraded--unbounded::after {
  top: var(--mdc-ripple-top, 0);
  /* @noflip */
  left: var(--mdc-ripple-left, 0);
}
.c_icon-button.mdc-ripple-upgraded--foreground-activation::after {
  -webkit-animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
          animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}
.c_icon-button.mdc-ripple-upgraded--foreground-deactivation::after {
  -webkit-animation: mdc-ripple-fg-opacity-out 150ms;
          animation: mdc-ripple-fg-opacity-out 150ms;
  -webkit-transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
      -ms-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));
}
.c_icon-button::before, .c_icon-button::after {
  top: calc(50% - 50%);
  /* @noflip */
  left: calc(50% - 50%);
  width: 100%;
  height: 100%;
}
.c_icon-button.mdc-ripple-upgraded::before, .c_icon-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%);
}
.c_icon-button.mdc-ripple-upgraded::after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}
.c_icon-button::before, .c_icon-button::after {
  background-color: #000;
}
.c_icon-button:hover::before {
  opacity: 0.04;
}
.c_icon-button.mdc-ripple-upgraded--background-focused::before, .c_icon-button:not(.mdc-ripple-upgraded):focus::before {
  -webkit-transition-duration: 75ms;
       -o-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}
.c_icon-button:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  -o-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}
.c_icon-button:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
       -o-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}
.c_icon-button.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.12;
}


/* Segmented buttons */
.c_segmented-buttons-container {
  display: inline-flex;
  height: 40px;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--md-sys-color-surface-container-lowest, #F7F2FA);
  padding: 0;
  position: relative;
  box-shadow: 0 0 0 1px var(--md-sys-color-outline, rgba(121, 116, 126, 0.12));
  font-size: 0; /* Remove whitespace between inline elements */
}

.c_segmented-button {
  position: relative;
  height: 40px;
  min-width: 72px;
  border: none;
  background-color: transparent;
  padding: 0 16px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
  font-family: 'Roboto', sans-serif;
  font-size: 14px; /* Reset font size for buttons */
  font-weight: 500;
  letter-spacing: 0.1px;
  line-height: 20px;
  color: var(--md-sys-color-on-surface, #1D1B20);
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
  z-index: 1;
  vertical-align: top; /* Ensure consistent alignment */
}

.c_segmented-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--md-sys-color-primary, #6750A4);
}

/* Hover state */
.c_segmented-button:hover {
  background-color: var(--md-sys-color-surface-container-high, rgba(103, 80, 164, 0.08));
}

/* Active/pressed state */
.c_segmented-button:active {
  background-color: var(--md-sys-color-surface-container-highest, rgba(103, 80, 164, 0.12));
}

/* Selected state */
.c_segmented-button.c_segmented-button--selected {
  color: var(--md-sys-color-on-primary, #FFFFFF);
  background-color: transparent;
}

/* Selected indicator */
.c_segmented-button.c_segmented-button--selected::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: -1;
}

/* Disabled state */
.c_segmented-button:disabled {
  color: var(--md-sys-color-on-surface, rgba(29, 27, 32, 0.38));
  pointer-events: none;
}

.c_segmented-button.c_segmented-button--selected:disabled {
  color: var(--md-sys-color-on-surface, rgba(255, 255, 255, 0.38));
}

.c_segmented-button.c_segmented-button--selected:disabled::before {
  background-color: var(--md-sys-color-on-surface, rgba(29, 27, 32, 0.12));
}

.c_segmented-button__check-mark {
  width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  -webkit-transition:transform .2s cubic-bezier(0.42, 0, 0.68, 1.16);
  -moz-transition:transform .2s cubic-bezier(0.42, 0, 0.68, 1.16);
  -ms-transition:transform .2s cubic-bezier(0.42, 0, 0.68, 1.16);
  transition:transform .2s cubic-bezier(0.42, 0, 0.68, 1.16);
  -webkit-transform:scale(0.8);
  -moz-transform:scale(0.8);
  -ms-transform:scale(0.8);
  transform:scale(0.8);
}

.c_segmented-button.c_segmented-button--selected:not(.c_segmented-button--icon-only) .c_segmented-button__icon {
  display:none
}

.c_segmented-button.c_segmented-button--selected .c_segmented-button__check-mark {
  display: flex;
  color: var(--md-sys-color-on-primary, #FFFFFF);
  margin-right:8px;
  -webkit-transform:scale(1);
  -moz-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1);
}

.c_segmented-button__check-mark--active {
  -webkit-transform:scale(1);
  -moz-transform:scale(1);
  -ms-transform:scale(1);
  transform:scale(1)
}


/* Icon styling */
.c_segmented-button__icon {
  width: 18px;
  height: 18px;
  font-size: 18px!important;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.c_segmented-button.c_segmented-button--icon-only .c_segmented-button__icon {
  margin-right:0
}

/* Icon-only button */
.c_segmented-button--icon-only {
  padding: 0;
  width: 48px;
}

/* Divider between buttons */
.c_segmented-button:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background-color: var(--md-sys-color-outline, rgba(121, 116, 126, 0.12));
  z-index: 2;
}

/* Hide divider for selected and adjacent buttons */
.c_segmented-button.c_segmented-button--selected::after,
.c_segmented-button.c_segmented-button--selected + .c_segmented-button::after {
  display: none;
}

/* Media query for dense layout */
@media (max-width: 599px) {
  .c_segmented-buttons-container {
    height: 32px;
    border-radius: 16px;
  }

  .c_segmented-button {
    height: 32px;
    padding: 0 12px;
    font-size: 13px;
  }

  .c_segmented-button--with-icon {
    padding: 0 16px 0 12px;
  }

  .c_segmented-button--icon-only {
    width: 40px;
    padding: 0;
  }
}


/* Fab */
.c_fab {
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 0;
  border: none;
  fill: currentColor;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-transition: opacity 15ms linear 30ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 15ms linear 30ms, -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms, transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
  background-color: var(--secondary);
  color: #fff;
  /* @alternate */
  color: var(--on-secondary);
}
.c_fab:not(.c_fab--extended) {
  border-radius: 50%;
}
.c_fab:not(.c_fab--extended) .c_fab__ripple {
  border-radius: 50%;
}
.c_fab::-moz-focus-inner {
  padding: 0;
  border: 0;
}
.c_fab:hover, .c_fab:focus {
  -webkit-box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.c_fab:active {
  -webkit-box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.c_fab:active, .c_fab:focus {
  outline: none;
}
.c_fab:hover {
  cursor: pointer;
}
.c_fab > svg {
  width: 100%;
}
@supports not (-ms-ime-align: auto) {
  .c_fab {
    /* @alternate */
    background-color: var(--c_theme-secondary, #018786);
  }
}
.c_fab .c_fab__icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.c_fab--small {
  width: 40px;
  height: 40px;
}

.c_fab--extended {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.0892857143em;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 24px;
  padding: 0 20px;
  width: auto;
  max-width: 100%;
  height: 48px;
}
.c_fab--extended .c_fab__ripple {
  border-radius: 24px;
}
.c_fab--extended .c_fab__icon {
  /* @noflip */
  margin-left: -8px;
  /* @noflip */
  margin-right: 12px;
}
[dir=rtl] .c_fab--extended .c_fab__icon, .c_fab--extended .c_fab__icon[dir=rtl] {
  /* @noflip */
  margin-left: 12px;
  /* @noflip */
  margin-right: -8px;
}
.c_fab--extended .c_fab__label + .c_fab__icon {
  /* @noflip */
  margin-left: 12px;
  /* @noflip */
  margin-right: -8px;
}
[dir=rtl] .c_fab--extended .c_fab__label + .c_fab__icon, .c_fab--extended .c_fab__label + .c_fab__icon[dir=rtl] {
  /* @noflip */
  margin-left: -8px;
  /* @noflip */
  margin-right: 12px;
}

.c_fab__label {
  -ms-flex-pack: start;
      justify-content: flex-start;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.c_fab__icon {
  -webkit-transition: -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
  fill: currentColor;
  will-change: transform;
}

.c_fab .c_fab__icon {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.c_fab--exited {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: opacity 15ms linear 150ms, -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
}
.c_fab--exited .c_fab__icon {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1), -webkit-transform 135ms 0ms cubic-bezier(0.4, 0, 1, 1);
}

/* Textfield */

.c_textfield--filled {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    will-change: transform,opacity
}

.c_textfield {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    display: inline-flex;
    align-items: baseline;
    padding: 0 16px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    will-change: opacity,transform,color
}

.c_textfield:not(.c_textfield--disabled) .c_textfield-floating-label {
    color: rgba(0, 0, 0, 0.6)
}

.c_textfield:not(.c_textfield--disabled) .c_textfield__input {
    color: rgba(0, 0, 0, 0.87)
}

@media all {
    .c_textfield:not(.c_textfield--disabled) .c_textfield__input::placeholder {
        color: rgba(0, 0, 0, 0.54)
    }
}

@media all {
    .c_textfield:not(.c_textfield--disabled) .c_textfield__input:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.54)
    }
}

.c_textfield .c_textfield__input {
    caret-color: var(--primary, #6200ee)
}

.c_textfield:not(.c_textfield--disabled)+.c_textfield-helper-line .c_textfield-helper-text {
    color: rgba(0, 0, 0, 0.6)
}

.c_textfield:not(.c_textfield--disabled) .c_textfield-character-counter,.c_textfield:not(.c_textfield--disabled)+.c_textfield-helper-line .c_textfield-character-counter {
    color: rgba(0, 0, 0, 0.6)
}

.c_textfield:not(.c_textfield--disabled) .c_textfield__icon--leading {
    color: rgba(0, 0, 0, 0.54)
}

.c_textfield:not(.c_textfield--disabled) .c_textfield__icon--trailing {
    color: rgba(0, 0, 0, 0.54)
}

.c_textfield:not(.c_textfield--disabled) .c_textfield__affix--prefix {
    color: rgba(0, 0, 0, 0.6)
}

.c_textfield:not(.c_textfield--disabled) .c_textfield__affix--suffix {
    color: rgba(0, 0, 0, 0.6)
}

.c_textfield .c_textfield-floating-label {
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none
}

.c_textfield__input {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.009375em;
    text-decoration: inherit;
    text-transform: inherit;
    height: 28px;
    transition: opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-width: 0;
    border: none;
    border-radius: 0;
    background: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    z-index: 1
}

.c_textfield__input::-ms-clear {
    display: none
}

.c_textfield__input::-webkit-calendar-picker-indicator {
    display: none
}

.c_textfield__input:focus {
    outline: none
}

.c_textfield__input:invalid {
    box-shadow: none
}

.c_textfield__input[type="color"] {
    margin: auto;
    min-height: 30px;
    max-height: 30px;
    min-width: 110px
}

.c_textfield .c_textfield__input[type="file"] {
    opacity: 0;
    outline: none
}

.c_textfield__input-file-container {
    display: flex;
    height: 100%;
    align-items: center;
    position: absolute
}

.c_textfield__input-file-label {
    padding-right: 6px;
    white-space: nowrap;
    max-width: 70%;
    text-overflow: ellipsis;
    position: relative;
    overflow: hidden;
    font-size: 0.890rem;
    z-index: -1;
}

.c_textfield__input-file-size {
    opacity: 0.5;
    font-size: 0.890rem;
    z-index: -1
}

@media all {
    .c_textfield__input::placeholder {
        transition: opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0
    }
}

@media all {
    .c_textfield__input:-ms-input-placeholder {
        -ms-transition: opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
        transition: opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0
    }
}

@media all {
    .c_textfield--no-label .c_textfield__input::placeholder,.c_textfield--focused .c_textfield__input::placeholder {
        transition-delay: 40ms;
        transition-duration: 110ms;
        opacity: 1
    }
}

@media all {
    .c_textfield--no-label .c_textfield__input:-ms-input-placeholder,.c_textfield--focused .c_textfield__input:-ms-input-placeholder {
        transition-delay: 40ms;
        transition-duration: 110ms;
        opacity: 1
    }
}

.c_textfield__affix {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.009375em;
    text-decoration: inherit;
    text-transform: inherit;
    height: 28px;
    transition: opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    white-space: nowrap
}

.c_textfield--label-floating .c_textfield__affix,.c_textfield--no-label .c_textfield__affix {
    opacity: 1
}

@supports(-webkit-hyphens: none) {
    .c_textfield--outlined .c_textfield__affix {
        align-items:center;
        align-self: center;
        display: inline-flex;
        height: 100%
    }
}

.c_textfield__affix--prefix {
    padding-left: 0;
    padding-right: 2px
}

[dir=rtl] .c_textfield__affix--prefix,.c_textfield__affix--prefix[dir=rtl] {
    padding-left: 2px;
    padding-right: 0
}

.c_textfield--end-aligned .c_textfield__affix--prefix {
    padding-left: 0;
    padding-right: 12px
}

[dir=rtl] .c_textfield--end-aligned .c_textfield__affix--prefix,.c_textfield--end-aligned .c_textfield__affix--prefix[dir=rtl] {
    padding-left: 12px;
    padding-right: 0
}

.c_textfield__affix--suffix {
    padding-left: 12px;
    padding-right: 0
}

[dir=rtl] .c_textfield__affix--suffix,.c_textfield__affix--suffix[dir=rtl] {
    padding-left: 0;
    padding-right: 12px
}

.c_textfield--end-aligned .c_textfield__affix--suffix {
    padding-left: 2px;
    padding-right: 0
}

[dir=rtl] .c_textfield--end-aligned .c_textfield__affix--suffix,.c_textfield--end-aligned .c_textfield__affix--suffix[dir=rtl] {
    padding-left: 0;
    padding-right: 2px
}

.c_textfield--filled {
    height: 56px
}

.c_textfield--filled::before {
    display: inline-block;
    width: 0;
    height: 40px;
    content: "";
    vertical-align: 0
}

.c_textfield--filled:not(.c_textfield--disabled) {
    background-color: whitesmoke
}

.c_textfield--filled:not(.c_textfield--disabled) .c_textfield__line-ripple::before {
    border-bottom-color: rgba(0, 0, 0, 0.42)
}

.c_textfield--filled:not(.c_textfield--disabled):hover .c_textfield__line-ripple::before {
    border-bottom-color: rgba(0, 0, 0, 0.87)
}

.c_textfield--filled .c_textfield__line-ripple::after {
    border-bottom-color: var(--primary, #6200ee)
}

.c_textfield--filled .c_textfield-floating-label {
    left: 16px;
    right: initial
}

[dir=rtl] .c_textfield--filled .c_textfield-floating-label,.c_textfield--filled .c_textfield-floating-label[dir=rtl] {
    left: initial;
    right: 16px
}

.c_textfield--filled .c_textfield-floating-label--float-above {
    transform: translateY(-106%) scale(0.75)
}

.c_textfield--filled.c_textfield--no-label .c_textfield__input {
    height: 100%
}

.c_textfield--filled.c_textfield--no-label .c_textfield-floating-label {
    display: none
}

.c_textfield--filled.c_textfield--no-label::before {
    display: none
}

@supports(-webkit-hyphens: none) {
    .c_textfield--filled.c_textfield--no-label .c_textfield__affix {
        align-items:center;
        align-self: center;
        display: inline-flex;
        height: 100%
    }
}

.c_textfield--outlined {
    height: 56px;
    overflow: visible
}

.c_textfield--outlined .c_textfield-floating-label--float-above {
    transform: translateY(-37.25px) scale(1)
}

.c_textfield--outlined .c_textfield-floating-label--float-above {
    font-size: .75rem
}

.c_textfield--outlined.c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above,.c_textfield--outlined .c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above {
    transform: translateY(-34.75px) scale(0.75)
}

.c_textfield--outlined.c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above,.c_textfield--outlined .c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above {
    font-size: 1rem
}

.c_textfield--outlined .c_textfield-floating-label--shake {
    animation: c_textfield-floating-label-shake-float-above-text-field-outlined 250ms 1
}

@keyframes c_textfield-floating-label-shake-float-above-text-field-outlined {
    0% {
        transform: translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)
    }

    33% {
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)
    }

    66% {
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)
    }

    100% {
        transform: translateX(calc(0% - 0%)) translateY(calc(0% - 34.75px)) scale(0.75)
    }
}

.c_textfield--outlined .c_textfield__input {
    height: 100%
}

.c_textfield--outlined:not(.c_textfield--disabled) .c_textfield-notched-outline__leading,.c_textfield--outlined:not(.c_textfield--disabled) .c_textfield-notched-outline__notch,.c_textfield--outlined:not(.c_textfield--disabled) .c_textfield-notched-outline__trailing {
    border-color: rgba(0, 0, 0, 0.38)
}

.c_textfield--outlined:not(.c_textfield--disabled):not(.c_textfield--focused):hover .c_textfield-notched-outline .c_textfield-notched-outline__leading,.c_textfield--outlined:not(.c_textfield--disabled):not(.c_textfield--focused):hover .c_textfield-notched-outline .c_textfield-notched-outline__notch,.c_textfield--outlined:not(.c_textfield--disabled):not(.c_textfield--focused):hover .c_textfield-notched-outline .c_textfield-notched-outline__trailing {
    border-color: rgba(0, 0, 0, 0.87)
}

.c_textfield--outlined:not(.c_textfield--disabled).c_textfield--focused .c_textfield-notched-outline__leading,.c_textfield--outlined:not(.c_textfield--disabled).c_textfield--focused .c_textfield-notched-outline__notch,.c_textfield--outlined:not(.c_textfield--disabled).c_textfield--focused .c_textfield-notched-outline__trailing {
    border-color: var(--primary, #6200ee)
}

.c_textfield--outlined .c_textfield-notched-outline .c_textfield-notched-outline__leading {
    border-top-left-radius: 4px;
    border-top-left-radius: var(--mdc-shape-small, 4px);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-left-radius: var(--mdc-shape-small, 4px)
}

[dir=rtl] .c_textfield--outlined .c_textfield-notched-outline .c_textfield-notched-outline__leading,.c_textfield--outlined .c_textfield-notched-outline .c_textfield-notched-outline__leading[dir=rtl] {
    border-top-left-radius: 0;
    border-top-right-radius: 4px;
    border-top-right-radius: var(--mdc-shape-small, 4px);
    border-bottom-right-radius: 4px;
    border-bottom-right-radius: var(--mdc-shape-small, 4px);
    border-bottom-left-radius: 0
}

@supports(top: max(0%)) {
    .c_textfield--outlined .c_textfield-notched-outline .c_textfield-notched-outline__leading {
        width:max(12px, var(--mdc-shape-small, 4px))
    }
}

@supports(top: max(0%)) {
    .c_textfield--outlined .c_textfield-notched-outline .c_textfield-notched-outline__notch {
        max-width:calc(100% - max(12px, var(--mdc-shape-small, 4px))*2)
    }
}

.c_textfield--outlined .c_textfield-notched-outline .c_textfield-notched-outline__trailing {
    border-top-left-radius: 0;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 0
}

[dir=rtl] .c_textfield--outlined .c_textfield-notched-outline .c_textfield-notched-outline__trailing,.c_textfield--outlined .c_textfield-notched-outline .c_textfield-notched-outline__trailing[dir=rtl] {
    border-top-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 4px;
}

@supports(top: max(0%)) {
    .c_textfield--outlined {
        padding-left:max(16px, calc(4px + 4px))
    }
}

@supports(top: max(0%)) {
    .c_textfield--outlined {
        padding-right:max(16px, var(--mdc-shape-small, 4px))
    }
}

@supports(top: max(0%)) {
    .c_textfield--outlined+.c_textfield-helper-line {
        padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

@supports(top: max(0%)) {
    .c_textfield--outlined+.c_textfield-helper-line {
        padding-right:max(16px, var(--mdc-shape-small, 4px))
    }
}

.c_textfield--outlined.c_textfield--with-leading-icon {
    padding-left: 0
}

@supports(top: max(0%)) {
    .c_textfield--outlined.c_textfield--with-leading-icon {
        padding-right:max(16px, var(--mdc-shape-small, 4px))
    }
}

[dir=rtl] .c_textfield--outlined.c_textfield--with-leading-icon,.c_textfield--outlined.c_textfield--with-leading-icon[dir=rtl] {
    padding-right: 0
}

@supports(top: max(0%)) {
    [dir=rtl] .c_textfield--outlined.c_textfield--with-leading-icon,.c_textfield--outlined.c_textfield--with-leading-icon[dir=rtl] {
        padding-left:max(16px, var(--mdc-shape-small, 4px))
    }
}

.c_textfield--outlined.c_textfield--with-trailing-icon {
    padding-right: 0
}

@supports(top: max(0%)) {
    .c_textfield--outlined.c_textfield--with-trailing-icon {
        padding-left:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

[dir=rtl] .c_textfield--outlined.c_textfield--with-trailing-icon,.c_textfield--outlined.c_textfield--with-trailing-icon[dir=rtl] {
    padding-left: 0
}

@supports(top: max(0%)) {
    [dir=rtl] .c_textfield--outlined.c_textfield--with-trailing-icon,.c_textfield--outlined.c_textfield--with-trailing-icon[dir=rtl] {
        padding-right:max(16px, calc(var(--mdc-shape-small, 4px) + 4px))
    }
}

.c_textfield--outlined.c_textfield--with-leading-icon.c_textfield--with-trailing-icon {
    padding-left: 0;
    padding-right: 0
}

.c_textfield--outlined .c_textfield-notched-outline--notched .c_textfield-notched-outline__notch {
    padding-top: 1px
}

.c_textfield--outlined .c_textfield-floating-label {
    left: 4px;
    right: initial
}

[dir=rtl] .c_textfield--outlined .c_textfield-floating-label,.c_textfield--outlined .c_textfield-floating-label[dir=rtl] {
    left: initial;
    right: 4px
}

.c_textfield--outlined .c_textfield__input {
    display: flex;
    border: none !important;
    background-color: rgba(0,0,0,0)
}

.c_textfield--outlined .c_textfield-notched-outline {
    z-index: 1
}

.c_textfield--textarea {
    flex-direction: column;
    align-items: center;
    width: auto;
    height: auto;
    padding: 0;
    transition: none
}

.c_textfield--textarea .c_textfield-floating-label {
    top: 19px
}

.c_textfield--textarea .c_textfield-floating-label:not(.c_textfield-floating-label--float-above) {
    transform: none
}

.c_textfield--textarea .c_textfield__input {
    flex-grow: 1;
    height: auto;
    min-height: 1.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    resize: none;
    padding: 0 16px;
    line-height: 1.5rem
}

.c_textfield--textarea.c_textfield--filled::before {
    display: none
}

.c_textfield--textarea.c_textfield--filled .c_textfield-floating-label--float-above {
    transform: translateY(-10.25px) scale(0.75)
}

.c_textfield--textarea.c_textfield--filled .c_textfield-floating-label--shake {
    animation: c_textfield-floating-label-shake-float-above-textarea-filled 250ms 1
}

@keyframes c_textfield-floating-label-shake-float-above-textarea-filled {
    0% {
        transform: translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)
    }

    33% {
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)
    }

    66% {
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)
    }

    100% {
        transform: translateX(calc(0% - 0%)) translateY(calc(0% - 10.25px)) scale(0.75)
    }
}

.c_textfield--textarea.c_textfield--filled .c_textfield__input {
    margin-top: 23px;
    margin-bottom: 9px
}

.c_textfield--textarea.c_textfield--filled.c_textfield--no-label .c_textfield__input {
    margin-top: 16px;
    margin-bottom: 16px
}

.c_textfield--textarea.c_textfield--outlined .c_textfield-notched-outline--notched .c_textfield-notched-outline__notch {
    padding-top: 0
}

.c_textfield--textarea.c_textfield--outlined .c_textfield-floating-label--float-above {
    transform: translateY(-27.25px) scale(1)
}

.c_textfield--textarea.c_textfield--outlined .c_textfield-floating-label--float-above {
    font-size: .75rem
}

.c_textfield--textarea.c_textfield--outlined.c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above,.c_textfield--textarea.c_textfield--outlined .c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above {
    transform: translateY(-24.75px) scale(0.75)
}

.c_textfield--textarea.c_textfield--outlined.c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above,.c_textfield--textarea.c_textfield--outlined .c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above {
    font-size: 1rem
}

.c_textfield--textarea.c_textfield--outlined .c_textfield-floating-label--shake {
    animation: c_textfield-floating-label-shake-float-above-textarea-outlined 250ms 1
}

@keyframes c_textfield-floating-label-shake-float-above-textarea-outlined {
    0% {
        transform: translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)
    }

    33% {
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)
    }

    66% {
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)
    }

    100% {
        transform: translateX(calc(0% - 0%)) translateY(calc(0% - 24.75px)) scale(0.75)
    }
}

.c_textfield--textarea.c_textfield--outlined .c_textfield__input {
    margin-top: 16px;
    margin-bottom: 16px
}

.c_textfield--textarea.c_textfield--outlined .c_textfield-floating-label {
    top: 18px
}

.c_textfield--textarea.c_textfield--with-internal-counter .c_textfield__input {
    margin-bottom: 2px
}

.c_textfield--textarea.c_textfield--with-internal-counter .c_textfield-character-counter {
    align-self: flex-end;
    padding: 0 16px
}

.c_textfield--textarea.c_textfield--with-internal-counter .c_textfield-character-counter::after {
    display: inline-block;
    width: 0;
    height: 16px;
    content: "";
    vertical-align: -16px
}

.c_textfield--textarea.c_textfield--with-internal-counter .c_textfield-character-counter::before {
    display: none
}

.c_textfield__resizer {
    align-self: stretch;
    display: inline-flex;
    flex-direction: column;
    flex-grow: 1;
    max-height: 100%;
    max-width: 100%;
    min-height: 56px;
    min-width: -moz-fit-content;
    min-width: fit-content;
    min-width: -webkit-fill-available;
    overflow: hidden;
    resize: both
}

.c_textfield--filled .c_textfield__resizer {
    transform: translateY(-1px)
}

.c_textfield--filled .c_textfield__resizer .c_textfield__input,.c_textfield--filled .c_textfield__resizer .c_textfield-character-counter {
    transform: translateY(1px)
}

.c_textfield--outlined .c_textfield__resizer {
    transform: translateX(-1px) translateY(-1px)
}

[dir=rtl] .c_textfield--outlined .c_textfield__resizer,.c_textfield--outlined .c_textfield__resizer[dir=rtl] {
    transform: translateX(1px) translateY(-1px)
}

.c_textfield--outlined .c_textfield__resizer .c_textfield__input,.c_textfield--outlined .c_textfield__resizer .c_textfield-character-counter {
    transform: translateX(1px) translateY(1px)
}

[dir=rtl] .c_textfield--outlined .c_textfield__resizer .c_textfield__input,[dir=rtl] .c_textfield--outlined .c_textfield__resizer .c_textfield-character-counter,.c_textfield--outlined .c_textfield__resizer .c_textfield__input[dir=rtl],.c_textfield--outlined .c_textfield__resizer .c_textfield-character-counter[dir=rtl] {
    transform: translateX(-1px) translateY(1px)
}

.c_textfield--with-leading-icon {
    padding-left: 0;
    padding-right: 16px
}

[dir=rtl] .c_textfield--with-leading-icon,.c_textfield--with-leading-icon[dir=rtl] {
    padding-left: 16px;
    padding-right: 0
}

.c_textfield--with-leading-icon.c_textfield--filled .c_textfield-floating-label {
    max-width: calc(100% - 48px);
    left: 48px;
    right: initial
}

[dir=rtl] .c_textfield--with-leading-icon.c_textfield--filled .c_textfield-floating-label,.c_textfield--with-leading-icon.c_textfield--filled .c_textfield-floating-label[dir=rtl] {
    left: initial;
    right: 48px
}

.c_textfield--with-leading-icon.c_textfield--filled .c_textfield-floating-label--float-above {
    max-width: calc(100% / 0.75 - 64px / 0.75)
}

.c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-floating-label {
    left: 36px;
    right: initial
}

[dir=rtl] .c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-floating-label,.c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-floating-label[dir=rtl] {
    left: initial;
    right: 36px
}

.c_textfield--with-leading-icon.c_textfield--outlined :not(.c_textfield-notched-outline--notched) .c_textfield-notched-outline__notch {
    max-width: calc(100% - 60px)
}

.c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-floating-label--float-above {
    transform: translateY(-37.25px) translateX(-32px) scale(1)
}

[dir=rtl] .c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-floating-label--float-above,.c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-floating-label--float-above[dir=rtl] {
    transform: translateY(-37.25px) translateX(32px) scale(1)
}

.c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-floating-label--float-above {
    font-size: .75rem
}

.c_textfield--with-leading-icon.c_textfield--outlined.c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above,.c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above {
    transform: translateY(-34.75px) translateX(-32px) scale(0.75)
}

[dir=rtl] .c_textfield--with-leading-icon.c_textfield--outlined.c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above,[dir=rtl] .c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above,.c_textfield--with-leading-icon.c_textfield--outlined.c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above[dir=rtl],.c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above[dir=rtl] {
    transform: translateY(-34.75px) translateX(32px) scale(0.75)
}

.c_textfield--with-leading-icon.c_textfield--outlined.c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above,.c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above {
    font-size: 1rem
}

.c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-floating-label--shake {
    animation: c_textfield-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1
}

@keyframes c_textfield-floating-label-shake-float-above-text-field-outlined-leading-icon {
    0% {
        transform: translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)
    }

    33% {
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)
    }

    66% {
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)
    }

    100% {
        transform: translateX(calc(0% - 32px)) translateY(calc(0% - 34.75px)) scale(0.75)
    }
}

[dir=rtl] .c_textfield--with-leading-icon.c_textfield--outlined .c_textfield-floating-label--shake,.c_textfield--with-leading-icon.c_textfield--outlined[dir=rtl] .c_textfield-floating-label--shake {
    animation: c_textfield-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1
}

@keyframes c_textfield-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
    0% {
        transform: translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)
    }

    33% {
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)
    }

    66% {
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)
    }

    100% {
        transform: translateX(calc(0% - -32px)) translateY(calc(0% - 34.75px)) scale(0.75)
    }
}

.c_textfield--with-trailing-icon {
    padding-left: 16px;
    padding-right: 0
}

[dir=rtl] .c_textfield--with-trailing-icon,.c_textfield--with-trailing-icon[dir=rtl] {
    padding-left: 0;
    padding-right: 16px
}

.c_textfield--with-trailing-icon.c_textfield--filled .c_textfield-floating-label {
    max-width: calc(100% - 64px)
}

.c_textfield--with-trailing-icon.c_textfield--filled .c_textfield-floating-label--float-above {
    max-width: calc(100% / 0.75 - 64px / 0.75)
}

.c_textfield--with-trailing-icon.c_textfield--outlined :not(.c_textfield-notched-outline--notched) .c_textfield-notched-outline__notch {
    max-width: calc(100% - 60px)
}

.c_textfield--with-leading-icon.c_textfield--with-trailing-icon {
    padding-left: 0;
    padding-right: 0
}

.c_textfield--with-leading-icon.c_textfield--with-trailing-icon.c_textfield--filled .c_textfield-floating-label {
    max-width: calc(100% - 96px)
}

.c_textfield--with-leading-icon.c_textfield--with-trailing-icon.c_textfield--filled .c_textfield-floating-label--float-above {
    max-width: calc(100% / 0.75 - 96px / 0.75)
}

.c_textfield-helper-line {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box
}

.c_textfield+.c_textfield-helper-line {
    padding-right: 16px;
    padding-left: 16px
}

.c_form-field>.c_textfield+label {
    align-self: flex-start
}

.c_textfield--focused:not(.c_textfield--disabled) .c_textfield-floating-label {
    color: var(--primary, #6200ee);
}

.c_textfield--focused .c_textfield-notched-outline__leading,.c_textfield--focused .c_textfield-notched-outline__notch,.c_textfield--focused .c_textfield-notched-outline__trailing {
    border-width: 2px
}

.c_textfield--focused+.c_textfield-helper-line .c_textfield-helper-text:not(.c_textfield-helper-text--validation-msg) {
    opacity: 1
}

.c_textfield--focused.c_textfield--outlined .c_textfield-notched-outline--notched .c_textfield-notched-outline__notch {
    padding-top: 2px
}

.c_textfield--focused.c_textfield--outlined.c_textfield--textarea .c_textfield-notched-outline--notched .c_textfield-notched-outline__notch {
    padding-top: 0
}

.c_textfield--invalid:not(.c_textfield--disabled):hover .c_textfield__line-ripple::before {
    border-bottom-color: #b00020;
    border-bottom-color: var(--error, #b00020)
}

.c_textfield--invalid:not(.c_textfield--disabled) .c_textfield__line-ripple::after {
    border-bottom-color: #b00020;
    border-bottom-color: var(--error, #b00020)
}

.c_textfield--invalid:not(.c_textfield--disabled) .c_textfield-floating-label {
    color: #b00020;
    color: var(--error, #b00020)
}

.c_textfield--invalid:not(.c_textfield--disabled).c_textfield--invalid+.c_textfield-helper-line .c_textfield-helper-text--validation-msg {
    color: #b00020;
    color: var(--error, #b00020)
}

.c_textfield--invalid .c_textfield__input {
    caret-color: #b00020;
    caret-color: var(--error, #b00020)
}

.c_textfield--invalid:not(.c_textfield--disabled) .c_textfield__icon--trailing {
    color: #b00020;
    color: var(--error, #b00020)
}

.c_textfield--invalid:not(.c_textfield--disabled) .c_textfield__line-ripple::before {
    border-bottom-color: #b00020;
    border-bottom-color: var(--error, #b00020)
}

.c_textfield--invalid:not(.c_textfield--disabled) .c_textfield-notched-outline__leading,.c_textfield--invalid:not(.c_textfield--disabled) .c_textfield-notched-outline__notch,.c_textfield--invalid:not(.c_textfield--disabled) .c_textfield-notched-outline__trailing {
    border-color: #b00020;
    border-color: var(--error, #b00020)
}

.c_textfield--invalid:not(.c_textfield--disabled):not(.c_textfield--focused):hover .c_textfield-notched-outline .c_textfield-notched-outline__leading,.c_textfield--invalid:not(.c_textfield--disabled):not(.c_textfield--focused):hover .c_textfield-notched-outline .c_textfield-notched-outline__notch,.c_textfield--invalid:not(.c_textfield--disabled):not(.c_textfield--focused):hover .c_textfield-notched-outline .c_textfield-notched-outline__trailing {
    border-color: #b00020;
    border-color: var(--error, #b00020)
}

.c_textfield--invalid:not(.c_textfield--disabled).c_textfield--focused .c_textfield-notched-outline__leading,.c_textfield--invalid:not(.c_textfield--disabled).c_textfield--focused .c_textfield-notched-outline__notch,.c_textfield--invalid:not(.c_textfield--disabled).c_textfield--focused .c_textfield-notched-outline__trailing {
    border-color: #b00020;
    border-color: var(--error, #b00020)
}

.c_textfield--invalid+.c_textfield-helper-line .c_textfield-helper-text--validation-msg {
    opacity: 1
}

.c_textfield--disabled {
    pointer-events: none
}

.c_textfield--disabled .c_textfield__input {
    color: rgba(0, 0, 0, 0.38)
}

@media all {
    .c_textfield--disabled .c_textfield__input::placeholder {
        color: rgba(0, 0, 0, 0.38)
    }
}

@media all {
    .c_textfield--disabled .c_textfield__input:-ms-input-placeholder {
        color: rgba(0, 0, 0, 0.38)
    }
}

.c_textfield--disabled .c_textfield-floating-label {
    color: rgba(0, 0, 0, 0.38)
}

.c_textfield--disabled+.c_textfield-helper-line .c_textfield-helper-text {
    color: rgba(0, 0, 0, 0.38)
}

.c_textfield--disabled .c_textfield-character-counter,.c_textfield--disabled+.c_textfield-helper-line .c_textfield-character-counter {
    color: rgba(0, 0, 0, 0.38)
}

.c_textfield--disabled .c_textfield__icon--leading {
    color: rgba(0, 0, 0, 0.3)
}

.c_textfield--disabled .c_textfield__icon--trailing {
    color: rgba(0, 0, 0, 0.3)
}

.c_textfield--disabled .c_textfield__affix--prefix {
    color: rgba(0, 0, 0, 0.38)
}

.c_textfield--disabled .c_textfield__affix--suffix {
    color: rgba(0, 0, 0, 0.38)
}

.c_textfield--disabled .c_textfield__line-ripple::before {
    border-bottom-color: rgba(0, 0, 0, 0.06)
}

.c_textfield--disabled .c_textfield-notched-outline__leading,.c_textfield--disabled .c_textfield-notched-outline__notch,.c_textfield--disabled .c_textfield-notched-outline__trailing {
    border-color: rgba(0, 0, 0, 0.06)
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield__input::placeholder {
        color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield__input:-ms-input-placeholder {
        color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield-floating-label {
        color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled+.c_textfield-helper-line .c_textfield-helper-text {
        color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield-character-counter,.c_textfield--disabled+.c_textfield-helper-line .c_textfield-character-counter {
        color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield__icon--leading {
        color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield__icon--trailing {
        color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield__affix--prefix {
        color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield__affix--suffix {
        color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield__line-ripple::before {
        border-bottom-color: GrayText
    }
}

@media screen and (forced-colors: active),(-ms-high-contrast: active) {
    .c_textfield--disabled .c_textfield-notched-outline__leading,.c_textfield--disabled .c_textfield-notched-outline__notch,.c_textfield--disabled .c_textfield-notched-outline__trailing {
        border-color: GrayText
    }
}

@media screen and (forced-colors: active) {
    .c_textfield--disabled .c_textfield__input {
        background-color: Window
    }

    .c_textfield--disabled .c_textfield-floating-label {
        z-index: 1
    }
}

.c_textfield--disabled .c_textfield-floating-label {
    cursor: default
}

.c_textfield--disabled.c_textfield--filled {
    background-color: #fafafa
}

.c_textfield--disabled .c_textfield__input {
    pointer-events: auto
}

.c_textfield--end-aligned .c_textfield__input {
    text-align: right
}

[dir=rtl] .c_textfield--end-aligned .c_textfield__input,.c_textfield--end-aligned .c_textfield__input[dir=rtl] {
    text-align: left
}

[dir=rtl] .c_textfield--ltr-text .c_textfield__input,[dir=rtl] .c_textfield--ltr-text .c_textfield__affix,.c_textfield--ltr-text[dir=rtl] .c_textfield__input,.c_textfield--ltr-text[dir=rtl] .c_textfield__affix {
    direction: ltr
}

[dir=rtl] .c_textfield--ltr-text .c_textfield__affix--prefix,.c_textfield--ltr-text[dir=rtl] .c_textfield__affix--prefix {
    padding-left: 0;
    padding-right: 2px
}

[dir=rtl] .c_textfield--ltr-text .c_textfield__affix--suffix,.c_textfield--ltr-text[dir=rtl] .c_textfield__affix--suffix {
    padding-left: 12px;
    padding-right: 0
}

[dir=rtl] .c_textfield--ltr-text .c_textfield__icon--leading,.c_textfield--ltr-text[dir=rtl] .c_textfield__icon--leading {
    order: 1
}

[dir=rtl] .c_textfield--ltr-text .c_textfield__affix--suffix,.c_textfield--ltr-text[dir=rtl] .c_textfield__affix--suffix {
    order: 2
}

[dir=rtl] .c_textfield--ltr-text .c_textfield__input,.c_textfield--ltr-text[dir=rtl] .c_textfield__input {
    order: 3
}

[dir=rtl] .c_textfield--ltr-text .c_textfield__affix--prefix,.c_textfield--ltr-text[dir=rtl] .c_textfield__affix--prefix {
    order: 4
}

[dir=rtl] .c_textfield--ltr-text .c_textfield__icon--trailing,.c_textfield--ltr-text[dir=rtl] .c_textfield__icon--trailing {
    order: 5
}

[dir=rtl] .c_textfield--ltr-text.c_textfield--end-aligned .c_textfield__input,.c_textfield--ltr-text.c_textfield--end-aligned[dir=rtl] .c_textfield__input {
    text-align: right
}

[dir=rtl] .c_textfield--ltr-text.c_textfield--end-aligned .c_textfield__affix--prefix,.c_textfield--ltr-text.c_textfield--end-aligned[dir=rtl] .c_textfield__affix--prefix {
    padding-right: 12px
}

[dir=rtl] .c_textfield--ltr-text.c_textfield--end-aligned .c_textfield__affix--suffix,.c_textfield--ltr-text.c_textfield--end-aligned[dir=rtl] .c_textfield__affix--suffix {
    padding-left: 2px
}

.c_textfield-helper-text {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-size: 0.75rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.0333333333em;
    text-decoration: inherit;
    text-transform: inherit;
    display: block;
    margin-top: 0;
    line-height: normal;
    margin: 0;
    opacity: 0;
    will-change: opacity;
    transition: opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1)
}

.c_textfield-helper-text::before {
    display: inline-block;
    width: 0;
    height: 16px;
    content: "";
    vertical-align: 0
}

.c_textfield-helper-text--persistent {
    transition: none;
    opacity: 1;
    will-change: initial
}

.c_textfield-character-counter {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-size: 0.75rem;
    line-height: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.0333333333em;
    text-decoration: inherit;
    text-transform: inherit;
    display: block;
    margin-top: 0;
    line-height: normal;
    margin-left: auto;
    margin-right: 0;
    padding-left: 16px;
    padding-right: 0;
    white-space: nowrap
}

.c_textfield-character-counter::before {
    display: inline-block;
    width: 0;
    height: 16px;
    content: "";
    vertical-align: 0
}

[dir=rtl] .c_textfield-character-counter,.c_textfield-character-counter[dir=rtl] {
    margin-left: 0;
    margin-right: auto
}

[dir=rtl] .c_textfield-character-counter,.c_textfield-character-counter[dir=rtl] {
    padding-left: 0;
    padding-right: 16px
}

.c_textfield__icon {
    align-self: center;
    cursor: pointer
}

.c_textfield__icon:not([tabindex]),.c_textfield__icon[tabindex="-1"] {
    cursor: default;
    pointer-events: none
}

.c_textfield__icon[data-icon="clear"], .c_textfield__icon[data-icon="content_copy"], .c_textfield__icon[data-icon="visibility"], .c_textfield__icon[data-icon="visibility_off"] {
    pointer-events: auto
}

.c_textfield__icon svg {
    display: block
}

.c_textfield__icon--leading {
    margin-left: 16px;
    margin-right: 8px
}

[dir=rtl] .c_textfield__icon--leading,.c_textfield__icon--leading[dir=rtl] {
    margin-left: 8px;
    margin-right: 16px
}

.c_textfield__icon--trailing {
    padding: 12px;
    margin-left: 0px;
    margin-right: 0px
}

[dir=rtl] .c_textfield__icon--trailing,.c_textfield__icon--trailing[dir=rtl] {
    margin-left: 0px;
    margin-right: 0px
}

.c_textfield-floating-label {
    position: absolute;
    left: 0;
    transform-origin: left top;
    line-height: 1.15rem;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: text;
    overflow: hidden;
    will-change: transform
}

[dir=rtl] .c_textfield-floating-label,.c_textfield-floating-label[dir=rtl] {
    right: 0;
    left: auto;
    transform-origin: right top;
    text-align: right
}

.c_textfield-floating-label--float-above {
    cursor: auto
}

.c_textfield-floating-label--required:not(.c_textfield-floating-label--hide-required-marker)::after {
    margin-left: 1px;
    margin-right: 0px;
    content: "*"
}

[dir=rtl] .c_textfield-floating-label--required:not(.c_textfield-floating-label--hide-required-marker)::after,.c_textfield-floating-label--required:not(.c_textfield-floating-label--hide-required-marker)[dir=rtl]::after {
    margin-left: 0;
    margin-right: 1px
}

.c_textfield-floating-label {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.009375em;
    text-decoration: inherit;
    text-transform: inherit;
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1),color 150ms cubic-bezier(0.4, 0, 0.2, 1)
}

.c_textfield-floating-label--float-above {
    transform: translateY(-106%) scale(0.75)
}

.c_textfield-floating-label--shake {
    animation: c_textfield-floating-label-shake-float-above-standard 250ms 1
}

@keyframes c_textfield-floating-label-shake-float-above-standard {
    0% {
        transform: translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)
    }

    33% {
        animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
        transform: translateX(calc(4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)
    }

    66% {
        animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
        transform: translateX(calc(-4% - 0%)) translateY(calc(0% - 106%)) scale(0.75)
    }

    100% {
        transform: translateX(calc(0% - 0%)) translateY(calc(0% - 106%)) scale(0.75)
    }
}

.c_textfield__line-ripple::before,.c_textfield__line-ripple::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom-style: solid;
    content: ""
}

.c_textfield__line-ripple::before {
    z-index: 1
}

.c_textfield__line-ripple::after {
    transform: scaleX(0);
    opacity: 0;
    z-index: 2
}

.c_textfield__line-ripple--active::after {
    transform: scaleX(1);
    opacity: 1
}

.c_textfield__line-ripple--deactivating::after {
    opacity: 0
}

.c_textfield__line-ripple::before {
    border-bottom-width: 1px
}

.c_textfield__line-ripple::after {
    border-bottom-width: 2px
}

.c_textfield__line-ripple::after {
    transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1),opacity 180ms cubic-bezier(0.4, 0, 0.2, 1)
}

.c_textfield-notched-outline {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    height: 100%;
    text-align: left;
    pointer-events: none
}

[dir=rtl] .c_textfield-notched-outline,.c_textfield-notched-outline[dir=rtl] {
    text-align: right
}

.c_textfield-notched-outline__leading,.c_textfield-notched-outline__notch,.c_textfield-notched-outline__trailing {
    box-sizing: border-box;
    height: 100%;
    pointer-events: none
}

.c_textfield-notched-outline__trailing {
    flex-grow: 1
}

.c_textfield-notched-outline__notch {
    flex: 0 0 auto;
    width: auto
}

.c_textfield-notched-outline .c_textfield-floating-label {
    display: inline-block;
    position: relative;
    max-width: 100%
}

.c_textfield-notched-outline .c_textfield-floating-label--float-above {
    text-overflow: clip
}

.c_textfield-notched-outline--upgraded .c_textfield-floating-label--float-above {
    max-width: 133.3333333333%
}

.c_textfield-notched-outline--notched .c_textfield-notched-outline__notch {
    padding-left: 0;
    padding-right: 8px;
    border-top: none
}

[dir=rtl] .c_textfield-notched-outline--notched .c_textfield-notched-outline__notch,.c_textfield-notched-outline--notched .c_textfield-notched-outline__notch[dir=rtl] {
    padding-left: 8px;
    padding-right: 0
}

.c_textfield-notched-outline--no-label .c_textfield-notched-outline__notch {
    display: none
}

.c_textfield-notched-outline__leading,.c_textfield-notched-outline__notch,.c_textfield-notched-outline__trailing {
    border-top: 1px solid;
    border-bottom: 1px solid
}

.c_textfield-notched-outline__leading {
    border-left: 1px solid;
    border-right: none;
    width: 12px
}

[dir=rtl] .c_textfield-notched-outline__leading,.c_textfield-notched-outline__leading[dir=rtl] {
    border-left: none;
    border-right: 1px solid
}

.c_textfield-notched-outline__trailing {
    border-left: none;
    border-right: 1px solid
}

[dir=rtl] .c_textfield-notched-outline__trailing,.c_textfield-notched-outline__trailing[dir=rtl] {
    border-left: 1px solid;
    border-right: none
}

.c_textfield-notched-outline__notch {
    max-width: calc(100% - 12px * 2)
}

.textfield-container {
    display: flex;
    flex-direction: column;
    margin:20px 0
}

/* tabs */
.c_tab-bar {
    width: 100%
}

.c_tab {
    height: 48px
}

.c_tab--stacked {
    height: 64px
}

.c_tab-scroller {
    overflow-y: hidden
}

.c_tab-scroller.c_tab-scroller--animating .c_tab-scroller__scroll-content {
    transition: 250ms transform cubic-bezier(0.4, 0, 0.2, 1)
}

.c_tab-scroller__test {
    position: absolute;
    top: -9999px;
    width: 100px;
    height: 100px;
    overflow-x: scroll
}

.c_tab-scroller__scroll-area {
    -webkit-overflow-scrolling: touch;
    display: flex;
    overflow-x: hidden
}

.c_tab-scroller__scroll-area::-webkit-scrollbar,.c_tab-scroller__test::-webkit-scrollbar {
    display: none
}

.c_tab-scroller__scroll-area--scroll {
    overflow-x: scroll
}

.c_tab-scroller__scroll-content {
    position: relative;
    display: flex;
    flex: 1 0 auto;
    transform: none;
    will-change: transform
}

.c_tab-scroller--align-start .c_tab-scroller__scroll-content {
    justify-content: flex-start
}

.c_tab-scroller--align-end .c_tab-scroller__scroll-content {
    justify-content: flex-end
}

.c_tab-scroller--align-center .c_tab-scroller__scroll-content {
    justify-content: center
}

.c_tab-scroller--animating .c_tab-scroller__scroll-area {
    -webkit-overflow-scrolling: auto
}

.c_tab-indicator .c_tab-indicator__content--underline {
    border-color: var(--primary, #6200ee)
}

.c_tab-indicator .c_tab-indicator__content--icon {
    color: #018786;
    color: var(--secondary-variant, #018786)
}

.c_tab-indicator .c_tab-indicator__content--underline {
    border-top-width: 2px
}

.c_tab-bar--primary .c_tab-indicator .c_tab-indicator__content--underline {
    border-top-width: 3px;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    min-width:24px;
    width: auto
}

.c_tab-indicator .c_tab-indicator__content--icon {
    height: 34px;
    font-size: 34px
}

.c_tab-indicator {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1
}

.c_tab-indicator__content {
    transform-origin: left;
    opacity: 0
}

.c_tab-indicator__content--underline {
    align-self: flex-end;
    box-sizing: border-box;
    width: 100%;
    border-top-style: solid
}

.c_tab-indicator__content--icon {
    align-self: center;
    margin: 0 auto
}

.c_tab-indicator--active .c_tab-indicator__content {
    opacity: 1
}

.c_tab-indicator .c_tab-indicator__content {
    transition: 250ms transform cubic-bezier(0.4, 0, 0.2, 1)
}

.c_tab-indicator--no-transition .c_tab-indicator__content {
    transition: none
}

.c_tab-indicator--fade .c_tab-indicator__content {
    transition: 150ms opacity linear
}

.c_tab-indicator--active.c_tab-indicator--fade .c_tab-indicator__content {
    transition-delay: 100ms
}

.c_tab {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: Roboto, sans-serif;
    font-size: 0.875rem;
    line-height: 2.25rem;
    font-weight: 500;
    letter-spacing: 0.0892857143em;
    text-decoration: none;
    -webkit-text-decoration: none;
    text-decoration: none;
    text-transform: normal;
    position: relative
}

.c_tab .c_tab__text-label {
    color: rgba(0, 0, 0, 0.6)
}

.c_tab .c_tab__icon {
    color: rgba(0, 0, 0, 0.54);
    fill: currentColor
}

.c_tab__content {
    position: relative
}

.c_tab__icon {
    width: 24px;
    height: 24px;
    font-size: 24px
}

.c_tab--active .c_tab__text-label {
    color: var(--primary, #6200ee)
}

.c_tab--active .c_tab__icon {
    color: var(--primary, #6200ee);
    fill: currentColor
}

.c_tab {
    background: none
}

.c_tab {
    min-width: 90px;
    padding-right: 24px;
    padding-left: 24px;
    display: flex;
    flex: 1 0 auto;
    justify-content: center;
    box-sizing: border-box;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
    border: none;
    outline: none;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    -webkit-appearance: none;
    appearance:none;
    z-index: 1
}

.c_tab::-moz-focus-inner {
    padding: 0;
    border: 0
}

.c_tab[hidden] {
    display: none
}

.c_tab--min-width {
    flex: 0 1 auto
}

.c_tab__content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
    pointer-events: none
}

.c_tab__text-label {
    transition: 150ms color linear;
    display: inline-block;
    line-height: 1;
    z-index: 2
}

.c_tab__icon {
    transition: 150ms color linear;
    z-index: 2
}

.c_tab--stacked .c_tab__content {
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.c_tab--stacked .c_tab__text-label {
    padding-top: 4px;
    padding-bottom: 4px
}

.c_tab--active .c_tab__text-label,.c_tab--active .c_tab__icon {
    transition-delay: 100ms
}

.c_tab:not(.c_tab--stacked) .c_tab__icon+.c_tab__text-label {
    padding-left: 8px;
    padding-right: 0
}

[dir=rtl] .c_tab:not(.c_tab--stacked) .c_tab__icon+.c_tab__text-label,.c_tab:not(.c_tab--stacked) .c_tab__icon+.c_tab__text-label[dir=rtl] {
    padding-left: 0;
    padding-right: 8px
}

.c_tab {
    -webkit-tap-highlight-color: rgba(0,0,0,0)
}

.c_tab .c_tab__ripple::before,.c_tab .c_tab__ripple::after {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    content: ""
}

.c_tab .c_tab__ripple::before {
    transition: opacity 15ms linear,background-color 15ms linear;
    z-index: 1;
}

.c_tab .c_tab__ripple::after {
    z-index: 0;
}


.c_tab .c_tab__ripple::before,.c_tab .c_tab__ripple::after {
    top: calc(50% - 100%);
    left: calc(50% - 100%);
    width: 200%;
    height: 200%
}

.c_tab .c_tab__ripple .c_ripple__ripple {
    background-color: var(--primary, #6200ee);
    opacity:0.09;
}

.c_tab:hover .c_tab__ripple::before,.c_tab--focused .c_tab__ripple::before {
    background-color: var(--primary, #6200ee);
    opacity: 0.08
}

.c_tab__badge {
    position: relative;
    border-radius: 100%;
    background-color: var(--error, #b00020);
    color: var(--on-error, #ffffff);
    font-size: 0.688rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10
}

.c_tab-bar--primary .c_tab__badge {
    position: absolute;
}

.c_tab-bar--secondary .c_tab__text-label+.c_tab__badge {
    margin-left: 6px
}

.c_tab__badge--small {
    width: 6px;
    height: 6px;
}

.c_tab__badge--large {
    height: 16px;
    min-width: 16px;
    padding:0px 4px;
    border-radius: 8px;
}

.c_tab-bar--primary .c_tab__badge--small {
    top: 6px;
    right: 6px
}

.c_tab-bar--primary .c_tab__badge--large {
    top: 4px;
    right: 4px
}

.c_tab__badge--single-digit {
    padding:0;
    width: 16px;
    height: 16px;
}

.c_tab__ripple {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform,opacity
}

/* Checkbox */
@-webkit-keyframes c_checkbox-unchecked-checked-checkmark-path {
  0%, 50% {
    stroke-dashoffset: 29.7833385;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes c_checkbox-unchecked-checked-checkmark-path {
  0%, 50% {
    stroke-dashoffset: 29.7833385;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes c_checkbox-unchecked-indeterminate-mixedmark {
  0%, 68.2% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  68.2% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes c_checkbox-unchecked-indeterminate-mixedmark {
  0%, 68.2% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  68.2% {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
            animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes c_checkbox-checked-unchecked-checkmark-path {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
    opacity: 1;
    stroke-dashoffset: 0;
  }
  to {
    opacity: 0;
    stroke-dashoffset: -29.7833385;
  }
}
@keyframes c_checkbox-checked-unchecked-checkmark-path {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
            animation-timing-function: cubic-bezier(0.4, 0, 1, 1);
    opacity: 1;
    stroke-dashoffset: 0;
  }
  to {
    opacity: 0;
    stroke-dashoffset: -29.7833385;
  }
}
@-webkit-keyframes c_checkbox-checked-indeterminate-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes c_checkbox-checked-indeterminate-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }
}
@-webkit-keyframes c_checkbox-indeterminate-checked-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}
@keyframes c_checkbox-indeterminate-checked-checkmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes c_checkbox-checked-indeterminate-mixedmark {
  from {
    -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
            animation-timing-function: mdc-animation-deceleration-curve-timing-function;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
}
@keyframes c_checkbox-checked-indeterminate-mixedmark {
  from {
    -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
            animation-timing-function: mdc-animation-deceleration-curve-timing-function;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes c_checkbox-indeterminate-checked-mixedmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
    opacity: 0;
  }
}
@keyframes c_checkbox-indeterminate-checked-mixedmark {
  from {
    -webkit-animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
            animation-timing-function: cubic-bezier(0.14, 0, 0, 1);
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
    opacity: 0;
  }
}
@-webkit-keyframes c_checkbox-indeterminate-unchecked-mixedmark {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
  32.8%, 100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
}
@keyframes c_checkbox-indeterminate-unchecked-mixedmark {
  0% {
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    opacity: 1;
  }
  32.8%, 100% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    opacity: 0;
  }
}
.c_checkbox {
  display: inline-block;
  position: relative;
  -ms-flex: 0 0 18px;
      flex: 0 0 18px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 18px;
  height: 18px;
  line-height: 0;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: bottom;
  padding: 11px;
}
.c_checkbox .c_checkbox__native-control:checked ~ .c_checkbox__background::before,
.c_checkbox .c_checkbox__native-control:indeterminate ~ .c_checkbox__background::before {
  background-color: #018786;
}
@supports not (-ms-ime-align: auto) {
  .c_checkbox .c_checkbox__native-control:checked ~ .c_checkbox__background::before,
.c_checkbox .c_checkbox__native-control:indeterminate ~ .c_checkbox__background::before {
    /* @alternate */
    background-color: var(--secondary-variant, #018786);
  }
}
.c_checkbox.c_checkbox--selected .c_checkbox__ripple::before, .c_checkbox.c_checkbox--selected .c_checkbox__ripple::after {
  background-color: #018786;
}
@supports not (-ms-ime-align: auto) {
  .c_checkbox.c_checkbox--selected .c_checkbox__ripple::before, .c_checkbox.c_checkbox--selected .c_checkbox__ripple::after {
    /* @alternate */
    background-color: var(--secondary-variant, #018786);
  }
}
.c_checkbox.c_checkbox--selected:hover .c_checkbox__ripple::before {
  opacity: 0.04;
}
.c_checkbox.c_checkbox--selected.mdc-ripple-upgraded--background-focused .c_checkbox__ripple::before, .c_checkbox.c_checkbox--selected:not(.mdc-ripple-upgraded):focus .c_checkbox__ripple::before {
  -webkit-transition-duration: 75ms;
       -o-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}
.c_checkbox.c_checkbox--selected:not(.mdc-ripple-upgraded) .c_checkbox__ripple::after {
  -webkit-transition: opacity 150ms linear;
  -o-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}
.c_checkbox.c_checkbox--selected:not(.mdc-ripple-upgraded):active .c_checkbox__ripple::after {
  -webkit-transition-duration: 75ms;
       -o-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.12;
}

.c_checkbox .c_checkbox__background {
  top: 11px;
  left: 11px;
}
.c_checkbox .c_checkbox__background::before {
  top: -13px;
  left: -13px;
  width: 40px;
  height: 40px;
}
.c_checkbox .c_checkbox__native-control {
  top: 0px;
  right: 0px;
  left: 0px;
  width: 40px;
  height: 40px;
}

.c_checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .c_checkbox__background {
  border-color: rgba(0, 0, 0, 0.54);
  background-color: transparent;
}

.c_checkbox__native-control:enabled:checked ~ .c_checkbox__background,
.c_checkbox__native-control:enabled:indeterminate ~ .c_checkbox__background {
  border-color: var(--primary, #018786);
  background-color: var(--primary, #018786);
}

@-webkit-keyframes c_checkbox-fade-in-background-u2nmdlf {
  0% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent;
  }
  50% {
    border-color: #018786;
    /* @alternate */
    border-color: var(--secondary-variant, #018786);
    background-color: #018786;
    /* @alternate */
    background-color: var(--secondary-variant, #018786);
  }
}

@keyframes c_checkbox-fade-in-background-u2nmdlf {
  0% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent;
  }
  50% {
    border-color: #018786;
    /* @alternate */
    border-color: var(--secondary-variant, #018786);
    background-color: #018786;
    /* @alternate */
    background-color: var(--secondary-variant, #018786);
  }
}
@-webkit-keyframes c_checkbox-fade-out-background-u2nmdlf {
  0%, 80% {
    border-color: #018786;
    /* @alternate */
    border-color: var(--secondary-variant, #018786);
    background-color: #018786;
    /* @alternate */
    background-color: var(--secondary-variant, #018786);
  }
  100% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent;
  }
}
@keyframes c_checkbox-fade-out-background-u2nmdlf {
  0%, 80% {
    border-color: #018786;
    /* @alternate */
    border-color: var(--secondary-variant, #018786);
    background-color: #018786;
    /* @alternate */
    background-color: var(--secondary-variant, #018786);
  }
  100% {
    border-color: rgba(0, 0, 0, 0.54);
    background-color: transparent;
  }
}
.c_checkbox--anim-unchecked-checked .c_checkbox__native-control:enabled ~ .c_checkbox__background, .c_checkbox--anim-unchecked-indeterminate .c_checkbox__native-control:enabled ~ .c_checkbox__background {
  -webkit-animation-name: c_checkbox-fade-in-background-u2nmdlf;
          animation-name: c_checkbox-fade-in-background-u2nmdlf;
}
.c_checkbox--anim-checked-unchecked .c_checkbox__native-control:enabled ~ .c_checkbox__background, .c_checkbox--anim-indeterminate-unchecked .c_checkbox__native-control:enabled ~ .c_checkbox__background {
  -webkit-animation-name: c_checkbox-fade-out-background-u2nmdlf;
          animation-name: c_checkbox-fade-out-background-u2nmdlf;
}

.c_checkbox__native-control[disabled]:not(:checked):not(:indeterminate) ~ .c_checkbox__background {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}

.c_checkbox__native-control[disabled]:checked ~ .c_checkbox__background,
.c_checkbox__native-control[disabled]:indeterminate ~ .c_checkbox__background {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.26);
}

.c_checkbox__native-control:enabled ~ .c_checkbox__background .c_checkbox__checkmark {
  color: #fff;
}
.c_checkbox__native-control:enabled ~ .c_checkbox__background .c_checkbox__mixedmark {
  border-color: #fff;
}

.c_checkbox__native-control:disabled ~ .c_checkbox__background .c_checkbox__checkmark {
  color: #fff;
}
.c_checkbox__native-control:disabled ~ .c_checkbox__background .c_checkbox__mixedmark {
  border-color: #fff;
}

@media screen and (-ms-high-contrast: active) {
  .c_checkbox__mixedmark {
    margin: 0 1px;
  }
}
.c_checkbox--disabled {
  cursor: default;
  pointer-events: none;
}

.c_checkbox__background {
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: absolute;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 2px;
  background-color: transparent;
  pointer-events: none;
  will-change: background-color, border-color;
  -webkit-transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: background-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c_checkbox__background .c_checkbox__background::before {
  background-color: #000;
}
@supports not (-ms-ime-align: auto) {
  .c_checkbox__background .c_checkbox__background::before {
    /* @alternate */
    background-color: var(--mdc-theme-on-surface, #000);
  }
}

.c_checkbox__checkmark {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  -webkit-transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
}

.c_checkbox__checkmark-path {
  -webkit-transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: stroke-dashoffset 180ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  stroke: currentColor;
  stroke-width: 3.12px;
  stroke-dashoffset: 29.7833385;
  stroke-dasharray: 29.7833385;
}

.c_checkbox__mixedmark {
  width: 100%;
  height: 0;
  -webkit-transform: scaleX(0) rotate(0deg);
      -ms-transform: scaleX(0) rotate(0deg);
          transform: scaleX(0) rotate(0deg);
  border-width: 1px;
  border-style: solid;
  opacity: 0;
  -webkit-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
}

.c_checkbox--anim-unchecked-checked .c_checkbox__background, .c_checkbox--anim-unchecked-indeterminate .c_checkbox__background, .c_checkbox--anim-checked-unchecked .c_checkbox__background, .c_checkbox--anim-indeterminate-unchecked .c_checkbox__background {
  -webkit-animation-duration: 180ms;
          animation-duration: 180ms;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
.c_checkbox--anim-unchecked-checked .c_checkbox__checkmark-path {
  -webkit-animation: c_checkbox-unchecked-checked-checkmark-path 180ms linear 0s;
          animation: c_checkbox-unchecked-checked-checkmark-path 180ms linear 0s;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.c_checkbox--anim-unchecked-indeterminate .c_checkbox__mixedmark {
  -webkit-animation: c_checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;
          animation: c_checkbox-unchecked-indeterminate-mixedmark 90ms linear 0s;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.c_checkbox--anim-checked-unchecked .c_checkbox__checkmark-path {
  -webkit-animation: c_checkbox-checked-unchecked-checkmark-path 90ms linear 0s;
          animation: c_checkbox-checked-unchecked-checkmark-path 90ms linear 0s;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.c_checkbox--anim-checked-indeterminate .c_checkbox__checkmark {
  -webkit-animation: c_checkbox-checked-indeterminate-checkmark 90ms linear 0s;
          animation: c_checkbox-checked-indeterminate-checkmark 90ms linear 0s;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.c_checkbox--anim-checked-indeterminate .c_checkbox__mixedmark {
  -webkit-animation: c_checkbox-checked-indeterminate-mixedmark 90ms linear 0s;
          animation: c_checkbox-checked-indeterminate-mixedmark 90ms linear 0s;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.c_checkbox--anim-indeterminate-checked .c_checkbox__checkmark {
  -webkit-animation: c_checkbox-indeterminate-checked-checkmark 500ms linear 0s;
          animation: c_checkbox-indeterminate-checked-checkmark 500ms linear 0s;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.c_checkbox--anim-indeterminate-checked .c_checkbox__mixedmark {
  -webkit-animation: c_checkbox-indeterminate-checked-mixedmark 500ms linear 0s;
          animation: c_checkbox-indeterminate-checked-mixedmark 500ms linear 0s;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}
.c_checkbox--anim-indeterminate-unchecked .c_checkbox__mixedmark {
  -webkit-animation: c_checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;
          animation: c_checkbox-indeterminate-unchecked-mixedmark 300ms linear 0s;
  -webkit-transition: none;
  -o-transition: none;
  transition: none;
}

.c_checkbox__native-control:checked ~ .c_checkbox__background,
.c_checkbox__native-control:indeterminate ~ .c_checkbox__background {
  -webkit-transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1), background-color 90ms 0ms cubic-bezier(0, 0, 0.2, 1);
}
.c_checkbox__native-control:checked ~ .c_checkbox__background .c_checkbox__checkmark-path,
.c_checkbox__native-control:indeterminate ~ .c_checkbox__background .c_checkbox__checkmark-path {
  stroke-dashoffset: 0;
}

.c_checkbox__background::before {
  position: absolute;
  -webkit-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
          transform: scale(0, 0);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
  will-change: opacity, transform;
  -webkit-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
}

.c_checkbox__native-control:focus ~ .c_checkbox__background::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 0.12;
  -webkit-transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 80ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 80ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.c_checkbox__native-control {
  position: absolute;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: inherit;
}
.c_checkbox__native-control:disabled {
  cursor: default;
  pointer-events: none;
}

.c_checkbox--touch {
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 4px;
  margin-left: 4px;
}
.c_checkbox--touch .c_checkbox__native-control {
  top: -4px;
  right: -4px;
  left: -4px;
  width: 48px;
  height: 48px;
}

.c_checkbox__native-control:checked ~ .c_checkbox__background .c_checkbox__checkmark {
  -webkit-transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 180ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 180ms 0ms cubic-bezier(0, 0, 0.2, 1);
  opacity: 1;
}
.c_checkbox__native-control:checked ~ .c_checkbox__background .c_checkbox__mixedmark {
  -webkit-transform: scaleX(1) rotate(-45deg);
      -ms-transform: scaleX(1) rotate(-45deg);
          transform: scaleX(1) rotate(-45deg);
}

.c_checkbox__native-control:indeterminate ~ .c_checkbox__background .c_checkbox__checkmark {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
  -webkit-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 90ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c_checkbox__native-control:indeterminate ~ .c_checkbox__background .c_checkbox__mixedmark {
  -webkit-transform: scaleX(1) rotate(0deg);
      -ms-transform: scaleX(1) rotate(0deg);
          transform: scaleX(1) rotate(0deg);
  opacity: 1;
}

.c_checkbox {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.c_checkbox .c_checkbox__ripple::before,
.c_checkbox .c_checkbox__ripple::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}
.c_checkbox .c_checkbox__ripple::before {
  -webkit-transition: opacity 15ms linear, background-color 15ms linear;
  -o-transition: opacity 15ms linear, background-color 15ms linear;
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
}

.c_checkbox .c_checkbox__ripple::before, .c_checkbox .c_checkbox__ripple::after {
  background-color: #000;
}
@supports not (-ms-ime-align: auto) {
  .c_checkbox .c_checkbox__ripple::before, .c_checkbox .c_checkbox__ripple::after {
    /* @alternate */
    background-color: var(--mdc-theme-on-surface, #000);
  }
}
.c_checkbox:hover .c_checkbox__ripple::before {
  opacity: 0.04;
}

.c_checkbox .c_checkbox__ripple::before,
.c_checkbox .c_checkbox__ripple::after {
  top: calc(50% - 50%);
  /* @noflip */
  left: calc(50% - 50%);
  width: 100%;
  height: 100%;
}

.c_checkbox__ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* form field */
.c_form-field {
  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.0178571429em;
  text-decoration: inherit;
  text-transform: inherit;
  color: rgba(0, 0, 0, 0.87);
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  vertical-align: middle;
  position: relative
}

.c_form-field--nowrap {
    display: block
}

.c_form-field > label {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: auto;
  /* @noflip */
  padding-left: 4px;
  /* @noflip */
  padding-right: 0;
  -ms-flex-order: 0;
      order: 0;
}
[dir=rtl] .c_form-field > label, .c_form-field > label[dir=rtl] {
  /* @noflip */
  margin-left: auto;
  /* @noflip */
  margin-right: 0;
}
[dir=rtl] .c_form-field > label, .c_form-field > label[dir=rtl] {
  /* @noflip */
  padding-left: 0;
  /* @noflip */
  padding-right: 4px;
}

.c_form-field--align-end > label {
  /* @noflip */
  margin-left: auto;
  /* @noflip */
  margin-right: 0;
  /* @noflip */
  padding-left: 0;
  /* @noflip */
  padding-right: 4px;
  -ms-flex-order: -1;
      order: -1;
}
[dir=rtl] .c_form-field--align-end > label, .c_form-field--align-end > label[dir=rtl] {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: auto;
}
[dir=rtl] .c_form-field--align-end > label, .c_form-field--align-end > label[dir=rtl] {
  /* @noflip */
  padding-left: 4px;
  /* @noflip */
  padding-right: 0;
}

/* Radio button */
.c_radio {
  padding: 10px;
  display: inline-block;
  position: relative;
  -ms-flex: 0 0 auto;
      flex: 0 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 20px;
  height: 20px;
  cursor: pointer;
  /* @alternate */
  will-change: opacity, transform, border-color, color;
}
.c_radio .c_radio__native-control:enabled:not(:checked) + .c_radio__background .c_radio__outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}
.c_radio .c_radio__native-control:enabled:checked + .c_radio__background .c_radio__outer-circle {
  border-color: #018786;
  /* @alternate */
  border-color: var(--secondary-variant, #018786);
}
.c_radio .c_radio__native-control:enabled + .c_radio__background .c_radio__inner-circle {
  border-color: #018786;
  /* @alternate */
  border-color: var(--secondary-variant, #018786);
}
.c_radio [aria-disabled=true] .c_radio__native-control:not(:checked) + .c_radio__background .c_radio__outer-circle,
.c_radio .c_radio__native-control:disabled:not(:checked) + .c_radio__background .c_radio__outer-circle {
  border-color: rgba(0, 0, 0, 0.26);
}
.c_radio [aria-disabled=true] .c_radio__native-control:checked + .c_radio__background .c_radio__outer-circle,
.c_radio .c_radio__native-control:disabled:checked + .c_radio__background .c_radio__outer-circle {
  border-color: rgba(0, 0, 0, 0.26);
}
.c_radio [aria-disabled=true] .c_radio__native-control + .c_radio__background .c_radio__inner-circle,
.c_radio .c_radio__native-control:disabled + .c_radio__background .c_radio__inner-circle {
  border-color: rgba(0, 0, 0, 0.26);
}
.c_radio .c_radio__background::before {
  background-color: #018786;
}
@supports not (-ms-ime-align: auto) {
  .c_radio .c_radio__background::before {
    /* @alternate */
    background-color: var(--secondary-variant, #018786);
  }
}
.c_radio .c_radio__background::before {
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
}
.c_radio .c_radio__native-control {
  top: 0px;
  right: 0px;
  left: 0px;
  width: 40px;
  height: 40px;
}
.c_radio__background {
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20px;
  height: 20px;
}
.c_radio__background::before {
  position: absolute;
  -webkit-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
          transform: scale(0, 0);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
  -webkit-transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: opacity 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c_radio__outer-circle {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-style: solid;
  border-radius: 50%;
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c_radio__inner-circle {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0, 0);
      -ms-transform: scale(0, 0);
          transform: scale(0, 0);
  border-width: 10px;
  border-style: solid;
  border-radius: 50%;
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  -o-transition: transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  transition: transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), border-color 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1), -webkit-transform 120ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
}
.c_radio__native-control {
  position: absolute;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: inherit;
  z-index: 1;
}
.c_radio--touch {
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 4px;
  margin-left: 4px;
}
.c_radio--touch .c_radio__native-control {
  top: -4px;
  right: -4px;
  left: -4px;
  width: 48px;
  height: 48px;
}

.c_radio__native-control:checked + .c_radio__background,
.c_radio__native-control:disabled + .c_radio__background {
  -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);
  -o-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);
  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);
}
.c_radio__native-control:checked + .c_radio__background .c_radio__outer-circle,
.c_radio__native-control:disabled + .c_radio__background .c_radio__outer-circle {
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}
.c_radio__native-control:checked + .c_radio__background .c_radio__inner-circle,
.c_radio__native-control:disabled + .c_radio__background .c_radio__inner-circle {
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.c_radio--disabled {
  cursor: default;
  pointer-events: none;
}

.c_radio__native-control:checked + .c_radio__background .c_radio__inner-circle {
  -webkit-transform: scale(0.5);
      -ms-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1), border-color 120ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 120ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.c_radio__native-control:disabled + .c_radio__background,
[aria-disabled=true] .c_radio__native-control + .c_radio__background {
  cursor: default;
}

.c_radio__native-control:focus + .c_radio__background::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 0.12;
  -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);
  -o-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);
  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);
}

.c_radio {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.c_radio .c_radio__ripple::before,
.c_radio .c_radio__ripple::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}
.c_radio .c_radio__ripple::before {
  -webkit-transition: opacity 15ms linear, background-color 15ms linear;
  -o-transition: opacity 15ms linear, background-color 15ms linear;
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
}

.c_radio .c_radio__ripple::before, .c_radio .c_radio__ripple::after {
  background-color: #018786;
}
@supports not (-ms-ime-align: auto) {
  .c_radio .c_radio__ripple::before, .c_radio .c_radio__ripple::after {
    /* @alternate */
    background-color: var(--secondary-variant, #018786);
  }
}
.c_radio:hover .c_radio__ripple::before {
  opacity: 0.04;
}

.c_radio__ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
/* Switch */
.c_switch__thumb-underlay {
  /* @noflip */
  left: -18px;
  /* @noflip */
  right: initial;
  top: -17px;
  width: 48px;
  height: 48px;
}
[dir=rtl] .c_switch__thumb-underlay, .c_switch__thumb-underlay[dir=rtl] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: -18px;
}

.c_switch__native-control {
  width: 68px;
  height: 48px;
}

.c_switch {
  display: inline-block;
  position: relative;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.c_switch.c_switch--checked .c_switch__track {
  background-color: #018786;
  /* @alternate */
  background-color: var(--secondary-variant, #018786);
  border-color: #018786;
  /* @alternate */
  border-color: var(--secondary-variant, #018786);
}
.c_switch.c_switch--checked .c_switch__thumb {
  background-color: #018786;
  /* @alternate */
  background-color: var(--secondary-variant, #018786);
  border-color: #018786;
  /* @alternate */
  border-color: var(--secondary-variant, #018786);
}
.c_switch:not(.c_switch--checked) .c_switch__track {
  background-color: #000;
  border-color: #000;
}
.c_switch:not(.c_switch--checked) .c_switch__thumb {
  background-color: #fff;
  border-color: #fff;
}

.c_switch__native-control {
  /* @noflip */
  left: 0;
  /* @noflip */
  right: initial;
  position: absolute;
  top: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  pointer-events: auto;
}
[dir=rtl] .c_switch__native-control, .c_switch__native-control[dir=rtl] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 0;
}

.c_switch__track {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 32px;
  height: 14px;
  border: 1px solid;
  border-radius: 7px;
  opacity: 0.38;
  -webkit-transition: opacity 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), border-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), border-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), border-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
}

.c_switch__thumb-underlay {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), border-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), border-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), border-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), border-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), border-color 90ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
}

.c_switch__thumb {
  -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);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 20px;
  height: 20px;
  border: 10px solid;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.c_switch--checked .c_switch__track {
  opacity: 0.54;
}
.c_switch--checked .c_switch__thumb-underlay {
  -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
          transform: translateX(20px);
}
[dir=rtl] .c_switch--checked .c_switch__thumb-underlay, .c_switch--checked .c_switch__thumb-underlay[dir=rtl] {
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}
.c_switch--checked .c_switch__native-control {
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}
[dir=rtl] .c_switch--checked .c_switch__native-control, .c_switch--checked .c_switch__native-control[dir=rtl] {
  -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
          transform: translateX(20px);
}

.c_switch--disabled {
  opacity: 0.38;
  pointer-events: none;
}
.c_switch--disabled .c_switch__thumb {
  border-width: 1px;
}
.c_switch--disabled .c_switch__native-control {
  cursor: default;
  pointer-events: none;
}

.c_switch__thumb-underlay {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.c_switch__thumb-underlay::before, .c_switch__thumb-underlay::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}
.c_switch__thumb-underlay::before {
  -webkit-transition: opacity 15ms linear, background-color 15ms linear;
  -o-transition: opacity 15ms linear, background-color 15ms linear;
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
}

.c_switch + label {
  margin-left: 10px;
}

/* Snackbar */
.c_snackbar {
  z-index: 1001;
  margin: 8px;
  display: none;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.c_snackbar__surface {
  background-color: #333333;
}

.c_snackbar__label {
  color: rgba(255, 255, 255, 0.87);
}

.c_snackbar__surface {
  min-width: 344px;
}
@media (max-width: 480px), (max-width: 344px) {
  .c_snackbar__surface {
    min-width: 100%;
  }
}

.c_snackbar__surface {
  max-width: 672px;
}

.c_snackbar__surface {
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.c_snackbar__surface {
  border-radius: 4px;
}

.c_snackbar--opening,
.c_snackbar--open,
.c_snackbar--closing {
  display: -ms-flexbox;
  display: flex;
}

.c_snackbar--leading {
  -ms-flex-pack: start;
      justify-content: flex-start;
}

.c_snackbar--stacked .c_snackbar__surface {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
}
.c_snackbar--stacked .c_snackbar__actions {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: 8px;
}

.c_snackbar__surface {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
}
.c_snackbar--open .c_snackbar__surface {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  pointer-events: auto;
  -webkit-transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 150ms 0ms cubic-bezier(0, 0, 0.2, 1), transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
}
.c_snackbar--closing .c_snackbar__surface {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1);
  -o-transition: opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 75ms 0ms cubic-bezier(0.4, 0, 1, 1);
}

.c_snackbar__label {
  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.0178571429em;
  text-decoration: inherit;
  text-transform: inherit;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 14px 16px;
}

.c_snackbar__label::before {
  display: inline;
  content: attr(data-csnackbar-label-text);
}

.c_snackbar__actions {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-align: center;
      align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
[dir=rtl] .c_snackbar__actions, .c_snackbar__actions[dir=rtl] {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: 0;
}

.c_snackbar__action:not(:disabled) {
  color: #bb86fc;
}
.c_snackbar__action::before, .c_snackbar__action::after {
  background-color: #bb86fc;
}
.c_snackbar__action:hover::before {
  opacity: 0.08;
}
.c_snackbar__action:not(.mdc-ripple-upgraded)::after {
  -webkit-transition: opacity 150ms linear;
  -o-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}
.c_snackbar__action:not(.mdc-ripple-upgraded):active::after {
  -webkit-transition-duration: 75ms;
       -o-transition-duration: 75ms;
          transition-duration: 75ms;
  opacity: 0.24;
}

.c_snackbar__dismiss {
  color: rgba(255, 255, 255, 0.87);
}
.c_snackbar__dismiss::before, .c_snackbar__dismiss::after {
  background-color: rgba(255, 255, 255, 0.87);
}
.c_snackbar__dismiss:hover::before {
  opacity: 0.08;
}

.c_snackbar__dismiss.c_snackbar__dismiss {
  width: 36px;
  height: 36px;
  padding: 9px;
  font-size: 18px;
}
.c_snackbar__dismiss.c_snackbar__dismiss svg,
.c_snackbar__dismiss.c_snackbar__dismiss img {
  width: 18px;
  height: 18px;
}

.c_snackbar__action + .c_snackbar__dismiss {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: 0;
}
[dir=rtl] .c_snackbar__action + .c_snackbar__dismiss, .c_snackbar__action + .c_snackbar__dismiss[dir=rtl] {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 8px;
}

/* List */
.c_list {
  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.009375em;
  text-decoration: inherit;
  text-transform: inherit;
  /* @alternate */
  line-height: 1.5rem;
  margin: 0;
  padding: 8px 0;
  list-style-type: none;
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}
.c_list:focus {
  outline: none;
}

.c_list-item {
  height: 48px;
}

.c_list-item__secondary-text {
  color: rgba(0, 0, 0, 0.54);
  /* @alternate */
  color: var(--mdc-theme-text-secondary-on-background, rgba(0, 0, 0, 0.54));
}

.c_list-item__graphic {
  background-color: transparent;
}

.c_list-item__graphic {
  color: rgba(0, 0, 0, 0.38);
  /* @alternate */
  color: var(--mdc-theme-text-icon-on-background, rgba(0, 0, 0, 0.38));
}

.c_list-item__meta {
  color: rgba(0, 0, 0, 0.38);
  /* @alternate */
  color: var(--mdc-theme-text-hint-on-background, rgba(0, 0, 0, 0.38));
}

.c_list-group__subheader {
  color: rgba(0, 0, 0, 0.87);
  /* @alternate */
  color: var(--mdc-theme-text-primary-on-background, rgba(0, 0, 0, 0.87));
}

.c_list-item--disabled .c_list-item__text {
  opacity: 0.38;
}

.c_list-item--disabled .c_list-item__text {
  color: #000;
  /* @alternate */
  color: var(--mdc-theme-on-surface, #000);
}

.c_list--dense {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 0.812rem;
}

.c_list-item {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: start;
      justify-content: flex-start;
  padding: 0 16px;
  overflow: hidden;
}
.c_list-item:focus {
  outline: none;
}

.c_list-item--selected,
.c_list-item--activated {
  color: #6200ee;
  /* @alternate */
  color: var(--mdc-theme-primary, #6200ee);
}
.c_list-item--selected .c_list-item__graphic,
.c_list-item--activated .c_list-item__graphic {
  color: #6200ee;
  /* @alternate */
  color: var(--mdc-theme-primary, #6200ee);
}

.c_list-item__graphic {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 32px;
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  fill: currentColor;
}
.c_list-item[dir=rtl] .c_list-item__graphic, [dir=rtl] .c_list-item .c_list-item__graphic {
  /* @noflip */
  margin-left: 32px;
  /* @noflip */
  margin-right: 0;
}

.c_list .c_list-item__graphic {
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.c_list-item__meta {
  /* @noflip */
  margin-left: auto;
  /* @noflip */
  margin-right: 0;
}
.c_list-item__meta:not(.material-icons) {
  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.0333333333em;
  text-decoration: inherit;
  text-transform: inherit;
}
.c_list-item[dir=rtl] .c_list-item__meta, [dir=rtl] .c_list-item .c_list-item__meta {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: auto;
}

.c_list-item__text {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.c_list-item__text[for] {
  pointer-events: none;
}

.c_list-item__primary-text {
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  margin-top: 0;
  /* @alternate */
  line-height: normal;
  margin-bottom: -20px;
  display: block;
}
.c_list-item__primary-text::before {
  display: inline-block;
  width: 0;
  height: 32px;
  content: "";
  vertical-align: 0;
}
.c_list-item__primary-text::after {
  display: inline-block;
  width: 0;
  height: 20px;
  content: "";
  vertical-align: -20px;
}
.c_list--dense .c_list-item__primary-text {
  display: block;
  margin-top: 0;
  /* @alternate */
  line-height: normal;
  margin-bottom: -20px;
}
.c_list--dense .c_list-item__primary-text::before {
  display: inline-block;
  width: 0;
  height: 24px;
  content: "";
  vertical-align: 0;
}
.c_list--dense .c_list-item__primary-text::after {
  display: inline-block;
  width: 0;
  height: 20px;
  content: "";
  vertical-align: -20px;
}

.c_list-item__secondary-text {
  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.0178571429em;
  text-decoration: inherit;
  text-transform: inherit;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
  margin-top: 0;
  /* @alternate */
  line-height: normal;
  display: block;
}
.c_list-item__secondary-text::before {
  display: inline-block;
  width: 0;
  height: 20px;
  content: "";
  vertical-align: 0;
}
.c_list--dense .c_list-item__secondary-text {
  display: block;
  margin-top: 0;
  /* @alternate */
  line-height: normal;
  font-size: inherit;
}
.c_list--dense .c_list-item__secondary-text::before {
  display: inline-block;
  width: 0;
  height: 20px;
  content: "";
  vertical-align: 0;
}

.c_list--dense .c_list-item {
  height: 40px;
}

.c_list--dense .c_list-item__graphic {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 36px;
  width: 20px;
  height: 20px;
}
.c_list-item[dir=rtl] .c_list--dense .c_list-item__graphic, [dir=rtl] .c_list-item .c_list--dense .c_list-item__graphic {
  /* @noflip */
  margin-left: 36px;
  /* @noflip */
  margin-right: 0;
}

.c_list--avatar-list .c_list-item {
  height: 56px;
}

.c_list--avatar-list .c_list-item__graphic {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.c_list-item[dir=rtl] .c_list--avatar-list .c_list-item__graphic, [dir=rtl] .c_list-item .c_list--avatar-list .c_list-item__graphic {
  /* @noflip */
  margin-left: 16px;
  /* @noflip */
  margin-right: 0;
}

.c_list--two-line .c_list-item__text {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.c_list--two-line .c_list-item {
  height: 72px;
}

.c_list--two-line.c_list--dense .c_list-item,
.c_list--avatar-list.c_list--dense .c_list-item {
  height: 60px;
}

.c_list--avatar-list.c_list--dense .c_list-item__graphic {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 20px;
  width: 36px;
  height: 36px;
}
.c_list-item[dir=rtl] .c_list--avatar-list.c_list--dense .c_list-item__graphic, [dir=rtl] .c_list-item .c_list--avatar-list.c_list--dense .c_list-item__graphic {
  /* @noflip */
  margin-left: 20px;
  /* @noflip */
  margin-right: 0;
}

:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item {
  cursor: pointer;
}

a.c_list-item {
  color: inherit;
  text-decoration: none;
}

.c_list-divider {
  height: 0;
  margin: 0;
  border: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}

.c_list-divider {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.c_list-divider--padded {
  margin: 0 16px;
}

.c_list-divider--inset {
  /* @noflip */
  margin-left: 72px;
  /* @noflip */
  margin-right: 0;
  width: calc(100% - 72px);
}
.c_list-group[dir=rtl] .c_list-divider--inset, [dir=rtl] .c_list-group .c_list-divider--inset {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 72px;
}

.c_list-divider--inset.c_list-divider--padded {
  width: calc(100% - 72px - 16px);
}

.c_list-group .c_list {
  padding: 0;
}

.c_list-group__subheader {
  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.009375em;
  text-decoration: inherit;
  text-transform: inherit;
  margin: 0.75rem 16px;
}

:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item::before, :not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}
:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item::before {
  -webkit-transition: opacity 15ms linear, background-color 15ms linear;
  -o-transition: opacity 15ms linear, background-color 15ms linear;
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
}

:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item::before, :not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item::after {
  top: calc(50% - 100%);
  /* @noflip */
  left: calc(50% - 100%);
  width: 200%;
  height: 200%;
}

:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item::before, :not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item::after {
  background-color: #000;
}
:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item:hover::before {
  opacity: 0.04;
}

:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--activated::before {
  opacity: 0.12;
}
:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--activated::before, :not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--activated::after {
  background-color: #6200ee;
}
@supports not (-ms-ime-align: auto) {
  :not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--activated::before, :not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--activated::after {
    /* @alternate */
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}
:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--activated:hover::before {
  opacity: 0.16;
}

:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--activated.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: 0.24;
}
:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--selected::before {
  opacity: 0.08;
}
:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--selected::before, :not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--selected::after {
  background-color: #6200ee;
}
@supports not (-ms-ime-align: auto) {
  :not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--selected::before, :not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--selected::after {
    /* @alternate */
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}
:not(.c_list--non-interactive) > :not(.c_list-item--disabled).c_list-item--selected:hover::before {
  opacity: 0.12;
}

:not(.c_list--non-interactive) > .c_list-item--disabled {
  --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: rgba(0, 0, 0, 0);
}
:not(.c_list--non-interactive) > .c_list-item--disabled::before, :not(.c_list--non-interactive) > .c_list-item--disabled::after {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  content: "";
}
:not(.c_list--non-interactive) > .c_list-item--disabled::before {
  -webkit-transition: opacity 15ms linear, background-color 15ms linear;
  -o-transition: opacity 15ms linear, background-color 15ms linear;
  transition: opacity 15ms linear, background-color 15ms linear;
  z-index: 1;
}

/* Navigation drawer */
.c_navigation-drawer {
  border-color: rgba(0, 0, 0, 0.12);
  background-color: #fff;
  /* @noflip */
  border-radius: 0 0 0 0;
  z-index: 6;
  width: 256px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  /* @noflip */
  border-right-width: 1px;
  /* @noflip */
  border-right-style: solid;
  overflow: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.c_navigation-drawer .c_navigation-drawer__title {
  color: rgba(0, 0, 0, 0.87);
}
.c_navigation-drawer .c_list-group__subheader {
  color: rgba(0, 0, 0, 0.6);
}
.c_navigation-drawer .c_navigation-drawer__subtitle {
  color: rgba(0, 0, 0, 0.6);
}
.c_navigation-drawer .c_list-item__graphic {
  color: rgba(0, 0, 0, 0.6);
}
.c_navigation-drawer .c_list-item {
  color: rgba(0, 0, 0, 0.87);
}
.c_navigation-drawer .c_list-item--activated .c_list-item__graphic {
  color: #6200ee;
}
.c_navigation-drawer .c_list-item--activated {
  color: rgba(98, 0, 238, 0.87);
}
[dir=rtl] .c_navigation-drawer, .c_navigation-drawer[dir=rtl] {
  /* @noflip */
  border-radius: 0 0 0 0;
}
.c_navigation-drawer .c_list-item {
  border-radius: 4px;
}
.c_navigation-drawer.c_navigation-drawer--open:not(.c_navigation-drawer--closing) + .c_navigation-drawer-app-content {
  /* @noflip */
  margin-left: 256px;
  /* @noflip */
  margin-right: 0;
}
[dir=rtl] .c_navigation-drawer.c_navigation-drawer--open:not(.c_navigation-drawer--closing) + .c_navigation-drawer-app-content, .c_navigation-drawer.c_navigation-drawer--open:not(.c_navigation-drawer--closing) + .c_navigation-drawer-app-content[dir=rtl] {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 256px;
}
[dir=rtl] .c_navigation-drawer, .c_navigation-drawer[dir=rtl] {
  /* @noflip */
  border-right-width: 0;
  /* @noflip */
  border-left-width: 1px;
  /* @noflip */
  border-right-style: none;
  /* @noflip */
  border-left-style: solid;
}
.c_navigation-drawer .c_list-item {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 0.875rem;
  line-height: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.0071428571em;
  text-decoration: inherit;
  text-transform: inherit;
  height: calc(48px - 2 * 4px);
  margin: 8px 8px;
  padding: 0 8px;
}
.c_navigation-drawer .c_list-item:nth-child(1) {
  margin-top: 2px;
}
.c_navigation-drawer .c_list-item:nth-last-child(1) {
  margin-bottom: 0;
}
.c_navigation-drawer .c_list-group__subheader {
  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.0178571429em;
  text-decoration: inherit;
  text-transform: inherit;
  display: block;
  margin-top: 0;
  /* @alternate */
  line-height: normal;
  margin: 0;
  padding: 0 16px;
}
.c_navigation-drawer .c_list-group__subheader::before {
  display: inline-block;
  width: 0;
  height: 24px;
  content: "";
  vertical-align: 0;
}
.c_navigation-drawer .c_list-divider {
  margin: 3px 0 4px 0;
}
.c_navigation-drawer .c_list-item__text,
.c_navigation-drawer .c_list-item__graphic {
  pointer-events: none;
}

.c_navigation-drawer--animate {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}
[dir=rtl] .c_navigation-drawer--animate, .c_navigation-drawer--animate[dir=rtl] {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.c_navigation-drawer--opening {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
}
[dir=rtl] .c_navigation-drawer--opening, .c_navigation-drawer--opening[dir=rtl] {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.c_navigation-drawer--closing {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition-duration: 200ms;
       -o-transition-duration: 200ms;
          transition-duration: 200ms;
}
[dir=rtl] .c_navigation-drawer--closing, .c_navigation-drawer--closing[dir=rtl] {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.c_navigation-drawer__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 64px;
  padding: 0 16px 4px;
}

.c_navigation-drawer__title {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 500;
  letter-spacing: 0.0125em;
  text-decoration: inherit;
  text-transform: inherit;
  display: block;
  margin-top: 0;
  /* @alternate */
  line-height: normal;
  margin-bottom: -20px;
}
.c_navigation-drawer__title::before {
  display: inline-block;
  width: 0;
  height: 36px;
  content: "";
  vertical-align: 0;
}
.c_navigation-drawer__title::after {
  display: inline-block;
  width: 0;
  height: 20px;
  content: "";
  vertical-align: -20px;
}

.c_navigation-drawer__subtitle {
  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.0178571429em;
  text-decoration: inherit;
  text-transform: inherit;
  display: block;
  margin-top: 0;
  /* @alternate */
  line-height: normal;
  margin-bottom: 0;
}
.c_navigation-drawer__subtitle::before {
  display: inline-block;
  width: 0;
  height: 20px;
  content: "";
  vertical-align: 0;
}

.c_navigation-drawer__content {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.c_navigation-drawer--dismissible {
  /* @noflip */
  left: 0;
  /* @noflip */
  right: initial;
  display: none;
  position: absolute;
}
[dir=rtl] .c_navigation-drawer--dismissible, .c_navigation-drawer--dismissible[dir=rtl] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 0;
}
.c_navigation-drawer--dismissible.c_navigation-drawer--open {
  display: -ms-flexbox;
  display: flex;
}

.c_navigation-drawer-app-content {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 0;
  position: relative;
}
[dir=rtl] .c_navigation-drawer-app-content, .c_navigation-drawer-app-content[dir=rtl] {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 0;
}

.c_navigation-drawer--modal {
  -webkit-box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  /* @noflip */
  left: 0;
  /* @noflip */
  right: initial;
  display: none;
  position: fixed;
}
.c_navigation-drawer--modal + .c_navigation-drawer-scrim {
  background-color: rgba(0, 0, 0, 0.32);
}
[dir=rtl] .c_navigation-drawer--modal, .c_navigation-drawer--modal[dir=rtl] {
  /* @noflip */
  left: initial;
  /* @noflip */
  right: 0;
}
.c_navigation-drawer--modal.c_navigation-drawer--open {
  display: -ms-flexbox;
  display: flex;
}

.c_navigation-drawer-scrim {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
       -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.c_navigation-drawer--open + .c_navigation-drawer-scrim {
  display: block;
}
.c_navigation-drawer--animate + .c_navigation-drawer-scrim {
  opacity: 0;
}
.c_navigation-drawer--opening + .c_navigation-drawer-scrim {
  -webkit-transition-duration: 250ms;
       -o-transition-duration: 250ms;
          transition-duration: 250ms;
  opacity: 1;
}
.c_navigation-drawer--closing + .c_navigation-drawer-scrim {
  -webkit-transition-duration: 200ms;
       -o-transition-duration: 200ms;
          transition-duration: 200ms;
  opacity: 0;
}

.drawer-frame-root {
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
}

.drawer-app-content {
  -ms-flex: auto;
      flex: auto;
  overflow: auto;
}

.drawer-main-content {
  overflow: auto;
  height: 100%;
  padding: 0 18px;
}

.drawer-top-app-bar {
  position: absolute;
}

.drawer-frame-app-content {
  position: relative;
}

/* Dialog */
.c_dialog,
.c_dialog__scrim {
  position: fixed;
  top: 0;
  left: 0;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
}

.c_dialog {
  display: none;
  z-index: 1000;
}
.c_dialog .c_dialog__surface {
  background-color: #fff;
  /* @alternate */
  background-color: var(--mdc-theme-surface, #fff);
}
.c_dialog .c_dialog__scrim {
  background-color: rgba(0, 0, 0, 0.32);
}
.c_dialog .c_dialog__title {
  color: rgba(0, 0, 0, 0.87);
}
.c_dialog .c_dialog__content {
  color: rgba(0, 0, 0, 0.6);
}
.c_dialog.c_dialog--scrollable .c_dialog__title, .c_dialog.c_dialog--scrollable .c_dialog__actions {
  border-color: rgba(0, 0, 0, 0.12);
}
.c_dialog .c_dialog__surface {
  min-width: 280px;
}
@media (max-width: 592px) {
  .c_dialog .c_dialog__surface {
    max-width: calc(100vw - 32px);
  }
}
@media (min-width: 592px) {
  .c_dialog .c_dialog__surface {
    max-width: 560px;
  }
}
.c_dialog .c_dialog__surface {
  max-height: calc(100% - 32px);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .c_dialog .c_dialog__container {
    /* stylelint-disable */
    /* stylelint-enable*/
  }
}
.c_dialog .c_dialog__surface {
  border-radius: 4px;
}

.c_dialog__scrim {
  opacity: 0;
  z-index: -1;
}

.c_dialog__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  opacity: 0;
  pointer-events: none;
}

.c_dialog__surface {
  -webkit-box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
  pointer-events: auto;
  overflow-y: auto;
}
.c_dialog[dir=rtl] .c_dialog__surface, [dir=rtl] .c_dialog .c_dialog__surface {
  /* @noflip */
  text-align: right;
}

.c_dialog__title {
  display: block;
  margin-top: 0;
  /* @alternate */
  line-height: normal;
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 500;
  letter-spacing: 0.0125em;
  text-decoration: inherit;
  text-transform: inherit;
  display: block;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0 24px 9px;
  border-bottom: 1px solid transparent;
}
.c_dialog__title::before {
  display: inline-block;
  width: 0;
  height: 40px;
  content: "";
  vertical-align: 0;
}
.c_dialog[dir=rtl] .c_dialog__title, [dir=rtl] .c_dialog .c_dialog__title {
  /* @noflip */
  text-align: right;
}

.c_dialog--scrollable .c_dialog__title {
  padding-bottom: 15px;
}

.c_dialog__content {
  font-family: Roboto, sans-serif;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.03125em;
  text-decoration: inherit;
  text-transform: inherit;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 20px 24px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.c_dialog__content > :first-child {
  margin-top: 0;
}
.c_dialog__content > :last-child {
  margin-bottom: 0;
}

.c_dialog__title + .c_dialog__content {
  padding-top: 0;
}

.c_dialog--scrollable .c_dialog__content {
  padding-top: 8px;
  padding-bottom: 8px;
}

.c_dialog__content .mdc-list:first-child:last-child {
  padding: 6px 0 0;
}

.c_dialog--scrollable .c_dialog__content .mdc-list:first-child:last-child {
  padding: 0;
}

.c_dialog__actions {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 52px;
  margin: 0;
  padding: 8px;
  border-top: 1px solid transparent;
}
.c_dialog--stacked .c_dialog__actions {
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: end;
      align-items: flex-end;
}

.c_dialog__button {
  /* @noflip */
  margin-left: 8px;
  /* @noflip */
  margin-right: 0;
  max-width: 100%;
  /* @noflip */
  text-align: right;
}
[dir=rtl] .c_dialog__button, .c_dialog__button[dir=rtl] {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 8px;
}
.c_dialog__button:first-child {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 0;
}
[dir=rtl] .c_dialog__button:first-child, .c_dialog__button:first-child[dir=rtl] {
  /* @noflip */
  margin-left: 0;
  /* @noflip */
  margin-right: 0;
}
.c_dialog[dir=rtl] .c_dialog__button, [dir=rtl] .c_dialog .c_dialog__button {
  /* @noflip */
  text-align: left;
}

.c_dialog--stacked .c_dialog__button:not(:first-child) {
  margin-top: 12px;
}

.c_dialog--open,
.c_dialog--opening,
.c_dialog--closing {
  display: -ms-flexbox;
  display: flex;
}

.c_dialog--opening .c_dialog__scrim {
  -webkit-transition: opacity 150ms linear;
  -o-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
}
.c_dialog--opening .c_dialog__container {
  -webkit-transition: opacity 75ms linear, -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 75ms linear, -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  -o-transition: opacity 75ms linear, transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 75ms linear, transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
  transition: opacity 75ms linear, transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1);
}

.c_dialog--closing .c_dialog__scrim,
.c_dialog--closing .c_dialog__container {
  -webkit-transition: opacity 75ms linear;
  -o-transition: opacity 75ms linear;
  transition: opacity 75ms linear;
}
.c_dialog--closing .c_dialog__container {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.c_dialog--open .c_dialog__scrim {
  opacity: 1;
}
.c_dialog--open .c_dialog__container {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.c_dialog-scroll-lock {
  overflow: hidden;
}

.hero-demo {
  position: relative;
  z-index: 0;
}

.c_dialog__content a:focus {
  outline: 1px solid currentColor;
}
