/* Tap To Call */
.tap-to-call a {
	position: fixed;
	z-index: 99;
	bottom: 0;
	left: 0;

	transition: all .2s ease;

	display: block;
//	background: #C3D91E;
	background: $base-accent-color;
	color: white;
	font-size: 1rem;
	font-family: $header-font-family;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	padding: 1rem;
	width: 100%;

	@media only screen and ( min-width:$large-screen) {
		display: none;
	}

	i {
		font-size: 2rem;
		margin: 0 6px;
		vertical-align: middle;
	}
}