/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

body
{
	background: #ebf0f3;
    background-image: url(/wp-content/uploads/2020/04/leather2.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: repeat;
}

#sticky-navigation
{
	opacity: 0.7;
}

#sticky-navigation .grid-container,
#site-navigation .grid-container,
.inside-header
{
	max-width: none !important;
	padding: 0px;
	margin: 0px;
}

.main-nav a
{
	font-weight: bold;
}

.site-logo
{
	text-align: left;
	float: left;
	display: block;
	margin-left: 10px;
	margin-right: 20px;
}

.kamp_logo
{
	max-height: 50px;	
}

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

.flexrows
{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flexrowswarp
{
   display: -webkit-flex;
   display: flex;
   -webkit-flex-flow: row wrap;
   flex-flow: row wrap;
   -webkit-justify-content: center;
   justify-content: center;
}

/* Bilder im Footer */
.viertel
{
	-webkit-flex: 1 0 0;
   flex: 1 0 0;
}

.viertel img
{
	width: 100%;
    height: 100%;
}

/* Angaben im Footer */
.footerlinks
{
	background: #C0C0C0;
}

.footerlinks img
{
	height: 40px;
	margin-top: 5px;
}

#footerinfo
{
	background: #424242;
}

.footerlinkentity
{
	display: -webkit-flex;
   display: flex;
   -webkit-flex-direction: row;
   flex-direction: row;
   -webkit-align-items: center;
   align-items: center;
   -webkit-justify-content: center;
   justify-content: center;
	min-width: 250px;
	padding-top: 20px;
	padding-bottom: 20px;
}

.footeritem
{
	border: 0px solid green;
	-webkit-flex: 1 auto;
	flex: 1 auto;
	text-align: center;
	max-height: 300px;
	overflow: hidden;
}

.facebooklink,
.partnerlink
{
	-webkit-flex: 1 auto;
	flex: 1 auto;
}

#footerlogo a,
#footermap a
{
padding: 0px;
}

#footerlogo img,
#footermap img
{
	height: 100%;
	max-height: 300px;
	max-width: 100%;
}

.openstreetmap 
{
	margin-top: -2.5em;
    text-align: center;    
	margin-left: -200px;
	font-size: 0.75em;
}

.openstreetmap a
{
	background-color: white;
	padding: 5px;	
}

.footeradress
{
	display: inline-block;
	text-align: left;
	border: 0px solid blue;
	position: relative;
	top: 50%;
	-webkit-transform: translate(0%, -50%);
	transform: translate(0%, -50%);
	padding-top: 20px;
	padding-bottom: 20px;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
	.footeradress
	{
		display: inline-block;
		text-align: left;
		border: 0px solid blue;
		padding-top: 20px;
		padding-bottom: 20px;
		
		position: static;
		top: 0px;
		-webkit-transform: translate(0%, 0%);
		transform: translate(0%, 0%);
	}
}

.footeradress a
{	
	text-decoration: none;
	font-weight: normal;
	color: #A6967D;
	line-height: 1.35em;
	font-size: 1.25em;
}

.facebooklink a
{	
    text-transform: uppercase;
	color: #3B5998;
	font-size: 1.35em;
}

.partnerlink a
{	
	text-transform: uppercase;
	color: #404040;
	font-size: 1.35em;
}

.LinksOuter 
{
    background: #C0C0C0;
    width: 100%;
}

.Quicklinks
{
	display: table;   /* Allow the centering to work */
	margin: 0 auto;
	text-align: left;
}

.Quicklinks ul {
    list-style-type: none;
    margin: 0; 
    overflow: hidden;	
}

.Quicklinks  li {
	display: inline;
	list-style-type: none;
    float: left;
	padding: 10px 20px;
}

.Quicklinks li> a {   
	color: #8F7D63;
	text-decoration: none;			
	padding-bottom: 30px;
	padding-top: 30px;
}

.Quicklinks li> a:hover {   
	color: #000;
}

.Quicklinks li> ul> li {
	padding: 5px 0px;	
}

.Quicklinks li> ul> :first-child {
	padding-top: 20px;	
}


.Quicklinks li> ul> li> a {
   font-weight: bold;
	color: #b0b0b0;
	text-decoration: none;	
	font-size: 0.8em !important;		
	font-weight: normal !important;				    
}

/* -----------------------------------------------------------------------------------*/
/* Scroll up - Scroll Down arrows                                                     */

.scrolldown
{
	z-index: 99;
	position: fixed;
	top: calc(100% - 60px);
	left: 50px;
	background-color: white;
	border: 1px solid black;
	width: 40px;
	height: 40px;
	opacity: 0.5;
	transition: opacity 0.5s linear 0.25s;
	border-radius: 20px;
}

.scrolldown:hover
{
	opacity: 1;
}

.scrolldown button 
{
    opacity: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
}

.scrolldown::before 
{
	content: '';
	position: absolute;
	left: 22px;
	top: 12px;
    width: 5px;
	height: 45%;
	border-radius: 3px;
	background: black;
	transform: rotate(40deg);
}

.scrolldown::after
{
	content: '';
	position: absolute;
	left: 13px;
	top: 12px;
    width: 5px;
	height: 45%;
	border-radius: 3px;
	background: black;
	transform: rotate(-40deg);
}

.scrollup
{
	z-index: 99;
	position: fixed;
	top: calc(100% - 60px);
	left: calc(100% - 50px);
	background-color: white;
	border: 1px solid black;
	width: 40px;
	height: 40px;
	opacity: 0.5;
	transition: opacity 0.5s linear 0.25s;
	border-radius: 20px;
	visibility: hidden;
}

.scrollup:hover
{
	opacity: 1;
}

.scrollup button 
{
    opacity: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	cursor: pointer;
}

.scrollup::before 
{
	content: '';
	position: absolute;
	left: 22px;
	top: 9px;
    width: 5px;
	height: 45%;
	border-radius: 3px;
	background: black;
	transform: rotate(-40deg);
}

.scrollup::after
{
	content: '';
	position: absolute;
	left: 13px;
	top: 9px;
    width: 5px;
	height: 45%;
	border-radius: 3px;
	background: black;
	transform: rotate(40deg);
}

/* Scroll up - Scroll Down arrows                                                     */
/* -----------------------------------------------------------------------------------*/

/* Produkseite - Beschreibung */
#tab-description
{
	background-color: #fff;
	border: 1px solid rgba(0,0,0,.1);
	padding: 1em;
}

#tab-description h2
{
	display: none;
}

/* Warenkorb - Gutscheine ausblenden */

/* Herunterladen deaktivieren */
/* Produktseite */
.woo-vou-delivery-offline
{
	display: none;
}

/* Seite "Bestellung erhalten" */
.woocommerce-order-downloads
{
	display:none;
}

.woo-vou-recipient-fields td
{
	border: 0px solid black;
}

.woocommerce-cart-form__contents .coupon
{
	display: none;
}

.woocommerce .woocommerce-form-coupon-toggle .woocommerce-info
{
	display: none;
}

#order_review_heading
{
	float: left !important;
}

.woocommerce .woocommerce-checkout h3
{
	color: #a34e00;
	font-weight: bold;
	font-style: italic;
}

.woocommerce-checkout .shop_table
{
	background-color: #fff !important;
}

@media (min-width: 768px)
{
	.woocommerce-checkout .col2-set
	{		
		margin-left: 10% !important;
		width: 60% !important; 
		float: left !important;
	}
	
	#order_review
	{
		margin-left: 10% !important;
		padding-top: 50px !important;
		width: 70% !important; 
		float: left !important;
	}
	
	.wc-gzd-product-name-left, .wc-gzd-product-name-right 
	{
    	float: left;
    	width: 50%;
	}
}

h3#order_review_heading
{
	font-size: 0px;
}

h3#order_review_heading::after {
    content: "Ihre Bestellung";
    color: #a34e00;
	font-size: 20px;
	font-weight: bold;
	font-style: italic;
}

/* shop_table shop_table_responsive cart woocommerce-cart-form__contents */
