body {
  justify-content: center;
  align-items: center;
  background: #242d60;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto',
  'Helvetica Neue', 'Ubuntu', sans-serif;
  height: 100vh;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
section {
  margin: 2em;
}
.product-panel {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 1.2em;
    min-width: 53%;
    min-height: 684px;
}
@media screen and (min-width:991px){
 .product-panel {
     max-width: 70%;
 }
}

tr td:nth-child(1){
     width:180px;
     font-weight: 700;
}
label{
    font-size: 0.9em;
    font-weight: 600;
}

.card {
    padding: 0.8em;
    background-color: #C0C0C0;
}

.card h5 {
    color: #000;
}

.card.amount-card {
    background-color: #fffcd9!important;
}
.card.amount-card .gift-aid img {
    max-height: 40px;
    margin-bottom: 0.5em;
}
.card.amount-card .gift-aid input[type=checkbox]{
    width: 25px;
    height: 25px;
}
.card.amount-card .gift-aid label {
   margin-left: 20px;
}

.card.donor-card {
    background-color: #abbfc7!important;
}
.card.campaign-card {
    background-color: #c1f1ab!important;
}

.card.declaration-card {
    background-color: transparent;
    text-align: justify;
}

.card.declaration-card input[type=checkbox] {
    width: 25px;
    height: 25px;
}
.card.declaration-card label {
    margin-left: 20px;
}

.footnote-card {
    background-color: #ffffff!important;
    border: none;
    font-size: 0.6rem;
    text-align: center;
}
.footnote-card h6 {
  font-size: 0.9rem;
}

small em {
    color: red;
}

button {

  background: #556cd6;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
}
button:hover {
  opacity: 0.8;
}

@media screen and (min-width:768px){
   body {
       display: flex;
   }

   .product-panel img {
    max-width: 280px;
}

}