<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.social_live {
	position: fixed;
	top: 30%;
	right: 10px;
	z-index: 900;
}

.social_live.active {
	z-index: 1100;
}

.social_live .main_social_button {
	position: relative;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.social_live .active {
	background: #ccc;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
}

.social_live .main_social_button i {
	font-size: 24px;
	color: #0476bd;
}

.social_live .main_social_button span {
	font-size: 24px;
	color: #0476bd;
	display: none;
}

.social_live .sub_social_buttons_container {
	position: relative;
	top: 20px;
	width: 40px;
	display: none;
	opacity: 0;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
}

.social_live .sub_social_buttons_container .sub_social_button {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 6px;
	transition: all 0.5s;
	cursor: pointer;
}

.social_live .sub_social_buttons_container .sub_social_button_container {
	position: relative;
}

.social_live .sub_social_buttons_container .sub_social_button_container span {
	width: 100px;
	position: absolute;
	left: 60px;
	top: 10px;
	padding: 5px;
	background: rgba(255, 255, 255, .8);
	border-radius: 3px;
	text-align: center;
	opacity: 0;
	transition: all 0.5s;
}

.social_live .sub_social_buttons_container .sub_social_button:hover {
	box-shadow: 1px 1px 12px rgba(0, 0, 0, .5);
}

.social_live .sub_social_buttons_container .sub_social_button:hover span {
	opacity: 1;
}

.social_live .sub_social_buttons_container .sub_social_button i {
	font-size: 22px;
	color: white;
	text-shadow: 1p 1px 1px rgba(0, 0, 0, .1);
}


/* Contact Button */

.social_live .main_social_button {
	background: transparent;
	border: 2px solid #0476bd;
}

.social_live .main_social_button:not(.active):before {
	background: #0476bd;
}

.social_live .sub_social_buttons_container .sub_social_button {
	box-shadow: initial !important;
	background: #149a52;
}

.social_live .sub_social_buttons_container .sub_social_button:hover {
	background: #1daa5e;
}</pre></body></html>