@import url('https://fonts.googleapis.com/css?family=Muli&display=swap');

.floating-btn {
	border-radius: 25px;
	background-color: #5E4ABC;
	border: 5px solid #5E4ABC;
	box-shadow: 0 16px 22px -17px #5E4ABC;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	line-height: 20px;
	padding: 10px 10px;
	position: fixed;
	bottom: 180px;
	right: 10px;
	z-index: 99999999;
}

.floating-btn:hover {
	background-color: #ffffff;
	color: #5E4ABC;
}

.floating-btn:focus {
	outline: none;
}

.floating-text {
	background-color: #5E4ABC;
	border-radius: 10px 10px 0 0;
	color: #fff;
	font-family: 'Muli';
	padding: 7px 15px;
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	z-index: 998;
}

.floating-text a {
	color: #5E4ABC;
	text-decoration: none;
}

@media screen and (max-width: 480px) {

	.social-panel-container.visible {
		transform: translateX(0px);
	}
	
	.floating-btn {
		right: 10px;
	}
}