body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background-color: #f4eee8;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  overflow: auto;
}

h1,
h2,
h3 {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

header {
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 12px;
}

#litpinforLogo {
  height: 60px;
  width: auto;
  margin-right: 12px;
  background-color: white;
  border-radius: 4px;
}

#orabankLogo {
  background-color: white;
  margin-left: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  display: flex;
}

#orabankLogo img {
  height: 32px;
  width: auto;
}

.headerSubPart {
  display: flex;
  align-items: center;
}

#wrapper {
  display: flex;
  width: 100%;
  max-width: 1340px;
  margin: auto;
  margin-top: 32px;
  justify-content: space-between;
  height: calc(100vh - 132px);
}

#paymentBloc {
  height: 100%;
  padding: 0 12px;
  overflow: auto;
}

#paymentButton {
  font-size: 1.2rem;
  display: block;
  margin: 12px 0 12px auto;
  padding: 8px 16px;
  border: solid 1px;
  background-color: transparent;
  cursor: pointer;
  transition: ease 0.5s;
  border-radius: 120px;
}

#paymentButton:hover {
  color: white;
  background-color: black;
}

#paymentButton:active {
  transform: translateY(4px);
}

#wrapper > img {
  width: auto;
  height: 100%;
  width: 45%;
  min-width: 45%;
  margin-left: 24px;
  object-fit: cover;
}

#main {
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
  margin: auto;
  height: 100%;
  overflow: auto;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(2px);
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

#loader img {
  height: 172px;
  width: 172px;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

h3 {
  font-size: 1.5rem;
}

p {
  line-height: 1.75;
}

.title {
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif !important;
  color: white;
}

#introLine {
  margin: 32px;
  font-size: 1.1rem;
  line-height: 2.5;
  text-align: center;
}

#billDetail {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 6px;
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding: 20px 12px;
}

#priceLine {
  margin-top: 16px;
  font-size: 1.2rem;
  margin-bottom: 0px;
  text-align: right;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#billDetail p {
  font-size: 1.1rem;
}

#priceLine strong {
  font-size: 2rem;
  margin-left: 12px;
  font-weight: 300;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.label {
  font-size: 1.2rem;
  font-weight: 300;
}

#legalBloc {
  margin: 24px 0;
  font-size: 0.85 rem;
}

@media (max-width: 900px) {
  #wrapper img {
    display: none;
  }
}

@media (max-width: 640px) {
  header {
    flex-direction: column;
    padding: 12px 6px;
    height: fit-content;
  }
  .headerSubPart:first-child {
    margin-bottom: 6px;
  }
  #litpinforLogo {
    height: 40px;
    width: auto;
  }
  h1,
  .title {
    font-size: 1.8rem;
  }
  #wrapper {
    margin-top: 18px;
  }
  #main {
    padding-left: 0px;
    width: 94%;
    max-width: 620px;
    margin: auto;
  }
  #billDetail {
    margin: auto;
    margin-bottom: 24px;
  }
}
