
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');

*
{
	padding:0;
	margin:0;
	box-sizing:border-box;
}

body, form *, input, button
{
	color:#ffffff;
	font-family:"Roboto", sans-serif;
	font-size:16px;
	font-weight:400;
	line-height:160%;
}

body
{
	overflow:hidden;
}

h1,h2,h3,h4,h5
{
	line-height:100%;
	margin:0 0 10px 0;
}

span.green
{
	color:#ACFE4B;
}

#splash
{
	width:100vw;
	height:100vh;
	padding:90px 0;
	background:url('background.png');
	background-size:cover;
	background-repeat:no-repeat;
	overflow:hidden;
	transition:margin 1s;
	z-index:1;
}

#splash h1
{
	color:#ffffff;
	font-size:32px;
	font-weight:700;
	text-align:center;
	margin:0 0 20px 0;
}

#splash h2
{
	font-size:18px;
	font-weight:700;
	text-align:center;
}

#splash h3
{
	font-size:23px;
	line-height:150%;
	text-align:center;
	margin:0 0 30px 0;
}

#splash form
{
	width:620px;
	padding:50px 90px;
	background:rgba(255,255,255,0.06);
	margin:60px auto 0px auto;
	border-radius:42px;
	backdrop-filter: blur(27px);
	-webkit-backdrop-filter: blur(27px);
}

#splash form input[type="text"]
{
	width:100%;
	color:#ffffff;
	font-size:28px;
	background:transparent;
	padding:0 0 10px 0;
	margin:0 0 20px 0;
	border:1px solid #8facb0;
	border-width:0 0 2px 0;
	outline:none;
}

#splash form input[type="text"]::placeholder
{
	color:#71B8B5;
}

#splash form input[type="submit"]
{
	cursor:pointer;
	display:block;
	width:270px;
	font-size:17px;
	font-weight:700;
	padding:12px;
	margin:0 auto 40px auto;
	background-color:#7DB765;
	border-radius:42px;
	border:0;
	outline:none;
}

#splash form input[type="submit"]:hover
{
	background-color:#20867A;
}

#splash p
{
	display:block;
	font-size:13px;
	text-align:center;
	margin:20px auto 20px auto;
}

#splash a.suggestion
{
	display:block;
	font-size:17px;
	text-decoration:none;
	background:rgba(255,255,255,0.18);
	padding:12px 24px;
	margin:0 0 8px 0;
	border-radius:34px;
}

#app
{
	position:absolute;
	width:100vw;
	top:0px;
	left:0px;
	z-index:-1;
	background:url('background.png');
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}

#header
{
	height:90px;
	color:#ffffff;
	background-color:#000000;
	padding:0 24px;
}

#header h1
{
	color:#ffffff;
	display:inline;
	font-size:22px;
	line-height:86px;
	font-weight:700;
	padding:4px 0;
	border-bottom:1px solid #54d035;
}

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

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

#chat h2
{
	color:#ffffff;
	font-size:22px;
}

#chat p
{
	color:#D9D9D9;
}

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

#messages
{
	height:calc(100vh - 320px);
	margin:20px 0;
	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:20px 0;
	border-radius:8px;
}

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

#data
{
	height:238px;
	padding:24px;
}

#data h3
{
	font-size:15px;
	font-weight:700;
}

/*#data #attributes*/
#data #goals
{
	width:50%;
	float:left;
}

#data #goals p
{
	width:50%;
	float:left;
}

#data #categories
{
	width:50%;
	float:left;
}

#categories .category
{
	cursor:pointer;
	position:relative;
	width:100px;
	height:140px;
	margin:0 0 0 10px;
	float:left;
}

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

#categories .category span
{
	display:block;
	width:90px;
	font-size:11px;
	text-align:center;
	padding:2px 0;
	margin:104px auto 0 auto;
	background-color:#000000;
	border-radius:3px;
}

#products
{
	height:calc(100vh - 238px - 90px);
	background:#ffffff;
	padding:36px 36px 26px 36px;
	overflow:auto;
}

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

#products #num-of-products
{
	color:#000000;
	font-size:17px;
	font-weight:700;
	margin:0 0 20px 0;
}

#products h2
{
	color:#20867A;
	font-size:23px;
	margin:0 0 30px 0;
	clear:both;
}

#products .list
{
	height:120px;
	margin:0 0 10px 0;
}

#products .product
{
	cursor:pointer;
	position:relative;
	color:#000000;
	width:120px;
	height:120px;
	font-size:12px;
	line-height:20px;
	text-align:center;
	margin:0 0 30px 0;
	float:left;
}

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

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

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

#product-info
{
	position:absolute;
	top:calc(50vh - 300px);
	left:calc(50vw - 400px);
	display:none;
	width:800px;
	/*height:600px;*/
	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;
}
