/**** general *****/

/* global box-sizing */
*,
*::after,
*::before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizelegibility;
	margin: 0;
	padding: 0;
}

body {
	margin: 0 !important;
}

.container-wide {
	margin: 0 auto;
	max-width: 1600px;
	padding: 0 20px;
}

.container-narrow {
	margin: 0 auto;
	max-width: 1230px;
	padding: 0 20px;
}

.container-narrower {
	margin: 0 auto;
	max-width: 900px;
	padding: 0 20px;
}

.site-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.page-body {
	-webkit-box-flex: 1;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
	position: relative;
}

body::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track,
.programmes-table-wrapper::-webkit-scrollbar-track {
	background-color: var(--accent-color-2);
}

body::-webkit-scrollbar,
.modal-content::-webkit-scrollbar,
.programmes-table-wrapper::-webkit-scrollbar {
	width: 6px;
	background-color: var(--accent-color-2);
}

body::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb,
.programmes-table-wrapper::-webkit-scrollbar-thumb {
	background-color: var(--dark-red-color);
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.flex-space-between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex-vertical-center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.page-template-default #primary {
	padding: 80px 0;
}

iframe {
	max-width: 100%;
	width: 100%;
	height: auto;
	margin: 60px 0;
}

#primary {
	padding: 80px 0;
}

/***************
- SITE FOOTER *
****************/
footer {
	background-color: var(--dark-red-color);
	color: #fff;
	padding: 70px 0;
	border-top: 4px solid var(--accent-color);
}

footer .footer-left-column a {
	color: #fff !important;
	text-decoration: none;
}

footer .footer-left-column a img {
	width: 40px;
}

footer h6 {
	font-weight: 700;
	font-size: 18px;
	text-transform: unset;
	margin-bottom: 20px;
}

footer ul {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 50px;
	margin-bottom: 0;
}

footer ul li::after {
	content: "";
	display: inline-block;
	margin: 0 15px;
	width: 1px;
	height: 16px;
	background: var(--red-text-color);
	position: relative;
	top: 2px;
}

footer ul li:last-child::after {
	display: none;
}

footer ul li a,
footer ul li a:visited {
	font-size: 18px;
	font-weight: 300;
	color: var(--red-text-color);
}

footer ul li a:hover,
footer .current-menu-item a {
	color: var(--accent-color) !important;
}

.footer-right-column {
	text-align: right;
}

footer .socials {
	margin-bottom: 40px;
}

footer .socials .flex {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

footer .socials svg {
	width: 55px;
	height: 55px;
	margin-left: 20px;
}

footer .socials svg:hover path {
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

footer .socials svg:hover path {
	fill: var(--accent-color) !important;
}

.footer-cards {
	margin-top: 30px;
}

.footer-cards img {
	margin-right: 15px;
}

.left-icon i {
	margin-right: 5px;
}

.footer-right-column ul li a {
	text-decoration: none;
}

/*.left-icon::before {
    content: "";
    display: inline-block;
    position: relative;
    margin-right: 10px;
    width: 23px;
    height: 23px;
    background-size: contain;
}*/
footer .phone::before {
	background: url(../images/phone.svg) no-repeat;
}

footer .footer-email::before {
	background: url(../images/mail.svg) no-repeat;
}

footer .anfahrts::before {
	background: url(../images/car.svg) no-repeat;
}

footer .ofen::before {
	background: url(../images/flame.svg) no-repeat;
}

footer .footer-jobs::before {
	background: url(../images/jobs.svg) no-repeat;
}

footer .phone {
	margin-right: 20px;
	display: inline-block;
}

.footer-contacts,
.footer-urls {
	margin-top: 15px;
}

.footer-urls a {
	display: inline-block;
	margin-right: 35px;
}

.footer-left-column a,
.footer-left-column {
	font-weight: 300;
	font-size: 20px;
}

@media only screen and (max-width: 992px) {

	.footer-right-column {
		margin-top: 60px;
		text-align: center;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		max-width: 100%;
	}

	footer .socials .flex {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	footer .socials .flex svg {
		margin: 0 10px;
	}

	.footer-right-column ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		padding-left: 0;
		margin-left: 0;
	}

	.footer-left-column {
		text-align: center;
		-webkit-box-flex: 1;
		-ms-flex: 1 1 100%;
		flex: 1 1 100%;
		max-width: 100%;
	}

	.footer-left-column .flex {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.footer-left-column .flex a {
		margin: 10px !important;
	}
}

@media only screen and (max-width: 767px) {

	.footer-left-column .footer-contacts,
	.footer-left-column .footer-urls {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}


/***************
- END OF SITE FOOTER *
****************/

/***************
- SITE HEADER *
****************/
header.site-header {
	padding: 60px 0;
	background-color: rgba(0, 0, 0, 0.6);
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 10;
	-webkit-transition: all 0.23s ease;
	transition: all 0.23s ease;
}

.transparent-header.site-header {
	background-color: transparent;
}

header.site-header.sticky {
	padding: 15px 0;
	background-color: var(--dark-red-color) !important;
	z-index: 2021;
}

header.site-header.sticky .custom-logo-link img {
	width: 100%;
	max-width: 120px;
}

header.site-header .custom-logo-link img {
	-webkit-transition: all 0.23s ease;
	transition: all 0.23s ease;
	max-width: 150px;
}

header.site-header .container-wide {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header.site-header ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.header-navigation ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header-navigation ul li a {
	color: #fff;
	text-decoration: none;
	font-size: 22px;
	font-weight: 300;
	margin-left: 40px;
}

.header-navigation ul li a:hover {
	color: var(--accent-color-3);
}

.header-navigation ul li.current-menu-item a,
.header-navigation ul li.current_page_parent a {
	color: var(--yellow-color);
	font-weight: 700;
}

.woo-nav {
	text-align: right;
	margin-bottom: 20px;
}

.woo-nav a {
	display: inline-block;
	position: relative;
	margin-left: 15px;
	text-decoration: none;
}

.woo-nav a.active path,
.woo-nav a:hover path {
	fill: var(--yellow-color);
}

.woo-nav img,
.woo-nav svg {
	width: 40px;
	transition: all 0.23s ease;
	height: auto;
}

.sticky .woo-nav img,
.sticky .woo-nav svg {
	width: 30px;
}

.woo-nav .cart-counter {
	border-radius: 100%;
	color: #fff;
	background-color: var(--yellow-color);
	position: absolute;
	top: -7px;
	right: -14px;
	width: 27px;
	height: 27px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 15px;
}

/************ MOB MENU ***************/
body.menu-open {
	overflow: hidden;
}

#mob-menu-bar {
	z-index: 2021;
	position: relative;
}

.bar1 {
	width: 30px;
}

.bar2 {
	width: 21px;
}

.bar3 {
	width: 30px;
}

.bar1,
.bar2,
.bar3 {
	height: 2px;
	margin: 5px auto 5px 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	background-color: #fff;
}

.change .bar1 {
	-webkit-transform: rotate(-45deg) translate(-5px, 6px);
	transform: rotate(-45deg) translate(-5px, 6px);
	width: 30px;
}

.change .bar2 {
	opacity: 0;
}

.change .bar3 {
	-webkit-transform: rotate(45deg) translate(-4px, -5px);
	transform: rotate(45deg) translate(-4px, -5px);
	width: 30px;
}

@media only screen and (min-width: 992px) {

	#mob-menu-bar {
		display: none;
	}
}

@media only screen and (max-width: 991px) {

	.header-navigation ul.menu {
		background-color: var(--dark-red-color) !important;
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		z-index: 202;
		flex-direction: column;
		padding: 100px 60px 20px 20px;
		width: 70%;
		transition: all 0.4s ease-in-out;
		transform: translateX(-100%);
	}

	.header-navigation ul.menu li {
		margin-bottom: 10px;
	}

	.header-navigation ul.menu.menu-open {
		transform: translateX(0);
	}

	#mob-menu-bar {
		margin-left: 40px;
	}

	.header-navigation {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.custom-logo-link img {
		max-width: 180px;
	}

	.woo-nav {
		margin-bottom: 0 !important;
	}
}

/***************
- END OF SITE HEADER *
****************/

/***************
- PAGE TOP BANNER *
****************/
.home .page-top-banner {
	height: 100vh;
}

.home .page-top-banner img {
	max-height: 100%;
	height: 100%;
}

.woocommerce-account .page-top-banner {
	max-height: 470px;
	overflow: hidden;
}

.page-top-banner {
	position: relative;
}

.page-top-banner img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	max-height: 630px;
}

.woocommerce-checkout .page-top-banner img {
	max-height: 220px;
}

.page-top-banner::after {
	content: "";
	position: absolute;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0) 100%);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-top-banner-text {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 184px 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #fff;
}

.page-top-banner-text h1 {
	font-size: 80px;
	color: #fff;
}

.hero-subtitle {
	font-size: 22px;
}

.hero-subtitle a {
	color: #fff !important;
	text-decoration: none;
}

.page-top-banner-text > div {
	margin: 0 auto;
	max-width: 1600px;
	padding: 0 20px;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.no-featured-img {
	padding-top: 250px;
}

.page-top-banner > * {
	z-index: 2;
}

#scroll-down {
	position: absolute;
	left: 50%;
	bottom: 90px;
	z-index: 155;
	color: #fff;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

#scroll-down a span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 44px;
	height: 44px;
	margin-left: -22px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	-webkit-transform:
 rotate(-45deg);
	transform:
 rotate(-45deg);
	-webkit-animation: sdb07 2s infinite;
	animation: sdb07 2s infinite;
	opacity: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

#scroll-down a span:nth-of-type(1) {
	animation-delay: 0s;
}

#scroll-down a span:nth-of-type(2) {
	top: 26px;
	-webkit-animation-delay: 0.15s;
	animation-delay: 0.15s;
}

@-webkit-keyframes sdb07 {

	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@keyframes sdb07 {

	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

/***************
- END OF PAGE TOP BANNER *
****************/

/***************
- HOMEPAGE *
****************/
.home #primary {
	padding: 80px 0;
	background-color: var(--dark-red-color);
	color: #fff;
}

.home h2 {
	color: var(--red-text-color);
	margin-bottom: 30px;
}

.box-grid {
	margin: 60px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.box-item {
	max-width: 565px;
	margin: 30px 0;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 100%;
	flex: 1 1 100%;
	text-decoration: none;
}

.box-item img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.box-item::after {
	z-index: 2;
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgb(0, 0, 0);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 48%, rgba(0, 0, 0, 0) 100%);
	-webkit-transition: all 0.43s ease-in;
	transition: all 0.43s ease-in;
}

.box-item:hover::after {
	z-index: 4;
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(27%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 27%, rgba(0, 0, 0, 0.8) 100%);

}

.box-item::before {
	content: "mehr erfahren";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.43s ease-in;
	transition: all 0.43s ease-in;
	color: #fff;
	text-decoration: underline;
	z-index: 6;
	opacity: 0;
}

.box-item:hover::before {
	opacity: 1;
}

.box-item-inner {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 30px;
	z-index: 3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.box-title {
	color: #fff !important;
	margin-bottom: 0;
	-webkit-transition: all 0.1s ease-in;
	transition: all 0.1s ease-in;
	font-size: 45px;
	line-height: 1.2;
	max-width: 400px;
	position: relative;
	z-index: 9;
}

.title-top {
	font-size: 80px;
	margin-bottom: 30px;
}

@media only screen and (max-width: 1250px) {

	div .box-item {
		max-width: 47%;
	}
}

@media only screen and (max-width: 768px) {

	div.box-grid .box-item {
		max-width: 100%;
	}

	.title-top {
		font-size: 35px !important;
	}
}

@media only screen and (max-width: 480px) {

	h3.box-title {
		font-size: 35px !important;
		max-width: 100% !important;
	}

	.page-top-banner-text h1 {
		font-size: 34px;
	}
}


@-webkit-keyframes fadeInLeft {

	from {
		opacity: 0;
		-webkit-transform: translate3d(-50px, 0, 0);
		transform: translate3d(-50px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInLeft {

	from {
		opacity: 0;
		-webkit-transform: translate3d(-50px, 0, 0);
		transform: translate3d(-50px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeinleft;
	animation-name: fadeInLeft;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.delay1 {
	-webkit-animation-delay: 0.5s;
	animation-delay: 0.5s;
}

.delay2 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}

/***************
- END OF HOMEPAGE *
****************/

/***************
- RECIPE *
****************/
.page-template-template-recepies  #primary {
	padding: 80px 0;
	background-color: var(--accent-color-3);
	color: #000;
}

.page-template-template-recepies .box-item::before {
	content: "zum Rezept";
}

.page-template-template-recepies h1 {
	line-height: 1.3;
}

.recipe-features {
	margin-top: 70px;
	margin-bottom: 70px;
}

.recipe-features img {
	margin-bottom: 30px;
	max-width: 90px;
}

.single-recipes #primary {
	padding: 80px 0;
	background-color: var(--accent-color-3);
}

.single-recipes #primary h1 {
	margin: 20px 0 60px;
}

.back-to-recipes {
	display: inline-block;
	text-decoration: none;
	color: var(--dark-red-color) !important;
	margin-bottom: 20px;
}

.back-to-recipes:hover {
	text-decoration: underline;
}


.crossell-product-wrapper {
	background: var(--primary-background-color);
	overflow: hidden;
}

.crossell-product-wrapper .crossell-product-img  img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.crossell-product-wrapper a {
	text-decoration: none;
}

.single-recipes h2,
.crossell-product-wrapper h2 a {
	color: var(--red-text-color) !important;
	font-size: 50px;
}

.crossell-product-wrapper h2 {
	margin-bottom: 40px;
}

.crossell-product-excerpt {
	margin-bottom: 50px;
}

.crossell-product-text {
	max-width: 500px;
	padding: 50px 0;
}

.crossell-product-wrapper .button {
	margin-bottom: 100px;
}

.crossell-product-img {
	position: relative;
	display: block;
	margin-right: calc((100vw - 100%)/- 2);
	max-width: 50vw;
	height: 80vh;
}

.gift-section .crossell-product-img::before {
	display: none;
}

.crossell-product-img:hover::before {
	opacity: 1;
}


.crossell-product-wrapper h2 a:hover {
	text-decoration: underline;
}

.recipe-descriptions {
	margin-bottom: 100px;
}

.ingredient-quantity {
	max-width: 70px;
	width: 100%;
	text-align: right;
	padding-right: 20px;
}

.ingredient-text {
	flex: 1;
}

.ingredients-title {
	margin-bottom: 15px;
}

.single-recipes h3 {
	margin-bottom: 30px;
}

.recipes-icons {
	margin-top: 35px;
	align-items: flex-end;
}

.recipes-icons > div,
.recipes-icons > a {
	cursor: pointer;
	text-align: center;
	font-weight: 700;
	margin: 15px 40px 0 0;
	text-decoration: none;
}

.recipes-icons .share-socials {
	position: relative;
}

.recipes-icons .share-socials .socials {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	display: none;
}

.recipes-icons .share-socials:hover .socials {
	display: block;
}

.recipes-icons .share-socials .socials a {
	margin: 0 5px;
}

.recipes-icons .share-socials .socials a:hover {
	color: var(--red-text-color);
}

.ingredients {
	margin-bottom: 30px;
}

@media only screen and (max-width: 1024px) {

	.crossell-product-img {
		height: 100% !important;
	}
}

@media only screen and (max-width: 768px) {

	.crossell-product-wrapper .button {
		margin-bottom: 0 !important;
	}
}

@media only screen and (max-width: 767px) {

	.crossell-product-img {
		max-width: 100% !important;
		margin: 0 !important;
		padding-bottom: 40px;
	}
}


@media print {

	/* visible when printed */
	header,
	footer,
	aside,
	nav,
	form,
	iframe,
	.menu,
	.hero,
	.adslot,
	.single-related-products,
	.back-to-recipes,
	.crossell-product-wrapper,
	.recipes-icons {
		display: none !important;
	}

	*,
	*::before,
	*::after {
		background: transparent !important;
		color: #000 !important; /* Black prints faster: h5bp.com/s */
		box-shadow: none !important;
		text-shadow: none !important;

		/* display: none;*/
	}



}

/***************
- END OF RECIPES *
****************/

/***************
- SHOP PAGE *
****************/
.woocommerce-shop .page-title {
	display: none;
}

.woocommerce-shop .page-body {
	padding: 80px 0;
}

ul.products {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
	border: none;
}

ul.products li {
	display: flex;
	flex-direction: column;
	padding: 0;
}

ul.products li img {
	width: 100%;
	height: auto;
	transition: all 200ms ease-in-out;
	margin-bottom: 8px;
	max-width: 450px;
}

ul.products div[itemprop="description"] {
	display: none;
}

body.woocommerce-shop ul.products li:hover .product-loop-text .product-title-url h2 {
	color: var(--accent-color) !important;
}

ul.products li:first-child {
	border-top: none;
}

ul.products li a.woocommerce-loop-product__link {
	text-decoration: none;
	overflow: hidden;
}

ul.products li:hover .button {
	background-color: var(--accent-color);
	color: #fff;
}

ul.products li a.button {
	margin-top: auto;
	width: auto;
	align-self: center;
}

.product-loop-text {
	padding-right: 60px;
	padding-left: 60px;
}

.gift-section {
	margin: 100px 0;
	background-color: var(--dark-red-color);
	color: #fff;
}

.gift-section h2,
.woocommerce-shop h2 {
	color: var(--red-text-color) !important;
}

.shop-contact-section {
	margin-top: -20px;
}

.shop-contact-text {
	margin: 30px 0;
}

.shop-contact-section i,
.shop-contact-section a {
	color: var(--red-text-color);
}

.shop-contact-section a {
	text-decoration: none;
	font-weight: 700;
	margin-right: 40px;
}

.woocommerce-shop .product-loop-text {
	flex: 1;
	padding: 0;
}

.product-subtitle {
	font-size: 18px;
	line-height: 1.2;
	padding: 0 20px;
	text-align: center;
	margin-bottom: 30px;
}

body.woocommerce-shop .product-loop-text h2.woocommerce-loop-product__title {
	font-family: Vollkorn;
	color: var(--dark-red-color) !important;
	text-transform: lowercase;
	transition: all 0.23s ease-in;
	font-size: 36px;
	padding: 20px 20px 0;
	text-align: center;
	line-height: 100%;
}

.gift-price {
	text-decoration: none;
	font-size: 22px;
	margin-top: 25px;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	ul.products li {
		height: 100%;
	}
	ul.products li,
	ul.products li a.woocommerce-loop-product__link {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	div.product-loop-text {
		padding-right: 0;
		padding-left: 0;
	}
}

.product-title-url {
	text-decoration: none;
}

body.woocommerce-shop .product-loop-text .product-title-url:hover h2 {
	color: var(--accent-color) !important;
}

/***************
- END OF  SHOP PAGE *
****************/

/***************
- ABOUT PAGE- *
****************/
.page-template-template-about .page-body,
.page-template-template-gift {
	background: var(--dark-red-color);
}

.page-template-template-about .page-body p,
.page-template-template-gift .page-body p,
.page-template-template-about .page-body a,
.page-template-template-gift .page-body a {
	color: #fff;
}

.page-template-template-about h1,
.page-template-template-gift h1 {
	margin-bottom: 30px;
}

.page-template-template-about .page-body h2,
.page-template-template-gift .page-body h2 {
	margin-bottom: 20px;
	color: var(--red-text-color);
}

.team-members {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -20px;
}

.team-member {
	max-width: 25%;
	flex: 1 1 100%;
	padding: 20px;
	position: relative;
	color: #fff;
}

.team-member h3 {
	color: #fff !important;
	z-index: 4;
	padding-left: 40px;
}

.team-member img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-member::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 20px;
	z-index: 1;
	background: rgb(0, 0, 0);
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(27%, rgba(33, 33, 33, 0.8)), to(rgba(255, 255, 255, 0.1)));
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(33, 33, 33, 0.8) 27%, rgba(255, 255, 255, 0.1) 100%);
	-webkit-transition: all 0.43s ease-in;
	transition: all 0.43s ease-in;
}

@media only screen and (max-width: 1024px) {

	div.team-member {
		max-width: 33.33%;
	}
}

@media only screen and (max-width: 768px) {

	body div.team-member {
		max-width: 50%;
	}
}

@media only screen and (max-width: 480px) {

	body div.team-member {
		max-width: 100% !important;
	}
}

/***************
- END OF  ABOUT PAGE *
****************/


/***************
- WOOCOMMERCE *
****************/
.single-product h1.shop-page-title,
.h5.cart-product__title {
	text-transform: lowercase;
}

body .woocommerce-message {
	border: 3px solid var(--bs-yellow);
	padding: 20px;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-weight: 600;
	margin-bottom: 60px;
	gap: 20px;
}

.product-more-info__features {
	margin-top: 3rem;
}

.product-more-info-feature {
	max-width: 25%;
}

.single-related-product::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: rgb(0, 0, 0);
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(27%, rgba(33, 33, 33, 0.8)), to(rgba(255, 255, 255, 0.1)));
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(33, 33, 33, 0.8) 27%, rgba(255, 255, 255, 0.1) 100%);
	-webkit-transition: all 0.43s ease-in;
	transition: all 0.43s ease-in;
}

.single-related-product::after {
	content: "mehr erfahren";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.43s ease-in;
	transition: all 0.43s ease-in;
	color: #fff;
	text-decoration: underline;
	z-index: 6;
	opacity: 0;
	text-align: center;
}

.single-related-product:hover::after {
	opacity: 1;
}

.single-related-product:hover::before {
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(27%, rgba(0, 0, 0, 0.8)), to(rgba(0, 0, 0, 0.8)));
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 27%, rgba(0, 0, 0, 0.8) 100%);
}

.single-related-product__title {
	z-index: 5;
}

.single-related-product:hover .single-related-product__title {

	/* opacity: 0; */
	z-index: 0;
}

.single-product .product-recipe {
	width: 100vw;
	position: relative;
	margin-left: -50vw;
	left: 50%;
}

body.single-product {
	overflow-x: hidden;
}

.product-recipe__inner {
	max-height: 900px;
}

.product-more-info__title {
	font-size: 37px;
}

.single-related-products__title {
	color: var(--red-text-color);
}

.shop-page-top-link {
	margin-top: 0 !important;
}

.single-product .page-body {
	padding-top: 80px;
}

.checkout-button.button.wc-forward {
	min-width: 284px;
}

.woocommerce-checkout tr.cart-subtotal th,
.woocommerce-checkout tr.cart-subtotal td {
	padding-top: 70px;
}

.woocommerce-account h1 {
	margin-top: 0 !important;
}

@media only screen and (max-width: 768px) {

	.my-5.shop-page-title {
		margin-top: 0 !important;
	}
}


.single-product .entry-summary .price {
	font-weight: 700;
	font-size: 50px;
	font-family: var(--font-2);
}

.single-product .product-type-simple form.cart {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.single-product .product-type-simple form.cart .quantity__outer {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}

.tc-totals-form {
	margin-bottom: 30px;
}

.modal-postcard__variation {
	border: 4px solid transparent;
	margin: 16px !important;
}

.seiler-radio label {
	position: relative;
	padding-left: 25px;
	left: -25px;
	cursor: pointer;
	vertical-align: middle;
}

.form-row.place-order {
	margin-top: 40px !important;
}

.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
	padding-left: 0 !important;
	margin-left: 0 !important;
	list-style: none;
}

.woocommerce-checkout .woocommerce-notices-wrapper .woocommerce-message {
	display: none !important;
}

.woocommerce-checkout #payment ul.wc_payment_methods {
	list-style: none;
	padding-left: 0;
	margin-left: 0;
	border-bottom: 5px solid var(--dark-red-color);
}

.woocommerce-checkout #payment ul  li {
	margin: 20px 0;
}

.woocommerce-privacy-policy-text,
.woocommerce-terms-and-conditions-wrapper {
	font-size: 18px !important;
}

.woocommerce-terms-and-conditions-wrapper .seiler-radio-icon {
	left: 0 !important;
	padding-left: 19px !important;
}

#payment .payment_box {
	font-size: 16px;
	background: var(--red-text-color);
	padding: 10px 15px;
	color: rgb(255, 255, 255);
	border-radius: 10px;
	margin-top: 10px;
}

#payment .payment_box p:last-child {
	margin-bottom: 0;
}

/***************
- end of WOOCOMMERCE *
****************/

/***************
- POST *
****************/

/*.floatleft .text-content,
.floatleft .text-content *,
.floatright .text-content,
.floatright .text-content *{
    display: inline;
}*/
.post-section {
	clear: both;
	padding: 50px 0;
}

.single-post__content .shop-page-top-link {
	margin-bottom: 30px;
	color: #fff !important;
}

.post-section.text-image-section img {
	display: inline;
	max-width: 48%;
}

.floatleft img {
	margin: 0 20px 20px 0;
	float: left;
}

.floatright img {
	margin: 0 0 20px 20px;
	float: right;
}

.gallery-block .box-item::after {
	display: none;
}

.gallery-block .box-item::before {
	background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.8)), color-stop(27%, rgba(33, 33, 33, 0.8)), to(rgba(255, 255, 255, 0.1))) !important;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(33, 33, 33, 0.8) 27%, rgba(255, 255, 255, 0.1) 100%) !important;
}

/***************
- end of POST *
****************/

/***************
- JOBS TEMPLATE *
****************/
.page-template-template-jobs {
	background: var(--dark-red-color);
	color: #fff;
}

.page-template-template-jobs h2,
.page-template-template-jobs h3 {
	color: var(--red-text-color);
}

.job-grid-wrapper {
	margin-top: 50px;
	margin-bottom: 50px;
}

.job-grid-item {
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

/***************
- end of JOBS TEMPLATE *
****************/


.woocommerce-shipping-methods__price,
.tax-rate .h5,
.order-total .h5,
.cart-subtotal .h5,
.woocommerce-order-details-totals-row .h5 {
	font-size: 30px !important;
}

.cart_totals h3 {
	margin-bottom: 30px;
}

.woocommerce-checkout h3 {
	margin-bottom: 30px;
}

.product-subtotal input[type="hidden"] + .remove {
	margin-top: 10px;
}

@media (max-width: 500px) {

	.woo-nav img,
	.woo-nav svg {
		width: 30px;
	}

	#mob-menu-bar {
		margin-left: 20px;
	}

	header.site-header .custom-logo-link img {
		max-width: 100px;
	}
}


.tools-loop {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 40px;
	margin-top: 50px;
}

.tools-loop .tool {
	max-width: 300px;
	width: calc(25% - 15px);

}

.tools-loop .tool img {
	margin-bottom: 20px;
}

.tools-loop .tool h3 {
	font-size: 25px;
}

.quick-links > a {
	margin: 10px;
}

ul.products li a.button {
	margin-bottom: 30px;
}

@media (min-width: 992px) {

	.woocommerce-account .container {
		max-width: 900px;
	}

}

@media (max-width: 992px) {

	.tools-loop .tool {
		width: calc(50% - 15px);
	}
	ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
	ul.products li img {
		max-width: 370px;
		display: block;
		margin: 0 auto 8px;
	}
}

@media (max-width: 768px) {

	ul.products .product-subtitle {
		display: none;
	}

	ul.products li img {
		max-width: 100%;
		display: block;
		object-fit: cover;
	}

	ul.products {
		align-items: start;
		gap: 16px;
	}
	/* ul.products li a.woocommerce-loop-product__link {
		width: 100%;
	} */
	body.woocommerce-shop .product-loop-text h2.woocommerce-loop-product__title {
		font-size: 24px;
		margin-bottom: 12px;
		padding-left: 5px;
		padding-right: 5px;
		padding-top: 8px;
	}

	ul.products li a.button {
		margin-bottom: 20px;
	}
	.product-subtitle {
		margin-bottom: 28px;
	}
	ul.products li a.button {
		white-space: normal;
		word-break: break-word;
}

@media (max-width: 575px) {

	.tools-loop {
		justify-content: center;
	}

	.tools-loop .tool {
		width: 100%;
	}
}
