/** Form Inputs **/
input{
	transition: .5s;
}

input:hover, select:hover, textarea:hover {
	box-shadow: 0 0 4px 2px #CEEDBE;
	transition: .5s;
}

.this_input_is_required{
	background-color: #fffab7;
	transition: .5s;
}

.this_input_is_required:hover{
	transition: .5s;
}


label{
	font-family: 'Cabin', sans-serif;
	font-size: 1.05em;
	text-align: justify;
	word-wrap: break-word;
	hypens: auto;
	margin: 0 0 10px 0;
}

input[type=text], select {
  width: 100%;
  padding: 12px 20px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  -webkit-appearance: none;
  -webkit-border-radius: none;
	transition: .5s;
}

input[type=button] {
  -webkit-appearance: none;
  -webkit-border-radius: none;
}

input[type=search], select {
  width: 100%;
  padding: 12px 20px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
}

input[type=email] {
  width: 100%;
  padding: 12px 20px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
}

.centerEmail{
	width: calc(100%) !important;
}


.orangeBackgroundInput{
	width: 80% !important;
}

@media screen and (max-width: 1000px){
	.orangeBackgroundInput{
		width: 100% !important;
	}
}

input[type=password] {
  width: 100%;
  padding: 12px 20px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
}

input[type=number] {
  width: 30%;
  min-width: 150px;
  padding: 12px 20px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
}

input[type=tel] {
  width: 100%;
  min-width: 150px;
  padding: 12px 20px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
}

input[type=date] {
  width: 30%;
  min-width: 150px;
  padding: 12px 20px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  -webkit-appearance: none;
  -webkit-border-radius: none;
}

@media screen and (max-width: 500px){
	input[type=number] {
		width:50%;
	}
	input[type=date] {
		width: 50%;
	}	
}

textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 5px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  transition: .5s;

}

input[type=file]{
	width: 100%;
	padding: 12px 20px;
	margin: 5px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	font-family: 'JetBrains Mono', monospace;
	font-size: 16px;
}

.input50{
	width: 50% !important;
}

.input100{
	width: 100% !important;
}

@media screen and (min-width: 701px){
	.twocolumninput-left{
		width: 96% !important;
		margin-left: 0% !important;
		margin-right: 4% !important;
	}

	.twocolumninput-right{
		width: 96% !important;
		margin-left: 4% !important;
		margin-right: 0% !important;
	}
}

/** Checkboxes **/

input[type=checkbox] {
    transform: scale(1.5);
	margin: 9px 30px 9px 25px;
}

input[type=radio] {
    transform: scale(1.5);
	margin: 9px 30px 9px 25px;
}

/* Customize the label (the container) */
.checkbox_container {
  position: relative;
  padding-left: 50px;
  margin-left: 20px;
  margin-bottom: 4px;
  margin-bottom: 8px;
  cursor: pointer;
}

/* Hide the browser's default checkbox */
.checkbox_container 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: #ddd;
}

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

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

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

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

/* Style the checkmark/indicator */
.checkbox_container .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);
}
/** BEGIN RADIO BUTTONS **/

/** Radio Buttons **/
.radio_container {
  position: relative;
  padding-left: 50px;
  margin-left: 20px;
  margin-top: 4px;
  margin-bottom: 8px;
  cursor: pointer;
}
/* Hide the browser's default radio button */
.radio_container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}


.radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ddd;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radio_container:hover input ~ .radio {
  background-color: #bbb;
}

/* When the radio button is checked, add a blue background */
.radio_container input:checked ~ .radio {
  background-color: #cc6600;
}

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

/* Show the indicator (dot/circle) when checked */
.radio_container input:checked ~ .radio:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radio_container .radio:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/** END RADIO BUTTONS **/

.monthlyLabel{
	font-family: 'Cabin', sans-serif !important;
	font-size: 1.35em !important;
}

.addedDonation{
	width: 200px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
}
