.new-notes {
	padding: 7px;
	background: #fff;
	/*border: 1px solid #bbb;*/
}

.new-notes .head {
	display: flex;
	align-items: center;
	padding: 0 0 7px;
}

.new-notes .head h5 {
	font-size: 13px;
	font-weight: bold;
	color: black;
}

.new-notes .head .add {
	margin: 0 0 0 10px;
	padding: 2px 5px;
	font-size: 10px;
	color: #fff;
	background: #00a925;
	border-radius: 3px;
	text-transform: uppercase;
	cursor: pointer;
}

.new-notes .head .add:hover {
	background: #007e20;
}

.new-note {
	width: 100%;
	padding: 3px 0;
	border-bottom: 1px solid #f1f1f1;
}

.new-note p {
	padding: 3px 0;
	margin-bottom: 3px;
	color: #000;
	font-size: 13px;
}

.new-note .created {
	color: #888;
	font-size: 13px;
}

.new-note .created span {
	display: inline-block;
	margin-left: 10px;
	cursor: pointer;
}

.new-note .created span:hover {
	text-decoration: underline;
}

.new-note .created span.edit {
	color: #007e20;
}
.new-note .created span.remove {
	color: #c6643b;
}
.new-note .created span.cancel {
	color: #555;
}

.new-note[data-edit="0"] .created span[data-action="save"], .new-note[data-edit="0"] .created span[data-action="cancel"] {
	display: none;
}
.new-note[data-edit="1"] .created span[data-action="edit"], .new-note[data-edit="1"] .created span[data-action="remove"] {
	display: none;
}


.new-note textarea {
	width: 100%;
	height: 40px;
	font-size: 12px;
	padding: 5px 10px;
	font-style: italic;
	border: none;
	box-sizing: border-box;
	outline: 1px solid #ddd;
	background: #f1f1f1;
}

.new-note textarea:focus {
	outline: 1px solid #999;
}