/*!
 * vue-material v1.0.0-beta-8
 * Made with <3 by marcosmoura 2018
 * Released under the MIT License.
 */
html {
	height: 100%;
	box-sizing: border-box;
	transition: background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html *,
html :after,
html :before {
	box-sizing: inherit;
}

body {
	min-height: 100%;
	margin: 0;
	position: relative;
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: Roboto, Noto Sans, -apple-system, BlinkMacSystemFont, sans-serif;
}

a:not(.md-button) {
	transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition-property: color, background-color, opacity;
}

audio,
canvas,
embed,
iframe,
img,
object,
video {
	max-width: 100%;
	font-style: italic;
	vertical-align: middle;
}

audio:not(.md-image),
canvas:not(.md-image),
embed:not(.md-image),
iframe:not(.md-image),
img:not(.md-image),
object:not(.md-image),
video:not(.md-image) {
	height: auto;
}

[tabindex="-1"]:focus {
	outline: none !important;
}

.md-scrollbar::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	border-radius: 8px;
}

.md-scrollbar::-webkit-scrollbar-thumb {
	border-radius: 8px;
}

.md-scrollbar::-webkit-scrollbar-button {
	display: none;
}

.md-caption {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 17px;
}

.md-body-1,
body {
	font-weight: 400;
	line-height: 20px;
}

.md-body-1,
.md-body-2,
body {
	font-size: 14px;
	letter-spacing: 0.01em;
}

.md-body-2 {
	font-weight: 500;
	line-height: 24px;
}

.md-subheading {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.01em;
	line-height: 24px;
}

.md-title {
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.005em;
	line-height: 26px;
}

.md-headline {
	font-size: 24px;
	line-height: 32px;
}

.md-display-1,
.md-headline {
	font-weight: 400;
	letter-spacing: 0;
}

.md-display-1 {
	font-size: 34px;
	line-height: 40px;
}

.md-display-2 {
	font-size: 45px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 48px;
}

.md-display-3 {
	font-size: 56px;
	font-weight: 400;
	letter-spacing: -0.005em;
	line-height: 58px;
}

.md-display-4 {
	font-size: 112px;
	font-weight: 300;
	letter-spacing: -0.01em;
	line-height: 112px;
}

a:not(.md-button) {
	text-decoration: none;
}

a:not(.md-button):hover {
	text-decoration: underline;
}

button:focus {
	outline: none;
}

.md-ripple {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 3;
	overflow: hidden;
	-webkit-mask-image: radial-gradient(circle, #fff 100%, #000 0);
}

.md-ripple-wave {
	position: absolute;
	z-index: 1;
	pointer-events: none;
	background: currentColor;
	border-radius: 50%;
	opacity: 0;
	-webkit-transform: scale(2) translateZ(0);
	transform: scale(2) translateZ(0);
}

.md-ripple-wave.md-centered {
	-webkit-animation-duration: 1.2s;
	animation-duration: 1.2s;
	top: 50%;
	left: 50%;
}

.md-ripple-wave ~ :not(.md-ripple-wave) {
	position: relative;
	z-index: 2;
}

.md-ripple-enter-active {
	transition: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
	transition-property: opacity, -webkit-transform;
	transition-property: opacity, transform;
	transition-property: opacity, transform, -webkit-transform;
	will-change: opacity, transform;
}

.md-ripple-enter-active.md-centered {
	transition-duration: 1.2s;
}

.md-ripple-enter {
	opacity: 0.26;
	-webkit-transform: scale(0.26) translateZ(0);
	transform: scale(0.26) translateZ(0);
}

.md-button,
.md-button-clean {
	margin: 0;
	padding: 0;
	display: inline-block;
	position: relative;
	overflow: hidden;
	outline: none;
	background: transparent;
	border: 0;
	border-radius: 0;
	transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	font-family: inherit;
	line-height: normal;
	text-transform: uppercase;
	text-decoration: none;
	vertical-align: top;
	white-space: nowrap;
}

.md-button {
	min-width: 88px;
	height: 36px;
	margin: 6px 8px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 2px;
	font-size: 14px;
	font-weight: 500;
}

.md-button:active {
	outline: none;
}

.md-button[disabled] {
	pointer-events: none;
}

.md-button:not([disabled]) {
	cursor: pointer;
}

.md-button:not([disabled]).md-focused:before,
.md-button:not([disabled]):active:before,
.md-button:not([disabled]):hover:before {
	background-color: currentColor;
	opacity: 0.12;
}

.md-button:not([disabled]).md-focused.md-accent:before,
.md-button:not([disabled]).md-focused.md-primary:before,
.md-button:not([disabled]):active:before {
	opacity: 0.2;
}

.md-button:not([disabled]).md-ripple-off:active:before {
	opacity: 0.26;
}

.md-button.md-plain.md-button.md-raised:not([disabled]) {
	color: rgba(0, 0, 0, 0.87);
	background-color: #fff;
}

.md-button.md-plain.md-button.md-raised:not([disabled]) .md-icon-font {
	color: rgba(0, 0, 0, 0.87);
}

.md-button.md-plain.md-button.md-raised:not([disabled]) .md-icon-image {
	fill: rgba(0, 0, 0, 0.87);
}

.md-button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

.md-button:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	opacity: 0;
	transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: background-color, opacity;
	content: " ";
}

.md-button.md-dense {
	height: 32px;
	font-size: 13px;
}

.md-button.md-raised:not([disabled]) {
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.md-button.md-raised:not([disabled]):active {
	box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2),
		0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.md-button.md-raised:not([disabled]).md-ripple-off:active:before {
	opacity: 0.2;
}

.md-button + .md-button {
	margin-left: 0;
}

.md-button .md-ripple {
	padding: 0 8px;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.md-button-spaced .md-ripple {
	padding: 0 16px;
}

.md-fab,
.md-icon-button {
	border-radius: 50%;
	z-index: 3;
}

.md-fab .md-ripple,
.md-fab:before,
.md-icon-button .md-ripple,
.md-icon-button:before {
	border-radius: 50%;
}

.md-fab.md-dense .md-ripple-wave,
.md-fab.md-mini .md-ripple-wave,
.md-icon-button .md-ripple-wave {
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
}

.md-icon-button {
	width: 40px;
	min-width: 40px;
	height: 40px;
	margin: 0 6px;
}

.md-icon-button.md-dense {
	width: 32px;
	min-width: 32px;
	height: 32px;
}

.md-icon-button .md-ripple-enter-active {
	transition-duration: 1.2s;
}

.md-fab {
	box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2),
		0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
	width: 56px;
	height: 56px;
	min-width: 0;
	overflow: hidden;
}

.md-fab:active {
	box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2),
		0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.md-fab.md-dense,
.md-fab.md-mini {
	width: 40px;
	height: 40px;
}

.md-fab.md-fab-top-left,
.md-fab.md-fab-top-right {
	position: absolute;
	top: 24px;
}

.md-fab.md-fab-bottom-left,
.md-fab.md-fab-bottom-right {
	position: absolute;
	bottom: 24px;
}

.md-fab.md-fab-bottom-center,
.md-fab.md-fab-top-center {
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: 24px;
}

.md-fab.md-fab-bottom-right,
.md-fab.md-fab-top-right {
	right: 24px;
}

.md-fab.md-fab-bottom-left,
.md-fab.md-fab-top-left {
	left: 24px;
}

.md-fab.md-fixed {
	position: fixed;
}

.md-fab .md-ripple {
	padding: 0;
}

.md-button-content {
	position: relative;
	z-index: 2;
}
