/*
Theme Name: Kickstart for WordPress
Description: small framework for quickly getting started with your wordpress theme development
Author: Gerrit van Aaken
Version: 0.8 | Release: 2015-01-13
	based upon:
	HTML/CSS/JS-Kickstart
	(small framework for quickly getting started with your web frontend development)
	by Gerrit van Aaken (http://praegnanz.de)

	No rights reserved.
*/

/* -------------------------------- Default WP classes */

.aligncenter {
	display: block;
	margin: 0 auto;
}

.alignleft {
	float: left;
	margin: 0 1em 1em 0;
}

.alignright {
	float: right;
	margin: 0 0 1em 1em;
}

.wp-caption {
}

.wp-caption img {
}

.wp-caption p.wp-caption-text {

}

/* ----------------------------------------------------- tabletish screens */


/* ----------------------------------------------------- smartphonish screens */
@media only screen and (max-width: 767px) {

}

/* ----------------------------------------------------- desktopish screens */
@media only screen and (min-width: 1024px) {

}


#cookie-law-info-bar {
background: white;
bottom: 0;
}


footer {
	background: white;
	position: fixed;
	width: 100%;
	z-index: 9999;
	bottom: 0;
	color: black;
	padding: 10px;
	height: 4rem;
	border-top: 1px solid black;
	display: flex;
	align-items: center;
  justify-content: center;
}

.footer__text {
	
}

.footer_btn {
	background: black;
	color: white;
	padding: 5px 8px;
	margin: 10px;
}

/* -------------------------------- Browser specific CSS */

.js .element { } /* apply only on JavaScript enabled browsers */
.ie8 .element { } /* apply only on Internet Explorer 8 */
.ie9 .element { } /* apply only on Internet Explorer 9 */