/*unverändert*/
* {
  box-sizing: border-box;
}

/*unverändert*/
/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin: 0;
}

/*geändert MArkierung*/
/* Header/logo Title */
.header {
  position: -webkit-fixed; /*Neu*/
    position: sticky;/*neu*/
    top: 0;/*neu*/
    padding: 20px;/*Geänd*/
    /*height: 180px;neu nicht  übernommen*/
    text-align: center;
  /*background: #1abc9c;*//*entfernt*/
  color: white;
  background-image: url("bilder/welle.jpg");/*neu*/
  background-size: contain; /* neu hinzugefügt damit Hintergrundbild responsive, kann event wieder weg*/
}

/*geändert-ergänzt*/
/* Festlegung Schrift Header */
.header h1 {
  font-size: 25px; /*geändert*/
  color: white; text-shadow: 2px 2px 2px black, 0 0 25px blue, 0 0 5px darkblue; /*neu*/
}
/*neu*/
.headerH2 {
  font-size: 18px;
  color: white; text-shadow: 2px 2px 2px black, 0 0 25px blue, 0 0 5px darkblue;
  }

/*neu*/
/*Position Logo im head*/
.imlogo {
  /*position:relative;*/
  float: left;
  right: 4px;
  top: 4px;
  }
/*neu*/
/*Schrift zentriert, fett*/
.zenfet{
  text-align: center;
  font-weight: bold;
}
/*neu*/
h2{
    background-color: #B0E0E6;
}
  /* Abstand Kapitel, sonst link zu weit am Rand*/
/*neu*/
.AbsKap{
    height: 30px;
}

 /*ergänzt Markierung*/
 /* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
.navbar {
  overflow: hidden;
  background-color: #333;
  opacity: 0.7;/*neu*/
  top: 0;
  position: sticky;
  position: -webkit-sticky;
}
/*unverändert*/
/* Style the navigation bar links */
.navbar a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
}
 
/*neu 20.01.23*/
/* The container <div> - needed to position the dropdown content */

.dropdown {
  position: relative;
  display: inline-block;
}
/* Dropdown Inhalt (Hidden by Default) */
.dropdown-content {
  display: none;                  /* Dropdown Inhalt wird nicht angeziegt, erts bei Überfahren mit Cursor*/
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a:hover {
  background-color: #f1f1f1
}

/*neu*/
.clear{
  clear: both;
  background-color: rgb(10, 10, 10);
  height: 40px;
  margin: 15px;
}

/*unverändert*/
/* Right-aligned link */
.navbar a.right {
  float: right;
}
/*unverändert*/
/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}
/*unverändert*/
/* Active/current link */
.navbar a.active {
  background-color: #666;
  color: white;
}

/*unverändert*/
/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}
/*unverändert*/
/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}
.sidegrau {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}
/*unverändert*/
/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}
/*geändert Markierung*/
/* Fake image, just for this example */
.fakeimg {
  background-color: rgb(254, 250, 6);/*geändert*/
  /*width: 40%;*/
  padding: 20px;
  height: 120px;
}
/*neu*/
.fakeimg a {
  text-decoration: none;
  color:black
}
/*neu*/
.fakeimg a.hover {
  background-color: #ddd;
    color: black;
}
/*neu*/
.liefLogo {
  /*background-color: #aaa;*/
  width: 100%;
}
/*neu*/
.imgleft{
 /* background-color: #aaa;*/
  width: 33%;
  padding:  1px;
  float: left;
}


.txtright{
  /* background-color: #aaa;*/
  width: 67%;
   padding:  1px;
   float: left;
 }

/*neu + markierung geändert*/
.imgcenter{
  /*background-color: #aaa;*/
  max-width: 100%;
  height: auto;
    padding:  1px;
}
/*geändert MArkierung*/
/* Footer */
.footer {
  padding: 10px;/*geändert*/
  text-align: left;/*geändert*/
  background: #B0E0E6;/*geändert*/
  float: left;/*neu*/
  -ms-flex: 70%; /* IE10 *//*neu*/
  flex:100%;/*neu*/
}
/*neu*/
.footboxA {
  float: left;
  width: 40%;
}
/*neu*/
.footbox {
  float: left;
  width: 30%;
}
/*neu*/
.footbox a {
  text-decoration: none;
  color:black
}
.lieferant{
  color:black;
  text-decoration: none;
  list-style-type: none;
  float: left;
}
.lieferant a:link {
  float: left;
  display: block;
  text-decoration: none;
  list-style-type: none;
}

/*neu*/
.footbox a.active {
    background-color: rgb(121, 120, 120);
    color: white;
}
/*neu*/
.footbox a:hover {
    background-color: #ddd;
    color: black;
}
/*neu*/
  .footul {
  list-style-type: none;
}
.clear{
  clear: left;
  height: 1px;
  background-color: white;
 }
 div.untertitel {
  padding: 15px;
  text-align: center;
}
/*Seite Marktplatz*/
.prodHaupt{
  float: left;
  margin: 5px;
  width: 360px;
}
.prodHead {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px; 
  font-weight: bold;
	background-color: #B0E0E6;
	color: #33333; 
	width: 360px;
	border-top: #000000 1px solid; 
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 4px;
	padding-bottom: 4px;
}
.prodText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px; 
	color: #33333; 
	height: 120px;
	padding-left: 4px;
	padding-bottom: 4px;
  width: 360 px;
}
.prodBild{
  height: 170px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
/* Bildunterschrift*/
div.gallery {
  margin: 30px;
  border: 1px solid #ccc;
  float: left;
  width: 180px;
}

div.desc {
  padding: 15px;
  text-align: center;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}
/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/

/*unverändert*/
/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row {   
    flex-direction: column;
  }
  /*ergänzt*/
/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 395px) {
  .imlogo {
    float: none;
    display: none;
    /*width: 100%;*/
  }
  .footbox {
    float: none;
    /*width: 100%;*/
  }
  .imgleft {
     float: none;
      }
  .imgcenter {
        max-width: 100%;
        height: auto;
      }
  .navbar a {
    /*float: none;*/
    /*width: 100%;*/
  }