@charset "utf-8";

:root {
    --fw-body-background: #FFF; /* Hintergrundfarbe Body */
    --fw-text-primary: #7F7F7F; /* primäre Textfarbe */
    --fw-font-family-primary: "Times New Roman", Times, serif; /* primäre Font */
    --fw-font-size-primary: 1em; /* Primäre Schriftgröße für Article-Bereich */

    --fw-primary: #7F7F7F; /* Primäre Farbe für Layout, Selection, Datepicker */
    --fw-secondary: #BD9857; /* Zweite Farbe für Layout */
    --fw-ternary: #735248; /* Dritte Farbe für Layout */

    --fw-link-color: #7F7F7F; /* Textfarbe Link */
    --fw-link-color-hover: #000; /* Textfarbe Link-Hover */

    --fw-btn-background: #7F7F7F; /* Hintergrundfarbe Buttons */
    --fw-btn-background-hover: #000; /* Hintergrundfarbe Buttons Hover */
    --fw-btn-text: #FFF; /* Textfarbe Buttons */
    --fw-btn-text-hover: #FFF; /* Textfarbe Buttons Hover */
    --fw-btn-bordercolor: #7F7F7F; /* Border Buttons */
    --fw-btn-bordercolor-hover: #7F7F7F; /* Border Buttons Hover */

    --fw-wrapper: 1210px; /* Wrapper-Breite */
    --fw-content-wrapper: 780px;

    /* Hilfsfarben */
    --fw-blue: #3b7ddd;
    --fw-indigo: #6610f2;
    --fw-purple: #6f42c1;
    --fw-pink: #e83e8c;
    --fw-red: #dc3545;
    --fw-orange: #fd7e14;
    --fw-yellow: #ffc107;
    --fw-green: #28a745;
    --fw-teal: #20c997;
    --fw-cyan: #17a2b8;
    --fw-white: #fff;
    --fw-gray: #6c757d;
    --fw-gray-dark: #343a40;
}

@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: 'MeteoconsRegular'; font-style: normal; font-weight: normal;
    src: url('../font/meteocons-webfont.eot');
    src: url('../font/meteocons-webfont.eot?#iefix') format('embedded-opentype'),
    url('../font/meteocons-webfont.woff') format('woff'),
    url('../font/meteocons-webfont.ttf') format('truetype'),
    url('../font/meteocons-webfont.svg#MeteoconsRegular') format('svg');
}

.wfont { font-family: 'MeteoconsRegular'; }

/* HTML5 display definitions */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; height: 0; }
[hidden] { display: none; }

/* Base */
body {
    background: var(--fw-body-background);
    color: var(--fw-text-primary);
    font-family: var(--fw-font-family-primary); font-size: 16px; line-height: 1.231;
    margin: 0;
}
#main, #footer { font-size: var(--fw-font-size-primary); }
#article { hyphens: auto; -webkit-hyphens: auto; -ms-hyphens: auto; font-size: 18px; line-height: 1.5; }

::selection {
    background: var(--fw-primary);
    color: white;
    text-shadow: none;
}

/* Links */
a {
    color: var(--fw-link-color);
    text-decoration: underline;
}
a:hover { color: var(--fw-link-color-hover); }
a:focus { outline: none; }
a:active, a:hover { outline: 0; }

h2 a, h3 a {
    color: var(--fw-link-color);
    text-decoration: none;
}

/* Typography */
h1, h2, .likeh2, h3 {
    font-weight: normal;
    line-height: 110%;
    text-align: left;
}
h1 {
    font-size: 2.125em;
    margin: 0.67em 0;
}
h2, .likeh2 {
    font-size: 1.625em;
    margin: 0.83em 0;
}
h3 {
    font-size: 1.5em;
    margin: 1em 0;
}
h4 {
    font-size: 1.25em;
    margin: 1.33em 0;
}
h5 {
    font-size: 0.83em;
    margin: 1.67em 0;
}
h6 {
    font-size: 0.67em;
    margin: 2.33em 0;
}

abbr[title] { border-bottom: 1px dotted; }
b, strong { 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; }
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 */
img { border: 0; -ms-interpolation-mode: bicubic; }
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; }
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; }

/* Wrapper */
.wrapper, .contentwrapper {
    box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
    margin: 0 auto;
    padding: 0 20px;
}
.contentwrapper { width: 100%; max-width: var(--fw-content-wrapper); }

/* 12 Col-Grid-Layout */
.grid-container, .wrapper { width: 100%; max-width: var(--fw-wrapper); }
.grid-container * { box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
.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; }
/* For IE 6/7 (triggers hasLayout) */
.cf { *zoom: 1; }

.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; }

/* msg */
.msg {
    background: #d1e7dd;
    border: 1px solid #badbcc;
    color: #0f5132;
}
.msgerror {
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    color: #842029;
}
.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"], a.button.inverse, button.inverse, input[type="submit"].inverse, input[type="button"].inverse {
    background: var(--fw-btn-background);
    box-sizing: border-box;
    border: 1px solid var(--fw-btn-bordercolor); border-radius: 0px;
    color: var(--fw-btn-text);
    display: inline-block;
    font-family: var(--fw-font-family-primary); font-size: 1.1em; font-weight: 400;
    hyphens: none; -webkit-hyphens: none; -ms-hyphens: none;
    line-height: 1.2em;
    padding: 0.5em 1.5em;
    text-decoration: none; text-align: center;
}
a.button:hover, button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: var(--fw-btn-background-hover);
    color: var(--fw-btn-text-hover);
    border: 1px solid var(--fw-btn-bordercolor-hover);
}
a.button:focus, button:focus, input[type="submit"]:focus, input[type="button"]:focus { outline: none; }
a.button.next:after, button.next:after { content: ' ›'; }
a.button.prev:before, button.prev:before { content: '‹ '; }

a.button.inverse, button.inverse, input[type="submit"].inverse, input[type="button"].inverse {
    background: var(--fw-white);
    color: var(--fw-text-primary);
}
a.button.inverse:hover, button.inverse:hover, input[type="submit"].inverse:hover, input[type="button"].inverse:hover {
    background: #EFEFEF;
    color: #000;
}

/* Fancybox Buttons */
.fancybox-button:hover {
    background: transparent!important;
    border: none!important;
}

/* Datepicker */
div .ui-widget-header { background: var(--fw-primary)!important; }

/* Popup */
/* Layout:
<div class="fw-popup">
    <div class="fw-popup-inner">
        <div class="fw-popup-card">
            <div class="fw-popup-title" title="`+title+`"><div>`+title+`</div></div> [Optional]
            <div class="fw-popup-content">`+content+`</div>
            <a href="javascript:;" class="fw-popup-close">&times;</a>
        </div>
    </div>
</div>
 */
.fw-popup {
    background: rgba(0,0,0,0.4);
    opacity: 0;
    transition: opacity .25s linear;
    position: fixed; z-index: 10000000; left: 0; top: 0;
    width: 100%; height: 100%;
}
.fw-popup.show { opacity: 1; }
.fw-popup-inner {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 20px;
}
.fw-popup-card {
    background: #FFF;
    box-sizing: border-box;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    color: rgb(33, 37, 41);
    display: flex; flex-direction: column;
    font-size: 1.1rem; font-family: var(--fw-font-family-primary);
    line-height: 1.5em;
    max-width: 550px; max-height: calc(100vh - 60px);
    transition: transform .3s ease-out;
    padding: 25px; padding-top: 40px;
    position: relative; z-index: 1;
    width: 100%;
}
.fw-popup.show .fw-popup-card { transform: none; }
.fw-popup-title {
    color: #000;
    font-weight: 600; font-size: 1.2em;
    padding-bottom: 1.2rem;
    position: relative; z-index: 1;
    margin-bottom: 1.2rem;
}
.fw-popup-title:after {
    background: var(--fw-primary);
    content: '';
    display: block;
    height: 2px;
    margin: 0 auto;
    max-width: 100px;
    position: absolute; z-index: 1; left: 0; bottom: 0; right: 0;
}
.fw-popup-title > div {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fw-popup-title, .fw-popup-content { box-sizing: border-box; }
.fw-popup-content {
    font-size: 0.9em;
    max-height: calc(100% - 90px);
    overflow-x: hidden; overflow-y: auto;
}
.fw-popup-title + .fw-popup-content { max-height: calc(100% - 140px); }
.fw-popup-content > p:first-child { margin-top: 0; }
.fw-popup-content > *:last-child { margin-bottom: 0; }
.fw-popup-close {
    color: inherit;
    font-size: 2em;
    position: absolute; z-index: 1; right: 6px; top: 6px;
    text-decoration: none;
}
.fw-popup-close:hover { color: var(--fw-link-color-hover); }

#article fieldset { margin: 0.4em 0; padding: 0.4em; }
#article fieldset label, form label {
    display: block;
    font-size: 1.25em;
    margin-bottom: 0.5em;
    text-transform: uppercase;
    white-space: nowrap;
}
#article fieldset legend { margin-bottom: 0.6em; padding: 0 0.6em 0 0; }
#article fieldset input, fieldset select { margin: 0 0 0.1em 0; }
#article input[type="text"], #article input[type="date"], #article input[type="datetime"], #article input[type="email"], #article input[type="file"], #article input[type="number"], #article input[type="password"],
#article input[type="search"], #article input[type="tel"], #article input[type="time"], #article input[type="url"], #article select, #article textarea, #quickr-form input {
    border: 1px solid #7F7F7F; border-top: none; border-left: none; border-right: none;
    box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box;
    padding: 0.5em;
    outline: none!important;
    width: 100%;
}
#article .inputxl { width: 18em; }
#article .inputl { width: 10em; }
#article .inputs { width: 5.8em; }
#article .inputxs { width: 2em; }
#article input { z-index: 0; }
#article input[type=submit] { margin-left: 12.18em; }
#article select, #article input[type="time"] {
    background-color: #FFF;
    -webkit-appearance: menulist;
}
#article input[type="text"], #article input[type="date"], #article input[type="datetime"], #article input[type="email"], #article input[type="file"], #article input[type="number"], #article input[type="password"],
#article input[type="search"], #article input[type="tel"], #article input[type="time"], #article input[type="url"], #article select, #article textarea {
    color: #7F7F7F;
    font-size: 1.125em;
}
input[type="text"], input[type="date"], input[type="datetime"], input[type="email"], input[type="file"], input[type="number"], input[type="password"],
input[type="search"], input[type="tel"], input[type="time"], input[type="url"], select, textarea {
    color: #7F7F7F;
}
.fw-number-range { white-space: nowrap; }
.fw-number-range > * {
    display: inline-block!important;
    width: auto;
}
.fw-number-range > a {
    border: 1px solid #7F7F7F;
    box-sizing: border-box;
    height: 35px;
    padding: 5px;
}
.fw-number-range > a:hover {
    background: var(--fw-btn-background);
    color: var(--fw-btn-text);
}
.fw-number-range input {
    border: none!important;
    height: 35px;
    text-align: center;
    vertical-align: bottom;
    width: 3.45em!important;
}

/* START CUSTOM PART */
.f-right { float: right; }

/* CLASSES */

/* PRIMARY STYLES [layout] */
textarea { border: 1px solid #ccc!important; }
.tns-nav { margin: 1em 0; }
.tns-nav button {
    width: 15px;
    height: 15px;
    border-radius: 10px;
    padding: 0;
}
.tns-controls button {
    padding: 0.5em 0.25em;
    line-height: 1;
    vertical-align: middle;
    margin: 0;
    font-size: 1em;
    width: auto;
}
.tns-controls button i { font-size: 3em; }

#header {
    background: #FFF;
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.2); -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.2); -moz-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.2);
    padding: 10px 0;
    position: fixed; left: 0; top: 0; z-index: 1000;
    width: 100dvw;
}
#header-inner {
    display: grid;
    gap: 30px;
    grid-template-columns: 160px auto;
}
#logo { text-decoration: none; }
#logo img {
    display: block;
    height: auto;
    width: 100%;
}
#header-cta::after {
    content: '';
    clear: both;
    display: table;
    overflow: auto;
}
#header-cta, #nav > ul {
    align-items: center;
    display: flex; justify-content: flex-end;
}
#header-inner > div:nth-child(2) {
    display: flex; flex-direction: column;
    justify-content: center;
}
.cta-link {
    font-size: 0.875em;
    text-decoration: none;
}
.cta-link + .cta-link, .button + .button { margin-left: 16px; }
#header-cta .button i {
    display: none;
    font-size: 26px;
}
#header-cta i {
    font-size: 18px;
    margin-right: 2px;
    vertical-align: -4px;
}
#header-cta .wfont {
    font-size: 36px;
    margin-right: 2px;
    vertical-align: -10px;
}
#weather-link { margin-left: 12%; }
#gift-link { margin-right: 16px; }
#gift-link i { font-size: 30px; }
#showmobilemenu {
    display: none;
    margin-left: 16px;
}
#showmobilemenu i { font-size: 40px; }
#showmobilemenu .material-icons:last-child, body.mobilemenu #showmobilemenu .material-icons:first-child { display: none; }
body.mobilemenu #showmobilemenu .material-icons:last-child { display: inline-block; }

#nav { margin-top: 20px; }
#nav > ul {
    justify-content: space-between;
    margin-left: auto;
    max-width: 600px;
}
#nav > ul > li {
    box-sizing: border-box;
    min-width: 150px;
    position: relative; z-index: 1;
}
#nav a {
    display: block;
    font-size: 1.1em;
    text-decoration: none; text-align: center;
}
#nav > ul > li > a {
    border-bottom: 1px solid transparent;
    padding-bottom: 4px;
}
#nav > ul > li.active > a, #nav > ul > li > a:hover {
    color: #000;
    border-bottom-color: #000;
}
#nav > ul > li > ul {
    background: #EFEFEF;
    display: none;
    position: absolute; z-index: 1; left: 0; top: 27px;
    width: 100%;
}
#nav > ul > li:hover > ul { display: block; }
#nav > ul > li > ul li, #nav > ul > li > ul a { display: block; }
#nav > ul > li > ul a {
    padding: 0.5em 0.7em;
    text-align: center;
}
#nav > ul > li > ul li.active > a, #nav > ul > li > ul a:hover {
    background: var(--fw-secondary);
    color: #FFF;
}
#nav ul ul li + li { border-top: 1px solid #BBB; }

#header-ph { height: 131.11px; }

#panorama-container { position: relative; z-index: 1; }
#panorama-container, #panorama {
    height: 39.96vw;
    overflow: hidden;
}
#panorama-container #panorama-headline {
    position: absolute;
    left: 100px;
    right: 100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    color: #fff;
    font-size: 2.5em;
    max-width: 780px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}
#panorama-headline #panorama-subtitle {
    font-size: 0.5em;
    margin-top: 1.5em;
}
#panorama img {
    display: block;
    height: auto;
    width: 100%;
}
#fw-hint {
    background: var(--fw-btn-background);
    display: grid;
    grid-template-columns: 55px 320px;
    position: absolute; z-index: 1; right: -320px; top: 50%;
    transition: right 0.3s linear; -webkit-transition: right 0.3s linear; -moz-transition: right 0.3s linear; -o-transition: right 0.3s linear;
    transform: translateY(-50%);
}
#fw-hint.open { right: 0; }
#fw-hint > *:first-child {
    align-self: center;
    background: var(--fw-btn-background);
    color: var(--fw-btn-text);
    cursor: pointer;
    height: 55px;
    line-height: 55px;
}
#fw-hint > *:first-child > * {
    display: flex;
    justify-content: center;
    rotate: -90deg;
    transform-origin: center;
}
#fw-hint > *:first-child > * > *:first-child { font-size: 1.4em; }
#fw-hint-toggle {
    color: #FFF;
    margin-left: 1.25em;
}
#fw-hint-toggle i { vertical-align: -8px; }
#fw-hint-toggle i:last-child, #fw-hint.open #fw-hint-toggle i:first-child { display: none; }
#fw-hint.open #fw-hint-toggle i:last-child { display: inline-block; }
#fw-hint > *:last-child {
    background: #FFF;
    padding: 1.5em;
    text-align: center;
}
#fw-hint .likeh2 {
    font-size: 1.37em;
    margin-top: 0;
    text-align: center;
}
#fw-hint .button { margin-top: 1em; }

#quickr-container {
    background: #FFF;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 14%);
    padding: 18px 90px;
    position: absolute; z-index: 1; top: -125px; left: 20px; right: 20px;
}
#quickr-form fieldset {
    align-items: end;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 2fr 1fr;
}
#quickr-form fieldset > *:nth-child(2) { justify-self: center; }
#quickr-form fieldset > *:last-child { justify-self: end; }
#checkinout {
    max-width: 220px;
    text-align: center;
}
#quickr-adultschild-col {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
}
#quickr-form input[type="submit"] {
    height: 50px;
    padding-left: 2em; padding-right: 2em;
    width: auto;
}

#main {
    margin-top: 4em; margin-bottom: 8em;
    position: relative; z-index: 1;
}

#breadcrumb {
    clear: both;
    list-style: none;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}
#breadcrumb > * { display: inline-block; }
#breadcrumb .breadcrumb-spacer {
    margin: 0 0.25em;
    vertical-align: -0.3em;
}
#breadcrumb a {
    font-size: 0.875em;
    text-decoration: none;
}
#breadcrumb a:hover { text-decoration: underline; }
#breadcrumb .material-icons {
    font-size: 0.875em;
    vertical-align: 3px;
}

body.home #article { padding-top: 3em; }
#article h1 {
    margin-top: 0; margin-bottom: 1.2em;
    text-align: center;
}

#partner {
    align-items: center;
    display: flex;
    flex-direction: row; flex-wrap: wrap;
    gap: 10%;
    justify-content: center;
    margin-bottom: 2em;
}
#partner > * { margin-bottom: 2em; }
#partner img {
    display: block;
    max-height: 100px;  height: 8vw; min-height: 65px;
    width: auto; max-width: 220px;
}

#prefooter-nav {
    background: var(--fw-primary);
    color: #FFF;
    padding: 12px 0;
}
#prefooter-nav-inner::after {
    clear: both;
    content: '';
    display: table;
}
#prefooter-nav nav ul { list-style: none; }
#prefooter-nav nav ul li { display: inline-block; }
#prefooter-nav nav ul li + li { margin-left: 5%; }
#prefooter-nav nav a {
    color: #FFF;
    font-size: 1.2em;
    text-decoration: none;
}
#prefooter-nav nav li.active > a, #prefooter-nav nav a:hover { text-decoration: underline; }
#socialmedia-container {
    display: inline-block;
    float: right;
}
#fb-logo {
    display: inline-block;
    margin-left: 8px;
    vertical-align: -7px;
    width: 12px;
}
#fb-logo img {
    display: block;
    height: auto;
    width: 100%;
}

#footer { padding: 2.5em 0; }
#footer-hotelinfo {
    align-items: center;
    display: grid;
    gap: 50px;
    grid-template-columns: 200px auto 225px;
    justify-content: space-evenly;
}
#footer-hotelinfo .likeh2 { margin-top: 0; }
#footer-hotelinfo img {
    display: inline-block;
    height: auto;
    width: 100%;
}
.hotelinfo-link {
    display: block;
    font-size: 1.25em;
    white-space: nowrap;
    text-decoration: none;
}
.hotelinfo-link +.hotelinfo-link { margin-top: 0.75em; }
.hotelinfo-link i {
    margin-right: 6px;
    vertical-align: -5px;
}

#awards, #footer-menu {
    align-items: center;
    display: flex; flex-wrap: wrap; flex-direction: row;
    gap: 10%;
    justify-content: center;
    margin-top: 2.5em; margin-bottom: -2em;
}
#awards > * { margin-bottom: 2em; }
#awards img {
    display: block;
    height: auto;
    width: 100%; max-width: 180px;
}

#footer-menu {
    font-size: 1.125em;
    justify-content: space-between;
    margin-bottom: -1em;
}
#footer-menu > * { margin-bottom: 1em; }
#footer-menu a { text-decoration: none; }
#footer-menu nav li.active > a, #footer-menu nav a:hover, #footer-menu a:hover, #footer-menu a.active { text-decoration: underline; }

/* CONTENT */

/* START Bild mit Text Grau Vorlage */
.bildmittextgray {
    max-width: 1980px;
    margin: 3em auto;
    display: flex;
    background: #7f7f7f;
    align-items: center;
}
.bildmittextgray .text {
    width: 53%;
    color: #ffff;
    padding: 3em;
}
.bildmittextgray .image { width: 47%; }
.bildmittextgray .image a { margin: 0; }
.bildmittextgray .image img {
    display: block;
    width: 100%;
    height: auto;
}
.bildmittextgray .button {
    background: #fff;
    color: #7f7f7f;
}
@media screen and (max-width: 800px) {
    .bildmittextgray {
        display: block;
    }
    .bildmittextgray .image {
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }
    .bildmittextgray .text {
        box-sizing: border-box;
        width: 100%;
    }
}
/* END Bild mit Text Grau Vorlage */

/* START Bild mit Text Vorlage */
.bildmittext, .textmitbild {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 3em auto;
    align-items: stretch;
}
.bildmittext .image .responsiveimages, .bildmittext .image .responsiveimages a, .textmitbild .image .responsiveimages, .textmitbild .image .responsiveimages a { height: 100%; overflow: hidden; }
.bildmittext .image, .textmitbild .image { width: 68%; }
.bildmittext .image img, .textmitbild .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bildmittext .text, .textmitbild .text {
    box-sizing: border-box;
    width: 32%;
    text-align: center;
    padding: 1.5em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bildmittext .text h3, .textmitbild .text h3 {
    text-align: center;
    margin-top: 0;
}
@media screen and (max-width: 1000px) {
    .bildmittext .image, .textmitbild .image {
        width: 100%;
        text-align: center;
    }
    .bildmittext .image img, .textmitbild .image img { max-width: 805px; }
    .bildmittext .text, .textmitbild .text {
        width: 100%;
        padding: 2em 0 0;
        order: 1;
    }
}
/* START Bild mit Text Vorlage */

/* END CUSTOM PART */

/* 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 {
    border: none;
    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%; margin-top: 0.25%; margin-bottom: 0.25%;
    text-decoration: none;
    width: 100%;
}
.responsiveimages a:first-child { margin-left: 0!important; }
.responsiveimages.fullwidth a { margin-left: 0; }
.responsiveimages a img {
    height: auto;
    vertical-align: middle;
    width: 100%;
}
.responsiveimages.onetwo {
    max-width: calc(var(--fw-wrapper) - 40px);
    margin: 3em auto;
    display: grid;
    grid-template-columns: [first] 50% [second] 50%;
    grid-template-rows: [row1] 50% [row2] 50%;
    align-items: center;
    overflow: hidden;
    gap: 30px 25px;
}
.responsiveimages.onetwo a:first-of-type {
    grid-column-start: 1;
    grid-row-start: 1;
    grid-row-end: 3;
}
.responsiveimages.onetwo a:nth-of-type(2) {
    grid-column-start: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}
.responsiveimages.onetwo a:last-of-type {
    grid-column-start: 2;
    grid-row-start: 2;
    grid-row-end: 3;
}
.responsiveimages.fiftyfifty {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 1170px;
    margin: 3em auto;
}
.responsiveimages.fiftyfifty a {
    width: calc(50% - 3px);
    margin: 0;
}
.responsiveimages.thirtyfsixtyf, .responsiveimages.sixtyfthirtyf {
    display: flex;
    max-width: 1170px;
    margin: 3em auto;
}
.responsiveimages.thirtyfsixtyf a:first-of-type, .responsiveimages.sixtyfthirtyf a:last-of-type { width: 35%; }
.responsiveimages.thirtyfsixtyf a:last-of-type, .responsiveimages.sixtyfthirtyf a:first-of-type { width: 65%; }


@media screen and (min-width: 1920px) {
    .responsiveimages.fullwidth img {
        height: 502px;
        object-fit: cover;
    }
}

@media screen and (max-width: 670px) {
    .responsiveimages.fullwidth img {
        height: 170px;
        object-fit: cover;
    }
}

/* Bilder mit Fließtext */
#article .imgandtext {
    clear: both;
    overflow: auto;
}
#article .imgandtext.img_left > img, #article .imgandtext.img_left .responsiveimages {
    float: left;
    margin-right: 0.5em;
}
#article .imgandtext.img_right > img, #article .imgandtext.img_right .responsiveimages {
    float: right;
    margin-left: 0.5em;
}
#article .imgandtext > img, #article .imgandtext .responsiveimages {
    margin-top: 0.4em;
    width: 40%;
}
#article .imgandtext p { margin-top: 0; }

/* Table-Container */
.tablecontainer { overflow: auto; }

/* Fancybox */
.fancybox-slide--iframe .fancybox-content {
    height: 1133px; max-height: 80%;
    margin: 0;
    width: 800px!important; max-width: 80%!important;
}
.fancybox-button { min-width: 0; }
.fancybox-button--left, .fancybox-button--right { display: inline-block!important; }
.fancybox-button[disabled], .fancybox-button[disabled]:hover { background: none!important; }

/* Tiny-Slider */
.tns-outer { position: relative; z-index: 1; }
.tns-nav { text-align: center; }
.tns-nav > * {
    background: #FFF;
    border: 1px solid var(--fw-primary);
    display: inline-block;
    outline: none;
    width: 16px; height: 16px;
}
.tns-nav > *.tns-nav-active { background: var(--fw-primary); }
.tns-nav > * + * { margin-left: 8px; }
.tns-controls > * {
    background: var(--fw-primary);
    border: none;
    color: #FFF;
    display: inline-block;
    font-size: 80px;
    outline: none;
    position: absolute; z-index: 1000; top: 50%;
    transform: translateY(-50%);
    width: 40px;
}
.tns-controls > *:first-child { left: 0; }
.tns-controls > *:last-child { right: 0; }

/* 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: var(--fw-text-primary)!important; }
#cookiehint.top { top: 10px; bottom: initial; }

/* Media Queries */
@media screen and (max-width: 1200px) {
    #quickr-container {
        padding-left: 25px; padding-right: 25px;
        position: relative; top: -45px; left: auto; right: auto;
    }
    body.home #article { padding-top: 0; }

    #panorama-container #panorama-headline {
        left: 50px;
        right: 50px;
        font-size: 2em;
        max-width: 600px;
    }
}
@media screen and (max-width: 1050px) {
    #weather-link { margin-left: 16px; }
}
/* Mobil bzw. Touchscreen */
@media screen and (max-width: 1023px), (any-hover: none) {
    #header-inner { grid-template-columns: 100px auto; }

    #weather-link, #gift-link { display: none; }
    .cta-link + .button { margin-left: 16px; }
    #showmobilemenu { display: block; }

    body.mobilemenu > * { display: none; }
    body.mobilemenu #header { display: block; }
    #nav {
        background: var(--fw-primary);
        height: calc(100dvh - 89.44px);
        margin-top: 0;
        overflow: auto;
        position: fixed; z-index: 1; left: -120vw; top: 89.44px;
        transition: left 0.3s linear; -webkit-transition: left 0.3s linear; -moz-transition: left 0.3s linear; -o-transition: left 0.3s linear;
        width: 100dvw;
    }
    body.mobilemenu #nav { left: 0; }
    #nav > ul {
        display: block;
        max-width: none;
        padding: 2em 0;
    }
    #nav > ul > li {
        display: block;
        min-width: 0;
    }
    #nav > ul > li > a {
        background: var(--fw-primary);
        border-bottom: none;
        color: #FFF;
        display: block;
        font-size: 1.4em;
        padding: 0.75em 1em;
        text-align: center; text-transform: uppercase;
    }
    #nav > ul > li.active > a, #nav > ul > li > a:hover {
        background: #EFEFEF;
        color: var(--fw-secondary);
    }

    #nav > ul > li > ul {
        background: #FFF;
        display: block;
        position: relative; top: auto;
    }
    #nav > ul > li > ul a {
        padding: 0.75em 1em;
        text-align: left;
    }

    #header-ph { height: 89.44px; }
}
@media screen and (max-width: 1150px) {
    .tns-controls button i { font-size: 2em; }
}
@media screen and (max-width: 860px) {
    #quickr-container { font-size: 0.8em; }
    #footer { padding: 1.5em 0; }
    #footer-hotelinfo {
        align-items: center;
        grid-template-columns: auto 225px;
        justify-content: space-evenly;
    }
    #footer-hotelinfo > *:first-child { display: none; }
}
@media screen and (max-width: 800px) {
    /* 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; }

    .cta-link i { font-size: 26px!important; }
    .cta-link > span { display: none; }

    #panorama-container, #panorama, #panorama-container img { height: 60vw; min-height: 250px; }
    #panorama-container img { object-fit: cover; }
}
@media screen and (max-width: 760px) {
    #quickr-container { display: none; }
    #nav_breadcrumb { margin-top: -20px; margin-bottom: 40px; }

    #socialmedia-container {
        display: block;
        float: none;
        margin-bottom: 1em;
        text-align: center;
    }
    #prefooter-nav nav ul {
        display: flex; flex-wrap: wrap; flex-direction: row;
        gap: 5%;
        justify-content: space-evenly;
    }
    #prefooter-nav nav ul li { margin-bottom: 0.5em; margin-left: 0!important; }
}
@media screen and (max-width: 700px) {
    #panorama-container #panorama-headline { display: none; }
}
@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; }

    #header-cta .button { padding: 0.5em; }
    #header-cta .button i { display: block; }
    #header-cta .button span { display: none; }

    #fw-hint { display: none; }

    #footer-hotelinfo {
        display: block;
        text-align: center;
    }
    #footer-hotelinfo .likeh2 { text-align: center; }
    #footer-hotelinfo > *:last-child { margin-top: 2em; }
}
@media screen and (max-width: 530px) {
    #footer-menu {
        justify-content: center;
        text-align: center;
    }
}
@media screen and (max-width: 420px) {
    #header-inner { gap: 5px; }
    #header-cta .ga_event_telefon, #header-cta .ga_event_email { display: none; }
}

/* 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; }
    #quickr-container { display: none; }
    #panorama-container { display: none; }
    #breadcrumb { display: none; }
    #header-ph { display: none; }
    .responsiveimages, .bildmittext, .textmitbild, .bildmittextgray, .room-banner, .news-banner, #partner, #prefooter-nav { display: none!important; }
}