:root {
	--backgroundImageURL: url(/images/snowflake.png);
	--primary-color: #7d0319;
	--text-color: color: rgb(118, 126, 132);
	--font-family: font-family: 'Ubuntu', sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media screen and (min-width: 421px) {
	/* Desktop Version */
	html {
		font-size: 16px;
		overflow-x: hidden;
		background-color: var(--primary-color);
		/*background-blend-mode: lighten;*/
	}
	
	.requestPage {
		position: relative;
		margin: auto;
		margin-top: 20px;
		max-width: 60%;
		min-width: 700px;
		background-color: white;
		border-radius: 15px;
		padding: 2px 5px 5px 5px;
		border-style: solid;
		text-align: center;
		min-height: 800px;
		box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
		height: 100%;
		margin-left: 290px;
	}
	
	.sideMenu {
		margin-top: 20px;
		max-width: 280px;
		position: absolute;
		width: 100%;
	}
	
	.menuItem {
		color: white;
		font-size: 1.5em;
		margin: 10px;
		cursor: pointer;
		background-color: #4b020f;
		width: 100%;
		border-radius: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
		margin-left: 5px;
		padding-left: 5px;
	}
	
	.menuItemSingle {
		color: white;
		font-size: 1.5em;
		margin: 10px;
		cursor: pointer;
		background-color: #4b020f;
		width: 100%;
		border-radius: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
		margin-left: 5px;
		padding-left: 5px;
	}
	
	.menuSubItemOpen {
		color: white;
		font-size: 1.5em;
		margin: 10px;
		cursor: pointer;
		background-color: #ae0424;
		width: 95%;
		border-radius: 10px;
		padding-top: 5px;
		padding-bottom: 5px;
		margin-left: 17px;
		padding-left: 5px;
	}
	
	.menuSubItem {
		display: none;
	}
	
	.menuSelected {
		border-style: solid;
	}
	
	.requestStatus {
		max-width: 40%;
		display: inline-block;
		position: absolute;
		top: 75px;
		top: 4%;
		min-width: 400px;
		text-align: center;
		border-radius: 6px;
		box-shadow: 0 0.3125rem 1rem -0.1875rem rgba(0,0,0);
		padding-bottom: 15px;
	}
	
	.requestTile {
		display: block;
		max-width: 400px;
	}
	
	.requestImage {
		width: 300px;
		max-width: 100%;
		box-shadow: 0px 0px 10px 1px lightgrey;
	}

	
	.requestDescription {
		text-align: left;
		padding: 10px;
		max-width: 400px;
		margin: auto;
	}
	
	.mobileDonateBtn {
		display: none;
	}
	
	.donateBtn {
		color: white;
		background-color: var(--primary-color);
		text-align: center;
		padding: 5px;
		border-radius: 7px;
		cursor: pointer;
		user-select: none;
		max-width: 300px;
		margin: auto;
		margin-bottom: 10px;
		margin-top: 10px;
		background: -webkit-linear-gradient(top, #08ae30 0%, #028f24 100%);
		box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
	}
	
	.logoutBtn {
		margin: 5px;
		background-color: var(--primary-color);
		position: absolute;
		color: white;
		padding: 5px;
		border-radius: 5px;
		top: 0px;
		right: 5px;
	}
	
	.requestImageThumbnails {
		margin-top: 10px;
	}
	
	.imageHolder {
		width: 75%;
		margin: auto;
	}
	
/* End Desktop Version */
}

@media screen and (max-width: 420px) {
	/* Mobile Version*/
	html {
		font-size: 16px;
		overflow-x: hidden;
	}
	.requestPage {
		position: relative;
		margin: auto;
		max-width: 100%;
		background-color: white;
		border-radius: 15px;
		padding: 2px 5px 5px 5px;
		text-align: center;
	}
	
	.requestStatus {
		display: block;
		border-top-style: solid;
		padding-top: 10px;
	}
	
	.requestTile {
		display: inline-block;
	}
	
	.requestImage {
		width: 400px;
		max-width: 100%;
		box-shadow: 0px 0px 10px 1px lightgrey;
	}
	
	.requestDescription {
		text-align: left;
		padding: 10px;
	}
	
	.mobileDonateBtn {
		overflow-x: hidden;
		color: white;
		position: fixed;
		bottom: 0px;
		background-color: var(--primary-color);
		text-align: center;
		padding: 5px;
		cursor: pointer;
		width: 97.5%;
		user-select: none;
		background: -webkit-linear-gradient(top, #08ae30 0%, #028f24 100%);
		box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
	}
	
	.donateBtn {
		color: white;
		background: -webkit-linear-gradient(top, #08ae30 0%, #028f24 100%);
		box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
		text-align: center;
		padding: 5px;
		border-radius: 7px;
		margin: 5px;
		cursor: pointer;
		user-select: none;
	}
	
	.logoutBtn {
		margin: 5px;
		background-color: var(--primary-color);
		position: absolute;
		color: white;
		padding: 5px;
		border-radius: 5px;
		top: 0px;
		right: 5px;
	}
	
	.requestImageThumbnails {
		margin-top: 10px;
	}
	
	.imageHolder {
		width: 100%;
		margin: auto;
	}
	
/* End Mobile Version */
}

body {
	color: rgb(118, 126, 132);
	font-family: 'Ubuntu', sans-serif;
	margin-left: 0px;
	margin-top: 0px;
	font-size: 16px;
	margin-right: 0px;
	overflow-x: hidden;
}

.shareBtn {
	background-color: lightblue;
    text-align: center;
    padding: 5px;
    border-radius: 7px;
    margin: 5px;
	cursor: pointer;
	user-select: none;
}

.hideHref {
	text-decoration: none;
	color: var(--text-color);
}

.header {
	padding: 10px;
	background-color: var(--primary-color);
	color: #FFF;
}

.header h2 {
	margin-top: 0px;
	margin-bottom: 0px;
}

.numberInput {
	display: inline-block;
	font-size: 60px;
    max-width: 200px;
	border-style: none;
	-moz-appearance: textfield;
	outline: none;
	text-align: right;
	background-color: #c2efc2;
	color: #1f7a1f;
}

.zeros {
	display: inline-block;
	font-size: 60px;
	color: #1f7a1f;
}

.numberInputHolder {
	background-color: #c2efc2;
	color: #1f7a1f;
}

.formLabel {
	text-align: left;
	font-size: 20px;
	color: gray;
	position: absolute;
	left: 5px;
}

.formTextInput {
	font-size: 25px;
	margin: 5px;
	height: 30px;
	width: 40%;
	border-radius: 9px;
	padding: 3px;
	margin-top: 10px;
}

.emailInput {
	font-size: 20px;
	margin: 5px;
	height: 30px;
	width: 80%;
	border-radius: 9px;
	margin-top: 10px;
}

.inputBtn {
	color: white;
	background-color: var(--primary-color);
    text-align: center;
    padding: 5px;
    border-radius: 7px;
    margin: 5px;
	cursor: pointer;
	user-select: none;
	-webkit-appearance: initial;
    border-style: none;
	font-size: 25px;
	width: 250px;
	background: -webkit-linear-gradient(top, #08ae30 0%, #028f24 100%);
	box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.3);
}


/* Customize the label (the container) */
.CBcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-align: left;
}

/* Hide the browser's default checkbox */
.CBcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.CBcontainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.CBcontainer input:checked ~ .checkmark {
  background-color: #000;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.CBcontainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.CBcontainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* End checkmark stuff */

.flashMessage {
    opacity: 0;
    animation: fade 4s linear;
	background-color: #000;
	color: #fff;
	padding: 10px;
	border-radius: 10px;
	margin: auto auto;
	width: fit-content;
	text-align: center;
	overflow-x: auto;
	max-height: 60%;
	z-index: 200;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: 18px;
}


@keyframes fade {
  0%,100% { opacity: 0}
  50% { opacity: 1;}
}

.totalSum {
	line-height: 2;
    background-color: #c2efc2;
    color: #1f7a1f;
	font-weight: 700;
}

.textComment {
	width: 90%;
    height: 100px;
    font-size: 18px;
}

#svg circle {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 3s linear;
  stroke: #666;
  stroke-width: 1em;
}
#svg #bar {
  stroke: #00ff00;
}
#cont {
  display: block;
  height: 200px;
  width: 200px;
  margin: 2em auto;
  box-shadow: 0 0 1em black;
  border-radius: 100%;
  position: relative;
  
}
#cont:after {
  position: absolute;
  display: block;
  height: 160px;
  width: 160px;
  left: 50%;
  top: 50%;
  box-shadow: inset 0 0 1em black;
  content: attr(data-pct)"%";
  margin-top: -80px;
  margin-left: -80px;
  border-radius: 100%;
  line-height: 160px;
  font-size: 2em;
  text-shadow: 0 0 0.5em black;
}

.statusVerbiage {
	margin-top: 10px;
	font-weight: 800;
    font-size: 18px;
}

.donorListItem {
	margin: 5px 10px 5px 10px;
	display: block;
}

.donationItemName {
	margin: 5px;
	font-size: 17px;
	font-weight: 500;
}

.donationItemNM {
	margin: 5px;
	font-size: 17px;
	font-weight: 700;
}

.donationItemAmount {
	margin: 5px;
	font-size: 17px;
	font-weight: 500;
}

.donationItemComment {
	margin: 5px;
}

.commentsHeader {
	font-size: 20px;
	font-weight: 100;
	text-align: left;
	margin-left: 10px;
	margin-top: 10px;
}

.form {
	text-align: left;
}


.bammFooter {
	background-color: var(--primary-color);
	color: white;
	padding-bottom: 10px;
}

.bammSocialFooter {
	text-align: right;
	margin-right: 10px;
	font-size: 20px;
	padding: 5px;
}

.bammSubFooter {
	margin-left: 10px;
	margin-right: 10px;
	background-color: var(--primary-color);
	color: white;
	padding: 10px;
}

.footerHref {
	text-decoration: none;
	color: white;
	margin-left: 20px;
	margin-right: 20px;
	font-size: 15px;
}

.footerHref:hover {
	filter: brightness(10%);
}

.requestListItem {
	padding: 5px;
}

.adminRequestItem {
	text-align: center;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
	position: relative;
}

.adminRequestImage {
	max-width: 150px;
	display: inline-block;
	border-style: solid;
    border-radius: 5px;
    border-color: lightgray;
    padding: 5px;
    margin-top: 5px;
}

.adminRequestSummary {
	display: inline-block;
    vertical-align: top;
    margin-top: 30px;
    text-align: left;
    line-height: 1.5;
	margin-left: 25px;
}

.btn {
	cursor: pointer;
}

.btn:hover {
	color: var(--primary-color);
}

.popMod {
	background-color: var(--primary-color);
	padding: 10px;
	border-radius: 10px;
	margin: auto;
	top: 14%;
	max-width: 400px;
	border-color: #F25826;
	border-style: solid;
	width: 80%;
	text-align: center;
	overflow-x: auto;
	max-height: 60%;
	position: fixed;
	top: 21%;
    left: 50%;
    transform: translate(-50%, -50%);
}
	
.popMod input, textarea {
	border-radius: 10px;
	padding: 10px;
	outline: none;
	border-color: lightgray;
	margin: auto;
	display: inline-block;
	margin-bottom: 10px;
	width: 75%;
}

.closeBtn {
	position: absolute; 
	top: 10px; 
	right: 10px;
	cursor: pointer;
	font-size: 20px;
}

.closeBtn:hover {
	color: red;
}

.viewInput {
	font-size: 19px;
    width: 75%;
    background-color: white;
    border: none;
    color: rgb(118, 126, 132);
    font-weight: 600;
    font-family: var(--font-family);
    text-align: center;
}

.viewInput:hover {
	border-style: inset;
}

.editInput {
	font-family: var(--font-family);
	font-size: 18px;
	color: rgb(118, 126, 132);
	font-weight: 600;
}

.hidden {
	display: none;
}

.requestHeader {
    text-align: left;
    font-size: 20px;
    font-weight: bolder;
    margin-left: 10px;
	margin-right: 10px;
    background-color: rgb(118, 126, 132);;
    padding: 5px;
    color: white;
	margin-bottom: 10px;
}

.active {
	-webkit-animation: neon1 1.5s ease-in-out infinite alternate;
	-moz-animation: neon1 1.5s ease-in-out infinite alternate;
	animation: neon1 1.5s ease-in-out infinite alternate;
}

.stopped {
	text-shadow: 3px 3px 26px red;
}

@-webkit-keyframes neon1 {
  from {
    text-shadow: 3px 3px 26px rgba(9, 255, 30, 1);
  }
  to {
   text-shadow: 3px 3px 6px rgba(9, 255, 30, 1);
  }
}

.addImageText {
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	font-size: 25px;
}