html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  outline: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
* {
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
*:before,
*:after {
  box-sizing: border-box;
}
::selection {
  color: #FFFFFF;
  background-color: #2D8CF0;
  text-shadow: 0 0 0 transparent;
}
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
  color: #131921;
  background-color: #002126;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
hr {
  border: unset;
  margin: 10px 0;
  border-bottom: solid 1px #d5d6d7;
}
ul,
ol {
  list-style: none;
}
img,
label {
  width: inherit;
  user-select: none;
}
img {
  object-fit: cover;
  object-position: center;
}
input {
  padding: 0;
  outline: 0;
  width: 100%;
  border: none;
  box-shadow: 0 0 0 transparent;
}
button {
  cursor: pointer;
  outline: 0;
  padding: 0;
  border: solid 0 transparent;
  box-shadow: 0 0 0 transparent;
  user-select: none;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  outline: unset;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  text-decoration: none;
  color: inherit;
  outline: 0;
  cursor: pointer;
  display: inline-block;
  user-select: none;
}
a[disabled] {
  cursor: not-allowed;
}
.ui--loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 128;
  padding: 30px;
  display: grid;
}
.ui--loader:not(.active) {
  opacity: 0 !important;
  pointer-events: none !important;
}
.ui--loader:not(.active) [class$="-container"] {
  opacity: 0;
  transform: translateY(-10px);
}
.ui--loader-container {
  position: relative;
  width: 60px;
  height: 60px;
  padding: 5px;
  margin: 0 auto;
  border-radius: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(255, 153, 0, 0.25);
  transition: all 0.2s ease;
}
.ui--loader .circle {
  animation: rotate 2s linear infinite;
  transform-origin: center center;
  width: 50px;
  height: 50px;
}
.ui--loader .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  stroke: #FF9900;
  animation: dash 1.5s ease infinite;
  stroke-linecap: round;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.ui--nav-home {
  right: 75px;
  position: fixed;
  z-index: 1;
  top: 15px;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(43, 48, 55, 0.2);
}
.ui--nav-translate {
  right: 20px;
  position: fixed;
  z-index: 1;
  top: 15px;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(43, 48, 55, 0.2);
}
.ui--nav-icon {
  display: block;
  height: 25px;
  pointer-events: none;
}
.ui--modal-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 20px;
  background-color: rgba(0, 33, 38, 0.7);
  transition: all 0.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.ui--modal-container:not(.active) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-5px);
}
.ui--modal-container .content {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 480px;
  border-radius: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 5px 10px rgba(43, 48, 55, 0.2);
}
.ui--modal-container .btn {
  display: block;
  width: 100%;
  max-width: 110px;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 2px;
  line-height: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.ui--modal-container .btn:active {
  opacity: 0.9;
}
.ui--modal-container .btn-close {
  color: #FFFFFF;
  background-color: #E53935;
}
.ui--modal-head {
  padding: 10px 0 10px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  border-bottom: solid 1px #eaecef;
}
.ui--modal-body {
  position: relative;
  padding: 20px 25px 0;
  margin: 0 0 20px;
  max-height: 64vh;
  overflow-y: auto;
}
.ui--modal-footer {
  padding: 0 15px 15px;
}
.ui--modal-translate-body {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}
.ui--modal-translate-body .locale {
  text-align: center;
  line-height: 2.4;
  font-size: 14px;
  font-weight: 600;
  border-radius: 2px;
  background-color: #eaecef;
}
.ui--modal-terms-b2f5-body ul {
  padding-left: 25px;
  list-style-type: square;
}
.ui--modal-terms-b2f5-body li {
  font-size: 14px;
  font-weight: 400;
}
.ui--input {
  position: relative;
}
.ui--input-label {
  color: #F8C01F;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
.ui--input-label[required]::after {
  content: ' *';
  color: #E53935;
}
.ui--input-default {
  position: relative;
  display: block;
  padding: 6px 12px;
  margin: 5px 0 0;
  min-height: 45px;
  color: #2B3037;
  background-color: #F6F9F9;
  border-radius: 2px;
}
.ui--input-default:disabled {
  opacity: 0.9;
  cursor: not-allowed;
  user-select: none;
}
.ui--input-errors {
  color: #E53935;
  font-size: 12px;
  font-style: italic;
}
.ui--input.ltr {
  text-align: right;
}
.ui--input.ctr {
  text-align: center;
}
.ui--content {
  position: relative;
  max-width: 900px;
  margin: auto;
}
#b2f5 {
  padding-bottom: 40px;
  transition: opacity 0.2s ease;
}
#b2f5:not(.ready) {
  opacity: 0;
}
#b2f5 > .picture {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#b2f5 > .name {
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  padding: 10px 15px;
  color: #002126;
  background-color: #F48004;
}
#b2f5 .details {
  color: #F6F9F9;
  padding: 20px 40px;
}
@media only screen and (max-width: 480px) {
  #b2f5 .details {
    padding: 20px;
  }
}
#b2f5 .terms {
  display: block;
  margin: 0 auto;
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  background-color: #F6F9F9;
  box-shadow: 0 2px 4px black;
}
#b2f5 .items {
  margin: 20px 0;
}
#b2f5 .items .ui--table {
  background-color: #001518;
}
#b2f5 .items .ui--table thead td {
  color: #F8C01F;
  background-color: #000B0D;
}
#b2f5 .items .ui--table tbody td {
  text-align: center;
  color: #F6F9F9;
}
#b2f5 .items .summary {
  display: grid;
  grid-template-columns: 66.666% 33.333%;
  line-height: 2;
  margin: 20px 0 0;
  color: #F8C01F;
}
@media only screen and (max-width: 480px) {
  #b2f5 .items .summary {
    grid-column-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    font-size: 20px;
  }
}
#b2f5 .items .summary .title {
  font-weight: 500;
  text-align: right;
  text-transform: uppercase;
}
#b2f5 .items .summary .value {
  font-weight: 700;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  #b2f5 .items .summary .value {
    text-align: left;
  }
}
#b2f5 .payment {
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  padding: 10px 15px;
  color: #002126;
  background-color: #F48004;
}
#b2f5 .customer {
  position: relative;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  padding: 20px 40px;
}
@media only screen and (max-width: 480px) {
  #b2f5 .customer {
    padding: 20px;
    grid-template-columns: unset;
  }
}
#b2f5 .footer {
  padding: 15px 0 0;
  border-top: solid 2px #01353a;
}
#b2f5 .footer button {
  display: block;
  margin: auto;
  width: 240px;
  height: 50px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: #E53935;
  border-radius: 2px;
}
#b2f5 .iti {
  display: block;
  margin-top: 5px;
}
#b2f5 .iti__selected-flag {
  outline: unset;
}
#b2f5 .iti__country-list {
  border: unset;
}
#b2f5 .ui--payment-container {
  padding: 20px 0 0;
}
#b2f5 .ui--payment-methods-list {
  padding: 10px 15px;
  border: unset;
  background-color: #F6F9F9;
}
#b2f5 .ui--payment-methods-list.active,
#b2f5 .ui--payment-methods-list:hover {
  box-shadow: unset;
  color: #131921;
  background-color: #F48004;
}
#b2f5 .ui--payment-wrapper {
  border-top: solid 2px #01353A;
}
#b2f5 .ui--payment-wrapper .info {
  color: #F8C01F;
  background-color: #000B0D;
}
#b2f5 .ui--payment-slot.card-js label {
  color: #F8C01F;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
}
#b2f5 .ui--payment-slot.card-js input,
#b2f5 .ui--payment-slot.card-js select {
  border: unset;
  border-radius: 2px !important;
}
#b2f5 .ui--payment-slot.card-js input:focus,
#b2f5 .ui--payment-slot.card-js select:focus {
  box-shadow: unset;
}
#b2f5 .ui--payment-slot.card-js select {
  width: calc(100% / 2 - 10px);
}
#b2f5 .ui--payment-slot.card-js select.expiry-year {
  margin-left: 20px;
}
#b2f5 .ui--payment-slot.ebank .item {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
#b2f5-complete {
  margin-bottom: 50px;
}
@media only screen and (max-width: 480px) {
  #b2f5-complete {
    margin-bottom: 2px;
  }
}
#b2f5-complete .img {
  display: block;
  width: 100%;
  height: 40vh;
}
#b2f5-complete .tap {
  text-transform: uppercase;
  text-align: center;
  padding: 15px 20px;
  font-size: 24px;
  font-weight: 600;
  color: #F8C01F;
  background-color: #143337;
}
#b2f5-complete .desc {
  text-align: center;
  font-size: 16px;
  padding: 15px 20px;
  color: #FFFFFF;
}
#b2f5-complete .ref {
  text-align: center;
  padding: 10px 15px;
  margin: 0 auto;
  max-width: 275px;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  border-radius: 4px;
  border: solid 1px #F48004;
}
#b2f5-complete .table {
  margin-top: 20px;
}
#b2f5-complete .table thead td {
  text-transform: capitalize;
  background-color: #F48004;
}
@media only screen and (max-width: 480px) {
  #b2f5-complete .table thead td {
    padding: 10px 5px;
    font-size: 14px;
  }
}
#b2f5-complete .table tbody td {
  text-align: center;
  color: #F6F9F9;
  background-color: #143337;
}
@media only screen and (max-width: 480px) {
  #b2f5-complete .table tbody td {
    padding: 10px 5px;
    font-size: 12px;
  }
}
#b2f5-complete .table td {
  border: solid 2px #002126;
}
#b2f5-complete .summary {
  display: grid;
  grid-column-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0 0;
}
@media only screen and (max-width: 480px) {
  #b2f5-complete .summary {
    margin: 5px 2px 0;
    grid-column-gap: 5px;
  }
}
#b2f5-complete .summary .li {
  text-align: center;
  padding: 10px 20px;
  background-color: #0a2a2f;
}
@media only screen and (max-width: 480px) {
  #b2f5-complete .summary .li {
    padding: 10px;
  }
}
#b2f5-complete .summary .li-h3 {
  color: #F48004;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
#b2f5-complete .summary .li-h2 {
  color: #F6F9F9;
  line-height: 2;
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 480px) {
  #b2f5-complete .summary .li-h2 {
    font-size: 16px;
  }
}
#b2f5-complete .summary .li-h5 {
  font-size: 10px;
  color: #ccd3d4;
}
.ui--table {
  width: 100%;
}
.ui--table thead {
  text-align: center;
}
.ui--table thead td {
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.ui--table tbody td {
  padding: 10px;
}
.ui--number {
  justify-content: center;
  max-width: 120px;
  margin: 0 auto;
  line-height: 30px;
}
@media only screen and (max-width: 480px) {
  .ui--number {
    max-width: 100px;
  }
}
.ui--number .value {
  width: 70px;
  padding-left: 14px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #002126;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 480px) {
  .ui--number .value {
    padding: 0;
  }
}
