@media screen and (max-width:960px){
	
	
	#menu{
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		min-width: 100%;
		height: 100%;
		color: #ffffff;
		/*display: none; */
		transition: 2s;
		z-index: 1100;
	}
	
	.show-mobile{
		display: block;
	}


	.hide-mobile{
		display: none;
	}

	.supplierName{
		font-size: .5em;
	}

	.cart-text{
		font-size: 0.75em;
	}


	/*
	* input fields
	*/
	input[name="name"]{
		width: 250px;
	}

	input[name="mail"]{
		width: 250px;
	}

	input[name="street"]{
		width: 160px;
	}

	input[name="no"]{
		width: 90px;
	}

	input[name="zip"]{
		width: 90px;
	}

	input[name="city"]{
		width: 160px;
	}
	
}