@charset "UTF-8";
/******universale Einstellungen********/
* {
  margin: 0;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  height: auto;
  overflow-x: hidden;
  color: dimgrey;
  font-size: 12px;
  font-family: "PT-Sans", sans-serif;
}

h1 {
  font-size: 2.2rem;
  line-height: 2.5rem;
  color: #003a7d;
  font-family: sans-serif;
}

h2 {
  font-weight: 800;
  font-size: 1.4rem;
  line-height: 3rem;
  color: #111111;
  font-family: sans-serif;
}

h3 {
  font-weight: 100;
  font-size: 1.3rem;
  line-height: 3rem;
  color: #111111;
}

p, a {
  font-size: 1rem;
  color: dimgrey;
  line-height: 1.2rem;
}

/* universal-klassen */
.boxed {
  display: inline-block;
}

.boxed-inline {
  display: inline;
}

.right {
  text-align: right;
  float: right;
}

.clear {
  clear: both;
}

.nobr {
  white-space: nowrap;
  display: inline-block;
}

.align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.always-hidden {
  position: absolute;
  visibility: hidden;
  z-index: -1111;
}

/************************* Special Effects *********************/
.paper {
  background: #fff;
  -webkit-box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15), -6px -6px 0 -3px #eee, -6px -6px 1px -2px rgba(0, 0, 0, 0.15), -12px -12px 0 -6px #eee, -12px -12px 1px -5px rgba(0, 0, 0, 0.15);
          box-shadow: -1px -1px 1px rgba(0, 0, 0, 0.15), -6px -6px 0 -3px #eee, -6px -6px 1px -2px rgba(0, 0, 0, 0.15), -12px -12px 0 -6px #eee, -12px -12px 1px -5px rgba(0, 0, 0, 0.15);
}

main {
  height: auto;
  max-width: 980px;
}

.error {
  color: #7F2020;
  margin: 0.5rem;
  font-size: 2rem;
}

/* GDPR/DSGVO pop-up */
#gdpr {
  position: fixed;
  left: 0;
  bottom: 0;
  margin: 0.3rem;
  padding: 1rem;
  max-width: 40rem;
  background-color: white;
  border: 1px solid black;
}

#gdpr h1 {
  font-size: 3rem;
}

#gdpr p {
  margin: 0.5rem 0;
  text-align: justify;
}

#gdpr .important {
  font-weight: bold;
}

#gdpr .unimportant {
  font-size: 0.8rem;
  color: #7F7F7F;
}

#gdpr button {
  width: 90%;
  margin: 0.2rem 5%;
  padding: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
}

#gdpr button.suggested {
  background-color: #003a7d;
  color: #FFFFFF;
  border: 0.3rem solid #003a7d;
}

#gdpr button.alternative {
  background-color: #FFFFFF;
  border: 0.3rem solid #003a7d;
  padding: 0.5rem;
  width: 60%;
  margin: 0.2rem 20%;
  font-size: 0.8rem;
}

#gdpr button.forbidden {
  color: #7F7F7F;
  background-color: #CCCCCC;
  text-decoration: line-through;
  border: 0.3rem solid #CCCCCC;
  cursor: not-allowed;
}

/*Gridlayout level 0*/
#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.as-left {
  grid-row: content-start / content-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  grid-column: sidebar-start / sidebar-end;
  /*gird-column-end:2;*/
  margin-top: 1.5rem;
  padding: 12px;
  min-width: 200px;
  background-color: #fcfcfc;
}

.center {
  grid-row: content-start / content-end;
  display: inline;
  padding: 20px;
  background-color: #fcfcfc;
  grid-column: content-start / content-end;
}

.bottom {
  grid-column: start / end;
  background-color: #003a7d;
  padding: 20px;
  -ms-grid-row: 5;
  grid-row: 5;
}

.bottom p, .bottom a {
  color: #ffffff;
}

.bottom .disclaimer {
  margin-left: 1.4rem;
  font-size: 0.8rem;
}

.backg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #CCCCCC;
  opacity: 0.5;
  z-index: 3;
  -webkit-transition: opacity 200ms;
  transition: opacity 200ms;
}

#modal-none:checked ~ .backg {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 200ms, visibility 0s linear 200ms;
  transition: opacity 200ms, visibility 0s linear 200ms;
}

@media screen and (min-width: 1200px) {
  #wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: [start sidebar-start] 300px [sidebar-end content-start] auto [content-end end];
        grid-template-columns: [start sidebar-start] 300px [sidebar-end content-start] auto [content-end end];
    -ms-grid-rows: [start header-start] 120px [header-end nav-start] 40px [nav-end hero-start] 0 [hero-end content-start] auto [content-end footer-start] auto [footer-end end];
        grid-template-rows: [start header-start] 120px [header-end nav-start] 40px [nav-end hero-start] 0 [hero-end content-start] auto [content-end footer-start] auto [footer-end end];
  }
}

@media screen and (min-width: 760px) and (max-width: 1199.999px) {
  #wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: [start sidebar-start] 300px [sidebar-end content-start] auto [content-end end];
        grid-template-columns: [start sidebar-start] 300px [sidebar-end content-start] auto [content-end end];
    -ms-grid-rows: [start header-start] 120px [header-end nav-start] 40px [nav-end hero-start] 0 [hero-end content-start] auto [content-end footer-start] auto [footer-end end];
        grid-template-rows: [start header-start] 120px [header-end nav-start] 40px [nav-end hero-start] 0 [hero-end content-start] auto [content-end footer-start] auto [footer-end end];
  }
  #header {
    visibility: hidden;
  }
}

@media screen and (max-width: 759.999px) {
  .center {
    -ms-grid-column: 1;
        grid-column-start: 1;
    grid-column-end: 4;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .bottom {
    grid-row: footer-start / footer-end;
  }
  #top.top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

/*********************Hier sidebar Links*************************************/
.infoblock {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  margin-bottom: 2rem;
  background-color: #dedcea;
  padding: 1rem;
}

.infoblock h2, .infoblock h3 {
  height: auto;
  line-height: 1.8;
}

.infoblock img {
  max-width: 250px;
  height: auto;
  margin-bottom: 0.5rem;
}

.sidebar-image {
  width: 100%;
}

/* linke seite suche */
.katblock {
  max-height: 50rem;
  overflow-y: scroll;
  margin-bottom: 2rem;
}

.katblock h2 {
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 0;
  background-color: #dedcea;
}

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

.katblock ul li {
  width: 100%;
  margin-bottom: 0.4rem;
}

.katblock ul li div.count {
  float: right;
}

.katblock ul li a {
  text-decoration: none;
}

.katblock ul .lv1 {
  padding-left: 0.8rem;
}

.katblock ul .lv1 a::before {
  content: ">";
}

.katblock ul .lv2 {
  padding-left: 1.6rem;
}

.katblock ul .lv2 a::before {
  content: ">>";
}

.herstellerfilter ul li:nth-child(even), .kategoriefilter ul li:nth-child(even) {
  background-color: #e0e0e0;
}

.herstellerfilter ul li:nth-child(odd), .kategoriefilter ul li:nth-child(odd) {
  background-color: #ffffff;
}

.kategoriefilter ul li {
  font-size: 12px;
  font-weight: normal;
  padding-left: 0.5rem;
}

/*********************sidebar Links Ende *************************************/
@media screen and (min-width: 760px) {
  .sidebar-btn {
    display: none;
  }
}

@media screen and (max-width: 759.999px) {
  .as-left {
    /*display:none;*/
    visibility: hidden;
    position: fixed;
    left: -80vw;
    -webkit-transition: left 1s, visibility 0s linear 1s;
    transition: left 1s, visibility 0s linear 1s;
    width: 80vw;
    height: 100vh;
    overflow-y: auto;
    z-index: 5;
  }
  .katblock {
    overflow-y: visible !important;
    max-height: initial !important;
  }
  .sidebar-image {
    max-width: 250px;
  }
  #modal-sidebar:checked ~ .as-left {
    display: block;
    visibility: visible;
    left: 0vw;
    -webkit-transition: left 1s;
    transition: left 1s;
  }
  .sidebar-btn {
    position: fixed;
    width: 10vw;
    height: 10vw;
    border-radius: 50%;
    bottom: 5vh;
    left: 5vw;
    background-color: #CCCCCC;
    -webkit-transition: left 1s, -webkit-transform 1s;
    transition: left 1s, -webkit-transform 1s;
    transition: left 1s, transform 1s;
    transition: left 1s, transform 1s, -webkit-transform 1s;
    z-index: 5;
  }
  .sidebar-btn.hide-btn {
    visibility: hidden;
  }
  #modal-sidebar:checked ~ .sidebar-btn {
    left: 85vw;
    -webkit-transition: left 1s, visibility 0s linear 1s, -webkit-transform 1s;
    transition: left 1s, visibility 0s linear 1s, -webkit-transform 1s;
    transition: left 1s, transform 1s, visibility 0s linear 1s;
    transition: left 1s, transform 1s, visibility 0s linear 1s, -webkit-transform 1s;
  }
  #modal-sidebar:checked ~ .sidebar-btn.show-btn {
    -webkit-transform: rotate(-540deg);
            transform: rotate(-540deg);
    visibility: hidden;
  }
  #modal-sidebar:checked ~ .sidebar-btn.hide-btn {
    visibility: visible;
  }
}

@media screen and (max-width: 980px) {
  #header {
    display: none;
  }
  .img-column-1 {
    display: none;
  }
}

@media screen and (max-width: 1205px) {
  .img-column-2 {
    display: none;
  }
}

#header {
  -ms-grid-row: 3;
  grid-row: 3;
  max-width: 1400px;
  min-width: 310px;
  -ms-grid-column: 1;
      grid-column-start: 1;
  grid-column-end: 4;
}

.top {
  grid-row: header-start / header-end;
  grid-column: start / end;
  background-color: #003a7d;
}

#top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  max-width: 150px;
  height: auto;
  display: inline-block;
  margin: 1rem;
}

.leiste img {
  max-height: 120px;
  /* width: 200px; */
  vertical-align: middle;
}

.user-nav {
  color: white;
  margin: 1rem;
}

.user-nav a {
  color: white;
}

.user-nav i {
  font-size: 2rem;
  width: 2.4rem;
  text-align: center;
}

.user-nav i.fa-shopping-cart {
  text-align: right;
}

@media screen and (max-width: 759.999px) {
  .popout {
    -webkit-transition: top 1s, opacity 500ms, visibility 0s linear 500ms;
    transition: top 1s, opacity 500ms, visibility 0s linear 500ms;
    top: -25vh;
  }
  #modal-login:checked ~ .popout {
    -webkit-transition: top 1s, opacity 500ms;
    transition: top 1s, opacity 500ms;
    top: 25vh;
  }
}

@media screen and (min-width: 760px) {
  .user-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .popout {
    -webkit-transition: opacity 500ms, visibility 0s linear 500ms;
    transition: opacity 500ms, visibility 0s linear 500ms;
    top: 25vh;
  }
  #modal-login:checked ~ .popout {
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
  }
}

/* Login pop-out */
.popout {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  z-index: 6;
  display: inline-block;
}

.popout .inner {
  z-index: 8;
}

#modal-login:checked ~ .popout {
  visibility: visible;
  opacity: 1;
}

.popout-close {
  float: right;
  font-size: 2rem;
  text-decoration: none;
}

#login-popout {
  left: calc(50vw - 15rem);
  width: 30rem;
  padding: 0;
  background-color: #333;
  padding: 0.2rem;
  max-height: 12rem;
  max-width: 30rem;
}

#login-popout label.hide-btn {
  float: right;
}

#login-popout .field {
  margin: 0.1rem;
  -webkit-box-flex: 2;
      -ms-flex: 2 0 60%;
          flex: 2 0 60%;
  min-width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#login-popout .field input[type="text"] {
  min-width: 5rem;
  width: 100%;
  height: calc(1.2rem + 6px);
  padding: 3px;
}

#login-popout .field input[type="password"] {
  min-width: 5rem;
  width: 100%;
  height: calc(1.2rem + 6px);
  padding: 3px;
}

.menu a:hover,
.show-menu-btn:hover,
.hide-menu-btn:hover {
  color: #009c7d;
}

.hnav {
  grid-row: nav-start / nav-end;
  grid-column: start / end;
  background-color: #003a7d;
  margin-top: 0.2rem;
}

.hnav {
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.menu {
  list-style: none;
  padding-left: 15px;
}

.menu li {
  list-style: none;
  /*display:block;*/
  min-width: 0px;
}

.menu li {
  float: left;
  margin-right: 1rem;
  /*text-align: center;*/
}

.menu li a {
  text-decoration: none;
  color: #fdfdfd;
  font-size: 100%;
  padding-left: 1rem;
  text-transform: uppercase;
}

.menu ul li a:hover {
  text-decoration: none;
  color: #999;
  font-size: 100%;
}

ul.menu li ul li {
  display: none;
  visibility: hidden;
  width: 100%;
}

ul.menu li:hover ul li {
  display: block;
  visibility: visible;
}

.first-menu a {
  color: #fafafa;
}

.menu-btn {
  -webkit-transition: 0.4S;
  transition: 0.4S;
  font-size: 14px;
  cursor: pointer;
  display: none;
  color: #FFF;
}

.show-btn.menu-btn {
  float: right;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-right: 1rem;
}

.show-btn.menu-btn i {
  line-height: 25px;
  font-size: 30px;
}

@media screen and (max-width: 759.999px) {
  .menu-btn {
    display: block !important;
  }
  .menu {
    visibility: collapse;
    position: fixed;
    width: 100%;
    height: 80vh;
    background: #333;
    left: 0;
    top: -80vh;
    text-align: center;
    padding: 80px 0;
    line-height: normal;
    right: -100%;
    z-index: 10;
    display: -ms-grid;
    display: grid;
    -webkit-transition: top 1s, visibility 0s linear 1s;
    transition: top 1s, visibility 0s linear 1s;
  }
  .menu li {
    padding: 20px;
  }
  .hide-btn.menu-btn {
    position: absolute;
    top: 40px;
    right: 40px;
  }
  #modal-topmenu:checked ~ .menu {
    visibility: visible;
    top: 0;
    -webkit-transition: top 1s;
    transition: top 1s;
  }
}

@media screen and (max-width: 759.999px) {
  div .search {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    margin: auto 1rem;
  }
  div .search i {
    font-size: 1.6rem;
    margin-left: -2.8rem;
  }
  div .search input {
    font-size: 1.6rem;
    width: calc(100vw - 8rem);
    border-radius: 1.6rem;
    padding-left: 0.5rem;
  }
  .autocomplete-suggestions {
    font-size: 1.6rem;
    padding-left: 0.5rem;
  }
  div #top.top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.search {
  /* float: right; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.search i {
  color: #ccc;
}

.search a {
  margin-right: 0.8rem;
}

#site-search {
  margin-right: 5px;
}

.autocomplete-suggestions {
  background-color: #eee;
}

@media screen and (min-width: 760px) {
  .search {
    margin: -0.4rem 1rem;
  }
  .search i {
    position: relative;
    font-size: 1.2rem;
    margin-left: -2.6rem;
  }
  .search input {
    font-size: 1.2rem;
    max-width: 30rem;
    width: 30vw;
    border-radius: 1rem;
    padding-left: 0.5rem;
  }
  .autocomplete-suggestions {
    font-size: 1.2rem;
    padding-left: 0.5rem;
  }
}

@media screen and (max-width: 980px) {
  #header {
    display: none;
  }
}

/*********************Content Main *************************************/
main {
  height: auto;
  max-width: 980px;
}

/**Slider im Contentbereich***/
.slider {
  border: 3px solid;
  border-color: #dedcea;
  margin-bottom: 2rem;
  height: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  /**width:100%;**/
}

.frame {
  width: 100%;
  height: auto;
}

.image-frame {
  max-height: 120px;
  overflow-y: hidden;
}

.image-frame img {
  width: 100%;
  height: auto;
}

.wrapped {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.showcase {
  margin: 1.5%;
  min-width: 75px;
  min-height: 200px;
  text-align: left;
  /** padding: 1.2rem; **/
  width: 22%;
}

.slider h2 {
  font-weight: 200;
  width: 100%;
  border-bottom: 2px solid;
  border-color: #dedcea;
}

/*Artikel gestaltung*/
/*Artikelbilder mit Slideshow*/
.artikel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  /* width:100%; */
  background-color: #fff;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /*WarenkorbKnopf*/
  /*Kurztext langtext etc*/
}

.artikel > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: 280px;
      flex-basis: 280px;
}

.artikel .fartikel.col-1 {
  /*width:50%;*/
  display: block;
  padding: 1rem;
}

.artikel .art-img img {
  width: 100%;
  max-width: 100%;
}

.artikel .thumbslider {
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.artikel .form-inline {
  margin-bottom: 1.2rem;
  margin-top: 1.5rem;
}

.artikel .fr-info.col-2 {
  /* width: 50%; */
  padding: 1rem;
  max-height: 60rem;
  overflow-y: scroll;
  margin-bottom: 20px;
  padding-bottom: 20px;
  /* border: #fdfdfd; */
  border: solid, 1px, 1px, 1px 1px currentColor;
}

.artikel p.langtext {
  line-height: 1.4rem;
}

.artikel .col-max {
  width: 100%;
  background-color: #fff;
  padding: 1rem;
  margin-bottom: 2rem;
}

/*****Teiler für Slider (layout für Homepage) ******/
/*.devide {
        width: 100%;
        background: #eaeaea;
        padding: 1em 0 5.4em 0px;
        min-height: 100px;
        margin-bottom: 2.4rem;
    }
    
    .devide h3{
        padding-left:1.2%;
        font-weight: 300;
        font-family: "pt-sans", sans-serif;
    }
    
    .divideheader{
        margin-bottom: 1rem;
    }
    
    .board {
        float: left;
        padding-left: 1.2%;
        width: 100%;
    }
    
    .board ul {
        list-style: none;
        float: left;
        padding: 0;
        padding-bottom: 1.5rem;
        width: 40%;
    }
    
    
    .board ul li{
        list-style: none;
        color:dimgray;
        padding-left: 1.2%;
        line-height: 2;
        font-family: "pt Sans", sans-serif;
    }
    
    .board ul li i{
        color:limegreen;
        font-size: 14px;
        margin-right: 1rem;
        
    }
    .description{
        text-align: center;
        
    }
    
    .description.Hersteller{
        color:#444;
        font-weight: lighter;
        font-family:sans-serif;
    }
    */
/*********************Content Main ENDE*************************************/
/*******************slider thumb*****************************/
.col.s4 {
  display: inline;
  padding: 0.4rem;
}

.mySlides {
  margin-bottom: 1rem;
}

.mySlides div {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.thumbnails {
  margin: 0;
}

.thumb {
  opacity: 0.4;
}

.thumb:hover {
  opacity: 1 !important;
}

.opacity-off {
  opacity: 1 !important;
}

.thumb img {
  width: 30%;
}

.nachrichten {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

button.nachricht-senden {
  border-radius: 100%;
  width: 4rem;
  height: 4rem;
  margin-top: -2rem;
  vertical-align: text-bottom;
}

.nachricht {
  width: auto;
  position: relative;
  margin: 0.2rem 2rem;
  padding: 0.3rem 0.6rem;
}

.nachricht.schreiben {
  border-radius: 1rem;
  border: 1px solid #8030c0;
  width: calc(100% - 8rem);
  margin-right: 0;
  resize: vertical;
  min-height: 4rem;
}

.nachricht:before {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  border: 10px solid transparent;
}

.nachricht.gesendet {
  color: #333333;
  border: 1px solid #8030c0;
  border-radius: 1rem 0 1rem 1rem;
  background-color: rgba(128, 48, 192, 0.2);
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.nachricht.gesendet:before {
  border-top: 10px solid #8030c0;
  border-left: 10px solid #8030c0;
  right: -20px;
  top: -1px;
}

.nachricht.empfangen {
  color: #333333;
  border: 1px solid #205a9d;
  border-radius: 0 1rem 1rem 1rem;
  background-color: rgba(32, 90, 157, 0.2);
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.nachricht.empfangen:before {
  border-top: 10px solid #205a9d;
  border-right: 10px solid #205a9d;
  left: -20px;
  top: -1px;
}

.warenkorb {
  margin: 2rem 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
}

.warenkorb h1 {
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-column: 1 / span 3;
  margin-bottom: 1.5rem;
}

.warenkorb .produktbild {
  grid-row: span 2;
  min-width: 85px;
  min-height: 85px;
}

input.implicit-default {
  display: none;
}

.kategorien {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  background-color: #fff;
}

.kategorien > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
  padding-right: 1em;
}

.maincat {
  width: 32%;
  padding-left: 1%;
  padding-top: 0.5rem;
}

.maincat ul {
  list-style-type: none;
}

.maincat ul.l1 {
  padding: 0rem 0.8rem;
}

.maincat ul.l2 {
  padding: 0rem 0rem 0rem 1rem;
}

.maincat ul li {
  padding: 0.05rem 0rem;
  margin-bottom: 0.4rem;
}

.maincat a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*flex-wrap:wrap;*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  width: 100%;
}

.maincat .name {
  /*max-width:90%;*/
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.maincat .count {
  /*margin-left:auto;*/
}

.maincat .l0 {
  padding: 0.3rem 0.8rem;
  background-color: #003a7d;
  /*border: 1px solid rgba(8,61,126,1);*/
  margin: 0.5rem 0rem;
  /*border-radius: 15px;*/
}

.maincat .l0 .name {
  color: white;
  letter-spacing: 0.05rem;
  font-family: "Lucida Sans Unicode", "Lucida Grande", "Garuda";
  /*Win,Mac,Lin*/
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 2.8rem;
}

.maincat .l0 .count {
  color: white;
  font-size: 1.2rem;
  line-height: 3.0rem;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.maincat .l1 .name {
  font-size: 1.2rem;
  line-height: 1.3rem;
}

.maincat .l1 .count {
  font-size: 1.0rem;
  line-height: 1.3rem;
}

.maincat .l2 .name {
  font-size: 1.2rem;
  line-height: 1.3rem;
}

.maincat .l2 .count {
  font-size: 1.0rem;
  line-height: 1.3rem;
}

.maincat ul.l2 li a::before {
  content: " ";
  background-image: url("../img/mid.svg");
  display: block;
  /*position: relative;*/
  margin-left: -1.4rem;
  width: 1.3rem;
  height: 1.3rem;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.maincat ul.l2 li:last-child a::before {
  background-image: url("../img/last.svg");
}

.kontaktform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.kontaktform .line {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 1%;
          flex: 1 0 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.kontaktform .label {
  margin: 0.1rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 20%;
          flex: 1 0 20%;
  min-width: 130px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: calc(1.2rem + 6px);
  padding: 3px;
}

.kontaktform .req .label::after {
  content: " *";
  color: red;
}

.kontaktform .field {
  margin: 0.1rem;
  -webkit-box-flex: 2;
      -ms-flex: 2  0 60%;
          flex: 2  0 60%;
  min-width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.kontaktform .field ::-webkit-input-placeholder,
.kontaktform .field .kontaktform .field ::-webkit-input-placeholder {
  color: #AAAAAA;
}

.kontaktform .field ::-webkit-input-placeholder,
.kontaktform .field .kontaktform .field ::placeholder {
  color: #AAAAAA;
}

.kontaktform .field :invalid:required::-webkit-input-placeholder,
.kontaktform .field :invalid:required::-webkit-input-placeholder {
  color: #7F2020;
}

.kontaktform .field :invalid:required::-webkit-input-placeholder,
.kontaktform .field :invalid:required::placeholder {
  color: #7F2020;
}

.kontaktform .field :invalid:required {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.kontaktform .field input[type='text'] {
  min-width: 5rem;
  width: 100%;
  height: calc(1.2rem + 6px);
  padding: 3px;
}

.kontaktform .field select {
  width: 100%;
  height: calc(1.2rem + 6px);
  padding: 0px;
}

.kontaktform .field select option {
  height: calc(1.2rem + 6px);
  padding: 3px;
}

.kontaktform .field textarea {
  width: 100%;
  min-height: calc(1.2rem + 6px);
  height: calc(12rem + 6px);
  resize: vertical;
}

.kontaktform .field input[type='password'] {
  min-width: 5rem;
  width: 100%;
  height: calc(1.2rem + 6px);
  padding: 3px;
}

.kontaktform .field span {
  padding: 3px 1px;
}

.kontaktform .field input.dupleft {
  -webkit-box-flex: 5;
      -ms-flex: 5  0 10%;
          flex: 5  0 10%;
  text-align: right;
}

.kontaktform .field span.dupcenter {
  -webkit-box-flex: 1;
      -ms-flex: 1  0 1%;
          flex: 1  0 1%;
  text-align: center;
  padding: 3px 1px;
}

.kontaktform .field input.dupright {
  -webkit-box-flex: 19;
      -ms-flex: 19  0 40%;
          flex: 19  0 40%;
  text-align: left;
}

.kontaktform .field input[type='checkbox'] {
  height: calc(1.2rem + 6px);
}

.kontaktform .field input[type='checkbox']:invalid:required + label {
  color: #7F0000;
}

.kontaktform .field label {
  min-height: calc(1.2rem + 6px);
  padding: 3px;
}

/*************************************MAINAREA****************************************/
#content-search {
  margin-left: auto;
  margin-right: auto;
  /*max-width:1600px;*/
  height: auto;
  width: 100%;
  background-color: #fff;
}

#content-search h3 {
  margin-right: 1em;
  width: auto;
}

#content-search h3 a {
  color: black;
}

#content-search p a {
  color: black;
}

#content-search hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  height: auto;
  display: block;
  clear: both;
}

/********suche Infos********/
.searchinfo {
  line-height: 1.5;
  margin-top: 1em;
}

/************ENDE SUCHE INFOS**************/
.boxed {
  /* display: inline-block; */
  height: 1.5em;
  background-color: #003a7d;
  /* display: inline-block; */
  height: 1.5em;
}

a.btn {
  color: #fcfcfc;
  text-decoration: none;
}

/***Einzelne Suchergebinsse mit Bild und Text***/
/***Hauptbox**/
.block {
  margin-right: 1em;
  max-height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* height: 10em; */
}

.block > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
}

/***ENDE HAUPTBOX***/
/***************************Bildbox******************************/
.inlinebox.image {
  max-width: 150px;
}

/***************************TEXTBOX********************************/
.inlinebox.text p,
.inlinebox.text a {
  font-size: 1rem;
  color: dimgrey;
  line-height: 1.2rem;
  margin-bottom: 2em;
}

/****Artikelzustand****/
h4.h4-main {
  display: inline;
  margin-right: 10px;
}

.h4-main a {
  color: #003a7d;
  display: inline;
  font-size: 1em;
  text-align: right;
}

.inlinebox.text h3 {
  font-weight: 100;
  font-size: 1.3rem;
  line-height: 3rem;
  color: #111111;
  display: inline;
}

button.boxed.button {
  max-width: 6em;
  border: none;
}

block h3 {
  font-size: large;
}

#content-search .search-block p {
  /*display: inline;*/
  font-size: 1em;
  max-width: 75%;
  margin-left: 11.1em;
}

/***************************Seite Blättern********************************/
.prev {
  margin-right: 1em;
  display: inline;
}

.next {
  margin-left: 1em;
}

.search-block button {
  font-size: 1em;
  max-width: 10%;
  height: auto;
  margin-left: 5%;
  float: right;
  background-color: #003a7d;
  color: floralwhite;
}

.search-block button a {
  color: #dee2e6;
  text-align: center;
  vertical-align: center;
}

/*Anzeige von Ergebnisse usw.*/
div#search {
  line-height: 1.5;
}

.kategoriefilter ul li.selected {
  background-color: #ddddff;
}

.searchinfo .paginate a {
  padding: 0rem 0.2rem;
  font-size: 1.6rem;
}
/*# sourceMappingURL=combined.css.map */