#feedback {
    width: 0px;
	position: fixed;
	left: 0;
	bottom: 0;
	height: 485px;
	margin-left: auto;
	margin-bottom: -3px;
}

#feedback.right {
    right:0;
}

#feedback-form {
	float: left;
	width: 350px;
	height: auto;
	z-index: 1000;
	padding-left: 5px;
	padding-right: 10px;
	background-clip: 'padding-box';
	border: 1px solid rgba(0,0,0,.2);
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0,.2);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0,.2);
	box-shadow: 0 5px 10px rgba(0,0,0,.2);

    text-align: center;
}

#feedback-form .g-recaptcha {
	margin-bottom: 20px;
}

#feedback.right #feedback-form {
    float: right;
}

#feedback-tab {
	float: right;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	text-align: center;
	width: 120px;
	height: 42px;
	background-color: rgba(0,0,0,0.5);
	margin-top: 60px;
	margin-left: -42px;
	padding-top: 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

#feedback.right #feedback-tab {
    margin-right: -42px;

    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
}

#feedback-tab:hover {
	background-color: rgba(0,0,0,0.4);
}

#feedback-form textarea {
	resize: none;
}

#feedback-msg {
    font-size: inherit;
}

#feedback-msg.successMessage {
    padding-top: 40%;
    padding-bottom: 15px;
}

#feedback-msg.errorMessage {
    padding-bottom: 0px;
    padding-top: 10px;
    color: red;
}

#feedback-close {
    margin-bottom: 40%;
}

