/* Theme */


/* Reset */

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  margin: 0;
  background-color: #fefefe;
  color: #555;
  font-family: 'Arial', Helvetica, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  background: url("../Artwork/Background_PC.JPG"); /* no-repeat 100% auto fixed center;*/
  background-repeat: no-repeat;
  background-size: cover;
}

/* Typography Styles */
h1,
h2,
h3,
h4 {
  font-weight: 500;
  margin: 1em 0;
}

h1 {
  font-size: 2em;
  margin: 0;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.25em;
}

strong {
  font-weight: 500;
}

a {
  color: #4299e1;
  font-weight: 500;
}
a:hover {
  color: #2b6cb0;
  text-decoration: none;
}
a:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-info);
}

p,
li {
  font-size: 1.1em;
  line-height: 1.4;
}

p {
  margin: 0 0 1em;
}

ul {
  padding: 0 0 0 2em;
  margin: 0 0 1.5em;
}

li {
  margin: 0 0 .5em;
}

svg.icon {
  display: block;
  width: 1em;
  height: 1em;
  min-width: 1em;
  fill: currentcolor;
}

.hidden {
  display: none;
}


/* Buttons */

button,
.button {
  display: block;
  margin: 15px auto;
  padding: 10px;
  width: 100px;
  font-size: 14px;
  font-family: inherit;
  text-align: center;
  color: #ffffff;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  background-color: #128a50;
  transition:  .5s ease;
}
button:hover:enabled {
  background-color:#67dfa5;
  color: #666666;
}
button:focus,
.button:focus {
  outline: none;
  box-shadow: 
    0 0 0 2px white,
    0 0 0 4px var(--color-info);
}

/* Catalog Subtext */
div[data-metadata="cpq-tile-subtext"] > div {
  display: none;
}

div[data-metadata="Pricetable"]  div.dw-listview-bodyscroller,
div[data-metadata="PreisanzeigeTabelle"]  div.dw-listview-bodyscroller {
  overflow-x: hidden;
}
canvas:hover {
  cursor: grab;
}
canvas:active {
  cursor: grabbing;
}



/** Static page */
main {
  min-height: 380px;
}

#content {
  display: flex;
  align-items: center;
  justify-content: center;
}
#content article { 
  width: 63%;
  background: rgba(250,250,250,.99);
  overflow-y: scroll;
  padding: 15pt;
  margin-top: 10pt;
  border-radius: 15px;
  max-height: calc( 100vh - 20pt );
  box-shadow: #2c2c2c 0 0 15px 1px;
}
@media (max-width: 720px) {
  #content article {
    width: 100%;
  }
}
#content article header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#content article header img{
  margin: 10px 10px 0 0;
  height: 40px;
}
.list-arrow li {
  display: block;
  list-style: none;
}
.list-arrow a {
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-left: 24px;
}
.list-arrow a::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  border-top: 2px solid #128b51;
  border-right: 2px solid #128b51;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
}

footer {
  position: absolute;
  bottom: 0;
  left: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 20pt;
  font-size: 9.5pt;
  background: rgba(250,250,250,.9);
  border-radius: 15px 15px 0 0;
  color: #2c2c2c;
  box-shadow: #fefefe 0 0 15px 1px;
}

#dsgvoContent p,
#dsgvoContent li,
#dsgvoContent a{
  font-size: 12pt !important;
}

#impressumContent p,
#impressumContent li,
#impressumContent a{
  font-size: 12pt !important;
}

#dsgvoContent table {
  border-collapse: collapse; width: 100%;
}
#dsgvoContent table,
#dsgvoContent tr,
#dsgvoContent td {
  border: 1px solid;
}