.feedback_Box {
	width: 50%;
	height: 60%;
	position: fixed;
	left: 25%;
	top: 20%;
	background-color: #fff;
	opacity: 0;
	z-index: 1000;
	pointer-events:none;
	border-radius: 10px;
	overflow: hidden;
}

.feedback_Box .column {
	width: 100%;
	line-height: 40px;
	background: -webkit-linear-gradient(23deg, #aaffff 0%, #aaff7f 100%);
	padding-left: 10px;
	/* border: solid 1px red; */
}

.feedback_Box .content {
	width: 96%;
	height: 430px;
	margin: 2%;
	/* border: solid 1px red; */
}

.feedback_Box .content * {
	margin-top: 10px;
}

#feedback_text {
	width: 96%;
	outline: none;
	border: none;
	border-radius: 10px;
	padding: 1%;
	font-size: 18px;
	background-color: #ececec;
}

.put-in {
	width: 200px;
	height: 45px;
	font-size: 17px;
	border: #cccccc solid 1px;
	border-radius: 40px;
	cursor: pointer;
	transition: 200ms;
}

.put-in:hover {
	background-color: #c7c7c7;
}