/*
=============================================================================
=============================================================================
style_mobile.css
=============================================================================
=============================================================================
*/


/* ==========================================================================
																       BASICS
   ========================================================================== */
*, *::after, *::before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	-webkit-font-smoothing: antialiased;
	height: 100%;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 18px;
	font-weight: 300;
	color: #333;
	background-color: #f5f5f5;
}

body {
	margin: 0;
	padding: 0;
}

.screen650--js {
	display: none;
	visibility: hidden;
}

.nopadding_left_xs {
	padding-left: 0 !important;
}

.nopadding_right_xs {
	padding-right: 0 !important;
}

.padding_left_xs {
	padding-left: 10px !important;
}

.padding_right_xs {
	padding-right: 10px !important;
}


/* ==========================================================================
														           TYPOGRAFIE
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	border-bottom: 1px solid #ccc;
	font-weight: 300;
}

h1 {
	border: none;
	margin-bottom: 40px;
}

h2 {
	padding: 0 0 5px 35px;
	position: relative;
}

h3 {
	border-bottom: none;
	font-weight: 400;
	margin-bottom: 10px;
}

.number {
	width: 28px;
	height: 28px;
	background-color: #aaa;
	display: inline-block;
	text-align: center;
	color: #fff;
	line-height: 28px;
	font-size: 16px;
	font-weight: 600;
	position: absolute;
	left: 0;
	top: 3px;

	-webkit-border-radius: 14px;
	border-radius: 14px;
}

a {
	color: #000;
	text-decoration: none;
	font-weight: 400;
	border-bottom: 1px dotted #999;
}
	a:hover {
		border-bottom: 1px dotted #000;
	}

/* ==========================================================================
																    STRUCTURE
   ========================================================================== */
.wrap {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	position: relative;
}

#container {
	background-color: #fff;
	padding: 20px;
}

#header {
	margin: -20px -20px 0 -20px;
}

#content {

}

.full-width {
	margin: 0 -20px;
}

#footer {
	text-align: center;
	margin: 10px 0 10px 0;
	padding: 0 50px;
	font-size: 14px;
}

ul#languageswitch {
	margin: 10px 0 0 0;
	position: static;
	text-align: right;
	z-index: 1;
}
	ul#languageswitch li {
		margin: 0 0 0 20px;
		padding: 0 0 0 30px;
		display: inline-block;
		position: relative;
	}
		ul#languageswitch li:before {
			content: "";
			position: absolute;
			top: 5px;
			left: 0;
			width: 22px;
			height: 14px;
		}
			ul#languageswitch li.de:before {
				background-image: url(../img/global/de.svg);
				background-repeat: no-repeat;
				background-size: cover;
				background-position: center;
			}

			ul#languageswitch li.en:before {
				background-image: url(../img/global/uk.svg);
				background-repeat: no-repeat;
				background-size: cover;
				background-position: center;
			}







	ul#global_nav {

	}
		ul#global_nav li {
			display: inline-block;
			margin: 0 10px;
		}
			ul#global_nav li a {
				color: #777;
				border: none;
			}
				ul#global_nav li:hover a {
					color: #000;
				}


table tr {
	vertical-align: top;
	text-align: left;
}
	table p {
		margin: 0 0 10px 0;
	}

	table th {
		padding-right: 20px;
		font-weight: 400;
	}


ul {
	margin: 0;
}
	ul li {
		margin: 0 0 5px 20px;
		list-style-type: disc;
	}


.btn {
	padding: 10px;
	color: #333;
	text-decoration: none;
	border: none;
	display: block;
	text-align: center;
	font-weight: 700;
	border: 1px solid #333;

	-webkit-border-radius: 5px;
	border-radius: 5px;

	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-ms-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
}
	.btn:hover {
		background-color: #333;
		color: #fff;
	}





/* ==========================================================================
                                                        C O O K I E A L E R T
   ========================================================================== */
.cookies {
	margin: 0;
	padding: 12px;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;

	font-family: arial;
	font-size: 14px;
	line-height: 20px;
	text-align: center;

	background-color: #5a5a5a;
	color: #fff;

	z-index: 999;
}

.cookie_text {
	margin: 0 5px 0 0;
}

.cookies a.cookie_btn {
	background-color: #303030;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	text-decoration: none;
	border: 1px solid #2b2b2b;
	padding: 5px 9px;

	white-space: nowrap;
	line-height: 25px;

	-webkit-border-radius: 2px;
	border-radius: 2px;

	-webkit-transition: all 250ms ease-in-out;
	-moz-transition: all 250ms ease-in-out;
	-ms-transition: all 250ms ease-in-out;
	-o-transition: all 250ms ease-in-out;
	transition: all 250ms ease-in-out;
}

	.cookies a.cookie_btn:hover {
		background-color: #000;
	}

.cookies.light {
	background-color: #efefef;
	color: #5a5a5a;
}







