*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
*:focus {
    outline: none;
	box-shadow: none;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
  color: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

body {
	font-family: Roboto;
	font-size: 1.0em;
	color: #334466;
	background-color: #ffffff;
}

body > header {
	display: block flex;
	align-items: center;
	background-color: #ccccff;
	font-size: 16px;
	height: 45px;
}

nav {
	font-size: 1em;
	display: block flex;
	flex-flow: row wrap;
	background-color: #ddddff;
}

nav.sub {
	background-color: #eeeeff;
}

nav a {
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin-right: 10px;
	text-decoration: none;
	background-color: #ccccff;
}

nav a:last-child {
	margin-right: 0px;
}

nav a.active {
	background-color: #eeeeff;
}

nav a.warn::after {
	content: url('/img/sign_warning.png');
	margin-left: 5px;
}

nav.sub a {
	background-color: #eeeeff;
}

nav.sub a.active {
	background-color: #ffffff;
}

div.breadcrumb {
	font-size: 1em;
	display: block flex;
	flex-flow: row wrap;
	background-color: #f4f4ff;
}

div.breadcrumb a {
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	margin-right: 10px;
	text-decoration: none;
	background-color: #ffffff;
}

.spacer {
	flex: 1000;
}

main {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	grid-auto-rows: minmax(10px, auto);
	gap: 10px;
  	background-color: #ffffff;
  	padding: 10px;
}

main > section {
	padding: 10px;
	border: 1px solid #eeeeff;
}

footer {
	background-color: #f8f8ff;
	text-align: center;
	font-size: 75%;
	padding: 5px;
}

h1 {
	font-size: 2.0em;
	margin-left: 10px;
}

h2 {
	font-size: 1.6em;
	padding: 10px;
	background-color: #eeeeff;
}

h2.sub {
	font-size: 1.4em;
	background-color: #ffffff;
	padding-bottom: 0px;
}

img.icon {
	display: inline;
	vertical-align: middle;
}

h3 {
	font-size: 1.2em;
	margin-top: 10px;
}

h4 {
	margin-top: 10px;
	font-size: 1.0em;
	font-weight: bold;
}

section > h4:first-child {
	margin-top: 0px;
}

hr {
	margin-top: 10px;
	border: 0px none;
	border-top: 1px solid #eeeeff;
}

section > h3:first-child {
	margin-bottom: 10px;
	margin-top: 0px;
}

a {
	color: #1122aa;
}

form {
	margin-bottom: 10px;
}

div.multicolumn {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	grid-auto-rows: minmax(10px, auto);
	gap: 10px;
}

form section {
	margin-bottom: 10px;
}

form section:last-child {
	margin-bottom: 0px;
}

form section.controls {
	display: grid;
	grid-template-columns: 1fr 3fr;
	row-gap: 10px;
	grid-auto-rows: max-content;
	margin-bottom: 10px;
}

form section.controls header {
	font-weight: bold;
	grid-column: 1;
	grid-column-end: 3;
}

form section.controls p.formbreak {
	grid-column: 2;
	grid-column-end: 3;
}

form section.controls div.formbreak {
	grid-column: 2;
	grid-column-end: 3;
}

form section.controls select {
	margin-top: 3px;
}

form section.buttons {
	padding-top: 10px;
}

form section.controls div {
	padding-top: 3px;
}

form label {
	text-align: right;
	margin-right: 10px;
	padding-top: 3px;
}

form section.controls div input {
	width: 100%;
	margin-top: -3px;
}

input[type="submit"],
input[type="reset"],
input[type="button"] {
	padding: 2px 15px;
}

input[type="text"],
input[type="password"],
select {
	width: 100%;
	border: 1px inset #eeeeff;
}

input.invalid {
	border: 1px inset #ff1111;
}

textarea {
	width: 100%;
	height: 400px;
	display: block;
	resize: none;
}

::placeholder {
	color: #aaaaff;
}

table {
	width: 100%;
	border-collapse: collapse;
	margin: 10px 0px;
}

th {
	text-align: left;
	background-color: #eeeeff;
	padding: 5px 10px;
}

td {
	padding: 3px 10px;
	border-left: 1px solid #eeeeff;
}

td:first-child {
	border: 0px none;
}

table tbody tr:nth-child(2n) {
	background-color: #fafaff;
}

table tbody tr:hover {
	cursor: pointer;
	background-color: #eaeaff;
}

p {
	margin-bottom: 10px;
}

section p:last-child {
	margin-bottom: 0px;
}

p.ok {
	margin: 5px;
	margin-bottom: 10px;
	padding: 5px;
	background-color: #eeffee;
	color: #448844;
	border: 1px solid #448844;
}

div.ok {
	margin: 5px;
	margin-bottom: 10px;
	padding: 5px;
	background-color: #eeffee;
	color: #448844;
	border: 1px solid #448844;
}

span.ok {
	color: #448844;
}

p.info {
	margin: 5px;
	margin-bottom: 10px;
	padding: 5px;
	background-color: #eeeeff;
	color: #444488;
	border: 1px solid #444488;
}

div.info {
	margin: 5px;
	margin-bottom: 10px;
	padding: 5px;
	background-color: #eeeeff;
	color: #444488;
	border: 1px solid #444488;
}

span.info {
	color: #444488;
}

p.warn {
	margin: 5px;
	margin-bottom: 10px;
	padding: 5px;
	background-color: #fff6ee;
	color: #886644;
	border: 1px solid #886644;
}

span.warn {
	color: #886644;
}

p.error {
	margin: 5px;
	margin-bottom: 10px;
	padding: 5px;
	background-color: #ffeeee;
	color: #ff4444;
	border: 1px solid #884444;
}

span.error {
	color: #ff4444;
}

.infogrid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-row-gap: 5px;
	grid-column-gap: 10px;
}

.infogrid label {
	text-align: right;
	font-weight: bold;
	font-size: 0.97em;
}

.infogrid label:after {
	content: ':';
}

.article_language_select {
	margin-bottom: 10px;
}

.translation_available {
	display: inline-block;
	padding: 5px 10px;
	background: #ddffdd;
	margin-right: 10px;
}

.translation_not_available {
	display: inline-block;
	padding: 5px 10px;
	background: #fdd;
	margin-right: 10px;
}

.flags {
	vertical-align: middle;
}

.flags img {
	height: 20px;
}

.flags a {
	display: inline-block;
	padding: 0px;
	height: 20px;
	margin-right: 10px;
}

.fromSearch {
	color: #11aa22;
}

.contactinfo_input {
	display: grid;
	grid-template-columns: 1000fr 1fr;
	grid-gap: 10px;
}

div.gnDescriptionBox {
	overflow: scroll hidden;
}

div.gnDescriptionBox pre {
	margin: 5px;
}

.report {
	background-color: #aaccff05;
	padding-left: 5px;
	margin-bottom: 10px;
}

.report.SALES {
	padding-left: 20px;
	border-left: 1px solid #acf;
}

.report h4 {
	cursor: pointer;
}

.report .info {
	margin-left: -10px;
	margin-right: 0px;
}

.report_supplier_certifications {
	list-style-type: none;
	padding-left: 0px;
}

.report_supplier_certifications img,
.report_supplier_certifications div {
	display: inline-block;
	vertical-align: middle;
	margin-left: 10px;
}

#report_root > .report.SALES {
  padding-left: 10px;
}

.report_info {
	margin-bottom: 10px;
}

.gn_code {
	color: #03f;
	text-decoration-style: dotted;
	text-decoration-thickness: 2px;
	text-decoration-color: #03f;
	text-decoration-line: underline;
	cursor: pointer;
}

pre.tooltip {
	position: absolute;
	max-width: 1024px;
	overflow: scroll hidden;
	background-color: #eeffee;
	color: #448844;
	border: 1px solid #448844;
	padding: 5px;
	margin: 5px;
	z-index: 1000;
	box-shadow: 0 0 10px rgba(22, 44, 22, 0.5);
}

.report.PROCESSED > .report_content > .report {
	margin-left: 10px;
}

.report_content select {
	width: auto;
}

section.wide {
	grid-column-end: span 2
}