/*	VIEWPORTS
========================================== */

/* LANDSCAPE
========================================== */
@media (orientation:landscape) {
}

/* VIEWPORT <= 960PX
========================================== */
@media screen and (max-width: 960px) {
}

/* VIEWPORT <= 800PX
========================================== */
@media screen and (max-width: 800px) {
	#menu ul.level1 {justify-content:center;}
}

/* VIEWPORT <= 560PX
========================================== */
@media screen and (max-width: 560px){
	.shortproducts {padding-top:2.5rem;}
	.webshopselection-wrapper {position:fixed;width:100%;z-index:2;}
	.webshopselection-trigger {
		position:absolute;top:1rem;right:1rem;
		font-size:var(--font2);border-radius:3px 0 0 3px;text-transform:uppercase;
		display:block;text-align:center;padding:.5em;color:#fff;
		background-color:var(--blue);cursor:pointer;;
	}
	.webshopselection {display:flex;flex-flow:row wrap;padding:0;
		max-height:0;overflow:hidden;background-color:var(--lightBlue);
	  transition:max-height .5s linear 0s;}
	.webshopselection-trigger.open+.webshopselection {
		box-shadow:var(--boxShadow);
		max-height:500px;overflow:auto;
	}
	.webshopselection > .tagtype {flex-basis:40%;flex-grow:1;min-width:150px;margin:2rem 1rem 2rem;}
	.webshopselection .tagvalue {border-color:var(--blue);}
	.webshopselection h2 {flex-basis:100%;margin-top:0;color:var(--blue);}
	
	.webshopselection > .close {display:block;flex-basis:100%;padding:1em;font-weight:var(--fontBold);}
	.productfolder {margin-top:2em;}

}

/* VIEWPORT <= 400PX
========================================== */
@media screen and (max-width: 400px){
}

/* VIEWPORT > 560PX
========================================== */
@media screen and (min-width: 561px){
  .webshopselection {display:block!important;}
}
