@keyframes mdc-ripple-fg-radius-in {
  from {
    -webkit-transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
    transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
    animation-timing-function: cubic-bezier(.4, 0, .2, 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-opacity-in {
  from {
    opacity: 0;
    animation-timing-function: linear;
  }

  to {
    opacity: var(--mdc-ripple-fg-opacity, 0);
  }
}

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

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

.mdc-button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .08929em;
  text-transform: uppercase;
  --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: #0000;
  will-change: transform, opacity;
  box-sizing: border-box;
  min-width: 64px;
  height: 36px;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2.25rem;
  line-height: inherit;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  vertical-align: middle;
  border: none;
  border-radius: 4px;
  outline: none;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  text-decoration: none;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

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

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

.mdc-button.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-button.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-button.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-button.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-button.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-button:before, .mdc-button:after {
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

.mdc-button.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

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

.mdc-button:active {
  outline: none;
}

.mdc-button:hover {
  cursor: pointer;
}

.mdc-button:disabled {
  color: #0000005e;
  cursor: default;
  pointer-events: none;
  background-color: #0000;
}

.mdc-button.mdc-button--dense {
  border-radius: 4px;
}

.mdc-button:not(:disabled) {
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee);
  background-color: #0000;
}

.mdc-button:before, .mdc-button:after {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  .mdc-button:before, .mdc-button:after {
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

.mdc-button:hover:before {
  opacity: .04;
}

.mdc-button:not(.mdc-ripple-upgraded):focus:before, .mdc-button.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-button:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-button:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-button.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-button .mdc-button__icon {
  width: 18px;
  height: 18px;
  vertical-align: top;
  margin-left: 0;
  margin-right: 8px;
  font-size: 18px;
  display: inline-block;
}

[dir="rtl"] .mdc-button .mdc-button__icon, .mdc-button .mdc-button__icon[dir="rtl"] {
  margin-left: 8px;
  margin-right: 0;
}

.mdc-button svg.mdc-button__icon {
  fill: currentColor;
}

.mdc-button--raised .mdc-button__icon, button .mdc-button__icon, .btn-primary .mdc-button__icon, .mdc-button--unelevated .mdc-button__icon, .mdc-button--outlined .mdc-button__icon, .btn-secondary .mdc-button__icon {
  margin-left: -4px;
  margin-right: 8px;
}

[dir="rtl"] .mdc-button--raised .mdc-button__icon, [dir="rtl"] button .mdc-button__icon, [dir="rtl"] .btn-primary .mdc-button__icon, .mdc-button--raised .mdc-button__icon[dir="rtl"], button .mdc-button__icon[dir="rtl"], .btn-primary .mdc-button__icon[dir="rtl"], [dir="rtl"] .mdc-button--unelevated .mdc-button__icon, .mdc-button--unelevated .mdc-button__icon[dir="rtl"], [dir="rtl"] .mdc-button--outlined .mdc-button__icon, [dir="rtl"] .btn-secondary .mdc-button__icon, .mdc-button--outlined .mdc-button__icon[dir="rtl"], .btn-secondary .mdc-button__icon[dir="rtl"] {
  margin-left: 8px;
  margin-right: -4px;
}

.mdc-button--raised, button, .btn-primary, .mdc-button--unelevated {
  padding: 0 16px;
}

.mdc-button--raised:disabled, button:disabled, .btn-primary:disabled, .mdc-button--unelevated:disabled {
  color: #0000005e;
  background-color: #0000001f;
}

.mdc-button--raised:not(:disabled), button:not(:disabled), .btn-primary:not(:disabled), .mdc-button--unelevated:not(:disabled) {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  .mdc-button--raised:not(:disabled), button:not(:disabled), .btn-primary:not(:disabled), .mdc-button--unelevated:not(:disabled) {
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

.mdc-button--raised:not(:disabled), button:not(:disabled), .btn-primary:not(:disabled), .mdc-button--unelevated:not(:disabled) {
  color: #fff;
  color: var(--mdc-theme-on-primary, #fff);
}

.mdc-button--raised:before, button:before, .btn-primary:before, .mdc-button--raised:after, button:after, .btn-primary:after, .mdc-button--unelevated:before, .mdc-button--unelevated:after {
  background-color: #fff;
}

@supports not (-ms-ime-align: auto) {
  .mdc-button--raised:before, button:before, .btn-primary:before, .mdc-button--raised:after, button:after, .btn-primary:after, .mdc-button--unelevated:before, .mdc-button--unelevated:after {
    background-color: var(--mdc-theme-on-primary, #fff);
  }
}

.mdc-button--raised:hover:before, button:hover:before, .btn-primary:hover:before, .mdc-button--unelevated:hover:before {
  opacity: .08;
}

.mdc-button--raised:not(.mdc-ripple-upgraded):focus:before, button:not(.mdc-ripple-upgraded):focus:before, .btn-primary:not(.mdc-ripple-upgraded):focus:before, .mdc-button--raised.mdc-ripple-upgraded--background-focused:before, button.mdc-ripple-upgraded--background-focused:before, .mdc-ripple-upgraded--background-focused.btn-primary:before, .mdc-button--unelevated:not(.mdc-ripple-upgraded):focus:before, .mdc-button--unelevated.mdc-ripple-upgraded--background-focused:before {
  opacity: .24;
  transition-duration: 75ms;
}

.mdc-button--raised:not(.mdc-ripple-upgraded):after, button:not(.mdc-ripple-upgraded):after, .btn-primary:not(.mdc-ripple-upgraded):after, .mdc-button--unelevated:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-button--raised:not(.mdc-ripple-upgraded):active:after, button:not(.mdc-ripple-upgraded):active:after, .btn-primary:not(.mdc-ripple-upgraded):active:after, .mdc-button--unelevated:not(.mdc-ripple-upgraded):active:after {
  opacity: .32;
  transition-duration: 75ms;
}

.mdc-button--raised.mdc-ripple-upgraded, button.mdc-ripple-upgraded, .mdc-ripple-upgraded.btn-primary, .mdc-button--unelevated.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .32;
}

.mdc-button--raised, button, .btn-primary {
  transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
}

.mdc-button--raised:hover, button:hover, .btn-primary:hover, .mdc-button--raised:focus, button:focus, .btn-primary:focus {
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
}

.mdc-button--raised:active, button:active, .btn-primary:active {
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
}

.mdc-button--raised:disabled, button:disabled, .btn-primary:disabled {
  box-shadow: 0 0 #0003, 0 0 #00000024, 0 0 #0000001f;
}

.mdc-button--outlined, .btn-secondary {
  border-style: solid;
  border-width: 2px;
  padding: 0 14px;
}

.mdc-button--outlined:disabled, .btn-secondary:disabled {
  border-color: #0000005e;
}

.mdc-button--outlined:not(:disabled), .btn-secondary:not(:disabled) {
  border-color: #6200ee;
  border-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-button--dense {
  height: 32px;
  font-size: .8125rem;
}

.mdc-card {
  background-color: #fff;
  background-color: var(--mdc-theme-surface, #fff);
  box-sizing: border-box;
  border-radius: 4px;
  flex-direction: column;
  display: flex;
  box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
}

.mdc-card--outlined {
  border: 1px solid #e0e0e0;
  box-shadow: 0 0 #0003, 0 0 #00000024, 0 0 #0000001f;
}

.mdc-card__media {
  box-sizing: border-box;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.mdc-card__media:before {
  content: "";
  display: block;
}

.mdc-card__media:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.mdc-card__media:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.mdc-card__media--square:before {
  margin-top: 100%;
}

.mdc-card__media--16-9:before {
  margin-top: 56.25%;
}

.mdc-card__media-content {
  box-sizing: border-box;
  position: absolute;
  inset: 0;
}

.mdc-card__primary-action {
  --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: #0000;
  will-change: transform, opacity;
  box-sizing: border-box;
  color: inherit;
  cursor: pointer;
  outline: none;
  flex-direction: column;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.mdc-card__primary-action:before {
  z-index: 1;
  transition: opacity 15ms linear, background-color 15ms linear;
}

.mdc-card__primary-action.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-card__primary-action.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-card__primary-action.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-card__primary-action.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-card__primary-action.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-card__primary-action:before, .mdc-card__primary-action:after {
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

.mdc-card__primary-action.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-card__primary-action:before, .mdc-card__primary-action:after {
  background-color: #000;
}

.mdc-card__primary-action:hover:before {
  opacity: .04;
}

.mdc-card__primary-action:not(.mdc-ripple-upgraded):focus:before, .mdc-card__primary-action.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-card__primary-action:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-card__primary-action:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-card__primary-action.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-card__primary-action:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.mdc-card__primary-action:last-child {
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
}

.mdc-card__actions {
  box-sizing: border-box;
  min-height: 52px;
  flex-direction: row;
  align-items: center;
  padding: 8px;
  display: flex;
}

.mdc-card__actions--full-bleed {
  padding: 0;
}

.mdc-card__action-buttons, .mdc-card__action-icons {
  box-sizing: border-box;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.mdc-card__action-icons {
  color: #00000061;
  color: var(--mdc-theme-text-icon-on-background, #00000061);
  flex-grow: 1;
  justify-content: flex-end;
}

.mdc-card__action-buttons + .mdc-card__action-icons {
  margin-left: 16px;
  margin-right: 0;
}

[dir="rtl"] .mdc-card__action-buttons + .mdc-card__action-icons, .mdc-card__action-buttons + .mdc-card__action-icons[dir="rtl"] {
  margin-left: 0;
  margin-right: 16px;
}

.mdc-card__action {
  box-sizing: border-box;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.mdc-card__action:focus {
  outline: none;
}

.mdc-card__action--button {
  margin-left: 0;
  margin-right: 8px;
  padding: 0 8px;
}

[dir="rtl"] .mdc-card__action--button, .mdc-card__action--button[dir="rtl"] {
  margin-left: 8px;
  margin-right: 0;
}

.mdc-card__action--button:last-child, [dir="rtl"] .mdc-card__action--button:last-child, .mdc-card__action--button:last-child[dir="rtl"] {
  margin-left: 0;
  margin-right: 0;
}

.mdc-card__actions--full-bleed .mdc-card__action--button {
  width: 100%;
  height: auto;
  max-height: none;
  text-align: left;
  justify-content: space-between;
  margin: 0;
  padding: 8px 16px;
}

[dir="rtl"] .mdc-card__actions--full-bleed .mdc-card__action--button, .mdc-card__actions--full-bleed .mdc-card__action--button[dir="rtl"] {
  text-align: right;
}

.mdc-card__action--icon {
  margin: -6px 0;
  padding: 12px;
}

.mdc-card__action--icon:not(:disabled) {
  color: #00000061;
  color: var(--mdc-theme-text-icon-on-background, #00000061);
}

@keyframes mdc-checkbox-unchecked-checked-checkmark-path {
  0%, 50% {
    stroke-dashoffset: 29.7833px;
  }

  50% {
    animation-timing-function: cubic-bezier(0, 0, .2, 1);
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes mdc-checkbox-unchecked-indeterminate-mixedmark {
  0%, 68.2% {
    transform: scaleX(0);
  }

  68.2% {
    animation-timing-function: cubic-bezier(0, 0, 0, 1);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes mdc-checkbox-checked-unchecked-checkmark-path {
  from {
    opacity: 1;
    stroke-dashoffset: 0;
    animation-timing-function: cubic-bezier(.4, 0, 1, 1);
  }

  to {
    opacity: 0;
    stroke-dashoffset: -29.7833px;
  }
}

@keyframes mdc-checkbox-checked-indeterminate-checkmark {
  from {
    opacity: 1;
    animation-timing-function: cubic-bezier(0, 0, .2, 1);
    transform: rotate(0);
  }

  to {
    opacity: 0;
    transform: rotate(45deg);
  }
}

@keyframes mdc-checkbox-indeterminate-checked-checkmark {
  from {
    opacity: 0;
    animation-timing-function: cubic-bezier(.14, 0, 0, 1);
    transform: rotate(45deg);
  }

  to {
    opacity: 1;
    transform: rotate(360deg);
  }
}

@keyframes mdc-checkbox-checked-indeterminate-mixedmark {
  from {
    -webkit-animation-timing-function: mdc-animation-deceleration-curve-timing-function;
    animation-timing-function: mdc-animation-deceleration-curve-timing-function;
    opacity: 0;
    transform: rotate(-45deg);
  }

  to {
    opacity: 1;
    transform: rotate(0);
  }
}

@keyframes mdc-checkbox-indeterminate-checked-mixedmark {
  from {
    opacity: 1;
    animation-timing-function: cubic-bezier(.14, 0, 0, 1);
    transform: rotate(0);
  }

  to {
    opacity: 0;
    transform: rotate(315deg);
  }
}

@keyframes mdc-checkbox-indeterminate-unchecked-mixedmark {
  0% {
    opacity: 1;
    animation-timing-function: linear;
    transform: scaleX(1);
  }

  32.8%, 100% {
    opacity: 0;
    transform: scaleX(0);
  }
}

.mdc-checkbox {
  box-sizing: content-box;
  width: 18px;
  height: 18px;
  white-space: nowrap;
  cursor: pointer;
  vertical-align: bottom;
  --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: #0000;
  will-change: transform, opacity;
  flex: 0 0 18px;
  padding: 11px;
  line-height: 0;
  display: inline-block;
  position: relative;
}

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

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

.mdc-checkbox.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-checkbox.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-checkbox.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-checkbox.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-checkbox.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-checkbox:before, .mdc-checkbox:after {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-checkbox:before, .mdc-checkbox:after {
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-checkbox:hover:before {
  opacity: .04;
}

.mdc-checkbox:not(.mdc-ripple-upgraded):focus:before, .mdc-checkbox.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-checkbox:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-checkbox:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-checkbox.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-checkbox:before, .mdc-checkbox:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.mdc-checkbox.mdc-ripple-upgraded:before, .mdc-checkbox.mdc-ripple-upgraded:after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-checkbox.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-checkbox__checkmark {
  color: #fff;
}

.mdc-checkbox__mixedmark {
  border-color: #fff;
}

.mdc-checkbox__background:before {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-checkbox__background:before {
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-checkbox__native-control:enabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
  background-color: #0000;
  border-color: #0000008a;
}

.mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background, .mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background {
  border-color: #018786;
  border-color: var(--mdc-theme-secondary, #018786);
  background-color: #018786;
  background-color: var(--mdc-theme-secondary, #018786);
}

@keyframes mdc-checkbox-fade-in-background-0 {
  0% {
    background-color: #0000;
    border-color: #0000008a;
  }

  50% {
    border-color: #018786;
    border-color: var(--mdc-theme-secondary, #018786);
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

@keyframes mdc-checkbox-fade-out-background-0 {
  0%, 80% {
    border-color: #018786;
    border-color: var(--mdc-theme-secondary, #018786);
    background-color: #018786;
    background-color: var(--mdc-theme-secondary, #018786);
  }

  100% {
    background-color: #0000;
    border-color: #0000008a;
  }
}

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
  animation-name: mdc-checkbox-fade-in-background-0;
}

.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__native-control:enabled ~ .mdc-checkbox__background {
  animation-name: mdc-checkbox-fade-out-background-0;
}

.mdc-checkbox__native-control:disabled:not(:checked):not(:indeterminate) ~ .mdc-checkbox__background {
  border-color: #00000042;
}

.mdc-checkbox__native-control:disabled:checked ~ .mdc-checkbox__background, .mdc-checkbox__native-control:disabled:indeterminate ~ .mdc-checkbox__background {
  background-color: #00000042;
  border-color: #0000;
}

@media screen and (-ms-high-contrast: active) {
  .mdc-checkbox__mixedmark {
    margin: 0 1px;
  }
}

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

.mdc-checkbox__background {
  left: 11px;
  right: initial;
  box-sizing: border-box;
  width: 45%;
  height: 45%;
  pointer-events: none;
  will-change: background-color, border-color;
  background-color: #0000;
  border: 2px solid;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  transition: background-color 90ms cubic-bezier(.4, 0, .6, 1), border-color 90ms cubic-bezier(.4, 0, .6, 1);
  display: inline-flex;
  position: absolute;
  top: 11px;
  bottom: 0;
}

.mdc-checkbox[dir="rtl"] .mdc-checkbox__background, [dir="rtl"] .mdc-checkbox .mdc-checkbox__background {
  left: initial;
  right: 11px;
}

.mdc-checkbox__checkmark {
  width: 100%;
  opacity: 0;
  transition: opacity .18s cubic-bezier(.4, 0, .6, 1);
  position: absolute;
  inset: 0;
}

.mdc-checkbox--upgraded .mdc-checkbox__checkmark {
  opacity: 1;
}

.mdc-checkbox__checkmark-path {
  stroke: currentColor;
  stroke-width: 3.12px;
  stroke-dashoffset: 29.7833px;
  stroke-dasharray: 29.7833;
  transition: stroke-dashoffset .18s cubic-bezier(.4, 0, .6, 1);
}

.mdc-checkbox__mixedmark {
  width: 100%;
  height: 0;
  opacity: 0;
  border-style: solid;
  border-width: 1px;
  transition: opacity 90ms cubic-bezier(.4, 0, .6, 1), transform 90ms cubic-bezier(.4, 0, .6, 1), -webkit-transform 90ms cubic-bezier(.4, 0, .6, 1);
  transform: scaleX(0)rotate(0);
}

.mdc-checkbox--upgraded .mdc-checkbox__background, .mdc-checkbox--upgraded .mdc-checkbox__checkmark, .mdc-checkbox--upgraded .mdc-checkbox__checkmark-path, .mdc-checkbox--upgraded .mdc-checkbox__mixedmark {
  transition: none !important;
}

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__background, .mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__background, .mdc-checkbox--anim-checked-unchecked .mdc-checkbox__background, .mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__background {
  animation-duration: .18s;
  animation-timing-function: linear;
}

.mdc-checkbox--anim-unchecked-checked .mdc-checkbox__checkmark-path {
  transition: none;
  animation: .18s linear mdc-checkbox-unchecked-checked-checkmark-path;
}

.mdc-checkbox--anim-unchecked-indeterminate .mdc-checkbox__mixedmark {
  transition: none;
  animation: 90ms linear mdc-checkbox-unchecked-indeterminate-mixedmark;
}

.mdc-checkbox--anim-checked-unchecked .mdc-checkbox__checkmark-path {
  transition: none;
  animation: 90ms linear mdc-checkbox-checked-unchecked-checkmark-path;
}

.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__checkmark {
  transition: none;
  animation: 90ms linear mdc-checkbox-checked-indeterminate-checkmark;
}

.mdc-checkbox--anim-checked-indeterminate .mdc-checkbox__mixedmark {
  transition: none;
  animation: 90ms linear mdc-checkbox-checked-indeterminate-mixedmark;
}

.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__checkmark {
  transition: none;
  animation: .5s linear mdc-checkbox-indeterminate-checked-checkmark;
}

.mdc-checkbox--anim-indeterminate-checked .mdc-checkbox__mixedmark {
  transition: none;
  animation: .5s linear mdc-checkbox-indeterminate-checked-mixedmark;
}

.mdc-checkbox--anim-indeterminate-unchecked .mdc-checkbox__mixedmark {
  transition: none;
  animation: .3s linear mdc-checkbox-indeterminate-unchecked-mixedmark;
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background, .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background {
  transition: border-color 90ms cubic-bezier(0, 0, .2, 1), background-color 90ms cubic-bezier(0, 0, .2, 1);
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path, .mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark-path {
  stroke-dashoffset: 0;
}

.mdc-checkbox__background:before {
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  content: "";
  will-change: opacity, transform;
  border-radius: 50%;
  transition: opacity 90ms cubic-bezier(.4, 0, .6, 1), transform 90ms cubic-bezier(.4, 0, .6, 1), -webkit-transform 90ms cubic-bezier(.4, 0, .6, 1);
  position: absolute;
  inset: 0;
  transform: scale(0);
}

.mdc-ripple-upgraded--background-focused .mdc-checkbox__background:before {
  content: none;
}

.mdc-checkbox__native-control:focus ~ .mdc-checkbox__background:before {
  opacity: .12;
  transition: opacity 80ms cubic-bezier(0, 0, .2, 1), transform 80ms cubic-bezier(0, 0, .2, 1), -webkit-transform 80ms cubic-bezier(0, 0, .2, 1);
  transform: scale(2.75);
}

.mdc-checkbox__native-control {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: inherit;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.mdc-checkbox__native-control:disabled {
  cursor: default;
  pointer-events: none;
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
  opacity: 1;
  transition: opacity .18s cubic-bezier(0, 0, .2, 1), transform .18s cubic-bezier(0, 0, .2, 1), -webkit-transform .18s cubic-bezier(0, 0, .2, 1);
}

.mdc-checkbox__native-control:checked ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
  transform: scaleX(1)rotate(-45deg);
}

.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__checkmark {
  opacity: 0;
  transition: opacity 90ms cubic-bezier(.4, 0, .6, 1), transform 90ms cubic-bezier(.4, 0, .6, 1), -webkit-transform 90ms cubic-bezier(.4, 0, .6, 1);
  transform: rotate(45deg);
}

.mdc-checkbox__native-control:indeterminate ~ .mdc-checkbox__background .mdc-checkbox__mixedmark {
  opacity: 1;
  transform: scaleX(1)rotate(0);
}

.mdc-chip {
  --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: #0000;
  will-change: transform, opacity;
  color: #000000de;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01786em;
  text-decoration: inherit;
  text-transform: inherit;
  height: 32px;
  box-sizing: border-box;
  cursor: pointer;
  background-color: #e0e0e0;
  border-radius: 16px;
  outline: none;
  align-items: center;
  padding: 7px 12px;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.25rem;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

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

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

.mdc-chip.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-chip.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-chip.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-chip.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-chip.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-chip:before, .mdc-chip:after {
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

.mdc-chip.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-chip:before, .mdc-chip:after {
  background-color: #000000de;
}

.mdc-chip:hover:before {
  opacity: .04;
}

.mdc-chip:not(.mdc-ripple-upgraded):focus:before, .mdc-chip.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-chip:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-chip:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-chip.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-chip:hover {
  color: #000000de;
}

.mdc-chip.mdc-chip--selected .mdc-chip__checkmark, .mdc-chip .mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden) {
  margin: -4px 4px -4px -4px;
}

.mdc-chip:hover {
  color: #000;
  color: var(--mdc-theme-on-surface, #000);
}

.mdc-chip__icon--leading, .mdc-chip__icon--trailing {
  color: #0000008a;
}

.mdc-chip__icon--trailing:hover {
  color: #0000009e;
}

.mdc-chip__icon--trailing:focus {
  color: #000000de;
}

.mdc-chip__icon.mdc-chip__icon--leading:not(.mdc-chip__icon--leading-hidden) {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.mdc-chip__icon.mdc-chip__icon--trailing {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

.mdc-chip__icon--trailing {
  margin: 0 -4px 0 4px;
}

.mdc-chip--exit {
  opacity: 0;
  transition: opacity 75ms cubic-bezier(.4, 0, .2, 1), width .15s cubic-bezier(0, 0, .2, 1), padding .1s linear, margin .1s linear;
}

.mdc-chip__text {
  white-space: nowrap;
}

.mdc-chip__icon {
  vertical-align: middle;
  border-radius: 50%;
  outline: none;
}

.mdc-chip__checkmark {
  height: 20px;
}

.mdc-chip__checkmark-path {
  stroke-width: 2px;
  stroke-dashoffset: 29.7833px;
  stroke-dasharray: 29.7833;
  transition: stroke-dashoffset .15s cubic-bezier(.4, 0, .6, 1) 50ms;
}

.mdc-chip--selected .mdc-chip__checkmark-path {
  stroke-dashoffset: 0;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:before {
  opacity: .08;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:before, .mdc-chip-set--choice .mdc-chip.mdc-chip--selected:after {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  .mdc-chip-set--choice .mdc-chip.mdc-chip--selected:before, .mdc-chip-set--choice .mdc-chip.mdc-chip--selected:after {
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:hover:before {
  opacity: .12;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):focus:before, .mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-upgraded--background-focused:before {
  opacity: .2;
  transition-duration: 75ms;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:not(.mdc-ripple-upgraded):active:after {
  opacity: .24;
  transition-duration: 75ms;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .24;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected {
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee);
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected .mdc-chip__icon--leading {
  color: #6200ee8a;
}

.mdc-chip-set--choice .mdc-chip.mdc-chip--selected:hover {
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee);
}

.mdc-chip-set--choice .mdc-chip .mdc-chip__checkmark-path {
  stroke: #6200ee;
  stroke: var(--mdc-theme-primary, #6200ee);
}

.mdc-chip-set--choice .mdc-chip--selected {
  background-color: #fff;
  background-color: var(--mdc-theme-surface, #fff);
}

.mdc-chip__checkmark-svg {
  width: 0;
  height: 20px;
  transition: width .15s cubic-bezier(.4, 0, .2, 1);
}

.mdc-chip--selected .mdc-chip__checkmark-svg {
  width: 20px;
}

.mdc-chip-set--filter .mdc-chip__icon--leading {
  opacity: 1;
  transition: opacity 75ms linear -50ms;
}

.mdc-chip-set--filter .mdc-chip__icon--leading + .mdc-chip__checkmark {
  opacity: 0;
  transition: opacity 75ms linear 80ms;
}

.mdc-chip-set--filter .mdc-chip__icon--leading + .mdc-chip__checkmark .mdc-chip__checkmark-svg {
  transition: width;
}

.mdc-chip-set--filter .mdc-chip--selected .mdc-chip__icon--leading {
  opacity: 0;
}

.mdc-chip-set--filter .mdc-chip--selected .mdc-chip__icon--leading + .mdc-chip__checkmark {
  width: 0;
  opacity: 1;
}

.mdc-chip-set--filter .mdc-chip__icon--leading-hidden.mdc-chip__icon--leading {
  width: 0;
  opacity: 0;
}

.mdc-chip-set--filter .mdc-chip__icon--leading-hidden.mdc-chip__icon--leading + .mdc-chip__checkmark {
  width: 20px;
}

@keyframes mdc-chip-entry {
  from {
    opacity: .4;
    transform: scale(.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.mdc-chip-set {
  box-sizing: border-box;
  flex-wrap: wrap;
  padding: 4px;
  display: flex;
}

.mdc-chip-set .mdc-chip {
  margin: 4px;
}

.mdc-chip-set--input .mdc-chip {
  animation: .1s cubic-bezier(0, 0, .2, 1) mdc-chip-entry;
}

.mdc-dialog, .mdc-dialog__scrim {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
}

.mdc-dialog {
  z-index: 7;
  display: none;
}

.mdc-dialog .mdc-dialog__surface {
  background-color: #fff;
  background-color: var(--mdc-theme-surface, #fff);
}

.mdc-dialog .mdc-dialog__scrim {
  background-color: #00000052;
}

.mdc-dialog .mdc-dialog__title {
  color: #000000de;
}

.mdc-dialog .mdc-dialog__content {
  color: #0009;
}

.mdc-dialog.mdc-dialog--scrollable .mdc-dialog__title, .mdc-dialog.mdc-dialog--scrollable .mdc-dialog__actions {
  border-color: #0000001f;
}

.mdc-dialog .mdc-dialog__surface {
  min-width: 280px;
}

@media (max-width: 592px) {
  .mdc-dialog .mdc-dialog__container {
    max-width: calc(100vw - 32px);
  }
}

@media (min-width: 592px) {
  .mdc-dialog .mdc-dialog__container {
    max-width: 560px;
  }
}

.mdc-dialog .mdc-dialog__surface {
  max-height: calc(100vh - 32px);
  border-radius: 4px;
}

.mdc-dialog__scrim {
  opacity: 0;
  z-index: -1;
}

.mdc-dialog__container {
  box-sizing: border-box;
  opacity: 0;
  flex-direction: row;
  display: flex;
  transform: scale(.8);
}

.mdc-dialog__surface {
  box-sizing: border-box;
  max-width: 100%;
  max-height: 100%;
  flex-direction: column;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  box-shadow: 0 11px 15px -7px #0003, 0 24px 38px 3px #00000024, 0 9px 46px 8px #0000001f;
}

.mdc-dialog[dir="rtl"] .mdc-dialog__surface, [dir="rtl"] .mdc-dialog .mdc-dialog__surface {
  text-align: right;
}

.mdc-dialog__title {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .0125em;
  text-decoration: inherit;
  text-transform: inherit;
  box-sizing: border-box;
  border-bottom: 1px solid #0000;
  flex-shrink: 0;
  margin: 0;
  padding: 0 24px 9px;
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  display: block;
  position: relative;
}

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

.mdc-dialog[dir="rtl"] .mdc-dialog__title, [dir="rtl"] .mdc-dialog .mdc-dialog__title {
  text-align: right;
}

.mdc-dialog--scrollable .mdc-dialog__title {
  padding-bottom: 15px;
}

.mdc-dialog__content {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .03125em;
  text-decoration: inherit;
  text-transform: inherit;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
  margin: 0;
  padding: 20px 24px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  overflow: auto;
}

.mdc-dialog__content > :first-child {
  margin-top: 0;
}

.mdc-dialog__content > :last-child {
  margin-bottom: 0;
}

.mdc-dialog__title + .mdc-dialog__content {
  padding-top: 0;
}

.mdc-dialog--scrollable .mdc-dialog__content {
  padding-top: 8px;
  padding-bottom: 8px;
}

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

.mdc-dialog--scrollable .mdc-dialog__content .mdc-list:first-child:last-child {
  padding: 0;
}

.mdc-dialog__actions {
  box-sizing: border-box;
  min-height: 52px;
  border-top: 1px solid #0000;
  flex-wrap: wrap;
  flex-shrink: 0;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 8px;
  display: flex;
  position: relative;
}

.mdc-dialog--stacked .mdc-dialog__actions {
  flex-direction: column;
  align-items: flex-end;
}

.mdc-dialog__button {
  max-width: 100%;
  text-align: right;
  margin-left: 8px;
  margin-right: 0;
}

[dir="rtl"] .mdc-dialog__button, .mdc-dialog__button[dir="rtl"] {
  margin-left: 0;
  margin-right: 8px;
}

.mdc-dialog__button:first-child, [dir="rtl"] .mdc-dialog__button:first-child, .mdc-dialog__button:first-child[dir="rtl"] {
  margin-left: 0;
  margin-right: 0;
}

.mdc-dialog[dir="rtl"] .mdc-dialog__button, [dir="rtl"] .mdc-dialog .mdc-dialog__button {
  text-align: left;
}

.mdc-dialog--stacked .mdc-dialog__button:not(:first-child) {
  margin-top: 12px;
}

.mdc-dialog--open, .mdc-dialog--opening, .mdc-dialog--closing {
  display: flex;
}

.mdc-dialog--opening .mdc-dialog__scrim {
  transition: opacity .15s linear;
}

.mdc-dialog--opening .mdc-dialog__container {
  transition: opacity 75ms linear, transform .15s cubic-bezier(0, 0, .2, 1), -webkit-transform .15s cubic-bezier(0, 0, .2, 1);
}

.mdc-dialog--closing .mdc-dialog__scrim, .mdc-dialog--closing .mdc-dialog__container {
  transition: opacity 75ms linear;
}

.mdc-dialog--closing .mdc-dialog__container {
  transform: scale(1);
}

.mdc-dialog--open .mdc-dialog__scrim {
  opacity: 1;
}

.mdc-dialog--open .mdc-dialog__container {
  opacity: 1;
  transform: scale(1);
}

.mdc-dialog-scroll-lock {
  overflow: hidden;
}

.mdc-drawer {
  z-index: 6;
  width: 256px;
  box-sizing: border-box;
  height: 100%;
  background-color: #fff;
  border-color: #0000001f;
  border-right-style: solid;
  border-right-width: 1px;
  border-radius: 0;
  flex-direction: column;
  flex-shrink: 0;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  display: flex;
  overflow: hidden;
}

.mdc-drawer .mdc-drawer__title {
  color: #000000de;
}

.mdc-drawer .mdc-list-group__subheader, .mdc-drawer .mdc-drawer__subtitle, .mdc-drawer .mdc-list-item__graphic {
  color: #0009;
}

.mdc-drawer .mdc-list-item {
  color: #000000de;
}

.mdc-drawer .mdc-list-item--activated .mdc-list-item__graphic {
  color: #6200ee;
}

.mdc-drawer .mdc-list-item--activated {
  color: #6200eede;
}

[dir="rtl"] .mdc-drawer, .mdc-drawer[dir="rtl"] {
  border-radius: large 0 0 large;
}

.mdc-drawer .mdc-list-item, [dir="rtl"] .mdc-drawer .mdc-list-item, .mdc-drawer .mdc-list-item[dir="rtl"] {
  border-radius: 4px;
}

.mdc-drawer.mdc-drawer--open:not(.mdc-drawer--closing) + .mdc-drawer-app-content {
  margin-left: 256px;
  margin-right: 0;
}

[dir="rtl"] .mdc-drawer.mdc-drawer--open:not(.mdc-drawer--closing) + .mdc-drawer-app-content, .mdc-drawer.mdc-drawer--open:not(.mdc-drawer--closing) + .mdc-drawer-app-content[dir="rtl"] {
  margin-left: 0;
  margin-right: 256px;
}

[dir="rtl"] .mdc-drawer, .mdc-drawer[dir="rtl"] {
  border-left-style: solid;
  border-left-width: 1px;
  border-right-style: none;
  border-right-width: 0;
}

.mdc-drawer .mdc-list-item {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00714em;
  text-decoration: inherit;
  text-transform: inherit;
  height: 40px;
  margin: 8px;
  padding: 0 8px;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.mdc-drawer .mdc-list-item:nth-child(1) {
  margin-top: 2px;
}

.mdc-drawer .mdc-list-item:nth-last-child(1) {
  margin-bottom: 0;
}

.mdc-drawer .mdc-list-group__subheader {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01786em;
  text-decoration: inherit;
  text-transform: inherit;
  margin: 0;
  padding: 0 16px;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: normal;
  display: block;
}

.mdc-drawer .mdc-list-group__subheader:before {
  width: 0;
  height: 24px;
  content: "";
  vertical-align: 0;
  display: inline-block;
}

.mdc-drawer .mdc-list-divider {
  margin: 3px 0 4px;
}

.mdc-drawer .mdc-list-item__text, .mdc-drawer .mdc-list-item__graphic {
  pointer-events: none;
}

.mdc-drawer--open {
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), -webkit-transform .25s cubic-bezier(.4, 0, .2, 1);
}

.mdc-drawer--animate {
  transform: translateX(-100%);
}

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

.mdc-drawer--opening {
  transition-duration: .25s;
  transform: translateX(0);
}

[dir="rtl"] .mdc-drawer--opening, .mdc-drawer--opening[dir="rtl"] {
  transform: translateX(0);
}

.mdc-drawer--closing {
  transition-duration: .2s;
  transform: translateX(-100%);
}

[dir="rtl"] .mdc-drawer--closing, .mdc-drawer--closing[dir="rtl"] {
  transform: translateX(100%);
}

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

.mdc-drawer__title {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .0125em;
  text-decoration: inherit;
  text-transform: inherit;
  margin-top: 0;
  margin-bottom: -20px;
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: normal;
  display: block;
}

.mdc-drawer__title:before {
  width: 0;
  height: 36px;
  content: "";
  vertical-align: 0;
  display: inline-block;
}

.mdc-drawer__title:after {
  width: 0;
  height: 20px;
  content: "";
  vertical-align: -20px;
  display: inline-block;
}

.mdc-drawer__subtitle {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01786em;
  text-decoration: inherit;
  text-transform: inherit;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: normal;
  display: block;
}

.mdc-drawer__subtitle:before {
  width: 0;
  height: 20px;
  content: "";
  vertical-align: 0;
  display: inline-block;
}

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

.mdc-drawer--dismissible {
  left: 0;
  right: initial;
  display: none;
  position: absolute;
  top: 0;
}

[dir="rtl"] .mdc-drawer--dismissible, .mdc-drawer--dismissible[dir="rtl"] {
  left: initial;
  right: 0;
}

.mdc-drawer--dismissible.mdc-drawer--open {
  display: flex;
}

.mdc-drawer-app-content {
  margin-left: 0;
  margin-right: 0;
  position: relative;
}

[dir="rtl"] .mdc-drawer-app-content, .mdc-drawer-app-content[dir="rtl"], .mdc-drawer--closing + .mdc-drawer-app-content, [dir="rtl"] .mdc-drawer--closing + .mdc-drawer-app-content, .mdc-drawer--closing + .mdc-drawer-app-content[dir="rtl"] {
  margin-left: 0;
  margin-right: 0;
}

.mdc-drawer--modal {
  left: 0;
  right: initial;
  display: none;
  position: fixed;
  box-shadow: 0 8px 10px -5px #0003, 0 16px 24px 2px #00000024, 0 6px 30px 5px #0000001f;
}

.mdc-drawer--modal + .mdc-drawer-scrim {
  background-color: #00000052;
}

[dir="rtl"] .mdc-drawer--modal, .mdc-drawer--modal[dir="rtl"] {
  left: initial;
  right: 0;
}

.mdc-drawer--modal.mdc-drawer--open {
  display: flex;
}

.mdc-drawer-scrim {
  width: 100%;
  height: 100%;
  z-index: 5;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(.4, 0, .2, 1);
  display: none;
  position: fixed;
  top: 0;
  left: 0;
}

.mdc-drawer--open + .mdc-drawer-scrim {
  display: block;
}

.mdc-drawer--animate + .mdc-drawer-scrim {
  opacity: 0;
}

.mdc-drawer--opening + .mdc-drawer-scrim {
  opacity: 1;
  transition-duration: .25s;
}

.mdc-drawer--closing + .mdc-drawer-scrim {
  opacity: 0;
  transition-duration: .2s;
}

.mdc-elevation--z0 {
  box-shadow: 0 0 #0003, 0 0 #00000024, 0 0 #0000001f;
}

.mdc-elevation--z1 {
  box-shadow: 0 2px 1px -1px #0003, 0 1px 1px #00000024, 0 1px 3px #0000001f;
}

.mdc-elevation--z2 {
  box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
}

.mdc-elevation--z3 {
  box-shadow: 0 3px 3px -2px #0003, 0 3px 4px #00000024, 0 1px 8px #0000001f;
}

.mdc-elevation--z4 {
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
}

.mdc-elevation--z5 {
  box-shadow: 0 3px 5px -1px #0003, 0 5px 8px #00000024, 0 1px 14px #0000001f;
}

.mdc-elevation--z6 {
  box-shadow: 0 3px 5px -1px #0003, 0 6px 10px #00000024, 0 1px 18px #0000001f;
}

.mdc-elevation--z7 {
  box-shadow: 0 4px 5px -2px #0003, 0 7px 10px 1px #00000024, 0 2px 16px 1px #0000001f;
}

.mdc-elevation--z8 {
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
}

.mdc-elevation--z9 {
  box-shadow: 0 5px 6px -3px #0003, 0 9px 12px 1px #00000024, 0 3px 16px 2px #0000001f;
}

.mdc-elevation--z10 {
  box-shadow: 0 6px 6px -3px #0003, 0 10px 14px 1px #00000024, 0 4px 18px 3px #0000001f;
}

.mdc-elevation--z11 {
  box-shadow: 0 6px 7px -4px #0003, 0 11px 15px 1px #00000024, 0 4px 20px 3px #0000001f;
}

.mdc-elevation--z12 {
  box-shadow: 0 7px 8px -4px #0003, 0 12px 17px 2px #00000024, 0 5px 22px 4px #0000001f;
}

.mdc-elevation--z13 {
  box-shadow: 0 7px 8px -4px #0003, 0 13px 19px 2px #00000024, 0 5px 24px 4px #0000001f;
}

.mdc-elevation--z14 {
  box-shadow: 0 7px 9px -4px #0003, 0 14px 21px 2px #00000024, 0 5px 26px 4px #0000001f;
}

.mdc-elevation--z15 {
  box-shadow: 0 8px 9px -5px #0003, 0 15px 22px 2px #00000024, 0 6px 28px 5px #0000001f;
}

.mdc-elevation--z16 {
  box-shadow: 0 8px 10px -5px #0003, 0 16px 24px 2px #00000024, 0 6px 30px 5px #0000001f;
}

.mdc-elevation--z17 {
  box-shadow: 0 8px 11px -5px #0003, 0 17px 26px 2px #00000024, 0 6px 32px 5px #0000001f;
}

.mdc-elevation--z18 {
  box-shadow: 0 9px 11px -5px #0003, 0 18px 28px 2px #00000024, 0 7px 34px 6px #0000001f;
}

.mdc-elevation--z19 {
  box-shadow: 0 9px 12px -6px #0003, 0 19px 29px 2px #00000024, 0 7px 36px 6px #0000001f;
}

.mdc-elevation--z20 {
  box-shadow: 0 10px 13px -6px #0003, 0 20px 31px 3px #00000024, 0 8px 38px 7px #0000001f;
}

.mdc-elevation--z21 {
  box-shadow: 0 10px 13px -6px #0003, 0 21px 33px 3px #00000024, 0 8px 40px 7px #0000001f;
}

.mdc-elevation--z22 {
  box-shadow: 0 10px 14px -6px #0003, 0 22px 35px 3px #00000024, 0 8px 42px 7px #0000001f;
}

.mdc-elevation--z23 {
  box-shadow: 0 11px 14px -7px #0003, 0 23px 36px 3px #00000024, 0 9px 44px 8px #0000001f;
}

.mdc-elevation--z24 {
  box-shadow: 0 11px 15px -7px #0003, 0 24px 38px 3px #00000024, 0 9px 46px 8px #0000001f;
}

.mdc-elevation-transition {
  will-change: box-shadow;
  transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);
}

.mdc-fab {
  --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: #0000;
  will-change: transform, opacity;
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  fill: currentColor;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: #fff;
  color: var(--mdc-theme-on-secondary, #fff);
  background-color: #018786;
  border: none;
  border-radius: 28px;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1), opacity 15ms linear 30ms, transform .27s cubic-bezier(0, 0, .2, 1), -webkit-transform .27s cubic-bezier(0, 0, .2, 1);
  display: inline-flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 5px -1px #0003, 0 6px 10px #00000024, 0 1px 18px #0000001f;
}

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

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

.mdc-fab.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-fab.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-fab.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-fab.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-fab.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-fab:before, .mdc-fab:after {
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

.mdc-fab.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-fab.mdc-fab--mini {
  border-radius: 20px;
}

.mdc-fab.mdc-fab--extended {
  border-radius: 24px;
}

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

.mdc-fab:hover, .mdc-fab:focus {
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
}

.mdc-fab:active {
  box-shadow: 0 7px 8px -4px #0003, 0 12px 17px 2px #00000024, 0 5px 22px 4px #0000001f;
}

.mdc-fab:active, .mdc-fab:focus {
  outline: none;
}

.mdc-fab:hover {
  cursor: pointer;
}

.mdc-fab > svg {
  width: 100%;
}

@supports not (-ms-ime-align: auto) {
  .mdc-fab {
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-fab .mdc-fab__icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.mdc-fab:before, .mdc-fab:after {
  background-color: #fff;
}

@supports not (-ms-ime-align: auto) {
  .mdc-fab:before, .mdc-fab:after {
    background-color: var(--mdc-theme-on-secondary, #fff);
  }
}

.mdc-fab:hover:before {
  opacity: .08;
}

.mdc-fab:not(.mdc-ripple-upgraded):focus:before, .mdc-fab.mdc-ripple-upgraded--background-focused:before {
  opacity: .24;
  transition-duration: 75ms;
}

.mdc-fab:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-fab:not(.mdc-ripple-upgraded):active:after {
  opacity: .32;
  transition-duration: 75ms;
}

.mdc-fab.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .32;
}

.mdc-fab--mini {
  width: 40px;
  height: 40px;
}

.mdc-fab--extended {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .08929em;
  text-transform: uppercase;
  width: auto;
  max-width: 100%;
  height: 48px;
  padding: 0 20px;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2.25rem;
  text-decoration: none;
}

.mdc-fab--extended .mdc-fab__icon {
  margin-left: -8px;
  margin-right: 12px;
}

[dir="rtl"] .mdc-fab--extended .mdc-fab__icon, .mdc-fab--extended .mdc-fab__icon[dir="rtl"], .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon {
  margin-left: 12px;
  margin-right: -8px;
}

[dir="rtl"] .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon, .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon[dir="rtl"] {
  margin-left: -8px;
  margin-right: 12px;
}

.mdc-fab__label {
  text-overflow: ellipsis;
  white-space: nowrap;
  justify-content: flex-start;
  overflow: hidden;
}

.mdc-fab__icon {
  fill: currentColor;
  will-change: transform;
  transition: transform .18s cubic-bezier(0, 0, .2, 1) 90ms, -webkit-transform .18s cubic-bezier(0, 0, .2, 1) 90ms;
}

.mdc-fab .mdc-fab__icon {
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.mdc-fab--exited {
  opacity: 0;
  transition: opacity 15ms linear .15s, transform .18s cubic-bezier(.4, 0, 1, 1), -webkit-transform .18s cubic-bezier(.4, 0, 1, 1);
  transform: scale(0);
}

.mdc-fab--exited .mdc-fab__icon {
  transition: transform .135s cubic-bezier(.4, 0, 1, 1), -webkit-transform .135s cubic-bezier(.4, 0, 1, 1);
  transform: scale(0);
}

.mdc-floating-label {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00937em;
  text-decoration: inherit;
  text-transform: inherit;
  transform-origin: 0 0;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: text;
  will-change: transform;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.15rem;
  transition: transform .15s cubic-bezier(.4, 0, .2, 1), color .15s cubic-bezier(.4, 0, .2, 1), -webkit-transform .15s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  bottom: 8px;
  left: 0;
  overflow: hidden;
}

[dir="rtl"] .mdc-floating-label, .mdc-floating-label[dir="rtl"] {
  transform-origin: 100% 0;
  text-align: right;
  left: auto;
  right: 0;
}

.mdc-floating-label--float-above {
  cursor: auto;
  transform: translateY(-100%)scale(.75);
}

.mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-standard;
}

@keyframes mdc-floating-label-shake-float-above-standard {
  0% {
    transform: translateX(0)translateY(-100%)scale(.75);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(4%)translateY(-100%)scale(.75);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(-4%)translateY(-100%)scale(.75);
  }

  100% {
    transform: translateX(0)translateY(-100%)scale(.75);
  }
}

.mdc-form-field {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01786em;
  text-decoration: inherit;
  text-transform: inherit;
  color: #000000de;
  color: var(--mdc-theme-text-primary-on-background, #000000de);
  vertical-align: middle;
  align-items: center;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.25rem;
  display: inline-flex;
}

.mdc-form-field > label {
  order: 0;
  margin-right: auto;
  padding-left: 4px;
}

[dir="rtl"] .mdc-form-field > label, .mdc-form-field[dir="rtl"] > label {
  margin-left: auto;
  padding-right: 4px;
}

.mdc-form-field--align-end > label {
  order: -1;
  margin-left: auto;
  padding-right: 4px;
}

[dir="rtl"] .mdc-form-field--align-end > label, .mdc-form-field--align-end[dir="rtl"] > label {
  margin-right: auto;
  padding-left: 4px;
}

.mdc-grid-tile__primary {
  padding-bottom: 100%;
}

.mdc-grid-tile {
  margin: 2px 0;
  padding: 0 2px;
}

.mdc-grid-tile__secondary {
  width: calc(100% - 4px);
  left: 2px;
}

.mdc-grid-list__tiles {
  flex-flow: wrap;
  margin: 2px auto;
  padding: 0;
  display: flex;
}

.mdc-grid-list--tile-gutter-1 .mdc-grid-tile {
  margin: .5px 0;
  padding: 0 .5px;
}

.mdc-grid-list--tile-gutter-1 .mdc-grid-tile__secondary {
  width: calc(100% - 1px);
  left: .5px;
}

.mdc-grid-list--tile-gutter-1 .mdc-grid-list__tiles {
  margin: .5px auto;
}

.mdc-grid-list--tile-aspect-16x9 .mdc-grid-tile__primary {
  padding-bottom: 56.2499%;
}

.mdc-grid-list--tile-aspect-3x2 .mdc-grid-tile__primary {
  padding-bottom: 66.6667%;
}

.mdc-grid-list--tile-aspect-2x3 .mdc-grid-tile__primary {
  padding-bottom: 149.999%;
}

.mdc-grid-list--tile-aspect-4x3 .mdc-grid-tile__primary {
  padding-bottom: 75.0002%;
}

.mdc-grid-list--tile-aspect-3x4 .mdc-grid-tile__primary {
  padding-bottom: 133.333%;
}

.mdc-grid-tile {
  width: 200px;
  width: var(--mdc-grid-list-tile-width, 200px);
  display: block;
  position: relative;
}

.mdc-grid-tile__primary {
  background-color: #fff;
  background-color: var(--mdc-theme-background, #fff);
  color: #000000de;
  color: var(--mdc-theme-text-primary-on-background, #000000de);
  height: 0;
  position: relative;
}

.mdc-grid-tile__primary-content {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.mdc-grid-tile__secondary {
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee);
  color: #fff;
  color: var(--mdc-theme-on-primary, #fff);
  box-sizing: border-box;
  height: 48px;
  padding: 16px;
  position: absolute;
  bottom: 0;
}

.mdc-grid-tile__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
  display: block;
  overflow: hidden;
}

.mdc-grid-tile__support-text {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00937em;
  text-decoration: inherit;
  text-transform: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 4px 0 0;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  display: block;
  overflow: hidden;
}

.mdc-grid-tile__icon {
  font-size: 0;
  position: absolute;
  top: calc(50% - 12px);
}

.mdc-grid-list--twoline-caption .mdc-grid-tile__secondary {
  height: 68px;
}

.mdc-grid-list--header-caption .mdc-grid-tile__secondary {
  top: 0;
  bottom: auto;
}

.mdc-grid-list--with-icon-align-start .mdc-grid-tile__secondary {
  padding-left: 56px;
  padding-right: 8px;
}

.mdc-grid-list[dir="rtl"] .mdc-grid-list--with-icon-align-start .mdc-grid-tile__secondary, [dir="rtl"] .mdc-grid-list .mdc-grid-list--with-icon-align-start .mdc-grid-tile__secondary {
  padding-left: 8px;
  padding-right: 56px;
}

.mdc-grid-list--with-icon-align-start .mdc-grid-tile__icon {
  left: 16px;
  right: initial;
  font-size: 24px;
}

.mdc-grid-list[dir="rtl"] .mdc-grid-list--with-icon-align-start .mdc-grid-tile__icon, [dir="rtl"] .mdc-grid-list .mdc-grid-list--with-icon-align-start .mdc-grid-tile__icon {
  left: initial;
  right: 16px;
}

.mdc-grid-list--with-icon-align-end .mdc-grid-tile__secondary {
  padding-left: 16px;
  padding-right: 56px;
}

.mdc-grid-list[dir="rtl"] .mdc-grid-list--with-icon-align-end .mdc-grid-tile__secondary, [dir="rtl"] .mdc-grid-list .mdc-grid-list--with-icon-align-end .mdc-grid-tile__secondary {
  padding-left: 56px;
  padding-right: 16px;
}

.mdc-grid-list--with-icon-align-end .mdc-grid-tile__icon {
  left: initial;
  font-size: 24px;
  right: 16px;
}

.mdc-grid-list[dir="rtl"] .mdc-grid-list--with-icon-align-end .mdc-grid-tile__icon, [dir="rtl"] .mdc-grid-list .mdc-grid-list--with-icon-align-end .mdc-grid-tile__icon {
  left: 16px;
  right: initial;
}

.mdc-icon-button {
  --mdc-ripple-fg-size: 0;
  --mdc-ripple-left: 0;
  --mdc-ripple-top: 0;
  --mdc-ripple-fg-scale: 1;
  --mdc-ripple-fg-translate-end: 0;
  --mdc-ripple-fg-translate-start: 0;
  -webkit-tap-highlight-color: #0000;
  will-change: transform, opacity;
  width: 48px;
  height: 48px;
  box-sizing: border-box;
  fill: currentColor;
  color: inherit;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  background-color: #0000;
  border: none;
  outline: none;
  padding: 12px;
  font-size: 24px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

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

.mdc-icon-button:before {
  z-index: 1;
  transition: opacity 15ms linear, background-color 15ms linear;
}

.mdc-icon-button.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-icon-button.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-icon-button.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-icon-button.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-icon-button.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-icon-button:before, .mdc-icon-button:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.mdc-icon-button.mdc-ripple-upgraded:before, .mdc-icon-button.mdc-ripple-upgraded:after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-icon-button.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-icon-button svg, .mdc-icon-button img {
  width: 24px;
  height: 24px;
}

.mdc-icon-button:disabled {
  color: #00000061;
  color: var(--mdc-theme-text-disabled-on-light, #00000061);
  cursor: default;
  pointer-events: none;
}

.mdc-icon-button:before, .mdc-icon-button:after {
  background-color: #000;
}

.mdc-icon-button:hover:before {
  opacity: .04;
}

.mdc-icon-button:not(.mdc-ripple-upgraded):focus:before, .mdc-icon-button.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-icon-button:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-icon-button:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-icon-button.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-icon-button__icon {
  display: inline-block;
}

.mdc-icon-button__icon.mdc-icon-button__icon--on, .mdc-icon-button--on .mdc-icon-button__icon {
  display: none;
}

.mdc-icon-button--on .mdc-icon-button__icon.mdc-icon-button__icon--on {
  display: inline-block;
}

.mdc-icon-toggle {
  --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: #0000;
  will-change: transform, opacity;
  color: #000000de;
  color: var(--mdc-theme-text-primary-on-light, #000000de);
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  will-change: initial;
  outline: none;
  justify-content: center;
  align-items: center;
  padding: 12px;
  font-size: 1.5rem;
  display: flex;
  position: relative;
}

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

.mdc-icon-toggle:before {
  z-index: 1;
  transition: opacity 15ms linear, background-color 15ms linear;
}

.mdc-icon-toggle.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-icon-toggle.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-icon-toggle.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-icon-toggle.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-icon-toggle.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-icon-toggle:before, .mdc-icon-toggle:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.mdc-icon-toggle.mdc-ripple-upgraded:before, .mdc-icon-toggle.mdc-ripple-upgraded:after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-icon-toggle.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-icon-toggle:before, .mdc-icon-toggle:after {
  background-color: #000;
}

.mdc-icon-toggle:hover:before {
  opacity: .04;
}

.mdc-icon-toggle:not(.mdc-ripple-upgraded):focus:before, .mdc-icon-toggle.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-icon-toggle:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-icon-toggle:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-icon-toggle.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-icon-toggle:after {
  opacity: 0;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  position: absolute;
}

.mdc-icon-toggle--disabled {
  color: #00000061;
  color: var(--mdc-theme-text-disabled-on-light, #00000061);
  pointer-events: none;
}

.mdc-image-list {
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0;
  display: flex;
}

.mdc-image-list__item, .mdc-image-list__image-aspect-container {
  box-sizing: border-box;
  position: relative;
}

.mdc-image-list__item {
  list-style-type: none;
}

.mdc-image-list__image {
  width: 100%;
}

.mdc-image-list__image-aspect-container .mdc-image-list__image {
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.mdc-image-list__image-aspect-container {
  padding-bottom: 100%;
}

.mdc-image-list__image, .mdc-image-list--with-text-protection .mdc-image-list__supporting {
  border-radius: 0;
}

.mdc-image-list__supporting {
  color: #000000de;
  color: var(--mdc-theme-text-primary-on-background, #000000de);
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  line-height: 24px;
  display: flex;
}

.mdc-image-list__label {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00937em;
  text-decoration: inherit;
  text-transform: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  overflow: hidden;
}

.mdc-image-list--with-text-protection .mdc-image-list__supporting {
  width: 100%;
  height: 48px;
  color: #fff;
  background: #0009;
  padding: 0 16px;
  position: absolute;
  bottom: 0;
}

.mdc-image-list--masonry {
  display: block;
}

.mdc-image-list--masonry .mdc-image-list__item {
  -webkit-column-break-inside: avoid;
  break-inside: avoid-column;
}

.mdc-image-list--masonry .mdc-image-list__image {
  height: auto;
  display: block;
}

:root {
  --mdc-layout-grid-margin-desktop: 24px;
  --mdc-layout-grid-gutter-desktop: 24px;
  --mdc-layout-grid-column-width-desktop: 72px;
  --mdc-layout-grid-margin-tablet: 16px;
  --mdc-layout-grid-gutter-tablet: 16px;
  --mdc-layout-grid-column-width-tablet: 72px;
  --mdc-layout-grid-margin-phone: 16px;
  --mdc-layout-grid-gutter-phone: 16px;
  --mdc-layout-grid-column-width-phone: 72px;
}

@media (min-width: 840px) {
  .mdc-layout-grid {
    box-sizing: border-box;
    padding: 24px;
    padding: var(--mdc-layout-grid-margin-desktop, 24px);
    margin: 0 auto;
  }
}

@media (min-width: 480px) and (max-width: 839px) {
  .mdc-layout-grid {
    box-sizing: border-box;
    padding: 16px;
    padding: var(--mdc-layout-grid-margin-tablet, 16px);
    margin: 0 auto;
  }
}

@media (max-width: 479px) {
  .mdc-layout-grid {
    box-sizing: border-box;
    padding: 16px;
    padding: var(--mdc-layout-grid-margin-phone, 16px);
    margin: 0 auto;
  }
}

@media (min-width: 840px) {
  .mdc-layout-grid__inner {
    margin: -12px;
    margin: calc(var(--mdc-layout-grid-gutter-desktop, 24px) / 2 * -1);
    flex-flow: wrap;
    align-items: stretch;
    display: flex;
  }

  @supports (display: grid) {
    .mdc-layout-grid__inner {
      grid-gap: 24px;
      grid-gap: var(--mdc-layout-grid-gutter-desktop, 24px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
      margin: 0;
      display: grid;
    }
  }
}

@media (min-width: 480px) and (max-width: 839px) {
  .mdc-layout-grid__inner {
    margin: -8px;
    margin: calc(var(--mdc-layout-grid-gutter-tablet, 16px) / 2 * -1);
    flex-flow: wrap;
    align-items: stretch;
    display: flex;
  }

  @supports (display: grid) {
    .mdc-layout-grid__inner {
      grid-gap: 16px;
      grid-gap: var(--mdc-layout-grid-gutter-tablet, 16px);
      grid-template-columns: repeat(8, minmax(0, 1fr));
      margin: 0;
      display: grid;
    }
  }
}

@media (max-width: 479px) {
  .mdc-layout-grid__inner {
    margin: -8px;
    margin: calc(var(--mdc-layout-grid-gutter-phone, 16px) / 2 * -1);
    flex-flow: wrap;
    align-items: stretch;
    display: flex;
  }

  @supports (display: grid) {
    .mdc-layout-grid__inner {
      grid-gap: 16px;
      grid-gap: var(--mdc-layout-grid-gutter-phone, 16px);
      grid-template-columns: repeat(4, minmax(0, 1fr));
      margin: 0;
      display: grid;
    }
  }
}

@media (min-width: 840px) {
  .mdc-layout-grid__cell {
    width: calc(33.3333% - 24px);
    width: calc(33.3333% - var(--mdc-layout-grid-gutter-desktop, 24px));
    box-sizing: border-box;
    margin: 12px;
    margin: calc(var(--mdc-layout-grid-gutter-desktop, 24px) / 2);
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell {
      width: auto;
      grid-column-end: span 4;
      margin: 0;
    }
  }

  .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-desktop {
    width: calc(8.33333% - 24px);
    width: calc(8.33333% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-desktop {
      width: auto;
      grid-column-end: span 1;
    }
  }

  .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-desktop {
    width: calc(16.6667% - 24px);
    width: calc(16.6667% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-desktop {
      width: auto;
      grid-column-end: span 2;
    }
  }

  .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-desktop {
    width: calc(25% - 24px);
    width: calc(25% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-desktop {
      width: auto;
      grid-column-end: span 3;
    }
  }

  .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-desktop {
    width: calc(33.3333% - 24px);
    width: calc(33.3333% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-desktop {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-desktop {
    width: calc(41.6667% - 24px);
    width: calc(41.6667% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-desktop {
      width: auto;
      grid-column-end: span 5;
    }
  }

  .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-desktop {
    width: calc(50% - 24px);
    width: calc(50% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-desktop {
      width: auto;
      grid-column-end: span 6;
    }
  }

  .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-desktop {
    width: calc(58.3333% - 24px);
    width: calc(58.3333% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-desktop {
      width: auto;
      grid-column-end: span 7;
    }
  }

  .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-desktop {
    width: calc(66.6667% - 24px);
    width: calc(66.6667% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-desktop {
      width: auto;
      grid-column-end: span 8;
    }
  }

  .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-desktop {
    width: calc(75% - 24px);
    width: calc(75% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-desktop {
      width: auto;
      grid-column-end: span 9;
    }
  }

  .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-desktop {
    width: calc(83.3333% - 24px);
    width: calc(83.3333% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-desktop {
      width: auto;
      grid-column-end: span 10;
    }
  }

  .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-desktop {
    width: calc(91.6667% - 24px);
    width: calc(91.6667% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-desktop {
      width: auto;
      grid-column-end: span 11;
    }
  }

  .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-desktop {
    width: calc(100% - 24px);
    width: calc(100% - var(--mdc-layout-grid-gutter-desktop, 24px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-desktop {
      width: auto;
      grid-column-end: span 12;
    }
  }
}

@media (min-width: 480px) and (max-width: 839px) {
  .mdc-layout-grid__cell {
    width: calc(50% - 16px);
    width: calc(50% - var(--mdc-layout-grid-gutter-tablet, 16px));
    box-sizing: border-box;
    margin: 8px;
    margin: calc(var(--mdc-layout-grid-gutter-tablet, 16px) / 2);
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell {
      width: auto;
      grid-column-end: span 4;
      margin: 0;
    }
  }

  .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-tablet {
    width: calc(12.5% - 16px);
    width: calc(12.5% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-tablet {
      width: auto;
      grid-column-end: span 1;
    }
  }

  .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-tablet {
    width: calc(25% - 16px);
    width: calc(25% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-tablet {
      width: auto;
      grid-column-end: span 2;
    }
  }

  .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-tablet {
    width: calc(37.5% - 16px);
    width: calc(37.5% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-tablet {
      width: auto;
      grid-column-end: span 3;
    }
  }

  .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-tablet {
    width: calc(50% - 16px);
    width: calc(50% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-tablet {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-tablet {
    width: calc(62.5% - 16px);
    width: calc(62.5% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-tablet {
      width: auto;
      grid-column-end: span 5;
    }
  }

  .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-tablet {
    width: calc(75% - 16px);
    width: calc(75% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-tablet {
      width: auto;
      grid-column-end: span 6;
    }
  }

  .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-tablet {
    width: calc(87.5% - 16px);
    width: calc(87.5% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-tablet {
      width: auto;
      grid-column-end: span 7;
    }
  }

  .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-tablet {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-tablet {
      width: auto;
      grid-column-end: span 8;
    }
  }

  .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-tablet {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-tablet {
      width: auto;
      grid-column-end: span 8;
    }
  }

  .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-tablet {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-tablet {
      width: auto;
      grid-column-end: span 8;
    }
  }

  .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-tablet {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-tablet {
      width: auto;
      grid-column-end: span 8;
    }
  }

  .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-tablet {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-tablet, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-tablet {
      width: auto;
      grid-column-end: span 8;
    }
  }
}

@media (max-width: 479px) {
  .mdc-layout-grid__cell {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
    box-sizing: border-box;
    margin: 8px;
    margin: calc(var(--mdc-layout-grid-gutter-phone, 16px) / 2);
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell {
      width: auto;
      grid-column-end: span 4;
      margin: 0;
    }
  }

  .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-phone {
    width: calc(25% - 16px);
    width: calc(25% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-1, .mdc-layout-grid__cell--span-1-phone {
      width: auto;
      grid-column-end: span 1;
    }
  }

  .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-phone {
    width: calc(50% - 16px);
    width: calc(50% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-2, .mdc-layout-grid__cell--span-2-phone {
      width: auto;
      grid-column-end: span 2;
    }
  }

  .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-phone {
    width: calc(75% - 16px);
    width: calc(75% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-3, .mdc-layout-grid__cell--span-3-phone {
      width: auto;
      grid-column-end: span 3;
    }
  }

  .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-phone {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-4, .mdc-layout-grid__cell--span-4-phone {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-phone {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-5, .mdc-layout-grid__cell--span-5-phone {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-phone {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-6, .mdc-layout-grid__cell--span-6-phone {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-phone {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-7, .mdc-layout-grid__cell--span-7-phone {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-phone {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-8, .mdc-layout-grid__cell--span-8-phone {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-phone {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-9, .mdc-layout-grid__cell--span-9-phone {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-phone {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-10, .mdc-layout-grid__cell--span-10-phone {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-phone {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-11, .mdc-layout-grid__cell--span-11-phone {
      width: auto;
      grid-column-end: span 4;
    }
  }

  .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-phone {
    width: calc(100% - 16px);
    width: calc(100% - var(--mdc-layout-grid-gutter-phone, 16px));
  }

  @supports (display: grid) {
    .mdc-layout-grid__cell--span-12, .mdc-layout-grid__cell--span-12-phone {
      width: auto;
      grid-column-end: span 4;
    }
  }
}

.mdc-layout-grid__cell--order-1 {
  order: 1;
}

.mdc-layout-grid__cell--order-2 {
  order: 2;
}

.mdc-layout-grid__cell--order-3 {
  order: 3;
}

.mdc-layout-grid__cell--order-4 {
  order: 4;
}

.mdc-layout-grid__cell--order-5 {
  order: 5;
}

.mdc-layout-grid__cell--order-6 {
  order: 6;
}

.mdc-layout-grid__cell--order-7 {
  order: 7;
}

.mdc-layout-grid__cell--order-8 {
  order: 8;
}

.mdc-layout-grid__cell--order-9 {
  order: 9;
}

.mdc-layout-grid__cell--order-10 {
  order: 10;
}

.mdc-layout-grid__cell--order-11 {
  order: 11;
}

.mdc-layout-grid__cell--order-12 {
  order: 12;
}

.mdc-layout-grid__cell--align-top {
  align-self: flex-start;
}

@supports (display: grid) {
  .mdc-layout-grid__cell--align-top {
    align-self: start;
  }
}

.mdc-layout-grid__cell--align-middle {
  align-self: center;
}

.mdc-layout-grid__cell--align-bottom {
  align-self: flex-end;
}

@supports (display: grid) {
  .mdc-layout-grid__cell--align-bottom {
    align-self: end;
  }
}

@media (min-width: 840px) {
  .mdc-layout-grid--fixed-column-width {
    width: 1176px;
    width: calc( var(--mdc-layout-grid-column-width-desktop, 72px) * 12 + var(--mdc-layout-grid-gutter-desktop, 24px) * 11 + var(--mdc-layout-grid-margin-desktop, 24px) * 2);
  }
}

@media (min-width: 480px) and (max-width: 839px) {
  .mdc-layout-grid--fixed-column-width {
    width: 720px;
    width: calc( var(--mdc-layout-grid-column-width-tablet, 72px) * 8 + var(--mdc-layout-grid-gutter-tablet, 16px) * 7 + var(--mdc-layout-grid-margin-tablet, 16px) * 2);
  }
}

@media (max-width: 479px) {
  .mdc-layout-grid--fixed-column-width {
    width: 368px;
    width: calc( var(--mdc-layout-grid-column-width-phone, 72px) * 4 + var(--mdc-layout-grid-gutter-phone, 16px) * 3 + var(--mdc-layout-grid-margin-phone, 16px) * 2);
  }
}

.mdc-layout-grid--align-left {
  margin-left: 0;
  margin-right: auto;
}

.mdc-layout-grid--align-right {
  margin-left: auto;
  margin-right: 0;
}

.mdc-line-ripple {
  width: 100%;
  height: 2px;
  opacity: 0;
  z-index: 2;
  transition: transform .18s cubic-bezier(.4, 0, .2, 1), opacity .18s cubic-bezier(.4, 0, .2, 1), -webkit-transform .18s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
}

.mdc-line-ripple--active {
  opacity: 1;
  transform: scaleX(1);
}

.mdc-line-ripple--deactivating {
  opacity: 0;
}

@keyframes primary-indeterminate-translate {
  0% {
    transform: translateX(0);
  }

  20% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(0);
  }

  59.15% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(83.6714%);
  }

  100% {
    transform: translateX(200.611%);
  }
}

@keyframes primary-indeterminate-scale {
  0% {
    transform: scaleX(.08);
  }

  36.65% {
    animation-timing-function: cubic-bezier(.33473, .12482, .78584, 1);
    transform: scaleX(.08);
  }

  69.15% {
    animation-timing-function: cubic-bezier(.06, .11, .6, 1);
    transform: scaleX(.66148);
  }

  100% {
    transform: scaleX(.08);
  }
}

@keyframes secondary-indeterminate-translate {
  0% {
    animation-timing-function: cubic-bezier(.15, 0, .51506, .40969);
    transform: translateX(0);
  }

  25% {
    animation-timing-function: cubic-bezier(.31033, .28406, .8, .73371);
    transform: translateX(37.6519%);
  }

  48.35% {
    animation-timing-function: cubic-bezier(.4, .62704, .6, .90203);
    transform: translateX(84.3862%);
  }

  100% {
    transform: translateX(160.278%);
  }
}

@keyframes secondary-indeterminate-scale {
  0% {
    animation-timing-function: cubic-bezier(.20503, .05705, .57661, .45397);
    transform: scaleX(.08);
  }

  19.15% {
    animation-timing-function: cubic-bezier(.15231, .19643, .64837, 1.00432);
    transform: scaleX(.4571);
  }

  44.15% {
    animation-timing-function: cubic-bezier(.25776, -.00316, .21176, 1.38179);
    transform: scaleX(.72796);
  }

  100% {
    transform: scaleX(.08);
  }
}

@keyframes buffering {
  to {
    transform: translateX(-10px);
  }
}

@keyframes primary-indeterminate-translate-reverse {
  0% {
    transform: translateX(0);
  }

  20% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(0);
  }

  59.15% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(-83.6714%);
  }

  100% {
    transform: translateX(-200.611%);
  }
}

@keyframes secondary-indeterminate-translate-reverse {
  0% {
    animation-timing-function: cubic-bezier(.15, 0, .51506, .40969);
    transform: translateX(0);
  }

  25% {
    animation-timing-function: cubic-bezier(.31033, .28406, .8, .73371);
    transform: translateX(-37.6519%);
  }

  48.35% {
    animation-timing-function: cubic-bezier(.4, .62704, .6, .90203);
    transform: translateX(-84.3862%);
  }

  100% {
    transform: translateX(-160.278%);
  }
}

@keyframes buffering-reverse {
  to {
    transform: translateX(10px);
  }
}

.mdc-linear-progress {
  width: 100%;
  height: 4px;
  transition: opacity .25s cubic-bezier(.4, 0, .6, 1);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}

.mdc-linear-progress__bar {
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  transition: transform .25s cubic-bezier(.4, 0, .6, 1), -webkit-transform .25s cubic-bezier(.4, 0, .6, 1);
  animation: none;
  position: absolute;
}

.mdc-linear-progress__bar-inner {
  width: 100%;
  height: 100%;
  animation: none;
  display: inline-block;
  position: absolute;
}

.mdc-linear-progress__buffering-dots {
  width: 100%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: 10px 4px;
  animation: .25s linear infinite buffering;
  position: absolute;
}

.mdc-linear-progress__buffer {
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  transition: transform .25s cubic-bezier(.4, 0, .6, 1), -webkit-transform .25s cubic-bezier(.4, 0, .6, 1);
  position: absolute;
}

.mdc-linear-progress__primary-bar {
  transform: scaleX(0);
}

.mdc-linear-progress__secondary-bar {
  visibility: hidden;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__bar {
  transition: none;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar {
  animation: 2s linear infinite primary-indeterminate-translate;
  left: -145.167%;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__primary-bar > .mdc-linear-progress__bar-inner {
  animation: 2s linear infinite primary-indeterminate-scale;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar {
  visibility: visible;
  animation: 2s linear infinite secondary-indeterminate-translate;
  left: -54.8889%;
}

.mdc-linear-progress--indeterminate .mdc-linear-progress__secondary-bar > .mdc-linear-progress__bar-inner {
  animation: 2s linear infinite secondary-indeterminate-scale;
}

.mdc-linear-progress--reversed .mdc-linear-progress__bar, .mdc-linear-progress--reversed .mdc-linear-progress__buffer {
  transform-origin: 100%;
  right: 0;
}

.mdc-linear-progress--reversed .mdc-linear-progress__primary-bar {
  animation-name: primary-indeterminate-translate-reverse;
}

.mdc-linear-progress--reversed .mdc-linear-progress__secondary-bar {
  animation-name: secondary-indeterminate-translate-reverse;
}

.mdc-linear-progress--reversed .mdc-linear-progress__buffering-dots {
  animation: .25s linear infinite buffering-reverse;
}

.mdc-linear-progress--closed {
  opacity: 0;
}

.mdc-linear-progress__bar-inner {
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-linear-progress__buffering-dots {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' enable-background='new 0 0 5 2' xml:space='preserve' viewBox='0 0 5 2' preserveAspectRatio='none slice'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23e6e6e6'/%3E%3C/svg%3E");
}

.mdc-linear-progress__buffer {
  background-color: #e6e6e6;
}

.mdc-linear-progress--indeterminate.mdc-linear-progress--reversed .mdc-linear-progress__primary-bar {
  left: auto;
  right: -145.167%;
}

.mdc-linear-progress--indeterminate.mdc-linear-progress--reversed .mdc-linear-progress__secondary-bar {
  left: auto;
  right: -54.8889%;
}

.mdc-list {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00937em;
  text-decoration: inherit;
  text-transform: inherit;
  color: #000000de;
  color: var(--mdc-theme-text-primary-on-background, #000000de);
  margin: 0;
  padding: 8px 0;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  list-style-type: none;
}

.mdc-list-item__secondary-text {
  color: #0000008a;
  color: var(--mdc-theme-text-secondary-on-background, #0000008a);
}

.mdc-list-item__graphic {
  color: #00000061;
  color: var(--mdc-theme-text-icon-on-background, #00000061);
  background-color: #0000;
}

.mdc-list-item__meta {
  color: #00000061;
  color: var(--mdc-theme-text-hint-on-background, #00000061);
}

.mdc-list--dense {
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: .812rem;
}

.mdc-list-item {
  height: 48px;
  justify-content: flex-start;
  align-items: center;
  padding: 0 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mdc-list-item:focus {
  outline: none;
}

.mdc-list-item--selected, .mdc-list-item--activated, .mdc-list-item--selected .mdc-list-item__graphic, .mdc-list-item--activated .mdc-list-item__graphic {
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee);
}

.mdc-list-item--disabled {
  color: #00000061;
  color: var(--mdc-theme-text-disabled-on-background, #00000061);
}

.mdc-list-item__graphic {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 32px;
  font-size: 24px;
  display: inline-flex;
}

.mdc-list-item[dir="rtl"] .mdc-list-item__graphic, [dir="rtl"] .mdc-list-item .mdc-list-item__graphic {
  margin-left: 32px;
  margin-right: 0;
}

.mdc-list-item__meta {
  margin-left: auto;
  margin-right: 0;
}

.mdc-list-item[dir="rtl"] .mdc-list-item__meta, [dir="rtl"] .mdc-list-item .mdc-list-item__meta {
  margin-left: 0;
  margin-right: auto;
}

.mdc-list-item__text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.mdc-list-item__primary-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: -20px;
  line-height: normal;
  display: block;
  overflow: hidden;
}

.mdc-list-item__primary-text:before {
  width: 0;
  height: 32px;
  content: "";
  vertical-align: 0;
  display: inline-block;
}

.mdc-list-item__primary-text:after {
  width: 0;
  height: 20px;
  content: "";
  vertical-align: -20px;
  display: inline-block;
}

.mdc-list--dense .mdc-list-item__primary-text {
  margin-top: 0;
  margin-bottom: -20px;
  line-height: normal;
  display: block;
}

.mdc-list--dense .mdc-list-item__primary-text:before {
  width: 0;
  height: 24px;
  content: "";
  vertical-align: 0;
  display: inline-block;
}

.mdc-list--dense .mdc-list-item__primary-text:after {
  width: 0;
  height: 20px;
  content: "";
  vertical-align: -20px;
  display: inline-block;
}

.mdc-list-item__secondary-text {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01786em;
  text-decoration: inherit;
  text-transform: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 0;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: normal;
  display: block;
  overflow: hidden;
}

.mdc-list-item__secondary-text:before {
  width: 0;
  height: 20px;
  content: "";
  vertical-align: 0;
  display: inline-block;
}

.mdc-list--dense .mdc-list-item__secondary-text {
  line-height: normal;
  font-size: inherit;
  margin-top: 0;
  display: block;
}

.mdc-list--dense .mdc-list-item__secondary-text:before {
  width: 0;
  height: 20px;
  content: "";
  vertical-align: 0;
  display: inline-block;
}

.mdc-list--dense .mdc-list-item {
  height: 40px;
}

.mdc-list--dense .mdc-list-item__graphic {
  width: 20px;
  height: 20px;
  margin-left: 0;
  margin-right: 36px;
  font-size: 20px;
}

.mdc-list-item[dir="rtl"] .mdc-list--dense .mdc-list-item__graphic, [dir="rtl"] .mdc-list-item .mdc-list--dense .mdc-list-item__graphic {
  margin-left: 36px;
  margin-right: 0;
}

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

.mdc-list--avatar-list .mdc-list-item__graphic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 0;
  margin-right: 16px;
  font-size: 40px;
}

.mdc-list-item[dir="rtl"] .mdc-list--avatar-list .mdc-list-item__graphic, [dir="rtl"] .mdc-list-item .mdc-list--avatar-list .mdc-list-item__graphic {
  margin-left: 16px;
  margin-right: 0;
}

.mdc-list--two-line .mdc-list-item__text {
  align-self: flex-start;
}

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

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

.mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic {
  width: 36px;
  height: 36px;
  margin-left: 0;
  margin-right: 20px;
  font-size: 36px;
}

.mdc-list-item[dir="rtl"] .mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic, [dir="rtl"] .mdc-list-item .mdc-list--avatar-list.mdc-list--dense .mdc-list-item__graphic {
  margin-left: 20px;
  margin-right: 0;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item {
  --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: #0000;
  will-change: transform, opacity;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:after {
  opacity: 0;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  position: absolute;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:before {
  z-index: 1;
  transition: opacity 15ms linear, background-color 15ms linear;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:after {
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:after {
  background-color: #000;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:hover:before {
  opacity: .04;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:not(.mdc-ripple-upgraded):focus:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:before {
  opacity: .12;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:after {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:after {
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:hover:before {
  opacity: .16;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:not(.mdc-ripple-upgraded):focus:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated.mdc-ripple-upgraded--background-focused:before {
  opacity: .24;
  transition-duration: 75ms;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated:not(.mdc-ripple-upgraded):active:after {
  opacity: .28;
  transition-duration: 75ms;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--activated.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .28;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:before {
  opacity: .08;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:after {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:after {
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:hover:before {
  opacity: .12;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:not(.mdc-ripple-upgraded):focus:before, :not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected.mdc-ripple-upgraded--background-focused:before {
  opacity: .2;
  transition-duration: 75ms;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected:not(.mdc-ripple-upgraded):active:after {
  opacity: .24;
  transition-duration: 75ms;
}

:not(.mdc-list--non-interactive) > :not(.mdc-list-item--disabled).mdc-list-item--selected.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .24;
}

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

.mdc-list-divider {
  height: 0;
  border: none;
  border-bottom: 1px solid #0000001f;
  margin: 0;
}

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

.mdc-list-divider--inset {
  width: calc(100% - 72px);
  margin-left: 72px;
  margin-right: 0;
}

.mdc-list-group[dir="rtl"] .mdc-list-divider--inset, [dir="rtl"] .mdc-list-group .mdc-list-divider--inset {
  margin-left: 0;
  margin-right: 72px;
}

.mdc-list-divider--inset.mdc-list-divider--padded {
  width: calc(100% - 88px);
}

.mdc-list-group .mdc-list {
  padding: 0;
}

.mdc-list-group__subheader {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00937em;
  text-decoration: inherit;
  text-transform: inherit;
  color: #000000de;
  color: var(--mdc-theme-text-primary-on-background, #000000de);
  margin: .75rem 16px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.mdc-menu {
  min-width: 112px;
}

.mdc-menu .mdc-list-item__meta, .mdc-menu .mdc-list-item__graphic {
  color: #000000de;
  color: var(--mdc-theme-text-primary-on-background, #000000de);
}

.mdc-menu .mdc-list-divider {
  margin: 8px 0;
}

.mdc-menu .mdc-list-item {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.mdc-menu .mdc-list-item--disabled {
  cursor: auto;
}

.mdc-menu__selection-group {
  fill: currentColor;
  padding: 0;
}

.mdc-menu__selection-group .mdc-list-item {
  padding-left: 56px;
  padding-right: 0;
}

[dir="rtl"] .mdc-menu__selection-group .mdc-list-item, .mdc-menu__selection-group .mdc-list-item[dir="rtl"] {
  padding-left: 0;
  padding-right: 56px;
}

.mdc-menu__selection-group-icon {
  left: 16px;
  right: initial;
  display: none;
  position: absolute;
}

[dir="rtl"] .mdc-menu__selection-group-icon, .mdc-menu__selection-group-icon[dir="rtl"] {
  left: initial;
  right: 16px;
}

.mdc-menu-item--selected .mdc-menu__selection-group-icon {
  display: inline;
}

.mdc-menu-surface {
  background-color: #fff;
  background-color: var(--mdc-theme-surface, #fff);
  color: #000;
  color: var(--mdc-theme-on-surface, #000);
  transform-origin-left: top left;
  transform-origin-right: top right;
  box-sizing: border-box;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  transform-origin: 0 0;
  opacity: 0;
  will-change: transform, opacity;
  z-index: 4;
  border-radius: 4px;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  overflow: auto;
  transform: scale(1);
  box-shadow: 0 5px 5px -3px #0003, 0 8px 10px 1px #00000024, 0 3px 14px 2px #0000001f;
}

[dir="rtl"] .mdc-menu-surface, .mdc-menu-surface[dir="rtl"] {
  transform-origin-left: top right;
  transform-origin-right: top left;
}

.mdc-menu-surface:focus {
  outline: none;
}

.mdc-menu-surface--animating-open {
  opacity: 0;
  transition: opacity 30ms linear, transform .12s cubic-bezier(0, 0, .2, 1), -webkit-transform .12s cubic-bezier(0, 0, .2, 1);
  display: inline-block;
  transform: scale(.8);
}

.mdc-menu-surface--open {
  opacity: 1;
  display: inline-block;
  transform: scale(1);
}

.mdc-menu-surface--animating-closed {
  opacity: 0;
  transition: opacity 75ms linear;
  display: inline-block;
}

.mdc-menu-surface--anchor {
  position: relative;
  overflow: visible;
}

.mdc-menu-surface--fixed {
  position: fixed;
}

.mdc-notched-outline, .mdc-notched-outline__idle {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mdc-notched-outline {
  opacity: 0;
  text-align: left;
  transition: opacity .15s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

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

.mdc-notched-outline svg {
  width: 100%;
  height: 100%;
  position: absolute;
}

.mdc-notched-outline__idle {
  opacity: 1;
  border: 1px solid;
  transition: opacity .15s cubic-bezier(.4, 0, .2, 1), border-color .15s cubic-bezier(.4, 0, .2, 1);
}

.mdc-notched-outline__path {
  stroke-width: 1px;
  fill: #0000;
  transition: stroke .15s cubic-bezier(.4, 0, .2, 1), stroke-width .15s cubic-bezier(.4, 0, .2, 1);
}

.mdc-notched-outline--notched {
  opacity: 1;
}

.mdc-notched-outline--notched ~ .mdc-notched-outline__idle {
  opacity: 0;
}

.mdc-radio {
  --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: #0000;
  will-change: transform, opacity;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  cursor: pointer;
  will-change: opacity, transform, border-color, color;
  flex: none;
  padding: 10px;
  display: inline-block;
  position: relative;
}

.mdc-radio .mdc-radio__native-control:enabled:not(:checked) + .mdc-radio__background .mdc-radio__outer-circle {
  border-color: #0000008a;
}

.mdc-radio .mdc-radio__native-control:enabled:checked + .mdc-radio__background .mdc-radio__outer-circle, .mdc-radio .mdc-radio__native-control:enabled + .mdc-radio__background .mdc-radio__inner-circle {
  border-color: #018786;
  border-color: var(--mdc-theme-secondary, #018786);
}

.mdc-radio .mdc-radio__background:before {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-radio .mdc-radio__background:before {
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

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

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

.mdc-radio.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-radio.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-radio.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-radio.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-radio.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-radio:before, .mdc-radio:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.mdc-radio.mdc-ripple-upgraded:before, .mdc-radio.mdc-ripple-upgraded:after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-radio.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-radio:before, .mdc-radio:after {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-radio:before, .mdc-radio:after {
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-radio:hover:before {
  opacity: .04;
}

.mdc-radio:not(.mdc-ripple-upgraded):focus:before, .mdc-radio.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-radio:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-radio:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-radio.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-radio__background {
  box-sizing: border-box;
  width: 50%;
  height: 50%;
  display: inline-block;
  position: absolute;
  left: 10px;
}

.mdc-radio__background:before {
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  transition: opacity .12s cubic-bezier(.4, 0, .6, 1), transform .12s cubic-bezier(.4, 0, .6, 1), -webkit-transform .12s cubic-bezier(.4, 0, .6, 1);
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-radio__outer-circle {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
  transition: border-color .12s cubic-bezier(.4, 0, .6, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.mdc-radio__inner-circle {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border-style: solid;
  border-width: 10px;
  border-radius: 50%;
  transition: transform .12s cubic-bezier(.4, 0, .6, 1), border-color .12s cubic-bezier(.4, 0, .6, 1), -webkit-transform .12s cubic-bezier(.4, 0, .6, 1);
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-radio__native-control {
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: inherit;
  z-index: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.mdc-radio.mdc-ripple-upgraded--background-focused .mdc-radio__background:before {
  content: none;
}

.mdc-radio__native-control:checked + .mdc-radio__background, .mdc-radio__native-control:disabled + .mdc-radio__background {
  transition: opacity .12s cubic-bezier(0, 0, .2, 1), transform .12s cubic-bezier(0, 0, .2, 1), -webkit-transform .12s cubic-bezier(0, 0, .2, 1);
}

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__outer-circle, .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__outer-circle {
  transition: border-color .12s cubic-bezier(0, 0, .2, 1);
}

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle, .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle {
  transition: transform .12s cubic-bezier(0, 0, .2, 1), border-color .12s cubic-bezier(0, 0, .2, 1), -webkit-transform .12s cubic-bezier(0, 0, .2, 1);
}

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

.mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle {
  transition: transform .12s cubic-bezier(0, 0, .2, 1), border-color .12s cubic-bezier(0, 0, .2, 1), -webkit-transform .12s cubic-bezier(0, 0, .2, 1);
  transform: scale(.5);
}

.mdc-radio__native-control:disabled + .mdc-radio__background, [aria-disabled="true"] .mdc-radio__native-control + .mdc-radio__background {
  cursor: default;
}

.mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__outer-circle, [aria-disabled="true"] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__outer-circle, .mdc-radio__native-control:disabled + .mdc-radio__background .mdc-radio__inner-circle, [aria-disabled="true"] .mdc-radio__native-control + .mdc-radio__background .mdc-radio__inner-circle {
  border-color: #00000042;
}

.mdc-radio__native-control:focus + .mdc-radio__background:before {
  opacity: .12;
  transition: opacity .12s cubic-bezier(0, 0, .2, 1), transform .12s cubic-bezier(0, 0, .2, 1), -webkit-transform .12s cubic-bezier(0, 0, .2, 1);
  transform: scale(2);
}

.mdc-ripple-surface {
  --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: #0000;
  will-change: transform, opacity;
  outline: none;
  position: relative;
  overflow: hidden;
}

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

.mdc-ripple-surface:before {
  z-index: 1;
  transition: opacity 15ms linear, background-color 15ms linear;
}

.mdc-ripple-surface.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-ripple-surface.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-ripple-surface.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-ripple-surface.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-ripple-surface:before, .mdc-ripple-surface:after {
  background-color: #000;
}

.mdc-ripple-surface:hover:before {
  opacity: .04;
}

.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus:before, .mdc-ripple-surface.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-ripple-surface:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-ripple-surface:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-ripple-surface.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-ripple-surface:before, .mdc-ripple-surface:after {
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

.mdc-ripple-surface.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-ripple-surface[data-mdc-ripple-is-unbounded] {
  overflow: visible;
}

.mdc-ripple-surface[data-mdc-ripple-is-unbounded]:before, .mdc-ripple-surface[data-mdc-ripple-is-unbounded]:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded:before, .mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded:after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-ripple-surface--primary:before, .mdc-ripple-surface--primary:after {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  .mdc-ripple-surface--primary:before, .mdc-ripple-surface--primary:after {
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

.mdc-ripple-surface--primary:hover:before {
  opacity: .04;
}

.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):focus:before, .mdc-ripple-surface--primary.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-ripple-surface--primary:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-ripple-surface--primary.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-ripple-surface--accent:before, .mdc-ripple-surface--accent:after {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-ripple-surface--accent:before, .mdc-ripple-surface--accent:after {
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-ripple-surface--accent:hover:before {
  opacity: .04;
}

.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):focus:before, .mdc-ripple-surface--accent.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-ripple-surface--accent:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-ripple-surface--accent.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

@keyframes mdc-select-float-native-control {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mdc-select {
  --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: #0000;
  will-change: transform, opacity;
  box-sizing: border-box;
  height: 56px;
  will-change: opacity, transform, color;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%23000%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.54%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.mdc-select:not(.mdc-select--disabled) {
  background-color: #f5f5f5;
}

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

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

.mdc-select.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-select.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-select.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-select.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-select.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-select:before, .mdc-select:after {
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

.mdc-select.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-select:before, .mdc-select:after {
  background-color: #000000de;
}

.mdc-select:hover:before {
  opacity: .04;
}

.mdc-select:not(.mdc-ripple-upgraded):focus:before, .mdc-select.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control {
  color: #000000de;
}

.mdc-select:not(.mdc-select--disabled) .mdc-floating-label {
  color: #0009;
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control {
  border-bottom-color: #0000006b;
}

.mdc-select, .mdc-select__native-control {
  border-radius: 4px 4px 0 0;
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control:focus ~ .mdc-line-ripple {
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control:focus ~ .mdc-floating-label {
  color: #6200eede;
}

.mdc-select:not(.mdc-select--disabled) .mdc-select__native-control:hover {
  border-bottom-color: #000000de;
}

.mdc-select .mdc-floating-label--float-above {
  transform: translateY(-40%)scale(.75);
}

.mdc-select .mdc-floating-label {
  left: 16px;
  right: initial;
  pointer-events: none;
  line-height: 1.75rem;
  bottom: 12px;
}

[dir="rtl"] .mdc-select .mdc-floating-label, .mdc-select .mdc-floating-label[dir="rtl"] {
  left: initial;
  right: 16px;
}

[dir="rtl"] .mdc-select, .mdc-select[dir="rtl"] {
  background-position: 10px 50%;
}

.mdc-select__native-control {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00937em;
  text-decoration: inherit;
  text-transform: inherit;
  width: 100%;
  height: 56px;
  color: inherit;
  white-space: nowrap;
  cursor: pointer;
  appearance: none;
  background-color: #0000;
  border: none;
  border-bottom: 1px solid;
  outline: none;
  padding: 20px 26px 4px 16px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
}

[dir="rtl"] .mdc-select__native-control, .mdc-select__native-control[dir="rtl"] {
  padding-left: 26px;
  padding-right: 16px;
}

.mdc-select__native-control::-ms-expand {
  display: none;
}

.mdc-select__native-control::-ms-value {
  color: inherit;
  background-color: #0000;
}

@-moz-document url-prefix() {
  .mdc-select__native-control {
    text-indent: -2px;
  }
}

.mdc-select__native-control > option {
  background-color: #fff;
  background-color: var(--mdc-theme-surface, #fff);
  color: inherit;
}

.mdc-select .mdc-select__native-control:focus ~ .mdc-line-ripple:after {
  opacity: 1;
  transform: scale(1, 2);
}

.mdc-select--outlined {
  border: none;
  overflow: visible;
}

.mdc-select--outlined:not(.mdc-select--disabled) {
  background-color: #0000;
}

.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__idle {
  border-color: #0000003d;
}

.mdc-select--outlined:not(.mdc-select--disabled) .mdc-notched-outline__path {
  stroke: #0000003d;
}

.mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select__native-control:focus) .mdc-select__native-control:hover ~ .mdc-notched-outline__idle {
  border-color: #000000de;
}

.mdc-select--outlined:not(.mdc-select--disabled):not(.mdc-select__native-control:focus) .mdc-select__native-control:hover ~ .mdc-notched-outline .mdc-notched-outline__path {
  stroke: #000000de;
}

.mdc-select--outlined:not(.mdc-select--disabled) .mdc-select__native-control:focus ~ .mdc-notched-outline .mdc-notched-outline__path {
  stroke-width: 2px;
  stroke: #6200ee;
  stroke: var(--mdc-theme-primary, #6200ee);
}

.mdc-select--outlined .mdc-floating-label--float-above {
  transform: translateY(-130%)scale(.75);
}

.mdc-select--outlined .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-text-field-outlined;
}

.mdc-select--outlined .mdc-notched-outline, .mdc-select--outlined .mdc-notched-outline__idle, .mdc-select--outlined__native-control {
  border-radius: 4px;
}

.mdc-select--outlined:before, .mdc-select--outlined:after, .mdc-select--outlined:not(.mdc-select--disabled) {
  background-color: #0000;
}

.mdc-select--outlined .mdc-select__native-control {
  z-index: 1;
  background-color: #0000;
  border: none;
  padding: 12px 26px 12px 16px;
  display: flex;
}

[dir="rtl"] .mdc-select--outlined .mdc-select__native-control, .mdc-select--outlined .mdc-select__native-control[dir="rtl"] {
  padding-left: 26px;
  padding-right: 16px;
}

.mdc-select--outlined .mdc-floating-label {
  pointer-events: auto;
  line-height: 1.15rem;
  bottom: 20px;
}

.mdc-select--disabled {
  cursor: default;
  pointer-events: none;
  background-color: #fafafa;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2210px%22%20height%3D%225px%22%20viewBox%3D%227%2010%2010%205%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Shape%22%20stroke%3D%22none%22%20fill%3D%22%23000%22%20fill-rule%3D%22evenodd%22%20opacity%3D%220.37%22%20points%3D%227%2010%2012%2015%2017%2010%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E");
}

.mdc-select--disabled .mdc-floating-label {
  color: #0000005e;
}

.mdc-select--disabled .mdc-line-ripple {
  display: none;
}

.mdc-select--disabled .mdc-select__native-control {
  color: #0000005e;
  border-bottom-style: dotted;
}

.mdc-select--disabled.mdc-select--outlined {
  background-color: #0000;
}

.mdc-select--disabled.mdc-select--outlined .mdc-select__native-control {
  border-bottom-style: none;
}

.mdc-select--disabled.mdc-select--outlined .mdc-notched-outline__idle {
  border-color: #00000029;
}

.mdc-select--disabled.mdc-select--outlined .mdc-notched-outline__path {
  stroke: #00000029;
}

@keyframes mdc-slider-emphasize {
  0% {
    animation-timing-function: ease-out;
  }

  50% {
    animation-timing-function: ease-in;
    transform: scale(.85);
  }

  100% {
    transform: scale(.571);
  }
}

.mdc-slider {
  width: 100%;
  height: 48px;
  cursor: pointer;
  touch-action: pan-x;
  -webkit-tap-highlight-color: #0000;
  position: relative;
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track {
  background-color: #018786;
  background-color: var(--mdc-theme-secondary, #018786);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-container {
  background-color: #01878642;
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-marker:after, .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__track-marker-container:after {
  background-color: #018786;
  background-color: var(--mdc-theme-secondary, #018786);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__thumb {
  fill: #018786;
  fill: var(--mdc-theme-secondary, #018786);
  stroke: #018786;
  stroke: var(--mdc-theme-secondary, #018786);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__focus-ring, .mdc-slider:not(.mdc-slider--disabled) .mdc-slider__pin {
  background-color: #018786;
  background-color: var(--mdc-theme-secondary, #018786);
}

.mdc-slider:not(.mdc-slider--disabled) .mdc-slider__pin {
  color: #fff;
  color: var(--mdc-theme-text-primary-on-dark, white);
}

.mdc-slider--disabled {
  cursor: auto;
}

.mdc-slider--disabled .mdc-slider__track {
  background-color: #9a9a9a;
}

.mdc-slider--disabled .mdc-slider__track-container {
  background-color: #9a9a9a42;
}

.mdc-slider--disabled .mdc-slider__track-marker:after, .mdc-slider--disabled .mdc-slider__track-marker-container:after {
  background-color: #9a9a9a;
}

.mdc-slider--disabled .mdc-slider__thumb {
  fill: #9a9a9a;
  stroke: #9a9a9a;
  stroke: #fff;
  stroke: var(--mdc-slider-bg-color-behind-component, white);
}

.mdc-slider:focus {
  outline: none;
}

.mdc-slider__track-container {
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  overflow: hidden;
}

.mdc-slider__track {
  width: 100%;
  height: 100%;
  transform-origin: 0 0;
  will-change: transform;
  position: absolute;
}

.mdc-slider[dir="rtl"] .mdc-slider__track, [dir="rtl"] .mdc-slider .mdc-slider__track {
  transform-origin: 100% 0;
}

.mdc-slider__track-marker-container {
  visibility: hidden;
  margin-left: -1px;
  margin-right: 0;
  display: flex;
}

.mdc-slider[dir="rtl"] .mdc-slider__track-marker-container, [dir="rtl"] .mdc-slider .mdc-slider__track-marker-container {
  margin-left: 0;
  margin-right: -1px;
}

.mdc-slider__track-marker-container:after {
  width: 2px;
  height: 2px;
  content: "";
  display: block;
}

.mdc-slider__track-marker {
  flex: 1;
}

.mdc-slider__track-marker:after {
  width: 2px;
  height: 2px;
  content: "";
  display: block;
}

.mdc-slider__track-marker:first-child:after {
  width: 3px;
}

.mdc-slider__thumb-container {
  width: 21px;
  height: 100%;
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
  position: absolute;
  top: 15px;
  left: 0;
}

.mdc-slider__thumb {
  stroke-width: 3.5px;
  transition: transform .1s ease-out, fill .1s ease-out, stroke .1s ease-out, -webkit-transform .1s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(.571);
}

.mdc-slider__focus-ring {
  width: 21px;
  height: 21px;
  opacity: 0;
  border-radius: 50%;
  transition: transform .26667s ease-out, opacity .26667s ease-out, background-color .26667s ease-out, -webkit-transform .26667s ease-out;
}

.mdc-slider__pin {
  width: 26px;
  height: 26px;
  z-index: 1;
  border-radius: 50% 50% 50% 0%;
  justify-content: center;
  align-items: center;
  margin-top: -2px;
  margin-left: -2px;
  transition: transform .1s ease-out, -webkit-transform .1s ease-out;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg)scale(0)translate(0);
}

.mdc-slider__pin-value-marker {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01786em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.25rem;
  transform: rotate(45deg);
}

.mdc-slider--active .mdc-slider__thumb {
  transform: scale3d(1, 1, 1);
}

.mdc-slider--focus .mdc-slider__thumb {
  animation: .26667s linear mdc-slider-emphasize;
}

.mdc-slider--focus .mdc-slider__focus-ring {
  opacity: .25;
  transform: scale3d(1.55, 1.55, 1.55);
}

.mdc-slider--in-transit .mdc-slider__thumb {
  transition-delay: .14s;
}

.mdc-slider--in-transit .mdc-slider__thumb-container, .mdc-slider--in-transit .mdc-slider__track, .mdc-slider:focus:not(.mdc-slider--active) .mdc-slider__thumb-container, .mdc-slider:focus:not(.mdc-slider--active) .mdc-slider__track {
  transition: transform 80ms, -webkit-transform 80ms;
}

.mdc-slider--discrete.mdc-slider--active .mdc-slider__thumb {
  transform: scale(.571429);
}

.mdc-slider--discrete.mdc-slider--active .mdc-slider__pin {
  transform: rotate(-45deg)scale(1)translate(19px, -20px);
}

.mdc-slider--discrete.mdc-slider--focus .mdc-slider__thumb {
  animation: none;
}

.mdc-slider--discrete.mdc-slider--display-markers .mdc-slider__track-marker-container {
  visibility: visible;
}

.mdc-snackbar {
  box-sizing: border-box;
  pointer-events: none;
  will-change: transform;
  background-color: #323232;
  justify-content: flex-start;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  transition: transform .25s cubic-bezier(.4, 0, 1, 1), -webkit-transform .25s cubic-bezier(.4, 0, 1, 1);
  display: flex;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}

@media (max-width: 599px) {
  .mdc-snackbar {
    width: 100%;
    left: 0;
    transform: translate(0, 100%);
  }
}

@media (min-width: 600px) {
  .mdc-snackbar {
    min-width: 288px;
    max-width: 568px;
    border-radius: 2px;
  }

  .mdc-snackbar--align-start {
    left: 24px;
    right: initial;
    bottom: 24px;
    transform: translate(0, 200%);
  }

  [dir="rtl"] .mdc-snackbar--align-start, .mdc-snackbar--align-start[dir="rtl"] {
    left: initial;
    right: 24px;
  }
}

@media (max-width: 599px) {
  .mdc-snackbar--align-start {
    width: 100%;
    bottom: 0;
    left: 0;
    transform: translate(0, 100%);
  }
}

.mdc-snackbar--active {
  pointer-events: auto;
  transition: transform .25s cubic-bezier(0, 0, .2, 1), -webkit-transform .25s cubic-bezier(0, 0, .2, 1);
  transform: translate(0);
}

.mdc-snackbar--active:not(.mdc-snackbar--align-start) {
  transform: translate(-50%);
}

@media (max-width: 599px) {
  .mdc-snackbar--active:not(.mdc-snackbar--align-start) {
    width: 100%;
    bottom: 0;
    left: 0;
    transform: translate(0);
  }
}

.mdc-snackbar__action-wrapper {
  padding-left: 24px;
  padding-right: 0;
}

[dir="rtl"] .mdc-snackbar__action-wrapper, .mdc-snackbar__action-wrapper[dir="rtl"] {
  padding-left: 0;
  padding-right: 24px;
}

.mdc-snackbar--action-on-bottom {
  flex-direction: column;
}

.mdc-snackbar__text {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .03125em;
  text-decoration: inherit;
  text-transform: inherit;
  height: 48px;
  opacity: 0;
  color: #fff;
  align-items: center;
  margin-left: 0;
  margin-right: auto;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  transition: opacity .3s cubic-bezier(.4, 0, 1, 1);
  display: flex;
}

.mdc-snackbar[dir="rtl"] .mdc-snackbar__text, [dir="rtl"] .mdc-snackbar .mdc-snackbar__text {
  margin-left: auto;
  margin-right: 0;
}

@media (min-width: 600px) {
  .mdc-snackbar__text {
    padding-left: 0;
    padding-right: 24px;
  }

  [dir="rtl"] .mdc-snackbar__text, .mdc-snackbar__text[dir="rtl"] {
    padding-left: 24px;
    padding-right: 0;
  }
}

.mdc-snackbar--action-on-bottom .mdc-snackbar__text {
  margin-right: inherit;
}

.mdc-snackbar--action-on-bottom .mdc-snackbar__action-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  margin: -12px 0 8px auto;
}

[dir="rtl"] .mdc-snackbar--action-on-bottom .mdc-snackbar__action-wrapper, .mdc-snackbar--action-on-bottom .mdc-snackbar__action-wrapper[dir="rtl"] {
  margin-left: 0;
  margin-right: auto;
}

.mdc-snackbar--multiline .mdc-snackbar__text {
  height: 80px;
}

.mdc-snackbar__action-button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .08929em;
  text-transform: uppercase;
  color: #018786;
  color: var(--mdc-theme-secondary, #018786);
  opacity: 0;
  -webkit-user-select: none;
  user-select: none;
  -webkit-appearance: none;
  visibility: hidden;
  background-color: #0000;
  border: none;
  outline: none;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2.25rem;
  text-decoration: none;
  transition: opacity .3s cubic-bezier(.4, 0, 1, 1);
}

.mdc-snackbar__action-button::-moz-focus-inner {
  border: 0;
}

.mdc-snackbar__action-button:hover {
  cursor: pointer;
}

.mdc-snackbar__action-button:not([aria-hidden]) {
  visibility: inherit;
}

.mdc-snackbar--active .mdc-snackbar__text, .mdc-snackbar--active .mdc-snackbar__action-button:not([aria-hidden]) {
  opacity: 1;
  transition: opacity .3s cubic-bezier(.4, 0, 1, 1);
}

.mdc-snackbar--multiline.mdc-snackbar--action-on-bottom .mdc-snackbar__text {
  margin: 0;
}

.mdc-switch {
  -webkit-user-select: none;
  user-select: none;
  outline: none;
  display: inline-block;
  position: relative;
}

.mdc-switch.mdc-switch--checked .mdc-switch__track, .mdc-switch.mdc-switch--checked .mdc-switch__thumb {
  background-color: #018786;
  background-color: var(--mdc-theme-secondary, #018786);
  border-color: #018786;
  border-color: var(--mdc-theme-secondary, #018786);
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__track {
  background-color: #000;
  border-color: #000;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb {
  background-color: #fff;
  border-color: #fff;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:before, .mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:after {
  background-color: #9e9e9e;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:hover:before {
  opacity: .08;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):focus:before, .mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay.mdc-ripple-upgraded--background-focused:before {
  opacity: .24;
  transition-duration: 75ms;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):active:after {
  opacity: .32;
  transition-duration: 75ms;
}

.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .32;
}

.mdc-switch__native-control {
  left: 0;
  right: initial;
  width: 68px;
  height: 48px;
  opacity: 0;
  cursor: pointer;
  pointer-events: auto;
  margin: 0;
  position: absolute;
  top: 0;
}

[dir="rtl"] .mdc-switch__native-control, .mdc-switch__native-control[dir="rtl"] {
  left: initial;
  right: 0;
}

.mdc-switch__track {
  box-sizing: border-box;
  width: 32px;
  height: 14px;
  opacity: .38;
  border: 1px solid;
  border-radius: 7px;
  transition: opacity 90ms cubic-bezier(.4, 0, .2, 1), background-color 90ms cubic-bezier(.4, 0, .2, 1), border-color 90ms cubic-bezier(.4, 0, .2, 1);
}

.mdc-switch__thumb-underlay {
  left: -18px;
  right: initial;
  --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: #0000;
  will-change: transform, opacity;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  transition: transform 90ms cubic-bezier(.4, 0, .2, 1), background-color 90ms cubic-bezier(.4, 0, .2, 1), border-color 90ms cubic-bezier(.4, 0, .2, 1), -webkit-transform 90ms cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: absolute;
  top: -17px;
  transform: translateX(0);
}

[dir="rtl"] .mdc-switch__thumb-underlay, .mdc-switch__thumb-underlay[dir="rtl"] {
  left: initial;
  right: -18px;
}

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

.mdc-switch__thumb-underlay:before {
  z-index: 1;
  transition: opacity 15ms linear, background-color 15ms linear;
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-switch__thumb-underlay:before, .mdc-switch__thumb-underlay:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded:before, .mdc-switch__thumb-underlay.mdc-ripple-upgraded:after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-switch__thumb-underlay:before, .mdc-switch__thumb-underlay:after {
  background-color: #018786;
}

@supports not (-ms-ime-align: auto) {
  .mdc-switch__thumb-underlay:before, .mdc-switch__thumb-underlay:after {
    background-color: var(--mdc-theme-secondary, #018786);
  }
}

.mdc-switch__thumb-underlay:hover:before {
  opacity: .04;
}

.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):focus:before, .mdc-switch__thumb-underlay.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-switch__thumb-underlay.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-switch__thumb {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 1;
  border: 10px solid;
  border-radius: 50%;
  box-shadow: 0 3px 1px -2px #0003, 0 2px 2px #00000024, 0 1px 5px #0000001f;
}

.mdc-switch--checked .mdc-switch__track {
  opacity: .54;
}

.mdc-switch--checked .mdc-switch__thumb-underlay {
  transform: translateX(20px);
}

[dir="rtl"] .mdc-switch--checked .mdc-switch__thumb-underlay, .mdc-switch--checked .mdc-switch__thumb-underlay[dir="rtl"], .mdc-switch--checked .mdc-switch__native-control {
  transform: translateX(-20px);
}

[dir="rtl"] .mdc-switch--checked .mdc-switch__native-control, .mdc-switch--checked .mdc-switch__native-control[dir="rtl"] {
  transform: translateX(20px);
}

.mdc-switch--disabled {
  opacity: .38;
  pointer-events: none;
}

.mdc-switch--disabled .mdc-switch__thumb {
  border-width: 1px;
}

.mdc-switch--disabled .mdc-switch__native-control {
  cursor: default;
  pointer-events: none;
}

.mdc-tab {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .08929em;
  text-transform: uppercase;
  box-sizing: border-box;
  height: 48px;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  -webkit-appearance: none;
  z-index: 1;
  background: none;
  border: none;
  outline: none;
  flex: 1 0 auto;
  justify-content: center;
  padding: 0 24px;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2.25rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.mdc-tab .mdc-tab__text-label, .mdc-tab .mdc-tab__icon {
  color: #000;
  color: var(--mdc-theme-on-surface, #000);
}

.mdc-tab--min-width {
  flex: 0 auto;
}

.mdc-tab__ripple {
  --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: #0000;
  will-change: transform, opacity;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

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

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

.mdc-tab__ripple.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-tab__ripple.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-tab__ripple.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-tab__ripple.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-tab__ripple.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-tab__ripple:before, .mdc-tab__ripple:after {
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

.mdc-tab__ripple.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-tab__ripple:before, .mdc-tab__ripple:after {
  background-color: #6200ee;
}

@supports not (-ms-ime-align: auto) {
  .mdc-tab__ripple:before, .mdc-tab__ripple:after {
    background-color: var(--mdc-theme-primary, #6200ee);
  }
}

.mdc-tab__ripple:hover:before {
  opacity: .04;
}

.mdc-tab__ripple:not(.mdc-ripple-upgraded):focus:before, .mdc-tab__ripple.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-tab__ripple:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-tab__ripple:not(.mdc-ripple-upgraded):active:after {
  opacity: .16;
  transition-duration: 75ms;
}

.mdc-tab__ripple.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .16;
}

.mdc-tab__content {
  height: inherit;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.mdc-tab__text-label, .mdc-tab__icon {
  z-index: 2;
  transition: color .15s linear, opacity .15s linear;
}

.mdc-tab__text-label {
  opacity: .6;
  line-height: 1;
  display: inline-block;
}

.mdc-tab__icon {
  width: 24px;
  height: 24px;
  opacity: .54;
  font-size: 24px;
}

.mdc-tab--stacked {
  height: 72px;
}

.mdc-tab--stacked .mdc-tab__content {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.mdc-tab--stacked .mdc-tab__icon {
  padding-top: 12px;
}

.mdc-tab--stacked .mdc-tab__text-label {
  padding-bottom: 16px;
}

.mdc-tab--active .mdc-tab__text-label, .mdc-tab--active .mdc-tab__icon {
  color: #6200ee;
  color: var(--mdc-theme-primary, #6200ee);
  opacity: 1;
  transition-delay: .1s;
}

.mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon + .mdc-tab__text-label {
  padding-left: 8px;
  padding-right: 0;
}

[dir="rtl"] .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon + .mdc-tab__text-label, .mdc-tab:not(.mdc-tab--stacked) .mdc-tab__icon + .mdc-tab__text-label[dir="rtl"] {
  padding-left: 0;
  padding-right: 8px;
}

.mdc-tab-bar {
  width: 100%;
}

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

.mdc-tab-indicator > .mdc-tab-indicator__content--underline {
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee);
  height: 2px;
}

.mdc-tab-indicator > .mdc-tab-indicator__content--icon {
  color: #018786;
  color: var(--mdc-theme-secondary, #018786);
  height: 34px;
  font-size: 34px;
}

.mdc-tab-indicator__content {
  transform-origin: 0;
  opacity: 0;
}

.mdc-tab-indicator__content--underline {
  width: 100%;
  align-self: flex-end;
}

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

.mdc-tab-indicator--active > .mdc-tab-indicator__content {
  opacity: 1;
}

.mdc-tab-indicator > .mdc-tab-indicator__content {
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), -webkit-transform .25s cubic-bezier(.4, 0, .2, 1);
}

.mdc-tab-indicator--no-transition > .mdc-tab-indicator__content {
  transition: none;
}

.mdc-tab-indicator--fade > .mdc-tab-indicator__content {
  transition: opacity .15s linear;
}

.mdc-tab-indicator--active.mdc-tab-indicator--fade > .mdc-tab-indicator__content {
  transition-delay: .1s;
}

.mdc-tab-scroller {
  overflow-y: hidden;
}

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

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

.mdc-tab-scroller__scroll-area::-webkit-scrollbar, .mdc-tab-scroller__test::-webkit-scrollbar {
  display: none;
}

.mdc-tab-scroller__scroll-area--scroll {
  overflow-x: scroll;
}

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

.mdc-tab-scroller--align-start .mdc-tab-scroller__scroll-content {
  justify-content: flex-start;
}

.mdc-tab-scroller--align-end .mdc-tab-scroller__scroll-content {
  justify-content: flex-end;
}

.mdc-tab-scroller--align-center .mdc-tab-scroller__scroll-content {
  justify-content: center;
}

.mdc-tab-scroller--animating .mdc-tab-scroller__scroll-area {
  -webkit-overflow-scrolling: auto;
}

.mdc-tab-scroller--animating .mdc-tab-scroller__scroll-content {
  transition: transform .25s cubic-bezier(.4, 0, .2, 1), -webkit-transform .25s cubic-bezier(.4, 0, .2, 1);
}

.mdc-text-field-helper-text {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .03333em;
  text-decoration: inherit;
  text-transform: inherit;
  opacity: 0;
  will-change: opacity;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: .75rem;
  font-weight: 400;
  line-height: normal;
  transition: opacity .18s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

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

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

.mdc-text-field--with-leading-icon .mdc-text-field__icon, .mdc-text-field--with-trailing-icon .mdc-text-field__icon {
  cursor: pointer;
  position: absolute;
  bottom: 16px;
}

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

.mdc-text-field {
  --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: #0000;
  will-change: transform, opacity;
  box-sizing: border-box;
  height: 56px;
  will-change: opacity, transform, color;
  border-radius: 4px 4px 0 0;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

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

.mdc-text-field:before {
  z-index: 1;
  transition: opacity 15ms linear, background-color 15ms linear;
}

.mdc-text-field.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-text-field.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-text-field.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-text-field.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-text-field.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-text-field:before, .mdc-text-field:after {
  background-color: #000000de;
}

.mdc-text-field:hover:before {
  opacity: .04;
}

.mdc-text-field:not(.mdc-ripple-upgraded):focus:before, .mdc-text-field.mdc-ripple-upgraded--background-focused:before {
  opacity: .12;
  transition-duration: 75ms;
}

.mdc-text-field:before, .mdc-text-field:after {
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
}

.mdc-text-field.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
  color: #0009;
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
  color: #0009;
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
  color: #0009;
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: #0009;
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input {
  color: #000000de;
}

.mdc-text-field .mdc-text-field__input {
  caret-color: #6200ee;
  caret-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input {
  border-bottom-color: #0000006b;
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input:hover {
  border-bottom-color: #000000de;
}

.mdc-text-field .mdc-line-ripple {
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--textarea) {
  border-bottom-color: #0000001f;
}

.mdc-text-field:not(.mdc-text-field--disabled) + .mdc-text-field-helper-text {
  color: #0009;
}

.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon {
  color: #0000008a;
}

.mdc-text-field:not(.mdc-text-field--disabled) {
  background-color: #f5f5f5;
}

.mdc-text-field .mdc-floating-label {
  left: 16px;
  right: initial;
  bottom: 20px;
}

[dir="rtl"] .mdc-text-field .mdc-floating-label, .mdc-text-field .mdc-floating-label[dir="rtl"] {
  left: initial;
  right: 16px;
}

.mdc-text-field:not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-floating-label {
  max-width: calc(100% - 48px);
}

.mdc-text-field .mdc-floating-label--float-above {
  transform: translateY(-50%)scale(.75);
}

.mdc-text-field .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-text-field-box;
}

@keyframes mdc-floating-label-shake-float-above-text-field-box {
  0% {
    transform: translateX(0)translateY(-50%)scale(.75);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(4%)translateY(-50%)scale(.75);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(-4%)translateY(-50%)scale(.75);
  }

  100% {
    transform: translateX(0)translateY(-50%)scale(.75);
  }
}

.mdc-text-field .mdc-floating-label {
  left: 12px;
  right: initial;
  pointer-events: none;
}

[dir="rtl"] .mdc-text-field .mdc-floating-label, .mdc-text-field .mdc-floating-label[dir="rtl"] {
  left: initial;
  right: 12px;
}

.mdc-text-field__input {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00937em;
  text-decoration: inherit;
  text-transform: inherit;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  appearance: none;
  background: none;
  border: none;
  border-bottom: 1px solid;
  border-radius: 0;
  align-self: flex-end;
  padding: 20px 12px 6px;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
  transition: opacity .18s cubic-bezier(.4, 0, .2, 1);
}

.mdc-text-field__input::-webkit-input-placeholder {
  opacity: 1;
  transition: color .18s cubic-bezier(.4, 0, .2, 1);
}

.mdc-text-field__input:-ms-input-placeholder {
  opacity: 1;
  transition: color .18s cubic-bezier(.4, 0, .2, 1);
}

.mdc-text-field__input::placeholder {
  opacity: 1;
  transition: color .18s cubic-bezier(.4, 0, .2, 1);
}

.mdc-text-field__input:focus {
  outline: none;
}

.mdc-text-field__input:invalid {
  box-shadow: none;
}

.mdc-text-field__input:-webkit-autofill + .mdc-floating-label {
  cursor: auto;
  transform: translateY(-50%)scale(.75);
}

.mdc-text-field--outlined {
  border: none;
  overflow: visible;
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__idle {
  border-color: #0000003d;
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__path {
  stroke: #0000003d;
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline__idle, .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline__idle {
  border-color: #000000de;
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline .mdc-notched-outline__path, .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline .mdc-notched-outline__path {
  stroke: #000000de;
}

.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__path {
  stroke: #6200ee;
  stroke: var(--mdc-theme-primary, #6200ee);
}

.mdc-text-field--outlined .mdc-floating-label--float-above {
  transform: translateY(-130%)scale(.75);
}

.mdc-text-field--outlined .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-text-field-outlined;
}

.mdc-text-field--outlined .mdc-notched-outline, .mdc-text-field--outlined .mdc-notched-outline__idle {
  border-radius: 4px;
}

.mdc-text-field--outlined:before, .mdc-text-field--outlined:after, .mdc-text-field--outlined:not(.mdc-text-field--disabled) {
  background-color: #0000;
}

.mdc-text-field--outlined .mdc-text-field__input {
  z-index: 1;
  background-color: #0000;
  padding: 12px 16px 14px;
  display: flex;
  border: none !important;
}

.mdc-text-field--outlined .mdc-text-field__icon {
  z-index: 2;
}

.mdc-text-field--outlined .mdc-floating-label {
  left: 16px;
  right: initial;
  width: auto;
}

[dir="rtl"] .mdc-text-field--outlined .mdc-floating-label, .mdc-text-field--outlined .mdc-floating-label[dir="rtl"] {
  left: initial;
  right: 16px;
}

.mdc-text-field--outlined.mdc-text-field--focused .mdc-notched-outline__path {
  stroke-width: 2px;
}

.mdc-text-field--outlined.mdc-text-field--disabled {
  background-color: #0000;
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__idle {
  border-color: #0000000f;
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-notched-outline__path {
  stroke: #0000000f;
}

.mdc-text-field--outlined.mdc-text-field--disabled .mdc-text-field__input {
  border-bottom: none;
}

.mdc-text-field--outlined.mdc-text-field--dense {
  height: 48px;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
  transform: translateY(-110%)scale(.923);
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-text-field-outlined-dense;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__input {
  padding: 12px 12px 7px;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label {
  bottom: 16px;
}

.mdc-text-field--outlined.mdc-text-field--dense .mdc-text-field__icon {
  top: 12px;
}

.mdc-text-field--with-leading-icon .mdc-text-field__icon {
  left: 16px;
  right: initial;
}

[dir="rtl"] .mdc-text-field--with-leading-icon .mdc-text-field__icon, .mdc-text-field--with-leading-icon .mdc-text-field__icon[dir="rtl"] {
  left: initial;
  right: 16px;
}

.mdc-text-field--with-leading-icon .mdc-text-field__input {
  padding-left: 48px;
  padding-right: 16px;
}

[dir="rtl"] .mdc-text-field--with-leading-icon .mdc-text-field__input, .mdc-text-field--with-leading-icon .mdc-text-field__input[dir="rtl"] {
  padding-left: 16px;
  padding-right: 48px;
}

.mdc-text-field--with-leading-icon .mdc-floating-label {
  left: 48px;
  right: initial;
}

[dir="rtl"] .mdc-text-field--with-leading-icon .mdc-floating-label, .mdc-text-field--with-leading-icon .mdc-floating-label[dir="rtl"] {
  left: initial;
  right: 48px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
  transform: translateY(-130%)translateX(-32px)scale(.75);
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above[dir="rtl"] {
  transform: translateY(-130%)translateX(32px)scale(.75);
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-text-field-outlined-leading-icon;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake, .mdc-text-field--with-leading-icon.mdc-text-field--outlined[dir="rtl"] .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl;
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above {
  transform: translateY(-110%)translateX(-21px)scale(.923);
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above, .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--float-above[dir="rtl"] {
  transform: translateY(-110%)translateX(21px)scale(.923);
}

.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense .mdc-floating-label--shake, .mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-text-field--dense[dir="rtl"] .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl;
}

.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
  left: initial;
  right: 12px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon .mdc-text-field__icon, .mdc-text-field--with-trailing-icon .mdc-text-field__icon[dir="rtl"] {
  left: 12px;
  right: initial;
}

.mdc-text-field--with-trailing-icon .mdc-text-field__input {
  padding-left: 12px;
  padding-right: 48px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon .mdc-text-field__input, .mdc-text-field--with-trailing-icon .mdc-text-field__input[dir="rtl"] {
  padding-left: 48px;
  padding-right: 12px;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__icon {
  left: initial;
  right: 16px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__icon, .mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__icon[dir="rtl"] {
  left: 16px;
  right: initial;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__input {
  padding-left: 16px;
  padding-right: 48px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__input, .mdc-text-field--with-trailing-icon.mdc-text-field--outlined .mdc-text-field__input[dir="rtl"] {
  padding-left: 48px;
  padding-right: 16px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon {
  left: 16px;
  right: auto;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon, .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon[dir="rtl"] {
  left: auto;
  right: 16px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon ~ .mdc-text-field__icon {
  left: auto;
  right: 12px;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon ~ .mdc-text-field__icon, .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__icon ~ .mdc-text-field__icon[dir="rtl"] {
  left: 12px;
  right: auto;
}

.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__input, [dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__input, .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-text-field__input[dir="rtl"] {
  padding-left: 48px;
  padding-right: 48px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-floating-label {
  left: 48px;
  right: auto;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-floating-label, .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon .mdc-floating-label[dir="rtl"] {
  left: auto;
  right: 48px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon, .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
  bottom: 16px;
  transform: scale(.8);
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon {
  left: 12px;
  right: initial;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon, .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
  left: initial;
  right: 12px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input {
  padding-left: 38px;
  padding-right: 12px;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input, .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
  padding-left: 12px;
  padding-right: 38px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label {
  left: 38px;
  right: initial;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label, .mdc-text-field--with-leading-icon.mdc-text-field--dense .mdc-floating-label[dir="rtl"] {
  left: initial;
  right: 38px;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
  left: initial;
  right: 12px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon, .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"] {
  left: 12px;
  right: initial;
}

.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input {
  padding-left: 12px;
  padding-right: 38px;
}

[dir="rtl"] .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input, .mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
  padding-left: 38px;
  padding-right: 12px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon {
  left: 12px;
  right: auto;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon, .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon[dir="rtl"], .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon ~ .mdc-text-field__icon {
  left: auto;
  right: 12px;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon ~ .mdc-text-field__icon, .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__icon ~ .mdc-text-field__icon[dir="rtl"] {
  left: 12px;
  right: auto;
}

.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input, [dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input, .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-text-field__input[dir="rtl"] {
  padding-left: 38px;
  padding-right: 38px;
}

.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-floating-label {
  left: 38px;
  right: auto;
}

[dir="rtl"] .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-floating-label, .mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--dense .mdc-floating-label[dir="rtl"] {
  left: auto;
  right: 38px;
}

.mdc-text-field--dense .mdc-floating-label--float-above {
  transform: translateY(-70%)scale(.923);
}

.mdc-text-field--dense .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-text-field-dense;
}

.mdc-text-field--dense .mdc-text-field__input {
  padding: 12px 12px 0;
}

.mdc-text-field--dense .mdc-floating-label {
  font-size: .813rem;
}

.mdc-text-field__input:required + .mdc-floating-label:after {
  content: "*";
  margin-left: 1px;
}

.mdc-text-field--textarea {
  width: auto;
  height: auto;
  border: 1px solid;
  border-radius: 4px;
  transition: none;
  display: flex;
  overflow: hidden;
}

.mdc-text-field--textarea .mdc-floating-label {
  border-radius: 4px 4px 0 0;
}

.mdc-text-field--textarea .mdc-text-field__input {
  border-radius: 4px;
}

.mdc-text-field--textarea:not(.mdc-text-field--disabled), .mdc-text-field--textarea:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
  border-color: #000000ba;
}

.mdc-text-field--textarea .mdc-floating-label--float-above {
  transform: translateY(-50%)scale(.923);
}

.mdc-text-field--textarea .mdc-floating-label--shake {
  animation: .25s mdc-floating-label-shake-float-above-textarea;
}

.mdc-text-field--textarea:before, .mdc-text-field--textarea:after, .mdc-text-field--textarea:not(.mdc-text-field--disabled) {
  background-color: #0000;
}

.mdc-text-field--textarea .mdc-text-field__input {
  box-sizing: content-box;
  height: auto;
  border: 1px solid #0000;
  align-self: auto;
  margin: 0;
  padding: 32px 16px 16px;
}

.mdc-text-field--textarea .mdc-floating-label {
  width: auto;
  pointer-events: none;
  background-color: #fff;
  margin-top: 2px;
  margin-left: 8px;
  margin-right: 0;
  padding: 12px 8px 8px;
  line-height: 1.15;
  inset: 18px 0 auto 1px;
}

[dir="rtl"] .mdc-text-field--textarea .mdc-floating-label, .mdc-text-field--textarea .mdc-floating-label[dir="rtl"] {
  margin-left: 0;
  margin-right: 8px;
  left: 0;
  right: 1px;
}

.mdc-text-field--fullwidth {
  width: 100%;
}

.mdc-text-field--fullwidth:not(.mdc-text-field--textarea) {
  display: block;
}

.mdc-text-field--fullwidth:not(.mdc-text-field--textarea):before, .mdc-text-field--fullwidth:not(.mdc-text-field--textarea):after, .mdc-text-field--fullwidth:not(.mdc-text-field--textarea):not(.mdc-text-field--disabled) {
  background-color: #0000;
}

.mdc-text-field--fullwidth:not(.mdc-text-field--textarea) .mdc-text-field__input {
  padding: 0;
}

.mdc-text-field--fullwidth.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--textarea) {
  border-bottom-color: #b00020;
  border-bottom-color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--dense + .mdc-text-field-helper-text {
  margin-bottom: 4px;
}

.mdc-text-field + .mdc-text-field-helper-text {
  margin-left: 12px;
  margin-right: 12px;
}

.mdc-text-field--outlined + .mdc-text-field-helper-text {
  margin-left: 16px;
  margin-right: 16px;
}

.mdc-form-field > .mdc-text-field + label {
  align-self: flex-start;
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-floating-label {
  color: #6200eede;
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
  color: #6200eede;
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
  color: #6200eede;
}

.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: #6200eede;
}

.mdc-text-field--focused .mdc-text-field__input:required + .mdc-floating-label:after {
  color: error;
}

.mdc-text-field--focused + .mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg) {
  opacity: 1;
}

.mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled), .mdc-text-field--textarea.mdc-text-field--focused:not(.mdc-text-field--disabled) .mdc-text-field__input:focus {
  border-color: #6200ee;
  border-color: var(--mdc-theme-primary, #6200ee);
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input, .mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--outlined):not(.mdc-text-field--textarea) .mdc-text-field__input:hover {
  border-bottom-color: #b00020;
  border-bottom-color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple {
  background-color: #b00020;
  background-color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label {
  color: #b00020;
  color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::-webkit-input-placeholder {
  color: #b00020;
  color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
  color: #b00020;
  color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
  color: #b00020;
  color: var(--mdc-theme-error, #b00020);
}

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

.mdc-text-field--invalid .mdc-text-field__input {
  caret-color: #b00020;
  caret-color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--invalid.mdc-text-field--with-trailing-icon:not(.mdc-text-field--with-leading-icon):not(.mdc-text-field--disabled) .mdc-text-field__icon, .mdc-text-field--invalid.mdc-text-field--with-trailing-icon.mdc-text-field--with-leading-icon:not(.mdc-text-field--disabled) .mdc-text-field__icon ~ .mdc-text-field__icon {
  color: #b00020;
  color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--invalid + .mdc-text-field-helper-text--validation-msg {
  opacity: 1;
}

.mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled), .mdc-text-field--textarea.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__input:focus, .mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__idle {
  border-color: #b00020;
  border-color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__path {
  stroke: #b00020;
  stroke: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline__idle, .mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline__idle {
  border-color: #b00020;
  border-color: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__input:hover ~ .mdc-notched-outline .mdc-notched-outline__path, .mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-text-field__icon:hover ~ .mdc-notched-outline .mdc-notched-outline__path, .mdc-text-field--outlined.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused .mdc-notched-outline__path {
  stroke: #b00020;
  stroke: var(--mdc-theme-error, #b00020);
}

.mdc-text-field--disabled {
  pointer-events: none;
  background-color: #fafafa;
  border-bottom: none;
}

.mdc-text-field--disabled .mdc-text-field__input {
  color: #0000005e;
  border-bottom-color: #0000000f;
}

.mdc-text-field--disabled .mdc-floating-label {
  color: #0000005e;
}

.mdc-text-field--disabled .mdc-text-field__input::-webkit-input-placeholder {
  color: #0000005e;
}

.mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder {
  color: #0000005e;
}

.mdc-text-field--disabled .mdc-text-field__input::placeholder {
  color: #0000005e;
}

.mdc-text-field--disabled + .mdc-text-field-helper-text {
  color: #0000005e;
}

.mdc-text-field--disabled .mdc-text-field__icon {
  color: #0000004d;
}

.mdc-text-field--disabled:not(.mdc-text-field--textarea) {
  border-bottom-color: #0000001f;
}

.mdc-text-field--disabled .mdc-floating-label {
  cursor: default;
}

.mdc-text-field--textarea.mdc-text-field--disabled {
  background-color: #f9f9f9;
  border-style: solid;
  border-color: #00000042;
  border-bottom-width: 1px;
}

.mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__input:focus {
  border-color: #00000042;
}

.mdc-text-field--textarea.mdc-text-field--disabled .mdc-text-field__input {
  border: 1px solid #0000;
}

.mdc-text-field--textarea.mdc-text-field--disabled .mdc-floating-label {
  background-color: #f9f9f9;
}

@keyframes mdc-floating-label-shake-float-above-text-field-dense {
  0% {
    transform: translateX(0)translateY(-70%)scale(.923);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(4%)translateY(-70%)scale(.923);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(-4%)translateY(-70%)scale(.923);
  }

  100% {
    transform: translateX(0)translateY(-70%)scale(.923);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined {
  0% {
    transform: translateX(0)translateY(-130%)scale(.75);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(4%)translateY(-130%)scale(.75);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(-4%)translateY(-130%)scale(.75);
  }

  100% {
    transform: translateX(0)translateY(-130%)scale(.75);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-dense {
  0% {
    transform: translateX(0)translateY(-110%)scale(.923);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(4%)translateY(-110%)scale(.923);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(-4%)translateY(-110%)scale(.923);
  }

  100% {
    transform: translateX(0)translateY(-110%)scale(.923);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon {
  0% {
    transform: translateX(calc(0 - 32px))translateY(-130%)scale(.75);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(calc(4% - 32px))translateY(-130%)scale(.75);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(calc(-4% - 32px))translateY(-130%)scale(.75);
  }

  100% {
    transform: translateX(calc(0 - 32px))translateY(-130%)scale(.75);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense {
  0% {
    transform: translateX(calc(0 - 21px))translateY(-110%)scale(.923);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(calc(4% - 21px))translateY(-110%)scale(.923);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(calc(-4% - 21px))translateY(-110%)scale(.923);
  }

  100% {
    transform: translateX(calc(0 - 21px))translateY(-110%)scale(.923);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
  0% {
    transform: translateX(calc(0 + 32px))translateY(-130%)scale(.75);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(calc(4% + 32px))translateY(-130%)scale(.75);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(calc(32px - 4%))translateY(-130%)scale(.75);
  }

  100% {
    transform: translateX(calc(0 + 32px))translateY(-130%)scale(.75);
  }
}

@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-dense-rtl {
  0% {
    transform: translateX(calc(0 + 21px))translateY(-110%)scale(.923);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(calc(4% + 21px))translateY(-110%)scale(.923);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(calc(21px - 4%))translateY(-110%)scale(.923);
  }

  100% {
    transform: translateX(calc(0 + 21px))translateY(-110%)scale(.923);
  }
}

@keyframes mdc-floating-label-shake-float-above-textarea {
  0% {
    transform: translateX(0)translateY(-50%)scale(.923);
  }

  33% {
    animation-timing-function: cubic-bezier(.5, 0, .70173, .49582);
    transform: translateX(4%)translateY(-50%)scale(.923);
  }

  66% {
    animation-timing-function: cubic-bezier(.30244, .38135, .55, .95635);
    transform: translateX(-4%)translateY(-50%)scale(.923);
  }

  100% {
    transform: translateX(0)translateY(-50%)scale(.923);
  }
}

:root {
  --mdc-theme-primary: #6200ee;
  --mdc-theme-secondary: #018786;
  --mdc-theme-background: #fff;
  --mdc-theme-surface: #fff;
  --mdc-theme-error: #b00020;
  --mdc-theme-on-primary: #fff;
  --mdc-theme-on-secondary: #fff;
  --mdc-theme-on-surface: #000;
  --mdc-theme-on-error: #fff;
  --mdc-theme-text-primary-on-background: #000000de;
  --mdc-theme-text-secondary-on-background: #0000008a;
  --mdc-theme-text-hint-on-background: #00000061;
  --mdc-theme-text-disabled-on-background: #00000061;
  --mdc-theme-text-icon-on-background: #00000061;
  --mdc-theme-text-primary-on-light: #000000de;
  --mdc-theme-text-secondary-on-light: #0000008a;
  --mdc-theme-text-hint-on-light: #00000061;
  --mdc-theme-text-disabled-on-light: #00000061;
  --mdc-theme-text-icon-on-light: #00000061;
  --mdc-theme-text-primary-on-dark: white;
  --mdc-theme-text-secondary-on-dark: #ffffffb3;
  --mdc-theme-text-hint-on-dark: #ffffff80;
  --mdc-theme-text-disabled-on-dark: #ffffff80;
  --mdc-theme-text-icon-on-dark: #ffffff80;
}

.mdc-theme--primary {
  color: #6200ee !important;
  color: var(--mdc-theme-primary, #6200ee) !important;
}

.mdc-theme--secondary {
  color: #018786 !important;
  color: var(--mdc-theme-secondary, #018786) !important;
}

.mdc-theme--background {
  background-color: #fff;
  background-color: var(--mdc-theme-background, #fff);
}

.mdc-theme--surface {
  background-color: #fff;
  background-color: var(--mdc-theme-surface, #fff);
}

.mdc-theme--error {
  color: #b00020 !important;
  color: var(--mdc-theme-error, #b00020) !important;
}

.mdc-theme--on-primary {
  color: #fff !important;
  color: var(--mdc-theme-on-primary, #fff) !important;
}

.mdc-theme--on-secondary {
  color: #fff !important;
  color: var(--mdc-theme-on-secondary, #fff) !important;
}

.mdc-theme--on-surface {
  color: #000 !important;
  color: var(--mdc-theme-on-surface, #000) !important;
}

.mdc-theme--on-error {
  color: #fff !important;
  color: var(--mdc-theme-on-error, #fff) !important;
}

.mdc-theme--text-primary-on-background {
  color: #000000de !important;
  color: var(--mdc-theme-text-primary-on-background, #000000de) !important;
}

.mdc-theme--text-secondary-on-background {
  color: #0000008a !important;
  color: var(--mdc-theme-text-secondary-on-background, #0000008a) !important;
}

.mdc-theme--text-hint-on-background {
  color: #00000061 !important;
  color: var(--mdc-theme-text-hint-on-background, #00000061) !important;
}

.mdc-theme--text-disabled-on-background {
  color: #00000061 !important;
  color: var(--mdc-theme-text-disabled-on-background, #00000061) !important;
}

.mdc-theme--text-icon-on-background {
  color: #00000061 !important;
  color: var(--mdc-theme-text-icon-on-background, #00000061) !important;
}

.mdc-theme--text-primary-on-light {
  color: #000000de !important;
  color: var(--mdc-theme-text-primary-on-light, #000000de) !important;
}

.mdc-theme--text-secondary-on-light {
  color: #0000008a !important;
  color: var(--mdc-theme-text-secondary-on-light, #0000008a) !important;
}

.mdc-theme--text-hint-on-light {
  color: #00000061 !important;
  color: var(--mdc-theme-text-hint-on-light, #00000061) !important;
}

.mdc-theme--text-disabled-on-light {
  color: #00000061 !important;
  color: var(--mdc-theme-text-disabled-on-light, #00000061) !important;
}

.mdc-theme--text-icon-on-light {
  color: #00000061 !important;
  color: var(--mdc-theme-text-icon-on-light, #00000061) !important;
}

.mdc-theme--text-primary-on-dark {
  color: #fff !important;
  color: var(--mdc-theme-text-primary-on-dark, white) !important;
}

.mdc-theme--text-secondary-on-dark {
  color: #ffffffb3 !important;
  color: var(--mdc-theme-text-secondary-on-dark, #ffffffb3) !important;
}

.mdc-theme--text-hint-on-dark {
  color: #ffffff80 !important;
  color: var(--mdc-theme-text-hint-on-dark, #ffffff80) !important;
}

.mdc-theme--text-disabled-on-dark {
  color: #ffffff80 !important;
  color: var(--mdc-theme-text-disabled-on-dark, #ffffff80) !important;
}

.mdc-theme--text-icon-on-dark {
  color: #ffffff80 !important;
  color: var(--mdc-theme-text-icon-on-dark, #ffffff80) !important;
}

.mdc-theme--primary-bg {
  background-color: #6200ee !important;
  background-color: var(--mdc-theme-primary, #6200ee) !important;
}

.mdc-theme--secondary-bg {
  background-color: #018786 !important;
  background-color: var(--mdc-theme-secondary, #018786) !important;
}

.mdc-toolbar {
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee);
  color: #fff;
  box-sizing: border-box;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.mdc-toolbar .mdc-toolbar__icon {
  color: #fff;
}

.mdc-toolbar .mdc-toolbar__icon:before, .mdc-toolbar .mdc-toolbar__icon:after {
  background-color: #fff;
}

.mdc-toolbar .mdc-toolbar__icon:hover:before {
  opacity: .08;
}

.mdc-toolbar .mdc-toolbar__icon:not(.mdc-ripple-upgraded):focus:before, .mdc-toolbar .mdc-toolbar__icon.mdc-ripple-upgraded--background-focused:before {
  opacity: .24;
  transition-duration: 75ms;
}

.mdc-toolbar .mdc-toolbar__icon:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-toolbar .mdc-toolbar__icon:not(.mdc-ripple-upgraded):active:after {
  opacity: .32;
  transition-duration: 75ms;
}

.mdc-toolbar .mdc-toolbar__icon.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .32;
}

.mdc-toolbar__row {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  min-height: 64px;
  align-items: center;
  display: flex;
  position: relative;
}

@media (max-width: 959px) and (orientation: landscape) {
  .mdc-toolbar__row {
    min-height: 48px;
  }
}

@media (max-width: 599px) {
  .mdc-toolbar__row {
    min-height: 56px;
  }
}

.mdc-toolbar__section {
  box-sizing: border-box;
  min-width: 0;
  height: 100%;
  z-index: 1;
  flex: 1;
  justify-content: center;
  align-items: start;
  padding: 8px;
  display: inline-flex;
}

@media (max-width: 959px) and (orientation: landscape) {
  .mdc-toolbar__section {
    padding: 0;
  }
}

@media (max-width: 599px) {
  .mdc-toolbar__section {
    padding: 4px 0;
  }
}

.mdc-toolbar__section--align-start {
  order: -1;
  justify-content: flex-start;
  padding-left: 12px;
  padding-right: 0;
}

[dir="rtl"] .mdc-toolbar__section--align-start, .mdc-toolbar__section--align-start[dir="rtl"] {
  padding-left: 0;
  padding-right: 12px;
}

@media (max-width: 959px) and (orientation: landscape) {
  .mdc-toolbar__section--align-start {
    padding-left: 4px;
    padding-right: 0;
  }

  [dir="rtl"] .mdc-toolbar__section--align-start, .mdc-toolbar__section--align-start[dir="rtl"] {
    padding-left: 0;
    padding-right: 4px;
  }
}

@media (max-width: 599px) {
  .mdc-toolbar__section--align-start {
    padding-left: 4px;
    padding-right: 0;
  }

  [dir="rtl"] .mdc-toolbar__section--align-start, .mdc-toolbar__section--align-start[dir="rtl"] {
    padding-left: 0;
    padding-right: 4px;
  }
}

.mdc-toolbar__section--align-end {
  order: 1;
  justify-content: flex-end;
  padding-left: 0;
  padding-right: 12px;
}

[dir="rtl"] .mdc-toolbar__section--align-end, .mdc-toolbar__section--align-end[dir="rtl"] {
  padding-left: 12px;
  padding-right: 0;
}

@media (max-width: 959px) and (orientation: landscape) {
  .mdc-toolbar__section--align-end {
    padding-left: 0;
    padding-right: 4px;
  }

  [dir="rtl"] .mdc-toolbar__section--align-end, .mdc-toolbar__section--align-end[dir="rtl"] {
    padding-left: 4px;
    padding-right: 0;
  }
}

@media (max-width: 599px) {
  .mdc-toolbar__section--align-end {
    padding-left: 0;
    padding-right: 4px;
  }

  [dir="rtl"] .mdc-toolbar__section--align-end, .mdc-toolbar__section--align-end[dir="rtl"] {
    padding-left: 4px;
    padding-right: 0;
  }
}

.mdc-toolbar__title {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .0125em;
  text-decoration: inherit;
  text-transform: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
  align-self: center;
  margin-left: 24px;
  margin-right: 0;
  padding: 12px 0;
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
  overflow: hidden;
}

[dir="rtl"] .mdc-toolbar__title, .mdc-toolbar__title[dir="rtl"] {
  margin-left: 0;
  margin-right: 24px;
}

.mdc-toolbar__icon, .mdc-toolbar__menu-icon {
  --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: #0000;
  will-change: transform, opacity;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  fill: currentColor;
  color: inherit;
  cursor: pointer;
  background-color: #0000;
  border: none;
  outline: none;
  justify-content: center;
  align-items: start;
  padding: 12px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.mdc-toolbar__icon:before, .mdc-toolbar__icon:after, .mdc-toolbar__menu-icon:before, .mdc-toolbar__menu-icon:after {
  opacity: 0;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  position: absolute;
}

.mdc-toolbar__icon:before, .mdc-toolbar__menu-icon:before {
  z-index: 1;
  transition: opacity 15ms linear, background-color 15ms linear;
}

.mdc-toolbar__icon.mdc-ripple-upgraded:before, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-toolbar__icon.mdc-ripple-upgraded:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-toolbar__icon.mdc-ripple-upgraded--unbounded:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-toolbar__icon.mdc-ripple-upgraded--foreground-activation:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-toolbar__icon.mdc-ripple-upgraded--foreground-deactivation:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-toolbar__icon:before, .mdc-toolbar__icon:after, .mdc-toolbar__menu-icon:before, .mdc-toolbar__menu-icon:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.mdc-toolbar__icon.mdc-ripple-upgraded:before, .mdc-toolbar__icon.mdc-ripple-upgraded:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:before, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-toolbar__icon.mdc-ripple-upgraded:after, .mdc-toolbar__menu-icon.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-toolbar__menu-icon + .mdc-toolbar__title {
  margin-left: 8px;
  margin-right: 0;
}

[dir="rtl"] .mdc-toolbar__menu-icon + .mdc-toolbar__title, .mdc-toolbar__menu-icon + .mdc-toolbar__title[dir="rtl"] {
  margin-left: 0;
  margin-right: 8px;
}

@media (max-width: 599px) {
  .mdc-toolbar__title {
    margin-left: 16px;
    margin-right: 0;
  }

  [dir="rtl"] .mdc-toolbar__title, .mdc-toolbar__title[dir="rtl"] {
    margin-left: 0;
    margin-right: 16px;
  }
}

.mdc-toolbar--fixed {
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
}

.mdc-toolbar--flexible {
  --mdc-toolbar-ratio-to-extend-flexible: 4;
}

.mdc-toolbar--flexible .mdc-toolbar__row:first-child {
  height: 256px;
  height: calc(64px * var(--mdc-toolbar-ratio-to-extend-flexible, 4));
}

@media (max-width: 599px) {
  .mdc-toolbar--flexible .mdc-toolbar__row:first-child {
    height: 224px;
    height: calc(56px * var(--mdc-toolbar-ratio-to-extend-flexible, 4));
  }
}

.mdc-toolbar--flexible .mdc-toolbar__row:first-child:after {
  content: "";
  position: absolute;
}

.mdc-toolbar--flexible-default-behavior .mdc-toolbar__title {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .0125em;
  text-decoration: inherit;
  text-transform: inherit;
  align-self: flex-end;
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
}

.mdc-toolbar--flexible-default-behavior .mdc-toolbar__row:first-child:after {
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: opacity .2s;
  top: 0;
  left: 0;
}

.mdc-toolbar--flexible-default-behavior.mdc-toolbar--flexible-space-minimized .mdc-toolbar__row:first-child:after {
  opacity: 0;
}

.mdc-toolbar--flexible-default-behavior.mdc-toolbar--flexible-space-minimized .mdc-toolbar__title {
  font-weight: 500;
}

.mdc-toolbar--waterfall.mdc-toolbar--fixed {
  will-change: box-shadow;
  transition: box-shadow .28s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 #0003, 0 0 #00000024, 0 0 #0000001f;
}

.mdc-toolbar--waterfall.mdc-toolbar--fixed.mdc-toolbar--flexible-space-minimized {
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
}

.mdc-toolbar--waterfall.mdc-toolbar--fixed.mdc-toolbar--fixed-lastrow-only.mdc-toolbar--flexible-space-minimized {
  box-shadow: 0 0 #0003, 0 0 #00000024, 0 0 #0000001f;
}

.mdc-toolbar--waterfall.mdc-toolbar--fixed.mdc-toolbar--fixed-lastrow-only.mdc-toolbar--fixed-at-last-row {
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
}

.mdc-toolbar-fixed-adjust {
  padding-top: 64px;
}

@media (max-width: 959px) and (max-height: 599px) {
  .mdc-toolbar-fixed-adjust {
    padding-top: 48px;
  }
}

@media (max-width: 599px) {
  .mdc-toolbar-fixed-adjust {
    padding-top: 56px;
  }
}

.mdc-toolbar__section--shrink-to-fit {
  flex: none;
}

.mdc-top-app-bar {
  background-color: #6200ee;
  background-color: var(--mdc-theme-primary, #6200ee);
  color: #fff;
  box-sizing: border-box;
  width: 100%;
  z-index: 4;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
  position: fixed;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon {
  color: #fff;
  color: var(--mdc-theme-on-primary, #fff);
}

.mdc-top-app-bar .mdc-top-app-bar__action-item:before, .mdc-top-app-bar .mdc-top-app-bar__action-item:after, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:after {
  background-color: #fff;
}

@supports not (-ms-ime-align: auto) {
  .mdc-top-app-bar .mdc-top-app-bar__action-item:before, .mdc-top-app-bar .mdc-top-app-bar__action-item:after, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:after {
    background-color: var(--mdc-theme-on-primary, #fff);
  }
}

.mdc-top-app-bar .mdc-top-app-bar__action-item:hover:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:hover:before {
  opacity: .08;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):focus:before, .mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-upgraded--background-focused:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):focus:before, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--background-focused:before {
  opacity: .24;
  transition-duration: 75ms;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):after, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):after {
  transition: opacity .15s linear;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):active:after, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):active:after {
  opacity: .32;
  transition-duration: 75ms;
}

.mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-upgraded, .mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded {
  --mdc-ripple-fg-opacity: .32;
}

.mdc-top-app-bar__row {
  box-sizing: border-box;
  width: 100%;
  height: 64px;
  display: flex;
  position: relative;
}

.mdc-top-app-bar__section {
  min-width: 0;
  z-index: 1;
  flex: auto;
  align-items: center;
  padding: 8px 12px;
  display: inline-flex;
}

.mdc-top-app-bar__section--align-start {
  order: -1;
  justify-content: flex-start;
}

.mdc-top-app-bar__section--align-end {
  order: 1;
  justify-content: flex-end;
}

.mdc-top-app-bar__title {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .0125em;
  text-decoration: inherit;
  text-transform: inherit;
  text-overflow: ellipsis;
  white-space: nowrap;
  z-index: 1;
  padding-left: 20px;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
  overflow: hidden;
}

[dir="rtl"] .mdc-top-app-bar__title, .mdc-top-app-bar__title[dir="rtl"] {
  padding-left: 0;
  padding-right: 20px;
}

.mdc-top-app-bar__action-item, .mdc-top-app-bar__navigation-icon {
  --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: #0000;
  will-change: transform, opacity;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  fill: currentColor;
  color: inherit;
  cursor: pointer;
  background-color: #0000;
  border: none;
  outline: none;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.mdc-top-app-bar__action-item:before, .mdc-top-app-bar__action-item:after, .mdc-top-app-bar__navigation-icon:before, .mdc-top-app-bar__navigation-icon:after {
  opacity: 0;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  position: absolute;
}

.mdc-top-app-bar__action-item:before, .mdc-top-app-bar__navigation-icon:before {
  z-index: 1;
  transition: opacity 15ms linear, background-color 15ms linear;
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded:before, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:before {
  -webkit-transform: scale(var(--mdc-ripple-fg-scale, 1));
  transform: scale(var(--mdc-ripple-fg-scale, 1));
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:after {
  transform-origin: center;
  top: 0;
  left: 0;
  transform: scale(0);
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded--unbounded:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--unbounded:after {
  top: var(--mdc-ripple-top, 0);
  left: var(--mdc-ripple-left, 0);
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded--foreground-activation:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--foreground-activation:after {
  animation: .225s forwards mdc-ripple-fg-radius-in, 75ms forwards mdc-ripple-fg-opacity-in;
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded--foreground-deactivation:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--foreground-deactivation:after {
  -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));
  animation: .15s mdc-ripple-fg-opacity-out;
}

.mdc-top-app-bar__action-item:before, .mdc-top-app-bar__action-item:after, .mdc-top-app-bar__navigation-icon:before, .mdc-top-app-bar__navigation-icon:after {
  width: 100%;
  height: 100%;
  top: 0%;
  left: 0%;
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded:before, .mdc-top-app-bar__action-item.mdc-ripple-upgraded:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:before, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:after {
  top: var(--mdc-ripple-top, calc(50% - 50%));
  left: var(--mdc-ripple-left, calc(50% - 50%));
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-top-app-bar__action-item.mdc-ripple-upgraded:after, .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded:after {
  width: var(--mdc-ripple-fg-size, 100%);
  height: var(--mdc-ripple-fg-size, 100%);
}

.mdc-top-app-bar--short-collapsed {
  border-radius: 0 0 24px;
}

[dir="rtl"] .mdc-top-app-bar--short-collapsed, .mdc-top-app-bar--short-collapsed[dir="rtl"] {
  border-radius: 0 0 0 24px;
}

.mdc-top-app-bar--short {
  width: 100%;
  transition: width .25s cubic-bezier(.4, 0, .2, 1);
  top: 0;
  left: 0;
  right: auto;
}

[dir="rtl"] .mdc-top-app-bar--short, .mdc-top-app-bar--short[dir="rtl"] {
  left: auto;
  right: 0;
}

.mdc-top-app-bar--short .mdc-top-app-bar__row {
  height: 56px;
}

.mdc-top-app-bar--short .mdc-top-app-bar__section {
  padding: 4px;
}

.mdc-top-app-bar--short .mdc-top-app-bar__title {
  opacity: 1;
  transition: opacity .2s cubic-bezier(.4, 0, .2, 1);
}

.mdc-top-app-bar--short-collapsed {
  width: 56px;
  transition: width .3s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
}

.mdc-top-app-bar--short-collapsed .mdc-top-app-bar__title {
  display: none;
}

.mdc-top-app-bar--short-collapsed .mdc-top-app-bar__action-item {
  transition: padding .15s cubic-bezier(.4, 0, .2, 1);
}

.mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item {
  width: 112px;
}

.mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item .mdc-top-app-bar__section--align-end {
  padding-left: 0;
  padding-right: 12px;
}

[dir="rtl"] .mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item .mdc-top-app-bar__section--align-end, .mdc-top-app-bar--short-collapsed.mdc-top-app-bar--short-has-action-item .mdc-top-app-bar__section--align-end[dir="rtl"] {
  padding-left: 12px;
  padding-right: 0;
}

.mdc-top-app-bar--dense .mdc-top-app-bar__row {
  height: 48px;
}

.mdc-top-app-bar--dense .mdc-top-app-bar__section {
  padding: 0 4px;
}

.mdc-top-app-bar--dense .mdc-top-app-bar__title {
  padding-left: 12px;
  padding-right: 0;
}

[dir="rtl"] .mdc-top-app-bar--dense .mdc-top-app-bar__title, .mdc-top-app-bar--dense .mdc-top-app-bar__title[dir="rtl"] {
  padding-left: 0;
  padding-right: 12px;
}

.mdc-top-app-bar--prominent .mdc-top-app-bar__row {
  height: 128px;
}

.mdc-top-app-bar--prominent .mdc-top-app-bar__title {
  align-self: flex-end;
  padding-bottom: 2px;
}

.mdc-top-app-bar--prominent .mdc-top-app-bar__action-item, .mdc-top-app-bar--prominent .mdc-top-app-bar__navigation-icon {
  align-self: flex-start;
}

.mdc-top-app-bar--fixed {
  transition: box-shadow .2s linear;
}

.mdc-top-app-bar--fixed-scrolled {
  transition: box-shadow .2s linear;
  box-shadow: 0 2px 4px -1px #0003, 0 4px 5px #00000024, 0 1px 10px #0000001f;
}

.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__row {
  height: 96px;
}

.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__section {
  padding: 0 12px;
}

.mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__title {
  padding-bottom: 9px;
  padding-left: 20px;
  padding-right: 0;
}

[dir="rtl"] .mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__title, .mdc-top-app-bar--dense.mdc-top-app-bar--prominent .mdc-top-app-bar__title[dir="rtl"] {
  padding-left: 0;
  padding-right: 20px;
}

.mdc-top-app-bar--fixed-adjust {
  padding-top: 64px;
}

.mdc-top-app-bar--dense-fixed-adjust {
  padding-top: 48px;
}

.mdc-top-app-bar--short-fixed-adjust {
  padding-top: 56px;
}

.mdc-top-app-bar--prominent-fixed-adjust {
  padding-top: 128px;
}

.mdc-top-app-bar--dense-prominent-fixed-adjust {
  padding-top: 96px;
}

@media (max-width: 599px) {
  .mdc-top-app-bar__row {
    height: 56px;
  }

  .mdc-top-app-bar__section {
    padding: 4px;
  }

  .mdc-top-app-bar--short {
    transition: width .2s cubic-bezier(.4, 0, .2, 1);
  }

  .mdc-top-app-bar--short-collapsed {
    transition: width .25s cubic-bezier(.4, 0, .2, 1);
  }

  .mdc-top-app-bar--short-collapsed .mdc-top-app-bar__section--align-end {
    padding-left: 0;
    padding-right: 12px;
  }

  [dir="rtl"] .mdc-top-app-bar--short-collapsed .mdc-top-app-bar__section--align-end, .mdc-top-app-bar--short-collapsed .mdc-top-app-bar__section--align-end[dir="rtl"] {
    padding-left: 12px;
    padding-right: 0;
  }

  .mdc-top-app-bar--prominent .mdc-top-app-bar__title {
    padding-bottom: 6px;
  }

  .mdc-top-app-bar--fixed-adjust {
    padding-top: 56px;
  }
}

.mdc-typography, .tfjs-example-container {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-family: Roboto, sans-serif;
}

.mdc-typography--headline1 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.01562em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: 6rem;
  font-weight: 300;
  line-height: 6rem;
}

.mdc-typography--headline2 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.00833em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 3.75rem;
}

.mdc-typography--headline3, h1 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: normal;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.125rem;
}

.mdc-typography--headline4 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00735em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 2.5rem;
}

.mdc-typography--headline5 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: normal;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}

.mdc-typography--headline6, .subtitle {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .0125em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2rem;
}

.mdc-typography--subtitle1 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00937em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75rem;
}

.mdc-typography--subtitle2 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .00714em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 1.375rem;
}

.mdc-typography--body1 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .03125em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.mdc-typography--body2 {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .01786em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.mdc-typography--caption {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .03333em;
  text-decoration: inherit;
  text-transform: inherit;
  font-family: Roboto, sans-serif;
  font-size: .75rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.mdc-typography--button {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .08929em;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: .875rem;
  font-weight: 500;
  line-height: 2.25rem;
  text-decoration: none;
}

.mdc-typography--overline {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .16667em;
  text-transform: uppercase;
  font-family: Roboto, sans-serif;
  font-size: .75rem;
  font-weight: 500;
  line-height: 2rem;
  text-decoration: none;
}

body {
  --mdc-theme-primary: #f16528;
  --mdc-theme-secondary: #fdbc35;
  margin: 0;
}

.tfjs-example-container {
  flex-direction: column;
  padding: 60px;
  display: flex;
}

.tfjs-example-container.centered-container {
  max-width: 960px;
  margin: 0 auto;
}

.with-rows {
  flex-direction: column;
  display: flex;
}

.with-cols {
  flex-direction: row;
  display: flex;
}

.with-cols > * {
  flex: 1 1 0;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .with-cols {
    flex-direction: column;
  }

  .with-cols > * {
    flex: auto;
  }

  .tfjs-example-container {
    padding: 20px;
  }
}

h1 {
  margin-top: 0;
  font-weight: 300;
}

.subtitle {
  margin-top: -24px;
  font-weight: 400;
}

p {
  max-width: 960px;
  line-height: 1.6em;
}

p.section-head {
  font-variant: small-caps;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: #818181;
  border-left: 1px solid #ef6c00;
  margin-top: 2em;
  margin-bottom: 1em;
  margin-left: -24px;
  padding-left: 24px;
  font-weight: 500;
  line-height: 1.2em;
}

a {
  color: #3c3c3c;
  border-bottom: 1px dotted #818181;
  line-height: 1.2em;
  text-decoration: none;
  display: inline-block;
}

button {
  padding: 8px 12px;
  font-size: 100%;
}

.btn-primary, .btn-secondary {
  padding: 8px 12px;
}

.desc-type, .desc-example, .in-example, .out-example, .in-type, .out-type {
  background-color: #e8eaf6;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 0 6px;
  font-family: Roboto Mono, monospace;
  display: inline-block;
}

.desc-example, .in-example, .out-example {
  background-color: #e8eaf6;
}

input {
  font-size: 100%;
}

code {
  border: 1px solid #dedede;
  border-radius: 4px;
  padding: 2px;
  font-size: 110%;
}

/*# sourceMappingURL=index.3a01df49.css.map */
