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;
    width: 100%;

}
@media screen and (min-width:768px){
  .product-panel {
     max-width: 60%;
      }
}

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.declaration-card  {
    background-color: transparent;
    text-align: justify;
}

.card.declaration-card label {
    margin-left: 20px;
}

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

.card.amount-card {
    background-color: #fffcd9 !important;
}

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: 250px;
}

}