
#app
{
	position:absolute;
	width:100%;
	top:0px;
	left:0px;
	z-index:-1;
	background:url('../images/background.png');
	background-color:#002d26;
	background-size:cover, cover;
	background-repeat:no-repeat, no-repeat;
	background-attachment:fixed, fixed;
	transition:margin 1s;
	overflow:hidden;
}

#app.hidden
{
	display:none;
}

#header
{
	height:90px;
	color:#ffffff;
	background-color:rgba(0,0,0,0.6);
	padding:0 24px;
}

#header #logo
{
	display:block;
	max-height:30px;
	margin:30px 60px 0 0;
	float:left;
}

#header #menu
{
	float:left;
}

#header #menu a
{
	display:block;
	color:#ffffff;
	font-size:17px;
	text-decoration:none;
	line-height:15px;
	padding:10px 0;
	margin:27px 20px 0 20px;
	float:left;
}

#header #menu a:hover
{
	border:2px solid #75b96c;
	border-width:0 0 2px 0;
}

#header #cart-button
{
	cursor:pointer;
	height:56px;
	font-size:17px;
	font-weight:700;
	line-height:56px;
	background-color:#20867A;
	background-image:url('../images/cart.svg');
	background-repeat:no-repeat;
	background-size:22px;
	background-position:left 36px center;
	padding:0 36px 0 72px;
	margin:17px 0 0 0;
	border:0;
	border-radius:34px;
	float:right;
}

#header:after
{
	content:"";
	display:table;
	clear:both;
}

#chat
{
	width:450px;
	height:calc(100vh - 90px);
	padding:30px 20px;
	float:left;
}

#chat h2,
#dashboard h2
{
	color:#ffffff;
	font-size:23px;
	margin:0 0 30px 0;
}

#chat p
{
	color:#D9D9D9;
}

#chat input[type="text"]
{
	color:#000000;
	width:calc(100% - 48px);
	height:48px;
	background-color:#ffffff;
	background-image:url('../images/send.svg');
	background-repeat:no-repeat;
	background-position:right 20px center;
	background-size:16px;
	padding:0 48px 0 24px;
	margin:0 24px;
	border:1px solid #3B3B3B4D;
	border-radius:28px;
	outline:none;
}

#messages
{
	height:calc(100vh - 300px);
	overflow:auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

#messages::-webkit-scrollbar { display: none; }

#messages .message
{
	color:#D9D9D9;
	background:rgba(87, 87, 87, 0.6);
	padding:16px;
	margin:0 0 20px 0;
	border-radius:8px;
}

#dashboard
{
	width:calc(100% - 450px);
	height:calc(100vh - 90px);
	float:left;
}

#dashboard #categories
{
	width:100%;
	height:240px;
	padding:30px 20px;
	clear:both;
}

#categories .category
{
	cursor:pointer;
	position:relative;
	width:116px;
	height:136px;
	margin:0 16px 0 0;
	float:left;
}

#categories .category img
{
	position:absolute;
	top:0px;
	left:0px;
	width:116px;
	height:136px;
	border-radius:7px;
	z-index:-1;
}

#categories .category span
{
	display:block;
	width:100px;
	font-size:9px;
	text-align:center;
	padding:1px 0;
	margin:102px auto 0 auto;
	background-color:#000000;
	border-radius:3px;
}

#products
{
	height:calc(100vh - 240px - 90px);
	background:#ffffff;
	padding:24px 30px 14px 30px;
	overflow:auto;
	clear:both;
}

#products:after
{
	content:"";
	display:table;
	clear:both;
}

#products #num-of-products
{
	color:#1C2126;
	font-size:17px;
	font-weight:400;
	margin:0 0 20px 0;
}

#products h2
{
	color:#20867A;
	font-size:17px;
	font-weight:700;
	padding:20px 0 20px 20px;
	margin:0;
	clear:both;
}

#products h2 a
{
	color:#1C2126;
	font-size:11px;
	text-decoration:none;
	padding:4px 8px;
	margin:0 0 0 10px;
	float:right;
}

#products h2 a.button
{
	background:#F2F4F8;
	border-radius:13px;
}

#products .list
{
	padding:0 20px 0 0;
	margin:0 0 10px 0;
}

#products .list:after
{
	content:"";
	display:table;
	clear:both;
}

#products .list.stack
{
	background-color:#E7EAE5;
	border-radius:13px;
}

#products .info
{
	width:140px;
	height:160px;
	color:#3F4C58;
	font-size:12px;
	line-height:18px;
	text-align:left;
	margin:0 20px 20px 20px;
	float:left;
	overflow:hidden;
	text-overflow:ellipsis;
}

#products .product
{
	cursor:pointer;
	position:relative;
	color:#1C2126;
	width:120px;
	height:160px;
	font-size:12px;
	line-height:20px;
	text-align:center;
	background-color:#ffffff;
	padding:10px 0 0 0;
	margin:0 0 20px 20px;
	border-radius:8px;
	float:left;
}

#products .product img
{
	height:120px;
}

#products .product span
{
	display:block;
	width:120px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}

#products .product button.add,
#products .product button.remove
{
	cursor:pointer;
	display:block;
	position:absolute;
	top:10px;
	right:10px;
	width:22px;
	height:22px;
	background-color:transparent;
	background-image:url('../images/add.png');
	background-size:22px;
	background-repeat:no-repeat;
	background-position:center;
	border:0;
	outline:0;
}

#products .product button.remove
{
	background-image:url('../images/remove.png');
}

#product-info
{
	position:fixed;
	top:calc(50vh - 300px);
	left:calc(50vw - 400px);
	display:none;
	width:800px;
	color:#121117;
	font-size:15px;
	background:#F8F8F8;
	padding:30px 30px 40px 30px;
	box-shadow:0px 3px 24px #00000029;
	border-radius:8px;
}

#product-info hr
{
	border:1px solid #cccccc;
	height:0px;
	width:100%;
}

#product-info button
{
	cursor:pointer;
	color:#121117;
	font-size:19px;
	background:transparent;
	padding:8px 32px;
	margin:0 0 20px 0;
	border:1px solid #121117;
	border-radius:34px;
	float:right;
}

#product-info h2
{
	color:#121117;
	font-size:25px;
	font-weight:400;
	line-height:48px;
	margin:0 0 20px 0;
	float:left;
}

#product-info h3
{
	color:#121117;
	font-size:19px;
	font-weight:400;
	margin:30px 0 20px 0;
}

#product-info p
{
	margin:0 0 10px 0;
}

#product-info ul
{
	margin:0 0 0 30px;
}

#product-info a
{
	color:#20867A;
	font-weight:700;
	text-decoration:none;
}

#cart
{
	position:fixed;
	top:0px;
	right:0px;
	width:500px;
	height:100vh;
	color:#000000;
	background:#ffffff;
	margin:0 -100vw 0 0;
	transition:margin 0.5s;
}

#cart #list
{
	width:auto;
	background:#F4F6F8;
	padding:16px 24px;
	margin:16px 24px;
	border-radius:8px;
}

#cart #list h3
{
	display:inline-block;
	font-size:17px;
	font-weight:700;
	margin:0 0 30px 0;
}

#cart #list .product
{
	height:80px;
	font-size:13px;
	padding:16px 0 0 0;
	margin:0 0 20px 0;
	clear:both;
}

#cart #list .product span
{
	display:block;
	width:300px;
	white-space:nowrap;
	overflow:hidden;
	text-overflow:ellipsis;
}

#cart #list .product img
{
	height:80px;
	margin:-16px 20px 0 0;
	float:left;
}

#cart #list .product a.button
{
	float:right;
}

#cart #list a
{
	color:#000000;
	font-size:17px;
	text-decoration:none;
}

#cart #list a.button
{
	display:inline-block;
	color:#ffffff;
	font-size:13px;
	font-weight:700;
	text-align:center;
	background:#7DB765;
	border-radius:28px;
	padding:12px 16px;
}

#cart #list a.button.large
{
	width:100%;
	font-size:17px;
	margin:30px 0 0 0;
}
