body {
  margin: auto;
  max-width: 450px;
}

.page-container {
  margin: auto;
  max-width: 450px;
}

header {
  background-color: #2E3A57;
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  font-family: "Poppins", sans-serif;
  line-height: 24px;
}
header.page-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  width: auto;
}
header #HeaderTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 80px;
}
header #HeaderTitle img {
  width: 48px;
}
header #HeaderTitle h1 {
  font-size: 20px;
  text-align: center;
}
header #HeaderBanner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #ffffff;
}
header #HeaderBanner img {
  overflow: auto;
  max-width: 270px;
}
header #HeaderBanner.sole-banner img {
  width: 100%;
}
header #PaymentAmount {
  font-weight: 300;
  text-align: right;
  font-size: 12px;
  margin-right: 16px;
}
header #PaymentAmount span {
  font-size: 24px;
}

.company-identity {
  display: flex;
  align-items: center;
  padding-left: 16px;
  gap: 8px;
  flex: 1;
}
.company-identity img {
  width: 32px;
}
.company-identity h1 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: white;
}

.secure-payment-header {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  flex-shrink: 0;
  padding: 8px 16px 8px 0;
}
.secure-payment-header img {
  width: 20px;
  height: 20px;
}

.secure-text {
  font-size: 10px;
  line-height: 1.1;
  white-space: nowrap;
  text-align: left;
}

* {
  font-family: "Poppins", sans-serif;
}