/**
 * -------------------------------------------------------------------------
 * FanBridge
 * -------------------------------------------------------------------------
 * Main CSS for General Styles across site
 */

/**
 * Font colors
 */
.font-green {
	color: #7dc142;
}

/**
 * Buttons
 */
input.button, a.button, .button {
	border: none;
	border-radius: 3px;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-family: 'HelveticaNeueLTStdMedRegular', helvetica, sans-serif;
	font-size: 18px;
	text-decoration: none;
	margin: 10px;
	padding: 14px 18px;
	-webkit-transition: background-color .6s linear;
	transition: background-color .6s linear;
	-moz-transition: background-color .6s linear;
}
.button img{margin-right: 5px;}

.button.primary { background: #7dc142; color: #fff; }
.button.primary:hover { background: #23C9E2; } 

.button.secondary { background: #414042; color: #fff; }
.button.secondary:hover { background: #727272;} 

.button.tertiary { background: #df584e; }
.button.tertiary:hover { color: #fff; background: #dc7670; }

.button.white { background: #fff; color: #fff; border: 1px solid #ccc; padding: 13px 17px; }
.button.white.small { padding: 7px 14px; }
.button.white:hover { color: #fff; background: #cdcdcd; }

.button.outlined { background: none; }

.button:hover {
	-webkit-transition: background-color .1s linear; 
	transition: background-color .1s linear; 
	-moz-transition: background-color .1s linear;
}

a.button.small, .button.small {
	padding: 8px 15px;
	font-size: 12px;
}
a.button.tiny, .button.tiny {
	padding: 5px 10px;
	font-size: 12px;
}
