<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* -----------------------------------------------------------------------------

  FLOATIN CONTACT BAR
  
----------------------------------------------------------------------------- */
#contact-buttons-bar {
  position: fixed;
  top: 95px;
  left: -50px;
  width: 50px;
  z-index:999;
}


#contact-buttons-bar.slide-on-scroll {
  position: absolute;
}

.contact-button-link  {
	cursor: pointer;
	display: block;
	width: 50px;
	height: 50px;
	padding: 0;
	margin-bottom: 1px;
	text-align: center;
	line-height: 50px;
	font-size: 22px;
	background: #444;
	color: #fff;
	position: relative;
	left: 0;

	-webkit-box-sizing: border-box;
	 -moz-box-sizing: border-box;
		  box-sizing: border-box;

	-webkit-transition: all 250ms;
	 -moz-transition: all 250ms;
		  transition: all 250ms;
}
.contact-button-link:hover,
.contact-button-link:focus,
.contact-button-link:active,
.contact-button-link:visited {
	color: #fff;
	padding-left: 20px;
	width: 70px;
}
.contact-button-link.cb-hidden {
	left: -50px;
}
.contact-button-link.facebook {
	background: #3b5998;
}
.contact-button-link.twitter {
	background: #55ACEE;
}
.contact-button-link.linkedin {
	background: #0077b5;
}
.contact-button-link.gplus {
	background: #db4437;
}
.contact-button-link.instagram {
	background: #AA9D92;
}
.contact-button-link.separated {
	margin-top: 1em;
}

.show-hide-contact-bar,
.contact-button-link.show-hide-contact-bar:focus,
.contact-button-link.show-hide-contact-bar:active {
  background: #fff;
	color: #444;
	border: 0;
	outline: 0;
	padding: 0;
	width: 50px;
}
.contact-button-link.show-hide-contact-bar:hover {
	color: #000;
	background: #ccc;
	padding: 0;
	width: 50px;
}</pre></body></html>