/* ---------------------------------- */
/* callbutton
------------------------------------- */
#callbutton {
	position: fixed;
	right: 0;
	opacity: 0;
	visibility: hidden;
	bottom: 25px;
	margin: 0 25px 0 0;
	z-index: 999;
	transition: 0.35s;
	transform: scale(0.7);
}

#callbutton.visible {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

/*
#callbutton a {
	text-decoration: none;
	border: 0 none;
	display: block;
	width: 46px;
	height: 46px;
	background-color: #00a948;
	opacity: 1;
    transition: all 0.3s;
    border-radius: 50%;
    text-align: center;
    font-size: 26px
} */

#callbutton a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: #00a948;
    opacity: 1;
    transition: all 0.3s;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    text-decoration: none;
    border: 0 none;
}

body #callbutton a { color: #fff; }

/*
#callbutton a:after {
	content: "\f095";
	font-family: "FontAwesome";
	position: relative;
	display: block;
	top: 50%;
	-webkit-transform: translateY(-55%);
	transform: translateY(-55%);
} */

#callbutton a:after {
    content: "\f095";
    font-family: "FontAwesome";
    display: block;
	transform: scaleX(-1);
}