/*Start Company Counter specific*/
.button-feedback-fixed {
	display: inline-block;
	z-index: 90;
	font-size: 22px;
	position: fixed;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	right: -65px;
	background: #00526E;
	padding: 17px 35px;
	border-radius: 4px;
	text-decoration: none;
	color: #fff;
	border: none;
	cursor: pointer;
}

.button-feedback {
	font-size: 16px;
    background: #00526E;
    padding: 10px 15px;
    border-radius: 4px;
    display: block;
    text-decoration: none;
    color: #fff;
    margin: 20px auto 0 auto;
}

.button-feedback-fixed:focus,
.button-feedback:focus {
  outline: 2px dashed #00526E;
  outline-offset: 5px;
}

.button-feedback-fixed:before {
    content: "\f4ad";
	display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	margin-right: 10px;
}

@media screen and (max-width: 1170px) {
	.button-feedback-fixed {
		display: none;
		top: auto;
		bottom: 150px;
		transform: translateY(0px) rotate(-90deg);
	}
}

/*End Company Counter specific*/
