/*
Theme Name: Thrive
Author URI: 
Version: 1.0.0
Text Domain: thrive
*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv10" on, "cv11" on, "ss01" on, "ss03" on;
}

h1, h2, h3, h4, h5, h6 {
  font-feature-settings: normal;
}

b, strong {
  font-weight: 550;
}

ul, ol {
  padding-inline-start: 20px;
}

img, figure {
  max-width: 100%;
  height: auto;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

iframe {
  vertical-align: bottom;
}

button, a {
  touch-action: manipulation;
}

textarea {
  overflow: auto;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.2s, transform 0.2s;
  transition-delay: 0ms;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.editor-styles-wrapper .fade-in-up {
  opacity: 1 !important;
  transform: none !important;
}

@keyframes bounceUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes bounceRotate {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(-2deg);
  }
}
@keyframes pulse-animation {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}
.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-balanced {
  text-wrap: balance;
}

.right-flex {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.push-left {
  margin-right: auto !important;
}

.push-right {
  margin-left: auto !important;
}

.no-line-height {
  line-height: var(--wp--custom--line-height--snug);
}

.text-pretty {
  text-wrap: pretty;
}

.max-w-180 {
  max-width: 180px;
}

.max-w-200 {
  max-width: 200px;
}

.max-w-250 {
  max-width: 250px;
}

.max-w-300 {
  max-width: 300px;
}

.max-w-400 {
  max-width: 400px;
}

.max-w-450 {
  max-width: 450px;
}

.max-w-550 {
  max-width: 550px;
}

.max-w-600 {
  max-width: 600px;
}

.max-w-750 {
  max-width: 750px;
}

.max-w-800 {
  max-width: 800px;
}

.max-w-850 {
  max-width: 850px;
}

@media (max-width: 767px) {
  .mobile-only {
    display: block !important;
  }
  .tablet-plus {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .tablet-plus {
    display: block !important;
  }
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 1023.5px) {
  .desktop-only {
    display: none !important;
  }
  .square-mobile img {
    aspect-ratio: 4/3 !important;
    object-fit: cover;
  }
}
@media (max-width: 767.5px) {
  .reverse-column {
    flex-direction: column-reverse;
  }
}
p a,
ul a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  color: inherit;
}

p span {
  color: #e2fdd9;
}

h2 span {
  color: #fff;
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 0;
  line-height: 1;
}
.header-inner .logo {
  line-height: 1;
}
.header-inner .logo svg {
  vertical-align: middle;
}

.lang-switcher {
  position: relative;
  display: inline-block;
  font-size: var(--wp--preset--font-size--x-small);
  text-transform: uppercase;
}

.lang-switcher ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lang-switcher > ul > li {
  position: relative;
}

.lang-switcher > ul > li > a {
  display: block;
  background-color: transparent;
  border-radius: 5px;
  background-color: var(--wp--preset--color--primary);
  border: 1px solid rgba(45, 227, 142, 0.6509803922);
  color: var(--wp--preset--color--base);
  font-family: inherit;
  font-weight: 450;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.lang-switcher > ul > li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 2px 0 0 0;
  padding: 0;
  background: transparent;
  min-width: 100%;
  z-index: 1000;
}

.lang-switcher > ul > li ul li a {
  display: block;
  background-color: transparent;
  border-radius: 5px;
  background-color: var(--wp--preset--color--primary);
  border: 1px solid rgba(45, 227, 142, 0.6509803922);
  color: var(--wp--preset--color--base);
  font-family: inherit;
  font-weight: 450;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 10px;
  text-decoration: none;
  margin-top: 2px;
  text-align: center;
}

.lang-switcher > ul > li.open ul {
  display: block;
}

@media (min-width: 768px) {
  .hero {
    padding-top: 100px !important;
  }
}
.transunion img {
  margin-top: -20px;
}

.build-credit {
  text-align: right;
  margin: 0 !important;
}

.credit-blocks img {
  width: 80px;
  padding-top: 20px;
  vertical-align: bottom;
}
@media (min-width: 1024px) {
  .credit-blocks img {
    width: 120px;
  }
}

.credit-graph img {
  width: 100%;
  height: auto;
}

.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column.avatar-col-1 {
  flex-basis: 66px !important;
}

.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column.avatar-col-2 {
  flex-basis: 90% !important;
}

.credit-avatar {
  width: 60px;
  height: 60px;
}

.block-editor-block-list__block .step {
  margin: 50px 0 !important;
}

.steps-container {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.steps-container p {
  color: var(--wp--preset--color--contrast);
  font-family: var(--wp--preset--font-family--suisse);
  font-size: clamp(1.375rem, 4vw, 1.85rem);
  line-height: var(--wp--custom--line-height--snug);
  text-wrap: balance;
}
.steps-container p.step-desc {
  color: var(--wp--preset--color--base);
  font-family: var(--wp--preset--font-family--inter);
  line-height: var(--wp--custom--line-height--compact);
}
.steps-container .wp-block-html {
  display: none;
}

.circle-container {
  height: 100px;
}

.step-circle {
  width: 100px;
  height: 100px;
  border: 4px solid var(--wp--preset--color--quaternary);
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.step-circle p {
  color: #c7eece;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-line {
  width: 4px;
  height: 160px;
  background: #cfcece;
  position: relative;
  overflow: hidden;
  margin: 0 0 0 48px !important;
}

.line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1ec677;
  transform-origin: top;
  transform: scaleY(0);
}

.justify-center {
  display: flex;
  justify-content: center;
}

.small-gauge {
  padding: 0 20px;
}

.before-after {
  width: 100%;
  font-size: 58px;
  margin-left: 0;
}
@media (min-width: 425px) {
  .before-after {
    font-size: 65px;
  }
}

.opaque {
  opacity: 0.7;
}

.block-editor-block-list__block .credit-bootcamp {
  display: none;
}

.credit-bootcamp {
  display: none;
}
@media (min-width: 650px) {
  .credit-bootcamp {
    display: block;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.light-box {
  position: relative;
}

.sad-before {
  display: block;
  position: absolute;
  left: 25px;
  top: 28px;
  animation: happyBounce 1.5s ease-in-out infinite;
}
@media (min-width: 768px) {
  .sad-before {
    left: -25px;
  }
}

.happy-after {
  display: block;
  position: absolute;
  right: 25px;
  top: 28px;
  animation: happyBounce 1.5s ease-in-out infinite;
}
@media (min-width: 768px) {
  .happy-after {
    right: -25px;
  }
}

.equal-heights {
  align-items: stretch;
}
.equal-heights > .wp-block-column > .wp-block-group {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.equal-heights > .wp-block-column > .wp-block-group figure {
  padding-top: var(--wp--preset--spacing--large);
  margin-top: auto !important;
}

.toggle {
  max-width: 500px;
  position: relative;
}
.toggle .inline-svg {
  display: none;
  position: absolute;
  right: 0;
  bottom: 8px;
  animation: bounceUpDown 1.5s infinite ease-in-out;
}
@media (min-width: 425px) {
  .toggle .inline-svg {
    display: block;
    right: 20px;
  }
}
@media (min-width: 500px) {
  .toggle .inline-svg {
    right: 50px;
  }
}

.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 20px;
}

.toggle-label {
  font-size: var(--wp--preset--font-size--title) !important;
  font-weight: 500;
  color: var(--wp--preset--color--base);
}

.switch {
  position: relative;
  display: inline-block;
  width: 58px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #1ec677;
  border-radius: 24px;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider:before {
  transform: translateX(29px);
}

.credit-score-guarantee,
.credit-booster-loan {
  display: inline-block;
  cursor: pointer;
}

.credit-score-guarantee:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='10' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cline x1='11' y1='15' x2='11' y2='11' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cline x1='11' y1='7' x2='11.01' y2='7' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: -3px;
  margin-left: 6px;
  flex-shrink: 0;
}

.credit-booster-loan:after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 22'%3E%3Ccircle cx='11' cy='11' r='10' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cline x1='11' y1='15' x2='11' y2='11' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cline x1='11' y1='7' x2='11.01' y2='7' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  background-position: center center;
  background-repeat: no-repeat;
  margin-top: 5px;
  margin-left: 6px;
  flex-shrink: 0;
}

.how-it-works {
  position: relative;
}
.how-it-works::after {
  content: "";
  position: absolute;
  top: clamp(25px, 4vw, 40px);
  right: clamp(25px, 4vw, 40px);
  width: clamp(35px, 8vw, 60px);
  height: clamp(20px, 4.6vw, 34px);
  background-image: url("data:image/svg+xml,%3Csvg id='a' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 157.12 102.83'%3E%3Cpath d='M118.15.1c6.32-1.58,8.28,15.66,11.08,20.54,2.75,4.79,7.64,7.34,12.51,9.47,3.14,1.38,21.82,5.37,13.08,11.72-6.56,4.77-17.65,2.87-24.39,12.57-3.54,5.09-5.4,23.07-10.53,23.54-6.63.6-8.48-20.01-13.42-25.54-5.75-6.44-18.12-6.72-23.4-10.56-9.26-6.74,13.81-11.02,17.1-12.7,5.93-3.02,8.72-7.92,11.06-13.91,1.46-3.73,2.63-14.04,6.93-15.12Z' fill='%238acc9d'/%3E%3Cpath d='M11.83,72.85c15.63-3.21,25.76,18.76,10.61,27.6-19.87,11.61-33.24-22.95-10.61-27.6Z' fill='%23457e5f'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.single-post h2 {
  font-size: clamp(2.25rem, 2.5vw, 2.5rem);
}

.back-button {
  cursor: pointer;
}

#ez-toc-container {
  margin-bottom: 1em;
  border-radius: 8px !important;
  border: 2px solid #d5c7f1 !important;
  padding: 20px !important;
  box-shadow: none !important;
}
#ez-toc-container .ez-toc-title-container {
  line-height: 1;
  margin-bottom: 5px;
}
#ez-toc-container div#ez-toc-container .ez-toc-title {
  font-weight: 600 !important;
}
#ez-toc-container ul.ez-toc-list a.ez-toc-link {
  padding: 5px 0 0 0;
}
@media (min-width: 1024px) {
  #ez-toc-container ul.ez-toc-list a.ez-toc-link {
    padding: 10px 0 0 0;
  }
}
#ez-toc-container a {
  line-height: 1.5;
}

.toc-container {
  padding-right: 40px;
}
.toc-container #ez-toc-container {
  margin-bottom: 0;
}

footer a {
  color: #c4c3ca;
  text-decoration: none;
}
footer a:hover {
  color: var(--wp--preset--color--base);
  text-decoration: none;
}

.gform-theme--foundation .gform_fields {
  row-gap: 15px;
}

#gform_wrapper {
  margin: 0;
}

.gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)),
.gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)) {
  font-size: 1rem;
}

.gfield_required,
.gform_validation_errors,
.gfield_validation_message {
  display: none !important;
}

#gform_submit_button_1,
#gform_submit_button_2,
#gform_submit_button_3 {
  width: 100%;
  padding: 16px 20px;
  font-size: var(--wp--preset--font-size--button);
  border-radius: 9999px;
}

.gform-theme--foundation .gform_footer {
  margin: 20px 0 0;
}

#gform_4 input[type=email] {
  background-color: #fff;
  border: 1px solid #e1e3d3;
  border-radius: 9999px;
  width: 100%;
  padding: 26px 20px;
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--small) !important;
  box-shadow: none;
}
#gform_4 .gform_footer {
  margin: 10px 0 0;
}
#gform_4 .gform_footer button {
  font-size: var(--wp--preset--font-size--medium) !important;
  border-radius: 9999px;
  padding: 16px 20px;
}

.cky-revisit-bottom-left {
  display: none !important;
}