@font-face {
  font-family: "Roboto Condensed";
  src: url("/fonts/RobotoCondensed-Regular.woff2") format("woff2"), url("/assets/Fonts/RobotoCondensed-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("/fonts/RobotoCondensed-Bold.woff2") format("woff2"), url("/assets/Fonts/RobotoCondensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
  background: #002a3b;
  color: #fff;
  font-family: "Roboto Condensed", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.page-payment-methods,
body.page-payment-methods button,
body.page-payment-methods input,
body.page-payment-methods select,
body.page-payment-methods textarea {
  font-family: "Roboto Condensed", Arial, sans-serif;
}

body.page-payment-methods {
  min-height: 100vh;
  overflow-x: hidden;
  background: #002a3b;
}

#payment-methods {
  display: block;
  width: 100%;
  min-height: 1px;
  overflow-x: hidden;
  background: #004560;
  color: #fff;
}

#payment-methods a {
  color: inherit;
  text-decoration: none;
}

#payment-methods .payment-wrapper {
  box-sizing: border-box;
  max-width: 620px;
  width: 100%;
  min-height: calc(100vh - 55px);
  padding: 30px 10px;
  margin: 0 auto;
  text-align: left;
}

#payment-methods h1.section-header {
  margin: 0 0 15px;
  color: #fff;
  font-size: 30px;
  line-height: 38px;
  font-weight: 700;
  text-transform: uppercase;
}

#payment-methods .intro-text {
  margin: 0 0 20px;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

#payment-methods .method-list {
  width: 100%;
  background: #fff;
  color: #004560;
}

#payment-methods .method-wrap {
  position: relative;
  overflow: hidden;
  background: #fff;
}

#payment-methods .method-input {
  display: none;
}

#payment-methods label {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 35px;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0;
  border-bottom: 1px solid #bdc2c7;
  color: #004560;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 400;
}

#payment-methods .method-input:checked + label {
  border-bottom: 0;
}

#payment-methods .payment-img {
  display: block;
  max-width: 100px;
  width: auto;
  height: 40px;
  margin: 5px 0;
  object-fit: contain;
}

#payment-methods label span:not(.arrow) {
  display: block;
  justify-self: end;
  padding: 0 8px 0 12px;
  text-align: right;
  white-space: nowrap;
}

#payment-methods .arrow {
  display: block;
  position: relative;
  left: 50%;
  bottom: 3px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #004560;
  border-right: 1px solid #004560;
  transform: rotate(135deg);
  transform-origin: center center;
}

#payment-methods .method-input:checked + label .arrow {
  top: 2px;
  bottom: auto;
  transform: rotate(-45deg);
}

#payment-methods .item {
  overflow: hidden;
  max-height: 0;
  border-bottom: 1px solid #bdc2c7;
  background: #fff;
  transition: max-height 0.5s ease-out;
}

#payment-methods .method-input:checked ~ .item {
  max-height: 460px;
}

#payment-methods .item-wrapper {
  padding: 1px 0 1px;
}

#payment-methods .general-info {
  display: grid;
  grid-template-columns: 100px 100px;
  gap: 0;
  margin: 15px;
  color: #004560;
  font-size: 16px;
  line-height: 1.25;
}

#payment-methods .general-info div div {
  padding-bottom: 10px;
}

#payment-methods .detailed-info {
  margin: 10px 15px 20px;
  color: #004560;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 400;
}

@media (min-width: 768px) {
  #payment-methods .payment-wrapper {
    padding: 50px 10px;
    min-height: calc(100vh - 708px);
  }
}

@media (max-width: 1279px) {
  body.page-payment-methods {
    padding-bottom: 55px !important;
  }
}

@media (max-width: 420px) {
  #payment-methods h1.section-header {
    font-size: 28px;
    line-height: 35px;
  }

  #payment-methods label {
    grid-template-columns: 108px 1fr 32px;
  }

  #payment-methods label span:not(.arrow) {
    justify-self: end;
    white-space: normal;
    line-height: 1.1;
  }

  #payment-methods .general-info {
    grid-template-columns: 1fr 1fr;
    margin: 15px;
  }
}
