html,
body {
	background-color: #fff;
	color: #000;
}
a {
	color: #ee0260;
}
a:visited {
	color: #9b013e;
}
.mdc-touch-target-wrapper {
	display: inline;
}
.mdc-elevation-overlay {
	position: absolute;
	border-radius: inherit;
	pointer-events: none;
	opacity: 0;
	opacity: var(--mdc-elevation-overlay-opacity, 0);
	transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1);
	background-color: #fff;
	background-color: var(--mdc-elevation-overlay-color, #fff);
}
.mdc-button {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-button-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 0.875rem;
	font-size: var(--mdc-typography-button-font-size, 0.875rem);
	line-height: 2.25rem;
	line-height: var(--mdc-typography-button-line-height, 2.25rem);
	font-weight: 500;
	font-weight: var(--mdc-typography-button-font-weight, 500);
	letter-spacing: 0.0892857143em;
	letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
	text-decoration: none;
	text-decoration: var(--mdc-typography-button-text-decoration, none);
	text-transform: uppercase;
	text-transform: var(--mdc-typography-button-text-transform, uppercase);
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 64px;
	border: none;
	outline: none;
	line-height: inherit;
	user-select: none;
	-webkit-appearance: none;
	overflow: visible;
	vertical-align: middle;
}
.mdc-button .mdc-elevation-overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.mdc-button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
.mdc-button:active {
	outline: none;
}
.mdc-button:hover {
	cursor: pointer;
}
.mdc-button:disabled {
	cursor: default;
	pointer-events: none;
}
.mdc-button .mdc-button__icon {
	margin-left: 0;
	margin-right: 8px;
	display: inline-block;
	font-size: 1.125rem;
	height: 1.125rem;
	vertical-align: top;
	width: 1.125rem;
}
[dir='rtl'] .mdc-button .mdc-button__icon,
.mdc-button .mdc-button__icon[dir='rtl'] {
	margin-left: 8px;
	margin-right: 0;
}
.mdc-button .mdc-button__touch {
	position: absolute;
	top: 50%;
	right: 0;
	height: 48px;
	left: 0;
	transform: translateY(-50%);
}
.mdc-button__label + .mdc-button__icon {
	margin-left: 8px;
	margin-right: 0;
}
[dir='rtl'] .mdc-button__label + .mdc-button__icon,
.mdc-button__label + .mdc-button__icon[dir='rtl'] {
	margin-left: 0;
	margin-right: 8px;
}
svg.mdc-button__icon {
	fill: currentColor;
}
.mdc-button--raised .mdc-button__icon,
.mdc-button--unelevated .mdc-button__icon,
.mdc-button--outlined .mdc-button__icon {
	margin-left: -4px;
	margin-right: 8px;
}
[dir='rtl'] .mdc-button--raised .mdc-button__icon,
.mdc-button--raised .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,
.mdc-button--outlined .mdc-button__icon[dir='rtl'] {
	margin-left: 8px;
	margin-right: -4px;
}
.mdc-button--raised .mdc-button__label + .mdc-button__icon,
.mdc-button--unelevated .mdc-button__label + .mdc-button__icon,
.mdc-button--outlined .mdc-button__label + .mdc-button__icon {
	margin-left: 8px;
	margin-right: -4px;
}
[dir='rtl'] .mdc-button--raised .mdc-button__label + .mdc-button__icon,
.mdc-button--raised .mdc-button__label + .mdc-button__icon[dir='rtl'],
[dir='rtl'] .mdc-button--unelevated .mdc-button__label + .mdc-button__icon,
.mdc-button--unelevated .mdc-button__label + .mdc-button__icon[dir='rtl'],
[dir='rtl'] .mdc-button--outlined .mdc-button__label + .mdc-button__icon,
.mdc-button--outlined .mdc-button__label + .mdc-button__icon[dir='rtl'] {
	margin-left: -4px;
	margin-right: 8px;
}
.mdc-button--touch {
	margin-top: 6px;
	margin-bottom: 6px;
}
@keyframes mdc-ripple-fg-radius-in {
	from {
		animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
		transform: translate(var(--mdc-ripple-fg-translate-start, 0)) scale(1);
	}
	to {
		transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
	}
}
@keyframes mdc-ripple-fg-opacity-in {
	from {
		animation-timing-function: linear;
		opacity: 0;
	}
	to {
		opacity: var(--mdc-ripple-fg-opacity, 0);
	}
}
@keyframes mdc-ripple-fg-opacity-out {
	from {
		animation-timing-function: linear;
		opacity: var(--mdc-ripple-fg-opacity, 0);
	}
	to {
		opacity: 0;
	}
}
.mdc-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: rgba(0, 0, 0, 0);
	will-change: transform, opacity;
}
.mdc-button .mdc-button__ripple::before,
.mdc-button .mdc-button__ripple::after {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	content: '';
}
.mdc-button .mdc-button__ripple::before {
	transition: opacity 15ms linear, background-color 15ms linear;
	z-index: 1;
	z-index: var(--mdc-ripple-z-index, 1);
}
.mdc-button .mdc-button__ripple::after {
	z-index: 0;
	z-index: var(--mdc-ripple-z-index, 0);
}
.mdc-button.mdc-ripple-upgraded .mdc-button__ripple::before {
	transform: scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-button.mdc-ripple-upgraded .mdc-button__ripple::after {
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: center center;
}
.mdc-button.mdc-ripple-upgraded--unbounded .mdc-button__ripple::after {
	top: var(--mdc-ripple-top, 0);
	left: var(--mdc-ripple-left, 0);
}
.mdc-button.mdc-ripple-upgraded--foreground-activation .mdc-button__ripple::after {
	animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}
.mdc-button.mdc-ripple-upgraded--foreground-deactivation .mdc-button__ripple::after {
	animation: mdc-ripple-fg-opacity-out 150ms;
	transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-button .mdc-button__ripple::before,
.mdc-button .mdc-button__ripple::after {
	top: calc(50% - 100%);
	left: calc(50% - 100%);
	width: 200%;
	height: 200%;
}
.mdc-button.mdc-ripple-upgraded .mdc-button__ripple::after {
	width: var(--mdc-ripple-fg-size, 100%);
	height: var(--mdc-ripple-fg-size, 100%);
}
.mdc-button .mdc-button__ripple {
	position: absolute;
	box-sizing: content-box;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.mdc-button:not(.mdc-button--outlined) .mdc-button__ripple {
	top: 0;
	left: 0;
}
.mdc-button--raised {
	box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
		0px 1px 5px 0px rgba(0, 0, 0, 0.12);
	transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mdc-button--raised:hover,
.mdc-button--raised:focus {
	box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
		0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.mdc-button--raised:active {
	box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
		0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.mdc-button--raised:disabled {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
		0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mdc-button--outlined {
	border-style: solid;
}
.mdc-button {
	height: 36px;
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
	padding: 0 8px 0 8px;
}
.mdc-button:not(:disabled) {
	background-color: transparent;
}
.mdc-button:disabled {
	background-color: transparent;
}
.mdc-button:not(:disabled) {
	color: #02ee91;
	color: var(--mdc-theme-primary, #02ee91);
}
.mdc-button:disabled {
	color: rgba(0, 0, 0, 0.38);
}
.mdc-button .mdc-button__ripple::before,
.mdc-button .mdc-button__ripple::after {
	background-color: #02ee91;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #02ee91));
}
.mdc-button:hover .mdc-button__ripple::before,
.mdc-button.mdc-ripple-surface--hover .mdc-button__ripple::before {
	opacity: 0.08;
	opacity: var(--mdc-ripple-hover-opacity, 0.08);
}
.mdc-button.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before,
.mdc-button:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-focus-opacity, 0.24);
}
.mdc-button:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
	transition: opacity 150ms linear;
}
.mdc-button:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.mdc-button.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.mdc-button .mdc-button__ripple {
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
}
.mdc-button--unelevated {
	padding: 0 16px 0 16px;
	height: 36px;
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
}
.mdc-button--unelevated:not(:disabled) {
	background-color: #02ee91;
	background-color: var(--mdc-theme-primary, #02ee91);
}
.mdc-button--unelevated:disabled {
	background-color: rgba(0, 0, 0, 0.12);
}
.mdc-button--unelevated:not(:disabled) {
	color: #000;
	color: var(--mdc-theme-on-primary, #000);
}
.mdc-button--unelevated:disabled {
	color: rgba(0, 0, 0, 0.38);
}
.mdc-button--unelevated .mdc-button__ripple::before,
.mdc-button--unelevated .mdc-button__ripple::after {
	background-color: #000;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-on-primary, #000));
}
.mdc-button--unelevated:hover .mdc-button__ripple::before,
.mdc-button--unelevated.mdc-ripple-surface--hover .mdc-button__ripple::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.mdc-button--unelevated.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before,
.mdc-button--unelevated:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.mdc-button--unelevated:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
	transition: opacity 150ms linear;
}
.mdc-button--unelevated:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-button--unelevated.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-button--unelevated .mdc-button__ripple {
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
}
.mdc-button--raised {
	padding: 0 16px 0 16px;
	height: 36px;
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
}
.mdc-button--raised:not(:disabled) {
	background-color: #02ee91;
	background-color: var(--mdc-theme-primary, #02ee91);
}
.mdc-button--raised:disabled {
	background-color: rgba(0, 0, 0, 0.12);
}
.mdc-button--raised:not(:disabled) {
	color: #000;
	color: var(--mdc-theme-on-primary, #000);
}
.mdc-button--raised:disabled {
	color: rgba(0, 0, 0, 0.38);
}
.mdc-button--raised .mdc-button__ripple::before,
.mdc-button--raised .mdc-button__ripple::after {
	background-color: #000;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-on-primary, #000));
}
.mdc-button--raised:hover .mdc-button__ripple::before,
.mdc-button--raised.mdc-ripple-surface--hover .mdc-button__ripple::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.mdc-button--raised.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before,
.mdc-button--raised:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.mdc-button--raised:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
	transition: opacity 150ms linear;
}
.mdc-button--raised:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-button--raised.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-button--raised .mdc-button__ripple {
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
}
.mdc-button--outlined {
	height: 36px;
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
	padding: 0 15px 0 15px;
	border-width: 1px;
}
.mdc-button--outlined:not(:disabled) {
	background-color: transparent;
}
.mdc-button--outlined:disabled {
	background-color: transparent;
}
.mdc-button--outlined:not(:disabled) {
	color: #02ee91;
	color: var(--mdc-theme-primary, #02ee91);
}
.mdc-button--outlined:disabled {
	color: rgba(0, 0, 0, 0.38);
}
.mdc-button--outlined .mdc-button__ripple::before,
.mdc-button--outlined .mdc-button__ripple::after {
	background-color: #02ee91;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #02ee91));
}
.mdc-button--outlined:hover .mdc-button__ripple::before,
.mdc-button--outlined.mdc-ripple-surface--hover .mdc-button__ripple::before {
	opacity: 0.08;
	opacity: var(--mdc-ripple-hover-opacity, 0.08);
}
.mdc-button--outlined.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before,
.mdc-button--outlined:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-focus-opacity, 0.24);
}
.mdc-button--outlined:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
	transition: opacity 150ms linear;
}
.mdc-button--outlined:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.mdc-button--outlined.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.mdc-button--outlined .mdc-button__ripple {
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
}
.mdc-button--outlined:not(:disabled) {
	border-color: rgba(0, 0, 0, 0.12);
}
.mdc-button--outlined:disabled {
	border-color: rgba(0, 0, 0, 0.12);
}
.mdc-button--outlined .mdc-button__ripple {
	top: -1px;
	left: -1px;
	border: 1px solid transparent;
}
.mdc-button--outlined .mdc-button__touch {
	left: -1px;
	width: calc(100% + 2 * 1px);
}
.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: rgba(0, 0, 0, 0);
	will-change: transform, opacity;
	position: relative;
	outline: none;
	overflow: hidden;
}
.mdc-ripple-surface::before,
.mdc-ripple-surface::after {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	content: '';
}
.mdc-ripple-surface::before {
	transition: opacity 15ms linear, background-color 15ms linear;
	z-index: 1;
	z-index: var(--mdc-ripple-z-index, 1);
}
.mdc-ripple-surface::after {
	z-index: 0;
	z-index: var(--mdc-ripple-z-index, 0);
}
.mdc-ripple-surface.mdc-ripple-upgraded::before {
	transform: scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-ripple-surface.mdc-ripple-upgraded::after {
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: center center;
}
.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: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}
.mdc-ripple-surface.mdc-ripple-upgraded--foreground-deactivation::after {
	animation: mdc-ripple-fg-opacity-out 150ms;
	transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-ripple-surface::before,
.mdc-ripple-surface::after {
	background-color: #000;
	background-color: var(--mdc-ripple-color, #000);
}
.mdc-ripple-surface:hover::before,
.mdc-ripple-surface.mdc-ripple-surface--hover::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.mdc-ripple-surface.mdc-ripple-upgraded--background-focused::before,
.mdc-ripple-surface:not(.mdc-ripple-upgraded):focus::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.mdc-ripple-surface:not(.mdc-ripple-upgraded)::after {
	transition: opacity 150ms linear;
}
.mdc-ripple-surface:not(.mdc-ripple-upgraded):active::after {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-ripple-surface.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-ripple-surface::before,
.mdc-ripple-surface::after {
	top: calc(50% - 100%);
	left: calc(50% - 100%);
	width: 200%;
	height: 200%;
}
.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],
.mdc-ripple-upgraded--unbounded {
	overflow: visible;
}
.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::before,
.mdc-ripple-surface[data-mdc-ripple-is-unbounded]::after,
.mdc-ripple-upgraded--unbounded::before,
.mdc-ripple-upgraded--unbounded::after {
	top: calc(50% - 50%);
	left: calc(50% - 50%);
	width: 100%;
	height: 100%;
}
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::before,
.mdc-ripple-surface[data-mdc-ripple-is-unbounded].mdc-ripple-upgraded::after,
.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::before,
.mdc-ripple-upgraded--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,
.mdc-ripple-upgraded--unbounded.mdc-ripple-upgraded::after {
	width: var(--mdc-ripple-fg-size, 100%);
	height: var(--mdc-ripple-fg-size, 100%);
}
.smui-ripple-surface--primary::before,
.smui-ripple-surface--primary::after {
	background-color: #02ee91;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #02ee91));
}
.smui-ripple-surface--primary:hover::before,
.smui-ripple-surface--primary.mdc-ripple-surface--hover::before {
	opacity: 0.08;
	opacity: var(--mdc-ripple-hover-opacity, 0.08);
}
.smui-ripple-surface--primary.mdc-ripple-upgraded--background-focused::before,
.smui-ripple-surface--primary:not(.mdc-ripple-upgraded):focus::before {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-focus-opacity, 0.24);
}
.smui-ripple-surface--primary:not(.mdc-ripple-upgraded)::after {
	transition: opacity 150ms linear;
}
.smui-ripple-surface--primary:not(.mdc-ripple-upgraded):active::after {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.smui-ripple-surface--primary.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.smui-ripple-surface--secondary::before,
.smui-ripple-surface--secondary::after {
	background-color: #ee0260;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-secondary, #ee0260));
}
.smui-ripple-surface--secondary:hover::before,
.smui-ripple-surface--secondary.mdc-ripple-surface--hover::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.smui-ripple-surface--secondary.mdc-ripple-upgraded--background-focused::before,
.smui-ripple-surface--secondary:not(.mdc-ripple-upgraded):focus::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.smui-ripple-surface--secondary:not(.mdc-ripple-upgraded)::after {
	transition: opacity 150ms linear;
}
.smui-ripple-surface--secondary:not(.mdc-ripple-upgraded):active::after {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.smui-ripple-surface--secondary.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.smui-button--color-secondary:not(:disabled) {
	color: #ee0260;
}
.smui-button--color-secondary:not(:disabled) .mdc-button__icon {
	color: #ee0260;
}
.smui-button--color-secondary.mdc-button--raised:not(:disabled),
.smui-button--color-secondary.mdc-button--unelevated:not(:disabled) {
	background-color: #ee0260;
}
.smui-button--color-secondary.mdc-button--raised:not(:disabled),
.smui-button--color-secondary.mdc-button--unelevated:not(:disabled) {
	color: white;
	color: var(--mdc-theme-text-primary-on-dark, white);
}
.smui-button--color-secondary.mdc-button--raised .mdc-button__ripple::before,
.smui-button--color-secondary.mdc-button--raised .mdc-button__ripple::after,
.smui-button--color-secondary.mdc-button--unelevated .mdc-button__ripple::before,
.smui-button--color-secondary.mdc-button--unelevated .mdc-button__ripple::after {
	background-color: white;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-text-primary-on-dark, white));
}
.smui-button--color-secondary.mdc-button--raised:hover .mdc-button__ripple::before,
.smui-button--color-secondary.mdc-button--raised.mdc-ripple-surface--hover
	.mdc-button__ripple::before,
.smui-button--color-secondary.mdc-button--unelevated:hover .mdc-button__ripple::before,
.smui-button--color-secondary.mdc-button--unelevated.mdc-ripple-surface--hover
	.mdc-button__ripple::before {
	opacity: 0.08;
	opacity: var(--mdc-ripple-hover-opacity, 0.08);
}
.smui-button--color-secondary.mdc-button--raised.mdc-ripple-upgraded--background-focused
	.mdc-button__ripple::before,
.smui-button--color-secondary.mdc-button--raised:not(.mdc-ripple-upgraded):focus
	.mdc-button__ripple::before,
.smui-button--color-secondary.mdc-button--unelevated.mdc-ripple-upgraded--background-focused
	.mdc-button__ripple::before,
.smui-button--color-secondary.mdc-button--unelevated:not(.mdc-ripple-upgraded):focus
	.mdc-button__ripple::before {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-focus-opacity, 0.24);
}
.smui-button--color-secondary.mdc-button--raised:not(.mdc-ripple-upgraded)
	.mdc-button__ripple::after,
.smui-button--color-secondary.mdc-button--unelevated:not(.mdc-ripple-upgraded)
	.mdc-button__ripple::after {
	transition: opacity 150ms linear;
}
.smui-button--color-secondary.mdc-button--raised:not(.mdc-ripple-upgraded):active
	.mdc-button__ripple::after,
.smui-button--color-secondary.mdc-button--unelevated:not(.mdc-ripple-upgraded):active
	.mdc-button__ripple::after {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.smui-button--color-secondary.mdc-button--raised.mdc-ripple-upgraded,
.smui-button--color-secondary.mdc-button--unelevated.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.smui-button--color-secondary.mdc-button--raised:not(:disabled),
.smui-button--color-secondary.mdc-button--unelevated:not(:disabled) {
	color: #fff;
}
.smui-button--color-secondary.mdc-button--raised:not(:disabled) .mdc-button__icon,
.smui-button--color-secondary.mdc-button--unelevated:not(:disabled) .mdc-button__icon {
	color: #fff;
}
.smui-button--color-secondary.mdc-button--outlined:not(:disabled) {
	border-color: #ee0260;
}
.smui-button--color-secondary .mdc-button__ripple::before,
.smui-button--color-secondary .mdc-button__ripple::after {
	background-color: #ee0260;
	background-color: var(--mdc-ripple-color, #ee0260);
}
.smui-button--color-secondary:hover .mdc-button__ripple::before,
.smui-button--color-secondary.mdc-ripple-surface--hover .mdc-button__ripple::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.smui-button--color-secondary.mdc-ripple-upgraded--background-focused .mdc-button__ripple::before,
.smui-button--color-secondary:not(.mdc-ripple-upgraded):focus .mdc-button__ripple::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.smui-button--color-secondary:not(.mdc-ripple-upgraded) .mdc-button__ripple::after {
	transition: opacity 150ms linear;
}
.smui-button--color-secondary:not(.mdc-ripple-upgraded):active .mdc-button__ripple::after {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.smui-button--color-secondary.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.smui-button__group {
	display: inline-flex;
}
.smui-button__group > .mdc-button,
.smui-button__group > .smui-button__group-item > .mdc-button {
	margin-left: 0;
	margin-right: 0;
}
.smui-button__group > .mdc-button:not(:last-child),
.smui-button__group > .mdc-button:not(:last-child) > .mdc-button__ripple,
.smui-button__group > .smui-button__group-item:not(:last-child) > .mdc-button,
.smui-button__group
	> .smui-button__group-item:not(:last-child)
	> .mdc-button
	> .mdc-button__ripple {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.smui-button__group > .mdc-button:not(:first-child),
.smui-button__group > .mdc-button:not(:first-child) > .mdc-button__ripple,
.smui-button__group > .smui-button__group-item:not(:first-child) > .mdc-button,
.smui-button__group
	> .smui-button__group-item:not(:first-child)
	> .mdc-button
	> .mdc-button__ripple {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.smui-button__group.smui-button__group--raised {
	box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
		0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.smui-button__group > .mdc-button--raised,
.smui-button__group > .smui-button__group-item > .mdc-button--raised {
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
		0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.smui-button__group > .mdc-button--raised .mdc-button__ripple,
.smui-button__group > .smui-button__group-item > .mdc-button--raised .mdc-button__ripple {
	border-radius: 4px;
	border-radius: var(--mdc-shape-small, 4px);
}
.smui-button__group > .mdc-button--raised:hover,
.smui-button__group > .mdc-button--raised:focus,
.smui-button__group > .smui-button__group-item > .mdc-button--raised:hover,
.smui-button__group > .smui-button__group-item > .mdc-button--raised:focus {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
		0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.smui-button__group > .mdc-button--raised:active,
.smui-button__group > .smui-button__group-item > .mdc-button--raised:active {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
		0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.smui-button__group > .mdc-button--raised:disabled,
.smui-button__group > .smui-button__group-item > .mdc-button--raised:disabled {
	box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14),
		0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.smui-button__group > .mdc-button--outlined:not(:last-child),
.smui-button__group > .smui-button__group-item:not(:last-child) > .mdc-button--outlined {
	border-right-width: 0;
}
.mdc-fab {
	position: relative;
	display: inline-flex;
	position: relative;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 56px;
	height: 56px;
	padding: 0;
	border: none;
	fill: currentColor;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	overflow: visible;
	transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), opacity 15ms linear 30ms,
		transform 270ms 0ms cubic-bezier(0, 0, 0.2, 1);
	background-color: #ee0260;
	background-color: var(--mdc-theme-secondary, #ee0260);
	box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14),
		0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.mdc-fab .mdc-elevation-overlay {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.mdc-fab::-moz-focus-inner {
	padding: 0;
	border: 0;
}
.mdc-fab:hover {
	box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
		0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.mdc-fab.mdc-ripple-upgraded--background-focused,
.mdc-fab:not(.mdc-ripple-upgraded):focus {
	box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14),
		0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.mdc-fab:active,
.mdc-fab:focus:active {
	box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14),
		0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
.mdc-fab:active,
.mdc-fab:focus {
	outline: none;
}
.mdc-fab:hover {
	cursor: pointer;
}
.mdc-fab > svg {
	width: 100%;
}
.mdc-fab .mdc-fab__icon {
	width: 24px;
	height: 24px;
	font-size: 24px;
}
.mdc-fab,
.mdc-fab:not(:disabled) .mdc-fab__icon,
.mdc-fab:not(:disabled) .mdc-fab__label,
.mdc-fab:disabled .mdc-fab__icon,
.mdc-fab:disabled .mdc-fab__label {
	color: #fff;
	color: var(--mdc-theme-on-secondary, #fff);
}
.mdc-fab:not(.mdc-fab--extended) {
	border-radius: 50%;
}
.mdc-fab:not(.mdc-fab--extended) .mdc-fab__ripple {
	border-radius: 50%;
}
.mdc-fab--mini {
	width: 40px;
	height: 40px;
}
.mdc-fab--extended {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-button-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 0.875rem;
	font-size: var(--mdc-typography-button-font-size, 0.875rem);
	line-height: 2.25rem;
	line-height: var(--mdc-typography-button-line-height, 2.25rem);
	font-weight: 500;
	font-weight: var(--mdc-typography-button-font-weight, 500);
	letter-spacing: 0.0892857143em;
	letter-spacing: var(--mdc-typography-button-letter-spacing, 0.0892857143em);
	text-decoration: none;
	text-decoration: var(--mdc-typography-button-text-decoration, none);
	text-transform: uppercase;
	text-transform: var(--mdc-typography-button-text-transform, uppercase);
	border-radius: 24px;
	padding-left: 20px;
	padding-right: 20px;
	width: auto;
	max-width: 100%;
	height: 48px;
	line-height: normal;
}
.mdc-fab--extended .mdc-fab__ripple {
	border-radius: 24px;
}
.mdc-fab--extended .mdc-fab__icon {
	margin-left: calc(12px - 20px);
	margin-right: 12px;
}
[dir='rtl'] .mdc-fab--extended .mdc-fab__icon,
.mdc-fab--extended .mdc-fab__icon[dir='rtl'] {
	margin-left: 12px;
	margin-right: calc(12px - 20px);
}
.mdc-fab--extended .mdc-fab__label + .mdc-fab__icon {
	margin-left: 12px;
	margin-right: calc(12px - 20px);
}
[dir='rtl'] .mdc-fab--extended .mdc-fab__label + .mdc-fab__icon,
.mdc-fab--extended .mdc-fab__label + .mdc-fab__icon[dir='rtl'] {
	margin-left: calc(12px - 20px);
	margin-right: 12px;
}
.mdc-fab--touch {
	margin-top: 4px;
	margin-bottom: 4px;
	margin-right: 4px;
	margin-left: 4px;
}
.mdc-fab--touch .mdc-fab__touch {
	position: absolute;
	top: 50%;
	right: 0;
	height: 48px;
	left: 50%;
	width: 48px;
	transform: translate(-50%, -50%);
}
.mdc-fab::before {
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 1px solid transparent;
	border-radius: inherit;
	content: '';
	pointer-events: none;
}
.mdc-fab__label {
	justify-content: flex-start;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow-x: hidden;
	overflow-y: visible;
}
.mdc-fab__icon {
	transition: transform 180ms 90ms cubic-bezier(0, 0, 0.2, 1);
	fill: currentColor;
	will-change: transform;
}
.mdc-fab .mdc-fab__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.mdc-fab--exited {
	transform: scale(0);
	opacity: 0;
	transition: opacity 15ms linear 150ms, transform 180ms 0ms cubic-bezier(0.4, 0, 1, 1);
}
.mdc-fab--exited .mdc-fab__icon {
	transform: scale(0);
	transition: transform 135ms 0ms cubic-bezier(0.4, 0, 1, 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: rgba(0, 0, 0, 0);
	will-change: transform, opacity;
}
.mdc-fab .mdc-fab__ripple::before,
.mdc-fab .mdc-fab__ripple::after {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	content: '';
}
.mdc-fab .mdc-fab__ripple::before {
	transition: opacity 15ms linear, background-color 15ms linear;
	z-index: 1;
	z-index: var(--mdc-ripple-z-index, 1);
}
.mdc-fab .mdc-fab__ripple::after {
	z-index: 0;
	z-index: var(--mdc-ripple-z-index, 0);
}
.mdc-fab.mdc-ripple-upgraded .mdc-fab__ripple::before {
	transform: scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-fab.mdc-ripple-upgraded .mdc-fab__ripple::after {
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: center center;
}
.mdc-fab.mdc-ripple-upgraded--unbounded .mdc-fab__ripple::after {
	top: var(--mdc-ripple-top, 0);
	left: var(--mdc-ripple-left, 0);
}
.mdc-fab.mdc-ripple-upgraded--foreground-activation .mdc-fab__ripple::after {
	animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}
.mdc-fab.mdc-ripple-upgraded--foreground-deactivation .mdc-fab__ripple::after {
	animation: mdc-ripple-fg-opacity-out 150ms;
	transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-fab .mdc-fab__ripple::before,
.mdc-fab .mdc-fab__ripple::after {
	top: calc(50% - 100%);
	left: calc(50% - 100%);
	width: 200%;
	height: 200%;
}
.mdc-fab.mdc-ripple-upgraded .mdc-fab__ripple::after {
	width: var(--mdc-ripple-fg-size, 100%);
	height: var(--mdc-ripple-fg-size, 100%);
}
.mdc-fab .mdc-fab__ripple::before,
.mdc-fab .mdc-fab__ripple::after {
	background-color: #fff;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-on-secondary, #fff));
}
.mdc-fab .mdc-fab__ripple {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	overflow: hidden;
}
.mdc-fab {
	z-index: 0;
}
.mdc-fab .mdc-fab__ripple::before,
.mdc-fab .mdc-fab__ripple::after {
	z-index: -1;
	z-index: var(--mdc-ripple-z-index, -1);
}
.smui-fab--color-primary {
	background-color: #02ee91;
	background-color: var(--mdc-theme-primary, #02ee91);
}
.smui-fab--color-primary,
.smui-fab--color-primary:not(:disabled) .mdc-fab__icon,
.smui-fab--color-primary:not(:disabled) .mdc-fab__label,
.smui-fab--color-primary:disabled .mdc-fab__icon,
.smui-fab--color-primary:disabled .mdc-fab__label {
	color: #000;
	color: var(--mdc-theme-on-primary, #000);
}
a.mdc-fab,
a.mdc-fab:not(:disabled) .mdc-fab__icon,
a.mdc-fab:not(:disabled) .mdc-fab__label,
a.mdc-fab:disabled .mdc-fab__icon,
a.mdc-fab:disabled .mdc-fab__label,
a.mdc-fab:visited,
a.mdc-fab:visited:not(:disabled) .mdc-fab__icon,
a.mdc-fab:visited:not(:disabled) .mdc-fab__label,
a.mdc-fab:visited:disabled .mdc-fab__icon,
a.mdc-fab:visited:disabled .mdc-fab__label {
	color: #fff;
	color: var(--mdc-theme-on-secondary, #fff);
}
a.smui-fab--color-primary,
a.smui-fab--color-primary:not(:disabled) .mdc-fab__icon,
a.smui-fab--color-primary:not(:disabled) .mdc-fab__label,
a.smui-fab--color-primary:disabled .mdc-fab__icon,
a.smui-fab--color-primary:disabled .mdc-fab__label,
a.smui-fab--color-primary:visited,
a.smui-fab--color-primary:visited:not(:disabled) .mdc-fab__icon,
a.smui-fab--color-primary:visited:not(:disabled) .mdc-fab__label,
a.smui-fab--color-primary:visited:disabled .mdc-fab__icon,
a.smui-fab--color-primary:visited:disabled .mdc-fab__label {
	color: #000;
	color: var(--mdc-theme-on-primary, #000);
}
.mdc-fab .mdc-fab__ripple::before,
.mdc-fab .mdc-fab__ripple::after {
	background-color: #fff;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-on-secondary, #fff));
}
.mdc-fab:hover .mdc-fab__ripple::before,
.mdc-fab.mdc-ripple-surface--hover .mdc-fab__ripple::before {
	opacity: 0.08;
	opacity: var(--mdc-ripple-hover-opacity, 0.08);
}
.mdc-fab.mdc-ripple-upgraded--background-focused .mdc-fab__ripple::before,
.mdc-fab:not(.mdc-ripple-upgraded):focus .mdc-fab__ripple::before {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-focus-opacity, 0.24);
}
.mdc-fab:not(.mdc-ripple-upgraded) .mdc-fab__ripple::after {
	transition: opacity 150ms linear;
}
.mdc-fab:not(.mdc-ripple-upgraded):active .mdc-fab__ripple::after {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.mdc-fab.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.smui-fab--color-primary .mdc-fab__ripple::before,
.smui-fab--color-primary .mdc-fab__ripple::after {
	background-color: #000;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-on-primary, #000));
}
.smui-fab--color-primary:hover .mdc-fab__ripple::before,
.smui-fab--color-primary.mdc-ripple-surface--hover .mdc-fab__ripple::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.smui-fab--color-primary.mdc-ripple-upgraded--background-focused .mdc-fab__ripple::before,
.smui-fab--color-primary:not(.mdc-ripple-upgraded):focus .mdc-fab__ripple::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.smui-fab--color-primary:not(.mdc-ripple-upgraded) .mdc-fab__ripple::after {
	transition: opacity 150ms linear;
}
.smui-fab--color-primary:not(.mdc-ripple-upgraded):active .mdc-fab__ripple::after {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.smui-fab--color-primary.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-floating-label {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-subtitle1-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 1rem;
	font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
	font-weight: 400;
	font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
	letter-spacing: 0.009375em;
	letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
	text-decoration: inherit;
	text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
	text-transform: inherit;
	text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
	position: absolute;
	left: 0;
	-webkit-transform-origin: left top;
	transform-origin: left top;
	line-height: 1.15rem;
	text-align: left;
	text-overflow: ellipsis;
	white-space: nowrap;
	cursor: text;
	overflow: hidden;
	will-change: transform;
	transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
[dir='rtl'] .mdc-floating-label,
.mdc-floating-label[dir='rtl'] {
	right: 0;
	left: auto;
	-webkit-transform-origin: right top;
	transform-origin: right top;
	text-align: right;
}
.mdc-floating-label--float-above {
	cursor: auto;
}
.mdc-floating-label--required::after {
	margin-left: 1px;
	margin-right: 0px;
	content: '*';
}
[dir='rtl'] .mdc-floating-label--required::after,
.mdc-floating-label--required[dir='rtl']::after {
	margin-left: 0;
	margin-right: 1px;
}
.mdc-floating-label--float-above {
	transform: translateY(-106%) scale(0.75);
}
.mdc-floating-label--shake {
	animation: mdc-floating-label-shake-float-above-standard 250ms 1;
}
@keyframes mdc-floating-label-shake-float-above-standard {
	0% {
		transform: translateX(calc(0 - 0%)) translateY(-106%) scale(0.75);
	}
	33% {
		animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
		transform: translateX(calc(4% - 0%)) translateY(-106%) scale(0.75);
	}
	66% {
		animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
		transform: translateX(calc(-4% - 0%)) translateY(-106%) scale(0.75);
	}
	100% {
		transform: translateX(calc(0 - 0%)) translateY(-106%) scale(0.75);
	}
}
.smui-floating-label--remove-transition {
	transition: unset !important;
}
.smui-floating-label--force-size {
	position: absolute !important;
	transform: unset !important;
}
.mdc-icon-button {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	border: none;
	outline: none;
	background-color: transparent;
	fill: currentColor;
	color: inherit;
	font-size: 24px;
	text-decoration: none;
	cursor: pointer;
	user-select: none;
	width: 48px;
	height: 48px;
	padding: 12px;
}
.mdc-icon-button svg,
.mdc-icon-button img {
	width: 24px;
	height: 24px;
}
.mdc-icon-button:disabled {
	color: rgba(0, 0, 0, 0.38);
	color: var(--mdc-theme-text-disabled-on-light, rgba(0, 0, 0, 0.38));
}
.mdc-icon-button:disabled {
	cursor: default;
	pointer-events: none;
}
.mdc-icon-button__icon {
	display: inline-block;
}
.mdc-icon-button__icon.mdc-icon-button__icon--on {
	display: none;
}
.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-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: rgba(0, 0, 0, 0);
	will-change: transform, opacity;
}
.mdc-icon-button::before,
.mdc-icon-button::after {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	content: '';
}
.mdc-icon-button::before {
	transition: opacity 15ms linear, background-color 15ms linear;
	z-index: 1;
	z-index: var(--mdc-ripple-z-index, 1);
}
.mdc-icon-button::after {
	z-index: 0;
	z-index: var(--mdc-ripple-z-index, 0);
}
.mdc-icon-button.mdc-ripple-upgraded::before {
	transform: scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-icon-button.mdc-ripple-upgraded::after {
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: center center;
}
.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: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}
.mdc-icon-button.mdc-ripple-upgraded--foreground-deactivation::after {
	animation: mdc-ripple-fg-opacity-out 150ms;
	transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-icon-button::before,
.mdc-icon-button::after {
	top: calc(50% - 50%);
	left: calc(50% - 50%);
	width: 100%;
	height: 100%;
}
.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::before,
.mdc-icon-button::after {
	background-color: #000;
	background-color: var(--mdc-ripple-color, #000);
}
.mdc-icon-button:hover::before,
.mdc-icon-button.mdc-ripple-surface--hover::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.mdc-icon-button.mdc-ripple-upgraded--background-focused::before,
.mdc-icon-button:not(.mdc-ripple-upgraded):focus::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.mdc-icon-button:not(.mdc-ripple-upgraded)::after {
	transition: opacity 150ms linear;
}
.mdc-icon-button:not(.mdc-ripple-upgraded):active::after {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-icon-button.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-icon-button svg {
	pointer-events: none;
}
: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;
		margin: 0 auto;
		padding: 24px;
		padding: var(--mdc-layout-grid-margin-desktop, 24px);
	}
}
@media (min-width: 600px) and (max-width: 839px) {
	.mdc-layout-grid {
		box-sizing: border-box;
		margin: 0 auto;
		padding: 16px;
		padding: var(--mdc-layout-grid-margin-tablet, 16px);
	}
}
@media (max-width: 599px) {
	.mdc-layout-grid {
		box-sizing: border-box;
		margin: 0 auto;
		padding: 16px;
		padding: var(--mdc-layout-grid-margin-phone, 16px);
	}
}
@media (min-width: 840px) {
	.mdc-layout-grid__inner {
		display: flex;
		flex-flow: row wrap;
		align-items: stretch;
		margin: -12px;
		margin: calc(var(--mdc-layout-grid-gutter-desktop, 24px) / 2 * -1);
	}
	@supports (display: grid) {
		.mdc-layout-grid__inner {
			display: grid;
			margin: 0;
			grid-gap: 24px;
			grid-gap: var(--mdc-layout-grid-gutter-desktop, 24px);
			grid-template-columns: repeat(12, minmax(0, 1fr));
		}
	}
}
@media (min-width: 600px) and (max-width: 839px) {
	.mdc-layout-grid__inner {
		display: flex;
		flex-flow: row wrap;
		align-items: stretch;
		margin: -8px;
		margin: calc(var(--mdc-layout-grid-gutter-tablet, 16px) / 2 * -1);
	}
	@supports (display: grid) {
		.mdc-layout-grid__inner {
			display: grid;
			margin: 0;
			grid-gap: 16px;
			grid-gap: var(--mdc-layout-grid-gutter-tablet, 16px);
			grid-template-columns: repeat(8, minmax(0, 1fr));
		}
	}
}
@media (max-width: 599px) {
	.mdc-layout-grid__inner {
		display: flex;
		flex-flow: row wrap;
		align-items: stretch;
		margin: -8px;
		margin: calc(var(--mdc-layout-grid-gutter-phone, 16px) / 2 * -1);
	}
	@supports (display: grid) {
		.mdc-layout-grid__inner {
			display: grid;
			margin: 0;
			grid-gap: 16px;
			grid-gap: var(--mdc-layout-grid-gutter-phone, 16px);
			grid-template-columns: repeat(4, minmax(0, 1fr));
		}
	}
}
@media (min-width: 840px) {
	.mdc-layout-grid__cell {
		width: calc(33.3333333333% - 24px);
		width: calc(33.3333333333% - 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;
		}
	}
	@supports (display: grid) {
		.mdc-layout-grid__cell {
			margin: 0;
		}
	}
	.mdc-layout-grid__cell--span-1,
	.mdc-layout-grid__cell--span-1-desktop {
		width: calc(8.3333333333% - 24px);
		width: calc(8.3333333333% - 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.6666666667% - 24px);
		width: calc(16.6666666667% - 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.3333333333% - 24px);
		width: calc(33.3333333333% - 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.6666666667% - 24px);
		width: calc(41.6666666667% - 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.3333333333% - 24px);
		width: calc(58.3333333333% - 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.6666666667% - 24px);
		width: calc(66.6666666667% - 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.3333333333% - 24px);
		width: calc(83.3333333333% - 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.6666666667% - 24px);
		width: calc(91.6666666667% - 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: 600px) 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;
		}
	}
	@supports (display: grid) {
		.mdc-layout-grid__cell {
			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: 599px) {
	.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;
		}
	}
	@supports (display: grid) {
		.mdc-layout-grid__cell {
			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: 600px) 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: 599px) {
	.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-right: auto;
	margin-left: 0;
}
.mdc-layout-grid--align-right {
	margin-right: 0;
	margin-left: auto;
}
.mdc-line-ripple::before,
.mdc-line-ripple::after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	border-bottom-style: solid;
	content: '';
}
.mdc-line-ripple::before {
	border-bottom-width: 1px;
	z-index: 1;
}
.mdc-line-ripple::after {
	transform: scaleX(0);
	border-bottom-width: 2px;
	opacity: 0;
	z-index: 2;
}
.mdc-line-ripple::after {
	transition: transform 180ms cubic-bezier(0.4, 0, 0.2, 1),
		opacity 180ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mdc-line-ripple--active::after {
	transform: scaleX(1);
	opacity: 1;
}
.mdc-line-ripple--deactivating::after {
	opacity: 0;
}
.mdc-notched-outline {
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	height: 100%;
	text-align: left;
	pointer-events: none;
}
[dir='rtl'] .mdc-notched-outline,
.mdc-notched-outline[dir='rtl'] {
	text-align: right;
}
.mdc-notched-outline__leading,
.mdc-notched-outline__notch,
.mdc-notched-outline__trailing {
	box-sizing: border-box;
	height: 100%;
	border-top: 1px solid;
	border-bottom: 1px solid;
	pointer-events: none;
}
.mdc-notched-outline__leading {
	border-left: 1px solid;
	border-right: none;
	width: 12px;
}
[dir='rtl'] .mdc-notched-outline__leading,
.mdc-notched-outline__leading[dir='rtl'] {
	border-left: none;
	border-right: 1px solid;
}
.mdc-notched-outline__trailing {
	border-left: none;
	border-right: 1px solid;
	flex-grow: 1;
}
[dir='rtl'] .mdc-notched-outline__trailing,
.mdc-notched-outline__trailing[dir='rtl'] {
	border-left: 1px solid;
	border-right: none;
}
.mdc-notched-outline__notch {
	flex: 0 0 auto;
	width: auto;
	max-width: calc(100% - 12px * 2);
}
.mdc-notched-outline .mdc-floating-label {
	display: inline-block;
	position: relative;
	max-width: 100%;
}
.mdc-notched-outline .mdc-floating-label--float-above {
	text-overflow: clip;
}
.mdc-notched-outline--upgraded .mdc-floating-label--float-above {
	max-width: calc(100% / 0.75);
}
.mdc-notched-outline--notched .mdc-notched-outline__notch {
	padding-left: 0;
	padding-right: 8px;
	border-top: none;
}
[dir='rtl'] .mdc-notched-outline--notched .mdc-notched-outline__notch,
.mdc-notched-outline--notched .mdc-notched-outline__notch[dir='rtl'] {
	padding-left: 8px;
	padding-right: 0;
}
.mdc-notched-outline--no-label .mdc-notched-outline__notch {
	display: none;
}
.mdc-switch__thumb-underlay {
	left: -14px;
	right: initial;
	top: -17px;
	width: 48px;
	height: 48px;
}
[dir='rtl'] .mdc-switch__thumb-underlay,
.mdc-switch__thumb-underlay[dir='rtl'] {
	left: initial;
	right: -14px;
}
.mdc-switch__native-control {
	width: 64px;
	height: 48px;
}
.mdc-switch {
	display: inline-block;
	position: relative;
	outline: none;
	user-select: none;
}
.mdc-switch.mdc-switch--checked .mdc-switch__track {
	background-color: #ee0260;
	background-color: var(--mdc-theme-secondary, #ee0260);
}
.mdc-switch.mdc-switch--checked .mdc-switch__thumb {
	background-color: #ee0260;
	background-color: var(--mdc-theme-secondary, #ee0260);
	border-color: #ee0260;
	border-color: var(--mdc-theme-secondary, #ee0260);
}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__track {
	background-color: #000;
	background-color: var(--mdc-theme-on-surface, #000);
}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb {
	background-color: #fff;
	background-color: var(--mdc-theme-surface, #fff);
	border-color: #fff;
	border-color: var(--mdc-theme-surface, #fff);
}
.mdc-switch__native-control {
	left: 0;
	right: initial;
	position: absolute;
	top: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	pointer-events: auto;
	transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1);
}
[dir='rtl'] .mdc-switch__native-control,
.mdc-switch__native-control[dir='rtl'] {
	left: initial;
	right: 0;
}
.mdc-switch__track {
	box-sizing: border-box;
	width: 36px;
	height: 14px;
	border: 1px solid transparent;
	border-radius: 7px;
	opacity: 0.38;
	transition: opacity 90ms cubic-bezier(0.4, 0, 0.2, 1),
		background-color 90ms cubic-bezier(0.4, 0, 0.2, 1),
		border-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mdc-switch__thumb-underlay {
	display: flex;
	position: absolute;
	align-items: center;
	justify-content: center;
	transform: translateX(0);
	transition: transform 90ms cubic-bezier(0.4, 0, 0.2, 1),
		background-color 90ms cubic-bezier(0.4, 0, 0.2, 1),
		border-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mdc-switch__thumb {
	box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14),
		0px 1px 5px 0px rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	border: 10px solid;
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}
.mdc-switch--checked .mdc-switch__track {
	opacity: 0.54;
}
.mdc-switch--checked .mdc-switch__thumb-underlay {
	transform: translateX(16px);
}
[dir='rtl'] .mdc-switch--checked .mdc-switch__thumb-underlay,
.mdc-switch--checked .mdc-switch__thumb-underlay[dir='rtl'] {
	transform: translateX(-16px);
}
.mdc-switch--checked .mdc-switch__native-control {
	transform: translateX(-16px);
}
[dir='rtl'] .mdc-switch--checked .mdc-switch__native-control,
.mdc-switch--checked .mdc-switch__native-control[dir='rtl'] {
	transform: translateX(16px);
}
.mdc-switch--disabled {
	opacity: 0.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-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay::before,
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay::after {
	background-color: #9e9e9e;
	background-color: var(--mdc-ripple-color, #9e9e9e);
}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:hover::before,
.mdc-switch:not(.mdc-switch--checked)
	.mdc-switch__thumb-underlay.mdc-ripple-surface--hover::before {
	opacity: 0.08;
	opacity: var(--mdc-ripple-hover-opacity, 0.08);
}
.mdc-switch:not(.mdc-switch--checked)
	.mdc-switch__thumb-underlay.mdc-ripple-upgraded--background-focused::before,
.mdc-switch:not(.mdc-switch--checked)
	.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):focus::before {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-focus-opacity, 0.24);
}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded)::after {
	transition: opacity 150ms linear;
}
.mdc-switch:not(.mdc-switch--checked)
	.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):active::after {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.mdc-switch:not(.mdc-switch--checked) .mdc-switch__thumb-underlay.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.mdc-switch__thumb-underlay {
	--mdc-ripple-fg-size: 0;
	--mdc-ripple-left: 0;
	--mdc-ripple-top: 0;
	--mdc-ripple-fg-scale: 1;
	--mdc-ripple-fg-translate-end: 0;
	--mdc-ripple-fg-translate-start: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	will-change: transform, opacity;
}
.mdc-switch__thumb-underlay::before,
.mdc-switch__thumb-underlay::after {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	content: '';
}
.mdc-switch__thumb-underlay::before {
	transition: opacity 15ms linear, background-color 15ms linear;
	z-index: 1;
	z-index: var(--mdc-ripple-z-index, 1);
}
.mdc-switch__thumb-underlay::after {
	z-index: 0;
	z-index: var(--mdc-ripple-z-index, 0);
}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded::before {
	transform: scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded::after {
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: center center;
}
.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: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded--foreground-deactivation::after {
	animation: mdc-ripple-fg-opacity-out 150ms;
	transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-switch__thumb-underlay::before,
.mdc-switch__thumb-underlay::after {
	top: calc(50% - 50%);
	left: calc(50% - 50%);
	width: 100%;
	height: 100%;
}
.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: #ee0260;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-secondary, #ee0260));
}
.mdc-switch__thumb-underlay:hover::before,
.mdc-switch__thumb-underlay.mdc-ripple-surface--hover::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded--background-focused::before,
.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):focus::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded)::after {
	transition: opacity 150ms linear;
}
.mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):active::after {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-switch__thumb-underlay.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-switch.smui-switch--color-primary.mdc-switch--checked .mdc-switch__track {
	background-color: #02ee91;
	background-color: var(--mdc-theme-primary, #02ee91);
}
.mdc-switch.smui-switch--color-primary.mdc-switch--checked .mdc-switch__thumb {
	background-color: #02ee91;
	background-color: var(--mdc-theme-primary, #02ee91);
	border-color: #02ee91;
	border-color: var(--mdc-theme-primary, #02ee91);
}
.smui-switch--color-primary .mdc-switch__thumb-underlay::before,
.smui-switch--color-primary .mdc-switch__thumb-underlay::after {
	background-color: #02ee91;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-primary, #02ee91));
}
.smui-switch--color-primary .mdc-switch__thumb-underlay:hover::before,
.smui-switch--color-primary .mdc-switch__thumb-underlay.mdc-ripple-surface--hover::before {
	opacity: 0.08;
	opacity: var(--mdc-ripple-hover-opacity, 0.08);
}
.smui-switch--color-primary
	.mdc-switch__thumb-underlay.mdc-ripple-upgraded--background-focused::before,
.smui-switch--color-primary .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):focus::before {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-focus-opacity, 0.24);
}
.smui-switch--color-primary .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded)::after {
	transition: opacity 150ms linear;
}
.smui-switch--color-primary .mdc-switch__thumb-underlay:not(.mdc-ripple-upgraded):active::after {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.smui-switch--color-primary .mdc-switch__thumb-underlay.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.mdc-text-field--filled {
	--mdc-ripple-fg-size: 0;
	--mdc-ripple-left: 0;
	--mdc-ripple-top: 0;
	--mdc-ripple-fg-scale: 1;
	--mdc-ripple-fg-translate-end: 0;
	--mdc-ripple-fg-translate-start: 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	will-change: transform, opacity;
}
.mdc-text-field--filled .mdc-text-field__ripple::before,
.mdc-text-field--filled .mdc-text-field__ripple::after {
	position: absolute;
	border-radius: 50%;
	opacity: 0;
	pointer-events: none;
	content: '';
}
.mdc-text-field--filled .mdc-text-field__ripple::before {
	transition: opacity 15ms linear, background-color 15ms linear;
	z-index: 1;
	z-index: var(--mdc-ripple-z-index, 1);
}
.mdc-text-field--filled .mdc-text-field__ripple::after {
	z-index: 0;
	z-index: var(--mdc-ripple-z-index, 0);
}
.mdc-text-field--filled.mdc-ripple-upgraded .mdc-text-field__ripple::before {
	transform: scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-text-field--filled.mdc-ripple-upgraded .mdc-text-field__ripple::after {
	top: 0;
	left: 0;
	transform: scale(0);
	transform-origin: center center;
}
.mdc-text-field--filled.mdc-ripple-upgraded--unbounded .mdc-text-field__ripple::after {
	top: var(--mdc-ripple-top, 0);
	left: var(--mdc-ripple-left, 0);
}
.mdc-text-field--filled.mdc-ripple-upgraded--foreground-activation .mdc-text-field__ripple::after {
	animation: mdc-ripple-fg-radius-in 225ms forwards, mdc-ripple-fg-opacity-in 75ms forwards;
}
.mdc-text-field--filled.mdc-ripple-upgraded--foreground-deactivation
	.mdc-text-field__ripple::after {
	animation: mdc-ripple-fg-opacity-out 150ms;
	transform: translate(var(--mdc-ripple-fg-translate-end, 0)) scale(var(--mdc-ripple-fg-scale, 1));
}
.mdc-text-field--filled .mdc-text-field__ripple::before,
.mdc-text-field--filled .mdc-text-field__ripple::after {
	top: calc(50% - 100%);
	left: calc(50% - 100%);
	width: 200%;
	height: 200%;
}
.mdc-text-field--filled.mdc-ripple-upgraded .mdc-text-field__ripple::after {
	width: var(--mdc-ripple-fg-size, 100%);
	height: var(--mdc-ripple-fg-size, 100%);
}
.mdc-text-field__ripple {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}
.mdc-text-field {
	border-top-left-radius: 4px;
	border-top-left-radius: var(--mdc-shape-small, 4px);
	border-top-right-radius: 4px;
	border-top-right-radius: var(--mdc-shape-small, 4px);
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 0;
	display: inline-flex;
	align-items: baseline;
	padding: 0 16px;
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
	will-change: opacity, transform, color;
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label {
	color: rgba(0, 0, 0, 0.6);
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input {
	color: rgba(0, 0, 0, 0.87);
}
@media all {
	.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input::placeholder {
		color: rgba(0, 0, 0, 0.54);
	}
}
@media all {
	.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__input:-ms-input-placeholder {
		color: rgba(0, 0, 0, 0.54);
	}
}
.mdc-text-field .mdc-text-field__input {
	caret-color: #02ee91;
	caret-color: var(--mdc-theme-primary, #02ee91);
}
.mdc-text-field:not(.mdc-text-field--disabled)
	+ .mdc-text-field-helper-line
	.mdc-text-field-helper-text {
	color: rgba(0, 0, 0, 0.6);
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field-character-counter,
.mdc-text-field:not(.mdc-text-field--disabled)
	+ .mdc-text-field-helper-line
	.mdc-text-field-character-counter {
	color: rgba(0, 0, 0, 0.6);
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon--leading {
	color: rgba(0, 0, 0, 0.54);
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing {
	color: rgba(0, 0, 0, 0.54);
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__affix--prefix {
	color: rgba(0, 0, 0, 0.6);
}
.mdc-text-field:not(.mdc-text-field--disabled) .mdc-text-field__affix--suffix {
	color: rgba(0, 0, 0, 0.6);
}
.mdc-text-field .mdc-floating-label {
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
}
.mdc-text-field__input {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-subtitle1-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 1rem;
	font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
	font-weight: 400;
	font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
	letter-spacing: 0.009375em;
	letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
	text-decoration: inherit;
	text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
	text-transform: inherit;
	text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
	height: 28px;
	transition: opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
	width: 100%;
	min-width: 0;
	border: none;
	border-radius: 0;
	background: none;
	appearance: none;
	padding: 0;
}
.mdc-text-field__input::-ms-clear {
	display: none;
}
.mdc-text-field__input::-webkit-calendar-picker-indicator {
	display: none;
}
.mdc-text-field__input:focus {
	outline: none;
}
.mdc-text-field__input:invalid {
	box-shadow: none;
}
@media all {
	.mdc-text-field__input::placeholder {
		transition: opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
		opacity: 0;
	}
}
@media all {
	.mdc-text-field__input:-ms-input-placeholder {
		transition: opacity 67ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
		opacity: 0;
	}
}
@media all {
	.mdc-text-field--no-label .mdc-text-field__input::placeholder,
	.mdc-text-field--focused .mdc-text-field__input::placeholder {
		transition-delay: 40ms;
		transition-duration: 110ms;
		opacity: 1;
	}
}
@media all {
	.mdc-text-field--no-label .mdc-text-field__input:-ms-input-placeholder,
	.mdc-text-field--focused .mdc-text-field__input:-ms-input-placeholder {
		transition-delay: 40ms;
		transition-duration: 110ms;
		opacity: 1;
	}
}
.mdc-text-field__affix {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-subtitle1-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 1rem;
	font-size: var(--mdc-typography-subtitle1-font-size, 1rem);
	font-weight: 400;
	font-weight: var(--mdc-typography-subtitle1-font-weight, 400);
	letter-spacing: 0.009375em;
	letter-spacing: var(--mdc-typography-subtitle1-letter-spacing, 0.009375em);
	text-decoration: inherit;
	text-decoration: var(--mdc-typography-subtitle1-text-decoration, inherit);
	text-transform: inherit;
	text-transform: var(--mdc-typography-subtitle1-text-transform, inherit);
	height: 28px;
	transition: opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 0;
	white-space: nowrap;
}
.mdc-text-field--label-floating .mdc-text-field__affix,
.mdc-text-field--no-label .mdc-text-field__affix {
	opacity: 1;
}
@supports (-webkit-hyphens: none) {
	.mdc-text-field--outlined .mdc-text-field__affix {
		align-items: center;
		align-self: center;
		display: inline-flex;
		height: 100%;
	}
}
.mdc-text-field__affix--prefix {
	padding-left: 0;
	padding-right: 2px;
}
[dir='rtl'] .mdc-text-field__affix--prefix,
.mdc-text-field__affix--prefix[dir='rtl'] {
	padding-left: 2px;
	padding-right: 0;
}
.mdc-text-field--end-aligned .mdc-text-field__affix--prefix {
	padding-left: 0;
	padding-right: 12px;
}
[dir='rtl'] .mdc-text-field--end-aligned .mdc-text-field__affix--prefix,
.mdc-text-field--end-aligned .mdc-text-field__affix--prefix[dir='rtl'] {
	padding-left: 12px;
	padding-right: 0;
}
.mdc-text-field__affix--suffix {
	padding-left: 12px;
	padding-right: 0;
}
[dir='rtl'] .mdc-text-field__affix--suffix,
.mdc-text-field__affix--suffix[dir='rtl'] {
	padding-left: 0;
	padding-right: 12px;
}
.mdc-text-field--end-aligned .mdc-text-field__affix--suffix {
	padding-left: 2px;
	padding-right: 0;
}
[dir='rtl'] .mdc-text-field--end-aligned .mdc-text-field__affix--suffix,
.mdc-text-field--end-aligned .mdc-text-field__affix--suffix[dir='rtl'] {
	padding-left: 0;
	padding-right: 2px;
}
.mdc-text-field--filled {
	height: 56px;
}
.mdc-text-field--filled .mdc-text-field__ripple::before,
.mdc-text-field--filled .mdc-text-field__ripple::after {
	background-color: rgba(0, 0, 0, 0.87);
	background-color: var(--mdc-ripple-color, rgba(0, 0, 0, 0.87));
}
.mdc-text-field--filled:hover .mdc-text-field__ripple::before,
.mdc-text-field--filled.mdc-ripple-surface--hover .mdc-text-field__ripple::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.mdc-text-field--filled.mdc-ripple-upgraded--background-focused .mdc-text-field__ripple::before,
.mdc-text-field--filled:not(.mdc-ripple-upgraded):focus .mdc-text-field__ripple::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.mdc-text-field--filled::before {
	display: inline-block;
	width: 0;
	height: 40px;
	content: '';
	vertical-align: 0;
}
.mdc-text-field--filled:not(.mdc-text-field--disabled) {
	background-color: whitesmoke;
}
.mdc-text-field--filled:not(.mdc-text-field--disabled) .mdc-line-ripple::before {
	border-bottom-color: rgba(0, 0, 0, 0.42);
}
.mdc-text-field--filled:not(.mdc-text-field--disabled):hover .mdc-line-ripple::before {
	border-bottom-color: rgba(0, 0, 0, 0.87);
}
.mdc-text-field--filled .mdc-line-ripple::after {
	border-bottom-color: #02ee91;
	border-bottom-color: var(--mdc-theme-primary, #02ee91);
}
.mdc-text-field--filled .mdc-floating-label {
	left: 16px;
	right: initial;
}
[dir='rtl'] .mdc-text-field--filled .mdc-floating-label,
.mdc-text-field--filled .mdc-floating-label[dir='rtl'] {
	left: initial;
	right: 16px;
}
.mdc-text-field--filled .mdc-floating-label--float-above {
	transform: translateY(-106%) scale(0.75);
}
.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input {
	height: 100%;
}
.mdc-text-field--filled.mdc-text-field--no-label .mdc-floating-label {
	display: none;
}
.mdc-text-field--filled.mdc-text-field--no-label::before {
	display: none;
}
@supports (-webkit-hyphens: none) {
	.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__affix {
		align-items: center;
		align-self: center;
		display: inline-flex;
		height: 100%;
	}
}
.mdc-text-field--outlined {
	height: 56px;
	overflow: visible;
}
.mdc-text-field--outlined .mdc-floating-label--float-above {
	transform: translateY(-37.25px) scale(1);
}
.mdc-text-field--outlined .mdc-floating-label--float-above {
	font-size: 0.75rem;
}
.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
	transform: translateY(-34.75px) scale(0.75);
}
.mdc-text-field--outlined.mdc-notched-outline--upgraded .mdc-floating-label--float-above,
.mdc-text-field--outlined .mdc-notched-outline--upgraded .mdc-floating-label--float-above {
	font-size: 1rem;
}
.mdc-text-field--outlined .mdc-floating-label--shake {
	animation: mdc-floating-label-shake-float-above-text-field-outlined 250ms 1;
}
@keyframes mdc-floating-label-shake-float-above-text-field-outlined {
	0% {
		transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75);
	}
	33% {
		animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
		transform: translateX(calc(4% - 0%)) translateY(-34.75px) scale(0.75);
	}
	66% {
		animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
		transform: translateX(calc(-4% - 0%)) translateY(-34.75px) scale(0.75);
	}
	100% {
		transform: translateX(calc(0 - 0%)) translateY(-34.75px) scale(0.75);
	}
}
.mdc-text-field--outlined .mdc-text-field__input {
	height: 100%;
}
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
	border-color: rgba(0, 0, 0, 0.38);
}
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover
	.mdc-notched-outline
	.mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover
	.mdc-notched-outline
	.mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover
	.mdc-notched-outline
	.mdc-notched-outline__trailing {
	border-color: rgba(0, 0, 0, 0.87);
}
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused
	.mdc-notched-outline__leading,
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused
	.mdc-notched-outline__notch,
.mdc-text-field--outlined:not(.mdc-text-field--disabled).mdc-text-field--focused
	.mdc-notched-outline__trailing {
	border-color: #02ee91;
	border-color: var(--mdc-theme-primary, #02ee91);
}
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
	border-top-left-radius: 4px;
	border-top-left-radius: var(--mdc-shape-small, 4px);
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 4px;
	border-bottom-left-radius: var(--mdc-shape-small, 4px);
}
[dir='rtl'] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading,
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading[dir='rtl'] {
	border-top-left-radius: 0;
	border-top-right-radius: 4px;
	border-top-right-radius: var(--mdc-shape-small, 4px);
	border-bottom-right-radius: 4px;
	border-bottom-right-radius: var(--mdc-shape-small, 4px);
	border-bottom-left-radius: 0;
}
@supports (top: max(0%)) {
	.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__leading {
		width: max(12px, var(--mdc-shape-small, 4px));
	}
}
@supports (top: max(0%)) {
	.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__notch {
		max-width: calc(100% - max(12px, var(--mdc-shape-small, 4px)) * 2);
	}
}
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing {
	border-top-left-radius: 0;
	border-top-right-radius: 4px;
	border-top-right-radius: var(--mdc-shape-small, 4px);
	border-bottom-right-radius: 4px;
	border-bottom-right-radius: var(--mdc-shape-small, 4px);
	border-bottom-left-radius: 0;
}
[dir='rtl'] .mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing,
.mdc-text-field--outlined .mdc-notched-outline .mdc-notched-outline__trailing[dir='rtl'] {
	border-top-left-radius: 4px;
	border-top-left-radius: var(--mdc-shape-small, 4px);
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 4px;
	border-bottom-left-radius: var(--mdc-shape-small, 4px);
}
@supports (top: max(0%)) {
	.mdc-text-field--outlined {
		padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px));
	}
}
@supports (top: max(0%)) {
	.mdc-text-field--outlined {
		padding-right: max(16px, var(--mdc-shape-small, 4px));
	}
}
@supports (top: max(0%)) {
	.mdc-text-field--outlined + .mdc-text-field-helper-line {
		padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px));
	}
}
@supports (top: max(0%)) {
	.mdc-text-field--outlined + .mdc-text-field-helper-line {
		padding-right: max(16px, var(--mdc-shape-small, 4px));
	}
}
.mdc-text-field--outlined.mdc-text-field--with-leading-icon {
	padding-left: 0;
}
@supports (top: max(0%)) {
	.mdc-text-field--outlined.mdc-text-field--with-leading-icon {
		padding-right: max(16px, var(--mdc-shape-small, 4px));
	}
}
[dir='rtl'] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,
.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir='rtl'] {
	padding-right: 0;
}
@supports (top: max(0%)) {
	[dir='rtl'] .mdc-text-field--outlined.mdc-text-field--with-leading-icon,
	.mdc-text-field--outlined.mdc-text-field--with-leading-icon[dir='rtl'] {
		padding-left: max(16px, var(--mdc-shape-small, 4px));
	}
}
.mdc-text-field--outlined.mdc-text-field--with-trailing-icon {
	padding-right: 0;
}
@supports (top: max(0%)) {
	.mdc-text-field--outlined.mdc-text-field--with-trailing-icon {
		padding-left: max(16px, calc(var(--mdc-shape-small, 4px) + 4px));
	}
}
[dir='rtl'] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,
.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir='rtl'] {
	padding-left: 0;
}
@supports (top: max(0%)) {
	[dir='rtl'] .mdc-text-field--outlined.mdc-text-field--with-trailing-icon,
	.mdc-text-field--outlined.mdc-text-field--with-trailing-icon[dir='rtl'] {
		padding-right: max(16px, calc(var(--mdc-shape-small, 4px) + 4px));
	}
}
.mdc-text-field--outlined.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon {
	padding-left: 0;
	padding-right: 0;
}
.mdc-text-field--outlined .mdc-notched-outline--notched .mdc-notched-outline__notch {
	padding-top: 1px;
}
.mdc-text-field--outlined .mdc-text-field__ripple::before,
.mdc-text-field--outlined .mdc-text-field__ripple::after {
	content: none;
}
.mdc-text-field--outlined .mdc-floating-label {
	left: 4px;
	right: initial;
}
[dir='rtl'] .mdc-text-field--outlined .mdc-floating-label,
.mdc-text-field--outlined .mdc-floating-label[dir='rtl'] {
	left: initial;
	right: 4px;
}
.mdc-text-field--outlined .mdc-text-field__input {
	display: flex;
	border: none !important;
	background-color: transparent;
}
.mdc-text-field--outlined .mdc-notched-outline {
	z-index: 1;
}
.mdc-text-field--textarea {
	flex-direction: column;
	align-items: center;
	width: auto;
	height: auto;
	padding: 0;
	transition: none;
}
.mdc-text-field--textarea .mdc-floating-label {
	top: 19px;
}
.mdc-text-field--textarea .mdc-floating-label:not(.mdc-floating-label--float-above) {
	transform: none;
}
.mdc-text-field--textarea .mdc-text-field__input {
	flex-grow: 1;
	height: auto;
	min-height: 1.5rem;
	overflow-x: hidden;
	overflow-y: auto;
	box-sizing: border-box;
	resize: none;
	padding: 0 16px;
	line-height: 1.5rem;
}
.mdc-text-field--textarea.mdc-text-field--filled::before {
	display: none;
}
.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--float-above {
	transform: translateY(-10.25px) scale(0.75);
}
.mdc-text-field--textarea.mdc-text-field--filled .mdc-floating-label--shake {
	animation: mdc-floating-label-shake-float-above-textarea-filled 250ms 1;
}
@keyframes mdc-floating-label-shake-float-above-textarea-filled {
	0% {
		transform: translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75);
	}
	33% {
		animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
		transform: translateX(calc(4% - 0%)) translateY(-10.25px) scale(0.75);
	}
	66% {
		animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
		transform: translateX(calc(-4% - 0%)) translateY(-10.25px) scale(0.75);
	}
	100% {
		transform: translateX(calc(0 - 0%)) translateY(-10.25px) scale(0.75);
	}
}
.mdc-text-field--textarea.mdc-text-field--filled .mdc-text-field__input {
	margin-top: 23px;
	margin-bottom: 9px;
}
.mdc-text-field--textarea.mdc-text-field--filled.mdc-text-field--no-label .mdc-text-field__input {
	margin-top: 16px;
	margin-bottom: 16px;
}
.mdc-text-field--textarea.mdc-text-field--outlined
	.mdc-notched-outline--notched
	.mdc-notched-outline__notch {
	padding-top: 0;
}
.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above {
	transform: translateY(-27.25px) scale(1);
}
.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--float-above {
	font-size: 0.75rem;
}
.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above,
.mdc-text-field--textarea.mdc-text-field--outlined
	.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above {
	transform: translateY(-24.75px) scale(0.75);
}
.mdc-text-field--textarea.mdc-text-field--outlined.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above,
.mdc-text-field--textarea.mdc-text-field--outlined
	.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above {
	font-size: 1rem;
}
.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label--shake {
	animation: mdc-floating-label-shake-float-above-textarea-outlined 250ms 1;
}
@keyframes mdc-floating-label-shake-float-above-textarea-outlined {
	0% {
		transform: translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75);
	}
	33% {
		animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
		transform: translateX(calc(4% - 0%)) translateY(-24.75px) scale(0.75);
	}
	66% {
		animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
		transform: translateX(calc(-4% - 0%)) translateY(-24.75px) scale(0.75);
	}
	100% {
		transform: translateX(calc(0 - 0%)) translateY(-24.75px) scale(0.75);
	}
}
.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input {
	margin-top: 16px;
	margin-bottom: 16px;
}
.mdc-text-field--textarea.mdc-text-field--outlined .mdc-floating-label {
	top: 18px;
}
.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field__input {
	margin-bottom: 2px;
}
.mdc-text-field--textarea.mdc-text-field--with-internal-counter .mdc-text-field-character-counter {
	align-self: flex-end;
	padding: 0 16px;
}
.mdc-text-field--textarea.mdc-text-field--with-internal-counter
	.mdc-text-field-character-counter::after {
	display: inline-block;
	width: 0;
	height: 16px;
	content: '';
	vertical-align: -16px;
}
.mdc-text-field--textarea.mdc-text-field--with-internal-counter
	.mdc-text-field-character-counter::before {
	display: none;
}
.mdc-text-field__resizer {
	align-self: stretch;
	display: inline-flex;
	flex-direction: column;
	flex-grow: 1;
	max-height: 100%;
	max-width: 100%;
	min-height: 56px;
	min-width: fit-content;
	min-width: -moz-available;
	min-width: -webkit-fill-available;
	overflow: hidden;
	resize: both;
}
.mdc-text-field--filled .mdc-text-field__resizer {
	transform: translateY(-1px);
}
.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field__input,
.mdc-text-field--filled .mdc-text-field__resizer .mdc-text-field-character-counter {
	transform: translateY(1px);
}
.mdc-text-field--outlined .mdc-text-field__resizer {
	transform: translateX(-1px) translateY(-1px);
}
[dir='rtl'] .mdc-text-field--outlined .mdc-text-field__resizer,
.mdc-text-field--outlined .mdc-text-field__resizer[dir='rtl'] {
	transform: translateX(1px) translateY(-1px);
}
.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,
.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter {
	transform: translateX(1px) translateY(1px);
}
[dir='rtl'] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input,
.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field__input[dir='rtl'],
[dir='rtl'] .mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter,
.mdc-text-field--outlined .mdc-text-field__resizer .mdc-text-field-character-counter[dir='rtl'] {
	transform: translateX(-1px) translateY(1px);
}
.mdc-text-field--with-leading-icon {
	padding-left: 0;
	padding-right: 16px;
}
[dir='rtl'] .mdc-text-field--with-leading-icon,
.mdc-text-field--with-leading-icon[dir='rtl'] {
	padding-left: 16px;
	padding-right: 0;
}
.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label {
	max-width: calc(100% - 48px);
	left: 48px;
	right: initial;
}
[dir='rtl'] .mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label,
.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label[dir='rtl'] {
	left: initial;
	right: 48px;
}
.mdc-text-field--with-leading-icon.mdc-text-field--filled .mdc-floating-label--float-above {
	max-width: calc(100% / 0.75 - 64px / 0.75);
}
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label {
	left: 36px;
	right: initial;
}
[dir='rtl'] .mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label[dir='rtl'] {
	left: initial;
	right: 36px;
}
.mdc-text-field--with-leading-icon.mdc-text-field--outlined
	:not(.mdc-notched-outline--notched)
	.mdc-notched-outline__notch {
	max-width: calc(100% - 60px);
}
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
	transform: translateY(-37.25px) translateX(-32px) scale(1);
}
[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(-37.25px) translateX(32px) scale(1);
}
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--float-above {
	font-size: 0.75rem;
}
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined
	.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above {
	transform: translateY(-34.75px) translateX(-32px) scale(0.75);
}
[dir='rtl']
	.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above[dir='rtl'],
[dir='rtl']
	.mdc-text-field--with-leading-icon.mdc-text-field--outlined
	.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined
	.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above[dir='rtl'] {
	transform: translateY(-34.75px) translateX(32px) scale(0.75);
}
.mdc-text-field--with-leading-icon.mdc-text-field--outlined.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above,
.mdc-text-field--with-leading-icon.mdc-text-field--outlined
	.mdc-notched-outline--upgraded
	.mdc-floating-label--float-above {
	font-size: 1rem;
}
.mdc-text-field--with-leading-icon.mdc-text-field--outlined .mdc-floating-label--shake {
	animation: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1;
}
@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon {
	0% {
		transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75);
	}
	33% {
		animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
		transform: translateX(calc(4% - 32px)) translateY(-34.75px) scale(0.75);
	}
	66% {
		animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
		transform: translateX(calc(-4% - 32px)) translateY(-34.75px) scale(0.75);
	}
	100% {
		transform: translateX(calc(0 - 32px)) translateY(-34.75px) scale(0.75);
	}
}
[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: mdc-floating-label-shake-float-above-text-field-outlined-leading-icon 250ms 1;
}
@keyframes mdc-floating-label-shake-float-above-text-field-outlined-leading-icon-rtl {
	0% {
		transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75);
	}
	33% {
		animation-timing-function: cubic-bezier(0.5, 0, 0.701732, 0.495819);
		transform: translateX(calc(4% - -32px)) translateY(-34.75px) scale(0.75);
	}
	66% {
		animation-timing-function: cubic-bezier(0.302435, 0.381352, 0.55, 0.956352);
		transform: translateX(calc(-4% - -32px)) translateY(-34.75px) scale(0.75);
	}
	100% {
		transform: translateX(calc(0 - -32px)) translateY(-34.75px) scale(0.75);
	}
}
.mdc-text-field--with-trailing-icon {
	padding-left: 16px;
	padding-right: 0;
}
[dir='rtl'] .mdc-text-field--with-trailing-icon,
.mdc-text-field--with-trailing-icon[dir='rtl'] {
	padding-left: 0;
	padding-right: 16px;
}
.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label {
	max-width: calc(100% - 64px);
}
.mdc-text-field--with-trailing-icon.mdc-text-field--filled .mdc-floating-label--float-above {
	max-width: calc(100% / 0.75 - 64px / 0.75);
}
.mdc-text-field--with-trailing-icon.mdc-text-field--outlined
	:not(.mdc-notched-outline--notched)
	.mdc-notched-outline__notch {
	max-width: calc(100% - 60px);
}
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon {
	padding-left: 0;
	padding-right: 0;
}
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled
	.mdc-floating-label {
	max-width: calc(100% - 96px);
}
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.mdc-text-field--filled
	.mdc-floating-label--float-above {
	max-width: calc(100% / 0.75 - 96px / 0.75);
}
.mdc-text-field-helper-line {
	display: flex;
	justify-content: space-between;
	box-sizing: border-box;
}
.mdc-text-field + .mdc-text-field-helper-line {
	padding-right: 16px;
	padding-left: 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: rgba(2, 238, 145, 0.87);
}
.mdc-text-field--focused .mdc-notched-outline__leading,
.mdc-text-field--focused .mdc-notched-outline__notch,
.mdc-text-field--focused .mdc-notched-outline__trailing {
	border-width: 2px;
}
.mdc-text-field--focused
	+ .mdc-text-field-helper-line
	.mdc-text-field-helper-text:not(.mdc-text-field-helper-text--validation-msg) {
	opacity: 1;
}
.mdc-text-field--focused.mdc-text-field--outlined
	.mdc-notched-outline--notched
	.mdc-notched-outline__notch {
	padding-top: 2px;
}
.mdc-text-field--focused.mdc-text-field--outlined.mdc-text-field--textarea
	.mdc-notched-outline--notched
	.mdc-notched-outline__notch {
	padding-top: 0;
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled):hover .mdc-line-ripple::before {
	border-bottom-color: #b71c1c;
	border-bottom-color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::after {
	border-bottom-color: #b71c1c;
	border-bottom-color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-floating-label {
	color: #b71c1c;
	color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--invalid
	+ .mdc-text-field-helper-line
	.mdc-text-field-helper-text--validation-msg {
	color: #b71c1c;
	color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid .mdc-text-field__input {
	caret-color: #b71c1c;
	caret-color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-text-field__icon--trailing {
	color: #b71c1c;
	color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-line-ripple::before {
	border-bottom-color: #b71c1c;
	border-bottom-color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__leading,
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__notch,
.mdc-text-field--invalid:not(.mdc-text-field--disabled) .mdc-notched-outline__trailing {
	border-color: #b71c1c;
	border-color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover
	.mdc-notched-outline
	.mdc-notched-outline__leading,
.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover
	.mdc-notched-outline
	.mdc-notched-outline__notch,
.mdc-text-field--invalid:not(.mdc-text-field--disabled):not(.mdc-text-field--focused):hover
	.mdc-notched-outline
	.mdc-notched-outline__trailing {
	border-color: #b71c1c;
	border-color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused
	.mdc-notched-outline__leading,
.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused
	.mdc-notched-outline__notch,
.mdc-text-field--invalid:not(.mdc-text-field--disabled).mdc-text-field--focused
	.mdc-notched-outline__trailing {
	border-color: #b71c1c;
	border-color: var(--mdc-theme-error, #b71c1c);
}
.mdc-text-field--invalid + .mdc-text-field-helper-line .mdc-text-field-helper-text--validation-msg {
	opacity: 1;
}
.mdc-text-field--disabled {
	pointer-events: none;
}
.mdc-text-field--disabled .mdc-text-field__input {
	color: rgba(0, 0, 0, 0.38);
}
@media all {
	.mdc-text-field--disabled .mdc-text-field__input::placeholder {
		color: rgba(0, 0, 0, 0.38);
	}
}
@media all {
	.mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder {
		color: rgba(0, 0, 0, 0.38);
	}
}
.mdc-text-field--disabled .mdc-floating-label {
	color: rgba(0, 0, 0, 0.38);
}
.mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-helper-text {
	color: rgba(0, 0, 0, 0.38);
}
.mdc-text-field--disabled .mdc-text-field-character-counter,
.mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-character-counter {
	color: rgba(0, 0, 0, 0.38);
}
.mdc-text-field--disabled .mdc-text-field__icon--leading {
	color: rgba(0, 0, 0, 0.3);
}
.mdc-text-field--disabled .mdc-text-field__icon--trailing {
	color: rgba(0, 0, 0, 0.3);
}
.mdc-text-field--disabled .mdc-text-field__affix--prefix {
	color: rgba(0, 0, 0, 0.38);
}
.mdc-text-field--disabled .mdc-text-field__affix--suffix {
	color: rgba(0, 0, 0, 0.38);
}
.mdc-text-field--disabled .mdc-line-ripple::before {
	border-bottom-color: rgba(0, 0, 0, 0.06);
}
.mdc-text-field--disabled .mdc-notched-outline__leading,
.mdc-text-field--disabled .mdc-notched-outline__notch,
.mdc-text-field--disabled .mdc-notched-outline__trailing {
	border-color: rgba(0, 0, 0, 0.06);
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-text-field__input::placeholder {
		color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-text-field__input:-ms-input-placeholder {
		color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-floating-label {
		color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-helper-text {
		color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-text-field-character-counter,
	.mdc-text-field--disabled + .mdc-text-field-helper-line .mdc-text-field-character-counter {
		color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-text-field__icon--leading {
		color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-text-field__icon--trailing {
		color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-text-field__affix--prefix {
		color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-text-field__affix--suffix {
		color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-line-ripple::before {
		border-bottom-color: GrayText;
	}
}
@media screen and (-ms-high-contrast: active) {
	.mdc-text-field--disabled .mdc-notched-outline__leading,
	.mdc-text-field--disabled .mdc-notched-outline__notch,
	.mdc-text-field--disabled .mdc-notched-outline__trailing {
		border-color: GrayText;
	}
}
.mdc-text-field--disabled .mdc-floating-label {
	cursor: default;
}
.mdc-text-field--disabled.mdc-text-field--filled {
	background-color: #fafafa;
}
.mdc-text-field--disabled.mdc-text-field--filled .mdc-text-field__ripple {
	display: none;
}
.mdc-text-field--disabled .mdc-text-field__input {
	pointer-events: auto;
}
.mdc-text-field--end-aligned .mdc-text-field__input {
	text-align: right;
}
[dir='rtl'] .mdc-text-field--end-aligned .mdc-text-field__input,
.mdc-text-field--end-aligned .mdc-text-field__input[dir='rtl'] {
	text-align: left;
}
[dir='rtl'] .mdc-text-field--ltr-text .mdc-text-field__input,
[dir='rtl'] .mdc-text-field--ltr-text .mdc-text-field__affix,
.mdc-text-field--ltr-text[dir='rtl'] .mdc-text-field__input,
.mdc-text-field--ltr-text[dir='rtl'] .mdc-text-field__affix {
	direction: ltr;
}
[dir='rtl'] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,
.mdc-text-field--ltr-text[dir='rtl'] .mdc-text-field__affix--prefix {
	padding-left: 0;
	padding-right: 2px;
}
[dir='rtl'] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,
.mdc-text-field--ltr-text[dir='rtl'] .mdc-text-field__affix--suffix {
	padding-left: 12px;
	padding-right: 0;
}
[dir='rtl'] .mdc-text-field--ltr-text .mdc-text-field__icon--leading,
.mdc-text-field--ltr-text[dir='rtl'] .mdc-text-field__icon--leading {
	order: 1;
}
[dir='rtl'] .mdc-text-field--ltr-text .mdc-text-field__affix--suffix,
.mdc-text-field--ltr-text[dir='rtl'] .mdc-text-field__affix--suffix {
	order: 2;
}
[dir='rtl'] .mdc-text-field--ltr-text .mdc-text-field__input,
.mdc-text-field--ltr-text[dir='rtl'] .mdc-text-field__input {
	order: 3;
}
[dir='rtl'] .mdc-text-field--ltr-text .mdc-text-field__affix--prefix,
.mdc-text-field--ltr-text[dir='rtl'] .mdc-text-field__affix--prefix {
	order: 4;
}
[dir='rtl'] .mdc-text-field--ltr-text .mdc-text-field__icon--trailing,
.mdc-text-field--ltr-text[dir='rtl'] .mdc-text-field__icon--trailing {
	order: 5;
}
[dir='rtl'] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__input,
.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir='rtl'] .mdc-text-field__input {
	text-align: right;
}
[dir='rtl'] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--prefix,
.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir='rtl'] .mdc-text-field__affix--prefix {
	padding-right: 12px;
}
[dir='rtl'] .mdc-text-field--ltr-text.mdc-text-field--end-aligned .mdc-text-field__affix--suffix,
.mdc-text-field--ltr-text.mdc-text-field--end-aligned[dir='rtl'] .mdc-text-field__affix--suffix {
	padding-left: 2px;
}
.mdc-text-field-helper-text {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-caption-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 0.75rem;
	font-size: var(--mdc-typography-caption-font-size, 0.75rem);
	line-height: 1.25rem;
	line-height: var(--mdc-typography-caption-line-height, 1.25rem);
	font-weight: 400;
	font-weight: var(--mdc-typography-caption-font-weight, 400);
	letter-spacing: 0.0333333333em;
	letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
	text-decoration: inherit;
	text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
	text-transform: inherit;
	text-transform: var(--mdc-typography-caption-text-transform, inherit);
	display: block;
	margin-top: 0;
	line-height: normal;
	margin: 0;
	opacity: 0;
	will-change: opacity;
	transition: opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mdc-text-field-helper-text::before {
	display: inline-block;
	width: 0;
	height: 16px;
	content: '';
	vertical-align: 0;
}
.mdc-text-field-helper-text--persistent {
	transition: none;
	opacity: 1;
	will-change: initial;
}
.mdc-text-field-character-counter {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-caption-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 0.75rem;
	font-size: var(--mdc-typography-caption-font-size, 0.75rem);
	line-height: 1.25rem;
	line-height: var(--mdc-typography-caption-line-height, 1.25rem);
	font-weight: 400;
	font-weight: var(--mdc-typography-caption-font-weight, 400);
	letter-spacing: 0.0333333333em;
	letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
	text-decoration: inherit;
	text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
	text-transform: inherit;
	text-transform: var(--mdc-typography-caption-text-transform, inherit);
	display: block;
	margin-top: 0;
	line-height: normal;
	margin-left: auto;
	margin-right: 0;
	padding-left: 16px;
	padding-right: 0;
	white-space: nowrap;
}
.mdc-text-field-character-counter::before {
	display: inline-block;
	width: 0;
	height: 16px;
	content: '';
	vertical-align: 0;
}
[dir='rtl'] .mdc-text-field-character-counter,
.mdc-text-field-character-counter[dir='rtl'] {
	margin-left: 0;
	margin-right: auto;
}
[dir='rtl'] .mdc-text-field-character-counter,
.mdc-text-field-character-counter[dir='rtl'] {
	padding-left: 0;
	padding-right: 16px;
}
.mdc-text-field__icon {
	align-self: center;
	cursor: pointer;
}
.mdc-text-field__icon:not([tabindex]),
.mdc-text-field__icon[tabindex='-1'] {
	cursor: default;
	pointer-events: none;
}
.mdc-text-field__icon svg {
	display: block;
}
.mdc-text-field__icon--leading {
	margin-left: 16px;
	margin-right: 8px;
}
[dir='rtl'] .mdc-text-field__icon--leading,
.mdc-text-field__icon--leading[dir='rtl'] {
	margin-left: 8px;
	margin-right: 16px;
}
.mdc-text-field__icon--trailing {
	padding: 12px;
	margin-left: 0px;
	margin-right: 0px;
}
[dir='rtl'] .mdc-text-field__icon--trailing,
.mdc-text-field__icon--trailing[dir='rtl'] {
	margin-left: 0px;
	margin-right: 0px;
}
.smui-text-field--standard {
	height: 56px;
	padding: 0;
}
.smui-text-field--standard::before {
	display: inline-block;
	width: 0;
	height: 40px;
	content: '';
	vertical-align: 0;
}
.smui-text-field--standard:not(.mdc-text-field--disabled) {
	background-color: transparent;
}
.smui-text-field--standard:not(.mdc-text-field--disabled) .mdc-line-ripple::before {
	border-bottom-color: rgba(0, 0, 0, 0.42);
}
.smui-text-field--standard:not(.mdc-text-field--disabled):hover .mdc-line-ripple::before {
	border-bottom-color: rgba(0, 0, 0, 0.87);
}
.smui-text-field--standard .mdc-line-ripple::after {
	border-bottom-color: #02ee91;
	border-bottom-color: var(--mdc-theme-primary, #02ee91);
}
.smui-text-field--standard .mdc-floating-label {
	left: 0;
	right: initial;
}
[dir='rtl'] .smui-text-field--standard .mdc-floating-label,
.smui-text-field--standard .mdc-floating-label[dir='rtl'] {
	left: initial;
	right: 0;
}
.smui-text-field--standard .mdc-floating-label--float-above {
	transform: translateY(-106%) scale(0.75);
}
.smui-text-field--standard.mdc-text-field--no-label .mdc-text-field__input {
	height: 100%;
}
.smui-text-field--standard.mdc-text-field--no-label .mdc-floating-label {
	display: none;
}
.smui-text-field--standard.mdc-text-field--no-label::before {
	display: none;
}
@supports (-webkit-hyphens: none) {
	.smui-text-field--standard.mdc-text-field--no-label .mdc-text-field__affix {
		align-items: center;
		align-self: center;
		display: inline-flex;
		height: 100%;
	}
}
.mdc-text-field--with-leading-icon.smui-text-field--standard .mdc-floating-label {
	max-width: calc(100% - 32px);
	left: 32px;
	right: initial;
}
[dir='rtl'] .mdc-text-field--with-leading-icon.smui-text-field--standard .mdc-floating-label,
.mdc-text-field--with-leading-icon.smui-text-field--standard .mdc-floating-label[dir='rtl'] {
	left: initial;
	right: 32px;
}
.mdc-text-field--with-leading-icon.smui-text-field--standard .mdc-floating-label--float-above {
	max-width: calc(100% / 0.75 - 48px / 0.75);
}
.mdc-text-field--with-trailing-icon.smui-text-field--standard .mdc-floating-label {
	max-width: calc(100% - 36px);
}
.mdc-text-field--with-trailing-icon.smui-text-field--standard .mdc-floating-label--float-above {
	max-width: calc(100% / 0.75 - 36px / 0.75);
}
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.smui-text-field--standard
	.mdc-floating-label {
	max-width: calc(100% - 68px);
}
.mdc-text-field--with-leading-icon.mdc-text-field--with-trailing-icon.smui-text-field--standard
	.mdc-floating-label--float-above {
	max-width: calc(100% / 0.75 - 68px / 0.75);
}
.mdc-text-field + .mdc-text-field-helper-line {
	padding-left: 0;
	padding-right: 0;
}
.mdc-text-field-character-counter {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-caption-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 0.75rem;
	font-size: var(--mdc-typography-caption-font-size, 0.75rem);
	line-height: 1.25rem;
	line-height: var(--mdc-typography-caption-line-height, 1.25rem);
	font-weight: 400;
	font-weight: var(--mdc-typography-caption-font-weight, 400);
	letter-spacing: 0.0333333333em;
	letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
	text-decoration: inherit;
	text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
	text-transform: inherit;
	text-transform: var(--mdc-typography-caption-text-transform, inherit);
	display: block;
	margin-top: 0;
	line-height: normal;
	margin-left: auto;
	margin-right: 0;
	padding-left: 16px;
	padding-right: 0;
	white-space: nowrap;
}
.mdc-text-field-character-counter::before {
	display: inline-block;
	width: 0;
	height: 16px;
	content: '';
	vertical-align: 0;
}
[dir='rtl'] .mdc-text-field-character-counter,
.mdc-text-field-character-counter[dir='rtl'] {
	margin-left: 0;
	margin-right: auto;
}
[dir='rtl'] .mdc-text-field-character-counter,
.mdc-text-field-character-counter[dir='rtl'] {
	padding-left: 0;
	padding-right: 16px;
}
.mdc-text-field-helper-text {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-caption-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 0.75rem;
	font-size: var(--mdc-typography-caption-font-size, 0.75rem);
	line-height: 1.25rem;
	line-height: var(--mdc-typography-caption-line-height, 1.25rem);
	font-weight: 400;
	font-weight: var(--mdc-typography-caption-font-weight, 400);
	letter-spacing: 0.0333333333em;
	letter-spacing: var(--mdc-typography-caption-letter-spacing, 0.0333333333em);
	text-decoration: inherit;
	text-decoration: var(--mdc-typography-caption-text-decoration, inherit);
	text-transform: inherit;
	text-transform: var(--mdc-typography-caption-text-transform, inherit);
	display: block;
	margin-top: 0;
	line-height: normal;
	margin: 0;
	opacity: 0;
	will-change: opacity;
	transition: opacity 150ms 0ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mdc-text-field-helper-text::before {
	display: inline-block;
	width: 0;
	height: 16px;
	content: '';
	vertical-align: 0;
}
.mdc-text-field-helper-text--persistent {
	transition: none;
	opacity: 1;
	will-change: initial;
}
.mdc-text-field__icon {
	align-self: center;
	cursor: pointer;
}
.mdc-text-field__icon:not([tabindex]),
.mdc-text-field__icon[tabindex='-1'] {
	cursor: default;
	pointer-events: none;
}
.mdc-text-field__icon svg {
	display: block;
}
.mdc-text-field__icon--leading {
	margin-left: 16px;
	margin-right: 8px;
}
[dir='rtl'] .mdc-text-field__icon--leading,
.mdc-text-field__icon--leading[dir='rtl'] {
	margin-left: 8px;
	margin-right: 16px;
}
.mdc-text-field__icon--trailing {
	padding: 12px;
	margin-left: 0px;
	margin-right: 0px;
}
[dir='rtl'] .mdc-text-field__icon--trailing,
.mdc-text-field__icon--trailing[dir='rtl'] {
	margin-left: 0px;
	margin-right: 0px;
}
.smui-text-field--standard .mdc-text-field__icon--leading {
	margin-left: 0;
	margin-right: 8px;
}
[dir='rtl'] .smui-text-field--standard .mdc-text-field__icon--leading,
.smui-text-field--standard .mdc-text-field__icon--leading[dir='rtl'] {
	margin-left: 8px;
	margin-right: 0;
}
.smui-text-field--standard .mdc-text-field__icon--trailing {
	padding-top: 12px;
	padding-bottom: 12px;
	padding-left: 12px;
	padding-right: 0;
	margin-left: 0px;
	margin-right: 0;
}
[dir='rtl'] .smui-text-field--standard .mdc-text-field__icon--trailing,
.smui-text-field--standard .mdc-text-field__icon--trailing[dir='rtl'] {
	padding-left: 0;
	padding-right: 12px;
}
[dir='rtl'] .smui-text-field--standard .mdc-text-field__icon--trailing,
.smui-text-field--standard .mdc-text-field__icon--trailing[dir='rtl'] {
	margin-left: 0;
	margin-right: 0px;
}
.mdc-top-app-bar {
	background-color: #02ee91;
	background-color: var(--mdc-theme-primary, #02ee91);
	color: rgba(0, 0, 0, 0.87);
	display: flex;
	position: fixed;
	flex-direction: column;
	justify-content: space-between;
	box-sizing: border-box;
	width: 100%;
	z-index: 4;
}
.mdc-top-app-bar .mdc-top-app-bar__action-item,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon {
	color: #000;
	color: var(--mdc-theme-on-primary, #000);
}
.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: #000;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-on-primary, #000));
}
.mdc-top-app-bar .mdc-top-app-bar__action-item:hover::before,
.mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-surface--hover::before,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:hover::before,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-surface--hover::before {
	opacity: 0.04;
	opacity: var(--mdc-ripple-hover-opacity, 0.04);
}
.mdc-top-app-bar .mdc-top-app-bar__action-item.mdc-ripple-upgraded--background-focused::before,
.mdc-top-app-bar .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):focus::before,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--background-focused::before,
.mdc-top-app-bar .mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):focus::before {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-focus-opacity, 0.12);
}
.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 150ms 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 {
	transition-duration: 75ms;
	opacity: 0.12;
	opacity: var(--mdc-ripple-press-opacity, 0.12);
}
.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: var(--mdc-ripple-press-opacity, 0.12);
}
.mdc-top-app-bar__row {
	display: flex;
	position: relative;
	box-sizing: border-box;
	width: 100%;
	height: 64px;
}
.mdc-top-app-bar__section {
	display: inline-flex;
	flex: 1 1 auto;
	align-items: center;
	min-width: 0;
	padding: 8px 12px;
	z-index: 1;
}
.mdc-top-app-bar__section--align-start {
	justify-content: flex-start;
	order: -1;
}
.mdc-top-app-bar__section--align-end {
	justify-content: flex-end;
	order: 1;
}
.mdc-top-app-bar__title {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, sans-serif;
	font-family: var(
		--mdc-typography-headline6-font-family,
		var(--mdc-typography-font-family, Roboto, sans-serif)
	);
	font-size: 1.25rem;
	font-size: var(--mdc-typography-headline6-font-size, 1.25rem);
	line-height: 2rem;
	line-height: var(--mdc-typography-headline6-line-height, 2rem);
	font-weight: 500;
	font-weight: var(--mdc-typography-headline6-font-weight, 500);
	letter-spacing: 0.0125em;
	letter-spacing: var(--mdc-typography-headline6-letter-spacing, 0.0125em);
	text-decoration: inherit;
	text-decoration: var(--mdc-typography-headline6-text-decoration, inherit);
	text-transform: inherit;
	text-transform: var(--mdc-typography-headline6-text-transform, inherit);
	padding-left: 20px;
	padding-right: 0;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	z-index: 1;
}
[dir='rtl'] .mdc-top-app-bar__title,
.mdc-top-app-bar__title[dir='rtl'] {
	padding-left: 0;
	padding-right: 20px;
}
.mdc-top-app-bar--short-collapsed {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 24px;
	border-bottom-left-radius: 0;
}
[dir='rtl'] .mdc-top-app-bar--short-collapsed,
.mdc-top-app-bar--short-collapsed[dir='rtl'] {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	border-bottom-left-radius: 24px;
}
.mdc-top-app-bar--short {
	top: 0;
	right: auto;
	left: 0;
	width: 100%;
	transition: width 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
[dir='rtl'] .mdc-top-app-bar--short,
.mdc-top-app-bar--short[dir='rtl'] {
	right: 0;
	left: auto;
}
.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 {
	transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1);
	opacity: 1;
}
.mdc-top-app-bar--short-collapsed {
	box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
		0px 1px 10px 0px rgba(0, 0, 0, 0.12);
	width: 56px;
	transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.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 150ms cubic-bezier(0.4, 0, 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 200ms linear;
}
.mdc-top-app-bar--fixed-scrolled {
	box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14),
		0px 1px 10px 0px rgba(0, 0, 0, 0.12);
	transition: box-shadow 200ms linear;
}
.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-left: 20px;
	padding-right: 0;
	padding-bottom: 9px;
}
[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 200ms cubic-bezier(0.4, 0, 0.2, 1);
	}
	.mdc-top-app-bar--short-collapsed {
		transition: width 250ms cubic-bezier(0.4, 0, 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;
	}
}
.smui-top-app-bar--static {
	position: static;
}
.smui-top-app-bar--color-secondary {
	background-color: #ee0260;
	background-color: var(--mdc-theme-secondary, #ee0260);
	color: #fff;
	color: var(--mdc-theme-on-secondary, #fff);
}
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item,
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon {
	color: #fff;
	color: var(--mdc-theme-on-secondary, #fff);
}
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item::before,
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item::after,
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon::before,
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon::after {
	background-color: #fff;
	background-color: var(--mdc-ripple-color, var(--mdc-theme-on-secondary, #fff));
}
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item:hover::before,
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item.mdc-ripple-surface--hover::before,
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon:hover::before,
.smui-top-app-bar--color-secondary
	.mdc-top-app-bar__navigation-icon.mdc-ripple-surface--hover::before {
	opacity: 0.08;
	opacity: var(--mdc-ripple-hover-opacity, 0.08);
}
.smui-top-app-bar--color-secondary
	.mdc-top-app-bar__action-item.mdc-ripple-upgraded--background-focused::before,
.smui-top-app-bar--color-secondary
	.mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):focus::before,
.smui-top-app-bar--color-secondary
	.mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded--background-focused::before,
.smui-top-app-bar--color-secondary
	.mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):focus::before {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-focus-opacity, 0.24);
}
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded)::after,
.smui-top-app-bar--color-secondary
	.mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded)::after {
	transition: opacity 150ms linear;
}
.smui-top-app-bar--color-secondary
	.mdc-top-app-bar__action-item:not(.mdc-ripple-upgraded):active::after,
.smui-top-app-bar--color-secondary
	.mdc-top-app-bar__navigation-icon:not(.mdc-ripple-upgraded):active::after {
	transition-duration: 75ms;
	opacity: 0.24;
	opacity: var(--mdc-ripple-press-opacity, 0.24);
}
.smui-top-app-bar--color-secondary .mdc-top-app-bar__action-item.mdc-ripple-upgraded,
.smui-top-app-bar--color-secondary .mdc-top-app-bar__navigation-icon.mdc-ripple-upgraded {
	--mdc-ripple-fg-opacity: var(--mdc-ripple-press-opacity, 0.24);
}
