span[class^="icon-"], span[class*="icon-"] {
    font-size: 16px;
}
#social span[class^="icon-"], #social span[class*="icon-"] {
    font-size: 32px;
}
span.icon-star3 {
    font-size: 12px;
}
span.icon-link {
	font-size: 12px;
}
#social {
	margin-top: 35px;
}
#social a {
	color: #777;
	text-decoration: none;
}
#social a:hover {
	color: #0FA0CE;
}
a span.desc {
	margin: 0;
	padding: 0;
	vertical-align: 2px;
}
/* Larger than mobile */
@media (max-width: 549px) {
	#wideBtns {
		display: none;
	}
	.narrowBtn {
		display: block;
	}
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
	#wideBtns {
		display: block;
	}
	.narrowBtn {
		display: none;
	}
	
} 

#prompt {
	color: white;
	text-align: center;
	font-size: 14pt;
	background-color: #275470;
	border-radius: 4px;
	padding: 10px 24px;
}
.source {
	font-style: italic;
}
#footer {
	color: white;
	font-size: 10pt;
	background-color: #555;
	border-radius: 4px;
	padding: 10px 24px 0px 24px;
}
#footer a {
	color: white;
}
#dialogUnderlay {
	display: none;
	position: fixed;
	width: 100%;
	height: 100vh; /* http://stackoverflow.com/a/16837667 */
	background-color: #000;
	opacity: 0.35;
	z-index: 50;
}
#modalDialog {
	display: none;
	position: fixed;
	width: 250px;
	height: 100px;
	left: 50%;
	top: 50%;
	margin-left: -150px;
	margin-top: -50px;
	z-index: 100;
	border: 1px solid #333;
	border-radius: 3px;
	padding: 20px;
	background-color: white;
	box-shadow: 2px 2px 10px #222;
};