@media (max-width: 768px) {
	.icon-bar {
		display: none;
	}
}
@media (min-width: 768px) {
	.icon-bar {
		position: fixed;
		bottom: 15%;
		right: 0;
		z-index: 9999;
		/*
		-webkit-transform: translateY(-66%);
		-ms-transform: translateY(-66%);
		transform: translateY(-66%);
		*/
	}

	/* Style the icon bar links */
	.icon-bar a {
		display: block;
		text-align: center;
		padding: 16px;
		transition: all 0.3s ease;
		color: #f5d431;
		font-size: 20px;
	}

	/* Style the social media icons with color, if you want */
	.icon-bar a:hover {
		background-color: #060553;
	}

}