@charset "utf-8";
/* CSS Document */
.container {
	overflow: hidden;
}
/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

.filterDiv {
  float: left;
  background-color: #fff;
  color: #202020;
  width: 25%;
  height: auto;
  text-align: center;
  margin:5px;
  padding: 0.5em;
  border: 1px solid #d8d8d8;
  display: none; /* Hidden by default */
}

.show {
  display: block;
}

.container {
  overflow: hidden;
	display: flex;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;	
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
}

.btn:hover {
  background-color: #ffc000;
}

.btn.active {
  background-color: #ffc000;
  color: white;
}
.part-no {font-size: 13px;}
@media screen and (max-width: 480px)   {
	.container {
  margin-top: 20px;
  overflow: scroll;
	display: flex;
}
}