@CHARSET "utf-8";

#blogsearch {
	width: 100%;
	height: 30px;
	margin-top: 5px;
}

.blogsearch_formclass {
	display: flex;
	content: center;
	width: 100%;
}
.blogsearch_form_searchbar {
	width: 90%;
	height: 40px;
	position: relative;
	background-color: #fff;
	border-radius: 1.5rem;
	margin-left: 5%;
	display: flex;
}
.blogsearch_form_input {
	width: 100%;
	height: 40px;
	position: relative;
	background-color: #fff0;
	border-radius: 1.5rem;
	padding-left: 24px;
}
.blogsearch_form_button {
	position: relative;
	width: 24px;
	height: 24px;
	padding-right: 24px;
	margin-top: auto;
	margin-bottom: auto;
}

.blogsearch_form_svg {
	display: inline-block;
	width: 24px;
	height: 24px;
}

.blogsearch_form_select {
	width: 90px;
	height: 20px;
	font-size: 12px;
	float: right;
	margin-right: 5%;
	margin-top: 10px;
	background-color: #ffff;
	border: none;
}

#blogrow {
	width: 100%;
	display: flex;
	//overflow: hidden;
	justify-content: space-between;
	margin-top: 0px;
	flex-wrap: wrap;
}

#blogrow a {
	text-decoration: none;
	color: #a0a0a0;
}

#blogrow h3, p {
	color: #007e5e;
}

.blogblockfull {
	width: 99%;
	height: 320px;
	margin-top: 10px;
	background: rgba(240, 240, 240, .7);
	/* background-color: #cbfad4; */
	border-top-left-radius: 10px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 5px;
}

.blogblock {
	width: 49%;
	height: 320px;
	margin-top: 10px;
	background: rgba(240, 240, 240, .7);
	border-top-left-radius: 10px;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 5px;
	margin-bottom: 10px;
}

.blogimg {
	height: 200px;
	margin-top: 5px;
	margin-left: 5%;
	margin-right: 5%;
}

.blogblock img, .blogblockfull img {
	width: 90%;
	object-fit: fill;
	height: 200px;
	margin-top: 5px;
	margin-left: 5%;
}

.blogblock ul, .blogblockfull ul {
	list-style-type: none;
	margin-top: -25px;
	margin-left: 5%;
	font-size: 16px;
	font-weight: bold;
	color: #a0a0a0;
	font-family: Lucida Console,Lucida Sans Typewriter,monaco,Bitstream Vera Sans Mono,monospace, Ubuntu monospace;
}
.blogblock ul li .material-icons, ul li a, .blogblockfull ul li .material-icons, ul li a{
	display: inline-block;
	vertical-align: middle;
	padding: 2px;
	color: #a0a0a0;
}

.material-icons {
	font-size: 50px;
	margin-right: 7px;
}

.blogblock:hover, .blogblockfull:hover{
	/* background-color: #61eb85; */
	background: rgba(214, 214, 214, .7);
}

.tekstonder{
	width: 90%;
	height: 90px;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
	font-family: Lucida Console,Lucida Sans Typewriter,monaco,Bitstream Vera Sans Mono,monospace, Ubuntu monospace;
}



@media only screen and (max-width:800px) {
  /* For tablets: */
	.blogblock {
		width: 100%;
	}
}
@media only screen and (max-width:500px) {
  /* For mobile phones: */
	.blogblock {
		width: 100%;
	}

}

