.feedback-button {
	position: fixed;
	width: 150px;
	right: -75px;
	top: 35%;
	display: block;
	background: #ff9000;
	color: #fff;
	padding: 50px 20px 10px;
	z-index: 2;
	transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	border: 1px solid #ed6d04;
}
.feedback-button img {
	transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
}
.feedback-button:hover {
	right: -60px;
	cursor: pointer;
	color: #fff;
}

@media only screen and (max-width: 1024px) {
	.feedback-button {
		width: 130px;
		padding: 50px 10px 5px;
	}
}