.feedback-modal {
	background: #ffffff;
	padding: 20px;
	border-radius:3px;
	border: 1px solid #d8d8d8;
	position: fixed;
	z-index: 1000;
	display: none;
	
	width: 40%;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}
.feedback-modal-title {
	color: #36393D;
	font: 18px Arial;
	margin-bottom:10px;
}
.feedback-modal .feedback_response {
	color: #36393D;
	font: 12px Arial;
	text-align: center;
}
.feedback-modal input[type=text], .feedback-modal textarea {
	width: 100%;
	border: 1px solid #d8d8d8;
	padding: 5px;
	outline: none;
	box-sizing: border-box;
	font: 12px Arial;
	color: #36393D;
	margin-top: 5px;
}
.feedback-modal input[type=submit] {
	border: 1px solid #d8d8d8;
	cursor: pointer;
	color: #404040;
	padding: 5px;
	background: #ffffff;
}
.feedback-modal input[type=submit]:hover {
	border: 1px solid #b8b8b8;
}
.feedback-modal textarea {
	height: 100px;
	resize: none;
}
.feedback-modal input:nth-child(1), .feedback-modal input:nth-child(3) {
	display: none;
}
.feedback-modal-bg {
	background: #e5e5e5;
	opacity:0.9;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: 999;
	display: none;
}
.feedback-modal-close {
	background: url(close1.png);
	height: 12px;
	width: 12px;
	position:absolute;
	top: 20px;
	right: 20px;
	cursor: pointer;
}
.feedback-modal-close:hover {
	background: url(close2.png);
}
body{
	margin: 0;
	padding: 0;
}
@media all and (max-width: 700px) {
	.feedback-modal {
		width: 90%;
	}
}