html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  background-color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.2em;
  line-height: 1.6em;
  color: #777777;
}
* {
  box-sizing: border-box;
}
header {
  background-color: #008d59;
  padding: 10px;
}
header:after {
  clear: both;
  content: ".";
  display: block;
  height: 0px;
  visibility: hidden;
}
header hgroup, 
#headergroup {
  float: left;
  width: 50%;
}
header hgroup img,
#headergroup img {
  display: block;
  float: left;
  height: 60px;
  margin: 0 10px 0 0;
  width: auto;
}
header hgroup span,
#headergroup span {
  color: white;
  display: block;
  font-size: 30px;
  font-weight: bold;
  line-height: 60px;
}
header #header-info {
  float: right;
  width: 50%;
}
header #header-info ul {
  margin: 15px 0;
  text-align: right;
}
header #header-info ul li {
  display: inline-block;
  margin: 0 0 0 20px;
  vertical-align: middle;
  width: auto;
}
header #header-info ul li i {
  color: white;
  float: left;
  font-size: 1.4em;
  margin: 0 10px 0 0;
}
header #header-info ul li span {
  color: white;
  display: block;
  font-size: 0.7em;
  line-height: 13px;
  margin: 0 0 0 40px;
  text-align: left;
  white-space: nowrap;
}
header #header-info ul li span span {
  font-size: 0.8em;
  margin: 0;
}
nav {
  border-bottom: 2px solid #008d59;
}
nav ul li {
  display: inline-block;
}
nav ul li a {
  color: #008d59;
  display: block;
  padding: 10px;
  text-decoration: none;
}
nav ul li a:hover {
  background-color: #008d59;
  color: white;
}
.product {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  height: 100%;
  padding: 20px 10px 10px 10px;
  grid-template-areas: "image description";
}
.product #image-box {
  grid-area: image;
}
.product #description-box {
  grid-area: description;
}
.product img {
  display: block;
  max-width: 100%;
}
#product #description-box h2 {
  color: #555555;
  font-size: 1.4em;
  font-weight: bold;
  margin: 0 0 10px 0;
}
#product #description-box h3 {
  color: #555555;
  font-size: 1em;
  font-weight: bold;
  margin: 0 0 10px 0;
}
#product #description-box p {
  font-size: 0.8em;
  line-height: 1.4em;
  margin: 0 0 20px 0;
}
#product #description-box ul {
  display: block;
  font-size: 0.8em;
  line-height: 1.4em;
  list-style: disc;
  margin: 0 0 0 20px;
  padding: 0 0 20px 0;
}
#product {
  padding: 10px;
}
#product-info {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "buying store";
  padding: 5px;
  margin: 5px;
}
#product-info #buying-info-box {
  grid-area: buying;
}
#product-info #store-info-box {
  grid-area: store;
}
#product-info h2 {
  border-bottom: 2px solid #008d59;
  color: #555555;
  margin: 0 0 10px 0;
  padding: 0 10px;
}
#product-info p,
#product-info ul {
  font-size: 0.8em;
  line-height: 1.4em;
  padding: 10px 10px 20px 10px;
}
#product-info ul li {
  display: inline-block;
}
#product-info p span {
  font-weight: bold;
}
#product-info ul.versand-land li {
  display: inline-block;
  line-height: 25px;
  margin: 0 20px 20px 0;
}
#product-info ul.versand-land li img {
  display: block;
  float: left;
  height: 25px;
  margin: 0 10px 0 0;
  width: auto;
}
footer {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  margin: 0 0 20px 0;
  grid-template-areas: "box newsletter";
}
footer #box-footer {
  display: grid;
  grid-area: box;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-template-areas: "info recht";
}
footer #box-footer #info-box {
  grid-area: info;
}
footer #box-footer #rechtliches-box {
  grid-area: recht;
}
footer #newsletter-box {
  grid-area: newsletter;
}
footer h2 {
  border-bottom: 2px solid #008d59;
  color: #555555;
  margin: 0 0 10px 0;
  padding: 0 10px;
}
footer a {
  font-size: 0.9em;
  line-height: 1em;
  padding: 5px 10px;
}
footer a {
  color: #008d59;
  display: block;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
