.hidden{
	display: none !important;
}
.formbuilderform{
	 width: 50%;
	 margin: 2em auto;
}
.formbuilderform form{
	 display: block;
	 width: 80%;
	 margin: 0 auto;
	 
}

.formbuilderform input[type='text'], .formbuilderform input[type='date'], .formbuilderform select{
    font-size: 1.6em;
    background: #ebedec;
    padding: 0.5em;
    width: calc(100% - 2em);
    margin: .5em;
    border: none;
    border-radius: 1em;
}
.formbuilderform input[type='text']::placeholder, .formbuilderform input[type='date'], .formbuilderform select{
	color: #9d9f9e;
}

.formbuilderform input[type='date']{
	width: 60%;
}
.formbuilderform label{
	width: 30%;
	font-size: 1.6em;
	margin-left: 5%;
}

.AmountChooserBox{
	width: calc(100% - 2em);
	padding: 1em;
	text-align: center;
}

.SummChooser{
	font-size: 2em;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
	width: 100%;
	padding: 1em 0;
}

.SummChooserBox{
	border: 1px solid #ccc;
	border-radius: .5em;
	box-shadow: 0 0 0.4em #eee;
	padding: 0.5em 1em;
	cursor: pointer;
}

.SummChooserBox:hover{
	transition: 0.5s all;
	background: #f22a1d;
	color: white;
}

.AmountEntererBox{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin: 0 0 3em 0;
}
.AmountEntererBox .fullWidth{
	flex-basis: 100%;
	margin: 1em 0;
	text-align: center;
}


.SummChooserBox.active {
    background-color: #f22a1d;
    color: white;
}

.AmountEntererBox  .InputSummSubmit{
	flex-basis: 100%;
	text-align: center;
	font-size: 2em;
}
.DonationFormSubmittionBox .InputBox{
    border: 1px solid #ccc;
    border-radius: .5em;
    box-shadow: 0 0 0.4em #eee;
    padding: 0.5em 1em;
    cursor: pointer;
    background-color: #f22a1d;
    color: white;
	font-size: 2em;
}
.DonationFormSubmittionBox{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 2em 0;
}