/**
 * -----------------
 * Revert all styles
 * -----------------
 */

/** {
	all: revert;
}*/

/**
 * -------------------------------------------------
 * Define consistent default styles for all browsers
 * -------------------------------------------------
 */

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

html, body {
	min-height: 100vh;
	min-width: 100vw;
	background-color: #fff;
}

body {
	font-size: 1em;
	line-height: 1.4em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

ul, ol {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

img {
	width: auto;
	height: auto;
	min-width: 0;
	min-height: 0;
	max-width: 100%;
	max-height: 100%;
}

#root, #__next {
  isolation: isolate;
}