/* Single */
.px-vt-color-selector-wrapper {
  margin: 20px 0;
}

.px-vt-color-selector-label {
  font-size: 20px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--base-3);
}

.px-vt-color-selector {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.px-vt-color-option {
  cursor: pointer;
}

.px-vt-color-option input {
  display: none;
}

.px-vt-color-circle {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid transparent;
}

.px-vt-color-option.px-vt-selected .px-vt-color-circle {
  box-shadow: 0 0 0 3px var(--vt-dark-main), 0 0 0 5px var(--base-3);
}

.px-vt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 16px;
  width: 100%;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 200px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .px-vt-button {
    padding: 10px 20px;
  }
}

.px-vt-button svg {
  height: 24px;
  width: 24px;
  flex-shrink: 0;
}

.px-vt-button:hover {
  background: white;
  color: var(--vt-black);
}

.px-vt-selected-color-name {
  font-weight: normal;
}

/* Bundles */
.px-vt-bundle-product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  column-gap: 16px;
  position: relative;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.px-vt-bundle-product.selected {
  position: relative;
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 24px;
  background-color: var(--base-3);
  border: 3px solid var(--vt-light-primary);
}

.px-vt-bundle-product.selected .px-vt-bundle-product-header h3 {
  color: black;
}

.px-vt-bundle-product.selected .px-vt-bundle-product-header p {
  color: black;
}

.px-vt-bundle-product.selected .px-vt-color-selector-label {
  color: black;
}

.px-vt-bundle-product .px-vt-regular-price {
  color: var(--base-3);
}

.px-vt-bundle-product.selected .px-vt-regular-price {
  color: black;
}

.px-vt-icon-selected,
.px-vt-icon-unselected {
  width: 24px;
  height: 24px;
}

.px-vt-icon-unselected {
  color: var(--base-3);
  opacity: 0.1;
}

.px-vt-icon-selected {
  display: none;
}

.px-vt-bundle-product.selected .px-vt-icon-selected {
  display: block;
  color: var(--vt-light-primary);
}

.px-vt-bundle-product.selected .px-vt-icon-unselected {
  display: none;
}

.px-vt-bundle-product-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.px-vt-bundle-product.selected .px-vt-bundle-product-header {
  margin-bottom: 20px;
}

.px-vt-bundle-product-header h3 {
  margin: 0;
  font-size: 26px;
  line-height: normal;
  font-weight: 400;
  color: white;
  font-family: Alice, serif;
}

.px-vt-bundle-product-header p {
  margin: 0;
  color: white;
}

.px-vt-bundle-price {
  display: flex;
  flex-direction: column;
}

.px-vt-regular-price {
  font-weight: bold;
}

.px-vt-sale-price {
  font-size: 20px;
  margin-bottom: 0px;
  color: var(--vt-light-primary);
  text-decoration: line-through;
  align-self: end;
}

.px-vt-regular-price.has-sale {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--base-3);
}

.px-vt-bundle-product-header-description {
  display: flex;
  column-gap: 16px;
}

.px-vt-product-icons {
  margin-top: 4px;
}

.px-vt-color-selectors {
  border-top: 1px solid rgba(33, 33, 33, 0.1);
  padding-left: 40px;
}

.px-vt-bundle-product .px-vt-color-selector-label {
  font-size: 16px;
  line-height: normal;
}

.px-vt-bundle-product .px-vt-color-option.px-vt-selected .px-vt-color-circle {
  box-shadow: 0 0 0 3px var(--base-3), 0 0 0 5px var(--vt-dark-main);
}

.px-vt-bundle-product.selected .px-vt-color-selector {
  margin-bottom: 0px;
}

.px-vt-bundle-product.selected .px-vt-color-selector-wrapper {
  margin-bottom: 0;
}

/* Product price */
.px-vt-product-price {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
  font-size: 16px;
  line-height: normal;
  font-weight: 800;
  margin-bottom: 0px;
}

.px-vt-product-price-big .px-vt-product-price {
  color: var(--base-3);
  row-gap: 10px;
}

.px-vt-product-price-big .px-vt-product-price .px-vt-regular-price {
  font-size: 34px;
  line-height: normal;
  margin-bottom: 0px;
  color: var(--vt-light-primary);
  opacity: 1;
}

.px-vt-product-price-big .px-vt-product-price .px-vt-sale-price {
  font-size: 34px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0px;
  color: var(--base-3);
  opacity: 1;
}

.px-vt-product-price-big .px-vt-product-price-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.px-vt-product-price-big .px-vt-save-price {
  font-size: 14px;
  padding: 5px 14px;
  text-decoration: none;
  background-color: var(--base-3);
  background-color: var(--base-3);
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  color: var(--vt-black);
  font-weight: 700;
}

.px-vt-home-buy-sticky .px-vt-product-price {
  color: var(--base-3);
}

.px-vt-product-price .px-vt-regular-price,
.px-vt-home-buy-sticky .px-vt-product-price .px-vt-regular-price {
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0px;
  opacity: 0.6;
  text-decoration: line-through;
}

.px-vt-home-buy-sticky .px-vt-product-price .px-vt-regular-price {
  color: var(--vt-light-primary);
  opacity: 1;
}

.px-vt-home-buy-sticky .px-vt-product-price .px-vt-sale-price {
  color: var(--base-3);
  opacity: 1;
}

.px-vt-product-price .px-vt-sale-price {
  font-size: 16px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--contrast);
  opacity: 0.6;
  align-self: center;
  text-decoration: none;
}

.gb-headline .px-vt-product-price {
  display: inline-flex;
  font-size: inherit;
  font-weight: inherit !important;
  text-decoration: inherit !important;
}

.gb-headline .px-vt-product-price .px-vt-sale-price {
  font-size: inherit;
  font-weight: inherit !important;
  color: inherit;
  opacity: 1;
}

/* Coupon Box Header */

.px-vt-promo-banner {
  background: #e6e6da;
  color: #000;
  padding: 10px;
  text-align: center;
}

.px-vt-promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.px-vt-gift {
  font-size: 24px;
  margin-right: 8px;
}

.px-vt-promo-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.px-vt-coupon-code,
.px-vt-coupon-amount {
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
}

.px-vt-promo-hurry {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.px-vt-countdown {
  display: flex;
  gap: 5px;
  align-items: center;
}

.px-vt-time-block {
  display: flex;
  flex-direction: column;
  align-items: self-start;
}

.px-vt-time {
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.px-vt-label {
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.px-vt-coupon-slash {
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: lighter;
  line-height: normal;
  text-transform: uppercase;
}

.px-vt-coupon-highlight em,
.px-vt-countdown {
  position: relative;
  font-style: normal;
  z-index: 10;
}

.px-vt-coupon-highlight em::after,
.px-vt-countdown::after {
  content: "";
  position: absolute;
  left: -2px;
  bottom: 0;
  width: 100%;
  height: 16px;
  background-color: #facb24;
  z-index: -1;
  transform: translateY(-5px);
}

.px-vt-coupon-highlight em::after {
  transform: translateY(4px);
}

/* Coupon Pop Up */

.px-vt-promo-popup {
  border-radius: 24px;
  border: 3px dashed rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12.5px);
  display: flex;
  padding: 30px;
  flex-direction: column;
  gap: 30px;
  color: white;
}

.px-vt-promo-content-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.px-vt-coupon-section-box-popup {
  max-width: 400px;
  width: 100%;
}

.px-vt-promo-header-popup {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.px-vt-gift-popup {
  margin-right: 8px;
  font-size: 24px;
}

.px-vt-price-section-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.px-vt-original-price-popup {
  color: #eda289;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: line-through;
}

.px-vt-sale-price-popup {
  color: #fff;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.px-vt-save-badge {
  background: white;
  color: black;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 800;
}

.px-vt-coupon-section {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-direction: column;
}

input.px-vt-coupon-input {
  display: flex;
  height: 50px;
  padding: 10px 16px;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(50px);
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.px-vt-apply-btn {
  display: flex;
  height: 50px;
  padding: 10px 30px;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  background: #facb24;
  backdrop-filter: blur(50px);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  justify-content: center;
}

.px-vt-apply-btn:hover,
.px-vt-apply-btn:focus {
  background: black;
  color: white;
}

.px-vt-countdown-header {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px; /* 140% */
  margin-bottom: 16px;
}

.px-vt-countdown-popup {
  display: flex;
  padding: 12px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 12px;
  background: #e6e6da;
}

.px-vt-countdown-popup .px-vt-time-block {
  display: flex;
  flex-direction: column;
  align-items: start;
  color: #000;
}

.px-vt-countdown-popup .px-vt-time {
  color: black;
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.px-vt-countdown-popup .px-vt-label {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.px-vt-separator {
  color: #000;
  text-align: center;
  font-size: 64px;
  font-style: normal;
  font-weight: lighter;
  line-height: normal;
  text-transform: uppercase;
}

.px-vt-coupon-code-popup {
  font-weight: 700;
}

.px-vt-coupon-success {
  color: #facb24;
  margin-bottom: 0;
}

.px-vt-coupon-expired {
  color: #ff0000;
  margin-bottom: 0;
}

.px-vt-coupon-success span,
.px-vt-coupon-expired span {
  font-weight: bold;
}

.px-vt-coupon-success svg,
.px-vt-coupon-expired svg {
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  height: 24px;
  margin-right: 3px;
  margin-top: -3px;
  width: 24px;
}

.vt-content-hide {
  display: none;
}

.fl-builder-edit .vt-content-toggle,
.fl-builder-edit .vt-content-hide {
  display: block !important;
}

/* Responsive */

@media only screen and (max-width: 900px) {
  .px-vt-promo-popup {
    padding: 30px 20px;
  }

  .px-vt-countdown-popup {
    padding: 10px 20px;
    gap: 5px;
  }

  .px-vt-countdown-popup .px-vt-time {
    font-size: 20px;
  }

  .px-vt-countdown-popup .px-vt-label {
    font-size: 10px;
  }

  .px-vt-separator {
    font-size: 45px;
  }
}

/* Funnel Checkout */
.px-vt-fk-checkout .px-vt-product-price {
  flex-direction: column;
  align-items: start;
  margin-bottom: 10px;
}

.px-vt-fk-upsell .px-vt-product-price {
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.px-vt-fk-checkout .px-vt-regular-price,
.px-vt-fk-upsell .px-vt-regular-price {
  font-size: 32px;
  color: #e2a58d;
  opacity: 1;
  margin-right: 10px;
}

.px-vt-fk-checkout .px-vt-sale-price,
.px-vt-fk-upsell .px-vt-sale-price {
  font-size: 32px;
  color: #fff;
  opacity: 1;
}

.px-vt-fk-checkout .px-vt-save-price,
.px-vt-fk-upsell .px-vt-save-price {
  display: none;
}

dl dt {
  display: inline;
}

dt::before {
  content: "\A";
  white-space: pre;
}

.px-vt-timeline-progress {
  position: absolute;
  width: 6px;
  top: 0; /* Will be adjusted by JS */
  height: 0; /* Will be adjusted by JS */
  bottom: auto; /* Let JS control height/top */
  border-radius: 5px;
  background-image: linear-gradient(#976cf2, #5a36ec);
  z-index: 2; /* Ensure progress is above the base line */
}

/* Cart Prices (Subtotal & Total) - shortcode */
.px-vt-cart-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
}
.px-vt-cart-price-subtotal {
  text-decoration: line-through;
  color: var(--vt-light-primary);
  font-size: 32px;
  font-weight: 600;
}
.px-vt-cart-price-total {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
}

/* ------------------------------------------------------ */
/* Customizer Import */
/* ------------------------------------------------------ */

.formkit-form[data-uid="035fc050d1"] .formkit-input {
  border-radius: 12px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  font-size: 16px !important;
  padding: 10px 16px !important;
}

.formkit-form[data-uid="035fc050d1"] .formkit-button,
.formkit-form[data-uid="035fc050d1"] .formkit-submit {
  background: #fff !important;
  border-radius: 12px !important;
  font-size: 16px;
  color: #000 !important;
  font-weight: 600 !important;
}

.formkit-form[data-uid="035fc050d1"] .formkit-button,
.formkit-form[data-uid="035fc050d1"] .formkit-submit:hover {
  background: #000 !important;
  color: #fff !important;
}

.formkit-form[data-uid="035fc050d1"][min-width~="700"] [data-style="clean"],
.formkit-form[data-uid="035fc050d1"][min-width~="800"] [data-style="clean"] {
  padding: 0 !important;
}

/* button.formkit-submit {
	display: flex !important;
  align-items: center;
  justify-content: center;
	background-color: #000;
}

button.formkit-submit:hover {
	background-color: black;
} */

.formkit-form[data-uid="035fc050d1"] .formkit-submit > span {
  padding-left: 12px !important;
}

.formkit-form[data-uid="035fc050d1"] .formkit-button:hover > span,
.formkit-form[data-uid="035fc050d1"] .formkit-submit:hover > span,
.formkit-form[data-uid="035fc050d1"] .formkit-button:focus > span,
.formkit-form[data-uid="035fc050d1"] .formkit-submit:focus > span {
  background-color: rgba(0, 0, 0, 0) !important;
}

.formkit-form[data-uid="035fc050d1"] .formkit-button > svg,
.formkit-form[data-uid="035fc050d1"] .formkit-submit > svg {
  transition: all 300ms ease-in-out !important;
}

.main-navigation a {
  font-size: 18px;
  font-weight: 500;
}

.nav-float-right #site-navigation {
  margin-right: auto !important;
}

.site-logo.mobile-header-logo {
  order: 2;
}

.main-navigation.has-branding .menu-toggle,
.main-navigation.has-sticky-branding.navigation-stick .menu-toggle {
  order: 1;
}

.navigation-branding img,
.site-logo.mobile-header-logo img {
  height: auto;
  width: 110px;
}

.px-vt-home-buy-sticky {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 999;
}

.menu-toggle .gp-icon + .mobile-menu {
  display: none;
}

.px-vt-call-to-action-mobile-button {
  padding: 6px 20px;
}

.p-GridCell--12 {
  width: 100%;
  display: none;
}

/* make payment boxes purple */

body
  #wfacp-e-form
  #payment
  ul.payment_methods
  li.wc_payment_method
  div.payment_box {
  background-color: #261b3e !important;
  color: #fff;
}

body
  #wfacp-e-form
  #payment
  ul.payment_methods
  li.wc_payment_method
  div.payment_box.payment_method_fkwcs_stripe {
  background-color: #fff !important;
}

body
  #wfacp-e-form
  .woocommerce-checkout
  #payment
  ul.payment_methods
  div.payment_box.payment_method_fkwcs_stripe
  p,
body
  #wfacp-e-form
  .woocommerce-checkout
  #payment
  ul.payment_methods
  div.payment_box.payment_method_fkwcs_stripe
  label {
  color: #494949 !important;
}

.Label {
  color: #ffffff !important;
}
.p-FieldLabel {
  color: #fff !important;
}

/* END make payment boxes purple */

@media only screen and (max-width: 425px) {
  nav .px-vt-footer-main-menu {
    flex-direction: column;
    align-items: start;
  }
}

@media only screen and (max-width: 425px) {
  nav.px-vt-terms-menu {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.px-vt-highlight em {
  position: relative;
  font-style: normal;
  z-index: 10;
  white-space: nowrap;
}

.px-vt-highlight em::after {
  content: "";
  position: absolute;
  left: -3px;
  bottom: 0;
  width: calc(100% + 6px);
  height: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
  transform: translateY(-3px);
}

@media only screen and (max-width: 1100px) {
  .px-vt-highlight em::after {
    transform: translateY(0px);
  }
}

@media only screen and (max-width: 767px) {
  .px-vt-highlight em::after {
    height: 8px;
    transform: translateY(-3px);
  }
}

.px-vt-highlight-title em::after {
  transform: translateY(-8px);
}

@media only screen and (max-width: 767px) {
  .px-vt-highlight-title em::after {
    transform: translateY(-5px);
  }
}

.px-vt-button-hover:hover a.white-button {
  background: var(--vt-black);
  color: white;
}

.px-vt-link a {
  color: var(--vt-call-to-action);
}

.px-vt-link a:hover {
  color: white;
}

.px-vt-video-absolute {
  position: absolute;
  top: 40%;
  right: 0;
  left: 0;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .px-vt-video-absolute {
    position: relative;
  }
}

@media only screen and (max-width: 768px) {
  .px-vt-cover-remove-overflow {
    min-height: 100% !important;
  }
}

.px-vt-cover-remove-overflow {
  overflow: visible;
  display: block;
}

.wc-block-cart__submit-container a {
  background-color: var(--vt-call-to-action);
  border-radius: 200px;
  color: var(--contrast);
  font-size: 16px;
  font-weight: 700;
  padding: 11px 30px;
  text-transform: uppercase;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  text-decoration: none;
}

.wc-block-cart__submit-container a:hover {
  background-color: black;
  color: white;
}

.woocommerce-cart #page {
  background: #f8dad0;
}

.woocommerce-checkout #page {
  background: #f8dad0;
}

.wc-block-components-product-name {
  font-size: 26px !important;
  font-family: Alice, serif;
  color: black;
  font-weight: 600;
}

.wc-block-components-product-name:hover {
  text-decoration: none;
}

.wc-block-checkout__actions_row button {
  background-color: var(--vt-call-to-action);
  border-radius: 200px;
  color: var(--contrast);
  font-size: 16px;
  font-weight: 700;
  padding: 11px 30px;
  text-transform: uppercase;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  text-decoration: none;
}

.wc-block-checkout__actions_row button:hover {
  background-color: black;
  color: white;
}

@media only screen and (max-width: 425px) {
  .page-id-596 .site-footer,
  .page-id-1029 .site-footer,
  .page-id-233 .site-footer,
  .page-id-1529 .site-footer {
    margin-bottom: 86px;
  }
}

.page-id-596 .site-logo.mobile-header-logo,
.page-id-1029 .site-logo.mobile-header-logo {
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
}

@media only screen and (max-width: 430px) {
  .page-id-596 .site-logo.mobile-header-logo,
  .page-id-1029 .site-logo.mobile-header-logo {
    padding-right: 80px;
  }
}

.site-logo.mobile-header-logo {
  padding-left: 40px;
}

/* Fixes jumping header in and out on smaller screens */
.main-navigation.navigation-stick.has-sticky-branding
  .inside-navigation.grid-container {
  padding-left: 0px;
  padding-right: 0px;
}

.site-content {
  min-height: calc(100vh - 300px - 100px);
}

.px-vt-absolute-bracelet-circle {
  position: absolute;
  top: -20px;
  left: -20px;
}

.px-vt-absolute-bracelet-circle-2 {
  position: absolute;
  right: -20px;
  top: 150px;
}

.ddio_countdown_wrap {
  width: 100%;
}

/* Funnel Checkout Shortcodes */
.px-vt-add-purchase-number {
  color: #e2a58d;
  font-size: 18px;
  font-weight: 700;
}

.px-vt-today-date {
  color: #e2a58d;
  font-size: 12px;
  text-transform: uppercase;
}

/* Timeline Block Position Absolute */
.px-vt-timeline-position-absolute {
  position: absolute;
  left: 0;
  right: 0;
}

@media only screen and (min-width: 1026px) {
  .px-vt-timeline-blur {
    backdrop-filter: blur(10px);
  }
}

@media only screen and (min-width: 1026px) {
  .px-vt-timeline-bg {
    background: #140828;
  }
}

/* Landing Page */

/* Frame border on mobile*/
@media only screen and (max-width: 767px) {
  #px-vt-landing-page-cta-box {
    background-image: url(https://vibetracker.com/wp-content/uploads/2025/04/cta-frame-mobile.png);
  }

  #px-vt-landing-page-bonus-box {
    background-image: url(https://vibetracker.com/wp-content/uploads/2025/04/cta-frame-bonus-mobile.png);
  }
}

/* Bouncing effect for fontawesome icon */
.px-vt-fa-bounce .gb-icon {
  display: inline-block;
  animation: icon-bounce 2.6s infinite;
}

@keyframes icon-bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

/* Heading linear gradients */
.px-vt-linear-gradient-blue em {
  background: linear-gradient(to right, #bf83ff, #82f5ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.px-vt-linear-gradient-pink em {
  background: linear-gradient(to right, #f0b06f, #d07eac);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

/* Bg blur effect */
.px-vt-background-blur {
  backdrop-filter: blur(15px);
}

/* Border gradient effect */
.px-vt-border-gradient {
  position: relative;
  border-radius: 24px;
  z-index: 0;
}

.px-vt-border-gradient::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  padding: 4px;
  background: linear-gradient(to right, #5a427b, #986668);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  border-radius: 24px;
}

.wpml-ls-menu-item .wpml-ls-flag {
  padding-right: 8px;
}

@media only screen and (min-width: 1025px) {
  .gb-container-82a37b8e {
    background-color: var(--vt-landing-bg);
  }
}

/* Funnels form fixes */

body #wfacp-e-form .wfacp_form .wfacp-inner-form-detail-wrap,
body #wfacp-e-form .wfacp_main_form,
body #wfacp-e-form .wfacp_main_form .wfacp-payment-dec,
body #wfacp-e-form .wfacp_form .woocommerce-checkout #payment {
  background-color: transparent !important;
}

#wfacp_smart_buttons.wfacp_smart_buttons .wfacp_smart_button_inner > fieldset {
  background-color: #160b30 !important;
  color: #fff !important;
}

/* vt_bundle_shortcode attributes pill_text and pill_style css */
.px-vt-product-pill {
  position: absolute;
  top: -16px;
  align-self: center;
  background-color: var(--vt-light-primary);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 24px;
  border-radius: 16px;
  text-transform: uppercase;
}

.px-vt-bundle-product-with-pill {
  margin-top: 40px !important;
}

/* Primary style - Yellow (same as default) */
.px-vt-product-pill-style-primary {
  background-color: var(--vt-light-primary) !important;
}

/* Secondary style - Pink */
.px-vt-product-pill-style-secondary {
  background-color: #ffde59 !important;
}

.px-vt-button-secondary {
  background-color: var(--vt-call-to-action-yellow) !important;
}

.px-vt-button-secondary:hover {
  background-color: #fff !important;
}

/* Landing Page Color Picker */

.px-vt-cta-box-color-picker .px-vt-color-selector-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 30px;
  padding-top: 20px;
}

.px-vt-cta-box-color-picker .px-vt-color-selector-label {
  margin-bottom: 30px;
}

.px-vt-cta-box-color-picker .px-vt-color-selector-label {
  text-align: center;
}

@media only screen and (max-width: 430px) {
  .px-vt-cta-box-color-picker .px-vt-button {
    border-radius: 24px;
  }
}

bdi {
  text-wrap: nowrap;
}

tr.order-total td {
  padding: 12px 0px !important;
}

tr.order-total td small.includes_tax span.woocommerce-Price-amount {
  text-wrap: nowrap !important;
}

/* Landing pages */
.px-vt-image-gradient-border {
  border: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
  linear-gradient(to right, #5a427b, #986668) border-box;
}

.px-vt-icon-absolute {
  position: absolute;
}

.px-vt-figure-height-fix figure {
  height: 100%;
  display: flex;
}
