#button {
	display: inline-block;
	background-color: #fd893a;
	width: 50px;
	height: 50px;
	text-align: center;
	border-radius: 4px;
	position: fixed;
	bottom: 30px;
	right: 30px;
	transition: background-color .3s,
	opacity .5s, visibility .5s;
	opacity: 0;
	visibility: hidden;
	z-index: 1000;
}

#button::after {
	content: "\f077";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-style: normal;
	font-size: 2em;
	line-height: 50px;
	color: #ffffff;
}

#button:hover {
	cursor: pointer;
	background-color: #ca6d2e;
}

#button:active {
	background-color: #975222;
}

#button.show {
	opacity: 1;
	visibility: visible;
}

.grecaptcha-badge {
	visibility: hidden;
}