/*
Theme Name: Fieldsets Eva
Author: Ulf Paule
Version: 2.2 2019
*/


/* fonts*/

@font-face {
	font-family: 'RobotoCondensed';
	src: url('assets/fonts/RobotoCondensed-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'RobotoCondensed';
	src: url('assets/fonts/RobotoCondensed-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}




/* basics / resets */

html {
	position: relative;
	margin: 0;
	padding: 0;
	height: 100%;
	font-size: 18px;
}

@media (max-width: 719px) {
	html { font-size: 17px; }
}
@media (max-width: 511px) {
	html { font-size: 16px; }
}
@media (max-width: 359px) {
	html { font-size: 15px; }
}


body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	font-family: 'RobotoCondensed', sans-serif;
	font-size: 1em;
	background-color: white;
	color: #000;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}

::-moz-selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #000;
	color: #fff;
	text-shadow: none;
}

form {
	margin: 0;
	padding: 0;
}

table, td, input, textarea, select {
	font-family: inherit;
	font-size: 1em;
}

img, iframe {
	border: 0;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}



/* page */

#page {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
	
	min-height: 100vh;
}

main {
	-webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
}


/* header */

header {
	position: relative;
	padding: 2.5em 2em 1.75em 2em;
	box-sizing: border-box;
	background-color: #000;
	color: white;
}

@media (max-width: 511px) {
	header {
		padding-top: 2em;
	}
}


#logo {
	display: block;
	margin: 0 auto;
	width: 14em;
	max-width: 60%;
	height: auto;
}
#logo img {
	width: 100%;
}


.image-wrap > img {
	opacity: 0;
	transition: 0.3s ease;
}
.image-ready > img {
	opacity: 1;
}

@media (min-width: 1000px) {
		
	.eva {
		margin-left: auto;
		max-width: 22em;
	}

}

@media (min-width: 512px) and (max-width: 999px) {
	.eva {
		margin: 0 auto;
		max-width: 50vw;
	}
}


.tall-width > .columns {
	max-width: 52em;
}

.icon {
	position: relative;
	display: inline-block;
	padding: 0.5em 0 0.5em 2.35em;
	font-size: 1.2em;
}
.icon::before {
	content: "";
	background: url(assets/images/iconmonstr-phone-thin.svg) center center no-repeat;
	background-size: contain;
	width: 1.75em;
	height: 1.75em;
	position: absolute;
	top: 0.3em;
	left: 0;
}

.icon-phone::before {
	background-position: 0.1em 0;
}
.icon-insta::before {
	background-image: url(assets/images/iconmonstr-instagram-11.svg);
	background-size: 95% auto;
}
.icon-wa::before {
	background-image: url(assets/images/iconmonstr-whatsapp-1.svg);
}

.icon-mail::before {
	background-image: url(assets/images/iconmonstr-mail-thin.svg);
	background-size: 90% auto;
}

.icon-termine::before {
	background-image: url(assets/images/iconmonstr-clock-thin.svg);
		background-size: 95% auto;
}
.icon-adr::before {
	background-image: url(assets/images/iconmonstr-location-pin-thin.svg);
}
.icon-p::before {
	background-image: url(assets/images/p.svg);
	background-size: 95% auto;
}
.icon-u::before {
	background-image: url(assets/images/u.svg);
}


.black-bg {
	background-color: black;
	color: white;
}

.black-bg .icon {
	font-size: 1em;
	padding: 0.18em 0 0.25em 2.82em;
}

.black-bg .icon::before {
	font-size: 1.2em;
}

.text-table td {
	border-bottom: 1px #ccc solid;
	padding-top: 0.15em;
	padding-bottom: 0.15em;
}

@media (max-width: 599px) {
	.price-table {
		font-size: 0.9em;
	}
}
@media (max-width: 399px) {
	.price-table {
		font-size: 0.8em;
	}
}

.price-table td:nth-child(2),
.price-table td:nth-child(3) {
	white-space: nowrap;
}
@media (max-width: 999px) {
	#map-frame {
		height: 75vw !important;
	}
}
@media (max-width: 719px) {
	#map-frame {
		height: 100vw !important;
	}
}
@media (max-width: 511px) {
	#map-frame {
		height: 125vw !important;
	}
}
	
	
/* footer */

footer > .wrap {
	margin: 0 auto;
	max-width: 56em;
	padding: 2em;
	box-sizing: border-box;
}
footer {
	position: relative;
	text-align: right;
}
footer ul,
footer li {
	display: inline;
	padding: 0;
	margin: 0;
	list-style-type: none;
}
footer li + li {
	padding-left: 2em;
}

/* breakpoints */

.mobile-only {
	display: none;
}

@media (max-width: 999px) {
	.desktop-only {
		display: none;
	}
	.mobile-only {
		display: block;
	}
}
