/**
 * *****************************************************************************
 * style.css
 * *****************************************************************************
 *
 * Theme Name: bwg
 * Theme URI: https://black-forever.de
 * Author: greiter-cie | Markus Pezold | Automattic
 * Author URI: http://greiter-cie.de
 * Description: WordPress Theme für Bachtelweiher Garten | Design, Konzept & Betreuung: Greiter & Cie. GmbH, basierend auf dem Dara Theme.
 * Text Domain: bwg
 * Version: 0.1
 * License: Custom Theme - no GPL License
 * License URI: http://greiter-cie.de
 * Tags: excellent
 *
 * Greiter & Cie. GmbH
 * Unternehmenskommunikation
 * Am Bachtelweiher 6
 * D-87437 Kempten (Allgäu)
 * Germany
 *
 * http://www.greiter-cie.de
 * info[at]greiter-cie.de
 *
 * black forever - internetlösungen
 * Buchenberger Weg 8
 * D-87439 Kempten
 * Germany
 *
 * https://black-forever.de
 * markus.pezold[at]black-forever.de
 *
 * @creation:   2017
 * @updated:   	08.08.2021
 * @version:    0.1
 *
 * @client:             Bachtelweiher Garten
 * @clientwebsite:      https://www.bachtelweiher-garten.de/
 * @project:            WordPress Installation
 *
 * Stylesheets:
 * @author:			    Markus Pezold
 * @authorwebsite:      greiter-cie.de | black-forever.de | Automattic
 *
 * © 2017-18 greiter.cie / black-forever.de for BWG
 *
 * *****************************************************************************
 */

/**
 * *****************************************************************************
 * TABLE OF CONTENTS:
 *
 *  # Normalize
 *  # Accessibility
 *  # Alignments
 *  # Clearings
 *  # Typography
 *  # Forms
 *  # Buttons
 *  # Formatting
 *  # Lists
 *  # Tables
 *  # Navigation
 *  # Links
 *  # Layout
 *  	## Posts
 *  	## Pages
 *  # Comments
 *  # Widgets
 *  # Infinite scroll
 *  # Media
 *  	## Galleries
 *
 * ******************************************************************************
 */

/*--------------------------------------------------------------
1.0 Reset
--------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	font-style: inherit;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	border: 0;
	outline: 0;
}
html {
	font-size: 62.5%; /* 10px */
	overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
		-ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
body {
	background: #f0f0f0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol,
ul {
	list-style: none;
}
table {
	border-spacing: 0;
	border-collapse: separate;
}
caption,
th,
td {
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}
blockquote,
q {
	quotes: "" "";
}
a {
	color: #b91818;
	text-decoration: none;
}
a:hover,
a:focus,
a:active {
	color: #a8a6a1;
	text-decoration: none;
}
a:hover,
a:active {
	outline: 0;
}
a:focus {
	outline: thin dotted;
}
a img {
	border: 0;
}


html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 15px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 15px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.6em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.6em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.nav-links:before,
.nav-links:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.nav-links:after {
  clear: both;
}
/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #575757;
	font-family: "Roboto", Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
}
body {
	background: #2c2c2c;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	margin-bottom: .8em;
}
h1 {
	font-size: 29px;
	line-height: 1.1;
	margin-bottom: 0.2em;
}
h2 {
	font-size: 23px;
	margin-bottom: 0.4em;
}
h3 {
	font-size: 16px;
}
h4 {
	font-size: 16px;
}
h5 {
	font-size: 15px;
}
h6 {
	font-size: 14px;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	border: 0;
	height: 1px;
	margin: 1.6em 0;
	background-color: #e6e6e6;
}
p,
blockquote p:last-child {
	margin-bottom: 1.6em;
}
p:last-child {
	margin-bottom: 0;
}
ul,
ol {
	margin: 0 0 1.6em 1.6em;
}

ul {
	list-style: none;
}

ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1em 1.6em 1em;
}
b,
strong {
	font-weight: bold;
}
dfn,
cite,
em,
i {
	font-style: italic;
}
blockquote {
	border-left: 2px solid #f2f2f2;
	font-style: italic;
	padding-left: 1em;
}
address {
	margin: 0 0 1.6em 0;
}
pre {
	background: #f2f2f2;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	max-width: 100%;
	margin-bottom: 1.6em;
	overflow-x: scroll;
	padding: 1em;
}
code,
kbd,
tt,
var {
	font-family: "Courier 10 Pitch", Courier, monospace;
}
abbr,
acronym {
	border-bottom: 1px dotted #e6e6e6;
	cursor: help;
}
mark,
ins {
	background-color: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: 0.5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}
figure {
	margin: 0;
}
table {
	border-bottom: 1px solid #eee;
	margin: 0 0 1.6em 0;
	width: 100%;
}
th {
	font-weight: bold;
	padding: 0.4em;
	text-transform: uppercase;
}
td {
	border-top: 1px solid #eee;
	padding: 0.4em;
}
img {
	max-width: 100%; /* Adhere to container width. */
	height: auto; /* Make sure images are scaled correctly. */
}
legend {
	font-weight: bold;
	padding: 0 .5em;
}
fieldset {
	border: 1px solid #eee;
	padding: 1.6em;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	color: #888;
	font-size: 15px; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
	transition: all 0.2s;
	padding: 0.8em;
}
button,
input {
	line-height: normal; /* Addresses FF3/4 setting line-height using !important in the UA stylesheet */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
#infinite-handle span,
.button {
	background-color: #7a1a0a;
	border-style: none;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 2;
	padding: .25em 1em .4em;
	text-align: center;
	vertical-align: middle;
	text-transform: uppercase;
	border-radius: 3px;
	box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.1);
	-webkit-appearance: none;
}
button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
#infinite-handle span:hover,
.button:hover {
	opacity: 0.85;
}
.button:hover,
.button:active,
.button:focus {
	color: #fff;
}
button:focus,
html input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
html input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active,
#infinite-handle span:active,
.button:active,
.button:focus {
	background-color: #e6e6e6;
	color: #666;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box; /* Addresses box sizing set to content-box in IE8/9 */
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"],
input[type="password"] {
	box-sizing: border-box;
	-webkit-appearance: none; /* Addresses appearance set to searchfield in S5, Chrome */
}
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"] {
	border: 1px solid #ededec;
	font-size: 15px;
	padding: 0.8em;
	transition: border-color 0.2s;
	background-color: #ededec;
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
	border: 1px solid ##aaabab;
	outline: none;
	transition: border-color 0.2s;
}

select {
	font-size: 16px;
	border: 1px solid #ededec;
	background-color: #ededec;
	transition: border-color 0.2s;
	width: 100%;
}

select:focus {
	border: 1px solid ##aaabab;
}

textarea {
	background-color: #ededec;
	border: 1px solid #ededec;
	font-size: 15px;
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding: 1%;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
	transition: border-color 0.2s;
}

textarea:focus {
	border: 1px solid ##aaabab;
}

.wpcf7 label {
	font-size: 13px;
}


.wpcf7 .wpcf7-acceptance .wpcf7-list-item {
    display: inline-block;
    margin: 0 0.5em 0 0;
}

.wpcf7 .confirmation {
	display: inline;
	font-size: 13px;
}




.wpcf7 .send-button {
	text-align: center;
	margin: 2em 0;
}


.cr_form .cr_ipe_checkbox {
	margin-right: 0.5em;
}

.cr_form div.cr_ipe_item {
	margin: 1em 0;
}

.cr_form label,
.cr_form .confirmation {
	font-size: 13px;
}

.cr_form label .required {
	color: #7a1a0a;
}

.cr_form .cr_ipe_item.submit_container {
	text-align: center;
	margin: 2em 0;
}



/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

.main-navigation {
	background-color: #7a1a0a;
	color: #fff;
	display: block;
	padding: 0 1em;
}
.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	text-align: left;
}
.main-navigation a {
	color: #fff;
	display: block;
	font-size: 15px;
	letter-spacing: 1px;
	outline: none;
	opacity: 1;
	padding: .8em;
	text-decoration: none;
	text-transform: uppercase;
	transition: opacity 0.2s;
}
.main-navigation ul li {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	display: block;
	padding: 0;
}

.main-navigation ul li:first-child {
	border-top: 0;
}
.main-navigation ul ul {
	display: block;
	list-style: disc;
}
.main-navigation ul ul li {
	border-top: 0;
}
.main-navigation ul ul a {
	color: #fff;
	padding-left: 1.6em;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.main-navigation ul ul ul a {
	padding-left: 3.2em;
}
.main-navigation ul ul ul ul a {
	padding-left: 4.8em;
}
.main-navigation a:hover,
.main-navigation ul > :hover > a,
.main-navigation ul > .focus > a {
	opacity: 0.5;
}
.main-navigation ul ul a:hover,
.main-navigation ul ul li.focus > a {
	opacity: 0.5;
}
.main-navigation ul ul ul {
	margin-bottom: 0;
}
.main-navigation ul ul ul li {
	border-top: 0;
}
.main-navigation a:hover,
.main-navigation ul > :hover > a,
.main-navigation ul > .focus > a {
	opacity: 0.6;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	display: block;
}
.main-navigation li.current_page_item > a,
.main-navigation li.current-menu-item > a,
.main-navigation li.current_page_ancestor > a,
.main-navigation li.current-menu-ancestor > a {
	color: #dadad9;
}

.menu-toggle {
	box-shadow: none;
	color: #fff;
	display: block;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	margin: 0 auto;
	padding: 1em 0;
	text-align: center;
	text-transform: uppercase;
}
.menu-toggle:hover,
.menu-toggle:focus {
	color: #fff;
	background: none;
}
.menu-toggle:before {
	content: "\f419";
	font-family: Genericons;
	line-height: 1;
	margin-right: 8px;
	position: relative;
	top: 2px;
}
.menu-toggle,
.main-navigation.toggled .nav-menu {
	display: block;
}


/*--------------------------------------------------------------
5.2 Content Navigation
--------------------------------------------------------------*/
.post-navigation,
.posts-navigation {
	margin: .8em 0 0;
	position: relative;
}
.post-navigation:after,
.posts-navigation:after {
	content: "";
	background: #f2f2f2;
	display: block;
	margin-top: .8em;
	position: relative;
	height: 1px;
}
[class*="navigation"] .nav-previous {
	width: 100%;
}
[class*="navigation"] .nav-next {
	border-top: 1px solid #f2f2f2;
	margin-top: .4em;
	padding-top: .4em;
	text-align: right;
	width: 100%;
}
[class*="navigation"] .nav-previous .meta-nav:before {
	content: "\2190";
	margin-right: 5px;
}
[class*="navigation"] .nav-next .meta-nav:after {
	content: "\2192";
	margin-left: 5px;
}
.post-navigation a,
.paging-navigation a,
.comment-navigation a {
	display: inline-block;
	font-family: "Yrsa", Georgia, serif;
	font-size: 18px;
	max-width: 100%;
	word-wrap: break-word;
	transition: color 0.2s;
}
.post-navigation a:hover,
.paging-navigation a:hover,
.comment-navigation a:hover,
.post-navigation a:focus,
.paging-navigation a:focus,
.comment-navigation a:focus,
.post-navigation a:active,
.paging-navigation a:active,
.comment-navigation a:active {
	color: #666;
}
.post-navigation .title {
	display: block;
	color: #a8a6a1;
	clear: both;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 15px;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 15px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 15px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin: 0.5em 1.6em 1em 0;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.6em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: .8em auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.comment-meta:before,
.comment-meta:after,
.entry-meta:before,
.entry-meta:after,
.footer-widget-area:before,
.footer-widget-area:after,
.hentry:after,
.main-navigation > ul:before,
.main-navigation > ul:after,
.site-main:before,
.site-main:after,
.subordinate-navigation ul:before,
.subordinate-navigation ul:after,
.clear:before,
.clear:after,
[class*="area"]:before,
[class*="area"]:after,
[class*="content"]:before,
[class*="content"]:after,
.post-navigation:before,
.post-navigation:after,
.posts-navigation:before,
.posts-navigation:after,
[class*="site"]:before,
[class*="site"]:after,
.entry-author:before,
.entry-author:after {
	content: "";
	display: table;
}
.comment-meta:after,
.entry-meta:after,
.footer-widget-area:after,
.main-navigation ul:after,
.site-main:after,
.subordinate-navigation ul:after,
.clear:after,
[class*="area"]:after,
[class*="content"]:after,
.posts-navigation:after,
.post-navigation:after,
[class*="site"]:after,
.entry-author:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/

.widget-area {
	overflow: hidden;
}

.menu-box {
	display: block;
}
.open-box {
	display: block;
}
.open-box aside h3 {
	padding: 1em;
	color:#ffffff;
}

.event-box {
	margin: 0 0 2em 0;
	padding: 1em;
	background-color: #7a1a0a;
	color: #fff;
}

.event-box h3.widget-title {
	text-align: left;
}

.event-box a {
	color: #fff;
}

.event-box a:hover,
.event-box a:focus {
	text-decoration: underline;
}


.widget {
	font-size: 16px;
	margin-bottom: 1em;
	word-wrap: break-word;
}

#secondary.widget-area .widget-title {
    color: #fff;
    background-color: #aaabab;
    padding: 0.5em;
}

#secondary.widget-area .widget_opening,
#secondary.widget-area .widget_newsletter {
	margin-bottom: 1em;
}

#secondary.widget-area .widget_opening h3.widget-title,
#secondary.widget-area .widget_newsletter h3.widget-title {
    background-color: #7a1a0a;
	color: #fff;
    margin: 0;
}



#secondary.widget-area .widget_newsletter a {
	color: #fff;
}

#secondary.widget-area .widget_newsletter a:hover,
#secondary.widget-area .widget_newsletter a:focus {
	opacity: 0.6;
}



#secondary.widget-area .widget_custom_html .cdsROW.narrow {
    width: 100%;
    text-align: center;
    padding: 1em 0;
}

#secondary.widget-area  .widget_media_image  a {
	line-height: 1;
}

.widget a {
	transition: color 0.2s;
}
.widget-title {
	font-size: 18px;
	margin-bottom: 0.8em;
	text-align: center;
}
.widget:not(.widget_text) ul,
.widget:not(.widget_text) ol {
	list-style: none;
	margin: 0;
}
.widget:not(.widget_text) ul > li,
.widget:not(.widget_text) ol > li {
	padding: 0.8em 0;
}
.widget:not(.widget_text) li > ul,
.widget:not(.widget_text) li > ol {
	margin-left: 1.6em;
}
.widget:not(.widget_text) ul ul {
	margin-top: 0.8em;
}
.widget:not(.widget_text) ul ul > li:last-child {
	padding-bottom: 0;
}
.widget select {
	max-width: 100%;
}
.widget_search .search-submit {
	display: none;
}
.widget_search .search-field {
	width: 100%;
	box-sizing: border-box;
}


#secondary.widget-area .widget-title {
	color: #fff;
	background-color: #aaabab;
	padding: 0.5em;
}

#secondary.widget-area .widget_custom_html iframe,
#secondary.widget-area .widget_text iframe {
	margin: 0;
}

#secondary.widget-area {
	margin-top: 3.2em;
}


#secondary.widget-area .widget ul > li,
#secondary.widget-area .widget ol > li {
	border-top: 1px solid #f2f2f2;
}
.widget_calendar caption {
	text-align: center;
}
.widget_calendar td,
.widget_calendar th {
	text-align: center;
}
.widget_calendar td a {
	font-weight: bold;
}

.widget_social {
    margin: 1em 0;
}

.widget_social .social-icons {
    margin: 1em 0;
	text-align: center;
}

.widget_social .social-icons a  {
	font-size: 30px;
    margin: 0 1em 0 0;
    text-align: left;
	color: #575757;
}

.widget_social .social-icons a:hover  {
	color: #7a1a0a;
}




/* Footer Widgets */
.footer-widget-area {
	background-color: #dadad9;
	padding: 3.2em 6% 1.6em;
	margin: 0;
}

.footer-widget-area .widget-title {
	font-size: 16px;
}

.footer-widget-area .textwidget {
	font-size: 15px;
}

.footer-widget-area a {
	display: inline-block;
	color: #6d6d6d;
}

.footer-widget-area a:hover,
.footer-widget-area a:focus,
.footer-widget-area a:active {
	color: #b91818;
}

.first.footer-widgets,
.second.footer-widgets {
	margin-right: 55px;
}

.footer-widget-area .widget-title {
	color: #7a1a0a;
	font-weight: bold;
	text-transform: none;
	text-align: left;
}
.footer-widget-area .widget:not(.widget_text) ul > li,
.footer-widget-area .widget:not(.widget_text) ol > li {
	border-top: 1px solid #e5e5e5;
}
.footer-widget-area .widget_calendar table,
.footer-widget-area .widget_calendar td {
	border-color: #e5e5e5;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Layout
--------------------------------------------------------------*/
.site {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-right: 2%;
	padding-left: 2%;
	overflow-x: hidden;
}
.no-sidebar .site {
	max-width: 880px;
}
.no-sidebar.page-template-full-width-page .site,
.no-sidebar.page-template-grid-page .site,
.no-sidebar.home.page .site {
	max-width: 1180px;
}
.site-content,
.attachment.page .site-content {
	background-color: #fff;
	padding: 1.6em 4%;
}

/* Site Header */



.site-branding,
.site-navigation {
	padding-right: 4%;
	padding-left: 4%;
}
.site-branding a + .site-title {
	margin-top: 0.2em;
}
.display-header-text .site-image {
	margin-bottom: 12px;
}

.site-header {
	position: relative;
}

.site-branding {
	background: none;
	position: relative;
	background-color: #7a1a0a;
}

.site-branding .screen {
	display: none;
}

.site-branding .logo-link {
	display: block;
	margin: 0 auto;
	max-width: 150px;
}

.site-branding .mobile-logo {
	display: block;
	width: auto;
	height: auto;
	margin: 1em auto 0 auto;
	height: 100px;
	width: 100px;
	z-index: 100;
}

.site-branding .logo {
	display: block;
	margin: 2em auto 1em auto;
	width: 300px;
}

.site-branding .logo-bg {
	display: none;
}

.custom-header {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	height: auto;
	line-height: 0;
}
.custom-header a {
	display: block;
	line-height: 0.5;
}

.menu-pdf {
	display: none;
}

/*--------------------------------------------------------------
10.2 Posts and pages
--------------------------------------------------------------*/
.hentry {
	position: relative;
	word-wrap: break-word;
}
.sticky {
}
.blog .hentry,
.archive .hentry,
.search .hentry {
	margin: 0 0 3.2em 0;
}
.archive .page-header,
.search .page-header {
	margin: 0 0 1.6em;
}
.taxonomy-description {
	font-size: 16px;
}
.hentry:after,
.page-header:after {
	background: #f2f2f2;
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
}
.home.page .hentry:after {
	display: none;
}
.hentry.no-title .entry-body {
	min-height: 6em;
}
.archive .page-title,
.search .page-title {
	color: #a8a6a1;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.entry-header {
	position: relative;
	z-index: 1;
}
.entry-thumbnail,
.post-thumbnail {
	background: -webkit-linear-gradient(135deg, white 25%, #f0f2f0 25%, #f0f2f0 50%, white 50%, white 75%, #f0f2f0 75%, #f0f2f0);
	background: -moz-linear-gradient(135deg, white 25%, #f0f2f0 25%, #f0f2f0 50%, white 50%, white 75%, #f0f2f0 75%, #f0f2f0);
	background: -o-linear-gradient(135deg, white 25%, #f0f2f0 25%, #f0f2f0 50%, white 50%, white 75%, #f0f2f0 75%, #f0f2f0);
	background: linear-gradient(135deg, white 25%, #f0f2f0 25%, #f0f2f0 50%, white 50%, white 75%, #f0f2f0 75%, #f0f2f0);
	background-size: 4px 4px;
}
.post-thumbnail + .entry-header {
	margin: .4em 0;
	padding: 0;
}
.entry-thumbnail img,
.post-thumbnail img {
	display: block;
}
.entry-title {
	line-height: 1.2;
	margin-bottom: 0;
}
.page .entry-title {
	margin-bottom: 1.5em;
}
.page-title,
.entry-title,
.entry-title a {
	color: #7a1a0f;
	font-size: 23px;
	font-weight: bold;
	transition: color 0.2s;
}
.entry-title a:hover,
.entry-title a:focus,
.entry-title a:active {
	color: #b91818;
}
.entry-meta,
.entry-footer {
	color: #a8a6a1;
	font-family: "Yrsa", Georgia, serif;
	font-size: 16px;
	margin-bottom: 1.6em;
	text-align: left;
}
.entry-footer {
	margin-bottom :0;
	padding: 0 0 1.6em;
	position: static;
	text-align: left;
	width: auto;
}
.entry-meta > span,
.entry-footer > span {
	margin-right: .8em;
	display: inline-block;
}
.entry-meta a,
.entry-footer a {
	color: #a8a6a1;
	transition: color 0.2s;
}
.entry-meta a:hover,
.entry-footer a:hover,
.entry-meta a:focus,
.entry-footer a:focus,
.entry-meta a:active,
.entry-footer a:active {
	color: #666;
}
.cat-links {
	display: inline-block;
	margin-bottom: .4em;
}
.cat-links a {
	color: #b91818;
	display: inline-block;
	font-family: "Source Sans Pro";
	font-style: normal;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 1px;
	margin: 0;
	text-transform: uppercase;
}
.updated:not(.published) {
	display: none;
}
.tags-links {
	margin-right: 1em;
}
.entry-summary,
.entry-content {
	margin: 0 0 1.6em;
}
.page-links {
	clear: both;
	margin-top: 1.6em;
	word-spacing: 7px;
}
blockquote:before {
	color: #ccc;
	content: "\201C";
	font-family: "Yrsa", Georgia, serif;
	font-size: 140px;
	font-style: normal;
	line-height: 1;
	position: absolute;
	top: -5px;
	left: -10px;
}
blockquote {
	border: none;
	font-family: "Yrsa", Georgia, serif;
	font-size: 23px;
	font-style: normal;
	margin-left: 0;
	margin-bottom: 1.6em;
	padding-left: 2.4em;
	position: relative;
}
blockquote cite {
	display: block;
	font-family: "Source Sans Pro", Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	margin: .4em 0;
	text-transform: uppercase;
}
blockquote p:last-child {
	margin-bottom: 0;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comments-area {
	margin: 1.6em 0 0;
}
.page .comments-area {
	margin-left: 0;
}
.comments-title {
	font-size: 29px;
	line-height: 1.2;
	margin-bottom: 1em;
}
.comment-list {
	margin: 1.6em 0;
}
.comment-list,
.comment-list .children {
	list-style-type: none;
	padding: 0;
}
.comment,
.pingback,
.trackback {
	padding: 1.6em 0;
}
.comment-body .edit-link a {
	margin-left: .4em;
}
.bypostauthor {
}
#respond {
	margin: 0;
}
#respond h3#reply-title {
	margin: 0 0 .4em;
}
.entry-author {
	border: 1px solid #f2f2f2;
	padding: 1.6em;
	margin: 0 0 1.6em;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
}
.author-avatar {
	order: 3;
	width: 25%;
	margin-top: -1.6em;
	text-align: right;
}
.author-heading {
	order: 1;
}
.author-bio {
	order: 2;
	font-size: 16px;
}
.author-heading,
.author-bio {
	width: 75%
}
.author-title {
	font-size: 23px;
	margin-bottom: 0;
}
.author-avatar img {
	border-radius: 50%;
}
.depth-1 {
	border-bottom: solid 1px #f2f2f2;
}
.depth-1:first-child {
	margin-top: 0;
	padding-top: 0;
}
.comment-list .children {
	margin-top: 24px;
}
.comment-list .children .comment {
	border-left: 3px solid #f7f7f7;
	padding-left: 24px;
}
.comment-author .avatar {
	float: left;
	margin-right: 12px;
	border-radius: 50%;
}
.comment-meta {
	margin-bottom: 1em;
}
.comment-meta a {
	color: #b91818;
}
.comment-meta a:hover,
.comment-meta a:focus,
.comment-meta a:active {
	color: #a8a6a1;
}
.comment-meta .fn {
	display: inline-block;
	font-size: 15px;
	font-weight: bold;
	font-style: normal;
	margin-right: 1em;
	text-transform: uppercase;
}
.says {
	display: none;
}
.comment-metadata {
	display: inline-block;
	font-size: 16px;
}
.comment-metadata a {
	color: #a8a6a1;
	transition: color 0.2s;
}
.comment-metadata a:hover,
.comment-metadata a:focus,
.comment-metadata a:active {
	color: #666;
}
.comment-content {
	margin-bottom: .8em;
}
.comment-content a {
	word-wrap: break-word;
}
.comment-reply-link:after {
	content: "\00A0\2192";
}
.comment-respond {
	padding: 25px 20px 20px 0;
}
.comment-reply-link,
.comment-content {
	margin-left: 44px;
}
.comment-form label {
	color: #a8a6a1;
	display: inline-block;
	width: 109px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
	margin: 0 0 1.6em;
	position: relative;
}
.comment-form-author label,
.comment-form-email label,
.comment-form-url label,
.comment-form-comment label {
	font-size: 15px;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 0.65em 0.8em;
	position: absolute;
	left: 0;
	text-transform: uppercase;
}
.comment-form-author input,
.comment-form-author textarea,
.comment-form-email input,
.comment-form-email textarea,
.comment-form-url input,
.comment-form-url textarea,
.comment-form-comment input,
.comment-form-comment textarea {
	clear: both;
	padding-left: 6.4em;
	width: 100%;
}
.comment-form-author textarea,
.comment-form-email textarea,
.comment-form-url textarea,
.comment-form-comment textarea {
	padding: 2em 0.8em 0.375em;
}
.form-allowed-tags {
	font-size: 15px;
	font-size: 1.4rem;
}
.no-comments {
	text-align: center;
}

/*--------------------------------------------------------------
10.4 Page Templates
--------------------------------------------------------------*/
.content-wrapper {
	background: #fff;
	padding: 3.2em 4%;
	position: relative;
}
.content-wrapper.with-featured-image {
	padding: 1.6em 0;
}

/* Front Page Template */
.thumbnail-placeholder {
	display: block;
}

/* Front Page */
.front-page-content-area .entry-footer {
	margin-bottom: 0;
}

.featured-page-area {
	padding: 1.6em 0 3.2em;
	padding-bottom: 0;
}

.featured-page {
	font-size: 16px;
	margin-bottom: 3.2em;
}

.featured-page .entry-header {
	position: absolute;
	left: 5%;
	bottom: 5%;
	width: 90%;
	height: 32px;
	background-color: #7a1a0a;
}


.featured-page .entry-title,
.featured-page .entry-title a {
	color: #ffffff;
	font-size: 18px;
	line-height: 32px;
	font-weight: normal;
	text-align: center;
	text-transform: none;
	margin: 0;
}

.teaser {
	font-size: 16px;
	margin-bottom: 3.2em;
}

.teaser .entry-header {
	position: absolute;
	left: 5%;
	bottom: 5%;
	width: 90%;
	height: 32px;
	background-color: #7a1a0a;
}


.teaser .entry-title,
.teaser .entry-title a {
	color: #ffffff;
	font-size: 18px;
	line-height: 32px;
	font-weight: normal;
	text-align: center;
	text-transform: none;
	margin: 0;
}


/* Grid Page */
.grid-page-content-area .entry-content {
	min-height: 0;
}
.grid-page-content-area .child-pages {
	padding-top: 1.6em;
}
.grid-page-content-area .child-pages .hentry {
	float: none;
	margin: 0 auto 1.6em;
}
.grid-page-content-area .child-pages .entry-thumbnail img {
	display: block;
}
.grid-page-content-area .child-pages .entry-header {
	margin: 0 0 .8em;
	padding: 0;
}
/* Full-Width Page Template */
.content-wrapper.full-width.with-featured-image {
	margin: 0;
	padding: 1.6em 0 0;
}
.content-wrapper.full-width .content-area {
	width: 100%;
	max-width: 100%;
}
.content-wrapper.full-width .hentry:after {
	width: 100%;
}



/*--------------------------------------------------------------
10.6 Footer
--------------------------------------------------------------*/

.signet.bottom {
	margin: 1em auto;
	width: 100px;
	height: auto;
}

.site-footer {
	background-color: #575757;
	color: #fff;
	font-size: 14px;
	padding: 24px 34px 24px 34px;
	text-align: center;
	letter-spacing: 1px;
}

.site-info a {
	color: #fff;
	border-bottom: 2px solid #575757;
}
.site-info a:hover,
.site-info a:focus,
.site-info a:active {
	border-bottom: 2px solid #fff;
}

.site-info .sep {
	margin: 0 .4em;
}


/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
}

.page-content img,
.entry-content img,
.teaser-list .teaser img,
.featured-page .featured-image img {
	-webkit-filter: grayscale(0.5);
    filter: grayscale(0.5);
	-webkit-transition: all 0.5s;
}

.page-content img:hover,
.entry-content img:hover,
.teaser-list .teaser img:hover,
.featured-page .featured-image img:hover {
	-webkit-filter: none; /*Returns to default state*/
    filter: none;	
}

.page-content img.gray,
.entry-content img.gray {
	-webkit-filter: grayscale(1);
    filter: grayscale(1);
	-webkit-transition: all 0.5s;
}

.page-content img.gray:hover,
.entry-content img.gray:hover {
	-webkit-filter: none; /*Returns to default state*/
    filter: none;	
}

.page-content img.sepia,
.entry-content img.sepia {
	-webkit-filter: sepia(0.5);
    filter: sepia(0.5);	
	-webkit-transition: all 0.5s;
}


.page-content img.sepia:hover,
.entry-content img.sepia:hover {
	-webkit-filter: none; /*Returns to default state*/
    filter: none;	
}



.page-content ul li:before,
.entry-content ul li:before,
.widget-area ul li:before  {
	content: "";
	border-color: transparent #575757;
	border-style: solid;
	border-width: 0.3em 0 0.3em 0.3em;
	display: block;
	height: 0;
	width: 0;
	left: -1em;
	top: 1em;
	position: relative;
}

	


/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object,
audio,
video {
	display: block;
	margin-bottom: 1.6em;
	max-width: 100%;
}


/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
	max-width: 100%;
}
.wp-caption-dd,
.wp-caption-text {
	clear: both;
	font-size: 15px;
	font-style: italic;
	text-align: center;
	width: 100%;
}
.wp-caption .wp-caption-dd,
.wp-caption .wp-caption-text {
	margin: 0.8em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.site-main .gallery {
	margin-bottom: 1.6em;
}
.site-main .gallery a img {
	border: none;
	height: auto;
	-webkit-filter: grayscale(0.5);
    filter: grayscale(0.5);
}

.site-main .gallery a:hover img,
.site-main .gallery a:focus img {
	-webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.site-main .gallery dd {
	margin: 0;
}
.gallery-item {
	display: inline-block;
	overflow: hidden;
	padding: 0 4px;
	position: relative;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-1 .gallery-item {
	padding: 0;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {
	color: #fff;
	background-color: rgba(0, 0, 0, 0.7);
	font-size: 15px;
	margin: 0;
	max-height: 100%;
	opacity: 0;
	padding: 6px 8px;
	position: absolute;
	bottom: 7px;
	left: 0;
	text-align: left;
	width: 100%;
}
.gallery-caption:before {
	content: "";
	min-height: 49px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.gallery-item:hover .gallery-caption,
.gallery-item:focus .gallery-caption,
.gallery-item:active .gallery-caption {
	opacity: 1;
}
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

/*--------------------------------------------------------------
13 Media Queries
--------------------------------------------------------------*/

@media screen and (min-width: 480px) {

   	.site-branding .mobile {
		display: none;
	}

	.site-branding .screen {
		display: block;
	}

}


@media screen and (min-width: 768px) {

	.site-header {
		position: relative;
	}

	.site-branding {
		padding: 0;
		background: none;
		position: absolute;
		top: 2em;
		left: 0;
		transform: none;
		background-color: none;
	}

	.site-branding .logo-link {
		display: inline-block;
		margin: 0 auto;
		max-width: 531px;
	}

	.site-branding .logo {
   		display: block;
		width: auto;
		height: auto;
		margin: 0 auto;
		max-height: 150px;
		/*position: absolute;
		left: 0;
		top: 0;      */
		z-index: 100;
	}


	/*
	.site-branding .logo-bg {
		display: block;
		opacity: 0.80;
		-webkit-filter: contrast(10);
		filter: contrast(10);
	} */



	.menu-pdf.screen {
		display: block;
		position: absolute;
		bottom: 3em;
		right: 1em;
		color: #fff;
		padding: 0.5em 1em;
		width: 170px;
		text-align: center;
	}

	.menu-pdf.screen img {
		width: 100%;
		max-width: 100px;
		height: auto;
	}

	.menu-pdf a {
		color: #fff;
	}

	.menu-pdf span {
		display: none;
	}


	/* Navigation */
	.main-navigation {
		padding: 0 55px;
	}
	.main-navigation ul {
		display: block;
		list-style: none;
		text-align: center;
	}
	.main-navigation ul li {
		border: 0 none;
		display: inline-block;
		padding: .4em 0 .4em 1.2em;
		position: relative;
	}
	.main-navigation ul a {
		display: inline-block;
		padding: .4em 0;
	}
	.main-navigation .nav-menu > li:first-child,
	.main-navigation .menu > li:first-child {
		padding-right: 0;
	}
	.main-navigation .nav-menu > li:first-child:before,
	.main-navigation .menu > li:first-child:before {
		display: none;
	}
	.main-navigation ul ul {
		background-color: #585857;
		box-shadow: rgba(0,0,0, 0.1) 0 1px 2px;
		display: block;
		left: -99999em;
		margin: 0;
		position: absolute;
		top: 2.5em;
		z-index: 99999;
	}
	.main-navigation .menu-item-has-children > a:after,
	.main-navigation .page_item_has_children > a:after {
		content: "\f502";
		font-family: Genericons;
		font-size: 8px;
		display: inline;
		padding-left: .8em;
	}
	.main-navigation ul ul .menu-item-has-children > a:after,
	.main-navigation ul ul .page_item_has_children > a:after {
		content: "\f501";
	}

	.main-navigation .menu-item.home i {
		font-size: 20px;
		line-height: 20px;
	}

	.main-navigation .menu-item.home span {
		display: none;
	}

	/* Hover behavior*/
	.main-navigation ul li:first-child:hover > ul,
	.main-navigation ul li:first-child.focus > ul {
		left: 0;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li.focus > ul {
		left: 0;
	}
	.main-navigation ul li:hover > ul ul,
	.main-navigation ul li.focus > ul ul {
		left: -99999em;
	}
	.main-navigation ul ul li:hover > ul,
	.main-navigation ul ul li.focus > ul,
	.main-navigation ul ul li:first-child:hover > ul,
	.main-navigation ul ul li:first-child.focus > ul {
		left: 100%;
	}
	.main-navigation ul ul li {
		padding: 0;
		text-align: left;
	}
	.main-navigation ul ul a,
	.main-navigation ul ul ul a,
	.main-navigation ul ul ul ul a {
		padding-left: .8em;
	}
	.main-navigation ul ul a:hover,
	.main-navigation ul ul > li.focus > a {
		opacity: 0.5;
	}
	.main-navigation ul ul a {
		border-top-color: rgba(255,255,255,1);
		display: block;
		font-size: 15px;
		font-weight: normal;
		width: 250px;
		padding: 0.8em;
		text-transform: uppercase;
	}
	
	.main-navigation ul ul li:first-child a {
		border: none;
	}
	
	.main-navigation ul ul ul {
		top: 0;
		left: 100%;
	}

	/* Small menu */
	.menu-toggle {
		cursor: pointer;
		display: none;
	}

	/* Widget Home Page - Mittagskarte nur für Mobile Darstellung unterhalb des Banners  */

    .home .menu-box .widget {
		display: none;
    }
	.home .open-box  {
		display: none;
	}


	/* Front Page & Footer Widget Areas */
	.footer-widget-area .widget-area {
		float: none;
		margin: 0;
		width: auto;
	}

	.footer-widget-area .widget-title {
		text-align: left;
	}

	.featured-page {
		margin: 2em 0 0 0;
	}

	.teaser {
		margin: 2em 0 0 0;
	}

	.featured-page-area .featured-page,
	.teaser-list .teaser,
	.footer-widget-area .widget-area {
		float: left;
	}

	.featured-page-area .featured-page:nth-child(1):nth-last-child(1)
	.footer-widget-area .widget-area:nth-child(1):nth-last-child(1) {
		width: 100%;
	}

	.featured-page-area .featured-page:nth-child(1):nth-last-child(2),
	.featured-page-area .featured-page:nth-child(2):nth-last-child(1),
	.footer-widget-area .widget-area:nth-child(1):nth-last-child(2),
	.footer-widget-area .widget-area:nth-child(2):nth-last-child(1) {
		margin-left: 1%;
		margin-right: 1%;
		width: 48%;
	}

    .teaser-list .teaser {
		margin-right: 1%;
		margin-left: 1%;
		width: 48%;
	}

	.featured-page-area .featured-page:nth-child(1):nth-last-child(4),
	.featured-page-area .featured-page:nth-child(3):nth-last-child(2){
		clear: left;
		margin-left: 1%;
		margin-right: 1%;
		width: 48%;
	}

	.featured-page-area .featured-page:nth-child(2):nth-last-child(3),
	.featured-page-area .featured-page:nth-child(4):nth-last-child(1) {
		margin-left: 1%;
		margin-right: 1%;
		width: 48%;

	}

	.featured-page-area .featured-page:nth-child(1):nth-last-child(2):last-of-type,
	.featured-page-area .featured-page:nth-child(2):nth-last-child(1):last-of-type,
	.footer-widget-area .widget-area:nth-child(1):nth-last-child(2):last-of-type,
	.footer-widget-area .widget-area:nth-child(2):nth-last-child(1):last-of-type {
		margin-right: 0;
	}

	.featured-page-area .featured-page:nth-child(1):nth-last-child(3),
	.featured-page-area .featured-page:nth-child(2):nth-last-child(2),
	.featured-page-area .featured-page:nth-child(3):nth-last-child(1),
	.footer-widget-area .widget-area:nth-child(1):nth-last-child(3),
	.footer-widget-area .widget-area:nth-child(2):nth-last-child(2),
	.footer-widget-area .widget-area:nth-child(3):nth-last-child(1) {
		margin-right: 5%;
		width: 30%;
	}

	.featured-page-area .featured-page:nth-child(1):nth-last-child(3):last-of-type,
	.featured-page-area .featured-page:nth-child(2):nth-last-child(2):last-of-type,
	.featured-page-area .featured-page:nth-child(3):nth-last-child(1):last-of-type,
	.footer-widget-area .widget-area:nth-child(1):nth-last-child(3):last-of-type,
	.footer-widget-area .widget-area:nth-child(2):nth-last-child(2):last-of-type,
	.footer-widget-area .widget-area:nth-child(3):nth-last-child(1):last-of-type {
		margin-right: 0;
	}

	/* Sidebar */
	#secondary.widget-area {
		margin-right: 4%;
		margin-left: 4%;
	}

	.widget_social .social-icons {
		text-align: left;
	}
	.widget-no-bg {
		justify-content: center;
		display: flex;
	}

}

@media screen and (min-width: 850px) {

	.menu-pdf.screen img {
		width: 100%;
		max-width: 150px;
		height: auto;
	}

	/* Font sizes */
	.site-title,
	h1 {
		font-size: 28px;
		line-height: 1.1;
		margin-bottom: 0.2em;
	}
	.page-title,
	.entry-title,
	.entry-title a {
		font-size: 28px;
	}

	h2 {
		font-size: 28px;
		margin-bottom: 0.4em;
	}

	.featured-page .entry-title,
	.featured-page .entry-title a,
	.teaser .entry-title,
	.teaser .entry-title a,
	h3 {
		font-size: 18px;
	}

	.site-description,
	h4  {
		font-size: 20px;
	}

	h5 {
		font-size: 16px;
		font-weight: bold;
	}

	h6,
	.cat-links a {
		font-size: 16px;
	}


	body,
	button,
	input,
	select,
	textarea {
		font-size: 16px;
	}

	/* Layout */
	.content-area {
		float: left;
		width: 68%;
	}
	.no-sidebar .content-area,
	.front-page-content-area.content-area {
		width: 100%;
		max-width: 100%;
	}
	#secondary.widget-area {
		float: right;
		margin: 0;
		width: 25%;
	}

	/* Posts */
	.hentry:after,
	.post-navigation:after,
	.posts-navigation:after,
	.page-header:after {
		width: 100%;
	}

	[class*="navigation"] .nav-previous {
		float: left;
		width: 48%;
	}
	[class*="navigation"] .nav-next {
		border-top: 0;
		margin-top: 0;
		padding-top: 0;
		float: right;
		width: 48%;
	}

}
@media screen and (min-width: 1000px) {

	/* Layout */
	.site {
		margin: 0 auto;
		padding: 0;
	}

	.site-content {
		padding: 3.2em 55px;
	}
	.page .site-content,
	.error404 .site-content {
		padding: 0;
	}


	.content-area {
		float: left;
		width: 77.11%;
		max-width: 825px;
		margin-left: -55px;
	}
	

	.no-sidebar .content-area {
		margin-right: 0;
		margin-left: 0;
		width: 100%;
	}
	

	/* Front page content without featured image */
	.featured-page-area {
		padding: 1.6em 0 3.2em;
	}

	.footer-widget-area,
	.home.page .footer-widget-area {
		margin: 0;
	}


	/* Posts */
	.type-post .entry-summary,
	.type-post .entry-content {
		min-height: 4em;
	}
	.cat-links {
		margin-bottom: .2em;
	}
	.entry-meta {
		line-height: 2;
		position: absolute;
		left: 55px;
		text-align: right;
		width: 121px;
	}
	.entry-meta > span {
		display: block;
		margin-right: 0;
	}
	.no-sidebar .entry-meta {
		left: 0;
	}
	.post-navigation .nav-links,
	.posts-navigation .nav-links,
	.comments-area {
		margin-left: 211px;
	}
	.no-sidebar .post-navigation .nav-links,
	.no-sidebar .posts-navigation .nav-links,
	.no-sidebar .comments-area {
		margin-left: 150px;
	}
	.page.no-sidebar .comments-area {
		margin-left: 0;
	}
	.single-jetpack-testimonial .post-navigation {
		margin-left: 0;
	}
	.post-type-archive-jetpack-testimonial .site-content {
		padding: 0;
	}

	/* Default Page Template */
	.content-wrapper {
		background: #fff;
		padding: 3.2em 55px;
		position: relative;
	}

	/*.content-wrapper.with-featured-image {
		margin: 1.3em 0 0 120px;
		padding: 1.3em 55px 0 1.9em;
	}              */

	.content-wrapper .content-area {
		float: left;
		margin: 0;
		width: 70%;
		max-width: 675px;
	}

	.no-sidebar .content-wrapper .content-area {
		float: none;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
	}

	.no-sidebar.page .content-wrapper.without-featured-image {
		padding-left: 55px;
	}

	.entry-thumbnail {
		min-height: 80px;
	}

	/* Content */
	.entry-body {
		margin-top: 1.6em;
		padding: 0 0 0 211px;
	}
	.no-sidebar .entry-body {
		padding-left: 150px;
	}
	.post-thumbnail {
		width: 100%;
	}
	.post-thumbnail + .entry-header {
		background-color: #fff;
		margin: 0 0 0 175px;
		padding: 1.3em 1.6em 0 1.9em;
		position: absolute;
		transform: translateY(-100%) translateY(.4em);
		width: calc(100% - 175px);
	}
	.no-sidebar .post-thumbnail {
		margin-left: -55px;
		margin-right: -55px;
		width: auto;
	}
	.no-sidebar .post-thumbnail + .entry-header {
		margin-left: 120px;
		width: calc(100% - 65px);
	}
	.blog .without-featured-image > .entry-header,
	.single .without-featured-image > .entry-header,
	.archive .without-featured-image > .entry-header,
	.search .without-featured-image > .entry-header {
		margin-left: 211px;
	}
	.no-sidebar.blog .without-featured-image > .entry-header,
	.no-sidebar.single .without-featured-image > .entry-header,
	.no-sidebar.archive .without-featured-image > .entry-header,
	.no-sidebar.search .without-featured-image > .entry-header {
		margin-left: 150px;
	}
	.archive .page-header,
	.search .page-header {
		margin: 0 0 2.4em;
	}
	.page-title,
	.taxonomy-description,
	.no-results .page-content {
		padding-left: 211px;
	}
	.no-sidebar .page-title,
	.no-sidebar .taxonomy-description {
		padding-left: 150px;
	}
	.no-sidebar.search .no-results .page-title,
	.no-sidebar.search .no-results .page-content,
	.error404 .page-title {
		padding-left: 0;
	}

	/* Sidebar */
	#secondary.widget-area {
		width: 26%;
		max-width: 250px;
	}

	#secondary.widget-area .widget {
		background-color: #ededec;
	}

	#secondary.widget-area .widget-title + div {
		padding: 1em;
	}

	#secondary.widget-area .widget-title + div.custom-html-widget {
		padding: 0;
	}

	#secondary.widget-area .widget_media_image {
		background-color: #fff;
	}

	#secondary.widget-area .widget_media_image a {
		display: block;
		background-color: #fff;
		line-height: 1;
	}


	/* Full-Width Page Template */
	.content-wrapper.full-width.with-featured-image {
		margin: 1.6em 13% 0;
		padding: 1.6em 3% 0;
	}

	.content-wrapper.full-width.without-featured-image {
		margin: 0 13%;
	}

	.content-wrapper.full-centered {
		margin: 0 13%;
	}

	.comments-closed .hentry:after {
		display: none;
	}

	/* Grid Page */
	.grid-page-content-area .hentry:after,
	.grid-page-content-area .child-pages .hentry:after {
		display: none;
	}
	.grid-page-content-area .child-pages {
		border-top: 1px solid #f2f2f2;
		padding-top: 3.2em;
	}
	.grid-page-content-area .child-pages .entry-summary {
		min-height: 0;
	}
	.grid-page-content-area .child-pages .hentry {
		float: left;
		width: 47%;
		margin: 0 6% .8em 0;
	}
	.grid-page-content-area .child-pages .hentry:nth-of-type(2n) {
		margin-right: 0;
	}
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
  filter: alpha(opacity=80); }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }


.mfp-zoom {
  cursor: pointer;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #cccccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }

.mfp-preloader a {
  color: #cccccc; }

.mfp-preloader a:hover {
  color: white; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #cccccc;
  font-size: 12px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.mfp-arrow:active {
  margin-top: -54px; }

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1; }

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent; }
.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px; }
.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after,
  .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px; }
  .mfp-arrow-left:before,
  .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after,
  .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px; }
  .mfp-arrow-right:before,
  .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: black; }

.mfp-iframe-holder .mfp-close {
  top: -40px; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
  border: 0;
  outline: 0;
  box-shadow: none;

  }

/* The shadow behind the image */
.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444444; }

.mfp-figure {
  line-height: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
   * Remove all paddings around the image on small screen
   */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }

  .mfp-img-mobile img.mfp-img {
    padding: 0; }

  /* The shadow behind the image */
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0; }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; } }
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }
.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }


.mona-widget-wrapper1 iframe {
	width: 100%;
}

/* Cookie Notice */

#cookie-notice.cn-bottom {
	min-height: 60px;
	border-top: 2px solid #fff;
	background-color: #7A1A0A;
}

.cookie-notice-container {
	padding: 25px;
}

.cookie-notice-container a {
	color: #fff;
	text-decoration: underline;
}

.cookie-notice-container a:hover,
.cookie-notice-container a:focus {
	text-decoration: none;
}

.cookie-notice-container a.cn-button {
	margin: 5px 0;
	padding: 5px 10px;
	border: 2px solid #fff;
	color: #fff;
	text-decoration: none;
	background-color: #7A1A0A;
	font-weight: normal;
	font-size: 14px;
}

.cookie-notice-container a.cn-button:hover,
.cookie-notice-container a.cn-button:focus {
	color: #7A1A0A;
	text-decoration: none;
	background-color: #fff;
}

.cookies-not-set .site-footer {
	min-height: 140px;
}

@media all and (max-width: 1500px) {
	#cn-notice-text {
		display: block;
		margin: 2em 0;
	}
}

/*
	Tischreservierung
 */
div#teburio-kqtwddX53FzstissB iframe {
	width: 100% !important;
}

.wp-image-1732 {
	filter:none !important;
}

#opening h3 {
	background-color:#aaabab !important;
}