/*	Farben
*******************************************************************************/
/*
 * #3D3C3D / Schwarz
 * #1B1C73 / Blau [ALT]
 * #68724F / Gruen
 *
 */





/*	Global-Definitionen
*******************************************************************************/
* {
	margin: 0;
	padding: 0;
	outline: none;
	border: none;
}

html, body {
	height: 100%;
}

html {
	overflow-y: scroll;
}

body {
	background-color: #FFFFFF;
	/*font-family: 'PT Sans', sans-serif;*/
  font-family: 'Fira Sans', sans-serif;
	color: #3D3C3D;
	font-size: 1em;
}

h1 {
	color: #68724F;
  text-align: center;
	font-size: 56px;
	font-weight: lighter;
	letter-spacing: 0.02em;
	_margin-bottom: 36px;
}

h2 {
	color: #878787;
	text-align: left;
	font-size: 32px;
	line-height: 44px;
	font-weight: lighter;
}

.h_anker {
  display: block;
  visibility: hidden;

  height: 120px; /*=content: margin-top*/
  margin-top: -120px; /*=content: -margin-top*/
}

.text-standard {
  font-size: 18px;
 	line-height: 29px;
}

.text-small {
	font-size: 13px;
}

li {
	list-style-type: none;
}

a[href] {
	color: #68724F;
	text-decoration: none;
}

a[href]:hover {
	color: #333333;
}


.clearer {
	clear: both;
	visibility: hidden;
	height: 0;
}

.corners {
  -webkit-border-bottom-right-radius: 3px;
  -webkit-border-bottom-left-radius: 3px;
  -moz-border-radius-bottomright: 3px;
  -moz-border-radius-bottomleft: 3px;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.shadow {
  -moz-box-shadow: 0pt 4px 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0pt 4px 6px rgba(0, 0, 0, 0.3);
  box-shadow: 0pt 4px 6px rgba(0, 0, 0, 0.3);
}

/*	Layout-Definitionen
*******************************************************************************/
#website {
}


/*  Header
------------------------------------------------------------------------------*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: #68724F;
	z-index: 500;
	_transition: background-color 2s ease-out;
  -moz-box-shadow: 0pt 6px 8px rgba(0, 0, 0, 0.4) !important;
  -webkit-box-shadow: 0pt 6px 8px rgba(0, 0, 0, 0.4) !important;
  box-shadow: 0pt 6px 8px rgba(0, 0, 0, 0.4) !important;
}

#header:hover {
  background-color: #68724F;
}

#logo {
  position: absolute;
  float: left;
  top: 15px;
  margin-left: 4%;
}

#logo img {
  display: block;
  position: relative;
  float: left;
	height: 70px;
}


/*  Navigation
------------------------------------------------------------------------------*/
/*  Desktop-Version-----------------------------------------------------------*/
#navigation-a {
  position: relative;
  display: block;
  width: 70%;
  height: 54px;
  margin-right: 4%;
  margin-top: 24px;
  float: right;
	letter-spacing: 0.2em;
	overflow: hidden;
}

#navigation-a > ul li {
  float: right;
}

#navigation-a > ul li a {
  display: block;
  position: relative;
  float: left;
  padding: 12px 15px;
  margin: 4px;
  font-size: 18px;
  font-weight: bolder;
  letter-spacing: 0.02em;
  background-color: #68724F;
  border: 1px solid #FFFFFF;
  transition: 0.5s ease-out;
  -webkit-border-radius: 3%;
  -moz-border-radius: 3%;
  border-radius: 3%;

}

#navigation-a > ul li a[href] {
  color: #FFFFFF;
}

#navigation-a > ul li a[href]:hover {
  opacity: 0.7;
}

#navigation-a > ul li a.active,
#navigation-a > ul li a.active:hover {
  background-color: #FFFFFF;
  color: #68724F;
}

/*  Mobil-Version-------------------------------------------------------------*/
#navigation {
	position: absolute;
	right: 0;
	top: 13px;
	margin: 0 3% 2% 2%;
	padding: 0 1%;
	font-size: 28px;
	font-weight: bolder;
	
	text-align: right;
	_border: 1px solid #FFFFFF;

 	display: none;
}

#navigation.active {
	background: rgb(250, 250, 250);
	background: rgba(250, 250, 250, 0.6);
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99FFFFFF, endColorstr=#99FFFFFF);
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99FFFFFF, endColorstr=#99FFFFFF)";
	border: 1px solid #68724F;
}

#navigation ul {
	display: none;
	float: right;
	margin-top: 10px;
	padding-bottom: 10px;
	text-align: left;
}

#navigation.active ul {
	display: block;
}

#navigation li { 
	margin: 0 25px;
	border-bottom: 1px solid #878787;
}

#navigation li:last-of-type {
	border-bottom: none;
}

#navigation li a {
	display: block;
	padding: 12px 0;
}

#navigation li a[href] {
	color: #666666;
}

#navigation li a[href]:hover {
	color: #68724F;
}

#navigation li a.active {
  color: #68724F;
}

#btn-open {
	cursor: pointer;
}

#btn-open i {
	_text-transform: uppercase;
	color: #FFFFFF;
	font-size: 58px;
	line-height: 58px;
	font-weight: normal;
  	float: right;
  	_float: left;
}


/*  Top-Button----------------------------------------------------------------*/
#top-button {
  position: fixed;
  display: block;
  padding: 7px 9px 9px 9px;
  color: #68724F;
  border: 1px solid #68724F;
  background-size: 100% 100%;
  -webkit-border-radius: 12%;
  -moz-border-radius: 12%;
  border-radius: 12%;
  z-index: 10000;
  cursor: pointer;
  right: 4%;
  bottom: 5%;
  opacity: 0;
}


/*  Content
------------------------------------------------------------------------------*/
#content {
	position: relative;
	display: block;
 	float: left;
	width: 100%;
	margin-bottom: 3%;
 	margin-top: 100px;
}

.image-standard {
	position: relative;
	display: block;
	max-width: 100%;
	height: auto !important;
}

#content ul {
 	padding-left: 18px;
}

#content ol {
  padding-left:22px;
}

#content ul li {
 	list-style-type: disc;
 	padding-left: 6px;
}

#content ol li {
	list-style-type:decimal;
  padding-left:12px;
}


/*	OnePage
*******************************************************************************/
/*  Sektion-Artikel
------------------------------------------------------------------------------*/
.section {
	position: relative;
	display: block;
  float: left;
	height: 100%;
  width: 100%;
  margin-bottom: 3%;
}

.banner {
	position: relative;
	width: 100%;
	background-color: #68724F;
  overflow: hidden;
}

.banner img {
	position: relative;
	display: block;
	width: 100%;
  margin: -2.8% 0 -8% 0;
}

#infoband {
	position: relative;
	width: 92%;
	_background-color: #878787;
	background-color: #68724F;
	margin: 0;
	padding: 0 4% 0 4%;
	color: #FFFFFF;
	letter-spacing: 0.04em;
	font-size: 32px;
	line-height: 52px;
	 _text-align: right;
  float: left;
  max-height: 52px;
  overflow: hidden;
}

#infoband ul {
  padding: 0;
}

#infoband > ul li {
  float: left;
  border-right: 4px solid #FFFFFF;
  padding: 0 2%;
  list-style-type: none;
  max-width: 46%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#infoband > ul li:first-of-type {
  padding-left: 0;
}

#infoband > ul li:last-of-type {
  border-right: none;
}

#infoband a[href] {
  color: #FFFFFF;
	transition: color 0.5s ease-out;
}

#infoband a[href]:hover {
	_color: #68724F;
	color: #C5C5C5;
}

.article {
  width: 92%;
 	margin: 4% auto 2% auto;
}

.opfuss {
  text-align: center;
}


/*  Sektion-Fuss
------------------------------------------------------------------------------*/
.sectionborder {
	position: relative;
	display: block;
	width: 33%;
  height: 2px;
  margin: 0 auto 5%;	
  background-color: #C5C5C5;
}

.sectionfoot {
	position: relative;
	display: block;
	_text-align: center;
}

.sectionfoot img {
	position: relative;
	max-width: 12%;
	max-height: 60px;
}

.sectionfoot.left img {
  float: left;
  margin-left: 4%;
}

.sectionfoot.right img {
  float: right;
  margin-right: 4%;
}


/*	Einzelseiten
*******************************************************************************/
/*  Allgemein
------------------------------------------------------------------------------*/
.einzel {
  margin-top: 6% !important;
}

.einzel h1 {
  text-align: left;
}


/*	Modul-/Spezial-Definitionen
*******************************************************************************/
/*  Module mit Formular
------------------------------------------------------------------------------*/
.field-table {
	position: relative;
	width: 100%;
	margin-bottom: 8px;
	margin: 0 auto;
}

.form-row {
	position: relative;
	_float: left;
	_width: 48.5%;
	_max-width: 680px;
	width: 100%;
	max-width: 500px;
	margin-bottom: 15px;
}

.form-row.left {
	_margin-right: 3%;
}

.form-row.right {
}

.form-row .g-recaptcha {
	margin: 20px 0;
}

.form-text-cell,
.form-label-cell,
.form-field-cell {
	position: relative;
	display: block;
	margin: 5px 0;
	width: 100%;
}

.form-text-cell {
	margin: 15px 0;
}

.form-label-cell {
}

.form-field-cell {
}

.form-warning {
	color:#B63533;
}

input[type="text"],
select, 
.form-checkgroup,
textarea {
	-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
	background-color: #EDEDED;		
  font-family: 'Fira Sans', sans-serif;
	width: 98%;
	padding: 3px 1%;
	font-size: 16px;
}

select {
	width: 100%;
}

.form-checkgroup label {
	margin-left: 6px;
}

.submit-button {
  font-family: 'Fira Sans', sans-serif;
	margin: 12px 0;
	vertical-align:middle;
	text-align:center;
	height: 40px;
	width: 50%;
	max-width: 250px;
	font-size:16px;
	color:#3D3C3D;
	background-color:#EDEDED;
	cursor:pointer;
	border: none;
   	-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.submit-button:hover {
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.form-linie {
	display:block;
	width:100%;
	height:1px;
	margin: 1% 0;
	border-bottom:1px solid #878787;
}


/*  Modul 14 - Tabelle
------------------------------------------------------------------------------*/
.table-border {
  border-bottom: 1px dashed #FFFFFF;
}

.table {
	position: relative;
	display: block;
	width: 100%;
	_text-align: center;
}

.table .header {
	background-color: #666666;
	color: #FFFFFF;
	font-weight: normal;
}

.table .header .col {
	position: relative;
	float: left;
	padding: 0.5%;
}

.table .row .col {
	position: relative;
	float: left;
	padding: 0.5%;
}	

.table p {
	word-wrap: break-word;
  overflow-wrap: break-word; 
}

.table .row .label {
	display: none;
	font-weight: bold;
}

.row:nth-child(odd) .inner-row {
	background-color: #EDEDED;
}

.row:nth-child(even) .inner-row {
	background-color: #C5C5C5;
}


/*  Module 15/16 - Spalten
------------------------------------------------------------------------------*/
.slice-column {
  position: relative;
  float: left;
  overflow-x: hidden;
}


/*  Modul 33 - Galerie
------------------------------------------------------------------------------*/
.lightbox-gallery {
	position: relative;
	display: block;
	margin: 0 auto;
}

.lightbox-gallery:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.lightbox-image {
	float: left;
	width: 11.49%;
	line-height: 0;
  	margin: 0 1% 1% 0 !important;
}

.lightbox-image img {
	width: 100%;
	height: auto;
  	margin-bottom: 0 !important;
}


/*  Modul 41 - Download
------------------------------------------------------------------------------*/
.download-outer {
	position: relative;
	display: block;	
}

.download {
	position: relative;
	display: inline-block;
	padding: 7px 16px;
	background-color: #666666;
	cursor: pointer;
	transition: background-color 1s ease-out;
}

.download .fa {
	margin-right: 5px;
}

.download a {
	font-size: 18px;
	color: #FFFFFF;
}

.download:hover a {
	color: #FFFFFF;
}

.download:hover {
	background-color: #878787;
}

.dl-title {
  font-weight: bold;  
} 

.dl-desc {
  display: block;
  margin-bottom: -12px;  
}

.dl-icon {
  
}

.dl-link {

}

.download-file {
  
}

.dl-icon-small {
  margin-right: 8px;
  margin-bottom: -2px;
}

.dl-icon-large {
  margin-right: 8px;
  margin-bottom: -6px;
}

.dl-icon-none {

}


/*  Modul 51 - Liste
------------------------------------------------------------------------------*/
.article-list {
  position: relative;
  float:left;
  width: 42.5%;
  border-bottom: 0;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  color: #3D3C3D;
  display: block;
  padding: 2% 3%;
  background-color: #EDEDED;
  margin-bottom: 1.5%;
}

.article-list.left {
  margin-right: 3%;
  margin-left: 0;
} 

.article-list.right {
  margin-right: 0;
} 

.article-list:hover {
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.article-list-content h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-list-content .text {
  float:left;
  display:inline-block;
  width: 85%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.article-list .button {
  float: right;
  display: block;
  color: #68724F;
  _border: 2px solid #68724F;
  _-webkit-border-radius: 50%;
  _-moz-border-radius: 50%;
  _border-radius: 50%;
  padding: 5px 6px 5px 9px;
  margin-top: 6px; 
}

.article-list .button.margin {
  margin-top: 21px;
}


/*  Modul 83 - Anfahrt
------------------------------------------------------------------------------*/
.google-map {
  height: 400px;
}


/*  Modul 90 - Umbruch/Abstand, Trennlinie
------------------------------------------------------------------------------*/
.separator-line {
	display: block;
	width: 100%;
	height: 1px;
	margin: 0 auto;
	background-color: #878787;
  _-webkit-box-shadow: 1px 1px 0px 0px rgba(247,147,30,0.75);
  _-moz-box-shadow: 1px 1px 0px 0px rgba(247,147,30,0.75);
  _box-shadow: 1px 1px 0px 0px rgba(247,147,30,0.75);
	
}


/*  Modul S1 - Visitenkarte
------------------------------------------------------------------------------*/
.mitarbeiter {
  width: 48.5%;
  display: block;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  background-color: #EDEDED;
}

.mitarbeiter.left {
  float:left;
  margin:0 1.5% 3% 0%;
}

.mitarbeiter.right {
  float:right;
  margin:0 0 3% 1.5%;
}

.ma-content {
  position: relative;
  float: left;
  width: 94%;
  margin: 3%;
}

.ma-content p {
  font-size: 18px;
  line-height: 29px;
}

.ma-content .image {
  float: left;
  width: 35%;
  max-width: 260px;
  margin-right: 3%;
  background-color: #FFFFFF;
}

.ma-content img {
  display: block;
  width: 100%;
}

.ma-content .stammtext {
  width: 62%;
  position: absolute;
  left: 38%;
  top: 0;
}

.ma-content .spezialtext {
  width: 62%;
  position: absolute;
  left: 38%;
  bottom: 0;
  max-height: 67%;
  overflow-y: hidden;
}

.ma-content h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/*  Modul S2 - Zimmerauswahl
------------------------------------------------------------------------------*/
.roomlist {
  width: 48.5%;
  display: block;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  background-color: #EDEDED;
}

.roomlist:hover {
	-webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}

.roomlist.left {
  float:left;
  margin:0 1.5% 3% 0%;
}

.roomlist.right {
  float:right;
  margin:0 0 3% 1.5%;
}

.rl-content {
  position: relative;
  float: left;
  width: 94%;
  margin: 3%;
}

.rl-content p {
  font-size: 18px;
  line-height: 29px;
  color: #3D3C3D;
}

.rl-content .image {
  float: left;
  width: 35%;
  max-width: 260px;
  margin-right: 3%;
  background-color: #FFFFFF;
}

.rl-content img {
  display: block;
  width: 100%;
}

.rl-content .stammtext {
  width: 62%;
  position: absolute;
  left: 38%;
  top: 0;
}

.rl-content .spezialtext {
  width: 52%;
  position: absolute;
  left: 38%;
  bottom: 0;
  max-height: 67%;
  overflow-y: hidden;
}

.rl-content h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rl-content .taken {
  color: #B63533;
}

.rl-content .free {
  color: #008800;
  font-weight: bolder;
}

.rl-content .button {
  width: 7%;
  position: absolute;
  left: 93%;
  bottom: 0;
  color: #68724F;
  _border: 2px solid #68724F;
  _-webkit-border-radius: 50%;
  _-moz-border-radius: 50%;
  _border-radius: 50%;
}


/*  Modul S3 - Zimmerdetail
------------------------------------------------------------------------------*/
.roomdetail {
  float: left;
  width: 100%;
  margin-bottom: 48px;
}

.roomdetail h1 {

}

.roomdaten {
  float: left;
  width: 40%;
}

.roomdetail h2 {
  margin-top: 40px;
}

.roomdetail .taken {
  color: #B63533;
}

.roomdetail .free {
  color: #008800;
  font-weight: bolder;
}

.roommap {
  float: right;
  width: 40%;
  margin-top: 44px;
}

.roommap img {
  width: 100%;
}

