@charset "utf-8";

/*********
Allgemein
*********/
* {
	font-family: vistasanslightregular, Helvetica, Arial, sans-serif;
}

html {
	height: 100%;
}

/*********
Allgemeine Responsive Klassen fÌr GerÀte
*********/
/* Desktop */
@media 
only screen and (min-device-width : 880px), 
only screen and (min-width : 880px) {
.desktop-off, 
.tablet-on,
.phone-on {
	display: none;
}W
.desktop-on, 
.tablet-off, 
.phone-off {
	display: block;
}
}
/* Tablets */
@media 
only screen and (min-device-width : 600px) and (max-device-width : 879px), 
only screen and (min-width : 600px) and (max-width : 879px) {
.tablet-off,
.desktop-on, 
.phone-on {
	display: none;
}
.tablet-on,
.desktop-off, 
.phone-off {
	display: block;
}
}
/* Mobile */
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.phone-off,
.desktop-on, 
.tablet-on
 {
	display: none;
}
.phone-on, 
.desktop-off, 
.tablet-off {
	display: block;
}
}

/*********
Allgemeine Content Styles
*********/

h1 {
	font-family: 'thirsty_roughregular_two', Helvetica, Arial, sans-serif;
	font-size: 3.2em;
	line-height: 1.3em;
	font-weight: normal;
	margin: 0 auto 50px;
	padding: 0;
	width: 72%;
	text-align: center;
}

h1 span.hinweis {
	font-size: 0.8rem;
}
@media 
only screen and (min-device-width : 600px) and (max-device-width : 879px), 
only screen and (min-width : 600px) and (max-width : 879px) {
h1 {
	font-size: 2.8em;
	margin: 0 auto 30px;
	width: 85%;
}
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
h1 {
	font-size: 2.2em;
	margin: 0px auto;
	padding-top: 15px;
	width: 100%;
}
}

h2 {
	font-size: 1.5em; /* 30px 32/16 = 2 */
	font-family: vistasansboldregular, vistasanslightregular, Helvetica, Arial, sans-serif;
	font-weight: normal;
	color: #000;
	margin: 0;
	padding: 0;
	margin-bottom: 15px;
	margin-top: 30px;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
h2 {
	font-size: 1.3em;
	margin-bottom: 10px;
}
}

h3 {
	font-size: 1rem; /* 20px 20/16 = 1.25 */
	font-family: vistasansboldregular, vistasanslightregular, Helvetica, Arial, sans-serif;
	font-weight: normal;
	color: #000;
	margin: 0;
	margin-bottom: 10px;
	padding-top: 20px;
}
.index-site h3 {
	color: #fff; /* Sommer */
}
html.winter.index-site h3 {
	color: #000;  /* Winter */
}

h2.first,
h3.first {
	margin-top: 0px;
	padding-top: 0px;
} 

p {
	font-size: 0.95em;
	padding: 0;
	margin: 0;
	margin-bottom: 15px;
	line-height: 1.4em;
	font-weight: 500;
}

p.einleitung {
	font-size: 1em;
	font-family: vistasansboldregular, vistasanslightregular, Helvetica, Arial, sans-serif;
	font-weight: normal;
}

p.hinweis {
	font-style: italic;
	background: rgba(147,96,55,0.5);
	padding: 10px;
}

p.date {

	font-size: 0.85em;
}

p.no-space {
	margin-bottom: 0px;
}

strong {
	font-family: vistasansboldregular, vistasanslightregular, Helvetica, Arial, sans-serif;
	font-weight: normal;
}

img {
	border: 0;
}

.img-right {
	float: right;
	width: 50%;
	margin-left: 2%;
	margin-bottom: 2%;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.img-right {
	float: none;
	display: block;
	width: 100%;
	margin-left: 0px;
}
}

.img-left {
	float: left;
	width: 50%;
	margin-right: 20px;
	margin-bottom: 20px;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
    .img-left {
        float: none;
        display: block;
        width: 100%;
        margin-right: 0px;
    }
}

.img-left.grapeescapes {
    width: 105px;
    height: auto;
    float: left; 
    margin-right: 20px;
	margin-bottom: 20px;
}

ul {
	padding: 0;
} 

li {
	list-style-type: none;
	font-size: 0.95rem; /* 12px 12/16 = 0.75 */
}

ul.angebot {
	padding-bottom: 20px;
	border-bottom: 4px solid #000;
}

.angebot li {
	padding-left: 5px;
	margin-bottom: 5px;
	margin-left: 15px;
	list-style-image: url(../img/layout/icon-linie.png);
	list-style-position: outside;
}

.angebot li.last {
	padding-left: 0px;
	margin-left: 0px;
	margin-top: 15px;
	list-style-type: none;
}

.preis, 
.preis span {
	font-family: vistasansboldregular, vistasanslightregular, Helvetica, Arial, sans-serif;
}

.clear {
	clear: both;
}


/*Links*/
a {
	color: #000;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a.video {
	background: url(../img/layout/icon-video.svg) left top no-repeat;
	background-size: 16px 16px;
	padding-left: 25px;
}

/* TripAdvisor */
#main #CDSWIDEXC {
	margin: 0px;
}

/* Frontbutton buchen*/
#main .gutschein {
	position: absolute;
	right: 0px;
	top: 0px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 0px;
}

#main .gutschein img {
	height: 125px;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-right: 120px;
}

.buchen-btn {
	position: absolute;
	right: 0;
	top: 0;
}
.buchen-btn img {
	height: 125px;
	width: auto;
}

#CDSWIDFRR {
	display: inline-block;
	margin-top: 0px !important;
}

@media only screen and (max-width: 879px) and (min-width: 600px) {
#main .gutschein img {
    height: 100px;
    margin-top: 12px;
    margin-bottom: 12px;
	margin-right: 12px;
}
.buchen-btn img {
	height: 100px;
}
#CDSWIDFRR {
	display: inline-block;
	margin-top: 0px !important;
	margin-left:0px !important;
}
}

@media only screen and (max-width: 599px) and (min-width: 220px) {
	#main .gutschein {
		left: 50%; 
	}

	#main .gutschein img {
		height: 75px;
		margin-top: 12px;
		margin-bottom: 12px;
		margin-left: 18px;
	}
	.buchen-btn img {
		height: 75px;
	}
}
/*.gutschein a {
	background: url(../img/layout/icon-schlaf-fass-weiss-off.svg) no-repeat; 
	background-size: 30px 30px;
	display: block;
	height: 30px;
	padding-left: 45px;
	color: #fff;
	text-decoration: none;
	font-size: 1.25rem;
	padding-top: 4px;
}*/

#content-raster .nowbook {
	position: absolute;
	right: 0px;
	top: -80px;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
	padding: 10px;
}

.nowbook a {
	background: url(../img/layout/icon-schlaf-fass-weiss-off.svg) no-repeat; 
	background-size: 30px 30px;
	display: block;
	height: 30px;
	padding-left: 45px;
	color: #fff;
	text-decoration: none;
	font-size: 1.25rem;
	padding-top: 4px;
}
@media 
only screen and (min-device-width : 600px) and (max-device-width : 879px), 
only screen and (min-width : 600px) and (max-width : 879px) {
#content-raster .nowbook {
	top: -40px;
	padding: 8px;
}
.nowbook a {
	background-size: 23px 23px;
	height: 23px;
	padding-left: 35px;
	font-size: 1rem;
}
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
#content-raster .nowbook {
	top: -25px;
	padding: 6px;
}
.nowbook a {
	background-size: 20px 20px;
	height: 20px;
	padding-left: 30px;
	font-size: 0.875rem;
}
}


/*********
Raster-Styles
*********/
body {
	font-size: 100%; /* 16px = 1em */
	height: 100%;
	
	background-color: #1d0c0a;
	background-image: url(../img/layout/background.jpg);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-attachment: fixed;
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;  
	background-size: cover; 
}

.index-site body {
	background-image: url(../img/layout/background-home.jpg); /*Sommer*/
}
html.winter.index-site body {
	background-image: url(../img/layout/background-home-winter.jpg); /*Winter*/
}

body, img, p, tr, td {
	color: #000;
}
.index-site p,
.index-site h1 {
	color: #fff;
	text-shadow: 1px 1px 0px #000;
}
.index-site p {
	font-family: vistasansboldregular, vistasanslightregular, Helvetica, Arial, sans-serif;
	line-height: 1.6em;
	font-size: 1em;	
	/** sommer **/
	text-shadow: 1px 1px 0px #000;
	color: #fff;
}
html.winter.index-site p {
	/** winter **/
	text-shadow: 1px 1px 0px #fff;
	color: #000;
}

.index-site #wall h3 {
	text-shadow: 1px 1px 0px #000; /* Sommer */
}
html.winter.index-site #wall h3 {
	text-shadow: 1px 1px 0px #fff; /* Winter */
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
body {
	font-size: 90%; 
}
}

#main {
	width: 100%;
}

header {
	background: url(../img/layout/bg-trans-85.png);
	width: 100%;
	z-index: 10;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
header {
	background: #fff;
}
}

div#logo, 
nav.main-nav ul, 
section#content-raster, 
.footer-ct {
	position: relative;
	max-width: 1020px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
@media 
only screen and (min-device-width : 600px) and (max-device-width : 1020px), 
only screen and (min-width : 600px) and (max-width : 1020px) {
nav.main-nav ul, 
section#content-raster, 
.footer-ct {
	margin-left: 25px;
	margin-right: 25px;
	width: auto;
}	
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
nav.main-nav ul, 
section#content-raster, 
.footer-ct {
	margin-left: 18px;
	margin-right: 18px;
	width: auto;
}	
}

div#logo {
	text-align: center;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
div#logo {
	text-align: left;
}
}

div#logo img {
	width: auto;
	height: 125px;
	margin-top: 20px;
	margin-bottom: 20px;
}
@media 
only screen and (min-device-width : 600px) and (max-device-width : 879px), 
only screen and (min-width : 600px) and (max-width : 879px) {
div#logo img {
	height: 100px;
	margin-top:12px;
	margin-bottom: 12px;
}
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
div#logo img {
	height: 75px;
	margin-top:12px;
	margin-bottom: 12px;
	margin-left: 18px;
}
}

nav.main-nav {
	background-color: #fff;
	text-align: center;
	position: relative;
}

#content-raster {
	margin-top: 80px;
	padding-bottom: 80px;
	/*overflow: hidden;*/
}
@media 
only screen and (min-device-width : 600px) and (max-device-width : 879px), 
only screen and (min-width : 600px) and (max-width : 879px) {
#content-raster {
	margin-top: 40px;
	padding-bottom: 25px;
}
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
	#content-raster {
	margin-top: 25px;
	padding-bottom: 12px;
}
}

div.content {
	width: 30%;
	padding-left: 50%;
}

footer {
	position: fixed;
	display: block;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 53px;
	background: url(../img/layout/background-footer.jpg) center top repeat-x; /*Sommer*/
	border-bottom: 10px #fff solid;
	text-align: center;
}
html.winter footer {
	background: url(../img/layout/background-footer-winter.jpg) center top repeat-x; /*Winter*/
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 879px), 
only screen and (min-width : 220px) and (max-width : 879px) {
footer {
	position: relative;
	clear: both;
}
}

.footer-ct {
	height: 100%;
}

nav.sprach-nav {
	position: absolute;
	left: 0px;
	bottom: 4px;
}

nav.social-nav {
	position: absolute;
	right: 0px;
	bottom: -3px;
}

.grf {
	padding-top: 28px;
}

/*********
Mini-GRID
*********/
#col-1, #col-2 {
	max-width: 48%;
	width: 48%;
	margin-right: 2%;
	overflow: hidden;	
}

#col-1 {
	float: left;
}

#col-1-2 {
	width: 100%;
	overflow: hidden;
}

#col-3-1 {
	margin-right: 0%;
width: 32.6%;
	float: left;

}
#col-3-2 {
	
	margin-right: 2%;
		width: 65.33%;
	float: left;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
#col-1, #col-2, #col-1-2 {
	max-width: 100%;
	width: 100%;
	clear: both;
	margin-right: 0;
	
}

#col-1 {
	margin-right: 0;
	clear: both;
	margin-bottom: 20px;
}
}

/*********
ToolTip -> Gutscheine
*********/
.g-wahl label {
	background: url(../img/layout/icon-info-off.svg) right center no-repeat;
	background-size: 10px 10px;
	padding-right: 15px;
}

/*
.g-wahl label {
	position: relative;
}

.tooltip {
	display: none;
}

.g-wahl label:hover .tooltip {
	display: block;
      position: absolute;
	  top: 25px;
	  left: 20px;
      width: 250px;
      height: auto;
      line-height: 20px;
      padding: 10px;
      font-size: 14px;
      text-align: left;
      color: rgb(255, 255, 255);
      background: rgb(147, 96, 55);
      border: 0px solid rgb(255, 255, 255);
      border-radius: 5px;
      text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
      box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
	  z-index: 500;
}

.tooltip:after {
      content: "";
      position: absolute;
      width: 0;
      height: 0;
      border-width: 10px;
      border-style: solid;
      border-color: transparent transparent #936037 transparent;
      top: -19px;
      left: 120px;
}
*/

.ui-tooltip {
	width: 250px;
	height: auto;
	line-height: 20px;
	padding: 10px;
	font-size: 14px;
	text-align: left;
	color: rgb(255, 255, 255);
	background: rgb(147, 96, 55);
	border: 0px;
	border-radius: 5px;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
	box-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/*********
Content-Bilder
*********/
ul.bilder {
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.bilder li {
	float: left; 
}

.bilder img {
	width: 100%;
	display: block;
}

#col-1 .bilder li, 
#col-2 .bilder li {
	width: 48%;
	margin-right: 2%;
	margin-bottom: 2%;
}

#col-1-2 .bilder li {
	width: 23%;
	margin-right: 2%;
	margin-bottom: 2%;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
#col-1-2 .bilder li {
	width: 48%;
	margin-right: 2%;
	margin-bottom: 2%;
}

#col-1 .bilder li, 
#col-2 .bilder li {
	width: 100%;
	margin-right: 0;
	margin-bottom: 2%;
}
}

/*********
Partner
*********/
.partner div {
	overflow: hidden;
	margin-bottom: 25px;
}

.partner h3 {
	padding-top: 0px;
}

.partner img {
	width: 150px;
	height: auto;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.partner img {
	width: 100px;
	height: auto;
}
}

/*********
Google-Map
*********/
#map-links {
	background-color: #936037;
    color: #000000;
    margin-bottom: 10px;
    margin-right: 10px;
    opacity: 0.75;
    padding: 15px;
}

#map-links h3 {
	border-bottom: 1px solid #000000;
    color: #000000;
    font-size: 1rem;
    margin: 0 0 5px;
    opacity: 1;
    padding: 0 0 10px;
}

.map-link {
	border-bottom: 1px solid #000000;
    cursor: pointer;
    margin: 0 0 5px;
    padding: 0 0 5px;
}

.map-link:before {
	content: "» ";
}

/*********
Navigation
*********/
.main-nav ul {
	overflow: hidden;
	margin: 0;
	padding: 12px 0;
	text-align: center;
}

.main-nav ul li {
	margin-right: 20px;
	display: inline-block;
}

.main-nav ul li a {
	font-family: vistasansboldregular, vistasanslightregular, Helvetica, Arial, sans-serif;
	text-decoration: none;
	color: #000;
	font-weight: normal;
	font-size: 0.75rem;
	text-transform: uppercase;	
	border-bottom: 4px solid #fff;
	padding-bottom: 9px;
}

.main-nav ul li a:hover, 
.main-nav ul li a.active {
	border-bottom: 4px solid #000;
	padding-bottom: 9px;
}

nav.sf-nav {
	text-align: center;
	margin-bottom: 30px;
}

.sf-nav ul {
	overflow: hidden;
	margin: 0;
	padding: 0;
	text-align: center;
}

.sf-nav ul li {
	margin-right: 1%;
	margin-left: 1%;
	display: inline-block;
}

/*.sf-nav ul li.last {
	margin-right: 0px;
}*/

.sf-nav ul li a {
	display: block;
	width: 65px;
	height: 65px;
}

.sf-nav ul li.fass a {background: url(../img/layout/icon-schlaf-fass-off.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.fass:hover a, .sf-nav ul li.fass.active a {background: url(../img/layout/icon-schlaf-fass-on.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.galerie a {background: url(../img/layout/icon-galerie-off.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.galerie:hover a, .sf-nav ul li.galerie.active a {background: url(../img/layout/icon-galerie-on.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.p360 a {background: url(../img/layout/icon-360-off.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.p360:hover a, .sf-nav ul li.p360.active a {background: url(../img/layout/icon-360-on.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.lageplan a {background: url(../img/layout/icon-lageplan-off.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.lageplan:hover a, .sf-nav ul li.lageplan.active a {background: url(../img/layout/icon-lageplan-on.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.ausflug a {background: url(../img/layout/icon-ausflugsziele-off.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.ausflug:hover a {background: url(../img/layout/icon-ausflugsziele-on.svg) no-repeat; background-size: 65px 65px;}

.sf-nav ul li.step1 a {background: url(../img/layout/icon-step1-off.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.step1:hover a, .sf-nav ul li.step1.active a {background: url(../img/layout/icon-step1-on.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.step2 a {background: url(../img/layout/icon-step2-off.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.step2:hover a, .sf-nav ul li.step2.active a {background: url(../img/layout/icon-step2-on.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.step3 a {background: url(../img/layout/icon-step3-off.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.step3:hover a, .sf-nav ul li.step3.active a {background: url(../img/layout/icon-step3-on.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.step4 a {background: url(../img/layout/icon-step4-off.svg) no-repeat; background-size: 65px 65px;}
.sf-nav ul li.step4:hover a, .sf-nav ul li.step4.active a {background: url(../img/layout/icon-step4-on.svg) no-repeat; background-size: 65px 65px;}

.sf-nav ul li img {
	width: 65px;
	height: 65px;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
#content-raster .sf-nav ul li a {
	width: 45px;
	height: 45px;
	background-size: 45px 45px;
}
}

.sf-nav.uebersicht li a {
	font-size: 1.5em;
	line-height: 2em;
	text-decoration: none;
	font-weight: 700;
	color: #fff;
	display: block;
	padding-left: 40px;
	background: url(../img/layout/icon-blauburgunder-off.svg) no-repeat left center;
	background-size: 30px 30px;
	height: auto;
	width: auto;
}

.sf-nav.uebersicht li a.maienfeld {
	background: url(../img/layout/icon-riesling-off.svg) no-repeat left center;
	background-size: 30px 30px;
}

.reservation-site .ganzjahr {
	float: right;
	margin-left: 15px;
}
.frontbtn.zertifikat-no a {
	background: none;
	padding-left: 0;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.reservation-site .ganzjahr {
	float: none;
	margin-left: 0px;
	margin-bottom: 10px;
}	
}

/* Font Buttons */
.front-buttons {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
	gap: 15px;
}

.front-buttons p {
	margin-bottom: 0;
	flex: 1 1;
	min-width: 30%;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 879px), 
only screen and (min-width : 220px) and (max-width : 879px) {
	.front-buttons {
		flex-wrap: nowrap;
		flex-direction: column;
	}
	.front-buttons p {
		margin-right: 0px !important;
		flex: 1;	
	}
	.front-buttons p a {
		min-height: 40px;	
	}
}

p.mstarsbtn {
	background: #915e36;
	float: left;
	
	
}

p.mstarsbtn a {
	display: flex;
	
	background: url(../img/layout/million-stars-hotel.svg) no-repeat; 
	background-size: 50px 50px;
	background-position: left center;
	/*display: block;*/
	/*height: 40px;*/
	padding-left: 55px;
	color: #fff;
	text-decoration: none;
	font-size: 0.875rem;
	line-height: 1.4rem;
	text-shadow: none;
}

p.mstarsbtn a:hover {
	background: url(../img/layout/million-stars-hotel-on.svg) no-repeat;
	background-size: 50px 50px;
}

p.frontbtn,
p.trophy {
	line-height: 1.4rem;
	text-shadow: none;
}
html.winter p.frontbtn,
html.winter p.trophy {
	text-shadow: none;
}

p.frontbtn.xmas {
	background: url(../img/layout/xmas-masche.png) #000 right top no-repeat;
}

.frontbtn a {
	background: url(../img/layout/icon-ganzesjahr-off.svg) no-repeat; 
	background-size: 40px 40px;
	display: block;
	/*height: 40px;*/
	padding-left: 45px;
	color: #fff;
	text-decoration: none;
	font-size: 0.875rem;
}

.trophy a {
	background: url(../img/layout/icon-trophy-off.svg) no-repeat; 
	background-size: 40px 40px;
	display: block;
	/*height: 40px;*/
	padding-left: 45px;
	color: #fff;
	text-decoration: none;
	font-size: 0.875rem;
}
.trophy.prestigebtn a {
	background: url(../img/layout/icon-prestige-award-off.svg) no-repeat;
	background-size: 40px 40px;
}

.frontbtn.xmas a { 
	background: url(../img/layout/icon-geschenk-off.svg) no-repeat;
	background-size: 40px 40px;
}

.ganzjahr a:hover {background: url(../img/layout/icon-ganzesjahr-on.svg) no-repeat; background-size: 40px 40px;}
.xmas a:hover {background: url(../img/layout/icon-geschenk-on.svg) no-repeat; background-size: 40px 40px;}
.trophy a:hover {background: url(../img/layout/icon-trophy-on.svg) no-repeat; background-size: 40px 40px;}
.trophy.prestigebtn a:hover {background: url(../img/layout/icon-prestige-award-on.svg) no-repeat; background-size: 40px 40px;}

#wall {
	clear: both;
}

#wall > div {
	min-height: 51px;
}

#wall .fb-arrow {
	color: #fff; /* sommer */
	font-size: 1.25rem;
	float: left;
}
html.winter #wall .fb-arrow {
	color: #000; /* winter */
}
#wall a {
	text-decoration: none;
}
#wall p {
	font-size: 0.875rem;
	padding-left: 20px;
}

.sf-nav.uebersicht li, 
.frontbtn, 
.nowbook,
.rechtliches,
.trophy,
.mstarsbtn {
	display: inline-block;
	padding: 15px;
	background-color: #000;	
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
}

.trophy {
	background-color: #915e36;
}

p.rechtliches {
	display: inline-block;
	float: none;
}
.rechtliches a {
	color: #fff;
	text-decoration: none;
	display: block;
}

.rechtliches a:hover {
	color: #915e36;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 879px), 
only screen and (min-width : 220px) and (max-width : 879px) {
#content-raster .sf-nav.uebersicht li a {
	font-size: 1em;
	line-height: 1.5em;
	padding-left: 20px;
	background-size: 15px 15px;
	height: auto;
	width: auto;	
}

.sf-nav.uebersicht li a.maienfeld {
	background-size: 15px 15px;
}

.sf-nav.uebersicht li {
	padding: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	margin-bottom: 10px;
}
	p.awardbtn {
		width: calc(100% - 30px);
	}
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.sf-nav.uebersicht ul li {


}
}

.sprach-nav ul, 
.social-nav ul {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.sprach-nav ul li, 
.social-nav ul li {
	float: left;
	margin-right: 5px;
}

.sprach-nav li a {
	color: #fff;
	text-decoration: none;
}


/*********
Tabellen
*********/
table, tbody, thead {
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0px;
	margin-bottom: 10px;
}

tr, td, th {
	border: 0px;
}

/*tr:nth-child(even) {
	background-image:url(../img/layout/bg_weiss60.png);
}*/

tr {
	padding: 0px;
	margin: 0px;
}

tr:hover {
	/*background-color: #e3b2b3;*/
}

th {
	padding: 2px;
	/*border-bottom: 1px solid #333;*/
	vertical-align: top;
	text-align: left;
	color: #000;
	font-weight: bold;
	background-color: #915e36;
}


td {
	margin: 0;
	padding: 2px;
	border-bottom: 1px dotted #333;
	vertical-align: top;
	text-align: left;
}

/*********
Formulare
*********/
fieldset {
	border: 0;
}

legend {
	padding: 0;
	margin: 0;
	margin-bottom: 10px;
	font-size: 1.5em; /* 30px 32/16 = 2 */
	font-family: vistasansboldregular, vistasanslightregular, Helvetica, Arial, sans-serif;
	font-weight: normal;
	color: #000;
}

label {
	display: block;	
	font-size: 1em;
	margin-bottom: 5px;
}

label.subtitel {
	font-weight: 700;
}

label.cb {
	display: inline;
}

label.rd {
	display: inline;
	margin-right: 10px;
}

label.cb.pdf {
	display: inline-block;
	width: 50px;
}

.input-desc {
	/*font-size: 0.8em;*/
	display: block;
	margin-top: -10px;
	margin-bottom: 15px;
}

input, 
select, 
textarea {
	background-color: #fff;
	border: 1px solid #000;
	padding: 2px;
	/*font-size: 0.8em;*/
	width: 98%;
	margin-bottom: 15px;
}
textarea {
	height: 120px;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
input, 
select {
	width: 90%;
}
}

input:focus {
	border-color: #936037;
}

input.checkbox, 
input.radio, 
input[type="checkbox"], 
input[type="radio"] {
	width: auto;
	margin-right: 5px;
	border: 0;
	background-color: transparent;
}

input[type="submit"], 
button[type="submit"] {
	background-color: #000;
	color: #fff;
	padding: 10px;
	border: 0;
	width: 100%;
}

input[type="submit"]:hover, 
button[type="submit"]:hover {
	background-color: #936037;
	
}

.filter input[type="submit"] {
	width: inherit;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
input[type="submit"], 
button[type="submit"],
input[type="submit"]:hover, 
button[type="submit"]:hover {
	width: 90%;
}
textarea {
	width: 90%;
}
div.halb {
	width: 46%;
}
}

input.pflicht, 
textarea.pflicht {
	border-right: 3px solid #936037;
}

div.halb input.text {
	width: 90%;
}

#betrag {
	width: 13%;
	display: inline;
}

form .error {
	color: #9D0A0A;
	font-size: 0.75rem;
	display: block;
	margin-top: -10px;
}

/*********
Transparenzen
*********/
.opac85 {
	/* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
	  /* IE 5-7 */
	  filter: alpha(opacity=85);
	  /* Netscape/FireFox */
	  -moz-opacity: 0.85;
	  /* Safari 1.x */
	  -khtml-opacity: 0.85;
	  /* aktuelle Browser */
	  opacity: 0.85;
}

.opac100 {
	/* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	  /* IE 5-7 */
	  filter: alpha(opacity=100);
	  /* Netscape/FireFox */
	  -moz-opacity: 1.0;
	  /* Safari 1.x */
	  -khtml-opacity: 1.0;
	  /* aktuelle Browser */
	  opacity: 1.0;
}

/*********
Reservation
*********/
.tab-content > .tab-pane, .pill-content > .pill-pane {
    display: none;
}
.tab-content > .active, .pill-content > .active {
    display: block;
}
.nav-pills a {
		color: grey;
}
.nav-pills > .active a {
		color: black;
}
.nav-pills > .ok a {
		color: green;
}
.tab-content button {
		background-color: #fff;
		border: 1px solid #000;
		display: inline-block;
		padding: 10px;
		font-size: 1.2rem;
		margin-right: 10px;
}
.tab-content button.selected {
		background-color: #915e36;
}
.tab-content button[disabled=disabled] {
		color: #ada7a2;
}
.hasDatepicker td.reserved .ui-state-default,
.hasDatepicker td.confirmed .ui-state-default {
		background-color: #9d0a0a;
}
.hasDatepicker td.blocked .ui-state-default {
		background-color: #482F1B;
}

.ui-datepicker-inline {
	width: 100% !important;
}

.ui-datepicker {
	padding: 0;
}

.ui-datepicker-multi .ui-datepicker-group table {
	margin: 0px;
	border: 1px solid #915E36;
}

.ui-datepicker th {
	padding: 0.4em 0.1em;
}

.ui-datepicker td {
	border: 1px solid #915E36;
}

.hasDatepicker td a.ui-state-default {
	background-color: #fff;
	/* IE 8 */
	  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
	  /* IE 5-7 */
	  filter: alpha(opacity=75);
	  /* Netscape/FireFox */
	  -moz-opacity: 0.75;
	  /* Safari 1.x */
	  -khtml-opacity: 0.75;
	  /* aktuelle Browser */
	  opacity: 0.75;
}

.hasDatepicker td a.ui-state-default.ui-state-active, 
.hasDatepicker td a.ui-state-default.ui-state-active:hover {
	background-color: #915e36;
	color: #000;
	font-weight: 700;
}

.ui-datepicker select.ui-datepicker-month {
	width: 36%;
}
.ui-datepicker select.ui-datepicker-year {
	width: 21%;
	margin-left: 5px;
}

.ui-datepicker .ui-datepicker-title {
	margin: 0;
}

.ui-datepicker .ui-datepicker-next, 
.ui-datepicker .ui-datepicker-prev {
	display: none;
}

.pager.wizard {
	border-top: solid #000 4px;
	padding-top: 15px;
	text-align: center;
}

.pager.wizard li {
	display: inline !important;
}

.pager.wizard li a {
	background-color: #000;
	color: #fff;
	padding: 10px;
	text-decoration: none;
}

.pager.wizard li a:hover {
	background-color: #915e36;
	color: #000;
}

@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.ui-datepicker-multi-2 .ui-datepicker-group {
	float: none;
	width: 100%;
}
}

.res-footer {
	min-height: 50px;
	overflow: hidden;
	margin-bottom: 20px;
}
@media 
only screen and (min-device-width : 600px) and (max-device-width : 879px), 
only screen and (min-width : 600px) and (max-width : 879px) {
.res-footer {
	min-height: 70px;
	margin-bottom: 40px;
}
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.res-footer {
	min-height: 70px;
	margin-bottom: 50px;
}
}

ul.partnerangebot {
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.partnerangebot li {
	width: 23%;
	margin-right: 2%;
	float: left;
}

.partnerangebot li a {
	display: block;
	text-decoration: none;
}

.partnerangebot li img {
	display: block;
	width: 100%;
}
.partnerangebot li p {
	margin-bottom: 5px;
}
@media 
only screen and (min-device-width : 220px) and (max-device-width : 599px), 
only screen and (min-width : 220px) and (max-width : 599px) {
.partnerangebot li {
	width: 47%;
	margin-right: 3%;
	margin-bottom: 3%;
	float: left;
}
}


