#main_content {
  margin-top: 96px;
}

.header-fixed {
  position: fixed;
  display: flex;
  justify-content: center;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: transparent;
  z-index: 100;
  padding: 16px 8px;
  background-clip: padding-box;
  border-bottom: solid 1px transparent;
  transition: background-color 150ms;
}
body.scrolled .header-fixed {
  backdrop-filter: blur(32px);
  background: rgba(255, 255, 255, 0.8);
}

.header-fixed__inner {
  flex: 1;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-fixed .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-fixed .logo img {
  width: 192px;
}
.header-fixed .nav {
  flex: 1;
}
.header-fixed .navigation {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header-fixed .navigation a {
  margin-left: 12px;
}
.header-fixed .navigation a.button--tertiary.button--outline {
  color: #B140D9;
  background-color: rgba(255, 255, 255, 0.2);
  border: solid 2px #B140D9;
}
.header-fixed .navigation a.button--tertiary.button--outline:hover {
  color: #B140D9;
  background-color: rgba(255, 255, 255, 0.4);
}
.header-fixed .navigation a.button--tertiary.button--outline:active {
  color: #650D85;
  background-color: rgba(255, 255, 255, 0.5);
}
.header-fixed .navigation a:not(.button) {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #650D85;
  padding: 8px 0;
  margin-left: 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.header-fixed .navigation a:not(.button) .icon {
  transform: rotate(180deg);
  transition: transform 200ms;
}
.header-fixed .navigation a.button {
  text-transform: none;
}
.header-fixed .navigation li {
  position: relative;
}
.header-fixed .navigation li.spacer {
  flex: 1;
}
.header-fixed .navigation ul {
  position: absolute;
  top: 48px;
  left: 0px;
  display: block;
  list-style: none;
  padding: 16px;
  margin: 0;
  backdrop-filter: blur(32px);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.08);
}
.header-fixed .navigation ul a:not(.button-alt) {
  padding: 8px 16px;
  margin-left: 0;
  border-radius: 8px;
}
.header-fixed .navigation ul a:not(.button-alt):hover {
  background-color: #DE91FA;
}
.header-fixed .navigation ul {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 200ms, transform 200ms;
}
.header-fixed .navigation ul::before {
  position: absolute;
  content: "";
  top: -20px;
  height: 20px;
  left: 0;
  right: 0;
}
.header-fixed .navigation li:has(ul):hover a span.icon {
  transform: rotate(0deg);
}
.header-fixed .navigation li:has(ul):hover ul {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.header-fixed .navigation .sign_in a {
  margin-left: 8px;
}
.header-fixed .hamburger {
  display: none;
  cursor: pointer;
}
.header-fixed .hamburger label {
  cursor: pointer;
}
.header-fixed .hamburger .icon {
  font-size: 32px;
  margin: 4px;
  transition: color 150ms;
}
body.scrolled .header-fixed .hamburger .icon {
  color: #612A75;
}

.header-fixed--inverted .hamburger .icon {
  color: #fff;
}
@media (min-width: 992px) {
  body:not(.scrolled) .header-fixed--inverted .logo img {
    filter: brightness(0) invert(1);
  }
  body:not(.scrolled) .header-fixed--inverted .navigation li:not(.plans_and_pricing) a {
    color: #fff;
  }
  body:not(.scrolled) .header-fixed--inverted ul li ul {
    background: rgba(0, 0, 0, 0.8);
  }
}
@media (max-width: 991px) {
  body:not(.scrolled) .header-fixed--inverted:not(.open) .logo img {
    filter: brightness(0) invert(1);
  }
}

@media (min-width: 992px) {
  body.public-layout:not(.scrolled):has(.hero_fullscreen) .header-fixed--inverted a.button--tertiary.button--outline {
    color: #F0D4FA;
    border-color: #F0D4FA;
    background: none;
    backdrop-filter: blur(32px);
  }
  body.public-layout:not(.scrolled):has(.hero_fullscreen) .header-fixed--inverted a.button--tertiary.button--outline:hover {
    background: none;
    color: #DE91FA !important;
    border-color: #DE91FA;
  }
}

/* Mobile - Collapse nav into hamburger */
@media (max-width: 991px) {
  .header-fixed .logo {
    z-index: 1;
  }
  .header-fixed.open {
    backdrop-filter: none;
    background: #fff;
  }
  body.scrolled .header-fixed {
    backdrop-filter: none;
    background: #fff;
  }
  .header-fixed .hamburger {
    display: block;
    z-index: 1;
  }
  .header-fixed .nav {
    position: fixed;
    top: 0;
    right: -100vw;
    bottom: 0px;
    left: 0px;
    padding-top: 65px;
    width: 100vw;
    overflow: hidden;
    background-color: #fff;
    opacity: 1;
    transform: translate3d(100vw, 0, 0);
  }
  .header-fixed .nav.transitioning {
    transition: transform 250ms, opacity 150ms;
  }
  .header-fixed.open {
    background-color: #fff;
  }
  .header-fixed.open .hamburger .icon {
    color: #612A75;
  }
  .header-fixed.open .nav {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .header-fixed.open .navigation li ul {
    opacity: 1;
  }
  .header-fixed .navigation {
    flex-direction: column;
  }
  .header-fixed .navigation li {
    padding: 0;
    margin: 0;
  }
  .header-fixed .navigation li.plans_and_pricing a, .header-fixed .navigation li.sign_in a {
    margin: 8px 8px 0 8px;
    text-align: center;
  }
  .header-fixed .navigation li a:not(.button) {
    color: #21252B;
    margin: 0;
    padding: 16px;
    border-bottom: 1px solid #E6E9ED;
  }
  .header-fixed .navigation li a:not(.button) span.icon {
    display: none;
  }
  .header-fixed .navigation li a:not(.button)[href]:hover {
    background-color: #EDEFF2;
  }
  .header-fixed .navigation li ul {
    display: block;
    position: static;
    padding: 0;
    pointer-events: all;
    transform: translateY(0);
    background: none;
    border: none;
    box-shadow: none;
  }
  .header-fixed .navigation li ul li a:not(.button-alt) {
    padding-left: 32px;
    border-radius: 0;
  }
}
.footer {
  color: #fff;
  position: relative;
  text-align: left;
  padding: 20px 0;
}

.footer .section-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.footer .section-body a {
  color: #efefef;
  text-decoration: none;
  font-weight: 300;
}

.footer .section-body a:hover {
  color: #63c8d9;
}

.footer .section-body ul {
  display: block;
  float: left;
  margin: 20px 15px;
  padding: 0;
  width: calc(16% - 30px);
}

.footer .section-body ul li {
  font-size: 15px;
  list-style-type: none;
  margin-bottom: 10px;
  line-height: 18px;
}

.footer .section-body ul li.footer__nav-header {
  font-weight: 600;
  margin-bottom: 20px;
}

.footer .section-body ul li.footer__social-links {
  margin-top: 20px;
}

.footer .section-body ul li a {
  display: inline-block;
}

.footer .section-body ul li .social-icon {
  width: 22px;
  height: 22px;
}

.footer .section-body ul li .social-icon .icon-draw,
.footer .section-body ul li .social-icon:hover .icon-draw {
  fill: currentColor;
}

.footer .footer__strip {
  width: 70%;
  margin: 40px auto;
  line-height: 1.2;
}

.footer .footer__strip .footer__copyright {
  float: right;
  margin: 5px 0 0;
  font-size: 18px;
}

.footer .footer__strip .footer__logo {
  display: inline-block;
  text-decoration: none;
}

.footer .footer__strip .footer__logo img {
  width: 200px;
  vertical-align: middle;
}

.background--purple-dark {
  background-color: #421B50;
}

.footer nav {
  background-color: #421B50;
  box-shadow: none;
}

.footer nav ul li:hover,
.footer nav ul li.active {
  background-color: transparent;
}

.footer nav ul li {
  float: none;
  transition: none;
}

.footer nav ul a {
  font-size: 15px;
  line-height: 18px;
  padding: 0;
}

@media (max-width: 599px) {
  .footer .footer__strip {
    max-width: 250px;
    text-align: center;
  }
  .footer .footer__strip .footer__copyright {
    float: none;
  }
  .footer .footer__strip .footer__logo {
    display: block;
    margin-bottom: 10px;
  }
  .footer .section-body ul {
    width: calc(50% - 30px);
  }
  .phone-br {
    display: block;
    clear: both;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .footer .footer__strip {
    text-align: center;
  }
  .footer .footer__strip .footer__copyright {
    float: none;
  }
  .footer .footer__strip .footer__logo {
    display: block;
    margin-bottom: 10px;
  }
  .footer .section-body ul {
    width: calc(32% - 30px);
  }
  .footer .section-body .tablet-br {
    display: block;
    clear: both;
  }
}
/*
  Icons almost always have `vertical-align: middle;`, however this makes the icon
  feel like it is positioned too low (long story) so by nudging the position up
  a tiny bit the icon feels like it's properly in the middle.
*/
.icon {
  position: relative;
  top: -1px;
  box-sizing: content-box;
  font-size: 1em;
  line-height: 1;
  vertical-align: middle;
  text-align: center;
  display: inline-block;
  font-style: normal;
  font-weight: 600;
  font-variation-settings: normal;
}

.icon,
.icon__svg {
  height: 1em;
  width: 1em;
}

.icon__svg {
  display: block;
  fill: currentColor;
  /* In IE, clicks that are registered on an SVG element
     get completely swallowed, so we must explicitly disable
     pointer events (the parent HTML element will still
     receive pointer events so it's ok) */
  pointer-events: none;
}

/* Variations */
.icon.icon--rotate-45 {
  transform: rotate(45deg);
}

.icon.icon--opacity-50 {
  opacity: 0.5;
}

/* Custom icon stacks */
.icon-stack {
  position: relative;
}

.icon-stack.icon-stack--expand > * {
  vertical-align: middle;
}

.icon-stack.icon-stack--expand > :first-child {
  transform: translate(-0.1em, 0.2em) scale(0.8) rotate(-45deg);
}

.icon-stack.icon-stack--expand > :last-child {
  margin-left: -1em;
  transform: translate(0.1em, -0.2em) scale(0.8) rotate(-45deg);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes reverse-spin {
  to {
    transform: rotate(-360deg);
  }
}
.spinner {
  display: inline-block;
  border: 0.1em solid rgba(0, 0, 0, 0.15);
  border-top-color: #6b2c81;
  font-size: 20px;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  box-sizing: border-box;
  animation: spin 1s linear infinite;
}

.spinner-inverse {
  border-color: rgba(255, 255, 255, 0.15);
  border-top-color: white;
}

.spinner-reverse {
  border-top-color: #431d50;
  animation: reverse-spin 2s linear infinite;
}

.spinner-inverse.spinner-reverse {
  border-top-color: rgba(255, 255, 255, 0.5);
}

.spinner-centered {
  display: block;
  margin: 0 auto;
}

button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
  font-size: inherit;
  font-family: inherit;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: inherit;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: none;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
  font-size: inherit;
  font-family: inherit;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  outline: inherit;
  border-radius: 100px;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  gap: 10px;
}
.button:hover {
  cursor: pointer;
}
.button:focus-visible {
  outline-offset: 4px;
  outline: 4px solid #4462FA;
}
.button {
  padding: 0 22px;
  font-size: 18px;
  height: 52px;
  color: #fff;
  background-color: #118A6D;
}
.button:hover {
  background-color: #146653;
}
.button:active {
  background-color: #13362D;
}
.button .icon {
  font-size: 1.25em;
  top: 0;
}
.button--lg {
  padding: 0 40px;
  font-size: 28.43px;
  height: 72px;
}
.button--sm {
  padding: 0 16px;
  font-size: 16px;
  height: 40px;
}
.button--sm .icon {
  font-size: 1em;
}
.button--xs {
  padding: 0 16px;
  font-size: 14px;
  height: 36px;
}
.button--xs .icon {
  font-size: 1em;
}
.button--text {
  background: none;
  color: #454C57;
  font-weight: normal;
}
.button--text:hover {
  background: none;
  color: #21252B;
}
.button--light {
  color: #008062;
  background-color: #B0FAE7;
}
.button--light:hover {
  color: #13362D;
  background-color: #73E5CB;
}
.button--light:active {
  color: #13362D;
  background-color: #7DCCBA;
}
.button--secondary {
  color: #008062;
  background-color: #EDEFF2;
}
.button--secondary:hover {
  background-color: #E6E9ED;
}
.button--secondary:active {
  background-color: #D4D8DE;
}
.button--secondary.button--light {
  color: #7F4694;
  background-color: #fff;
}
.button--secondary.button--light:hover {
  background-color: #E6E9ED;
}
.button--secondary.button--light:active {
  background-color: #D4D8DE;
}
.button--tertiary {
  color: #fff;
  background-color: #7F4694;
}
.button--tertiary:hover {
  background-color: #612A75;
}
.button--tertiary:active {
  background-color: #502261;
}
.button--tertiary.button--light {
  color: #650D85;
  background-color: #F0D4FA;
}
.button--tertiary.button--light:hover {
  color: #3A084D;
  background-color: #DE91FA;
}
.button--tertiary.button--light:active {
  color: #3A084D;
  background-color: #B695C2;
}
.button--danger {
  color: #fff;
  background-color: #F75C57;
}
.button--danger:hover {
  background-color: #B3003C;
}
.button--danger:active {
  background-color: #5C2034;
}
.button--danger.button--light {
  color: #B22C27;
  background-color: #FFCBC9;
}
.button--danger.button--light:hover {
  color: #662A28;
  background-color: #FF938F;
}
.button--danger.button--light:active {
  color: #662A28;
  background-color: #F98480;
}
.button:disabled, .button--disabled {
  color: #66717F;
  background-color: #E6E9ED;
  cursor: default;
}
.button:disabled:hover, .button--disabled:hover {
  background-color: #E6E9ED;
}
.button--full-width {
  width: 100%;
}
.button--no-caps {
  text-transform: none;
}
.button {
  padding-bottom: 0.075em;
}

.public-layout {
  background: #F2F2F2;
}
.public-layout h1,
.public-layout h2,
.public-layout h3,
.public-layout h4,
.public-layout h5,
.public-layout h6,
.public-layout p {
  margin: 0;
}
.public-layout__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 172px;
  margin-bottom: 100px;
}
.public-layout__flash {
  max-width: 710px;
  width: calc(100% - 10px);
  margin-bottom: 60px;
  font-style: italic;
  font-variation-settings: "ital" 125;
}
.public-layout__panel {
  --padding: 80px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  text-wrap: balance;
  max-width: 710px;
  width: calc(100% - 10px);
  padding: 80px var(--padding);
  border-radius: 48px;
  border: 1px solid #B140D9;
  background: #F4F2F7;
}
@media (max-width: 767px) {
  .public-layout__panel {
    --padding: 40px;
  }
}
.public-layout__panel h1,
.public-layout__panel h2,
.public-layout__panel h3,
.public-layout__panel h4,
.public-layout__panel h5,
.public-layout__panel h6 {
  color: #650D85;
  margin-bottom: 0.3em;
}
.public-layout__panel-code-field {
  max-width: 320px;
  margin: 24px auto;
}
.public-layout__panel-code-field input {
  font-size: 28px;
  line-height: 32px;
  text-align: center;
  padding: 10px;
  margin: 0;
  border: none;
  border-radius: 5px;
  display: block;
  width: 100%;
  font-weight: bold;
}
.public-layout__panel-image {
  margin: 0 calc(var(--padding) * -1);
}
.public-layout__panel-image > img {
  display: block;
  width: 100%;
}
.public-layout .hero_fullscreen {
  color: white;
  background: #009E79;
  background-repeat: repeat;
  background-size: 1500px 551px;
  padding-top: 100px;
}
.public-layout .hero_fullscreen #main_content {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 78px;
}
.public-layout .hero_fullscreen .slogan {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  padding-bottom: 40px;
}
.public-layout .hero_fullscreen .slogan img {
  transform: translateY(-25px);
  width: 255px;
}
.public-layout .hero_fullscreen .slogan span {
  flex-basis: 50%;
}
.public-layout .credit-card-details iframe {
  width: 100%;
}
.public-layout .credit-card-details:not(.credit-card-details--loading) .credit-card-details__loading, .public-layout .credit-card-details:not(.credit-card-details--success) .credit-card-details__success, .public-layout .credit-card-details:not(.credit-card-details--failure) .credit-card-details__failure {
  display: none;
}
@media (max-width: 767px) {
  .public-layout .hero_fullscreen #main_content {
    padding: 0 32px;
  }
  .public-layout .hero_fullscreen .slogan span {
    flex-basis: 100%;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
  }
  .public-layout .hero_fullscreen .slogan img {
    width: 140px;
  }
  .public-layout .container {
    margin: 0 8px;
  }
}
.public-layout .account__box {
  margin: 40px auto;
  padding: 40px;
}
.public-layout .account__box h6,
.public-layout .account__box h6 + p {
  margin-bottom: 20px;
}
.public-layout .account__box .button.button--full-width {
  margin-top: 20px;
}
.public-layout .account__box .continue-field {
  margin-top: 16px;
  text-align: center;
}
.public-layout fieldset.inner {
  margin-top: 3rem;
}
.public-layout fieldset.inner p {
  opacity: 1;
  line-height: 1.4;
}
.public-layout fieldset.inner small {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 0;
  color: #000 !important;
}
.public-layout .daterangepicker td {
  line-height: 19px;
}
.public-layout .info-message,
.public-layout .alert-message,
.public-layout .flash-message {
  padding: 1rem 0;
  text-align: center;
}
.public-layout .info-message,
.public-layout .flash-message[data-type=info],
.public-layout .flash-message[data-type=notice] {
  background: #80CFBC;
}
.public-layout .alert-message,
.public-layout .flash-message[data-type=alert] {
  background: #E26560;
  color: #FFFFFF;
}
.public-layout .info-message > p,
.public-layout .alert-message > p,
.public-layout .flash-message > p {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
  opacity: 1;
}
.public-layout .info-message > p > a,
.public-layout .alert-message > p > a,
.public-layout .flash-message > p > a {
  color: inherit;
  text-decoration: underline;
}
.public-layout .subscribe-to-emails-message {
  text-align: center;
  display: block;
  line-height: 1.2rem;
  margin-top: 35px;
}
.public-layout {
  /* Checkbox & fieldset styles */
}
.public-layout .unsubscribe-check-boxes {
  border: 1px solid #ccc;
  border-radius: 10px;
  text-align: left;
}
.public-layout .unsubscribe-check-boxes legend {
  padding: 0 5px;
  font-weight: 600;
}
.public-layout .unsubscribe-check-boxes p:first-of-type {
  margin-top: 15px;
}
.public-layout .unsubscribe-check-boxes p:last-of-type {
  margin-bottom: 30px;
}
.public-layout .unsubscribe-check-boxes [type=checkbox] {
  position: relative;
  left: 0px;
  cursor: pointer;
}
.public-layout .unsubscribe-check-boxes [type=checkbox] + label {
  padding-left: 10px;
  cursor: pointer;
  display: inline-block;
}
.public-layout .unsubscribe-check-boxes [type=checkbox]:disabled,
.public-layout .unsubscribe-check-boxes [type=checkbox]:disabled + label {
  cursor: default;
  pointer-events: none;
}

@font-face {
  font-family: "ProximaNova";
  src: url(https://assets.pocketsmith.com/fonts/proximanova-semibold.woff?v1-9d25802ddfa1ab9b3e0b3a793c4136b2) format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url(https://assets.pocketsmith.com/fonts/proximanova-regular.woff?v1-711584ccb5e518d75d946557b4cd5372) format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url(https://assets.pocketsmith.com/fonts/proximanova-light.woff?v1-9b57dafe26a9f1e5a142ff2a55a27bc5) format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "ProximaNova";
  src: url(https://assets.pocketsmith.com/fonts/proximanova-semiboldit.woff?v1-9694d75f9468a04e4028618387d95e8f) format("woff");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "ProximaNova";
  src: url(https://assets.pocketsmith.com/fonts/proximanova-regularit.woff?v1-7dfc525dd7e87c76256dcea0abf9ce1a) format("woff");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "ProximaNova";
  src: url(https://assets.pocketsmith.com/fonts/proximanova-lightit.woff?v1-8580c500ddb1be9351efb113dc358938) format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "ProximaVara";
  src: url(https://assets.pocketsmith.com/fonts/proximavara.woff2?v1-467915bbf9aa5b0d9c96f92c3c74b29b) format("woff2-variations");
  font-weight: 100 900;
  font-stretch: 50% 100%;
  font-display: swap;
  font-synthesis: none;
}
@font-face {
  font-family: "ProximaVara";
  src: url(https://assets.pocketsmith.com/fonts/proximavara.woff2?v1-467915bbf9aa5b0d9c96f92c3c74b29b) format("woff2-variations");
  font-weight: 100 900;
  font-stretch: 50% 100%;
  font-display: swap;
  font-synthesis: none;
  font-style: italic;
  font-variation-settings: "ital" 125;
}
@font-face {
  font-family: "Raleway";
  src: url(https://assets.pocketsmith.com/fonts/raleway-light.woff?v1-e0621c851c98d15e3d225b58e60b1df3) format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url(https://assets.pocketsmith.com/fonts/raleway-regular.woff?v1-592669e43599a61f742748fe415baba8) format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  src: url(https://assets.pocketsmith.com/fonts/raleway-semibold.woff?v1-246f2e0bc10f22ec86399ca930b67537) format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "RalewayVara";
  font-weight: 100 900;
  font-display: swap;
  font-synthesis: none;
  src: url(https://assets.pocketsmith.com/fonts/ralewayvara.woff2?v1-6d2e91f3fab4e2b9abab842c0f2a9c2e) format("woff2-variations");
}
@font-face {
  font-family: "Bely";
  src: url(https://assets.pocketsmith.com/fonts/bely-regular.woff2?v1-61c7e339a39158816d53ca1b4e88e0c7) format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Bely";
  src: url(https://assets.pocketsmith.com/fonts/bely-regularit.woff2?v1-cce67d32e19cf5e3942b903872abcd9e) format("woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "Bely";
  src: url(https://assets.pocketsmith.com/fonts/bely-bold.woff2?v1-94d32ef0091e749371ac580e4580084f) format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Bely";
  src: url(https://assets.pocketsmith.com/fonts/bely-boldit.woff2?v1-f8fe7d536122b52e4d6be3b270521547) format("woff2");
  font-weight: bold;
  font-style: italic;
}
@keyframes industryFeaturesSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes industryFeaturesSlideOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(10%);
  }
}
.industry-leading {
  display: block;
  padding: 0;
  background: linear-gradient(180deg, #E4CFED 0%, #ECF2F6 100%);
}
@media (max-width: 991px) {
  .industry-leading {
    padding: 0 16px;
  }
}
@media (max-width: 767px) {
  .industry-leading {
    padding: 40px 0 0 0;
  }
}
.industry-leading .plans__section-body {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin: 0 auto;
  padding: 80px 0;
  max-width: 960px;
}
@media (max-width: 767px) {
  .industry-leading .plans__section-body {
    padding-top: 0;
    grid-template-columns: 1fr;
  }
}
.industry-leading__headings, .industry-leading__bentos {
  grid-column-start: 1;
  grid-column-end: 3;
}
.industry-leading h2 {
  color: #7F4694;
  margin: 0;
  text-align: center;
}
@media (max-width: 767px) {
  .industry-leading h2 {
    font-size: 28px;
  }
}
.industry-leading__heading-divider {
  margin: 32px auto 48px auto;
  width: 120px;
  height: 2px;
  background-color: #7F4694;
}
.industry-leading__header {
  display: flex;
  gap: 80px;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .industry-leading__header {
    display: block;
    grid-column-start: 1;
  }
}
.industry-leading__slides-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 16px 0;
}
@media (max-width: 767px) {
  .industry-leading__slides-nav {
    position: sticky;
    top: 72px;
    z-index: 1;
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    padding: 16px;
    backdrop-filter: blur(16px);
    border-radius: 0 0 16px 16px;
    transition: background 500ms;
  }
}
@media (max-width: 767px) {
  .industry-leading__slides-nav.fixed {
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
}
.industry-leading__button {
  all: unset;
  cursor: pointer;
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: "Bely", sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .industry-leading__button {
    font-size: 12px;
    line-height: 16px;
    flex-direction: column;
    font-weight: 200;
    gap: 8px;
  }
}
.industry-leading__button-divider {
  margin: 8px 0;
  flex: 1;
  width: 1px;
  margin-left: 24px;
  background-color: #7F4694;
}
@media (max-width: 767px) {
  .industry-leading__button-divider {
    display: none;
  }
}
.industry-leading__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #fff;
  border-radius: 24px;
  background-color: #8D98A8;
}
.industry-leading__button-icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.industry-leading__header-slides {
  position: relative;
  flex: 1;
  height: 400px;
  pointer-events: none;
}
.industry-leading__header-slides .active {
  opacity: 1;
  animation: industryFeaturesSlideIn 0.4s ease forwards;
  pointer-events: all;
}
.industry-leading__header-slides .removing {
  animation: industryFeaturesSlideOut 0.4s ease forwards;
}
@media (max-width: 575px) {
  .industry-leading__header-slides {
    height: 600px;
  }
}
.industry-leading__header-slides .industry-leading__bento-box {
  opacity: 0;
}
@media (max-width: 767px) {
  .industry-leading__header-slides .industry-leading__bento-box {
    border-radius: 0;
    box-shadow: none;
  }
}
@media (max-width: 575px) {
  .industry-leading__header-slides .industry-leading__bento-box {
    background-position: 50% 100%;
  }
}
.industry-leading__bentos {
  position: relative;
  margin: 40px auto 0 auto;
}
@media (max-width: 767px) {
  .industry-leading__bentos {
    margin: 0 auto;
  }
}
.industry-leading__bento {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .industry-leading__bento {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.industry-leading__bento.active {
  display: grid;
  animation: industryFeaturesSlideIn 0.4s ease forwards;
}
.industry-leading__bento.removing {
  position: absolute;
  animation: industryFeaturesSlideOut 0.4s ease forwards;
}
.industry-leading__bento-col {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (max-width: 767px) {
  .industry-leading__bento-col {
    gap: 0;
  }
}
.industry-leading__bento-box {
  padding: 32px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 10px 10px 0px #502261;
}
.industry-leading__bento-box label {
  font-size: 12px;
  text-transform: uppercase;
}
.industry-leading__bento-box h3 {
  font-family: "Bely", sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 200;
}
.industry-leading__bento-box h4 {
  font-family: "Bely", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 200;
}
.industry-leading__bento-box img {
  width: 100%;
}
@media (max-width: 767px) {
  .industry-leading__bento-box {
    padding: 64px 32px;
  }
}
.industry-leading__bento-box.bento-box-visualisation, .industry-leading__bento-box.bento-box-reporting, .industry-leading__bento-box.bento-box-transactions, .industry-leading__bento-box.bento-box-budgeting {
  position: absolute;
  height: 400px;
  background-size: cover;
}
@media (max-width: 575px) {
  .industry-leading__bento-box.bento-box-visualisation, .industry-leading__bento-box.bento-box-reporting, .industry-leading__bento-box.bento-box-transactions, .industry-leading__bento-box.bento-box-budgeting {
    height: 600px;
  }
}
.industry-leading__bento-box.bento-box-visualisation {
  background-image: url(https://assets.pocketsmith.com/images/plans/visualisation/banner.jpg?v1-2edf602247c0ac7a664bb0869b572412);
}
@media (max-width: 575px) {
  .industry-leading__bento-box.bento-box-visualisation {
    background-image: url(https://assets.pocketsmith.com/images/plans/visualisation/banner-mobile.jpg?v1-d06742edf03feae7fce317e78ffb41ad);
  }
}
.industry-leading__bento-box.bento-box-reporting {
  background-image: url(https://assets.pocketsmith.com/images/plans/reporting/banner.jpg?v1-b1290f2c6afbef6662cd6656e7b0e115);
}
@media (max-width: 575px) {
  .industry-leading__bento-box.bento-box-reporting {
    background-image: url(https://assets.pocketsmith.com/images/plans/reporting/banner-mobile.jpg?v1-2da5106e8d64fa5ff29e79fb532e0afb);
  }
}
.industry-leading__bento-box.bento-box-transactions {
  background-image: url(https://assets.pocketsmith.com/images/plans/transactions/banner.png?v1-ec7a7e9e616357bcf1faba224e5dff00);
}
@media (max-width: 575px) {
  .industry-leading__bento-box.bento-box-transactions {
    background-image: url(https://assets.pocketsmith.com/images/plans/transactions/banner-mobile.jpg?v1-74598e9a59186b383632d25f6b662bfc);
  }
}
.industry-leading__bento-box.bento-box-budgeting {
  background-image: url(https://assets.pocketsmith.com/images/plans/budgeting/banner.png?v1-1d4c712840079408b681a3edcee50448);
}
@media (max-width: 575px) {
  .industry-leading__bento-box.bento-box-budgeting {
    background-image: url(https://assets.pocketsmith.com/images/plans/budgeting/banner-mobile.jpg?v1-e41d7eecbe2dafb1b8e2c56347c12331);
  }
}
.industry-leading__bento-box--red {
  box-shadow: 10px 10px 0px #E26560;
}
.industry-leading__bento-box--blue {
  box-shadow: 10px 10px 0px #609FC7;
}
.industry-leading__bento-box--yellow {
  box-shadow: 10px 10px 0px #D8B95B;
}
.industry-leading__bento-box--green {
  box-shadow: 10px 10px 0px #009E79;
}
.industry-leading__bento .industry-leading__bento-box {
  background: linear-gradient(90deg, #EBEEFF, #FFF7F0);
}
@media (max-width: 767px) {
  .industry-leading__bento .industry-leading__bento-box {
    border-radius: 0;
    box-shadow: none;
  }
}
.industry-leading__bento-box-layout-left {
  height: 100%;
  max-width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .industry-leading__bento-box-layout-left {
    max-width: 45%;
  }
}
@media (max-width: 575px) {
  .industry-leading__bento-box-layout-left {
    max-width: none;
    height: auto;
  }
}
.industry-leading__bento-box-layout-right {
  display: flex;
  gap: 16px;
}
.industry-leading__bento-box-layout-right label {
  display: block;
  margin-bottom: 16px;
}
.industry-leading__bento-box-layout-right img {
  width: 50%;
  max-width: 420px;
}
@media (max-width: 767px) {
  .industry-leading__bento-box-layout-right {
    flex-direction: column;
  }
  .industry-leading__bento-box-layout-right > div {
    order: 1;
  }
  .industry-leading__bento-box-layout-right > img {
    width: 80%;
    margin: 32px auto 0 auto;
    order: 2;
  }
}
.industry-leading__bento-box-layout-bottom {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  flex-direction: column;
}
.industry-leading__bento-box-layout-bottom label {
  display: block;
  margin-bottom: 16px;
}
.industry-leading__bento-box-layout-bottom img {
  flex: 1;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .industry-leading__bento-box-layout-bottom > div {
    order: 1;
  }
  .industry-leading__bento-box-layout-bottom > img {
    width: 80%;
    margin: 32px auto 0 auto;
    order: 2;
  }
}
.industry-leading__bg {
  position: absolute;
  top: -180px;
  height: 380px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.industry-leading__bgs {
  height: 200px;
  position: relative;
}
.industry-leading__bgs [data-story=visualisation] {
  background-image: url(https://assets.pocketsmith.com/images/plans/visualisation/bg.png?v1-273e15978c14182846329fab65d54bc0);
  background-position: bottom left;
}
.industry-leading__bgs [data-story=reporting] {
  background-image: url(https://assets.pocketsmith.com/images/plans/reporting/bg.png?v1-1affe509a4ce8b0855000c1ebb86ee3d);
  background-position: bottom left;
}
.industry-leading__bgs [data-story=transactions] {
  background-image: url(https://assets.pocketsmith.com/images/plans/transactions/bg.png?v1-0ef24712b4264a094ad809e7d07a64c1);
  background-position: bottom right;
}
.industry-leading__bgs [data-story=budgeting] {
  background-image: url(https://assets.pocketsmith.com/images/plans/budgeting/bg.png?v1-61fb48d07b1563ec8a1676c34b033322);
}

.industry-leading[data-story=visualisation] button[data-story=visualisation] {
  color: #7F4694;
}
.industry-leading[data-story=visualisation] button[data-story=visualisation] div {
  background-color: #7F4694;
}
.industry-leading[data-story=visualisation] div[data-story=visualisation] {
  opacity: 1;
}

.industry-leading[data-story=reporting] button[data-story=reporting] {
  color: #7F4694;
}
.industry-leading[data-story=reporting] button[data-story=reporting] div {
  background-color: #7F4694;
}
.industry-leading[data-story=reporting] div[data-story=reporting] {
  opacity: 1;
}

.industry-leading[data-story=transactions] button[data-story=transactions] {
  color: #7F4694;
}
.industry-leading[data-story=transactions] button[data-story=transactions] div {
  background-color: #7F4694;
}
.industry-leading[data-story=transactions] div[data-story=transactions] {
  opacity: 1;
}

.industry-leading[data-story=budgeting] button[data-story=budgeting] {
  color: #7F4694;
}
.industry-leading[data-story=budgeting] button[data-story=budgeting] div {
  background-color: #7F4694;
}
.industry-leading[data-story=budgeting] div[data-story=budgeting] {
  opacity: 1;
}

body {
  margin: 0;
  font-size: 16px;
}

/* Account shared */
.account__box {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 56px 40px;
  border: 0;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
  font-size: 18px;
  line-height: 24px;
}
.account__box h2 {
  color: #502261;
  line-height: 32px;
  margin: 0 0 32px 0;
}
.account__box h2#loading_message {
  margin: 0;
}
.account__box a:not(.button) {
  color: #4462FA;
}
.account__box label {
  color: #303741;
  font-size: 16px;
}
.account__box p {
  font-size: 16px;
  opacity: 1;
}
.account__box .account__box-help-message {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  margin: 16px 0 0;
  font-variation-settings: "ital" 125;
}
.account__box .account__box-help-message img {
  height: 24px;
  margin-right: 16px;
}

.account__box + .account__box {
  margin-top: 32px;
}

.account__field-block {
  margin-bottom: 16px;
}
.account__field-block input, .account__field-block select, .account__field-block textarea {
  display: block;
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: none;
  border-bottom: solid 2px #008062;
  background: none;
  transition: border-color 100ms;
  font-size: 16px;
  line-height: 40px;
}
.account__field-block input:focus, .account__field-block select:focus, .account__field-block textarea:focus {
  border-color: #7DCCBA;
}
.account__field-block select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(https://assets.pocketsmith.com/icons.svg?v1-172ccd825784c578f8bb6c47ef8c7e6c#icon--keyboard_arrow_down);
  background-position: calc(100% - 8px) 50%;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  border-radius: 0;
}
.account__field-block textarea {
  display: block;
  height: auto;
  background-color: #EDEFF2;
}
.account__field-block input:focus, .account__field-block select:focus {
  outline: none;
}
.account__field-block .fieldWithErrors {
  display: block;
}
.account__field-block .fieldWithErrors input, .account__field-block .fieldWithErrors select, .account__field-block .fieldWithErrors textarea {
  border-color: #D15B57;
}
.account__field-block .fieldWithErrors input:focus, .account__field-block .fieldWithErrors select:focus, .account__field-block .fieldWithErrors textarea:focus {
  border-color: #E26560;
}

.account__field-block--inline,
.account__field-block--inline-alt {
  position: relative;
}
.account__field-block--inline label,
.account__field-block--inline-alt label {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 40px;
  flex-shrink: 0;
  text-align: center;
  line-height: 40px;
}
.account__field-block--inline input, .account__field-block--inline select, .account__field-block--inline textarea,
.account__field-block--inline-alt input,
.account__field-block--inline-alt select,
.account__field-block--inline-alt textarea {
  padding-left: 40px;
}
.account__field-block--inline .fieldWithErrors,
.account__field-block--inline-alt .fieldWithErrors {
  flex: 1;
}

.account__field-block--inline-alt label {
  left: auto;
  right: 0;
}
.account__field-block--inline-alt input, .account__field-block--inline-alt select, .account__field-block--inline-alt textarea {
  padding-left: 0;
  padding-right: 40px;
}

.account__checkbox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 32px 0;
  line-height: 24px;
}
.account__checkbox input {
  width: 14px;
  height: 14px;
  margin: 5px 9px;
  flex-shrink: 0;
}
.account__checkbox label {
  flex: 1;
}
.account__checkbox .errorExplanation {
  flex-basis: 100%;
  margin-top: 8px;
}

/* Layout */
.login__main {
  display: flex;
  position: relative;
  justify-content: center;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 64px;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.192) 42.93%, rgba(0, 0, 0, 0.64) 84.6%), url(https://assets.pocketsmith.com/images/login/bg.jpg?v1-71ef4d00bba4f833b5b7818d3cea52d1);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.login__pocketsmith-logo {
  position: absolute;
  top: 55px;
  left: 64px;
}

.login__pocketsmith-logo .icon {
  font-size: 64px;
  color: #f8f8f8;
}

.login__cols {
  display: flex;
  flex: 1;
  align-self: center;
  justify-content: center;
}

.login__left {
  flex: 1;
  display: flex;
  align-items: flex-end;
  box-sizing: border-box;
  max-width: 440px;
  padding-right: 64px;
}

.login__right {
  flex: 1;
  max-width: 380px;
}

.login__left-extra h3 {
  color: #fff;
  font-size: 40px;
  line-height: 48px;
}

.login__messages {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  padding: 16px;
  margin: 32px 0 0 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.8);
}

.login__box .login__headings {
  text-align: center;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 20px;
}
.login__box .login__headings h1 {
  font-size: 28px;
  line-height: 32px;
  color: #612A75;
  margin: 0 0 8px 0;
}
.login__box fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
.login__box .button--full-width + .button--full-width {
  margin-top: 16px;
}

.login__footer {
  position: absolute;
  padding: 8px 0;
  line-height: 24px;
  bottom: 0;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}
.login__footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 0 16px;
  font-size: 16px;
  line-height: 20px;
}
.login__footer a:hover {
  text-decoration: underline;
}

/* Responsive layout changes */
@media (max-width: 991px) {
  .login__main {
    padding: 56px;
  }
}
@media (max-width: 767px) {
  .login__main {
    padding: 0;
    flex-direction: column;
    align-items: center;
  }
  .login__pocketsmith-logo {
    position: static;
    margin: 32px 16px 16px 16px;
  }
  .login__left {
    display: none;
  }
  .login__right {
    justify-content: center;
    margin: 8px;
  }
  .login__box {
    margin-bottom: 64px;
  }
  .login__headings {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .account__box {
    padding: 40px 24px;
  }
}
/* Google */
a.login__google {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  margin-top: 16px;
  background-color: #EDEFF2;
  border-radius: 100px;
  color: #21252B;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
a.login__google img {
  height: 24px;
  margin-right: 8px;
}
a.login__google .login__google-text {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  color: #000;
}

/* Forgot password */
.login__forgot-password {
  font-size: 16px;
  line-height: 20px;
  margin-top: 16px;
  text-align: center;
}

/* Loading */
.loading__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.loading__box .spinner {
  font-size: 48px;
}
.loading__box .loading__box-heading-wrap {
  height: 60px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading__box h6 {
  margin: 0;
}

section.hero_fullscreen {
  padding: 0;
}

/* Register layout */
.register__main {
  background: linear-gradient(0deg, #59BDA8 0%, #FEF1B5 100%);
}
.register__main h1 {
  text-align: center;
  margin: 0 0 64px 0;
  color: #502261;
}

.register__main--super,
.register__main--fortune,
.register__main--flourish {
  background: linear-gradient(0deg, #A7A7DC 0%, #FCC7C7 100%);
}

.register__main--premium,
.register__main--foundation {
  background: linear-gradient(0deg, #C9E8FC 0%, #FDD6B8 100%);
}

.register__container {
  padding: 128px 0 64px 0;
}

.register__row {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.register__row h2 {
  color: #502261;
  margin: 0;
}
.register__row a {
  color: #4462FA;
}

.register__row--details .register__row-left .register__section-sticky {
  position: static;
  opacity: 1;
}

.register__row-left {
  flex: 1;
  max-width: 384px;
  padding-top: 16px;
}
.register__row-left .register__section-sticky {
  position: fixed;
  top: 140px;
  width: 400px;
  opacity: 0;
}
.register__row-left h3 {
  max-width: 344px;
  font-size: 42px;
  line-height: 56px;
  color: #502261;
}
.register__row-left .register__section-graphic-container {
  position: relative;
}
.register__row-left .register__section-graphic {
  position: absolute;
  left: -150px;
  height: 360px;
  width: 640px;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.register__row-left .register__section-graphic--details {
  background-image: url(https://assets.pocketsmith.com/images/signup/details.png?v1-61fb48d07b1563ec8a1676c34b033322);
}
.register__row-left .register__section-graphic--billing {
  background-image: url(https://assets.pocketsmith.com/images/signup/billing.png?v1-273e15978c14182846329fab65d54bc0);
}
.register__row-left .register__section-graphic--subscription {
  background-image: url(https://assets.pocketsmith.com/images/signup/subscription.png?v1-0ef24712b4264a094ad809e7d07a64c1);
}
.register__row-left .register__section-graphic--submit {
  background-image: url(https://assets.pocketsmith.com/images/signup/submit.png?v1-1affe509a4ce8b0855000c1ebb86ee3d);
}

.register__row-right {
  flex: 1;
  max-width: 440px;
}

.register__box {
  position: relative;
  z-index: 1;
  max-width: none;
  padding: 56px 20px;
}
.register__box h2 {
  color: #612A75;
  text-align: center;
  margin: 0 0 32px 0;
}
.register__box select {
  display: block;
}

/* Register errors */
.alert, .errorExplanation {
  padding: 12px 16px;
  margin: 0 0 32px 0;
  border-radius: 8px;
  border: solid 1px #E6E9ED;
  background-color: #EDEFF2;
}
.alert h3, .errorExplanation h3 {
  margin: 0 0 16px 0;
}
.alert ul, .errorExplanation ul {
  padding: 0 0 0 16px;
  margin: 0;
}
.alert ul li, .errorExplanation ul li {
  list-style-type: disc;
  line-height: 18px;
  margin-bottom: 12px;
}
.alert p, .errorExplanation p {
  margin: 0;
}

.alert--error, .errorExplanation {
  border: solid 1px #F7BEBC;
  background-color: #FFE6E5;
}

.alert--success {
  border: solid 1px #BBEDE0;
  background-color: #E6FFF9;
}

@media (max-width: 767px) {
  .register__main {
    padding-left: 16px;
    padding-right: 16px;
  }
  .register__row-left {
    display: none;
  }
}
/* Subscription options */
.register__subscription-option + .register__subscription-option {
  margin-top: 40px;
}

.register__subscription-option input[type=radio] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.register__subscription-option input[type=radio] + label.register__subscription-option-button {
  position: relative;
  display: flex;
  align-items: center;
  padding: 16px 0 16px 34px;
  height: auto;
  color: #21252B;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: center;
  border-radius: 8px;
  background-color: #E6E9ED;
  cursor: pointer;
  transition: background 150ms;
}
.register__subscription-option input[type=radio] + label.register__subscription-option-button:before {
  display: none;
}
.register__subscription-option input[type=radio] + label.register__subscription-option-button:after {
  display: none;
}
.register__subscription-option input[type=radio] + label.register__subscription-option-button .discount_amount {
  position: absolute;
  top: -24px;
  right: 8px;
  padding: 4px 8px;
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  background-color: #612A75;
}
.register__subscription-option input[type=radio] + label.register__subscription-option-button .register__subscription-option-button-tick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0 8px 0 0;
  border: solid 2px #000;
  border-radius: 12px;
  box-sizing: border-box;
  color: #000;
  font-weight: 600;
}
.register__subscription-option input[type=radio] + label.register__subscription-option-button .register__subscription-option-button-tick .icon {
  display: none;
}

.register__box input[type=radio]:checked + label.register__subscription-option-button {
  color: #fff;
  background-color: #40B69B;
}
.register__box input[type=radio]:checked + label.register__subscription-option-button .register__subscription-option-button-tick {
  color: #fff;
  border-color: #fff;
}
.register__box input[type=radio]:checked + label.register__subscription-option-button .register__subscription-option-button-tick .icon {
  display: block;
}

/* Billing details/credit card */
.credit-card-form__expiration-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.credit-card-form__expiration-line .account__field-block {
  flex: 1;
  margin-bottom: 0;
}

.account__field .errorExplanation {
  display: none;
}

.account__field--error .errorExplanation {
  display: block;
}

.plans {
  font-size: 16px;
  line-height: 20px;
  padding-top: 48px;
  background: #FAFAFA;
}
.plans h1,
.plans h2,
.plans h3,
.plans h4,
.plans h5,
.plans h6 {
  margin: 0;
}
.plans p,
.plans li,
.plans blockquote,
.plans figure,
.plans figcaption {
  margin: 0;
}
.plans strong {
  font-weight: 700;
}
.plans h1 + h2 {
  margin-top: 20px;
}
.plans__section, .plans__section-body {
  display: flex;
  justify-content: center;
}
.plans__section-body {
  width: 100%;
  max-width: 1280px;
  flex-direction: column;
  align-items: center;
  padding: 80px 78px;
}
@media (max-width: 1123px) {
  .plans__section-body {
    padding: 80px 38px;
  }
}
.plans__section-body > h1,
.plans__section-body > h2,
.plans__section-body > h3,
.plans__section-body > h4,
.plans__section-body > h5,
.plans__section-body > h6,
.plans__section-body > p {
  text-align: center;
}
.plans__section-cta {
  text-decoration: none;
  color: #4462FA;
  margin: 80px 0 0 0;
}
.plans__section-cta h6 {
  display: flex;
  gap: 16px;
  align-items: center;
}
.plans__section-cta h6 img {
  height: 56px;
  margin: 0 0 8px 0;
  -o-object-fit: contain;
     object-fit: contain;
}
.plans__section-cta h6 .icon {
  top: -2px;
  margin-left: 8px;
}
@media (max-width: 767px) {
  .plans__section-cta h6 {
    flex-direction: column;
    text-align: center;
  }
}
.plans__section-cta:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.plans__black-friday-banner {
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
}
.plans__black-friday-banner img {
  width: 100%;
}
.plans__black-friday-banner-desktop {
  display: none;
}
@media (min-width: 768px) {
  .plans__black-friday-banner-desktop {
    display: block;
  }
}
.plans__black-friday-banner-mobile {
  display: block;
}
@media (min-width: 768px) {
  .plans__black-friday-banner-mobile {
    display: none;
  }
}
.plans__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 34px;
  margin: 80px 0 0 0;
}
@media (max-width: 1123px) {
  .plans__cards {
    flex-direction: column;
    width: 100%;
    gap: 60px;
  }
}
.plans__card {
  display: flex;
  flex-direction: column;
  width: calc((100% - 68px) / 3);
  min-width: 300px;
  max-width: 350px;
  background: #EDEFF2;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  position: relative;
}
@media (min-width: 1124px) {
  .plans__card--secondary {
    flex-direction: row;
    width: 100%;
    max-width: none;
  }
}
@media (min-width: 768px) and (max-width: 1123px) {
  .plans__card {
    flex-direction: row;
    width: 100%;
    max-width: none;
  }
  .plans__card:not(.plans__card--featured) {
    width: calc(100% - 60px);
  }
}
.plans__card-badge {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
  font-style: italic;
  padding: 10px 18px;
  border-radius: 100px;
  color: #0969A4;
  background: #C8E8FC;
  box-shadow: 0 10px 0 currentColor;
  transform: translate(-25px, -25px) rotate(-11deg);
  font-variation-settings: "ital" 125;
}
.plans__card-badge::before {
  content: "";
  display: table;
  margin-top: -0.08em;
}
.plans__card-badge div {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 25px;
  background: #0969A4;
  border-radius: 3px;
  transform: translate(12px, -12px) rotate(82deg);
  transform-origin: 100% 50%;
}
.plans__card-badge div::before, .plans__card-badge div::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: #0969A4;
  border-radius: 3px;
}
.plans__card-badge div::before {
  transform: rotate(-45deg);
  transform-origin: 130% 100%;
}
.plans__card-badge div::after {
  transform: rotate(45deg);
  transform-origin: 130% 20%;
}
.plans__card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 46px 46px 40px;
  border-radius: 10px 10px 0 0;
  color: white;
  text-align: center;
  min-height: 410px;
}
.plans__card--featured .plans__card-header {
  min-height: 435px;
}

@media (min-width: 1124px) {
  .plans__card--secondary .plans__card-header {
    border-radius: 10px 0 0 10px;
    min-height: 0;
  }
}

@media (max-width: 1123px) {
  .plans__card-header {
    min-height: 0;
  }
}
@media (min-width: 768px) and (max-width: 1123px) {
  .plans__card-header {
    border-radius: 10px 0 0 10px;
    width: 50%;
  }
}
.plans__card-header h3 + h4 {
  margin-top: 10px;
}
.plans__card-header hr {
  border: none;
  background: none;
  height: 0;
  width: 100%;
  display: block;
  color: inherit;
  border-top: solid 1px;
  margin: 20px 0;
}
.plans__card-header hr:last-child {
  margin-bottom: 0;
}
.plans__card-price {
  margin: 0;
  margin-bottom: 8px;
}
.plans__card-savings {
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  margin-top: 10px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.plans__card-savings strong {
  font-weight: 600;
}
.plans__card-savings + hr {
  margin-bottom: 8px;
}
.plans__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
  padding: 40px;
  min-height: 478px;
}
.plans__card--featured .plans__card-body {
  min-height: 503px;
}

@media (min-width: 1124px) {
  .plans__card--secondary .plans__card-body {
    flex-direction: row;
    justify-content: space-between;
    min-height: 0;
  }
}

@media (max-width: 1123px) {
  .plans__card-body {
    min-height: 0;
  }
}
.plans__card-body ul {
  width: 200px;
  margin: 20px 0;
  padding: 0;
  list-style-type: none;
}
@media (min-width: 1124px) {
  .plans__card--secondary .plans__card-body ul {
    margin: 0;
  }
}
@media (max-width: 1123px) {
  .plans__card--secondary .plans__card-body ul + ul {
    margin-top: -30px;
  }
}

.plans__card-body ul li {
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.plans__card-body ul li .icon {
  color: #118A6D;
  margin-right: 8px;
  font-size: 20px;
  top: 0;
}
.plans__card-body ul li .icon.cross {
  color: #E26560;
}
.plans__card-body .button {
  margin-top: 20px;
  text-transform: none;
  padding-bottom: 0.15em;
}
@media (min-width: 1124px) {
  .plans__card--secondary .plans__card-body .button {
    margin-top: 0;
  }
}

.plans__card--secondary .plans__card-price {
  margin-bottom: 0;
}
.plans__card--super .plans__card-header, .plans__card--large .plans__card-header {
  background: #5F6EBA;
}
.plans__card--premium .plans__card-header, .plans__card--medium .plans__card-header {
  background: #7F4694;
}
.plans__card--free .plans__card-header, .plans__card--small .plans__card-header {
  background: #009E79;
}
.plans__card--secondary .plans__card-header {
  background: #8D98A8;
}
.plans__card--super .plans__card-savings, .plans__card--large .plans__card-savings {
  color: #2D386C;
  background: #C7D0FC;
}
.plans__card--premium .plans__card-savings, .plans__card--medium .plans__card-savings {
  color: #431354;
  background: #F0D4FA;
}
.plans__card--free .plans__card-savings, .plans__card--small .plans__card-savings {
  color: #134E40;
  background: #B0FAE7;
}
.plans__card--super .button, .plans__card--large .button {
  background-color: #5F6EBA;
}
.plans__card--super .button:hover, .plans__card--large .button:hover {
  background-color: #2D386C;
}
.plans__card--premium .button, .plans__card--medium .button {
  background-color: #7F4694;
}
.plans__card--premium .button:hover, .plans__card--medium .button:hover {
  background-color: #502261;
}
.plans__card--small .button {
  background-color: #009E79;
}
.plans__card--small .button:hover {
  background-color: #146653;
}
.plans__card--secondary .button {
  color: #146653;
  background-color: #E6FFF9;
}
.plans__card--secondary .button:hover {
  background-color: #BBEDE0;
}
.plans__features-section {
  background: #EDEFF2;
}
.plans__features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}
@media (max-width: 991px) {
  .plans__features {
    max-width: 400px;
  }
}
.plans__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px 40px;
  margin: 20px;
  width: 200px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  background: white;
  border: 1px solid #8D98A8;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  transition: transform 0.1s ease-out;
}
@media (max-width: 1123px) {
  .plans__feature {
    padding: 10px 10px 20px;
    margin: 10px;
    width: 180px;
  }
}
.plans__feature img {
  display: inline-block;
  height: 100px;
  margin-bottom: 12px;
}
.plans__feature:hover {
  transform: scale(1.05);
}
.plans__security-section {
  overflow: hidden;
}
.plans__security {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 80px 100px;
  background: #5F6EBA;
  border-radius: 10px;
  color: white;
  position: relative;
}
@media (max-width: 991px) {
  .plans__security {
    padding: 65px;
  }
}
@media (max-width: 767px) {
  .plans__security {
    padding: 30px;
  }
}
.plans__security::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -80px;
  right: -80px;
  z-index: -1;
  width: 690px;
  height: 555px;
  background: #7DCCBA;
}
.plans__security ul {
  margin: 20px 0 40px;
  padding: 0;
  list-style-type: none;
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: minmax(357px, 100%) 357px;
  grid-template-rows: repeat(3, auto);
}
@media (max-width: 991px) {
  .plans__security ul {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
  }
}
.plans__security ul li {
  font-size: 18px;
  line-height: 24px;
  display: flex;
  margin-top: 20px;
  width: 100%;
  max-width: 357px;
}
.plans__security ul li .icon {
  margin-right: 24px;
  font-size: 33px;
  top: 3px;
}
.plans__security .plans__section-cta {
  color: white;
  font-weight: 600;
}
.plans__security-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.plans__security-header h3 {
  max-width: 550px;
}
.plans__security-header .icon {
  font-size: 58px;
  line-height: 62px;
  top: 0;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .plans__security-header {
    flex-direction: column-reverse;
  }
  .plans__security-header .icon {
    align-self: center;
  }
}
.plans__why-section {
  background-image: url(https://assets.pocketsmith.com/images/plans/dining-table-and-roses.png?v1-e3d5f3990e38978c62b88f4a0c936c0b);
  background-repeat: no-repeat;
  background-size: 778px 478px;
  background-position: calc(50% - 340px) calc(100% + 80px);
  padding-bottom: 160px;
}
@media (max-width: 767px) {
  .plans__why-section {
    padding-bottom: 398px;
    background-position: -100px calc(100% + 80px);
  }
}
.plans__why {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.plans__why h3 {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .plans__why {
    flex-direction: column;
  }
}
.plans__why-reasons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 700px;
}
@media (max-width: 991px) {
  .plans__why-reasons {
    align-self: center;
  }
}
@media (max-width: 767px) {
  .plans__why-reasons {
    max-width: 100%;
  }
}
.plans__why-reason {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  padding-left: 50px;
  margin-bottom: 20px;
}
@media (max-width: 1123px) {
  .plans__why-reason {
    padding-left: 25px;
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .plans__why-reason {
    max-width: 100%;
    padding-left: 0;
  }
}
.plans__why-reason img {
  width: 80px;
  margin-bottom: 20px;
}
.plans__why-reason h5 {
  margin-bottom: 14px;
}
.plans__story-section {
  background: #7DCCBA;
}
.plans__story {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  position: relative;
}
@media (max-width: 767px) {
  .plans__story {
    flex-direction: column;
    align-items: stretch;
  }
}
.plans__story blockquote {
  margin: 36px 0;
}
.plans__story button {
  background: none;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
  font-size: inherit;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
.plans__story-copy-container {
  display: flex;
  align-items: stretch;
  width: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .plans__story-copy-container {
    width: 100%;
  }
}
.plans__story-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding-right: 95px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .plans__story-copy {
    padding-right: 0;
  }
}
.plans__story-copy .plans__section-cta {
  align-self: flex-start;
}
.plans__story[data-story=nicole] .plans__story-copy:first-child, .plans__story[data-story=nicole] .plans__story-picture-container img:first-child {
  margin-left: -100%;
}
.plans__story[data-story=daniel] .plans__story-copy:first-child, .plans__story[data-story=daniel] .plans__story-picture-container img:first-child {
  margin-left: -200%;
}
.plans__story[data-story=connor] .plans__story-copy:first-child, .plans__story[data-story=connor] .plans__story-picture-container img:first-child {
  margin-left: -300%;
}
.plans__story[data-story=amy] .plans__story-copy:first-child, .plans__story[data-story=amy] .plans__story-picture-container img:first-child {
  margin-left: -400%;
}
.plans__story-picture-container {
  display: flex;
  width: 500px;
  height: 500px;
  background: white;
  position: absolute;
  top: -235px;
  right: 0;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
@media (max-width: 1123px) {
  .plans__story-picture-container {
    width: 400px;
    height: 400px;
    top: -185px;
  }
}
@media (max-width: 991px) {
  .plans__story-picture-container {
    width: 300px;
    height: 300px;
    top: -135px;
  }
}
@media (max-width: 767px) {
  .plans__story-picture-container {
    position: static;
    margin: 60px 0;
  }
}
@media (max-width: 575px) {
  .plans__story-picture-container {
    width: auto;
    height: auto;
  }
}
.plans__story-picture-container a {
  display: flex;
  flex-shrink: 0;
  width: 100%;
}
.plans__story-picture-container a img {
  width: 100%;
}
.plans__story-carousel-buttons {
  display: flex;
  color: #4462FA;
}
@media (max-width: 575px) {
  .plans__story-carousel-buttons {
    justify-content: center;
  }
}
.plans__story-carousel-buttons button {
  background: currentColor;
  height: 32px;
  width: 32px;
  border-radius: 50%;
  text-align: center;
  line-height: 32px;
  transform-origin: center;
}
.plans__story-carousel-buttons button + button {
  margin-left: 20px;
}
.plans__story-carousel-buttons button:hover {
  transform: scale(1.1);
}
.plans__story[data-story=sarahb] .plans__story-carousel-buttons button[data-story=sarahb], .plans__story[data-story=nicole] .plans__story-carousel-buttons button[data-story=nicole], .plans__story[data-story=daniel] .plans__story-carousel-buttons button[data-story=daniel], .plans__story[data-story=connor] .plans__story-carousel-buttons button[data-story=connor], .plans__story[data-story=amy] .plans__story-carousel-buttons button[data-story=amy] {
  color: #C7D0FC;
  border: solid 3px #4462FA;
}
.plans__review-quote-section h5 {
  text-align: center;
  margin-bottom: 26px;
}
.plans__review-quote-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}
.plans__review-quote-logo {
  text-align: center;
  border-radius: 6px;
  width: 125px;
  position: relative;
}
@media (max-width: 575px) {
  .plans__review-quote-logo {
    width: 49%;
  }
}
.plans__review-quote-logo:hover {
  background: rgba(0, 0, 0, 0.1);
}
.plans__review-quote-logo:hover img {
  filter: brightness(0);
}
.plans__review-quote-logo img {
  width: 90%;
}
.plans__review-quote-logo::before, .plans__review-quote-logo::after {
  position: absolute;
  display: block;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  left: 0;
}
.plans__review-quote-logo::before {
  content: attr(data-tooltip);
  bottom: calc(100% + 1rem);
  width: 10rem;
  padding: 1rem;
  background: white;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1.2;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.16);
  height: auto;
  color: #333;
}
.plans__review-quote-logo::after {
  content: "";
  bottom: calc(100% + 0.5rem + 1px);
  height: 0;
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.1));
  border: solid 0.5rem transparent;
  border-top-color: white;
  border-bottom-width: 0;
}
.plans__review-quote-logo:hover::before, .plans__review-quote-logo:hover::after {
  opacity: 1;
  visibility: visible;
}

body {
  font-family: "ProximaNova", sans-serif;
}
@supports (font-variation-settings: normal) {
  body {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-family: "ProximaVara", sans-serif;
  }
}
body {
  font-size: 18px;
  line-height: 24px;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: normal;
}

em,
i {
  font-variation-settings: "ital" 125;
}

strong {
  font-weight: bold;
}

h1 {
  font-size: 70px;
  line-height: 72px;
  margin: 0;
}

h2 {
  font-size: 58px;
  line-height: 62px;
  margin: 0;
}

h3 {
  font-size: 48px;
  line-height: 54px;
  margin: 0;
}

h4 {
  font-size: 40px;
  line-height: 44px;
  margin: 0;
}

h5 {
  font-size: 34px;
  line-height: 40px;
  margin: 0;
}

h6 {
  font-size: 28px;
  line-height: 32px;
  margin: 0;
}

h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
  margin: 0;
}

.heading--xxl {
  font-size: 70px;
  line-height: 72px;
}

.heading--xl {
  font-size: 58px;
  line-height: 62px;
}

.heading--lg {
  font-size: 48px;
  line-height: 54px;
}

.heading--md {
  font-size: 40px;
  line-height: 44px;
}

.heading--sm {
  font-size: 34px;
  line-height: 40px;
}

.heading--xs {
  font-size: 28px;
  line-height: 32px;
}

.heading--proxima {
  font-family: "ProximaNova", sans-serif;
}
@supports (font-variation-settings: normal) {
  .heading--proxima {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-family: "ProximaVara", sans-serif;
  }
}
.heading--proxima {
  letter-spacing: normal;
}

.heading--bely {
  font-family: "Bely", sans-serif;
  letter-spacing: 0.02em;
}

.heading--bold {
  font-weight: bold;
}

.heading--regular {
  font-weight: normal;
}

.heading--italic {
  font-style: italic;
  font-variation-settings: "ital" 125;
}

.heading--cap {
  text-transform: uppercase;
}

.body--lg {
  font-size: 20px;
  line-height: 26px;
}

.body--md {
  font-size: 18px;
  line-height: 24px;
}

.body--sm {
  font-size: 16px;
  line-height: 20px;
}

.body--xs {
  font-size: 14px;
  line-height: 18px;
}

.cc-panel {
  position: relative;
}
.cc-panel .errorExplanation,
.cc-panel .errorExplanation > p:last-child {
  margin-bottom: 0;
}
.cc-panel #hpp-container {
  margin: 0 -20px;
}
.cc-panel iframe {
  width: 100%;
  transition: opacity 0.2s;
}
.cc-panel:not(.cc-panel--loading) .cc-panel__loading, .cc-panel:not(.cc-panel--success) .cc-panel__success, .cc-panel:not(.cc-panel--failure) .cc-panel__failure {
  display: none;
}
.cc-panel--loading iframe {
  opacity: 0.5;
  pointer-events: none;
}
.cc-panel__failure, .cc-panel__success {
  margin-bottom: 32px;
  font-size: 16px;
}
.cc-panel__success-heading {
  display: block;
  text-align: center;
}
.cc-panel__card-details {
  margin: 1em 0;
}
.cc-panel__card-details > div {
  display: flex;
  gap: 5px;
}
.cc-panel__card-details label, .cc-panel__card-details input {
  font: inherit;
  color: inherit;
}
.cc-panel__card-details label {
  width: 30%;
}
.cc-panel__card-details label + div {
  width: 70%;
  display: flex;
}
.cc-panel__card-details input {
  border: none;
  padding: 0;
  width: 100%;
}
.cc-panel__card-details input:has(~ input),
.cc-panel__card-details input ~ input {
  width: 30px;
}
.cc-panel__card-details input ~ input {
  text-align: right;
}

.wufoo-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
}
.wufoo-modal__box {
  height: 90vh;
  width: 90vw;
  max-width: 780px;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: auto;
}
.wufoo-modal__header {
  font-family: "ProximaNova", sans-serif;
}
@supports (font-variation-settings: normal) {
  .wufoo-modal__header {
    /* stylelint-disable-next-line no-invalid-position-declaration */
    font-family: "ProximaVara", sans-serif;
  }
}
.wufoo-modal__header {
  font-size: 20px;
  line-height: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 40px;
  font-weight: bold;
}
.wufoo-modal__close {
  cursor: pointer;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.clearfix::after {
  display: table;
  content: "";
  clear: both;
}