.Product-Tile {
  background-color: #fff;
  color: #222;
  margin-right: 0.3%;
  margin-top: 10px;
  padding: 0px;
  width: 24.5%;
  min-width: 190px;
  height: 420px;
  float: left;
  border-bottom-style: solid;
  border-color: #bbb;
  border-bottom-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  border-radius: 12px;
}

.Product-Tile-1 {
  padding: 0px;
  width: 100%;
  height: 210px;
  float: left;
  border-radius: 12px;
}

.Product-Tile-2 {
  background-color: #fff;
  padding: 0px;
  width: 100%;
  height: 80px;
  float: left;
}

.Product-Tile-3 {
  background-color: #fff;
  padding: 0px;
  width: 100%;
  height: 40px;
  float: left;
}

.Product-Afbeelding {
  margin-right: 10px;
  margin-top: 0px;
  width: 100%;
  max-height: 210px;
  float: left;
  border-radius: 12px;
  z-index: -1;
}

.Product-Group-Tile {
  color: white;
  margin-right: 0.3%;
  margin-top: 10px;
  padding: 0px;
  width: 33.0033%;
  min-width: 198px;
  height: 100px;
  float: left;
  border-radius: 0px;
}

.btn-Product-Group-Tile  {
  width: 100%;
  background-image: linear-gradient(#222, #555);
   font-size: 1.6em;
   font-weight: bold;
  color: white;
  padding: 0px 0px;
  margin-left: 0px;
  border: none;
  border-radius: 10px;
  height: 100px;
  cursor: pointer;
}

.Search-Contact-Box {
  margin-right: 1.3%;
  margin-top: 10px;
  padding: 0px;
  width: 48.7%;
  min-width: 360px;
  height: 340px;
  float: left;
  border-radius: 10px;
}

.Searchbox-Tile {
  background-image: linear-gradient(to bottom right, #001, #ddd);
  color: white;
  margin-top: 20px;
  padding: 0px;
  width: 100%;
  height: 140px;
  float: left;
  border-radius: 10px;
}

.Searchbox-Tile-Auto {
  background-image: linear-gradient(to bottom right, #001, #ddd);
  color: white;
  margin-top: 10px;
  padding: 0px;
  width: 100%;
  height: 330px;
  float: left;
  border-radius: 10px;
}

.Contactbox-Tile {
  background-image: linear-gradient(to bottom right, #005, #001);
  color: #999;
  margin-top: 10px;
  padding-top: 10px;
  width: 100%;
  height: 160px;
  float: left;
  border-radius: 10px;
}

.Filterbox-Tile {
  background-image: linear-gradient(#68b12f, #50911e);
  color: white;
  margin-top: 0px;
  margin-bottom: 40px;
  padding: 10px;
  width: 100%;
  float: left;
  border-radius: 10px;
}

.btn-zoek {
  width: 20%;
  background-image: linear-gradient(#eee, #aaa);
  color: white;
  padding: 2px 2px;
  margin-left: 10px;
  border: none;
  border-radius: 3px;
  height: 36px;
  cursor: pointer;
}

.btn-info {
  width: 100%;
  background-image: linear-gradient(to bottom right, #005, #000);
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 11px;
  cursor: pointer;
}

.btn-info2 {
  width: 100%;
  background-image: linear-gradient(#213973, #4d4dff);
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 11px;
  cursor: pointer;
}

.btn-info:hover, .btn-info2:hover, .btn-winkelmandje:hover, .btn-zoek:hover , .btn-Product-Group-Tile:hover {
  background-image: linear-gradient(to bottom right, #009, #004);
}


/* De checkboxen voor het filter
/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}