#textarea_wrapper{
	position: relative;
}

#note_edit_container{
	display: none;
	flex-direction: column;
	justify-content: flex-start;
	height: 100%;
}

#note_markdown_menu{
	display: none;
}

#note_editor_back{
	display: inline-block;
	color: #bbbbbb;
}

#note_markdown_edit{
	display: inline-block;
	color: #bbbbbb;
}

#note_editor_preview_markdown{
	display: inline-block;
	float: right;
	color: #bbbbbb;
}

#note_editor_title_wrapper{
	text-align: center;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}

#note_editor_title{
	display: inline-block;
	outline: none;
	border: none;
	font-size: 150%;
	background: transparent;
	text-overflow: ellipsis;
	font-family: Consolas, Monaco, Microsoft YaHei, serif;
	width: 100%;
	text-align: center;
	margin: 0.5em;
}

#textarea_wrapper{
	flex: 1;
	overflow: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
}

#note_editor{
	width: 100%;
	padding: 0em;
	resize: none;
	border: none;
	background: transparent;
	font-family: Consolas, Monaco, Microsoft YaHei, serif;
	font-size: 100%;
	margin-top: 1em;
}

#note_editor:focus{
	outline: none;
	border: none;
}

#note_editor::-webkit-input-placeholder{
	color: #bbbbbb;
}
#note_editor:-moz-placeholder{
	color: #bbbbbb;
}
#note_editor::-moz-placeholder{
	color: #bbbbbb;
}
#note_editor:-ms-input-placeholder{
	color: #bbbbbb;
}
#note_editor::placeholder{
	color: #bbbbbb;
}