/* CONTEST CSS */

.fca_cc_contest {
	text-align: center;
}

.fca_cc_contest img[src=''] {
	display: none !important;
}

.fca_cc_contest h2.fca_cc_title {
	font-size: 32px;
	font-weight: normal;
	margin-top: 23px;
	margin-bottom: 20px;

}

.fca_cc_contest div.fca_cc_countdown {
	font-size: 24px;
	margin-top: 0;
	margin-bottom: 10px;
	color: #5b5b5b;
}

.fca_cc_contest div.fca_cc_countdown span.dashicons-clock {
	font-size: 26px;
	position: relative;
	top: 9px;
	margin-right: 7px;
	color: #5b5b5b;
}

.fca_cc_contest div.fca_cc_countdown span.fca_cc_time_units {
	font-size: 16px;
}

.fca_cc_contest p.fca_cc_description {
	font-size: 16px;
	margin-top: 0;
	margin-bottom: 15px;
	
}

.fca_cc_contest p.fca_cc_contest_ended {
	font-size: 20px;
	margin-top: 20px;
	
}

.fca_cc_contest img.fca_cc_description_img {
	display: block;
	width: 100%;
	max-width: 250px;
	margin: 0 auto;
}

.fca_cc_contest button.fca_cc_button {
	color: #FFF;
	background-color: #58afa2;
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	font-weight: bold;
	min-height: 50px;
	border-radius: 2px;
	box-shadow: 0 2px 0 0 #3c7d73;
	border: none;
	
}

.fca_cc_contest button.fca_cc_button:hover {
	background-color: #3c7d73;
}


.fca_cc_contest_entry button.fca_cc_button {
	width: 100%;	
}


.fca_cc_contest_entry input.fca_cc_optin_input {
	background-color: white;
	border: 1px solid #ccc;
	border-radius: 5px;
	height: 37px;
	-webkit-transition: All 0.5s ease-in-out;
	-moz-transition: All 0.5s ease-in-out;
	-o-transition: All 0.5s ease-in-out;
	-ms-transition: All 0.5s ease-in-out;
	transition: All 0.5s ease-in-out;
}

@keyframes pulse {
	from {
		-webkit-transform: none; 
		-moz-transform: none; 
		-o-transform: none;
		-ms-transform: none; 
		transform: none; 
	}
	50% {
		-webkit-transform: scale(1.1); 
		-moz-transform: scale(1.1); 
		-o-transform: scale(1.1); 
		-ms-transform: scale(1.1); 
		transform: scale(1.1); 
	}
	to {
		-webkit-transform: none; 
		-moz-transform: none; 
		-o-transform: none; 
		-ms-transform: none; 
		transform: none; 
	}
}

.fca_cc_contest_entry input.fca_cc_optin_input.fca_cc_invalid {
	border: 1px solid #e74c3c;
	-webkit-animation: pulse .5s;
	-moz-animation: pulse .5s;
	-o-animation: pulse .5s;
	-ms-animation: pulse .5s;
	animation: pulse .5s;
	
}

.fca_cc_contest_entry a.fca_cc_terms {
	font-size: 16px;
	font-style: italic;	
}

.fca_cc_contest_results p.fca_cc_entry_text {
	text-transform: uppercase;
	margin: 20px 0 0 0;
	font-size: 20px;
}

/* A HIDDEN SELECTOR TO TELL US IF MEDIA QUERIES ARE ACTIVE */
div.fca_cc_contest span.fca_cc_mobile_check {
	display: none;
}

@media (max-width: 600px) {
	div.fca_cc_contest span.fca_cc_mobile_check {
		display: inline;
	}	
}