.textarea {
	position: relative;
	font-size: 14px;
	margin: 15px 0px;
	box-sizing: border-box;
}

.textarea .inputPlaceholder {
	position: absolute;
	top: 0;
	left: 8px;
	height: 36px;
	align-items: center;
	pointer-events: none;
	display: flex;
	z-index: 1;
	transition: all 0.3s;
	color: #999;
}

.textarea textarea {
	width: 100%;
	height: 100%;
	padding: 9px;
	outline: none;
	border: 1px solid #a9a9a9;
	border-radius: 4px;
	font-family: 'Nunito', sans-serif;
	box-sizing: border-box;
}

.textarea .inputPlaceholder:before {
	content: '';
	width: 100%;
	position: absolute;
	left: 0;
	height: 18px;
	top: 0;
	bottom: 0;
	margin: auto; /* background: white; */
	z-index: 0;
}

.textarea textarea:focus + .inputPlaceholder,
.textarea textarea.hasText + .inputPlaceholder {
	top: -6px;
	font-size: 10px;
	height: 14px;
	background: white;
	padding: 0px 2px;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 41%,
		rgba(255, 255, 255, 1) 43%,
		rgba(255, 255, 255, 1) 50%,
		rgba(255, 255, 255, 1) 57%,
		rgba(255, 255, 255, 0) 57%
	);
}

.textarea textarea:focus {
	box-shadow: 0px 1px 7px -4px #6f6f6f;
	border: 1px solid #47d240;
}
