
/*Start basis layout*/
* {
  box-sizing: border-box;
}

body{
font-family: "Poppins", sans-serif;
margin:0;
background: #f5f8f8;
}

h1, h2, h3, h4 {
  color: white;
}

h1.blk, h2.blk, h3.blk, h4.blk {
  color: black;
}


.content {
  max-width: 1200px;
  margin: auto;
  background: white;
}


.row::after {
  content: "";
  clear: both;
  display: table;
}



[class*="col-"] {
  float: left;
  padding: 15px;
}

html {
  font-family: "Poppins", "Lucida Sans", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 3px;
}

.header {
  background-color: #4287f5;
  padding: 5px;
  text-align: center;
  /*background: url(../pics/header.jpg);*/
  /*background-repeat: no-repeat;*/
  /*background-size: 100%;*/
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu li {
  padding: 8px;
  margin-bottom: 7px;
  background-color: #33b5e5;
  color: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.menu li:hover {
  background-color: #4287f5;
}

/*Weg*/
.aside {
  padding: 15px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 14px;

}

/*Weg*/
.aside-box {
  background-color: #f5f8f8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}

.footer {
  background-color: #4287f5;
  color: white;
  text-align: center;
  padding: 15px;
}

/* For mobile phones: */
[class*="col-"] {
  width: 100%;
}

@media only screen and (min-width: 600px) {
  /* For tablets: */
  .col-s-1 {width: 8.33%;}
  .col-s-2 {width: 16.66%;}
  .col-s-3 {width: 25%;}
  .col-s-4 {width: 33.33%;}
  .col-s-5 {width: 41.66%;}
  .col-s-6 {width: 50%;}
  .col-s-7 {width: 58.33%;}
  .col-s-8 {width: 66.66%;}
  .col-s-9 {width: 75%;}
  .col-s-10 {width: 83.33%;}
  .col-s-11 {width: 91.66%;}
  .col-s-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
  /* For desktop: */
  .col-1 {width: 8.33%;}
  .col-2 {width: 16.66%;}
  .col-3 {width: 25%;}
  .col-4 {width: 33.33%;}
  .col-5 {width: 41.66%;}
  .col-6 {width: 50%;}
  .col-7 {width: 58.33%;}
  .col-8 {width: 66.66%;}
  .col-9 {width: 75%;}
  .col-10 {width: 83.33%;}
  .col-11 {width: 91.66%;}
  .col-12 {width: 100%;}
}

a:link, a:visited {
  color: white;
  text-decoration: none;
}

a:hover, a:active {
  color: #white;
  text-decoration: underline;
}

a.cookies:link, a.cookies:visited {
  color: black;
  text-decoration: none;
}

a.cookies:hover, a.cookies:active {
  color: black;
  text-decoration: underline;
}

/*Eind basis layout*/



/*Start navigatie*/

.topnav {
  overflow: hidden;
  background-color:#73b8ff;
  
}

.aleft {
text-align: left;
}

.topnav a {
  float: left;
  display: block;
  color: #white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/*Weg*/
/* Style the search box inside the navigation bar */
.topnav input[type=text] {
  float: right;
  padding: 6px;
  border: none;
  margin-top: 8px;
  margin-right: 16px;
  font-size: 17px;
}

.active {
  color: #4caf50;
}

.topnav .icon {
  display: none;
}

/*Weg*/
.dropdown {
  float:left;
  overflow: hidden;
}

/*Weg*/
.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: #4caf50;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/*Weg*/
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #c4ffc8;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/*Weg*/
.dropdown-content a {
  float: none;
  color: #4caf50;
  padding: 5px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #4287f5;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
    background-color:#73b8ff;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/*Eind navigatie*/


/*Start product*/
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  max-height: 360px;
  min-height: 360px;
  margin: auto;
  text-align: center;
  font-family: arial;
  padding: 2px;
  background-color:white;
}

.price {
  color: #4287f5;
  font-size: 22px;
}

.cadeau_categorie{width:100%;height:28px;float:left;text-align:center;margin-top:3px;margin-bottom:3px;font-weight:600;color:#4287f5;}
.cadeau_categorie_tekst{vertical-align:middle;display:inline-block;line-height:38px;text-align:center;margin:0 10px;height:28px;overflow:hidden}

.cadeau_afbeelding{width:100%;height:200px;float:left;}

.cadeau_omschrijving{width:100%;height:83px;float:left;text-align:center;font-weight:300}
.cadeau_omschrijving_tekst{vertical-align:middle;display:inline-block;line-height:20px;text-align:center;margin:0 10px;height:82px;overflow:hidden;font-size:14px;}

.cadeau_prijs-verder{width:100%;height:28px;background-color:#4287f5;float:left;text-align:center;margin-top:0px;margin-bottom:0px;padding:5px;float:right;font-weight:600;}
.cadeau_prijs-verder_tekst{vertical-align:middle;display:inline-block;line-height:20px;margin:2px 2px;height:28px;overflow:hidden;}


.afbeelding{width:100%;height:200px;float:left;margin-bottom:2px;background-repeat:no-repeat;background-size:auto 200px;background-position:center;vertical-align:middle;}
.description{width:100%;height:75px;float:left;text-align:center;font-weight:300}
.tekst{vertical-align:middle;display:inline-block;line-height:15px;text-align:center;margin:0 10px;height:75px;overflow:hidden;font-size:11px;}
.vanprijs{color:grey;clear:both;font-size:14px;}
.aanbieder{margin-bottom:2px; color:#4287f5}



/*Eind product*/

/*Start Contactformulier*/
.containerContact {

  border-radius: 5px;
  background-color: #f5f8f8;
  padding: 20px;
}

input.contactform[type=text], textarea {
  width: 100%; 
  padding: 12px; /* Some padding */ 
  border: 1px solid #ccc; /* Gray border */
  border-radius: 4px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 6px; /* Add a top margin */
  margin-bottom: 16px; /* Bottom margin */
  resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

.mrbBerekenenfoutmelding {
	position: static;
	padding: 10px 10px 5px 15px;
	float:left;
	border: 1px solid #c76385;
	width: 100%;
	min-width: 200px;
	min-height: 50px;
	background: #fff2f5;
	margin: 10px 10px 10px 1px;
        border-radius: 10px;
	color: #c76385;
}

.mrbBerekenenresultaat {
	position: static;
	padding: 10px 10px 5px 15px;
	float:left;
	border: 1px solid #6385C7;
	width: 100%;
	min-width: 200px;
	min-height: 50px;
	background: #f2f5ff;
	margin: 10px 10px 10px 1px;
        border-radius: 10px;
	color: #6385C7;
}

input[type=button], input[type=submit], input[type=reset] {
  background-color: #4caf50;
  font-family: "Poppins", sans-serif;
  border: none;
  color: #ffffff;
  padding: 10px 10px;
  text-decoration: none;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #af504c;	

}

div.mySubmit {
	right: 10px;
	position: absolute;
  	bottom: 10px;

}

/*Eind Contactformulier*/

/*Start SpBlock */

.SpBlock {
  max-width: 300px;
  margin: auto;
  text-align: left;
  font-family: arial;
  margin-bottom: 5px;
 }

.sp_categorie{
	width:100%;
	min-height:28px;
	float:left;
	text-align:center;
	margin-top:25px;
	font-weight:600;
	color:white;
	background: #4287f5;
	display:inline-block;
	padding: 5px;

}

.sp_link{
	width:100%;
	max-height:26px;
	display:inline-block;
	overflow:hidden;
	float:left;
	text-align:left;
	font-weight:300;
	padding: 8px;
	background: #73b8ff;

}



/* End SpBlock