button:hover {
  background: transparent;
}

#pwc-newsletter-popup {
  --npop-navy: #013368;
  --npop-navy-dark: #0C1D3D;
  --npop-blue: #1A4C8B;
  --npop-blue-light: #EBF6FF;
  --npop-gold: #DBA116;
  --npop-gray: #6D6969;
  --npop-border: #EBE9E6;
  --npop-white: #FFFFFF;
  --npop-shadow: 0px 12px 40px 0px rgba(8, 26, 73, 0.18);
  --npop-trans: 200ms ease;
}
#pwc-newsletter-popup[hidden] {
  display: none !important;
}

.site.v2 #masthead.scrolled {
  top: 0px;
}

.npop-bar {
  position: sticky;
  top: 0;
  z-index: 999997;
  background: linear-gradient(90deg, #0C1D3D 0%, #013368 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 0 56px 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: max-height 400ms ease, padding 400ms ease, opacity 400ms ease;
  display: flex;
  align-items: center;
}
.npop-bar.is-visible {
  max-height: 300px;
  padding-top: 14px;
  padding-bottom: 14px;
  opacity: 1;
}
@media (max-width: 768px) {
  .npop-bar {
    padding-left: 20px;
    padding-right: 20px;
  }
  .npop-bar.is-visible {
    padding-top: 60px;
    padding-bottom: 20px;
  }
}
.npop-bar__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 768px) {
  .npop-bar__inner {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    max-width: 100%;
  }
}
.npop-bar__text {
  margin: 0;
  font-family: "SFProText", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  font-weight: 700;
}
@media (max-width: 768px) {
  .npop-bar__text {
    text-align: left;
    font-size: 16px;
    flex: 1 1 100%;
  }
}
.npop-bar__spark {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  margin-right: 8px;
}
.npop-bar__spark svg {
  display: block;
}
.npop-bar .color-yellow {
  color: #DBA116;
}
.npop-bar .npop-accent {
  color: #DBA116;
}
.npop-bar__cta {
  flex-shrink: 0;
  width: 152px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DBA116;
  color: #FFFFFF;
  border: none;
  border-radius: 0px;
  font-family: "SFProText", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: background 200ms ease;
}
.npop-bar__cta:hover {
  background: #FBC735;
}
@media (max-width: 768px) {
  .npop-bar__cta {
    width: 100%;
    font-size: 14px;
  }
}
.npop-bar__close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
}
@media (max-width: 768px) {
  .npop-bar__close {
    position: absolute;
    top: 12px;
    right: 0px;
    transform: none;
  }
  .npop-bar__close svg {
    width: 24px;
    height: 24px;
  }
}

.npop-modal {
  position: fixed;
  inset: 0;
  z-index: 999998;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.npop-modal[hidden] {
  display: none !important;
}
.npop-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 29, 61, 0.55);
  opacity: 0;
  transition: opacity 200ms ease;
}
.npop-modal.is-open .npop-modal__backdrop {
  opacity: 1;
}
.npop-modal__dialog {
  position: relative;
  background: #FFFFFF;
  border-radius: 0;
  box-shadow: 0px 12px 40px 0px rgba(8, 26, 73, 0.18);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 44px 40px;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}
@media (max-width: 768px) {
  .npop-modal__dialog {
    padding: 40px 24px 32px;
  }
}
.npop-modal.is-open .npop-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.npop-modal.is-success .npop-modal__dialog {
  max-width: 440px;
}
.npop-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #6D6969;
  cursor: pointer;
  padding: 4px;
}
.npop-modal__title {
  margin: 0 0 14px;
  font-family: "PT Serif", serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #0C1D3D;
  text-align: center;
  text-transform: capitalize;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.npop-modal__title .npop-accent {
  color: #1A4C8B;
}
@media (max-width: 768px) {
  .npop-modal__title {
    font-size: 24px;
  }
}
.npop-modal__subtitle {
  margin: 0 0 18px;
  font-family: "SFProText", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: #6D6969;
  text-align: center;
}
.npop-modal__trust {
  margin: 0 0 26px;
  font-family: "SFProText", sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #939597;
  text-align: center;
}
.npop-modal__success-state {
  text-align: center;
}

.npop-form__hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.npop-form__group {
  margin-bottom: 16px;
}
.npop-form__label {
  display: block;
  font-family: "SFProText", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #6D6969;
  margin-bottom: 6px;
}
.npop-form__input {
  width: 100%;
  max-width: 480px;
  height: 48px;
  box-sizing: border-box;
  border: 1px solid #EBE9E6;
  border-radius: 8px;
  padding: 0 14px;
  font-family: "SFProText", sans-serif;
  font-size: 15px;
  color: #0C1D3D;
  transition: border-color 200ms ease;
}
.npop-form__input:focus {
  outline: none;
  border-color: #1A4C8B;
}
.npop-form__input::-moz-placeholder {
  color: #B5B0AC;
}
.npop-form__input::placeholder {
  color: #B5B0AC;
}
.npop-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "SFProText", sans-serif;
  font-size: 13px;
  color: #6D6969;
  line-height: 1.5;
  margin-bottom: 30px;
  cursor: pointer;
  margin-top: 25px;
}
.npop-form__consent input {
  margin-top: 3px;
  flex-shrink: 0;
}
.npop-form__consent a {
  color: #0C1D3D;
  font-weight: 700;
  text-decoration: none;
}
.npop-form__error {
  color: #B3261E;
  font-size: 13px;
  margin: -8px 0 14px;
  text-align: center;
}
.npop-form__submit {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1A4C8B;
  color: #FFFFFF;
  border: none;
  border-radius: 0px;
  padding: 0 20px;
  font-family: "SFProText", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  cursor: pointer;
  transition: filter 200ms ease, opacity 200ms ease;
}
.npop-form__submit:hover {
  filter: brightness(1.1);
}
.npop-form__submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.npop-success__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}/*# sourceMappingURL=newsletter-popup.css.map */