@charset "UTF-8";
#footer-store {
	background-color: #002514;
	width: 100%;
	max-width: 920px;
	min-height: 25px;
	padding: 10px 0;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	}
#footer-store-quicklinks a {
	color: #CDDEC8;
	text-decoration: none;
}
#footer-store-quicklinks a:hover {
	color: #FFFFFF;
	text-decoration: underline;
}

/* this is what the footer elements have in common */
#footer-store-copyright,#footer-store-quicklinks {
	font-family: "Signika Negative","Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #5C7950;
	font-size: 12px;
	line-height: 24px;
	display: block;
	font-weight: 400;
	padding: 5px 10px;
	}


/* these two are how they differ */
#footer-store-copyright {
	flex: 0 0 auto;
	text-align: center;
}

#footer-store-quicklinks {
	flex: 1;
	text-align: right;
	padding-right: 10px;
}

/* Mobile footer adjustments */
@media screen and (max-width: 768px) {
	#footer-store {
		flex-direction: column;
		text-align: center;
		padding: 15px 5px;
	}
	
	#footer-store-copyright,
	#footer-store-quicklinks {
		width: 100%;
		text-align: center;
		padding: 5px;
	}
	
	#footer-store-quicklinks {
		padding-right: 5px;
	}
}
