/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
figure.alignright {
	clear: right !important;
}

figure.alignleft {
	clear: left !important;
}

/* Dropshadow for publication covers. Adapted from .wsu-dropshadow-low */
.pubcover img, img.pubcover {
	box-shadow: 0 3.5px 7px rgba(0,0,0,0.2), 0 5px 3.5px -3.5px rgba(0,0,0,0.4);
}

/* Create nested generic containers. Outer light gray background. Inner no padding, no margin. Inner text padding xsmall/small. */
.fundraising-bar {
	border-radius: 2rem;
	padding: .25em;
	border: 2px solid white;
	overflow: hidden;
}

.fundraising-bar .fundraising-progress {
	color: #fff;
	text-shadow: 1px 1px 2px rgba(8,10,12,0.8);
	background-color: #A60F2D;
	background: linear-gradient(0deg,#A60F2D,#CA1237);
	width: calc((var(--fundraising-progress) / var(--fundraising-goal)) *100%);
}

.fundraising-bar .fundraising-progress.plant-growth {
	width: calc((5 / 17) * 100%);
/* Calculate percentage of goal reached */
}

address.wsu-meta-byline {
	display: none;
}