#feedback-form {
	margin-top: 30px;
}

#feedback-form > ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

#feedback-form > ul > li {
	margin: 10px 0 0 0;
	padding: 0;
}

#feedback-form > ul > li > label {
	display: inline-block;
	width: 100px;
	text-align: right;
	color: #777;
	padding-right: 5px;
}

#feedback-form > ul > li > input {
	width: 300px;
}

#feedback-form > ul > li > div {
	display: inline-block;
}

#feedback-form > ul > li > div > textarea {
	width: 500px;
	height: 150px;
}

#feedback-form > ul > .submit {
	padding-left: 105px;
}


#feedback-form > ul > .submit > input {
	width: 170px;
}

#popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
}

#popup > .panel {
	position: absolute;
	left: 50%;
	top: 50%;
	box-shadow: 0 0 10px #333;
	margin-top: -45px;
	margin-left: -230px;
	height: 60px;
	width: 430px;
	background-color: white;
	text-align: center;
	border-radius: 6px;
	border: 1px solid #999;
	padding: 15px;
}

#popup > .panel > div {
	margin-top: 15px;
}