@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;900&display=swap");
.nub-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.nub-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  height: 36px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 15px !important;
}
.nub-container a {
  text-decoration: none;
}
@media (max-width: 599px) {
  .nub-container {
    height: 30px;
    gap: 6px;
  }
}

.nub-nav-toggle, .nub-user__toggle, .nub-cart__icon {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid #124E78 !important;
  border-radius: 0;
  background-color: #F6F6F7 !important;
  color: #124E78 !important;
  font-size: 15px !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nub-nav-toggle i, .nub-user__toggle i, .nub-cart__icon i {
  margin-bottom: 2px;
}
.nub-nav-toggle:hover, .nub-user__toggle:hover, .nub-cart__icon:hover {
  background-color: #124E78 !important;
  color: #F6F6F7 !important;
}
@media (max-width: 599px) {
  .nub-nav-toggle, .nub-user__toggle, .nub-cart__icon {
    width: 30px;
    height: 30px;
    font-size: 14px !important;
  }
}

.nub-cart {
  position: relative;
}
.nub-cart__icon:hover + .nub-cart__amount {
  opacity: 1;
  top: 45px;
  pointer-events: all;
  z-index: 100;
}
@media (max-width: 599px) {
  .nub-cart__icon:hover + .nub-cart__amount {
    top: 38px;
  }
}
.nub-cart__amount {
  position: absolute;
  top: 80px;
  right: -10px;
  opacity: 0;
  pointer-events: none;
  height: 40px;
  padding: 0 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-size: 15px !important;
  font-weight: 700;
  color: #124E78;
  background-color: #ffffff;
  border: 1px solid #124E78;
  border-radius: 0;
  transition: opacity 0.3s ease, top 0.3s ease;
}

.nub-login-trigger {
  height: 36px;
  padding: 0 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px !important;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: #29b475;
  border: 1px solid #124E78;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.nub-login-trigger:hover {
  background-color: #25a269;
}
@media (max-width: 599px) {
  .nub-login-trigger {
    height: 30px;
    font-size: 13px !important;
    padding: 0 14px;
  }
}

.nub-user {
  position: relative;
  flex-shrink: 0;
}
.nub-user__menu {
  position: absolute;
  top: 80px;
  right: 0;
  width: 230px;
  padding: 20px 10px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background-color: #ffffff;
  border: 1px solid #124E78;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, top 0.3s ease;
}
.nub-user__menu.FR {
  width: 250px;
}
.nub-user__menu.is-open {
  opacity: 1;
  pointer-events: all;
  top: 45px;
}
@media (max-width: 599px) {
  .nub-user__menu.is-open {
    top: 38px;
  }
}
.nub-user__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px !important;
  font-weight: 600;
  color: #ffffff;
  background-color: #124E78;
  flex-shrink: 0;
  cursor: default;
  margin-bottom: 4px;
}
.nub-user__email {
  font-size: 13px !important;
  font-weight: 500;
  color: #124E78;
  text-align: center;
  width: 100%;
  margin: 8px auto 12px;
  word-break: break-all;
}
.nub-user__menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 36px;
  margin: 4px auto;
  padding: 0 15px;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  white-space: nowrap;
  text-decoration: none !important;
  background-color: #29b475 !important;
  border: 1px solid #124E78 !important;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.nub-user__menu-link i {
  margin-left: 8px;
}
.nub-user__menu-link:hover {
  background-color: #25a269 !important;
}
.nub-user__separator {
  width: 80%;
  height: 1px;
  margin: 10px auto;
  background: #000000;
  opacity: 0.2;
  border: none;
}
.nub-user__logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 200px;
  height: 36px;
  margin: 4px auto 0;
  padding: 0 15px;
  font-family: "Poppins", sans-serif;
  font-size: 14px !important;
  font-weight: 500;
  color: #124E78;
  cursor: pointer;
  background-color: #E7EDF2;
  border: 1px solid #124E78;
  border-radius: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
}
.nub-user__logout i {
  flex-shrink: 0;
  font-size: 16px !important;
}
.nub-user__logout .nub-btn-label {
  font-size: 14px !important;
}
.nub-user__logout:hover {
  background-color: #29b475;
  color: #ffffff;
}
.nub-user__logout.is-loading {
  pointer-events: none;
}
.nub-user__logout.is-loading .nub-btn-label,
.nub-user__logout.is-loading > i {
  opacity: 0;
}
.nub-user__logout.is-loading .nub-btn-spinner {
  display: block;
}

.nub-no-scroll {
  overflow: hidden !important;
}

.nub-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 16px;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(3px);
  font-family: "Poppins", sans-serif;
  color: #000000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.nub-popup.is-open {
  opacity: 1;
  pointer-events: all;
  display: flex !important;
}
.nub-popup.is-open .nub-popup__card {
  transform: translateY(0);
  opacity: 1;
}
.nub-popup__card {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 0;
  overflow: hidden;
  cursor: auto;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.nub-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  font-weight: 900 !important;
  color: #29b475 !important;
  cursor: pointer;
  background-color: #ffffff !important;
  border: 1px solid #124E78 !important;
  border-radius: 0 !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nub-popup__close:hover {
  background-color: #124E78 !important;
  color: #ffffff !important;
}
@media (max-width: 470px) {
  .nub-popup__close {
    width: 26px;
    height: 26px;
    font-size: 14px !important;
  }
}
.nub-popup__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 24px;
  background: linear-gradient(200deg, #29b475 0%, #25a269 100%);
}
.nub-popup__logo {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #124E78;
  border-radius: 50%;
  margin-bottom: 16px;
  overflow: hidden;
}
.nub-popup__logo img {
  width: 100%;
  height: auto;
}
@media (max-width: 470px) {
  .nub-popup__logo {
    width: 90px;
    height: 90px;
  }
}
.nub-popup__title {
  font-size: 28px !important;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  margin: 0;
}
@media (max-width: 470px) {
  .nub-popup__title {
    font-size: 22px !important;
  }
}

#nova-login-modal .nova-login-modal__card {
  position: relative;
  width: 100%;
}
#nova-login-modal .nova-login-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  font-weight: 900 !important;
  color: #29b475 !important;
  cursor: pointer;
  background-color: #ffffff !important;
  border: 1px solid #124E78 !important;
  border-radius: 0 !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#nova-login-modal .nova-login-modal__close:hover {
  background-color: #124E78 !important;
  color: #ffffff !important;
}
@media (max-width: 470px) {
  #nova-login-modal .nova-login-modal__close {
    width: 26px;
    height: 26px;
    font-size: 14px !important;
  }
}
#nova-login-modal .nova-login-modal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 20px 24px;
  background: linear-gradient(200deg, #29b475 0%, #25a269 100%);
}
#nova-login-modal .nova-login-modal__logo {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #124E78;
  border-radius: 50%;
  margin-bottom: 16px;
  overflow: hidden;
}
#nova-login-modal .nova-login-modal__logo img {
  width: 105px;
  height: auto;
}
@media (max-width: 470px) {
  #nova-login-modal .nova-login-modal__logo {
    width: 90px;
    height: 90px;
  }
  #nova-login-modal .nova-login-modal__logo img {
    width: 70px;
  }
}
#nova-login-modal .nova-login-modal__title {
  font-size: 28px !important;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  margin: 0;
}
@media (max-width: 470px) {
  #nova-login-modal .nova-login-modal__title {
    font-size: 22px !important;
  }
}

.nub-panels {
  position: relative;
  overflow: hidden;
}

.nub-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 24px 20px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nub-panel.is-active {
  position: relative;
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.nub-form-error {
  display: none;
  color: #cc3333;
  font-size: 14px !important;
  font-weight: 600;
  text-align: center;
  margin: 0px 0 26px 0;
}
.nub-form-error.is-visible {
  display: block;
}

.nub-field {
  position: relative;
  margin-bottom: 16px;
}
.nub-field label {
  display: block;
  font-size: 13px !important;
  font-weight: 600;
  color: #124E78;
  margin-bottom: 5px;
}
.nub-field input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-family: "Poppins", sans-serif;
  font-size: 14px !important;
  color: #000000;
  background-color: #F6F6F7;
  border: 1px solid rgb(213.6, 213.6, 218.2);
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.nub-field input:focus {
  border-color: #124E78;
  box-shadow: 0 0 0 2px rgba(18, 78, 120, 0.12);
  background-color: #ffffff;
}
.nub-field--password input {
  padding-right: 46px;
}
.nub-field.has-error input {
  border-color: #cc3333;
  box-shadow: 0 0 0 2px rgba(204, 51, 51, 0.12);
}
.nub-field.has-error .nub-field__error {
  display: flex;
}
.nub-field.is-focused label {
  color: #124E78;
}

.nub-field__error {
  display: none;
  align-items: center;
  gap: 5px;
  margin-top: 5px;
  font-size: 12px !important;
  font-weight: 600;
  color: #cc3333;
}

.nub-field__error-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #cc3333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px !important;
  font-weight: 700;
  flex-shrink: 0;
}

.nub-pw-toggle {
  position: absolute;
  right: 12px;
  bottom: 11px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #124E78;
  opacity: 0.9;
  background: none;
  border: none;
  padding: 0;
  font-size: 14px !important;
  transition: opacity 0.3s ease;
}
.nub-field.has-error .nub-pw-toggle {
  bottom: 46px;
}
.nub-pw-toggle:hover {
  opacity: 1;
}
.nub-pw-toggle .nub-pw-toggle__hide {
  display: none;
}
.nub-pw-toggle.is-showing .nub-pw-toggle__show {
  display: none;
}
.nub-pw-toggle.is-showing .nub-pw-toggle__hide {
  display: block;
}

.nub-login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.nub-checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
  font-weight: 500;
  cursor: pointer;
}
.nub-checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid black;
  border-radius: 0;
  background-color: white;
  cursor: pointer;
  position: relative;
}
.nub-checkbox input[type=checkbox]:checked {
  background-color: #29b475;
  border-color: #29b475;
}
.nub-checkbox input[type=checkbox]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1;
}
.nub-checkbox input[type=checkbox]:checked ~ span {
  font-weight: 500 !important;
}

.nub-forgot-link {
  font-size: 13px !important;
  font-weight: 600;
  color: #000000;
  transition: color 0.15s ease;
  cursor: pointer;
}
.nub-forgot-link:hover {
  color: #29b475;
}

.nub-support {
  text-align: center;
  font-size: 13px !important;
  font-weight: 500;
  color: #000000;
  margin-top: 14px;
  line-height: 1.6;
}
.nub-support a {
  font-weight: 700;
  color: #29b475;
  cursor: pointer;
}
.nub-support a:hover {
  color: #25a269;
}

.nub-forgot-guide {
  font-size: 14px !important;
  font-weight: 500;
  color: #124E78;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.55;
}

.nub-back-link {
  display: block;
  text-align: center;
  font-size: 13px !important;
  font-weight: 600;
  color: #124E78;
  margin-top: 12px;
  transition: color 0.15s ease;
}
.nub-back-link:hover {
  color: #29b475;
}

.nub-forgot-success {
  position: absolute;
  inset: 0;
  z-index: 10;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  gap: 24px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nub-forgot-success p {
  font-size: 16px !important;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.5;
}
.nub-forgot-success.is-visible {
  opacity: 1;
  pointer-events: all;
}

.nub-nav-toggle {
  display: none;
}
@media (max-width: 1100px) {
  .nub-nav-toggle {
    display: flex;
  }
}
.nub-nav-toggle.is-active {
  background-color: #124E78;
  color: #ffffff;
}

.nub-lang {
  position: relative;
  height: 36px;
  flex-shrink: 0;
  font-family: "Poppins", sans-serif;
}
.nub-lang__toggle {
  height: 100%;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px !important;
  font-weight: 600;
  color: #124E78 !important;
  background-color: #F6F6F7 !important;
  border: 1px solid #124E78 !important;
  border-radius: 0;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nub-lang__toggle:hover {
  background-color: #124E78 !important;
  color: #ffffff !important;
}
.nub-lang__name {
  font-size: 14px !important;
}
.nub-lang__globe {
  display: none;
  font-size: 16px !important;
}
.nub-lang__caret {
  font-size: 11px !important;
}
.nub-lang__list {
  position: absolute;
  top: 80px;
  left: 0;
  min-width: 100%;
  z-index: 100;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #124E78;
  border-radius: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, top 0.3s ease;
}
.nub-lang__list.is-open {
  opacity: 1;
  pointer-events: all;
  top: 45px;
}
@media (max-width: 599px) {
  .nub-lang__list.is-open {
    top: 38px;
  }
}
.nub-lang__list li {
  min-width: 100%;
}
.nub-lang__list a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 36px;
  padding: 0 12px;
  font-family: "Poppins", sans-serif;
  font-size: 14px !important;
  font-weight: 500;
  color: #000000;
  white-space: nowrap;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.nub-lang__list a:hover {
  background-color: #29b475;
  color: #ffffff;
}
@media (max-width: 599px) {
  .nub-lang {
    height: 30px;
    width: 30px;
  }
  .nub-lang__toggle {
    padding: 0;
    width: 30px;
    height: 30px;
    justify-content: center;
  }
  .nub-lang__name, .nub-lang__caret {
    display: none !important;
  }
  .nub-lang__globe {
    display: flex;
  }
  .nub-lang__list {
    left: auto;
    right: 0;
  }
}

@keyframes nub-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.nub-btn {
  position: relative;
  width: 100%;
  height: 50px;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px !important;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  background-color: #29b475;
  border: 1px solid #000000;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.nub-btn:hover:not(:disabled) {
  background-color: #25a269;
}
.nub-btn.is-loading {
  pointer-events: none;
  cursor: wait;
}
.nub-btn.is-loading .nub-btn-label {
  opacity: 0;
}
.nub-btn.is-loading .nub-btn-spinner {
  display: block;
}

.nub-btn-label {
  transition: opacity 0.2s;
}

.nub-btn-spinner {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: nub-spin 0.7s linear infinite;
  margin-top: -10px;
  margin-left: -10px;
}

@keyframes nub-spin {
  to {
    transform: rotate(360deg);
  }
}
.elementor-menu-toggle {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
  overflow: hidden !important;
}

@media (max-width: 1100px) {
  .nub-container {
    gap: 6px;
  }
}
@media (max-width: 599px) {
  .nub-popup {
    padding: 20px 10px;
    align-items: flex-start;
  }
  .nub-popup__card {
    max-width: 100%;
  }
  .nub-login-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .nub-support {
    display: none;
  }
}
@media (max-width: 470px) {
  .nub-popup {
    padding: 10px 6px;
  }
  .nub-panel {
    padding: 20px 16px 16px;
  }
  .nub-popup__title {
    font-size: 20px !important;
  }
  .nub-forgot-guide {
    font-size: 13px !important;
  }
  .nub-btn {
    height: 44px;
    font-size: 14px !important;
  }
}
.nub-wrapper {
  line-height: 1.5;
}
.nub-wrapper button {
  box-shadow: none !important;
  border-width: 1px !important;
}

.hfe-reading-progress {
  margin-top: 0 !important;
}

.nova-header .elementor-container.elementor-column-gap-default {
  justify-content: center !important;
}
.nova-header .elementor-nav-menu--dropdown.elementor-nav-menu__container {
  display: none !important;
  position: fixed !important;
  width: 100% !important;
  border: 1px solid #E7EDF2 !important;
}
@media (max-width: 1100px) {
  .nova-header .elementor-nav-menu--dropdown.elementor-nav-menu__container {
    display: block !important;
  }
}
.nova-header .hfe-site-logo-container {
  height: 47.2px !important;
  width: 120px !important;
  margin-bottom: 5px !important;
}
.nova-header .hfe-site-logo-container img {
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}/*# sourceMappingURL=nova-user-button-style.css.map */