/* for donation page */
.donation-container .container{
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 400px;
  width: 100%;
  background-image: none;
}

input[type="number"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}
button {
  background-color: #28a745;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}
/* button:hover {
  background-color: #218838;
} */
#qrcode {
  margin: 10px;
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  max-width: 200px;
}


.donate-button{
  background-color: rgb(255, 111, 15);
  border-color: rgb(255, 111, 15);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

#gpay-popup{
  background-color: rgb(255, 111, 15);
  border-color: rgb(255, 111, 15);
}

.bg-secondary{
  color: #FF6F0F !important;
  background-color: #FFF0E6 !important;
}
.donation-container-1{
  background-color: transparent;
}


.bold-display-6 {
  font-weight: bold;
}


.btn.btn-outline-primary:hover {
    color: #000000 !important;
}

.btn.btn-primary:hover {
    color: var(--primary);
    background: rgba(255, 111, 15, 0.2);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


.level-hover-label {
  color: #777e85;
}


.form-control:focus {
  /*  border-color: #ff0000;Replace with your desired color */
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25); /* Optional: Adjust the focus shadow */
}


.note{
  margin-left: 10%;
}

.donation-formatted{
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1.5rem;
  padding: 10px;
  font-weight: 400;
  /* background-color: #f9f9f9; */
  border-left: 4px solid #FF6F0F;
  background: linear-gradient(90deg, rgba(255, 118, 26, 0.281), #ffffff);
        /* background-size: 200% 200%;
        animation: gradientAnimation 5s ease infinite; */
}

/* @keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} */