/* custom-stripe-styles.css */
.visible {
    display: block;
}
.invalid {
    border-color: red;
}

.donation-container {
    width: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}
.donation-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
	color: black;
}

.donation-label {
    display: flex;
    align-items: center;
    justify-content: center;
	color: black;
	flex-wrap: wrap;
    width: 40%;
    align-content: start;
}

.full-width{
	width:100%;
		display:flex;
	padding-bottom:10px;
}

.donation-header img {
    width: 20px;
    margin-right: 8px;
	
}
.donation-btns {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    
}
.donation-btn {
    margin: 5px;;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    background-color: #e6e6e6;
}
.active {
    background-color: #007bff;
    color: #fff;
}
select{
    text-align: right;
    width: 100%;
padding: 10px;

border-top: 1px solid #e6e6e6;
border-left: none;
border-bottom: 1px solid #e6e6e6;
border-right: 1px solid #e6e6e6;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
    }

input[type="checkbox"], button {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
}

.input-container {
    padding-top: 20px;
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}

.donation-input {
width: 100%;
padding: 10px;
border-top: 1px solid #e6e6e6;
border-left: 1px solid #e6e6e6;
border-bottom: 1px solid #e6e6e6;
border-right: none;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}

.donation-btns-container {
display: flex;
flex-wrap: wrap;
gap: 10px; /* space between buttons */
padding-bottom:20px;
}

.donation-btn {
flex: 1 1 calc(25% - 10px); /* Distribute available space equally among buttons; subtract the gap */
text-align: center;
}

.input-wrapper {

display: flex;
align-items: center;
width: 100%;
border-top: 1px solid #e6e6e6;
border-left: 1px solid #e6e6e6;
border-bottom: 1px solid #e6e6e6;
border-right: none;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}

.input-prefix {
margin-left: 10px;
}

.donation-input {
border: none;
	font-size: 20px;
    color: blue;
}

.donation-input:focus {
  outline: none;
  /* Add your custom styles if needed */
}

.no-outline{
	 outline: none;
}

.invalid {
color: #fa755a;
}

.name-email-wrapper {
	display: flex;
align-items: center;
width: 100%;
border-top: 1px solid #e6e6e6;
border-left: 1px solid #e6e6e6;
border-bottom: 1px solid #e6e6e6;
border-right: 1px solid #e6e6e6;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}

#submitPayment {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  background-color: #0056b3;  /* slightly darker */
	color: white;
}

/* Add elevation and shadow on hover */
#submitPayment:hover {
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  background-color: #0056b3;  /* slightly darker */
}

/* Depress button on click */
#submitPayment:active {
  box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.1);
  transform: translateY(2px);
}
#card-errors {
	flex-wrap: wrap;
    width: 100%;
    display: flex;
    color: orange;
    align-content: center;
    padding-bottom: 10px;
}

.superButton{
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 900;
    padding-left: 48px;
    padding-right: 48px;
    line-height: 1.2;
    letter-spacing: 2px;
    border-radius: 100px;
    transition-duration: 0.2s;
    transition-timing-function: ease;
    transition-property: all;
    text-align: center;
    box-shadow:  0px 10px 40px rgba(0,0,0,0.3);
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #3c3876;
    padding: 14px 22.4px;
}

.superButton:hover {
    background-color: white;
    color: #3c3876;
    transform: scale(1.05,1.05); 
     cursor: pointer;
}
  .footer-container {
            font-family: Arial, sans-serif;
	  		font-size: small;
	  color: grey;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px;
            border-top: 1px solid #ccc;
        }

        .footer-container a {
            text-decoration: none;
            color: grey;
            margin: 0 5px;
            transition: color 0.3s;
        }

        .footer-container a:hover {
            color: #0070c9;
        }

        .footer-container .separator {
            margin: 0 5px;
        }