/*
*
* Mobile Call / Contact TopBar
* 04/26/24
*
*/
/* Hide the old mobile bar, create a new one from JS, style it here. */
body #mobilebar {
	display: none !important;
	visibility: hidden !important;
}
@media All and (max-width: 650px){ 
	body #mahogany-mobilebar {
		background-color: transparent;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		display: block;
	}
	body #mahogany-mobilebar > div {
		position:relative;
		max-width: calc(100% - 80px);
		gap: 8px;
		padding: 12px;
		display: flex;
	}
	body #mahogany-mobilebar > div > a {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		text-align: center;
		margin: 0;
		padding: 10px;
		gap: 10px;
		border-radius: 8px;
		box-shadow: 0 0 5px rgba(0,0,0,0.4);
		width: 100%;
		max-width: 250px;	
	}
	body #mahogany-mobilebar > div a img {
		margin-left: auto;
		margin-right: auto;
		float: none;
		display: block;
		clear: both;
		height: 30px;
		width: auto;
		position: relative;	
	}
	body #mahogany-mobilebar a span {
		font-weight: 300;
		font-size: 13px;
		font-family: Arial, sans-serif;	
	}

}

@media All and (min-width: 650px) {
	body #mahogany-mobilebar { display: none !important; visibility: hidden !important; }
}