.socialcomponent {
	
	--socialcolor: var(--body-text);
	
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	
	text-align: center;
}
.socialcomponent.stack {
	display: inline-block;
}

.socialcomponent h1,
.socialcomponent h2 {
	margin-bottom: 0;
	margin-right: 2rem;
	padding-right: 2rem;
	border-right: 2px dotted var(--socialcolor);
}
.socialcomponent.stack h1,
.socialcomponent.stack h2 {
	margin-bottom: 2rem;
	border-bottom: 2px dotted var(--socialcolor);
	padding-bottom: 2rem;
	padding-right: 0;
	border-right: 0;
	margin-right: 0;
}

.socialcomponent nav {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
}
.socialcomponent .iconBtn {
	background-color: transparent;
	
	color: var(--socialcolor);
	
	width: 3rem;
	height: 3rem;
	border: 3px solid var(--socialcolor);
	border-radius: 1.5rem;
	
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	
	display: flex;
	display: -webkit-flex;
	align-items: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	justify-content: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	
	transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-moz-transition: all .3s linear;
	transition-property: border-color, color;
	-webkit-transition-property: border-color, color;
	-moz-transition-property: border-color, color;
}
.socialcomponent .iconBtn:hover {
	border-color: var(--focus);
	
	color: var(--focus);
}

.socialcomponent .iconBtn > i {
	font-size: 1.5rem;
}