@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap");
div.card-payment-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.card-payment-row {
  display: flex;
}
.card-payment-column-left {
  flex-grow: 1;
  margin-right: 12px;
}
.card-payment-column-right {
  width: 240px;
  display: flex;
}
.card-payment-margin {
  margin-right: 12px;
}
div.bank-account-payment-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}
.bank-account-payment-row {
  display: flex;
}
.bank-account-payment-column-left {
  flex-grow: 1;
  margin-right: 12px;
}
.bank-account-payment-column-right {
  width: 50%;
  display: flex;
}
.bank-account-payment-margin {
  margin-right: 12px;
}
.redirected-payment {
  text-align: center;
}
.redirected-payment img {
  margin-bottom: 12px;
  display: inline-block;
  min-height: 80px;
}
.tab-container {
  box-sizing: border-box;
  /* Auto layout */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px;
  gap: 4px;
  border: 2px solid #e1e1e1;
  flex-grow: 1;
  margin: 0 12px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
.tab-container-payment-method-icon {
  margin-bottom: 4px;
}
.tab-container-payment-active-icon {
  position: absolute;
  background-color: #fff;
  top: -10px;
  right: -10px;
}
.tab-container-active {
  background: #f4fcff;
  /* Primary - Dark */
  border: 2px solid #005f92;
  color: #005f92;
}
body {
  color: #043156;
}
.typography {
  font-family: "Open Sans";
  font-style: normal;
  display: block;
}
.typography b {
  font-weight: 600;
}
.typography a {
  color: #327bb7;
}
.typography-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 6px;
}
.typography-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.typography-body {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
}
.typography-copy {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
.paper {
  box-sizing: border-box;
  padding: 24px;
  width: 100%;
  background: #f4f4f4;
  border-radius: 8px;
}
.input-container {
  flex-grow: 1;
  gap: 12px;
}
.input-container input {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  height: 41px;
  padding: 8px;
}
.input-container input::placeholder {
  color: #043156;
  opacity: 0.5;
}
.input-container-error-message {
  color: #f03738;
}
.select-container {
  box-sizing: border-box;
  flex-grow: 1;
  gap: 12px;
}
.select-container select {
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  height: 41px;
  appearance: none;
  width: 100%;
  padding: 8px;
}
.select-container option {
  background: #ffffff;
}
.select-container-icon-wrapper {
  position: relative;
}
.select-container-icon {
  position: absolute;
  margin: auto 8px auto auto;
  right: 0;
  top: 0;
  bottom: 0;
}
body {
  margin: 0;
}
.payment-page {
  max-width: 600px;
  margin: 0 auto;
}
.tabs {
  display: flex;
  justify-content: space-around;
  margin: 24px -12px;
}
.tabs button {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  background-color: #f0f0f0;
  border-radius: 4px;
}
.tabs button.active {
  background-color: #007bff;
  color: white;
}
form div {
  margin-bottom: 15px;
}
label {
  display: block;
  margin-bottom: 5px;
}
input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}
