:root {
  --black: #000000;
  --dark: #0a0a0a;
  --white: #ffffff;
  --white01: rgba(255,255,255,0.05);
  --white02: rgba(255,255,255,0.1);
  --white03: rgba(255,255,255,0.15);
  --lime: #3BFE00;
  --darkgreen: darkgreen;
  --red: red;
}
@font-face {
    font-family: 'digital';
    src: url('/fonts/DIGITALDREAM.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
body {
	margin: 0;
	background-color: var(--dark);
	color: var(--white);
	font-family: verdana;
}
header {
	position: fixed;
	left: 0;
	width: 260px;
	top: 0;
	bottom: 0;
	background-color: var(--black);
	color: var(--white);
	padding:10px;
	box-sizing: border-box;
}
main {
	padding: 10px;
	padding-left: 270px;
}
a {
	color: var(--lime);
	text-decoration: none;
}
h1 {
	margin-top: 0;
	float: left;
	color: var(--white);
	opacity: 0.5;
}
.menu {
	display: block;
	padding: 10px 0;
	border-top: 1px dashed var(--lime);
	font-size: 14px;
}
.list {
	height: 30px;
	line-height: 30px;
	padding-right: 15px;
	font-size: 14px;
}
.list:nth-child(2n-1){
	background-color: var(--white01);
}
.list:nth-child(2n){
	background-color: var(--white03);
}
.list button {
	float: right;
	margin-left: 5px;
	margin-top: 5px;
}
.list:hover {
	background-color: rgba(0,0,0,0.15);
	cursor: pointer;
}
.done {
	opacity: 0.2;
	cursor: none;
}
.index {
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	display: block;
	float: left;
	margin-right: 10px;
	border-right: 2px solid var(--dark);
}
.section {
/*	margin: 0 -10px;*/
}
.label {
	display: inline-block;
	padding: 0 6px;
	float: left;
	margin-right: 5px;
	height: 24px;
	line-height: 24px;
	box-sizing: border-box;
	margin-top: 3px;
	width: 100px;
	font-weight: bold;
	font-size: 12px;
	text-align: right;
}
.label svg {
	width: 12px;
	height: 12px;
	float: right;
	margin-top: 6px;
	padding-left: 6px;
}
.in {
	background: var(--darkgreen);
}
.out {
	background: var(--red);
}
small {
	color: var(--white);
}
.img-btn {
	float: right;
	height: 16px;
	margin-top: 7px;
	margin-left: 10px;
}
.add-task-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 262px;
	bottom: 0;
	background-color: var(--black);
	overflow-y: auto;
	padding: 10px;
	box-sizing: border-box;
	display: none;
}
.add-task-popup input, .add-task-popup select, .add-task-popup textarea {
	display:block;
	margin-bottom: 20px;
	height: 32px;
	width: 100%;
	box-sizing: border-box;
	color: var(--lime);
	padding: 5px 10px;
	background: black;
	border:1px solid var(--lime);
	outline: none;
	border-radius: 4px;
}
.add-task-popup input::placeholder, .add-task-popup textarea::placeholder {
	color: #808080;
}
.add-task-popup textarea {
	height: 100px;
	resize: none;
}
.add-task-popup button, .cancel-button {
	display:block;
	margin-bottom: 20px;
	height: 36px !important;
	font-size: 16px;
	width: calc(50% - 10px);
	box-sizing: border-box;
	color: var(--black);
	padding: 5px 10px;
	background: var(--lime);
	border:2px solid var(--lime);
	outline: none;
	border-radius: 4px;
	font-weight: bold;
	opacity: 0.5;
	display: inline-block;
}
.add-task-popup button:hover, .cancel-button:hover {
	cursor: pointer;
	opacity: 1;
}
.add-task-popup .cancel-button {
	background: black;
	color: var(--lime) !important;
	width: calc(50% - 10px) !important;
	float: right;
	font-weight: normal;
	opacity: 1;
}
.create-task {
	color:var(--lime);
	height: 30px;
	line-height: 30px;
	font-size: 14px;
	border-radius: 5px;
	padding: 0 10px;
	text-align: center;
	float: right;
	margin-top: 4px;
	border: 1px solid var(--lime);
	cursor: pointer;
}
.create-task:hover {
	background-color: #111111;
}
.filters {
	margin: 20px 0;
}
.filters a {
	width: calc(33.33333% - 10px);
	margin: 5px;
	display: block;
	float: left;
	background: #222222;
	border: none;
	border-radius: 2px;
	font-size: 12px;
	padding: 5px 0;
	text-decoration: none;
	color: var(--white);
	text-align: center;
	box-sizing: border-box;
	border:1px solid #222222;
	opacity: 0.5;
}
.filters50 a {
	width: calc(50% - 10px);
}
.active-label, .filters .active-label {
	color: var(--lime);
	background: none;
	border:1px solid var(--lime);
	opacity: 1;
}
.filters a:hover {
	opacity: 1;
}
.clear {
	clear:both;
}
#clock {
	font-size: 18px;
	margin-bottom: 20px;
	margin-top: -10px;
	color: var(--lime);
	padding: 10px 0;
	border-bottom: 1px dashed var(--lime);
	box-sizing: border-box;
}
#clock span {
	font-size: 15px;
	font-family: 'digital';
	letter-spacing: 2px;
	line-height: 22px;
	color: var(--white);
	opacity: 0.5;
}
#clock b {
	color: var(--lime);
	border: 1px solid var(--lime);
	font-size: 14px;
	padding: 3px 5px;
	border-radius: 4px;
	font-weight: normal;
}
.h2-title {
	color: #808080;
	font-size: 24px;
	margin-bottom: 26px;
}
.h2-title span{
	float: right;
	color: var(--lime);
	opacity: 0.5;
}
.h2-title span:hover {
	cursor: pointer;
	opacity: 1;
}
#input-price {
	display: none;
}
.red-price {
	color: orange;
	font-weight: normal;
}
.green-price {
	color: var(--lime);
	font-weight: normal;
}
.task-name svg {
	float: left;
	margin-top: 6px;
	margin-right: 6px;
}
#input-group, #input-dt {
	display: none;
}
.deadline {
	float: right;
	margin-right: 30px;
	color: var(--lime);
	font-style: normal;
}

@media(max-width:800px){
	header{
		position: static;
		width: 100%;
	}
	main {
		padding-left: 10px;
	}
	.task-name {
		max-width: 240px;
		overflow: hidden;
		display: block;
		float: left;
		height: 30px;
	}
	.add-task-popup {
		max-width: 100%;
	}
}