.txt{
	display: block;
	margin: 0;
	-webkit-appearance:none;
	padding: 7px 10px;
	background-color: #fff;
	outline: 0;
	color: #444;
	border-radius: 03px;
	transition: border-color 0.3s;
	resize: vertical;
	line-height: 1.5;
	font-size: 14px;
	border:1px solid rgba(0,0,0,0.1);
	width: 100%;
	min-width: 100%;
	max-width: 100%;
	min-height: 36px;
	max-height: 30em;
	overflow: hidden;
	overflow-y:auto;
}
.txt:hover{
	border-color: rgba(0,0,0,0.2);
}
.txt:focus{
	border-color: #80c0d0;
}
.txt[data-editor]{
	min-height: 238px;
	margin:0;
}
.txt[rows]{
	resize: none;
}

.txt[rows="1"]{
	line-height:1;
}
.txt[data-autoResize]{
	line-height:20px;
	padding: 7px 10px;
	max-height: 500px;
	will-change: height;
}
.txt.error{
	border-color:rgba(255,0,0,0.5);
}
.txt[data-dir="rtl"]{
	direction: rtl;
}
.txt[data-dir="ltr"]{
	direction: ltr;
}

