html, body {
  padding: 0;
  margin: 0;
}

body {
  height: 100vh;
  width: 100vw;
  font-family: 'Open Sans', sans-serif;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.home {
  background: #9193ff;
  background: radial-gradient(circle, #85c4f1 0%, #8f00ff 100%);
}

.logo {
  min-width: 300px;
  max-width: 50%;
}

footer {
  display: block;
  position: fixed;
  text-align: center;
  padding: 20px;
  color: white;
  font-size: 32px;
  bottom: 0;
}

body.pay {
  color: #222;
  min-height: 100vh;
  height: auto;
  background: #ffecbd;
}

body.pay main {
  width: 100%;
}

.pay-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

.pay-section .content {
  padding: 20px;
}

.pay-section-details {
  background: linear-gradient(0deg, rgba(150, 220, 255, 0.25) 0%, rgba(148,186,233,0) 100%);
}

.pay-section-pay {
  /* background: rgba(148,186,233,0.3); */
}

.pay-section h2 {
  color: #00667a;
}

.pay-section table {
  border-collapse: collapse;
}

.pay-section table td {
  padding: 5px 0;
  vertical-align: top;
  border-top: 1px solid #9aa8ab;
}

.pay-section table tbody tr.first td {
  padding-top: 20px;
  border-top: none;
}

.pay-section .dt {
  font-weight: lighter;
  padding-right: 10px;
}

.pay-section .dd {
  font-weight: bold;
  text-align: left;
  padding-left: 10px;
  max-width: 350px;
}

.pay-section .sm {
  font-size: 12px;
}

.pay-section .caption strong {
  margin-left: 10px;
}

.tabs table {
  display: none;
}
.tabs table.active {
  display: table;
}

.payment-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-tabs button {
  border-radius: 2px;
  position: relative;
  display: block;
  overflow: hidden;
  border-width: 0;
  outline: none;
  padding: 7px 20px;
  color: #555;
  background: transparent;
  cursor: pointer;
}

.payment-tabs button.active {
  background-color: #2776ae;
  color: white
}

input.textview {
  border: none;
  outline: none;
  background: none;
  padding: 0;
}

.textview.iban {
  width: 320px;
  font-weight: bold;
  font-size: 16px;
}

.btn {
  cursor: pointer;
  position: relative;
  display: block;
  overflow: hidden;
  border-width: 0;
  outline: none;
  padding: 7px 20px;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  color: white;
  transition: background-color .3s;
}

.btn-pay {
  padding: 10px 30px;
  font-size: 24px;
  background-color: #2ecc71;
}

.btn-pay:hover, .btn-pay:focus {
  background-color: #27ae60;
}


/* Mobile view: Each cell displays vertically */
@media screen and (max-width: 600px) {
  .pay-section thead, 
  .pay-section tbody, 
  .pay-section th, 
  .pay-section td, 
  .pay-section tr {
    display: block;
  }

  .pay-section table tbody tr.first td,
  .pay-section .dt,
  .pay-section .dd {
    padding: 0;
    border: none;
  }

  .pay-section table tbody tr.first td.dd,
  .pay-section .dd {
    padding-bottom: 10px;
  }
}