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

.floating-btnn {
	border-radius: 25px;
	background-color: #C92D4C;
	border: 5px solid #C92D4C;
	box-shadow: 0 16px 22px -17px #C92D4C;
	color: #fff;
	cursor: pointer;
	font-size: 20px;
    font-weight: bold;
	line-height: 20px;
	padding: 10px 10px;
	position: fixed;
	bottom: 150px;
	right: 20px;
	z-index: 3;
}

.floating-btnn:hover {
	background-color: #ffffff;
	color: #C92D4C;
}

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

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

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