/* hogMenu.css */

/** Hier erscheint das Menü **/
.MainWrapOuter {
	position: relative;
	padding-left: 0;
	padding-right: 0;
	max-width: 1200px;
	overflow: hidden;
	margin-left: auto;
	margin-right: auto;
	border: 0 solid blue;
}

/* The navigation menu links */

.hogMenu {
	position: absolute;
	top: 0;  	
  	left: -1px;

  	height: 100vh;
	transform: translateX(-100%); /* Start: außerhalb */
	transition: transform 0.9s ease;
  	z-index: 9999;
  	overflow-x: hidden; 
  	overflow-y: auto;
  	padding-top: 0;
  	font-size:12px;
  	background-color: #27293B; /* Dunkle KH-Farbe */
  	padding-bottom: 300px;
}

.hogMenu.active {
	 width: 100%;
	transform: translateX(0); /* sichtbar */
}

@media (min-width: 768px) {
	.hogMenu.active {
		width: 49%;
	}
}
	
@media (min-width: 1024px) {
	.hogMenu.active {
		width: 49%;*/
	}
}
	
/* Verhindert das Scrollen der Seite. Wird per JS aktiviert.*/
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  top: 0;
}


.hogMenuInner {
  	opacity: 0;
  	transition: opacity 1.6s ease  0.2s;  
  	transition: opacity 1.6s ease  0.0s;  
  	will-change: opacity;
  	margin-left:12px;
  	margin-right:12px;
  		z-index: 1;
}	 

.hogMenu.active .hogMenuInner {
  opacity: 1;
}

/** NEU **/
.hogMenu.slide-out {
	  transform: translateX(-100%);
	  transition: transform 0.4s ease;
	}


/* Langsames Einblenden */
.hogMenuInner.fade-in {
  opacity: 1;
 /* transition: opacity 1.6s ease 0.2s; */
}

/* Schnelles Ausblenden */
.hogMenuInner.fade-out {
  opacity: 0;
 /*
  transition: opacity 1.6s ease 0.2s; */
  transition: opacity 0.4s ease 0s;
  
}

/* Links unter den eigentlichen Menu-Einträgen*/
.hogMenuInnerExtra {
	margin-top:0 ;
	margin-left:12px;
  	margin-right:12px;
	
}

#hogMenuFoot a {
  color: #eeeeee;
  text-decoration:none;
}
#hogMenuFoot a:hover {
  color: #ffffff;
}


#hogMenuFoot .closebtn2 {
  font-size: 36px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
  color:#666666;
  line-height: 0.8em;
  font-weight: normal;
  margin-right: 16px;
}


/******************************************************/
/************* FONTS ETC *****************************/


/***************** Navigation List-Heading *************************************/

li.hog-navigation-list-heading, li.hog-navigation-list-heading a, 
li.hog-navigation-list-heading2, li.hog-navigation-list-heading2 a 
 {
	list-style: none;
	color: #ffffff;
	font-size: 0.9rem;
	letter-spacing: 3px;
	 white-space: nowrap;
}
.hog-navigation-list-heading {
  border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    padding: 16px 0 ;
    text-transform: uppercase;
    font-size: 0.9rem;
 }

li.hog-navigation-list-heading, li.hog-navigation-list-heading a {
	
}
 li.hog-navigation-list-heading a,  li.hog-navigation-list-heading2 a {
 	text-decoration: none;
 }
.hog-navigation-list-heading2 {
  padding: 12px 0;
 }
 
 
 li.hog-navigation-list-heading2 a {
 		font-size: 0.8rem;
 		letter-spacing: 3px;
 		text-transform: uppercase;
 }
 
@media (min-width: 768px) {
	li.hog-navigation-list-heading,  li.hog-navigation-list-heading a  {
		  font-size: 0.9rem;
	}
}


/***************** Navigation List-Heading *************************************/
.hog-navigation-list {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hog-navigation-list > li {
  width: 100%;
  margin: 0;
  font-size: 0.9rem ;
}

/***************** Navigation Item *************************************/

.hog-navigation-item {
  list-style-type: none;
  /*** border-top: 1px solid #666; ***/ 
  border-bottom: 1px solid #666;
  white-space: nowrap;
}

.hog-navigation-item:first-child {
  border-top: 1px solid #666;
}


/***************** Navigation Link *************************************/
.hog-navigation-link, .hog-navigation-link:hover, .hog-navigation-link:active {
  width: 100%;
  padding: 12px 24px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-family: NewJuneLight; 
  font-weight; normal;
  color: #555d65;
  transition: color 0.3s;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 3px ;
}

.hog-navigation-link:hover{
  color: #AFA087  !important;
}

.hog-navigation-item .hog-navigation-link {
  font-size: 0.8rem;
}

@media (min-width: 768px) {
	.hog-navigation-item .hog-navigation-link  {
	
	}
}

.hog-navigation-item, .hog-navigation-link{
    color: #ffffff  !important;
    font-weight: normal;
}


#hogMenu1 .hog-navigation-link {
	font-size: 0.9rem;
	letter-spacing: 3px;
	 white-space: nowrap;
    text-transform: uppercase;

	}

/* Kleinerer Text hinter dem Menüeintrag*/
.SubjectSubline {
	text-transform: none !important; 
	font-size: 0.8rem;
}

/******************************************************/
/******************************************************/



/****************************** ACTIONBAR Start ****************************************/
.hog-menu-actionbar {
	display:flex; 
	flex-wrap:nowrap; 
	justify-content: space-between; 
	align-items: center;
	padding: 24px 6px;
	position: sticky;
	top: 0;
	z-index: 2;
	background-color: #000;
	height: 30px;
}

.hog-menu-actionbar2 {
	display:flex; 
	flex-wrap:nowrap; 
	/***
	justify-content: center;
	justify-content: flex-end; 
		***/ 
	justify-content: space-between; 
	padding: 0 0 0 24px;
	margin: 4px 0 10px 0;
	margin:  0;
	z-index: 2;
	background-color: #000;
	height: 40px
}

.hog-menu-actionbar2-sub1 {
	display:flex; 
	flex-wrap:nowrap; 
	justify-content: flex-end; 
	justify-content: flex-start; 	
	align-items: center ;
	width: 50%;
	border:0 solid white;
}
.hog-menu-actionbar2-sub2 {
	display:flex; 
	flex-wrap:nowrap; 
	justify-content: flex-end; 
	width: 50%;
	border: 0 solid red;
}

/************** Actionbar-Links *****************/

.hog-actionbar-link, .hog-actionbar-link:hover {
	text-decoration: none; 
	color:white;  
	font-size:0.95rem; 
	xline-height:2.5rem;
	display: inline-block;
}

.hog-actionbar-link:hover {
  color: #AFA087 !important;
}

@media (min-width: 768px) {
	.hog-actionbar-link, .hog-actionbar-link:hover {
		font-size: 0.8rem;
	}
}	
	
/************** Close-Button *****************/

.hog-close-link, .hog-close-link:hover {
	text-decoration: none; 
	color:white;  
	font-size:1.3rem;
}

.hog-close-link:hover {
  color: #AFA087 !important;
}

@media (min-width: 1200px) {
	.hog-close-link, .hog-close-link:hover {
		font-size: 1.0rem;
	}
}

	/************ Alter Back-Button jetzt bei Actionbar-Links ************/
.hog-back-link, .hog-back-link:hover {
	text-decoration: none; 
	color:white; 
	font-size:1.9rem;
}	
.hog-back-link:hover {
 /* transform: translateX(-4px); */
  color: #AFA087  !important;
}

@media (min-width: 768px) {
	.hog-back-link, .hog-back-link:hover {
		font-size: 1.4rem;
	}
}
	
	

/****************************** ACTIONBAR Ende ****************************************/


/****************************** OVERLAY ****************************************/
#hog-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /*  background: rgba(0,0,0,0.5); */ /* halbtransparentes Schwarz */
    
  background: rgba(255, 255, 255, 0.2); /* leicht transparent */
  backdrop-filter: blur(6px);           /* unscharf machen */
  -webkit-backdrop-filter: blur(6px);   /* für Safari */
 
  z-index: 9990; /* unter dem Menü, aber über dem Rest */
  pointer-events: none;
  opacity:0;
  transition: opacity 0.3s ease;
}

#hog-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}


/*************************** Breadcrumbs  **************************/

.breadCrumbsOuterWrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.breadcrumbsWrap {
	padding-left: 8px;
}	
.breadcrumbs {
	font-size: 0.8rem;
	}
	
.getNextGarnWrap {
	padding-right: 8px;
	}
	
.getNextGarnWrap a {
	font-size: 0.8rem;
	text-decoration: none;
	}
	
/*************************** Aus navigation-skin-knittersheavenNew.css **************************/
/* Ausserhalb von mainWrap */

/* Hinweis auf Private Sale*/
#HeaderWrapPS, #HeaderWrapPS_Detail {
	border: 0 solid red;
	background-color: #B1A086;
	color: white;
	z-Index: 91;
	width: 100%;
	text-align: center;
	max-width: 1200px;	
	margin-left: auto;
	margin-right: auto;
	margin-top: 6px;
	
	font-size:0.8rem;
}
#HeaderWrapPS div, #HeaderWrapPS_Detail div {
	width:100%; 
	padding: 12px 6px 12px 12px;
}


#HeaderWrapPS a, #HeaderWrapPS a:hover {
	text-decoration:none;
	color: #ffffff;
	}
	
 #HeaderWrapPS a:hover {
	color: #660000; 
 }	
 
#HeaderWrapPS_Detail {
	background-color: #000000;
	padding: 12px;
	
}	

/* Goldene Zeile mit Language-Picker und Lupe*/
#HeaderWrap1 {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	
	border: 0 solid red;
	background-color: #B1A086;
	color: black;
	height: 3rem;
	z-Index: 91;
	width: 100%;
	max-width: 1200px;	
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	font-size:0.8rem;
}
#HeaderWrap1 > div {
	width: 50%; 
	padding: 12px 6px 12px 12px;
}

#xxxHeaderWrap1 a, #xxxHeaderWrap1 a:hover {
	text-decoration:none;
	color: #ffffff;
	}
 #xxxHeaderWrap1 a:hover {
	color: #660000; 
 }	
	
.HeaderWrap1Col1 {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
}
		
.HeaderWrap1Col2 {
	display: flex;
	flex-wrap: nowrap;
	justify-content: flex-end;
}	
	
/** LanguSwitcher in GoldenerZeile **/
/************** Language-Links *****************/

.hog-langu-link-wrap {
		display: flex;
	flex-wrap: nowrap;
	width: 100px;
	border: 0 solid red;
}
.hog-langu-link, .hog-langu-link:hover {
	text-decoration: none; 
	 
	font-size:1.0rem; 
	display: inline-block;
	color: #78838e;
		color: white;
}

.hog-langu-link:hover {
  xxxcolor: #AFA087 !important;
  color:white; 
}

@media (min-width: 768px) {
	.hog-langu-link, .hog-langu-link:hover {
		xfont-size: 0.8rem;
	}
}

	
/* Top-Menu*/
#HeaderWrap2 {
	z-Index: 91;
	width: 100%;
	max-width: 1200px;	
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 6px;
	padding: 6px 0 6px 0;
	background-color: #fff;

	border: 0 solid red;
}

/* Ausserhalb von mainWrap */
#navWrapper2 {
	background-color:white;
	padding:0;
	border:0 solid red;
	width: 100%;
	max-width: 1200px;	
	margin-left: auto;
	margin-right: auto;
	z-index: 998;
}

/* Ausserhalb von mainWrap */
.mysticky2 {
    position: sticky;
    top: 0;
    width:100%;
    max-width:1188px;

}
/* Ausserhalb von mainWrap - ENDE */


/****************** Scrollbar *****************************/



/* WebKit-Browser (Chrome, Safari, Edge) */
.hogMenu::-webkit-scrollbar {
  width: 20px;
}

.hogMenu::-webkit-scrollbar-track {
  background: #27293B;
}

.hogMenu::-webkit-scrollbar-thumb {
  background-color: #AFA087;
  border-radius: 6px;
  border: 4px solid #27293A;
  padding: 10px;
}

.hogMenu::-webkit-scrollbar-thumb:hover {
  background-color: #776244;
}
  
/****************** TopMenue*******************************************************/  
/* Obere Navigation */

.mysticky {
    position: fixed;
    top: 0;
    width:100%;
    max-width:1188px;
}

.hog-navigation {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: initial;
  align-items: initial;
  width: 100%;
  padding: 0;
  position: relative;
  line-height: initial;
  font-family: inherit;
  box-sizing: border-box;
  background-color: #ffffff;
  transition: background 0.3s;
  justify-content: space-between;
	height: 64px;
	overflow: visible;

	border: 0 solid black;
}

@media (min-width: 768px) {
	.hog-navigation {
		height: 86px;
	}
}

.hog-navigation-left {
		width: 100px;
		display: flex;
		flex-wrap: nowrap;
		justify-content: flex-start;
}

.hog-navigation-center {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding-top: 10px;
	border: 0 solid blue;
	 positon: relative;
}
.hog-navigation-center > div{
	width: 100%;
	text-align: center;
}

.hog-navigation-right {
	width: 100px;
	display: flex; 
	flex-wrap:nowrap; 
	justify-content: right;
	margin-top: 4px;
	border: 0 solid blue;
}


.hog-navigation-right > div  {
	width:50px;
	color: #78838e;
	background-color: none;	
}

#topLogo {
	width:150px; 
	height:auto;
}


.LogoSubline1 {
	font-family: NewJuneLight, Verdana, Arial, Helvetica, Geneva; 
	font-size: 0.8rem;
	letter-spacing: 0.2rem;
	margin-top: 4px;
}

.LogoSubline2 {
	font-family: NewJuneLight, Verdana, Arial, Helvetica, Geneva ;
	font-size: 0.8rem;
	letter-spacing: 0.2rem;
}

@media (min-width: 768px) {
#topLogo {
	width:300px; 
	height:auto;
	}
}
 
/** Phone **/
 .hog-navigationIcon {
	color: #78838e;
	font-size: 1.8rem;  
  }
.hog-burgerIconWrapper {
	width: 40px;
	height:auto;
	padding: 3px 4px;
}
.hog-lupeIconWrapper {
	width:46px; 
	height: auto;
	padding: 3px 0 0 10px;
}
.hog-kontoIconWrapper {
	width:40px;
}
.hog-warenkorbIconWrapper {
	position:relative; 
	width: 50px;
	padding-top: 0px;
}

#xxmlMenge {
	font-size:1.2rem;
	xfont-weight:900;
	position:absolute;
	bottom:6px;
	right:10px;
	}  
	
#wkMenge {
	font-family: var(--root-font);
	font-size: 1.0rem;
	font-weight: 500;
	position:absolute;
	top:16px;
	left:28px;
	}  
	
/** Desktop **/

@media (min-width: 768px) {

	.hog-navigationIcon {
		color: #78838e;
		
		font-size: 1.5rem;  
  	}
  
  
	#xxmlMenge {
	font-size:20px;
	position:absolute;
	bottom:6px;
	right:6px;
	}  
	
	#wkMenge {
	font-family: var(--root-font);
	font-size: 0.8rem;
	font-weight: 300;
	position:absolute;
	top:20px;
	left:30px;
	}  
		
}
/**************** SprachIcons Start ********************************/
.sprachIcon img {
	width:30px;
	height: auto;
}
/**************** SprachIcons Ende ********************************/

/**************** Sprachumschalter Start********************************/
   #languageSwitcher {
    position: absolute;
    z-index: 9999;
    font-family: inherit;
  }

  details summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.0rem;
    border: none;
    background: none;
  }

 
   .language-options {
    position: absolute;
  	font-size: 0.8rem;
  	font-weight: normal;
    margin-top: 8px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    padding: 6px 12px;
    z-index: 100;
    width: 100px;
    
     top: 100%;         /* direkt unter dem summary */
  	left: auto;        /* überschreibt ggf. vorherige Werte */
  	right: 0;          /* rechtsbündig im Container */
  }

  .language-options button {
    display: block;
    width: 100%;
    background: none;
    border: none;
    padding: 6px 0;
    text-align: left;
    font-size: 1em;
    cursor: pointer;
  }

  .language-options button:hover {
    background-color: #f0f0f0;
  }
  

  
   xdetails[open] summary::after {
    content: "▲";
    font-size: 0.6em;
    margin-left: 6px;
  }

  xsummary::after {
    content: "▼";
    font-size: 0.6em;
    margin-left: 6px;
  }
  /**************** Sprachumschalter Ende ********************************/
  
  
  
  /**************** Footer Start ********************************/
  /***
#FooterWrap {
	border-top: 1px solid #dedede;
	width: 100%;
	overflow: hidden;
	margin-top: 8px;
	margin-bottom: 48px;
	padding-left: 6px;
	padding-right: 6px;
}

  #FooterWrap  {
  background-color: #26293C;
  }
  
  .footerTable {
	display: flex; 
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: inherit;
}

.footerCol, .footerCol2, .footerCol3 {
	width: 50%;
	margin-bottom: 0;
	line-height: 180%;
	padding: 24px 12px;
}
.footerCol2 {
	width: 95%;
}
.footerCol3 {
	width: 5%;
}

.footerColHead {
	font-weight: 600;
	font-size: 14px;
}

.footerLink,.footerLinkHot,.footerLinkCold {
	text-decoration: none;
	font-size: 0.7rem;
	font-weight: 300;
	color: #ffffff;
	line-height: 180%;
}

.footerLink:hover,.footerLinkHot:hover,.footerLinkCold:hover {
	text-decoration: none;
	}



@media (min-width: 727px) {
	
	
			.footerCol {
			width: 25%
				}		
		
		.footerCol2 {
			width: 40%
				}
		.footerCol3 {
			width: 10%
				}
					
	
	
	
}
***/
  /**************** Footer Ende ********************************/  
  
/* Bullet bei voriges und nächstes*/  
#bullet-spinner1 {
  display: inline-block;
  animation: pulse 1s infinite;
}
#bullet-spinner1a {
  display: inline-block;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: 1; }
  50%  { transform: scale(1.8); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

  
  
  