.btn-feedback {
	position: fixed;
	top: 50%;
	right: 0;
	transform: rotate(-90deg) translate(50%, -50%);
	transform-origin: 100% 50%;
	background-color: #2cac87;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
	z-index: 999;
	text-transform: capitalize;
	padding: 5px 15px 5px 10px;
	transition: background-color 0.1s ease;
}
.btn-feedback .icn-bg-circle {
	background-color: #1E8063;
}
.btn-feedback:hover {
	background-color: #2fb891;
}
.btn-feedback:hover .icn-bg-circle {
	background-color: #1E8063;
}

@media screen and (max-width: 1024px) {
	.btn-feedback {
		top: auto;
		bottom: 0;
		transform: none;
		border-top-right-radius: 0;
	}
}