/*******************************************************************
	BREAK POINTS
*******************************************************************/
/*
@media screen and (min-width : 460px) {}
@media screen and (min-width : 640px) {}
@media screen and (min-width : 768px) {}
@media screen and (min-width : 960px) {}
@media only screen and (min-width:1024px) {}
*/

/*******************************************************************
	FONTS
*******************************************************************/
@charset 'utf-8';


@font-face {
	font-family: 'Tungsten-Bold';
	src: url('../fonts/tungsten/Tungsten-Bold.eot%3F') format('embedded-opentype'),
		 url('../fonts/tungsten/Tungsten-Bold.woff') format('woff'), 
		 url('../fonts/tungsten/Tungsten-Bold.ttf')  format('truetype'), 
		 url('../fonts/tungsten/Tungsten-Bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Tungsten-Medium';
	src: url('../fonts/tungsten/Tungsten-Medium.eot%3F') format('embedded-opentype'),
		 url('../fonts/tungsten/Tungsten-Medium.woff') format('woff'),
		 url('../fonts/tungsten/Tungsten-Medium.ttf')  format('truetype'),
		 url('../fonts/tungsten/Tungsten-Medium.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'LuckyFellasNarrow';
	src: url('../fonts/luckyfellas/LuckyFellasNarrow.eot%3F') format('embedded-opentype'),
		 url('../fonts/luckyfellas/LuckyFellasNarrow.otf')  format('opentype'),
		 url('../fonts/luckyfellas/LuckyFellasNarrow.woff') format('woff'),
		 url('../fonts/luckyfellas/LuckyFellasNarrow.ttf')  format('truetype'),
		 url('../fonts/luckyfellas/LuckyFellasNarrow.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

/*******************************************************************
	BASICS
*******************************************************************/

*
{
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

html
{
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

body
{
	background: #4a4a49;
	font-size: 1em;
	line-height: 1em;
	color: #4a4a49;
	font-family: 'Trebuchet-MS', sans-serif;
}

h1,
h1.ueberschrift_footer
{
	position: relative;
	font-family: 'Tungsten-Bold';
	color: #4a4a49;
	font-size: 2em;
	line-height: 1em;
	text-transform: uppercase;
	z-index: 3;
}

@media screen and (min-width : 768px) {
	h1,
	h1.ueberschrift_footer
	{
		top:-50px;
	}
}


h1.ueberschrift_footer
{
	color: #eeeeee;
}

h1.underover,
h1.underover_footer
{
	/*position: relative;
	top: -100px;
	font-family: 'LuckyFellasNarrow';
	color: #cfcfce;
	font-size: 4em;
	line-height: 1em;
	margin: 0px 0px -130px 0px;
	text-transform: none;
	z-index: 2;*/
	display: none;
}


h1.underover_footer
{
	color: #888888;
}

h2,
h2.untertitel,
h2.untertitel_footer
{
	font-family: 'Tungsten-Medium';
	color: #4a4a49;
	font-size: 2em;
	line-height: 1em;
	text-transform: uppercase;
	margin: 30px 0px 20px 0px;
}

h2.untertitel,
h2.untertitel_footer
{
	position: relative;
	z-index: 3;
}


h2.untertitel_footer
{
	color: #eeeeee;
}

	h2 > a:link, a:visited
	{
	  font-family: 'Tungsten-Medium';
	  text-decoration: underline;
	  color: #ed4d0b !important;
	}
	
	h2 > a:hover, a:active, a:focus
	{
	  text-decoration: none;
	  outline: none;
	}

@media screen and (min-width : 768px) {
	h1,
	h1.ueberschrift_footer
	{
		font-size: 4em;
		top:0px;
	}
	h1.underover,
	h1.underover_footer
	{
		position: relative;
		display: block;
		top: -100px;
		font-family: 'LuckyFellasNarrow';
		color: #888888;
		font-size: 8em;
		line-height: 1em;
		margin: 0px 0px -130px 0px;
		text-transform: none;
		z-index: 2;
	}
	h2.untertitel,
	h2.untertitel_footer
	{
		position: relative;
		margin: 0px 0px 50px 0px;
		z-index: 3;
	}
}


table
{
	font-size: 1em;
	margin: 10px 0px 10px 0px;
}

hr
{
    border: 0px;
    height: 0px;
    margin: 20px auto;
    width: 60%;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

p, .p
{
	font-family: 'Trebuchet-MS', sans-serif;
	font-size: 0.875em;
	line-height: 1.3em;
	margin: 0px 0px 15px 0px;
}

a:link, a:visited
{
  font-family: 'Trebuchet-MS', sans-serif;
  text-decoration: underline;
  color: #1aa69c;
}

a:hover, a:active, a:focus
{
  text-decoration: none;
  outline: none;
}

b
{
	font-weight: bold;
}

i
{
	font-style: italic;
}

.float_left
{
	float: left;
}

.text_center
{
	text-align: center;
}

.text_right
{
	text-align: right;
}

.not_mobile
{
	display: none;
}

@media only screen and (min-width:768px) {
	.not_mobile
	{
		display: block;
	}
}

/*******************************************************************
	FARBEN
*******************************************************************/


/*******************************************************************
	GRID
*******************************************************************/

[class^='column']
{
  width: 100%;
}

@media screen and (min-width : 768px) {

	[class^='column']
	{
	  float: left;
	}

	.column_25
	{
		width: 25%;
	}

	.column_33
	{
		width: 34%;
	}

	.column_50
	{
		width: 50%;
	}
	
	@media screen and (min-width : 768px) {
		.column_50:nth-child(2n)
		{
			width: 50%;
			padding: 0px 0px 0px 12px;
		}
	}

	.column_66
	{
		width: 66%;
	}

	.column_75
	{
		width: 75%;
	}

	.column_100
	{
		width: 100%;
	}
}

/*******************************************************************
	WARTUNG
/******************************************************************/

#wartung_logo
{}

#wartung_ueberschrift
{
	position: relative;
	margin: auto auto;
	color: #1aa69c;
	text-align: center;
}

/*******************************************************************
	HERO
/******************************************************************/

#container_hero
{
	position: relative;
	
	width: 100%;
	background: rgba(255, 255, 255, 0.8);
}

@media screen and (min-width : 768px) {
	#container_hero
	{
		height: 80vh;
		background: url('../images/hero.jpg') 0px 0px no-repeat;
		background-size: cover;
	}
}

	#wrap_hero
	{
		
	}
	
	
		#logo
		{
			position: absolute;
			background: url('../images/logo_monsterroller.png') 0px 0px no-repeat;
			background-size: 100%;
			width: 100px;
			height: 100px;
			top: 15px;
			left: 5%;
			z-index: 1;
		}
		
		@media screen and (min-width : 768px) {
			#logo
			{
				position: absolute;
				background: url('../images/logo_monsterroller.png') 0px 0px no-repeat;
				width: 200px;
				height: 200px;
				top: 15px;
				left: 5%;
				z-index: 1;
			}
		}
		
		
	
		#ankuendigung
		{
			position: relative;
			width: 50vw;
			height: 50px;
			top: 15px;
			margin: auto auto;
			font-family: 'Tungsten-Medium';
			color: #4a4a49;
			font-size: 1.5em;
			line-height: 1em;
			text-transform: uppercase;
			z-index: 20;
		}
		
		@media screen and (min-width : 768px) {
			#ankuendigung
			{
				top: 80px;
				color: white;
			}
		}
		
		#hero_footer
		{
			position: absolute;
			background: url('../images/hero_wald.svg') 0px 0px no-repeat;
			background-size: cover;
			width: 100%;
			height: 100px;
			bottom: 0px;
			z-index: 1;
		}
		
		#container_infobox {
			/*position: relative;
			display: block;
			*/
			background: rgba(221, 239, 158, 0.8);
			padding: 30px 30px 0px 30px;
			width: auto;
		}
		
		@media screen and (min-width : 768px) {
		
			#container_infobox
			{
				position: absolute;
				width: 350px;
				right: 3vw;
				border-radius: 10px;
				top:20px;
				z-index: 100;
			}
		}
		
			.beschreibung_ueberschrift
			{
				font-weight: bold;
				font-size: 1.2em;
			}
			
			.info_open, 
			.info_closed
			{
				color: #88d228;
				text-align: center;
				margin: 25px 0px 0px 0px;
				font-size: 3em;
			}
			
			.info_closed
			{
				color: #c92727;
			}
		
			.wettericon
			{
				/*position: relative;
				width: 100px;
				height: 100px;
				top: 0px;
				left: 100px;*/
				position: relative;
				display: block;
				width: 100px;
				height: 100px;
				top: 0px;
				margin: 0 auto;

			}
			
			.temperatur
			{
				text-align: center;
			}
		
			.tab_oeffnungszeiten
			{
				margin: 0px 0px 30px 0px;
			}
			
				.oeffnungszeiten_cell1,
				.oeffnungszeiten_ruhetag,
				.oeffnungszeiten_zeiten_am,
				.oeffnungszeiten_bindestrich,
				.oeffnungszeiten_leerraum,
				.oeffnungszeiten_zeiten_pm
				{
					padding: 4px 0px 4px 0px;
					font-size: 0.875em;
					width: 150px;
				}
				
				.oeffnungszeiten_ruhetag
				{
					width: 190px;
				}
				
				.oeffnungszeiten_zeiten_am
				{
					width: 65px;
				}
				
				.oeffnungszeiten_bindestrich
				{
					width: 10px;
					text-align: center;
				}
				
				.oeffnungszeiten_zeiten_pm
				{
					width: 65px;
					text-align: right;
				}

/*******************************************************************
	MENUE
/******************************************************************/

#container_menu
{
	display: none;
	background: white;
}

#burgermenu {
    right: 10px;
    top:10px;
    display:block;
    width:32px;
    height:32px;
    color:#4a4a49;
    border-radius:50%;
    position:absolute;
    z-index:1000;
    text-align:center;
    speak:none;
    font-weight:700;
    cursor:pointer;
    text-indent:-9000px;
    transition:background .3s ease-out 0;
}

#burgermenu:after {
    position: absolute;
    content: '';
    width: 50%;
    height: 2px;
    background: #4a4a49;
    top: 50%;
    margin-top: -1px;
    left: 25%;
    box-shadow: 0 -4px #4a4a49, 0 4px #4a4a49;
}
    

#menu {
	display: none;
}

@media screen and (min-width : 768px) {
	
	#burgermenu {
		display: none;
	}
	
	#container_menu
	{
		display: block;
		position: relative;
		width: 100%;
		height: 100px;
	}

		#wrap_menu
		{
			position: relative;
			width: 1114px;
			height: 40px;
			margin: auto auto;
		}

			#menu
			{
				position: absolute;
				width: 100%;
				height: 40px;
				top: 15px;
				z-index: 5;
				display: block;
			}

				/*#menu_list,*/
				.sf-menu
				{
					position: relative;
					width: 100%;
					left: 0px;
					text-align: center;
				}
}

/*******************************************************************
	MONSTERROLLER
/******************************************************************/

#container_monsterroller
{
	background: #f9f9f9;
	position: relative;
	width: 100%;
	padding: 30px 0px 0px 0px;
}

	#wrap_monsterroller
	{
		position: relative;
		width: 80%;
		margin: auto auto;
	}
		
		.wrap_ueberschrift
		{
			position: relative;
			width: 100%;
			margin: auto auto;
			text-align: center;
		}
	
		#roller
		{
			position: relative;
			background: url('../images/roller.jpg') center center no-repeat;
			background-size: 100% auto;
			width: 100%;
			height: 444px;
			margin: auto auto;
		}
		
		@media screen and (min-width : 768px) {
			#roller {
				height: 544px;
			}
		}
		
		@media screen and (min-width : 1024px) {
			#roller {
				width: 933px;
				height: 744px;
			}
		}
		
/*******************************************************************
	CONTENT
/******************************************************************/

.container_content
{
	position: relative;
	width: 100%;
	padding: 30px 0px 100px 0px;
	overflow: hidden;
	background: #f9f9f9;
}

	.wrap_content
	{
		position: relative;
		width: 80%;
		margin: auto auto;
	}

.container_content_grey
{
	position: relative;
	width: 100%;
	padding: 0px 0px 30px 0px;
	overflow: hidden;
	background: #f9f9f9;
}

@media screen and (min-width : 768px) {
	.container_content_grey
	{
		padding: 0px 0px 130px 0px;
	}
	
}

	@media screen and (min-width : 768px) {
		.wrap_picture,
		.wrap_picture_monsteroller_frau
		{
			background: red;
			float: left;
			width: 30%;
			padding-bottom: 500em;
			margin-bottom: -500em;
		}
	
		.wrap_picture_monsteroller_frau
		{
			background: url("../images/sidebar01.jpg") 0px 0px no-repeat;
			background-size: 100%;
		}
	}

	.wrap_content_grey
	{
		background: #eeeeee;
		padding: 3%;
		width: 100%;
		float: left;
	}
	
	@media screen and (min-width : 768px) {
		
		.wrap_content_grey
		{
			width: 70%;
			background: #eeeeee;
			margin-right: -1px;
			margin-bottom: -500em;
			padding: 100px 100px 500em 100px;
			width: 70%;
			float: left;
		}
		
	}
	
	.content_grey_footer
	{
		position: absolute;
		/*background: url('../images/hero_wald.svg') 0px 0px no-repeat;
		background-size: cover;*/
		width: 100%;
		height: 100px;
		bottom: 0px;
		z-index: 1;
	}

/*******************************************************************
	FORMULARFELDER
/******************************************************************/

::-webkit-input-placeholder {
   color: #4a4a49;
   text-transform: uppercase;
}

:-moz-placeholder { /* Firefox 18- */
   color: #4a4a49;
   text-transform: uppercase;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #4a4a49;
   text-transform: uppercase;
}

:-ms-input-placeholder {
   color: #4a4a49;
   text-transform: uppercase;
}

#form_passwort_vergessen,
#form_warenkorb_checkout
{
	margin: 0px 0px 15px 0px;
}

form a.mm_api_t
{
	color: #3d3d3d;
	border-bottom: 1px solid #dbdbdb;
	display: block;
	width: 100%;
	padding: 10px 0px 10px 0px;
	margin: 0px 0px 0px 20px;
	text-decoration: none;
}

input[type='text'],
input[type='password'],
select
{
	display: block;
	background: #eeefef;
	width: 100%;
	height: 40px;
	padding: 10px;
	margin: 0px;
	font-family: 'Tungsten-Medium';
	font-size: 1.125em;
	border: 1px solid #b8b8b8;
	cursor: auto;
    -webkit-border-radius:0;
    border-radius:0;
	float: left;
}

	.field
	{
		position: relative;
		width: 100%;
		height: 55px;
		font-family: 'Tungsten-Medium';
		text-transform: uppercase;

	}

		.mobile_input
		{
			display: block;
		}

		@media screen and (min-width : 768px)
		{
			.mobile_input
			{
				display: none;
			}
		}

	label
	{
		position: absolute;
		left: 11px;
		top: 0px;
		transition: all .2s linear;
		color: #999;
		font-size: 0.6875em;
	}

	input:invalid + label
	{
		top: 3px;
		opacity: 0;
	}

	input:valid + label
	{
		opacity: 1;
		top: 0;
	}

	input:focus
	{
		outline: none;
	}

	input:focus + label
	{
		color: #1aa69c;
	}

	#input_login_username,
	#input_login_password,
	#input_login_lostpassword,
	#input_lieferung_firmenname,
	#input_rechnung_firmenname,
	#input_lieferung_vorname,
	#input_rechnung_vorname,
	#input_lieferung_nachname,
	#input_rechnung_nachname,
	#input_lieferung_anschrift,
	#input_rechnung_anschrift,
	#input_lieferung_hausnummer,
	#input_rechnung_hausnummer,
	#input_lieferung_anschrift_zusatz,
	#input_rechnung_anschrift_zusatz,
	#input_lieferung_plz,
	#input_rechnung_plz,
	#input_lieferung_ort,
	#input_rechnung_ort,
	#input_lieferung_land,
	#input_rechnung_land,
	#input_lieferung_email,
	#input_lastschrift_kontoinhaber,
	#input_lastschrift_kreditinstitut,
	#input_lastschrift_iban,
	#input_lastschrift_bic,
	#input_user_vorname,
	#input_user_nachname,
	#input_user_kunden_anschrift,
	#input_user_kunden_anschrift_zusatz,
	#input_user_kunden_hausnummer,
	#input_user_kunden_postleitzahl,
	#input_user_kunden_land,
	#input_user_kunden_ort,
	#input_user_email,
	#input_user_kunden_telefon,
	#input_user_passwort,
	#input_user_passwort_confirm,
	#input_user_kunden_firmenname,
	#input_user_kunden_ustid,
	#input_support_name,
	#input_support_email,
	#input_support_telephone
	{
		background: white;
	}

	#input_lieferung_firmenname_error,
	#input_rechnung_firmenname_error,
	#input_lieferung_vorname_error,
	#input_rechnung_vorname_error,
	#input_lieferung_nachname_error,
	#input_rechnung_nachname_error,
	#input_lieferung_anschrift_error,
	#input_rechnung_anschrift_error,
	#input_lieferung_hausnummer_error,
	#input_rechnung_hausnummer_error,
	#input_lieferung_anschrift_zusatz_error,
	#input_rechnung_anschrift_zusatz_error,
	#input_lieferung_plz_error,
	#input_rechnung_plz_error,
	#input_lieferung_ort_error,
	#input_rechnung_ort_error,
	#input_lieferung_land_error,
	#input_rechnung_land_error,
	#input_lieferung_email_error,
	#input_lastschrift_kontoinhaber_error,
	#input_lastschrift_kreditinstitut_error,
	#input_lastschrift_iban_error,
	#input_lastschrift_bic_error,
	#input_user_vorname_error,
	#input_user_nachname_error,
	#input_user_kunden_anschrift_error,
	#input_user_kunden_anschrift_zusatz_error,
	#input_user_kunden_hausnummer_error,
	#input_user_kunden_postleitzahl_error,
	#input_user_kunden_land_error,
	#input_user_kunden_ort_error,
	#input_user_email_error,
	#input_user_kunden_telefon_error,
	#input_user_passwort_error,
	#input_user_passwort_confirm_error,
	#input_user_kunden_firmenname_error,
	#input_user_kunden_ustid_error,
	#input_support_name_error,
	#input_support_email_error,
	#input_support_telephone_error
	{
		background: #f3c1c9;
		border: 1px solid #860519;
	}

	#item_cart_anzahl_input
	{
		width: 40px;
		height: 40px;
		text-align: center;
		border-right: none;
		font-size: 1.5em;
	}

	@media screen and (min-width : 768px)
	{
		#item_cart_anzahl_input
		{
			width: 50px;
			height: 70px;
			text-align: center;
			border-right: none;
			font-size: 1em;
		}
	}

	#artikel_suchen
	{
		background: #eeefef url('https://monsterroller.de/images/icon_search.svg') calc(100% - 5px) 5px no-repeat;
		background-size: 29px;
		cursor: auto;
	}

	#addtocart_input
	{
		position: relative;
		background: white;
		width: 50px;
		height: 50px;
		top: -19px;
		left: -14px;
		border: 2px solid #ea8916;
		border-right: none;
		font-family: 'Tungsten-Bold';
		text-align: center;
		color: #c6c7c7;
		font-size: 2rem;
		padding: 1px 0px 0px 0px;
		cursor: auto;
	}

	#input_gutschein
	{
		background: white;
		width: 60%;
		border-right: none;
		cursor: auto;
	}

input[type='submit'],
button
{
	display: inline-block;
	background: #1aa69c;
	height: 40px;
	padding: 10px;
	margin: 0px;
	color: white;
	border: 0px;
	float: right;
	font-family: 'Tungsten-Bold';
	font-size: 1.125em;
	line-height: 0.5em;
	border-radius: 0;
	cursor: pointer;
}

input[type='submit']:hover,
button:hover
{
	background: #18978e;
}

	.checkout_button_forward
	{
		background: #ea8916;
		width: 50%;
		height: 50px;
		text-transform: uppercase;
		line-height: 0.9em;

	}

	@media screen and (min-width : 768px)
	{
		.checkout_button_forward
		{
			background: #ea8916;
			width: 50%;
			height: 40px;
			text-transform: uppercase;
			line-height: 0.5em;
		}
	}

	.checkout_button_forward:hover
	{
		background: #db8014;
	}

	.checkout_button_backward
	{
		background: #3c3c3b;
		width: 50%;
		height: 50px;
		text-transform: uppercase;
		line-height: 0.9em;
	}

	@media screen and (min-width : 768px)
	{
		.checkout_button_backward
		{
			background: #3c3c3b;
			width: 50%;
			height: 40px;
			text-transform: uppercase;
			line-height: 0.5em;
		}
	}

	.checkout_button_backward:hover
	{
		background: #333;
	}

	@media screen and (min-width : 768px)
	{
		.checkout_button_forward
		{
			width: 180px;
		}

		.checkout_button_backward
		{
			width: 180px;
		}
	}

	#submit_gutschein
	{
		width: 40%;
		text-transform: uppercase;
	}

	.item_cart_anzahl_submit
	{
		position: absolute;
		width: 40px;
		height: 40px;
		top: 0px;
		right: 40px;
	}

	.item_cart_anzahl_loeschen
	{
		position: absolute;
		width: 40px;
		height: 40px;
		top: 0px;
		right: 0px;
	}

	@media screen and (min-width : 768px)
	{
		.item_cart_anzahl_submit
		{
			position: absolute;
			width: 50px;
			height: 35px;
			top: 0px;
			right: 0px;
		}

		.item_cart_anzahl_loeschen
		{
			position: absolute;
			width: 50px;
			height: 35px;
			top: 35px;
			right: 0px;
		}
	}

	.button_payment
	{
		position: relative;
		background: #ea8916;
		text-transform: uppercase;
		text-align: center;
		margin: 10px 0px 0px 0px;
		float: none;
		font-size: 1.5em;
		display: inline-block;
	}

	.button_payment:hover
	{
		background: #db8014;
	}

input[type='checkbox'],
input[type='radio']
{
	display: block;
	-webkit-appearance: checkbox;
}

textarea
{
	height: 75px;
	padding: 10px;
	font-family: 'Tungsten-Medium';
	font-size: 18px;
	background: white;
	cursor: auto;
	width: 100%;
	margin: 1% 0;
	float: left;
	border: 1px solid #b8b8b8;
    -webkit-border-radius:0;
    border-radius:0;
}

	#support_message
	{
		height: 150px;
		margin: 0px;
	}

/*******************************************************************
	FOOTER
/******************************************************************/

#container_footer
{
	position: relative;
	background: url('../images/footer_wald.svg') 0px 0px no-repeat;
	width: 100%;
	height: 380px;
	/*top: -100px;*/
	top: -30px;
	z-index: 1;
}

	#wrap_footer
	{
		position: absolute;
		width: 80%;
		top: 150px;
		margin: 0px 0px 0px 10%;
	}
	
		
	
		#socialmedia
		{
			position: relative;
			width: 80%;
			height: 60px;
			margin: 0px auto 50px auto;
		}
		
			#list_socialmedia
			{
				width: 100%;
				height: 60px;
			    text-align:center;
			}
			
				.item_socialmedia,
				.item_socialmedia_dark,
				.item_socialmedia_rwb,
				.item_socialmedia_rwb_dark
				{
					background-image: url('../images/socialicons/facebook.svg');
					background-size: 60px;
					background-position: 0px 0px;
					background-repeat: no-repeat;
					width: 60px;
					height: 60px;
					display: inline-block;
					margin: 0px 10px 0px 10px;
				}
				
				.item_socialmedia_dark
				{
					background-position: 0px -60px;
				}
				
				.item_socialmedia_rwb
				{
					background-size: auto;
					background-position: 0px 0px;
					background-repeat: no-repeat;
					width: 68px;
				}
				
				.item_socialmedia_rwb_dark
				{
					background-position: 0px -50px;
				}
				
					.socialmedia_facebook
					{
						background-image: url('../images/socialicons/facebook.svg');
					}
				
					.socialmedia_twitter
					{
						background-image: url('../images/socialicons/twitter.svg');
					}
				
					.socialmedia_googleplus
					{
						background-image: url('../images/socialicons/googleplus.svg');
					}
				
					.socialmedia_instagram
					{
						background-image: url('../images/socialicons/instagram.svg');
					}
				
					.socialmedia_pinsterest
					{
						background-image: url('../images/socialicons/pinterest.svg');
					}
				
					.socialmedia_rwb
					{
						background-image: url('../images/socialicons/rwb.png');
					}
				
				.item_socialmedia:hover,
				.item_socialmedia_rwb:hover
				{
					background-position: 0px -60px;
				}
				
				.item_socialmedia_dark:hover
				.item_socialmedia_rwb_dark:hover
				{
					background-position: 0px -60px;
				}
				
					.socialmedia_link
					{
						display: block;
						width: 60px;
						height: 60px;
					}
	
		#copyright
		{
			color: #eeeeee;
			text-align: center;
		}
		
		@media screen and (min-width : 768px) {
			#copyright
			{
				text-align: right;
			}
		}

	
/*******************************************************************
	HAMBURGER
/******************************************************************/

.hamburger
{
	position: relative;
	background: none;
	width: 96px;
	height: 96px;
	top: 16px;
	padding: 0;
	margin: 0px 8px 0px 0px;
	display: block;
	overflow: hidden;
	z-index: 2;
	float: right;
	font-size: 0;
	text-indent: -9999px;
	appearance: none;
	cursor: pointer;
	transition: background 0.3s;
	zoom: 0.6;
	color: #4a4a49;
}

	.hamburger span
	{
		display: block;
		position: absolute;
		top: 44px;
		left: 18px;
		right: 18px;
		height: 8px;
		background: #4a4a49;
	}

	.hamburger span::before,
	.hamburger span::after
	{
		position: absolute;
		display: block;
		left: 0;
		width: 100%;
		height: 8px;
		background-color: #4a4a49;
		content: '';
		transition-duration: 0.3s, 0.3s;
		transition-delay: 0.3s, 0s;
	}

	.hamburger span::before
	{
		top: -20px;
		transition-property: top, transform;
	}

	.hamburger span::after
	{
		bottom: -20px;
		transition-property: bottom, transform;
	}

	.hamburger.is-active span
	{
	  background: none;
	}

	.hamburger.is-active span::before
	{
	  top: 0;
	  transform: rotate(45deg);
	}

	.hamburger.is-active span::after
	{
	  bottom: 0;
	  transform: rotate(-45deg);
	}

	.hamburger.is-active span::before,
	.hamburger.is-active span::after
	{
	  transition-delay: 0s, 0.3s;
	}

@media only screen and (min-width:768px) {
	.hamburger
	{
		display: none;
	}
}


/*******************************************************************
	GOOGLE MAPS
*******************************************************************/

#googlemaps,#gmap-canvas,#map-canvas{
	position:relative;
    display: block;
	width:100%;
	height:350px;
}
@media only screen and (min-width : 768px) {
	#googlemaps,#gmap-canvas,#map-canvas{
		height:350px;
	}
}

.mapbox{width:100%}
.mapcode{margin-bottom:10px}
.gmnoprint{opacity:.1!important}
.gmnoprint:hover{opacity:.8}


/*******************************************************************
	WYSIWYG - STYLES (NICHT LOESCHEN!)
*******************************************************************/

.wysiwyg_frame_left,
.wysiwyg_frame_right
{
	position: relative;
	width: 160px;
	height: 160px;
	overflow: hidden;
	clear: both;
	border: 2.5px solid white;
	-webkit-box-shadow: 0px 0px 4.5px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 0px 4.5px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 0px 4.5px 0px rgba(50, 50, 50, 0.75);
}

.wysiwyg_frame_left,
.wysiwyg_frame_right
{
	display: inline-block;
	margin: 10px;
	float: left;
}

	.wysiwyg_frame_right
	{
		float: right;
	}

.wysiwyg_gallery
{
	list-style: none;
}

	.wysiwyg_gallery > li:before
	{
		padding-top: 100%;
	}


	.wysiwyg_gallery > li
	{
		position: relative;
		float: left;
		width: 48%;
		max-height: 238px;
		margin: 0 4% 4% 0;
		overflow: hidden;
		border: 2.5px solid white;
		-webkit-box-shadow: 0px 0px 4.5px 0px rgba(50, 50, 50, 0.75);
		-moz-box-shadow:    0px 0px 4.5px 0px rgba(50, 50, 50, 0.75);
		box-shadow:         0px 0px 4.5px 0px rgba(50, 50, 50, 0.75);
	}

	@media only screen and (max-width : 767px) {
		.wysiwyg_gallery > li:nth-child(2n+2)
		{
			margin-right: 0;
		}
	}

	/* Tablets (Portrait) ----------- */
	@media only screen and (min-width : 768px) {
		.wysiwyg_gallery > li
		{
			position: relative;
			float: left;
			width: 24%;
			max-height: 238px;
			margin: 0 1.33% 1.33% 0;
		}
		.wysiwyg_gallery > li:nth-child(4n+4)
		{
			margin-right: 0;
		}
	}

		.dummy
		{
		    padding-top: 100%;
		}

			a.wysiwyg_gallery_frame
			{
				position: absolute;
			    top: 0;
			    bottom: 0;
			    left: 0;
			    right: 0;
			    text-align:center;
			    font: 0/0 a;
			}

			a.wysiwyg_gallery_frame:before
			{
				content: ' ';
			    display: inline-block;
			    vertical-align: middle;
			    height: 100%;
			}

				a.wysiwyg_gallery_frame img
				{
					position: absolute;
					top: 0;
					bottom: 0;
					left: 0;
					right: 0;
					vertical-align: middle;
					display: inline-block;
					filter: saturate(50%);
					-webkit-filter: saturate(50%);
					-moz-filter: saturate(50%);
					-o-filter: saturate(50%);
					-ms-filter: saturate(50%);
				}

				a.wysiwyg_gallery_frame img:hover
				{
					filter: saturate(100%);
					-webkit-filter: saturate(100%);
					-moz-filter: saturate(100%);
					-o-filter: saturate(100%);
					-ms-filter: saturate(100%);
				}

	.wysiwyg_gallery > li:nth-child(4n)
	{
		margin-right: 0;
	}

	.wysiwyg_table
	{
		background: #f2f2f2;
		width: 100%;
		font-size: 0.75em;
		color: #3c3c3b;
		line-height: 1.7em;
		text-align: left;
		text-align: justify;
		border: 1px solid #5fbec9;
	}

	@media only screen and (min-width : 768px) {
		.wysiwyg_table
		{
			font-size: 1em;
		}
	}

		.wysiwyg_tablerow:first-child
		{
			background: #5fbec9!important;
			border-bottom: 1px solid #97ab97!important;
			font-family: Helvetica, sans-serif;
		}

		.wysiwyg_tablerow:nth-child(odd)
		{
			background: rgba(255,255,255,0.3)
		}
		.wysiwyg_tablerow:nth-child(even)
		{
			background: rgba(255,255,255,0.6)
		}

			.wysiwyg_tabledata
			{
				padding: 10px;
			}

.wysiwyg_olist,
.wysiwyg_ulist
{
	margin: 30px;
	clear: both;
}

	.wysiwyg_olist > .wysiwyg_listitem,
	.wysiwyg_ulist > .wysiwyg_listitem
	{
		list-style: square;
		font-family: 'Trebuchet-MS', sans-serif;
		font-size: 1em;
		line-height: 1.7em;
		margin: 0 0 0 30px;
	}

	.wysiwyg_olist > .wysiwyg_listitem
	{
		list-style: decimal;
	}

		.wysiwyg_olist > .wysiwyg_listitem > span,
		.wysiwyg_ulist > .wysiwyg_listitem > span
		{
		}

.wysiwyg_info,
.wysiwyg_wichtig
{
	background: #fffacc;
	width: 100%;
	padding: 20px 20px 20px 20px;
	margin: 0px 0px 15px 0px;
	font-size: 0.875em;
	line-height: 1.7em;
	color: #ddb103;
	border: 1px solid #ffe400;
}

.wysiwyg_wichtig
{
	background: #f2bebe;
	border: 1px solid #df5a5a;
	color: #df5a5a;
}

	.wysiwyg_info > .wysiwyg_olist,
	.wysiwyg_info > .wysiwyg_ulist,
	.wysiwyg_wichtig > .wysiwyg_olist,
	.wysiwyg_wichtig > .wysiwyg_ulist
	{
		margin: 0px 0px 0px 0px;
	}

		.wysiwyg_info > .wysiwyg_olist > .wysiwyg_listitem,
		.wysiwyg_info > .wysiwyg_ulist > .wysiwyg_listitem,
		.wysiwyg_wichtig > .wysiwyg_olist > .wysiwyg_listitem,
		.wysiwyg_wichtig > .wysiwyg_ulist > .wysiwyg_listitem
		{
			font-size: 1em;
		}

/*******************************************************************
	AUTOSUGGEST
*******************************************************************/

.suggestions
{
position: absolute;
z-index: 100;
}

.suggestions .suggest_item
{
	background: rgba(255,255,255,0.95);
	width: 100%;
	top: 0px;
	font-size: 1.25em;
	z-index: 1000;
	border: 1px solid #b8b8b8;
	border-bottom: 0;
	font-family: 'Tungsten-Medium';
}

.suggestions .suggest_item.first
{
	border-top: 0;

}

.suggestions .suggest_item.last
{
	border-bottom: 1px solid #b8b8b8;
}

.suggestions .suggest_item.selected, .suggestions .suggest_item.selected .description
{

	background: rgba(27, 166, 157, 0.85);
	cursor: pointer;
	display: block;
}

.suggestion_title
{
	color: #3c3c3b;
	text-transform: uppercase;
	font-size: 0.8em;
	line-height: 1.5em;
	text-align: left;
	padding: 10px 0px 0px 0px;
	margin: 0px 0px 0px 70px;
}

.suggestions .suggest_item .thumbnail
{
	position: relative;
	width: 50px;
	height: 50px;
	top: 0px;
	background-color: transparent;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 45px 45px;
	margin: 0px 10px -3px 0px;
	float: left;
	border-radius: 1px;
}

#nachrichten_username
{
	position: relative;
	width: 100%;
	top: 0px;
	margin: 0px 0px 0px 0px;
	font-size: 0.75em;
}
