@charset "utf-8";
@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: 400;
	font-display: block;
	src: local('Material Icons'),
	local('MaterialIcons-Regular'),
	url(../font/materialicons-regular.ttf) format('truetype');
}
.material-icons {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	font-size: 24px;  /* Preferred icon size */
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;

	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;

	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;

	/* Support for IE. */
	font-feature-settings: 'liga';
}
@font-face {
	font-family: 'PT Serif'; font-style: normal; font-weight: 400;
	src: url('../font/pt_serif/regular.ttf') format('truetype')
}
@font-face {
	font-family: 'PT Serif'; font-style: italic; font-weight: 400;
	src: url('../font/pt_serif/italic.ttf') format('truetype')
}
@font-face {
	font-family: 'Raleway'; font-style: normal; font-weight: 400;
	src: url('../font/raleway/regular.ttf') format('truetype')
}
@font-face {
	font-family: 'Raleway'; font-style: normal; font-weight: 600;
	src: url('../font/raleway/semibold.ttf') format('truetype')
}
@font-face {
	font-family: 'Raleway'; font-style: normal; font-weight: 700;
	src: url('../font/raleway/bold.ttf') format('truetype')
}
@font-face {
	font-family: 'Antro Vectra'; font-style: normal; font-weight: normal;
	src: url('../font/AntroVectra.ttf') format('truetype')
}

@font-face {
	font-family: 'Antro Vectra'; font-style: normal; font-weight: bold;
	src: url('../font/AntroVectra-Bolder.ttf') format('truetype')
}

/* HTML5 display definitions */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
audio, canvas, video { display: inline-block; }
audio:not([controls]) { display: none; height: 0; }
[hidden] { display: none; }

html {
	font-size: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
	-moz-box-sizing: inherit; 
	-webkit-box-sizing: inherit;
}

/* Base */
body {
	padding: 0;
	margin: 0;
	font-family: 'PT Serif', serif;
	font-weight: normal;
	line-height: 1.5;
	background: #fff;
	color: #333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;	
}

img {
	max-width: 100%;
	height: auto;
	-ms-interpolation-mode: bicubic;
	display: inline-block;
	vertical-align: middle;
	border: 0;
}

::selection {
	background: #a07f12;
	color: #FFF; 
	text-shadow: none;
}

/* Links */
a { 
	text-decoration: none;
	color: #a07f12; 
	transition: all 0.5s ease;
}
a:hover { color: #7C5F00; }
a:focus { outline: 0; }
a:active, a:hover { outline: 0; }

h2 a, h3 a { color: #a07f12; text-decoration: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-style: normal;
	color: inherit;
	text-rendering: optimizeLegibility;
	margin-top: 0;
	margin-bottom: 0.5rem;
	line-height: 1.4; 
}
h1 { 
	font-size: 2.75rem;
	text-align: center;
}
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

abbr[title] { border-bottom: 1px dotted; }
b, strong {
	color: #a07f12;
	font-weight: bold;
}
blockquote { margin: 1em 40px; }
dfn { font-style: italic; }
hr {
	border: none; border-top: 1px dashed #ccc;
	-moz-box-sizing: content-box; box-sizing: content-box; display: block;
	height: 1px;
	margin: 1em 0; padding: 0;
}
mark { background: #ff0; color: #000; }
p, pre { 
	margin: 1em 0;
	line-height: 1.875;
}
code, kbd, pre, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ''; content: none; }
small { font-size: 80%; }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

/* Lists */
dl, ol, ul { margin: 1em 0; }
dd { margin: 0 0 0 40px; }
ol, ul { padding: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }

/* Embedded content */
svg:not(:root) { overflow: hidden; }

/* Figures */
figure { margin: 0; }

/* Forms */
form { margin: 0; }
fieldset { border: 0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; }
legend { border: 0; padding: 0; white-space: normal; *margin-left: -7px; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; }
button, select { text-transform: none; }
button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; cursor: pointer; *overflow: visible; }
button[disabled], html input[disabled] { cursor: default; background: #838383;}
button[disabled]:hover, html input[disabled]:hover { background: #838383;}
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *height: 13px; *width: 13px; }
input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; }

/* Tables */
table { border-collapse: collapse; border-spacing: 0; }

/* CLASSES */
.boxsizing { box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
.right { float: right; }
.left { float: left; }
.material-icons { vertical-align: middle; }
.bounce {
	-moz-animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	animation: bounce 2s infinite;
}
.headline:after {
	display: block;
	content: '';
	height: 0.4rem;
	width: 10rem;
	margin: 2rem auto 5rem auto;
	background-color: #a07f12;
}

/* Wrapper */
.wrapper {
	box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; 
	margin: 0 auto;
	padding: 0 2rem;
}

/* 12 Col-Grid-Layout */
.grid-container, .wrapper { width: 100%; max-width: 1240px; }
.row:before, .row:after {
	content: '';
	clear: both;
	display: table;
}
[class*='col-'] {
	display: inline-block;
	float: left;
	margin-left: 2.127659574468085%;
	min-height: 1px;
	padding: 0;
}
[class*='col-']:first-child, .grid-container.nogutter [class*='col-'] { margin-left: 0; }

.row.table { 
	display: table; 
	table-layout: fixed;
	width: 100%; 
}
.row.table > [class*="col-"] {
	display: table-cell;
	float: none;
	margin-left: 0;
	padding: 0.7em 1em;
	vertical-align: middle;
}
.grid-container.nogutter .row.table > [class*="col-"] { padding: 0; }

[class*='col-'].space { padding: 0.7em 1em!important; }
[class*='col-'].space-left { padding-left: 1em!important; }
[class*='col-'].space-right { padding-right: 1em!important; }

.col-1  { width: 6.382978723404255%; }
.grid-container.nogutter .col-1, .grid-container .row.table .col-1 { width: 8.333%; }
.col-2  { width: 14.893617021276595%; }
.grid-container.nogutter .col-2, .grid-container .row.table .col-2 { width: 16.66%; }
.col-3  { width: 23.404255319148934%; }
.grid-container.nogutter .col-3, .grid-container .row.table .col-3 { width: 25%; }
.col-4  { width: 31.914893617021278%; }
.grid-container.nogutter .col-4, .grid-container .row.table .col-4 { width: 33.33%; }
.col-5  { width: 40.42553191489362%; }
.grid-container.nogutter .col-5, .grid-container .row.table .col-5 { width: 41.66%; }
.col-6  { width: 48.93617021276595%; }
.grid-container.nogutter .col-6, .grid-container .row.table .col-6 { width: 50%; }
.col-7  { width: 57.44680851063829%; }
.grid-container.nogutter .col-7, .grid-container .row.table .col-7 { width: 58.33%; }
.col-8  { width: 65.95744680851064%; }
.grid-container.nogutter .col-8, .grid-container .row.table .col-8 { width: 66.66%; }
.col-9  { width: 74.46808510638297%; }
.grid-container.nogutter .col-9, .grid-container .row.table .col-9 { width: 75%; }
.col-10 { width: 82.97872340425532%; }
.grid-container.nogutter .col-10, .grid-container .row.table .col-10 { width: 83.33%; }
.col-11 { width: 91.48936170212765%; }
.grid-container.nogutter .col-11, .grid-container .row.table .col-11 { width: 91.66%; }
.col-12 { width: 100%; }
.grid-container.nogutter .col-12, .grid-container .row.table .col-12 { width: 100%; }

.offset12 { margin-left: 104.25531914893617%; }
.offset12:first-child { margin-left: 102.12765957446808%; }
.offset11 { margin-left: 95.74468085106382%; }
.offset11:first-child { margin-left: 93.61702127659574%; }
.offset10 { margin-left: 87.23404255319149%; }
.offset10:first-child { margin-left: 85.1063829787234%; }
.offset9 { margin-left: 78.72340425531914%; }
.offset9:first-child { margin-left: 76.59574468085106%; }
.offset8 { margin-left: 70.2127659574468%; }
.offset8:first-child { margin-left: 68.08510638297872%; }
.offset7 { margin-left: 61.70212765957446%; }
.offset7:first-child { margin-left: 59.574468085106375%; }
.offset6 { margin-left: 53.191489361702125%; }
.offset6:first-child { margin-left: 51.063829787234035%; }
.offset5 { margin-left: 44.68085106382979%; }
.offset5:first-child { margin-left: 42.5531914893617%; }
.offset4 { margin-left: 36.170212765957444%; }
.offset4:first-child { margin-left: 34.04255319148936%; }
.offset3 { margin-left: 27.659574468085104%; }
.offset3:first-child { margin-left: 25.53191489361702%; }
.offset2 { margin-left: 19.148936170212764%; }
.offset2:first-child { margin-left: 17.02127659574468%; }
.offset1 { margin-left: 10.638297872340425%; }
.offset1:first-child { margin-left: 8.51063829787234%; }
/* END 12 Col-Grid-Layout */

/* clearfix */
.cf:before, .cf:after {
	content: "";
	display: table;
}
.cf:after { clear: both; }

.s { font-size: 0.786em; }
.xs { font-size: 0.714em; }
.alignright { text-align: right; }
.alignleft { text-align: left; }
.aligncenter { text-align: center; }
.alignjustify { text-align: justify; }
.margintop { margin-top: 1em; }
.marginright { margin-right: 1em; }
.marginbottom { margin-bottom: 1em; }
.marginleft { margin-left: 1em; }
.right { float: right; }
.left { float: left; }

/* msg */
.msg { 
	background: rgba(191, 168, 90, 0.08); 
	border: 1px solid #BFA05A;
	color: #BFA05A;
}
.msgerror { 
	background: #FFF; 
	border: 1px solid #C00;
	color: #C00;
}
.msg, .msgerror { padding: 1em; }
.msg h2, .msgerror h2 { margin: 0 0 0.5em!important; }
.msg ul, .msgerror ul { margin-top: 0; }

/* pagenav */
.pagenav { text-align: center; }
.pagenav span a {
	font-size: 1.214em; vertical-align: bottom;
	padding: 0 2px;
}
.pagenav a, .pagenav strong { margin: 2px; padding: 2px; }
.pagenav a:hover, .pagenav strong {
	border: 1px solid;
	margin: 1px;
}
.pagenav a, .pagenav a:hover { text-decoration: none; }
.pagenav a:hover { border-style: dotted; }

/* button */
a.button, button, input[type="submit"], input[type="button"] {
	border: 0;
	transition: all 0.5s ease;
	display: inline-block;
	vertical-align: middle;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 0.875rem;
	letter-spacing: 1px;
	background: #a07f12;
	color: #fff;
	line-height: 2.5rem;
	height: 2.5rem;
	width: 10rem;
	text-decoration: none; 
	text-transform: uppercase;
	padding: 0 1rem;
	text-align: center;
	white-space: nowrap;
}
a.button.hollow {
	background: transparent; 
	border: 1px solid #a07f12;
	color: #a07f12; 
}
a.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover { 
	background: #7C5F00;
	color: #fff; 
}

/* Datepicker */
div .ui-widget-header { background: #a07f12!important; }

/* PRIMARY STYLES [layout] */
#panorama-container { position: relative; z-index: 1; }
#panorama-container::before {
	background: rgba(0,0,0,0.2);
	content: '';
	pointer-events: none;
	position: absolute; left: 0; top: 0; bottom: 0; right: 0; z-index: 1;
}
#panorama, #panorama .panorama-image { height: calc(100vh - 7.5rem); }
#panorama .panorama-image {
	background-size: cover; 
	background-position: center; 
	background-repeat: no-repeat;
}

#panoramalogo { 
	position: absolute; left: 50%; top: 2.5rem; z-index: 1; 
	transform: translateX(-50%);
}
#panoramalogo img {
	display: block;
	height: auto;
	width: 200px;
}

#sticker {
	position: absolute;
	width: 250px; height: 250px;
	max-width: 260px;
	left: 3rem;	bottom: 2.5rem;
	font-size: 1.2em;
	z-index: 1000;
	text-decoration: none;
	color: #fff;
	background: #a07f12;
	border-radius: 50%;
	padding: 5px;
	box-shadow: 1px 1px 16px 0px;
	transform: rotate(-15deg); -webkit-transform: rotate(-15deg);
	transition: background-color 0.5s linear, color 0.5s linear, border-color 0.5s linear;
}
#sticker div {
	display: table-cell;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	padding: 2rem;
	text-align: center;
	vertical-align: middle;
	width: 100%;
	height: 240px;
}
html[lang="it"] #sticker div { padding: 1.3rem; }
#sticker strong {
	color: #FFF;
	font-size: 1.47em;
	line-height: 100%;
}
#sticker:hover { background: #fff; }
#sticker:hover, #sticker:hover strong { color: #a07f12; }
#sticker:hover div { border-color: #a07f12; }

#toolbar {
	pointer-events: none;
	position: absolute; right: 0; top: 52.5vh; bottom: 0; z-index: 5000;
	transform: translateY(-50%);
}
#toolbar > div {
	pointer-events: auto;
	transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -moz-transform-origin: 100% 100%;
    -o-transform-origin: 100% 100%;
    -webkit-transform-origin: 100% 100%;
}
#toolbar .button {
	background: #a07f12;
	color: #FFF;
}
#toolbar .button:hover {
	background: #FFF;
	color: #a07f12;
}

#scroll-hint {
	z-index: 1000;
	text-align: center;
	position: absolute;
	bottom: 2rem;
	left: 50%;
	margin-left: -2rem;
	opacity: 0.8;
	width: 4rem;
	height: 4rem;
	color: #fff;
	transition: all 0.5s;
}

#scroll-hint:hover {
	cursor: pointer;
	opacity: 1;
}

#scroll-hint i {
	text-shadow: 2px 0px 10px rgba(0, 0, 0, 0.8);
	display: block;
	height: 4rem;
	width: 4rem;
	line-height: 4rem;
	font-size: 4rem;
}

.owl-theme .owl-controls{
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -2rem;
}
.owl-theme .owl-controls .owl-buttons div {
	display: inline-block;
	width: 4rem;
	height: 4rem;
	opacity: 0.8;
}
.owl-theme .owl-controls .owl-buttons .owl-prev {
	background: transparent url(/grafik/template/arrow_left.svg) 0 0 no-repeat !important;
	margin-left: 2rem;
}
.owl-theme .owl-controls .owl-buttons .owl-next {
	float: right;
    background: transparent url(/grafik/template/arrow_right.svg) 0 0 no-repeat !important;
	margin-right: 2rem;
}
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	text-decoration: none;
	opacity: 1;
}

.room-image.owl-theme .owl-controls .owl-buttons div {
	display: inline-block;
}

#panorama-buttons {
	z-index: 1000;
	position: absolute;
	top: 2.5rem;
	right: 2.5rem;
}

#panorama-buttons .button {
	float: left;
	display: block;
	margin-left: 0.5rem;
	color: #fff;
	border-color: #fff;
	width: auto;
}
#panorama-buttons .button i {
	margin-right: 8px;
	vertical-align: -6px;
}

#panorama-buttons .toggle-caption {
	float: left;
	display: block;
	height: 2.5rem;
	width: 2.5rem;
	line-height: 2.5rem;
	border: 1px solid #fff;
	text-align: center;
	cursor: pointer;
	transition: all 0.5s ease;
}

#panorama-buttons .toggle-caption:hover, #panorama-buttons .button:hover {
	background-color: #a07f12;
	border-color: #a07f12;
}

#panorama-buttons .toggle-caption i {
	margin-top: -2px;
	font-size: 1.5rem;
	color: #fff;
}

#topbar {
	border-top: 1px solid #ccc;
	background-color: #fff;
	box-shadow: 0px 3px 3px 0px rgba(0,0,0,0.2);
	width: 100%;
	position: relative;
	z-index: 1000;
}
#logo {
	padding: 1rem 2.5rem 0;
	position: absolute; left: 0; top: 0;
}
#logo > a:nth-child(2) { display: none; }
body.infopage #logo > a:nth-child(2), #topbar.fixed #logo > a:nth-child(2) { display: block; }
#logo img {
	display: block;
	height: auto;
	width: 100%; max-width: 105px;
}
#logoalt {
	color: #a07f12;
	font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 1.5em;
	margin-top: 5px;
	text-transform: uppercase;
}
body.infopage #logoalt, #topbar.fixed #logoalt { display: none; }

#nav-container {
	height: 119px;
	padding: 4.3rem 2.5rem 0.7rem;
	text-align: center;
}

.ls-nav {
	font-weight: bold;
	display: inline-block;
	margin-right: 10px;
}
.icons { display: inline-block; }
#contact {
	padding: 1rem 2.5rem 0;
	position: absolute; right: 0; top: 0;
}
#phone-btn, #mail-btn { display: none; }

/* Toggle */
#nav-toggle {
	display: none;
	position: relative;
	float: right;
	background: transparent;
	border: none;
	cursor: pointer;
	outline: 0;
	width: 1.375rem;
	height: 2.5rem;
	padding: 0;
	margin: 1.5rem;
}
#nav-toggle .icon-bar {
	display: block;
	width: 1.375rem;
	height: 0.125rem;
	background-color: #000;
	transition: all 0.2s;
}
#nav-toggle .icon-bar + .icon-bar { margin-top: 0.25rem; }
#nav-toggle .top-bar { transform: rotate(0deg); }
#nav-toggle .middle-bar { opacity: 1; }
#nav-toggle .bottom-bar { transform: rotate(0deg); }
#nav-toggle.expanded .top-bar {
	transform: rotate(45deg);
	transform-origin: 10% 10%;
}
#nav-toggle.expanded .middle-bar { opacity: 0; }
#nav-toggle.expanded .bottom-bar {
	transform: rotate(-45deg);
	transform-origin: 10% 90%;
}

#topbar.fixed, #topbar.infopage {
	position: fixed; top: 0; left: 0; right: 0;
	bottom: auto;
}
#topbar-placeholder {
	width: 100%;
	height: 7.5rem;
	display: none;
}
#contact i {
	display: none;
	line-height: 2.5rem;
	font-size: 1.25rem;
}
#contact > * { margin-left: 0.5rem; }
#contact > *:first-child { margin-left: 0; }
#contact .showicon { width: auto; }
#contact .showicon i { display: inline-block; }
#contact .request, #contact .showicon { background: #fff; }
#contact .request:hover, #contact .showicon:hover {
	background: #a07f12;
	color: #fff;
}
#contact .book { background: #a07f12; }
#contact .book:hover { background: #705b35; }
#photogallery-btn {	
	position: absolute; z-index: 1; right: 2.5rem; top: 68px;
	width: auto; min-width: 160px;
}
#photogallery-btn i { display: inline-block!important; }
#photogallery-btn span { margin-left: 0.6em; }

#whatsapp-btn {
	position: absolute;
	z-index: 1;
	right: 13.25rem;
	top: 68px;
	width: auto;
	min-width: 50px;
}
#whatsapp-btn img {
	width: 22px;
	vertical-align: -5px;
}

#logo a {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	line-height: 2.5rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #a07f12;
}

#nav a {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	transition: all 0.3s;
}

#nav > ul > li { display: inline-block; }

#nav > ul > li > a {
	height: 2.5rem;
	line-height: 2.5rem;
	color: #a07f12;
	font-size: 0.875rem;
	padding: 0 1.25rem;
	display: inline-block;
}

#nav > ul > li.active > a {
	font-weight: 700;
}

#nav > ul > li:hover > a {
	color: #7C5F00;
}
#nav > ul > li:before {
	content: '';
	display: none;
	height: 70px;
	position: absolute; left: 0; right: 0; top: -1px; z-index: 1;
}
body.menudown #nav > ul > li:before { 
	height: 13px;
	top: 109px;
}
#nav > ul > li:hover:before { display: block; }
#nav > ul ul {
	background: #a07f12;
	display: none;
	padding: 0.5em;
	position: absolute; z-index: 1; top: -41px; left: 0; right: 0;
	text-align: center;
}
body.menudown #nav > ul ul { top: 121px; }
@media screen and (min-width: 1261px) {
	#nav > ul > li:hover > ul { display: block; }
}
#nav > ul ul > li {
	display: inline-block;
	padding: 0 1.25rem;
}
#nav > ul ul > li + li { border-left: 1px solid #FFF; }
#nav > ul ul > li a {
	color: #FFF; 
	font-size: 0.9em;
	text-transform: none;
}
#nav > ul ul > li:hover > a, #nav > ul ul > li.active a { text-decoration: underline; }
	
#container {
	max-width: 1920px;
	margin: 0 auto;
}

#main {
	background-color: #f5f2e7;
	padding: 6.5rem 0;
}

#article header { position: relative; }
#article header h1 {
	text-align: right;
	width: 50%;
	padding-right: 1rem;
	margin: 0;
}
#article h1 { color: #a07f12; }
#article a { text-decoration: underline; }
#article a.button { text-decoration: none; }

#article header h2 { 
	text-align: left;
	font-family: 'Raleway', sans-serif;
	font-size: 1.25rem;
	line-height: 1.875;
	letter-spacing: 1px;
	text-transform: uppercase;
	width: 50%;
	position: absolute;
	right: 0;
	bottom: 0.5rem;
	margin: 0;
	padding-left: 1rem;
}

#article p.two-columns {
	-webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
	-webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
	line-height: 1.875;
}

.quicklink {
	background-color: #f8f8f8;
	margin: 1.25rem 0;
}
.quicklink-image {
	width: 66.66%;
	float: left;
}
.quicklink-text {
	width: 33.33%;
	float: left;
	display: flex;
	align-items: center;
}
.quicklink-text > div {
	padding: 15%;
	text-align: center;
	max-width: 100%; 
}
.quicklink-text h3, #advantages .title {
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	color: #a07f12;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.quicklink-text h3 {
	font-family: 'Antro Vectra';
	font-weight: bold;
	font-size: 2.5em;
	margin-bottom: 1.5em;
	text-transform: none;
}
.quicklink-text a {
	display: block;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	color: #a07f12;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.quicklink-text a:before {
	display: block;
	content: '';
	height: 0.25rem;
	width: 5rem;
	background-color: #a07f12;
	margin: 2rem auto;
}
.quicklink-text a > i {
	margin-left: 0.2rem;
	font-size: 1.25rem;
	margin-top: -2px;
}
.quicklink-text a:hover { color: #7C5F00;}

#advantages {
	height: auto!important;
	padding-top: 2em; padding-bottom: 2em;
}
#advantages-inner {
	display: table;
	width: 100%;
}
#advantages-inner > * {
	display: table-cell;
	width: 60%;
	vertical-align: top;
}
#advantages-list { 
	padding-right: 2rem;
	width: 40%;
}
#advantages-list ul { 
	list-style: none;
	padding-left: 0;
}
#advantages-list ul li {
	cursor: pointer;
	color: #BBB;
}
#advantages-list ul li i {
	color: #BBB;
	font-size: 2em;
	margin-right: 0.6em;
}
#advantages-list ul li.active { color: #333; }
#advantages-list ul li.active i { color: #a07f12; }
#advantages-list ul li > div {
	display: table;
	width: 100%
}
#advantages-list ul li > div > * {
	display: table-cell;
	vertical-align: top;
}
#advantages-list ul li > div > *:first-child { width: 52px; }
#advantages-description {
	position: relative; z-index: 1;
	padding-left: 2rem;
	vertical-align: middle;
}
#advantages-description .quote {
	color: #CCC;
	font-size: 3em;
	position: absolute; top: 0; left: 2rem; z-index: 1;
}
#advantages-description .quote.quote-down { left: auto; top: auto; bottom: 0; right: 0; }
#advantages-description-inner {
	display: table-cell;
	padding: 1.5rem 3.5rem;
	vertical-align: middle;
}
#advantages-description-inner > * {
	display: table-cell;
	opacity: 0;
	position: fixed; left: -10000px; z-index: 1;
	text-align: justify;
	transition: opacity 1s linear; -webkit-transition: opacity 1s linear; -moz-transition: opacity 1s linear; -o-transition: opacity 1s linear;
	vertical-align: middle;
}
#advantages-description-inner > *.active { 
	opacity: 1;
	position: static; left: 0; 
}

.offers-showcase {
	padding: 6.25rem 0;
	text-align: center;
}
.offers-showcase .more-offers {
	display: block;
	color: #a07f12;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 3rem 0;
}
.offers-showcase .more-offers:hover { color: #7C5F00; }
.offers-showcase .more-offers i {
	font-size: 1.125rem;
	margin-top: -2px;
	margin-left: 0.25rem;
}
.offer { background-color: #f5f2e7; }
.offer-content {
	position: relative;
	overflow: hidden;
}
.offer-content > div { padding: 2rem 2rem 0 2rem; }
.offer h3 {
	display: block;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.125rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin: 1rem 0;
}
.offer .offer-period { font-style: italic; }
.offer .offer-price { font-size: 1.5rem; }
.offer .offer-price .price {
	font-size: 2.25rem;
	font-weight: 700;
	margin: 0 0.5rem;
}
.offer .offer-price .info {
	display: block;
	font-family: 'Raleway', sans-serif;
	font-size: 0.875rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 1rem;
}
.offer .button {
	position: absolute;
	bottom: 0.75rem;
	left: 2rem;
	right: 2rem;
	width: auto;
}

#footer-container {
	background-color: #968c76;
	color: #FFF;
	padding: 6.25rem 0;
}
#footer-container a { color: #FFF; }
#footer-contact h2 {
	font-weight: 600;
	display: block;
	font-family: 'Raleway', sans-serif;
	font-size: 1.5rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 2rem;
}
#footer-contact h2.newsletter-title { margin-bottom: 0.2em; }

#footer-contact ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#footer-contact ul li { line-height: 2rem; }
#footer-contact .button {
	display: block;
	width: 80%;
	background-color: #776c53;
	color: #fff;
	margin-top: 1em;
	max-width: 250px;
}
#footer-contact .button i {
	margin-top: -2px;
	font-size: 1rem;
	margin-right: 0.5rem;
}
#footer-contact .newsletter form { max-width: 500px; }
#footer-contact input[type="text"] {
	float: left;
	width: 60%;
	height: 2.5rem;
	border: 0;
	padding: 0.5rem 1rem;
	font-family: 'PT Serif', serif;
	background-color: #FFF;
}
#footer-contact input[type="text"]::-webkit-input-placeholder {
	color: #999;
	font-style: italic;
}
#footer-contact input[type="submit"] {
	color: #fff;
	float: left;
	width: 40%;
	background-color: #776c53;
	border: 0;
}
#footer-contact .button:hover, #footer-contact input[type="submit"]:hover { background-color: #867c67; }
#footer-contact .social-media-block {
	display: flex;
	gap: 10px;
	margin: 0.35em 0 0.5em 0;
}
#footer-contact .social-media-block img { height: 30px; }

#footerlogos { margin-top: 1.5em; }
#footerlogos h2 { margin-bottom: 0.2em; }
#footerlogos .logos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}
#footerlogos .logos > a {
	background: #FFF;
	box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
	display: table;
	float: left;
	height: 90px;
	padding: 8px 16px;
	width: calc(92% - 72.3px); max-width: 150px;
}
#footerlogos .logos > a.gardenmaisonette { background: transparent; }
#footerlogos .logos > a > div {
	display: table-cell;
	vertical-align: middle;
}
#footerlogos img { 
	height: auto;
	width: 100%;
}

#otherlogos {
	margin-top: 2.5em;
	text-align: right;
}

#otherlogos img {
	background: #fff;
	padding: 0.5em;
}

#footer {
	padding-top: 2rem;
	border-top: 1px solid #FFF;
	margin-top: 2rem;
}

#languageselect { text-align: right; }

/* START Hinweisbox */
.hint-container {
	position: fixed; z-index: 10001; bottom: -310px; right: -600px;
	transition: right 0.6s cubic-bezier(0, 0, 0, 0.97), bottom 0.6s cubic-bezier(0, 0, 0, 0.97);
	-webkit-transition: right 0.6s cubic-bezier(0, 0, 0, 0.97), bottom 0.6s cubic-bezier(0, 0, 0, 0.97); 
	-moz-transition: right 0.6s cubic-bezier(0, 0, 0, 0.97), bottom 0.6s cubic-bezier(0, 0, 0, 0.97);
	-o-transition: right 0.6s cubic-bezier(0, 0, 0, 0.97), bottom 0.6s cubic-bezier(0, 0, 0, 0.97);
	text-align: right;
	width: 550px;
}
.hint-container.show { bottom: 1em; right: 1em; }
.hint-innercontainer {
	background: #FFF;
	box-shadow: 0px 4px 15px -4px rgba(0,0,0,0.75); -webkit-box-shadow: 0px 4px 15px -4px rgba(0,0,0,0.75); -moz-box-shadow: 0px 4px 15px -4px rgba(0,0,0,0.75);
	display: table;
	table-layout: fixed; text-align: left;
	width: 100%;
}
.hint-innercontainer > * {
	display: table-cell;
	vertical-align: top;
}
.hint-image {
	background-position: center; background-repeat: no-repeat; background-size: cover; background-image: url('/grafik/template/hotelclosed.jpg');
	width: 200px;
}
.hint-content {
	box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
	font-size: 1.05em;
	line-height: 1.35em;
	position: relative; z-index: 1;
	width: 350px;
}
.hint-remove { cursor: pointer; }
.hint-content .hint-remove { position: absolute; z-index: 1; right: 1em; top: 1.15em; }
.hint-content .hint-remove img {
	display: block;
	height: 14px;
	width: 14px;
}
.hint-title {
	background: #333;
	color: #FFF;
	padding: 1em;
}
.hint-content p { 
	font-size: 0.9em;
	line-height: 1.3em;
	margin: 0;
	padding: 1em;
}
.hint-buttoncontainer { 
	margin-left: 1em; margin-right: 1em; margin-top: 1em; margin-bottom: 1em;
	text-align: right;
}
.hint-content .button { font-size: 0.8em; }
.hint-innercontainer-mobile {
	background: #a07f12;
	box-shadow: 0px 4px 15px -4px rgba(0,0,0,0.75); -webkit-box-shadow: 0px 4px 15px -4px rgba(0,0,0,0.75); -moz-box-shadow: 0px 4px 15px -4px rgba(0,0,0,0.75);
	color: #FFF!important;
	display: none;
	margin-top: 1em;
	padding: 0.5em;
	text-decoration: none!important;
}
.hint-innercontainer-mobile .hint-remove { margin-left: 0.8em; }
@media screen and (max-width: 680px) {
	.hint-innercontainer { display: none; }
	.hint-innercontainer-mobile { display: inline-block; }
}
@media screen and (max-width: 340px) {
	.hint-innercontainer-mobile { font-size: 0.9em; }
}
/* END Hinweisbox */

/* CONTENT */
h2.headline {
	font-family: 'PT Serif', serif;
	font-size: 3.75rem;
}

/* Fragmente */
.brochures {
	display: table;
	margin-top: 4em;
	width: 100%;
}
.brochures > * {
	display: table-cell;
	text-align: center;
	width: 50%;
}
.brochures > *:first-child { padding-right: 1em; }
.brochures > *:nth-child(2) { padding-left: 1em; }
.brochures .brochure {
	background: #f8f8f8;
	margin: 0 auto;
	max-width: 350px;
}
.brochures img {
	display: block;
	height: auto;
	width: 100%;
}
.brochures .brochure-title {
    font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 1.125rem;
    letter-spacing: 1px;
	margin: 1rem 1em;
    text-transform: uppercase;
}
.brochures .brochure-buttons { padding: 1em; }
.brochures .brochure-buttons > * { 
	display: block; 
	width: 100%;
}
.brochures .brochure-buttons > * + * { margin-top: 0.7em; }
@media screen and (max-width: 750px) {
	.brochures, .brochures > * { display: block; }
	.brochures > * { 
		padding: 0!important;
		width: 100%;
	}
	.brochures > * + * { margin-top: 2em; }
} 

#lts-apwidget-container {
	border: none;
	margin: 0 auto;
	max-width: 920px;
	position: relative; z-index: 1;
}
#lts-apwidget-container * { color: #333; }
#article .type-location-search-container, #article .back-to-home-container, #article .widget-controller-container { display: none; }
#lts-apwidget-container .widget-search-result-container .list, #article #lts-apwidget-container .ajax-loadoverlay,
#lts-apwidget-container .widget-search-container > .search-input-container { background: transparent; }
#lts-apwidget-container.resp-s .widget-search-container > .search-input-container { padding: 0; }
#article #search {
	border: 1px solid #CCC;
	padding: 0.5rem;
}
#article #lts-apwidget-container .widget-search-result-container > .paging-container > * {
	border: none; border-bottom: 1px solid #FFF;
	color: #333;
	line-height: 2.5rem;
	height: 2.5rem;
	transform: none!important;
}
#lts-apwidget-container .widget-search-result-container > .paging-container > .actualPage {
	color: #a07f12;
	border-bottom-color: #a07f12!important;
}
#lts-apwidget-container .widget-search-result-container > .paging-container > * { font-size: 1em!important; }
#article #lts-apwidget-container .widget-search-result-container > .paging-container > *:hover { border-bottom-color: transparent; }
#lts-apwidget-container .widget-search-result-container > .paging-container > .pagingNavigationArrows { vertical-align: top; }
#lts-apwidget-container .widget-search-result-container > .paging-container > .info { 
	background: transparent;
	border-bottom: none!important;
}
#lts-apwidget-container .widget-search-result-container .minimal-detail-container > .minimal-detail-wrapper > .title-container > a { color: #a07f12; }
#lts-apwidget-container .widget-detail-page-container > .detail-container > .title-container > .button-container > button, 
#lts-apwidget-container .widget-webcam-detail-page-container > .detail-container > .title-container > .button-container > button,
#lts-apwidget-container .widget-detail-page-container > .detail-container > .gallery-map-container .gallery-map-button-container > .gallery-map-button {  background: #a07f12; }
#lts-apwidget-container .widget-detail-page-container > .detail-container > .title-container > .button-container > button > *, 
#lts-apwidget-container .widget-webcam-detail-page-container > .detail-container > .title-container > .button-container > button > *,
#lts-apwidget-container .widget-detail-page-container > .detail-container > .gallery-map-container .gallery-map-button-container > .gallery-map-button > * { color: #FFF!important; }
#lts-apwidget-container .widget-detail-page-container > .detail-container > .title-container > .button-container > button:hover, 
#lts-apwidget-container .widget-webcam-detail-page-container > .detail-container > .title-container > .button-container > button:hover,
#lts-apwidget-container .widget-detail-page-container > .detail-container > .gallery-map-container .gallery-map-button-container > .gallery-map-button:hover { background: #705b35; }
#lts-apwidget-container .widget-detail-page-container > .detail-container > .title-container > .text-container, 
#lts-apwidget-container .widget-webcam-detail-page-container > .detail-container > .title-container > .text-container { color: #333; }

.signature {
	font-family: Antro Vectra;
	font-size: 2.25em;
	font-weight: bold;
}
.highlight {
	border: 2px solid #a07f13;
	font-size: 1.15em;
	padding: 1em;
	margin-top: 3em;
}
.slogan {
	margin: 3em 0;
}
.slogan .img { text-align: center; }
.slogan .img img {
	border-radius: 440px;
	display: inline-block;
	width: 220px;
}
.slogan .img a { max-width: none!important; }
.slogan .content {
	text-align: center;
	margin-top: 1em;
}

.maps-btn { background-color: #a07f12!important; }

/* END CUSTOM PART */

/* START Room Fragment */
.rooms { margin: 4em 0; }
.room {
	background-color: #fff;
	margin-bottom: 1rem;
	position: relative;
}
.room-title {
	float: left;
	width: 70%;
}
.room-title h3 {
	display: block;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	font-size: 1.5rem;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.room-title span { font-weight: bold; }
.room-price {
	float: left;
	width: 30%;
	font-size: 1.125rem;
}
.room-price .price {
	font-size: 1.5rem;
	margin-right: 0.2rem;
	font-weight: bold;
}
.room-price .info {
	font-size: 0.875rem;
	font-style: italic;
}
.room-sketch {
	float: right;
	padding: 1rem;
}
.room-description { padding: 2rem; }
.room-description > header {
	padding-bottom: 1rem;
}
.room-description .button-container {
	width: 100%;
	margin-top: 1.5rem;
}
.room-description .button-container .button {
	float: left;
	display: block;
	width: 32%;
	margin-right: 2%;
	background: #a07f12;
}
.room-description .button-container .button:last-child { margin-right: 0; }
.room-description .button-container .button:hover { background: #7C5F00; }
.room-price { text-align: right; }
.infoblock {
	background-color: #fff;
	padding: 10%;
}

@media screen and (max-width: 1200px) {
	.room-image { padding: 2rem 0 0 2rem; }
	.room-description .button-container .button {
		float: none;
		width: 100%;
		margin: 0.5rem 0;
	}
}
@media screen and (max-width: 960px) {
	.room-image { padding: 0; }
}
@media screen and (max-width: 585px) {
	.room-title {
		float: none;
		width: 100%;
		text-align: center;
		margin-bottom: 1rem;
	}
	.room-price {
		float: none;
		width: 100%;
		text-align: center;
	}
}
/* END Room Fragment */

/* Responsive Videos */
#article .video-container {
	position: relative; z-index: 1;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
#article .video-container iframe,  
#article .video-container object,  
#article .video-container embed {
	position: absolute; top: 0; left: 0; z-index: 11;
	width: 100%; height: 100%;
}

/* Responsive Images */
.responsiveimages {
	clear: both;
	overflow: auto;
}
.responsiveimages a { 
	border-bottom: none!important;
	display: inline-block;
	float: left;
	margin-left: 0.5%;
	text-decoration: none;
	width: 100%;
}
.responsiveimages a:first-child { margin-left: 0!important; }
.responsiveimages.fullwidth a { margin-left: 0; }
.responsiveimages.portrait a { width: 100%; max-width: 300px; }
.responsiveimages.fiftyfifty a { width: 49.75%; }
.responsiveimages.thirty a, .responsiveimages.three a { width: 33%; }
.responsiveimages.thirtyfsixtyf a:first-child, .responsiveimages.sixtyfthirtyf a:nth-child(2), 
.responsiveimages.sixtyfthirtyfx2 a:nth-child(2), .responsiveimages.sixtyfthirtyfx2 a:nth-child(3), .responsiveimages.sixtyfx2thirtyf .leftside { width: 34.65%; }

.responsiveimages.thirtyfsixtyf a:nth-child(2), .responsiveimages.sixtyfthirtyf a:first-child, 
.responsiveimages.sixtyfthirtyfx2 a:first-child, .responsiveimages.sixtyfx2thirtyf .rightside { width: 64.85%; }

.responsiveimages.sixtyfthirtyfx2 a:nth-child(3) { margin-top: 0.5%; }

.responsiveimages.sixtyfx2thirtyf a { margin-left: 0!important; }
.responsiveimages.sixtyfx2thirtyf a:nth-child(2) { margin-top: 1.5%; }
.responsiveimages.sixtyfx2thirtyf > div { 
	display: inline-block;
	float: left;
	height: 100%;
}
.responsiveimages.sixtyfx2thirtyf .rightside { margin-left: 0.5%; }

.responsiveimages a img {
	height: auto;
	vertical-align: middle;
	width: 100%;
}
@media screen and (max-width: 560px) {
	.responsiveimages.sixtyfthirtyfx2 > *, .responsiveimages.sixtyfx2thirtyf .leftside > * { width: 49.75%!important; }
	.responsiveimages.sixtyfthirtyfx2 > *:first-child {
		margin-bottom: 0.5%;
		width: 100%!important;
	}
	.responsiveimages.sixtyfthirtyfx2 > *:nth-child(2) { margin-left: 0!important; }
	.responsiveimages.sixtyfthirtyfx2 > *:nth-child(3) { margin-top: 0!important; }
	
	.responsiveimages.sixtyfx2thirtyf .leftside { width: 100%; }
	.responsiveimages.sixtyfx2thirtyf .rightside {
		margin-top: 0.5%; margin-left: 0;
		width: 100%;
	}
	.responsiveimages.sixtyfx2thirtyf .leftside > *:nth-child(2) { margin-left: 0.5%!important; margin-top: 0; }
}
@media screen and (max-width: 500px) {
	.responsiveimages.thirty a, .responsiveimages.three a { 
		margin-left: 0!important; 
		margin-bottom: 0.25em; 
		width: 100%; 
	}
}
@media screen and (max-width: 400px) {
	.responsiveimages.fiftyfifty a {
		margin-left: 0;
		width: 100%;
	}
	.responsiveimages.fiftyfifty a:nth-child(2) { margin-top: 0.5%; }
}

/* Table-Container */
.tablecontainer { overflow: auto; }

/* Cookie Hint */
#cookiehint {
	background: #000; background: rgba(0, 0, 0, 0.8);
	box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
	width: calc(100% - 20px); max-width: 400px;
	color: #fff!important;
	line-height: 20px;
	padding: 0.5em;
	position: fixed; z-index: 10000; left: 10px; bottom: 10px;
}
#cookiehint.bottom-higher { bottom: 40px; }
#cookiehint p {
	margin: 0; margin-right: 38px;
	color: #fff!important;
}
#cookiehint a {
	border: none!important;
	color: #fff!important;
	text-decoration: underline!important;
}
#cookiehint a[href="javascript:;"] { position: absolute; z-index: 1; right: 5px; top: 5px; }
#cookiehint a:hover { text-decoration: none!important; }
#cookiehint.light { background: #fff; background: rgba(255, 255, 255, 0.8); }
#cookiehint.light, #cookiehint.light p, #cookiehint.light a { color: #630!important; }
#cookiehint.top { top: 10px; bottom: initial; }

/* Advanced Cookie Hint */
#advanced-cookiehint-overlay {
	background: rgba(0, 0, 0, 0.5);
	position: fixed; top: 0; bottom: 0; left: 0; right: 0; z-index: 10000;
}
#advanced-cookiehint {
	background: #fff;
	box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
	color: #000!important;
	font-size: 0.9em;
	line-height: 120%;
	max-height: calc(100vh - 20px);
	overflow: auto;
	padding: 1.5em;
	position: fixed; z-index: 10000; left: 50%; top: 50%; z-index: 101;
	transform: translate(-50%, -50%);
	width: calc(100% - 20px); max-width: 700px;
}
#advanced-cookiehint h2 {
	font-size: 1em; font-weight: bold;
	margin: 0 0 0.75em;
}
#advanced-cookiehint p {
	color: #000!important;
	font-size: 0.9em;
	line-height: 130%;
	margin: 0;
}
#advanced-cookiehint-actions {
	display: flex;
	font-size: 1em;
	gap: 20px;
	margin: 1.5em 0 0;
}
#advanced-cookiehint-actions a {
	border: none!important;
	text-decoration: none!important; text-align: center;
	line-height: 30px;
	font-size: 0.8em;
	width: auto;
	height: auto;
	padding: 0.5em 2em;
}
#advanced-cookiehint-privacy { margin: 0.5em 0 0.75em!important; }
#advanced-cookiehint-privacy a {
	display: block;
	font-size: 0.9em;
	margin-top: 1em;
}
.advanced-cookiehint-switch {
    display: inline-block;
    margin-top: 0.75em;
    white-space: nowrap;
}
.advanced-cookiehint-switch .label {
	cursor: pointer;
	font-size: 0.9em;
	margin: 0;
}
#tracking-switch, #essential-switch { margin-left: 1em; }
#advanced-cookiehint-save {
	background: #f1f1f1;
	color: #000;
}
#advanced-cookiehint p a { text-decoration: underline!important; }
#advanced-cookiehint.light { background: #fff; background: rgba(255, 255, 255, 0.8); }
#advanced-cookiehint.light, #advanced-cookiehint.light p, #advanced-cookiehint.light a:not(.button) { color: #333!important; }
@media screen and (max-width: 510px) {
    #advanced-cookiehint-actions, #advanced-cookiehint-actions a { display: block; }
    #advanced-cookiehint-actions a + a  { margin-top: 0.75em; }
}

/* Media Queries */
@media screen and (max-width: 1560px) {
    #nav > ul > li > a {
        padding: 0 0.5rem;
    }
}
@media screen and (max-width: 1366px) {
	#contact .button {
		width: 8rem;
		padding: 0 0.5rem;
	}
	#contact .button.showicon { width: auto; }
	#contact .request { margin-right: 0.2rem; }
	
	#photogallery-btn { min-width: 128px; }
	#photogallery-btn i { display: none!important; }

	#whatsapp-btn {
		right: 11.5rem;
		padding: 0 0.5rem;
	}
}

@media screen and (max-width: 1315px) {
	#panorama, #panorama .panorama-image { height: calc(100vh - 123px); }
	#panorama .panorama-image {
		background-size: cover; 
		background-position: center; 
		background-repeat: no-repeat;
	}
	#topbar-placeholder { height: 123px; }
	#logo {
		float: left;
		position: static;
		padding: 1rem 1.5rem; padding-right: 0;
	}
	#contact {
		position: static;
		padding: 1.5rem 0;
		float: right;
	}
	#photogallery-btn {
		min-width: 177px;
		padding: 0 0.7rem;
		top: 72px; right: 1.3rem;
	}
	#photogallery-btn i { display: inline!important; }
	#whatsapp-btn {
		top: 72px;
		right: 13.3rem;
	}
	#nav { font-size: 0.9em; }
	#nav-container { padding: 0; }
	#nav-toggle { display: block; }
	#nav {
		background-color: #f8f8f8;
		height: calc(100vh - 119px);
		opacity: 1;
		overflow-y: auto; overflow-x: hidden;
		padding: 0;
		position: fixed; left: -1260px; top: 119px; z-index: 100000;
		transition: left 0.2s ease-in-out; -webkit-transition: left 0.2s ease-in-out; -moz-transition: left 0.2s ease-in-out; -o-transition: left 0.2s ease-in-out;
		width: 100%;
	}
	body.mobilemenu #nav { left: 0; }
	body.showmobilemenu #panorama-container, body.showmobilemenu #container { display: none; }
	
	#nav > ul > li {
		display: block;
		border-top: 1px solid #ccc;
	}
	#nav > ul > li > a {
		color: #333;
		display: block;
		height: 2.75rem;
		padding: 0.25em 0.5em;
		transition: none;
	}
	#nav ul li:last-child { border-bottom: none; }
	#nav > ul > li:hover > a, #nav > ul > li:hover > .icon, #nav > ul > li.active > a, #nav > ul > li.active > .icon { background-color: #e6e6e6; }
	#nav > ul > li:hover > a, #nav .icon:hover { color: #333; }
	#nav > ul > li:before { display: none!important; }
	#nav > ul ul {
		background: #FFF;
		display: block;
		position: static;
	}
	#nav > ul > li.active > ul { display: block; }
	#nav > ul ul li { 
		border-left: none!important;
		display: block;
		padding: 0.25em 0.5em;
	}
	#nav > ul ul > li a { color: #333; }
	#nav .icon { cursor: pointer; }
	#nav .icon i {
		height: 16px;
		line-height: 9px;
	}

    #nav > ul > li > a {
        padding: 0 1.25rem;
    }
	
	body.infopage #topbar-placeholder { height: 70px!important; }
	
	.quicklink-text > div { padding: 10%; }
	.offer .offer-price { font-size: 1rem; }
	.offer .offer-price .price { font-size: 1.5rem; }
	.offer-content > div {
		font-size: 0.8rem;
		padding: 1rem;
	}

	#phone-top-btn, #mail-top-btn { display: none; }
	#phone-btn {
		display: block;
		position: absolute;
		z-index: 1;
		right: 21.5rem;
		top: 72px;
		width: auto;
		min-width: 50px;
		padding: 0 10px;
	}
	#phone-btn i { vertical-align: -6px; }

	#mail-btn {
		display: block;
		position: absolute;
		z-index: 1;
		right: 17.35rem;
		top: 72px;
		width: auto;
		min-width: 50px;
		padding: 0 10px;
	}
	#mail-btn i { vertical-align: -6px; }
}

@media screen and (max-width: 1080px) {
	.offer-content > div { padding: 1rem; }
	.offer .button { bottom: 1rem; left: 1rem; right: 1rem; }
	.button-arrival-container {
		width: 100%;
		margin: 2rem 0 0 0;
	}
}

@media screen and (max-width: 1023px) {
	#photogallery-btn { 
		min-width: 0;
		right: 0.7rem; 
	}
	#photogallery-btn > i { display: inline-block!important; }
	#photogallery-btn > span { display: none!important; }

	#whatsapp-btn { right: 4.4rem; }
	#mail-btn { right: 8.2rem }
	#phone-btn { right: 12.05rem; }
}

@media screen and (max-width: 960px) {
	/* medium grid */
	.col-m-1  { width: 6.382978723404255%; }
	.grid-container.nogutter .col-m-1, .grid-container .row.table .col-m-1 { width: 8.333%; }
	.col-m-2  { width: 14.893617021276595%; }
	.grid-container.nogutter .col-m-2, .grid-container .row.table .col-m-2 { width: 16.66%; }
	.col-m-3  { width: 23.404255319148934%; }
	.grid-container.nogutter .col-m-3, .grid-container .row.table .col-m-3 { width: 25%; }
	.col-m-4  { width: 31.914893617021278%; }
	.grid-container.nogutter .col-m-4, .grid-container .row.table .col-m-4 { width: 33.33%; }
	.col-m-5  { width: 40.42553191489362%; }
	.grid-container.nogutter .col-m-5, .grid-container .row.table .col-m-5 { width: 41.66%; }
	.col-m-6  { width: 48.93617021276595%; }
	.grid-container.nogutter .col-m-6, .grid-container .row.table .col-m-6 { width: 50%; }
	.col-m-7  { width: 57.44680851063829%; }
	.grid-container.nogutter .col-m-7, .grid-container .row.table .col-m-7 { width: 58.33%; }
	.col-m-8  { width: 65.95744680851064%; }
	.grid-container.nogutter .col-m-8, .grid-container .row.table .col-m-8 { width: 66.66%; }
	.col-m-9  { width: 74.46808510638297%; }
	.grid-container.nogutter .col-m-9, .grid-container .row.table .col-m-9 { width: 75%; }
	.col-m-10 { width: 82.97872340425532%; }
	.grid-container.nogutter .col-m-10, .grid-container .row.table .col-m-10 { width: 83.33%; }
	.col-m-11 { width: 91.48936170212765%; }
	.grid-container.nogutter .col-m-11, .grid-container .row.table .col-m-11 { width: 91.66%; }
	.col-m-12 { width: 100%; }
	.grid-container.nogutter .col-m-12, .grid-container .row.table .col-m-12 { width: 100%; }

	.m-space { margin-left: 2.127659574468085%!important; margin-right: 2.127659574468085%!important; }
	.row.table .m-space { padding: 0.7em 1em!important; }
	.m-space-left { margin-left: 2.127659574468085%!important; }
	.row.table .m-space-left { padding-left: 1em!important; }
	.m-space-right { margin-right: 2.127659574468085%!important; }
	.row.table .m-space-right { padding-right: 1em!important; }

	.m-clearspace { margin: 0!important;}
	.row.table .m-clearspace { padding: 0; }
	.m-clearspace-left { margin-left: 0!important; }
	.row.table .m-clearspace-left { padding-left: 0!important; }
	.m-clearspace-right { margin-right: 0!important; }
	.row.table .m-clearspace-right { padding-right: 0!important; }

	#article header h1 {
		text-align: center;
		width: 100%;
		text-align: center;
		margin-bottom: 2.5rem;
	}
	#article header h2 {
		position: static;
		width: 100%;
		text-align: center;
		padding: 0;
		margin-bottom: 1.5rem;
	}
	#article p.two-columns {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		text-align: center;
	}
	#panorama-buttons {
		top: auto;
		right: 1.5rem;
		bottom: 1.5rem;
	}
	.offer { margin-bottom: 2.5rem; }
	.offer-content > div {
		padding: 2rem 2rem 0 2rem;
	}
	.offer .offer-price { font-size: 1.5rem; }
	.offer .offer-price .price { font-size: 2.25rem; }
	.offer .button { bottom: 2rem; left: 2rem; right: 2rem; }
	.quicklink-image {
		width: 100%;
		float: none;
	}
	.quicklink-text {
		width: 100%;
		float: none;
	}
	.quicklink-text > div {
		width: 100%;
		max-width: 100%;
		padding: 15%;
		text-align: center;
	}
	#footer-contact > .row > div { margin-bottom: 3.5rem; }
	
	#footerlogos { display: none; }
	
	#otherlogos {
		margin-top: 0;
		text-align: center;
	}
	
	#footer-contact .button { margin: 1em auto 0; }
	#footer-contact > .row > * { text-align: center; }
	#footer-contact .newsletter { 
		margin: 0 auto;
		max-width: 550px;
	}
	#footer-contact .newsletter form { max-width: none; }
	#footer-contact .social-media-block { justify-content: center; }
}

@media screen and (max-width: 900px) {
	#advantages-inner, #advantages-inner > * { display: block; }
	#advantages-inner > * { 
		padding: 0;
		width: 100%;
	}
	#advantages-list ul {
		clear: both;
		overflow: auto;
	}
	#advantages-list ul > li {
		display: inline-block;
		margin: 7px;
	}
	#advantages-list ul li i { margin-right: 6px; }
	#advantages-list ul li > div > *:first-child { width: 38px; }
	#advantages-list ul li > div > *:nth-child(2) { padding-top: 3px; }
	
	#advantages-description .quote { left: -10px; }
	#advantages-description .quote.quote-down { left: auto; right: -10px; }
	#advantages-description-inner { padding-right: 2.5rem; padding-left: 2.5rem; }
}

@media screen and (max-width: 767px) {	
	#contact .button {
		width: 2.5rem!important;
		height: 2.5rem;
		padding: 0;
	}
	#contact .button span { display: none; }
	#contact .button i { display: block; }

	#sticker {
		width: 200px; height: 200px;
		font-size: 0.85em;
		bottom: -3.5rem;
	}
	#sticker div { height: 190px }
	
	#panorama { margin-top: 123px; }
	#panorama, #panorama .panorama-image { height: 65vw; max-height: calc(100vh - 89px); }
	#panoramalogo { display: none; }
	#topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 3; }
	
	#logo > a:nth-child(2) { display: block!important; }
	#logoalt { display: none!important; }
	
	#nav-container { height: auto; }
	#nav {
		height: calc(100vh - 122px);
		top: 122px;
	}
}

@media screen and (max-width: 585px) {
	/* small grid */	
	.col-s-1  { width: 6.382978723404255%; }
	.grid-container.nogutter .col-s-1, .grid-container .row.table .col-s-1 { width: 8.333%; }
	.col-s-2  { width: 14.893617021276595%; }
	.grid-container.nogutter .col-s-2, .grid-container .row.table .col-s-2 { width: 16.66%; }
	.col-s-3  { width: 23.404255319148934%; }
	.grid-container.nogutter .col-s-3, .grid-container .row.table .col-s-3 { width: 25%; }
	.col-s-4  { width: 31.914893617021278%; }
	.grid-container.nogutter .col-s-4, .grid-container .row.table .col-s-4 { width: 33.33%; }
	.col-s-5  { width: 40.42553191489362%; }
	.grid-container.nogutter .col-s-5, .grid-container .row.table .col-s-5 { width: 41.66%; }
	.col-s-6  { width: 48.93617021276595%; }
	.grid-container.nogutter .col-s-6, .grid-container .row.table .col-s-6 { width: 50%; }
	.col-s-7  { width: 57.44680851063829%; }
	.grid-container.nogutter .col-s-7, .grid-container .row.table .col-s-7 { width: 58.33%; }
	.col-s-8  { width: 65.95744680851064%; }
	.grid-container.nogutter .col-s-8, .grid-container .row.table .col-s-8 { width: 66.66%; }
	.col-s-9  { width: 74.46808510638297%; }
	.grid-container.nogutter .col-s-9, .grid-container .row.table .col-s-9 { width: 75%; }
	.col-s-10 { width: 82.97872340425532%; }
	.grid-container.nogutter .col-s-10, .grid-container .row.table .col-s-10 { width: 83.33%; }
	.col-s-11 { width: 91.48936170212765%; }
	.grid-container.nogutter .col-s-11, .grid-container .row.table .col-s-11 { width: 91.66%; }
	.col-s-12 { width: 100%; }
	.grid-container.nogutter .col-s-12, .grid-container .row.table .col-s-12 { width: 100%; }

	.s-space { margin-left: 2.127659574468085%!important; margin-right: 2.127659574468085%!important;  }
	.row.table .s-space { padding: 0.7em 1em!important; }
	.s-space-left { margin-left: 2.127659574468085%!important; }
	.row.table .s-space-left { padding-left: 1em!important; }
	.s-space-right { margin-right: 2.127659574468085%!important; }
	.row.table .s-space-right { padding-right: 1em!important; }

	.s-clearspace { margin: 0!important;}
	.row.table .s-clearspace { padding: 0; }
	.s-clearspace-left { margin-left: 0!important; }
	.row.table .s-clearspace-left { padding-left: 0!important; }
	.s-clearspace-right { margin-right: 0!important; }
	.row.table .s-clearspace-right { padding-right: 0!important; }

	#panorama-buttons .button i { margin-right: 0; }
	#panorama-buttons .pb-txt { display: none; }
	
	.wrapper { padding: 0 1.5rem; }
	h1 { font-size: 2.5rem; }
	#toggle-caption { display: none; }
	h2.headline { font-size: 2.5rem; }
	#topbar-placeholder { height: 0; }
	#footer-contact { text-align: center; }
	#footer-contact .button { margin-top: 2.5rem; }
	#footer { text-align: center; }
	#languageselect {
		margin-top: 2.5rem;
		text-align: center;
	}
	.offer .button {
		position: static;
		width: 80%;
		margin: 2.5rem 0;
	}
	#sticker {
		width: 150px; height: 150px;
		font-size: 1.3em;
		line-height: 120%;
		left: 5%;
	}
	#sticker div {
		height: 140px;
		padding: 1rem;
	}
	#sticker strong, #sticker strong + br { font-size: 1em; }
}
@media screen and (max-width: 479px) {
	#panorama .owl-buttons, #scroll-hint { display: none; }
}
@media screen and (max-width: 450px) {
	#footer-contact input[type="text"], #footer-contact input[type="submit"] { width: 100%; }
	#footer-contact input[type="submit"] { 
		margin-top: 0.5em;
		max-width: 250px;
	}
}
@media screen and (max-width: 450px) {
	.ls-nav {
		margin-top: 6px;
		margin-right: 0;
	}
	#contact .icons {
		display: none;
		float: none;
		padding: 0;
		position: fixed; top: auto; left: auto; bottom: 2rem; right: 2rem;
		z-index: 9999;
	}
	#contact .button {
		width: 3.5rem!important;
		height: 3.5rem;
		line-height: 3.5rem;
		border: none;
		border-radius: 50%;
		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
	}
	#contact.hidden { display: none!important; }
	#contact .button i { line-height: 3.5rem; }
	#nav-toggle { margin-left: 15px; }
}
@media screen and (max-width: 420px), (max-height: 640px) {
	#sticker { display: none; }
	#toolbar { position: absolute; top: auto; right: 0; left: 0; bottom: -60px; z-index: 1; }
	#toolbar > div {
		text-align: center;
		transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
	}

	#phone-btn, #mail-btn {
		transition: none;
		display: none;
		position: fixed;
		bottom: 32px;
		top: auto;
		z-index: 99999;
		background: #fff;
		width: 3.5rem!important;
		height: 3.5rem;
		line-height: 3.5rem;
		border: none;
		border-radius: 50%;
		box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);
	}
	#phone-btn { right: 244px; }
	#mail-btn { right: 173px; }
}
@media screen and (max-width: 385px) {
	.wrapper { padding: 0 1rem; }
}

/* PRINT STYLES */
@media print {
	* { background: transparent!important; color: black!important; text-shadow: none!important; filter:none!important; -ms-filter: none!important; }
	a, a:visited { text-decoration: underline; }
	a[href]:after { content: " [" attr(href) "]"; }
	abbr[title]:after { content: " [" attr(title) "]"; }
	.ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
	pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
	thead { display: table-header-group; }
	tr, img { page-break-inside: avoid; }
	img { max-width: 100%!important; }
	@page { margin: 1.5cm; }
	p, h2, h3 { orphans: 3; widows: 3; }
	h2, h3 { page-break-after: avoid; }
	/* custom print styles */
	#header, #aside, #footer, #copyright { display: none; }
	main { background: none; box-shadow: none; margin: 0; }
	main article  { float: none; font-size: 16pt; padding: 0; width: 100%; }
	.slidebox dd { display: block!important; }
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-moz-transform: translateY(-30px);
		-ms-transform: translateY(-30px);
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
	}
	60% {
		-moz-transform: translateY(-15px);
		-ms-transform: translateY(-15px);
		-webkit-transform: translateY(-15px);
		transform: translateY(-15px);
	}
}