@charset "utf-8";

#fab__holder{
	position: fixed;
	bottom: 2rem;
	right: 1.5rem;
	
	display: flex;
	justify-content: center;
}

#fab__holder > a{
	margin: .35rem;
}

#fab__sumate {
	border-radius: 100px;
	font-size: 1.25rem;
	font-weight: 500;
	cursor: pointer;
	min-height: 50px;
	padding: 0 9px;


	border: none;
	background: var(--brand-darkgreen);
	color: white;

	display: flex;
	justify-content: center;
	align-items: center;

	-webkit-box-shadow: 0px 10px 15px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 7px 15px 5px rgba(0, 0, 0, 0.1);
}

#fab__sumateText{
	width: 0px;
	overflow: hidden;
	transition: .2s;
}

#fab__sumate:hover #fab__sumateText{
	width: 80px;
	margin: 0 .5rem;
	transition: .2s;
}

#fab__share{
	border-radius: 100px;
	font-size: 1.25rem;
	font-weight: 500;
	cursor: pointer;

	border: none;
	background: var(--brand-fuchsia);
	color: white;
	
	min-height: 50px;
	aspect-ratio: 1/1;
	display: flex;
	justify-content: center;
	align-items: center;

	-webkit-box-shadow: 0px 10px 15px 5px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 7px 15px 5px rgba(0, 0, 0, 0.1);
}

#fab__share > svg{
	margin-right: 5px;
}

@media only screen and (max-width: 800px) {
    #fab__holder {
		bottom: 1rem;
		right: 1rem;
    }
	#fab__sumateText{
		width: auto;
		margin: 0 .5rem;
	}
}