
#mobile-menu,
#mobile-cart
{
	cursor:pointer;
	position:absolute;
	display:none;
	margin:3px 0 0 16px;
}

#mobile-menu img,
#mobile-cart img
{
	display:block;
	width:24px;
	height:24px;
}

#mobile-cart
{
	right:16px;
}

@media only screen and (max-width: 1024px)
{
	#mobile-menu,
	#mobile-cart
	{
		display:block;
	}
	
	#cart-button
	{
		display:none;
	}

	#header
	{
		height:50px;
		padding:10px 0 0 0;
	}

	#header #logo
	{
		margin:0 auto;
		float:none;
	}

	#header #menu
	{
		position:absolute;
		display:none;
		width:100%;
		margin:10px 0 0 0;
	}
	
	#header #menu a
	{
		display:block;
		width:auto;
		background-color:rgba(0,0,0,0.8);
		float:none;
		padding:16px 20px;
		margin:0;
	}

	#chat
	{
		width:auto;
		height:50vh;
		padding:30px 20px;
		float:none;
	}
	
	#chat h2
	{
		display:none;
	}
	
	#messages
	{
		height:calc(50vh - 100px);
	}
	
	#dashboard
	{
		width:auto;
		height:auto;
		float:none;
	}
	
	#dashboard #categories
	{
		width:436px;
		padding:0 20px;
		margin:0 auto;
	}
	
	#categories h2
	{
		font-size:18px;
		line-height:140%;
		text-align:center;
	}
	
	#products
	{
		padding:24px 0 14px 0;
	}
	
	#products #num-of-products
	{
		margin:0 20px;
	}
	
	#products .list
	{
		width:auto;
		height:160px;
		margin:20px 0 20px 20px;
		overflow-x: scroll;
		overflow-y: hidden;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
	}
	
	#products .list .product
	{
		float:none;
		display:inline-block;
	}
	
	#products .list.stack
	{
		height:240px;
		border-radius:13px 0 0 13px;
	}
	
	#product-info
	{
		width:90vw;
		margin:0 auto;
		top:5vh;
		left:5vw;
	}
	
	#cart
	{
		width:100vw;
	}
}

@media only screen and (max-width: 480px)
{
	#categories h2
	{
		width:calc(100vw - 40px);
		margin:20px 0;
	}

	#categories .category
	{
		width:calc((100vw - 40px)/3);
		height:auto;
		padding:0 5px;
		margin:0;
		text-align:center;
	}
	
	#categories .category img
	{
		display:inline-block;
		width:calc(100% - 10px);
		height:auto;
		margin:0 auto;
	}
	
	#products #num-of-products
	{
		font-size:12px;
	}
	
	#product-info button
	{
		width:100%;
		float:none;
	}
	
	#cart
	{
		background:#F4F6F8;
	}
	
	#cart #list
	{
		margin:0;
		border-radius:0;
	}
	
	#cart #list .product span
	{
		width:auto;
	}
}
