.container {
  
			position: relative;
			-webkit-overflow-scrolling: touch;
			padding: 0 2em 0 2em;

			
			
}

.filterDiv {
  float: left;
/* barva nevim */
  background-color: #f0f4f4;
/* barva vim - textu kdyz rozkliknu produkt */
  color: #000000;
  max-width: 100%;

  line-height: 2.075em;
  text-align: left;  
margin: 0 auto;
margin-bottom: 1em;
  display: none; /* Hidden by default */
}



/* The "show" class is added to the filtered elements, contents vypada dobre */
.show {
  display: contents;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 0px 10px;
/* barva vim - pozadi bunek, ktere nejsou vybrane */
  background-color: #ffffff;
color: black;
  cursor: pointer;
}

/* Add a light grey background on mouse-over */
.btn:hover {
/* barva vim - pozadi bunky, na kterou najedu kurzorem */
  background-color: #000000;

}

/* Add a dark background to the active button */
.btn.active {
/* barva vim - pozadi aktivni bunky */
  background-color: #ffa2b9;
  color: #000000;
}