.btn{
    width: 100%;
    border: none;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
}

.btn-primary{
  background: #fff200;
  color: #000 !important;
  border:2px solid #000;
}

.btn-primary:hover{
  background: #000;
  color: #fff !important;
  border:2px solid #000;
}

.btn-donation{
  font-size: 10px;
  background: #fff200;
  color: #000 !important;
  border:1px solid #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  padding: 10px;
}

.select{
    width: 99%;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

td, th {
  border: none;
  text-align: left;
  padding: 8px;
}

tr:nth-child(odd) {
  background-color: whitesmoke;
}

tr:nth-child(even) {
  background-color: #dddddd;
}

.overlay {
  opacity:0.4;
  filter: alpha(opacity = 0);
  top:0; bottom:0; left:0; right:0;
  display:none;
  background:gainsboro;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('../images/loader.gif') 50% 50% no-repeat rgb(249,249,249);
}

.my-error-class {
    color: #FF0000; /* red */
    border-color: #FF0000;
}