@charset "utf-8";
/* CSS Document */

/* ALLGEMEINES */
* {
	font-family: 'Didact Gothic', sans-serif;
}

html {
	min-height: 100%;
}

body {
	background: linear-gradient(to bottom, white 10%, #cecece 100%);
}

.container {
	margin: 10px auto;
}

/* HEADER */
/* LANGUAGE */
#language {
	background: rgba(245,142,35,0.5);
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	
	display: inline;
	padding: 200px 10px 10px 10px;
	margin: 5px 0 0 10%;
}

#language img {
	margin: 5px 2px 10px 2px;
	width: 50px;
	height: 25px;
	
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
}

/* LOGO */
#logo {
	text-align: right;
	padding: 0px 15% 20px 0px;
	background: none;
}

#logo img {
	width: 25%;
	height: 25%;
	
}


/* NAVBAR */
#static-navbar,
#sticky-navbar,
#small-navbar {
	display: block;
	
	background: rgba(245,142,35,1);
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
	border: none;
	border-radius: 0;
	margin-bottom: 0;
	z-index: 10;
	
	text-align: center;
}

#small-navbar {
	height: 0;
	width: 0;
	overflow: hidden;
	display: none;
}

#static-navbar > ul,
#sticky-navbar > ul,
#small-navbar > ul {
	display: inline-block;
	float: none;
}

#static-navbar li,
#static-navbar li a,
#sticky-navbar li,
#sticky-navbar li a,
#small-navbar li,
#small-navbar li a {
	color: white;
	background: rgba(245,142,35,1);
}

#static-navbar li a,
#sticky-navbar li a,
#small-navbar li a {
	font-size: 140%;
}

#static-navbar li a:hover,
#static-navbar li a:focus,
#sticky-navbar li a:hover,
#sticky-navbar li a:focus,
#small-navbar li a:hover,
#small-navbar li a:focus {
	text-decoration: underline;
	color: white;
}

#static-navbar .divider,
#sticky-navbar .divider {
	background: white;
	height: 2px;
	width: 76%;
}

.divider-vertical {
	height: 30px;
	margin: 10px;
	border-left: 1px solid #FFF;
	border-right: 1px solid #FFF;
}

.dropdown-menu {
	background: rgba(245,142,35,0.75);
	border: none;
	text-align: center;
}

.navbar .active {
	text-decoration: underline;
}

.navbar .inactive {
	color: #cecece !important;
}

/* MULTI-LEVEL */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 15px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/* CAROUSEL */
#my-carousel {
	margin-top: -10px;
}

span.glyphicon.glyphicon-chevron-left::before,
span.glyphicon.glyphicon-chevron-right::before {
	color: rgba(245,142,35,1);
}

ol.carousel-indicators > li {
	border-color: rgba(255,255,255,0.75);
	background-color: rgba(255,255,255,0.75);
}

ol.carousel-indicators > li.active {
	border-color: rgba(245,142,35,0.75);
	background-color: rgba(245,142,35,0.75);
}

/* CONTENT */
.flex {
	display: flex;
	align-items: strech;
}

.flex2 {
	display: flex;
	align-items: center;
	
}
.flex-test {
	display: flex;
	align-items: top
	
}
.col-lg-6,
.col-lg-7,
.col-lg-5,
.col-lg-12 {
	margin: 5px;
	padding: 5px 20px;
}

.col-lg-12 {
	width: 100%;
}

img {
	width: 100%;
	text-align: center;
}

/* Allgemein */
h2 {
	color: #15bc17;
	padding-bottom: 15px;
}

h4 {
	color: #ffffff;
	font-size: 120%;
}

p,
li {
	font-size: 120%;
}

/* orange */
.orange {
	background-color: rgba(245,142,35,1);
	border-radius: 5px;
}

.orange h2,
.orange h3 {
	color: #ffffff;
	padding-bottom: 15px;
}

.orange p,
.orange li {
	color: #636363;
}

.orange a {
	color: #ffffff;
}

.orange span {
	font-size: 140%;
}

/* center */
.center {
	text-align: center;
	width: 100%;
}

/* right */
.right {
	text-align: right;
}

/* small Text */
.small_text {
	font-size: 100%;
}

/* Embed */

embed,
iframe {
	width: 100%;
	height: 1200px;
	overflow: visible;
}

/* FORMULAR */
.TTWForm{
 	width: 100%;
}

/** Field Styles **/
.TTWForm .field, #form-title.field {
    padding-bottom: 12px;
    padding-top: 12px;
    position: relative;
    clear: both;
}

.TTWForm .field:first-child{
    padding-top:0;
}

.TTWForm .field:last-child{
    padding-bottom:0;
}
	
/** Field Widths */
.f_25 {
    width: 21%;
    display: inline;
    float: left;
    margin-left: 2%;
    margin-right: 2%; /* jquery ui resize grid hack - not sure why */
}

.f_50 {
    width: 46%;
    display: inline;
    float: left;
    margin-left: 2%;
    margin-right: 2%; /* jquery ui resize grid hack - not sure why */
}

.f_75 {
    width: 71%;
    display: inline;
    float: left;
    margin-left: 2%;
    margin-right: 2%; /* jquery ui resize grid hack - not sure why */
}

.f_100 {
    width: 96%;
    display: inline;
    float: left;
    margin-left: 2%;
    margin-right: 2%; /* jquery ui resize grid hack - not sure why */
}


.TTWForm input, .TTWForm textarea, .TTWForm select, div.selector, div.uploader  {
    width:100%;
	font-family: 'Didact Gothic', sans-serif;
    font-size: 120%;
    padding: 6px 0;
    color: #000000;
    border: 1px solid rgba(245,142,35,1);
    outline: none;
    display: inline-block;
    position: relative;
    z-index: 2;
}

.TTWForm textarea {
    overflow: hidden;
}

.TTWForm label {
	font-family: 'Didact Gothic', sans-serif;
	font-weight: inherit;
    color: #000000;
    text-align: left;
    font-size: 120%;
    margin-bottom:5px;
    display:inline-block;
}

.TTWForm .submit input {
    text-align: center;
	font-family: 'Didact Gothic', sans-serif;
    font-size: 12px;
    text-decoration: none;
    display: block;
    margin: 12px -2px 12px 0;
    text-align: center;
    float: right;
    padding: 6px 12px;
    height: 28px;
    cursor: pointer;
    min-width: 96px;
    width:auto;
    background: rgba(245,142,35,1);
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
    font-weight: inherit;
    color: #ffffff;
	border-radius: 5px;
}

.TTWForm .submit input:hover {
	background: rgba(245,142,35,0.5);
}

/* GOOGLE MAPS */
#googlemaps {
	border: none;
	min-width: 500px;
	width: 100%;
	min-height: 500px;
	height: 100%;
}

/* FOOTER */
#footer {
	background-color: #cecece;
}

#footer .container {
	margin: auto;
	
	display: flex;
	align-items: flex-end;
	flex-direction: row;
	justify-content: space-between;
}

#footer .container div {
	margin: 10px 5px 30px 5px;
}

#footer a {
	color: #15bc17;
}

#impressum {
	font-size: 90%;
}

/* LINE */
#line {
	width: 100%;
	height: 25px;
	background: rgba(245,142,35,1);
	-webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
	margin-bottom: 10px;
}

/* TOP */
#top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	background: rgba(245,142,35,1);
	border-radius: 1000px;
	padding: 4px 0;
}

#top a {
	color: #15bc17 !important;
	width: 100%;
	height: 100%;
	padding: 8px;
	font-size: 120%;
}

/* MEDIA */
@media (max-width: 1200px) {
	#static-navbar li a,
	#sticky-navbar li a {
		font-size: 100%;
	}
}

@media (max-width: 990px) {
	#static-navbar li a,
	#sticky-navbar li a {
		font-size: 85%;
	}
}

@media (max-width: 900px) {
	#small-navbar {
		height: auto;
		width: auto;
		overflow: visible;
		display: block;
	}
	
	#static-navbar,
	#sticky-navbar {
		width: 0;
		height: 0;
		overflow: hidden;
		display: none;
	}
}

@media (max-width: 767px) {
	 .divider-vertical {
		height: 0;
	}
	
	.container.flex {
		flex-direction: column;
		align-items: center;
	}
	
	.container.flex2 {
		flex-direction: column;
		align-items: center;
	}
	
	#footer .container {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.notdisplay {
		display: none;
	}
}

@media (max-width: 600px) {
	#my-carousel,
	#googlemaps {
		display: none;
	}
}


#InfoBox2 {
background-color: #FFFFFF;
width: 300px;
padding: 10px;
margin: 0px;
border: 3px solid #009F00;
font-family: Arial,Helvetica,sans-serif;
font-size: 13px;
line-height: 130%;
color: #5F5F5F;
}