stamp{
	width: calc(100% - 40px);
	margin: 10px 0;

	font-size: 18pt;
}

plan{
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: column;
	align-items: center;

	overflow-y: scroll;
	scrollbar-width: thin;
	scrollbar-color: var(--app-col), transparent;
}

task{
	width: calc(100% - 40px);
	min-height: 60px;
	margin: 5px 0;
	padding: 5px 0;
	box-sizing: border-box;

	border-left: 0px solid var(--app-col);
	background: rgba(255,255,255,0.05);
	box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
	border-radius: 14px;

	cursor: pointer;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-shrink: 0;

	transition: ease 0.2s;
}
task:hover{
	background: rgba(255,255,255,0.1);
}
task.completed-task{
	border-left: 14px solid var(--green-col);
	background: rgba(var(--green-col-rgb), 0.1);
}

task img{
	width: 30px;
	height: 30px;
	margin: 5px 10px;
}

task info{
	width: 100%;
	height: 100%;

	font-size: 12pt;

	display: flex;
	flex-direction: column;
	justify-content: center;
}

task info name{
	margin: 2px;
	/*padding-right: 10px;*/
	box-sizing: border-box;

	display: flex;
	align-items: center;
	flex-shrink: 0;
}
task info name.desc{
	opacity: 0.7;
	font-size: 10pt;
}

task input{
	width: 100%;
	height: 30px;
	margin: 0 10px;
	padding: 0 5px;

	display: flex;

	background: rgba(0,0,0,0.3);
	border-radius: 4px;
	border: 2px solid var(--app-col);
	outline: none;

	font-size: 16pt;
}

dot{
	padding: 0 5px;
}
dot:after{
	content: "·";
}


img.avatar{
	width: 100px;
	height: 100px;
	margin: 10px 0;

	border-radius: 50%;
	border: 2px solid white;
	box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}