/* Donate button styles */
.nav--top #nav__donate {	
	top: 36px;
}

#nav__donate {
	display: block; 
	position: absolute; 	 
	left: 120px; 
	top: 22px;
	width: 111px; 
	height: 38px; 
	background-image: url('../img/general/donate.svg');
	transition: top 0.4s;
	}

@media only screen and (max-width: 1200px) {
	#nav__donate {
		left: 96px;
	}
}

@media only screen and (max-width: 760px) {
	#nav__donate {
		left: 80px;
	}
}

@media only screen and (max-width: 400px) {
	#nav__donate {
		width: 30px;
		height: 35px;
		left: 80px;
		top: 23px;
		background-image: url('../img/general/donate_vertical.svg');
		background-size: contain;
		background-repeat: no-repeat;
		transition: top 0.4s;
	}

	.nav--top #nav__donate {	
		top: 36px;
	}	
}