h3 {
	display:flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	border-bottom: 1px solid #ddd;
	margin-top: 15px;
	margin-bottom: 15px;
	font-size: 18px;
    }

h4 {
	display:flex;
  	text-align: left;
	justify-content: space-between;
	margin-top: 25px;
	cursor: pointer;
	border-bottom: 1px solid #ddd;
	padding-bottom: 6px;
	font-size: 14px;
    }

@media (max-width: 480px) {
  h4 {
    font-size: 12px;
  }
}

input {
	width: 100%;
	font-size: 14px;
	border-radius: 4px;
    border: 1px solid #ccc;
	padding-left: 15px; 
	margin-top: 5px;
}


label {
	font-size: 13px;
	font-weight: bold;
	text-align: left;
	display: block;
	margin-top: 14px;
	width:200px
}

.vbg-container {
	display: flex;
	justify-content: center; 
    background-color: #f4f4f9;
    border-radius: 8px;
    text-align: center;
    padding: 20px;
	padding-bottom: 40px;
	margin: 0 auto;
	border: 1px solid black;
	max-width: 540px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.vbg-title {
    color: #333;
    font-family: sans-serif;
}

.vbg-text {
    color: #666;
    font-style: italic;
}

.vbg-amount-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 12px 0;
}

.vbg-amount-row input {
	width: 110px;
	text-align: right;
}

@media (max-width: 480px) {
.vbg-amount-row input {
	width: 80px;
  }
}

.vbg-button {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 10px;
    border-radius: 4px;
    cursor: pointer;
}

.vbg-button:hover {
    background-color: #F5F5F5;
}

.vbg-notes {
	font-size: 12px;
	text-align: left;
	color: Grey;
	margin-bottom: 20px;
}
.vbg-notes-space {
	margin-top: 8px;
	margin-left: 25px;
}

.vbg-notes1 {
	font-size: 16px;
	text-align: center;
	color: Grey;
  	margin-top: 20px;
}

.vbg-total-heading {
	font-size: 18px;
	font-weight: bold;
	text-align: left;
	margin-top: 40px;
}

.vbg-total-give {
	font-size: 35px;
	text-align: left;
}
	
.vbg-total {
	font-size: 22px;
	text-align: right;
	margin-top: 20px;
	margin-bottom: 20px;
}

.hidden {
  display: none;
}

button.submit {
	width: 100%;
	background: #5aa0f2;
	color: white;
	border: none;
	padding: 14px;
	font-size: 16px;
	border-radius: 4px;
	margin-top: 20px;
	cursor: pointer;
	letter-spacing: 1.5px;
}
	
button.submit:disabled {
	background: #808080;
	cursor: not-allowed;
}	

#card-element {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-top: 10px;
}

.vbg-card {
}

.vbg-card-element {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
	margin-top: 10px;
}
	
.vbg-large-button {
    background: none;
    padding: 0;
    cursor: pointer;
    border-radius: 8px; 
}

.vbg-large-button img {
	width: 100% !important;
	height: auto !important;
	cursor: pointer;
	border: 2px solid #ccc;
	border-radius: 8px;
}

.vbg-large-button.vbg-large-button-active img {
	border: 2px solid #0099ff;
}


.vbg-button-row {
	display: flex;
	justify-content: center;
	background: none;
	gap: 20px;          		/* space between buttons */
	margin: 40px 0 10px;
}

#pledge-section {
  margin-top: 50px;
}

#give-section {
  margin-top: 50px;
}

#contact-section {
  margin-top: 30px;		
}

#payment-section {
  margin-top: 30px;		
}

#submit-section {
  margin-top: 30px;		
}


.vbg-success {
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* Heading / strong text */
.vbg-success h3 {
	text-align: center;
    color: white;
    margin-top: 0;
    font-weight: 600;
}

/* Paragraph spacing */
.vbg-success p {
    margin: 8px 0 0;
    color: white;
}

/* SUCCESSFULLY PROCESSED message */
.vbg-success-msg {
	font-family: 'Roboto', sans-serif;
	max-width: 400px;
	width: 100%;
	text-align: center;
    background-color: #acdad8;
  	border: 1px solid #9ac4c2;
    border-radius: 6px;
    padding: 18px 30px 25px;
    margin: 60px 10px 10px;;
    font-size: 15px;
    line-height: 1.5;
}

/* Paragraph spacing */
.vbg-success-msg p {
    margin: 8px 0 0;
    color: #445756;
}

/* Message Heading */
.vbg-success-msg-tle {
	font-size: 16px;
	text-align: center;
    color: white;
    padding: 12px 0 10px;
    font-weight: 600;
}

/* Hide submit button while success message is shown */
#vbg-form.vbg-success-active #submit-section {
  display: none !important;
}