.btn-feedback {
	cursor: pointer;
	display: block;
	position: fixed;
	bottom: 30px;
	right: 30px;
	height: 50px;
	width: 50px;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: .8;
	z-index: 900;
}
.btn-feedback:hover {
	opacity: 1;
}
.feedback-comment-body {
	background: rgba(0,167,225,1);
	position: relative;
	border-radius: 50%;
	height: 50px;
	width: 50px;
}
.feedback-comment-body .glyphicon {
	color: #fff;
	font-size: 24px;
	line-height: 24px;
	position: absolute;
	top: 13px;
	left: 13px;
}