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

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

.floating-btn:hover {
	background-color: #ffffff;
	color: #673ab7;
}

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

.floating-text {
	background-color: #673ab7;
	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: 8;
}

.floating-text a {
	color: #673ab7;
	text-decoration: none;
}

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

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