@charset "utf-8"; /* MightyLopers, Bastian Bensch */

/* Icon-Button */
.icon-btn,
.icon-btn:link,
.icon-btn:visited {
	display: block;
	position: relative;
	width: 48px;
	height: 48px;
	padding: 8px;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	color: rgba(177,177,177,1);
	text-decoration: none;

	transition: color .4s ease;
}

.icon-btn:hover,
.icon-btn:focus,
.icon-btn:active,
.icon-btn.active {
	color: rgba(122,122,122,1);
}

.icon-btn::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* Floating-Button */
a.floating-btn,
a.floating-btn:link,
a.floating-btn:visited {
	display: block;
	width: 48px;
	height: 48px;
	padding: 8px;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
	background-color: rgb(21,171,99);
	border-radius: 50px;
	text-decoration: none;

	transition: color .4s ease;
}

a.floating-btn:hover,
a.floating-btn:focus,
a.floating-btn:active,
a.floating-btn.active {
	color: rgb(255,255,255);
}

a.floating-btn::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* Dot-Button */
a.dot-btn,
a.dot-btn:link,
a.dot-btn:visited {
	display: block;
	width: 48px;
	height: 48px;
	padding: 8px;
	font-size: 24px;
	line-height: 24px;
	text-align: center;
	color: rgba(177,177,177,1);
	text-decoration: none;

	background-color: rgba(82,82,82,1);
	border-radius: 50%;

	transition: color .4s ease, background-color .4s ease;
}

a.dot-btn:hover,
a.dot-btn:focus,
a.dot-btn:active,
a.dot-btn.active {
	color: rgba(255,255,255,1);
	background-color: rgb(94,118,198);
}

a.dot-btn::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

a.icon-btn.xs,
a.dot-btn.xs {
	width: 24px;
	height: 24px;
	padding: 4px;
	font-size: 12px;
	line-height: 14px;
}

a.icon-btn.s,
a.dot-btn.s {
	width: 40px;
	height: 40px;
	padding: 4px;
	font-size: 16px;
	line-height: 28px;
}
