/* Social Bar Sticky ----------------------------------------------- */
.social-bar__inner {
	position: sticky;
	top: 0;
}

/* Social Media icons ----------------------------------------------- */
.sm-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.sm-wrapper .sm-list {
	display: flex;
	flex-direction: row-reverse;
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.sm-wrapper .sm-item {
	display: flex;
	width: 32px;
	height: 32px;
	margin: 0 4px;
}

.sm-wrapper .sm-link,
.sm-wrapper .sm-link:not(.button) {
	text-decoration: none;
	box-shadow: none;
	transition: color .2s ease;
	fill: #000000;
	border-radius: 3px;
}

.sm-wrapper .sm-link:hover, 
.sm-wrapper .sm-link:active, 
.sm-wrapper .sm-link:focus,
.sm-wrapper .sm-link:not(.button):hover {
	text-decoration: none;
	box-shadow: none;
	fill: #0d7ab8;
	outline: none;
}

.sm-wrapper .sm-link svg {
	width: 32px;
	height: 32px;
	transform: rotate(90deg);
}

@media only screen and (max-width: 1200px) {
	.sm-wrapper {
		align-items: center;
	}
	.social-bar__inner {
		position: relative;
		top: auto;
	}

	.sm-wrapper .sm-list {
		flex-direction: row;
	}
	
	.sm-wrapper .sm-link svg {
		transform: none;
	}
}