.app-donate2017 {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;

	height: auto;

	background: #fff;
	box-shadow: 0 0 20px #999;

	z-index: 99;

}

.app-donate2017-wrapper {
	max-width: 70em;
	box-sizing: border-box;
	margin: 0 auto;
	position: relative;
	height: 0em;
	overflow: hidden;
	-webkit-transition: height 0.25s;
	transition: height 0.25s;

	font-family: Cambria, Times, "Times New Roman", Serif;

	display: flex;
	flex-direction: row;

	text-align: center;
	justify-content: center;
}

.app-donate2017 {
	width: 100%;
}

.app-donate2017 .title, .app-donate2017 .small, .app-donate2017 .description {
	display: block;
}

.app-donate2017 .title {
	font-size: 1.8em;
}

.app-donate2017 .small {
	font-size: 0.7em;
	margin-bottom: 1em;
}

.app-donate2017 .description {
	margin-top: 1em;
	margin-bottom: 1em;
}

.app-donate2017 .button a {
	padding: 0.4em 0.6em;
	border: 1px solid black;
	display: inline-block;
	margin: 0 auto;
    background: #77bb41;
	color: black;
	text-decoration: none;
}

.app-donate2017 .button a:hover, .app-donate2017 .button a:focus {
	background: #ffffe0;
}

.app-donate2017--shown .app-donate2017-wrapper {
	height: 12em;
	overflow: visible;
}

/* hide the form */
#app-donate2017-form {
	display: none;
}

/* position close button to top right, but hide it at default */
#app-donate2017-close {
	color: #fff;
	background: black;
	position: absolute;
	right: 1em;
	top: 0.8em;
	height: 1.85em;
	line-height: 1.85em;
	font-size: 0.9em;
	width: 2em;
	text-align: center;
	text-decoration: none;
	font-weight: 400;
	border-radius: 5px;

	display: none;
}

/* show the close button if the banner is shown too */
.app-donate2017--shown #app-donate2017-close {
	display: block;
}

/* help us image */
.app-donate2017-helpus img {
	display: block;
	height: 5em;
}

/* center content vertically where needed */
.app-donate2017-donate, .app-donate2017-copy, .app-donate2017-button {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

@media (min-width: 500px) {

	/* increase font-size */
	.app-donate2017 .title {
		font-size: 2.8em;
	}
}

@media (min-width: 700px) {

	/* increase font-size */
	.app-donate2017 .title {
		font-size: 3.4em;
	}
}

@media (min-width: 800px) {

	/* increase font-size */
	.app-donate2017 .title {
		font-size: 4em;
	}

	.app-donate2017 .small {
		font-size: 1em;
	}
}

/* @media (min-width: 1200px) {

	 /* put "i want to help" next to text content * 
	.app-donate2017-donate .app-donate2017-button {
		position: absolute;
		right: 0;
		top: 50%;
		transform: translate3d(100%,-50%,0);
	}

}
*/