/* Tables, responsive
*********************************/
@media only screen and (max-width : 767px) {
  .articles-products table,
  .articles-products table tbody,
  .articles-products table tr,
  .articles-products table th,
  .articles-products table td {
    display:block;
    width:100%;
  }
  .articles-products table {
    margin-bottom:1.3rem;
  }
  .articles-products table tr:first-child {
    width:0;
    height:0;
    overflow: hidden;
  }
  .articles-products table tr {
    margin-bottom:1rem;
  }
  .articles-products table td {
    text-align:right;
    margin-bottom:1px;
  }
  .articles-products table td::before {
    content: attr(data-label);
    font-weight:bold;
    float:left;
  }
}
@media only screen and (min-width : 768px) {
  .table-container {
    overflow-y:auto;
  }
}

/* Jiggys
*********************************/
.jiggy {
  margin:0 0 1.5rem 0;
  text-align: center;
}
.jiggy .jiggy-header {}
.jiggy .jiggy-header h4 {
  font-size:1.5rem;
  text-transform: uppercase;
  font-weight: 700;
  margin:0;
}
.jiggy .jiggy-content {}
.jiggy .jiggy-content :last-child {
  margin-bottom:0;
}

/* Jiggy, Sitemap
*********************************/
.jiggy-sitemap .sitemap ul {
  margin:0;
  padding:0;
  list-style: none;
}
.jiggy-sitemap .sitemap li {
  margin:0;
  padding:0;
}
.jiggy-sitemap .sitemap ul ul {
  font-size:1rem;
}
.jiggy-sitemap .sitemap ul ul ul {
  display:none;
}

/* Seite, Standard
*********************************/
.page-standard {}
.page-standard .page-banner-image {
  height:30rem;
  background-color:var(--gray);
  background-size:cover;
  background-position:50% 50%;
  background-repeat: no-repeat;
}
.page-standard .page-banner-image[data-parallax] {
  background:transparent;
}
.page-standard .page-main {
  background-image:linear-gradient(to bottom, var(--gray-light) 0, #fff 4rem);
  padding:3rem 0;
}
.page-standard .page-header {
  margin:0 0 1.5rem 0;
}
.page-standard .page-header h1 {
  font-size:2.5rem;
  text-transform: uppercase;
  text-align: center;
}
@media only screen and (min-width : 992px) {
  .page-standard .page-header h1 {
    font-size:3.75rem;
  } 
}
.page-standard .page-content :last-child {
  margin-bottom:0;
}
.page-standard .page-articles {
  background:var(--gray-light);
  padding:3rem 0;
}
.page-standard .page-articles:empty {
  display:none;
}

/* Seite, Standard, Start
*********************************/
.page-start .page-banner-image {
  height:40rem;
  background-position:50% 0;
}
.page-start .page-content {
  text-align: center;
}

/* Seite, Background
*********************************/
.page-background {
  background:transparent;
  /*
  background-color:var(--gray);
  background-size:cover;
  background-position:50% 50%;
  background-repeat: no-repeat;
  */
  color:#fff;
}
.page-background .page-main {
  background:transparent;
  padding-bottom:0;
}
.page-background .page-articles {
  padding-top:0;
  background:transparent;
}

/* Seite, Produkte
*********************************/
.page-products {}
.page-products .page-main .row {
  align-items: center;
}
.page-products .page-content-col {
  flex:0 0 100%;
  max-width:100%;
}
.page-products .page-header h1 {
  text-transform: none;
  font-size:1.5rem;
  text-align:left;
}
.page-products .page-features-col {
  flex:0 0 100%;
  max-width:100%;
  margin:2rem 0;
}
.page-products .page-features {
  background:var(--petrol);
  color:#fff;
  padding:1rem;
  font-size:1rem;
}
@media only screen and (min-width : 992px) {
  .page-products .page-content-col {
    order:2;
    flex:0 0 66.6666%;
    max-width:66.6666%;
  }
  .page-products .page-features-col {
    order:1;
    flex:0 0 33.3333%;
    max-width:33.3333%;
    margin:0;
  }
}

/* Seite, Kategorieueberischt, Simple
*********************************/
.pages-overview-simple {}
.pages-overview-simple ul {
  margin:0 -1rem;
  padding:0;
  list-style: none;
  font-size:1.5rem;
  font-weight:700;
  display:flex;
  flex-wrap: wrap;
}
.pages-overview-simple li {
  margin:0 0 1.5rem 0;
  padding:0 1rem;
  list-style: none;
  flex:0 0 100%;
  max-width:100%;
}
.pages-overview-simple .pages-overview-title {
  display:block;
  margin:0 0 1.5rem 0;
}

.pages-overview-simple .pages-overview-title {
  display:block;
  margin-bottom:.5rem;
}
.pages-overview-simple .pages-overview-image {
  display:block;
  padding:0 0 50% 0;
  background-color:var(--gray-light);
  background-position: 50% 50%;
  background-size:cover;
  background-repeat: no-repeat;
}
@media only screen and (min-width : 992px) {
  .pages-overview-simple li {
    flex:0 0 50%;
    max-width:50%;
  }
}

/* Seite, Kategorieueberischt, Details
*********************************/
.pages-overview-details {}
.pages-overview-details .article {
  border:solid #fff 4px;
  border-radius:4px;
  background:#fff;
  margin-bottom:1.5rem;
  box-shadow:0 0 .25rem var(--petrol-op50);
}
.pages-overview-details .article-image {
  flex:0 0 100%;
  max-width:100%;
  position:relative;
  overflow:hidden;
  background-color:var(--gray);
  height:0;
  padding-bottom:56.25%;
}
.pages-overview-details .article-image img {
  min-width:100%;
  min-height:100%;
  width:auto;
  height:auto;
  position: absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
}
.pages-overview-details .article-content {
  flex:0 0 100%;
  max-width:100%;
}
.pages-overview-details .article-content-inner {
  background:var(--petrol);
  color:#fff;
  padding:1.5rem;
}
.pages-overview-details .article-content-inner > :last-child {
  margin-bottom:0;
}
@media only screen and (min-width : 992px) {
  .pages-overview-details .article-image {
    flex:0 0 33.3333%;
    max-width:33.3333%;
    height:auto;
    padding:0;
  }
  .pages-overview-details .article-content {
    flex:0 0 66.6666%;
    max-width:66.6666%;
  }
}

/* Artikel, Standard
*********************************/

/* Artikel, Produkte
*********************************/
.articles-products {}
.articles-products .article {
  border:solid #fff 4px;
  border-radius:4px;
  background:#fff;
  margin-bottom:1.5rem;
  box-shadow:0 0 .25rem var(--petrol-op50);
}
.articles-products .article:last-child {
  margin-bottom:0;
}
.articles-products .article-image {
  display:flex;
  justify-content: center;
  align-items: center;
  flex:0 0 100%;
}
.articles-products .article-image img {
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
}
.articles-products .article-content {
  flex:0 0 100%;
}
.articles-products .article-content-inner {
  background:var(--petrol);
  color:#fff;
  padding:1.5rem;
  height:100%;
}
.articles-products .article-content-inner > :last-child {
  margin-bottom:0;
}
.articles-products .article-content table {
  width:100%;
}
.articles-products .article-downloads {
  text-align:right;
}
.articles-products .article-downloads a {
  display:inline-block;
  white-space: nowrap;
  margin-left:1.5rem;
  color:#fff;
}
.articles-products .article-downloads:empty {
  display:none;
}
@media only screen and (min-width : 992px) {
  .articles-products .article-image {
    flex:0 0 33.3333%;
    max-width:33.3333%;
  }
  .articles-products .article-content {
    flex:0 0 66.6666%;
    max-width:66.6666%;
  }
}

/* Artikel, Teaser
 **********************************/
.articles-teaser {}
.articles-teaser .editlink img {
  display:inline;
}
.articles-teaser .article {
  padding-left:4rem;
  padding-right:4rem;
  margin-bottom:5rem;
  display:flex;
  height:auto;
  position: relative;
  z-index: 2;
}
.articles-teaser .article-inner {
  position: relative;
  background:#fff;
  color:var(--petrol);
  text-align:center;
  border:solid var(--petrol) 4px;
  padding:4rem 1rem 1rem 1rem;
  display:flex;
  flex-direction: column;
  height:100%;
}
.articles-teaser .article-icon {
  width:7rem;
  height:7rem;
  border-radius:100%;
  background:var(--petrol);
  position: absolute;
  left:calc(50% - 3.5rem);
  top:-3.5rem;
}
.articles-teaser .article-icon img {
  position: absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
}
.articles-teaser .article-link {
  margin-top:auto;
}

.articles-teaser .slick-track {
  padding-top:3.5rem;
  display:flex;
}
.articles-teaser .slick-slider .article {
  margin-bottom:0;
}

/* Artikel, Downloads
 **********************************/
.articles-downloads {}
.articles-downloads .article {
  margin-bottom: 1.5rem;
}
.articles-downloads .article-image {
  margin-bottom:.5rem;
}
.articles-downloads .article-image img {
  display:block;
}
.articles-downloads .article-content {
  text-align: center;
}
.articles-downloads .article-download {
  font-weight:bold;
}
.articles-downloads .article-download span {
  font-weight:normal;
  display:block;
  font-size:.875rem;
}
/* Slick Slider
 **********************************/
.slick-slider .slick-arrow {
  position:absolute;
  left:0;
  top:50%;
  transform:translate(0, -50%);
  z-index:1;
  background:transparent;
  border:0;
  font-size:3rem;
}
.slick-slider .slick-next {
  left:auto;
  right:0;
}
.slick-slider .slick-arrow:hover {
  background:transparent;
}

/* Formulare
*********************************/
form p {
  margin:0 0 .75em 0;
}

fieldset {
  margin:0 0 1.5rem 0;
  padding:3rem 1rem 1rem 1rem;
  border:0;
  background:var(--gray-light);
  position:relative;
}
fieldset legend {
  margin:0;
  padding:0;
  font-weight:bold;
  position:absolute;
  top:1rem;
  left:1rem;
  font-size:1.125rem;
}

.required label:after,
.required-span span.label:after,
.required-span span.label-indent:after,
.required-span span.label-block:after {
  content:'*';
}
input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=week],
textarea { 
  width:100%;
  margin:0;
  padding:.5rem;
  border:solid #aaa 1px;
  border-radius:4px;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus {
  margin:0;
  border:solid var(--petrol) 1px;
}
textarea {
  height:12rem;
}
a.btn,
button,
input[type=submit] {
  display:inline-block;
  margin:0;
  padding:.5rem 1rem;
  border:solid var(--petrol) 1px;
  border-radius:4px;
  cursor:pointer;
  background:var(--petrol);
  color:#fff;
  text-transform:uppercase;
  text-decoration:none;
  transition:background .2s ease;
}
input[type=submit]::-moz-focus-inner {
  border: 0;
}
a.btn:hover,
button:hover,
input[type=submit]:hover {
  background-color:var(--petrol-dark);
  border-color:var(--petrol-dark);
}
a.btn-invers,
button.btn-invers,
input[type=submit].btn-invers {
  border-color:#fff;
}
a.btn-invers:hover,
button.btn-invers:hover,
input[type=submit].btn-invers:hover {
  background-color:#fff;
  color:var(--petrol);
  border-color:#fff;
}


.sendmail_emptyfield1 label,
label.sendmail_emptyfield1 {
  color:#f00;
}
.sendmail_emptyfield1 input.text,
input.sendmail_emptyfield1,
.sendmail_emptyfield1 textarea {
  border-color:#f00;
}
.message {
  border:solid #f6e468 1px;
  background:#ffffdb;
  padding:5px;
  margin:0 0 .8em 0;
}