@charset "UTF-8";

.nmbp-header__bc-logo {
  background-image: url("../images/bc/img-logo-header.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 120px;
  height: 38px;
}

.nmbp-header-top__bc-logo {
    background-image: url("../images/bc/img-logo-header-top.svg");
    background-repeat: no-repeat;
    width: 240px;
    height: 80px;
    text-indent: -9999px;
    font-size: 0;
  }

  .nmbp-header-top-scrolled__bc-logo {
    background-image: url("../images/bc/img-logo-header-top-small.svg");
    background-repeat: no-repeat;
    width: 127px;
    height: 41px;
  }

  .nmbp-code-input__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
  }

  .nmbp-code-input__input {
    background: #ffffff;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #939ba5;
    height: 36px;
    padding: 0 8px;
    width: 30px;
    text-align: center;
    font-size: 20px;
    color: #262d33;
  }

  .nmbp-code-input__input::-webkit-inner-spin-button,
  .nmbp-code-input__input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    -moz-appearance: textfield;
  }

  .nmbp-code-input__input:hover {
    border-bottom: 1px solid #c1c6cc;
  }

  .nmbp-code-input__input:focus {
    border-bottom: 2px solid #519b2f;
    outline: none;
  }

  .nmbp-code-input__container--error .nmbp-code-input__input {
    border-bottom: 2px solid #dd223b;
  }
  
  .htv-login-main-area .nmbp-form-heading {
  margin-block: 0px;
  margin-inline: 0px;
  margin-bottom: 16px;
  height: 24px;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #262d33;
}

.nmbp-snack-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 48px;
  width: 100%;
  padding: 12px 16px;
  position: -webkit-fixed;
  position: fixed;
  top: 0px;
  z-index: 1000;
  -webkit-animation: SlideIn--top 100ms forwards;
  animation: SlideIn--top 100ms forwards;
}

@-webkit-keyframes SlideIn--top {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes SlideIn--top {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.nmbp-display-none {
  display: none;
}