@import url("./components/plan-box.css");
@import url("./components/caption-box.css");

/* Buttons */
.btn.has-shiny-star-top,
.btn.has-shiny-star-bottom {
  overflow: visible;
  animation-delay: 2s;
}

/* Blockquotes */
blockquote {
  width: 100%;
}

blockquote:not([class*="is-style"]),
blockquote.is-style-default {
  font-size: var(--body-font-size);

  --padding: 2rem;

  background: rgb(var(--box-bg-color, 255, 255, 255));
  display: block;
  padding: var(--padding);
  padding-left: calc(var(--padding) + 3.5rem);
  border-radius: var(--df-border-radius);
  box-shadow: none;
  border: var(--box-border);
  border-left-width: 5px;
  width: 100%;
}

blockquote:not([class*="is-style"])::before,
blockquote.is-style-default::before {
  top: var(--padding);
  left: var(--padding);
  background: transparent;
  line-height: 1;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  margin: -0.8rem 0 0 -1rem;
  border-radius: 0;
  transform: scale(0.8);
}

blockquote:not([class*="is-style"]) p,
blockquote.is-style-default p {
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* Box */
.box:blank {
  display: none;
}

.box.white {
  background-color: #fff;
}

.box.gold {
  background: var(--btn-bg-color);
  border: none;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 15%);
}

.box.line-green {
  background: var(--green-btn-bg-color);
  border: none;
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 15%);
}

.box.warning {
  background: #fff;
  border: 2px solid var(--highlight-color-hover);
  border-top-width: 0.6rem;
  box-shadow: 0 0 1rem rgb(0 0 0 / 10%);
}

.box.warning .icn {
  position: relative;
  top: -3rem;
  display: inline-block;
  font-size: 5.5rem;
  margin: -2rem 0 0;
  color: var(--highlight-color);
  text-shadow: 0 2px 0.5rem rgb(0 0 0 / 10%);
}

.box.warning.hf-pd-all .icn {
  top: -1.2rem;
  margin-bottom: 1rem;
}

@media (width <=500px) {
  .box.warning.hf-pd-all .icn {
    top: -1rem;
  }
}

.box.tiny {
  font-size: 15px;

  --df-p-margin-unit: 1rem;
}

/* Separator */
hr.wp-block-separator::before {
  height: 2px;
  border-radius: 0;
}

hr.wp-block-separator.gray::before {
  background: rgb(0 0 0 / 10%);
}

/* Chat box */
.box.chat-box .chat-message {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
}

.box.chat-box .chat-message + .chat-message {
  margin-top: 2rem;
}

.box.chat-box figure {
  margin: 0;
}

.box.chat-box .components-resizable-box__container {
  display: inline-block !important;
}

.box.chat-box .chat-message img {
  --width: 4rem;

  display: block;
  position: absolute;
  top: 0.5rem;
  left: 0;
  max-width: var(--width);
  width: var(--width) !important;
  height: var(--width) !important;
  border-radius: 50%;
  object-fit: cover;
}

.box.chat-box .chat-message:nth-of-type(2n) {
  text-align: right;
}

.box.chat-box .chat-message:nth-of-type(2n) img {
  left: auto;
  right: 0;
}

.box.chat-box .chat-bubble {
  display: inline-block;
  margin-left: 6rem !important;
  padding: 1.5rem 2rem;
  background: #fff;
  border-radius: var(--df-border-radius);
  border-top-left-radius: 0;
  box-shadow: 0 2px 2px 0 rgb(0 0 0 / 8%);
}

.box.chat-box .chat-message:nth-of-type(2n) .chat-bubble {
  margin-left: 0 !important;
  margin-right: 6rem !important;
  border-radius: var(--df-border-radius);
  border-top-right-radius: 0;
}

/* Iconed Box */
.box.iconed-box {
  padding-left: 7rem;
  position: relative;
}

.edit-post-visual-editor .box.iconed-box {
  padding-left: 3rem;
}

.box.iconed-box i.fa:nth-child(1) {
  position: absolute;
  width: 1.5em;
  height: auto;
  font-size: 1.5em;
  top: 50%;
  left: var(--df-padding-unit);
  color: var(--highlight-color);
  margin-top: -1.5rem;
}

.box.iconed-box.hf-pd-all i.fa:nth-child(1) {
  left: calc(var(--df-padding-unit) / 2);
}

.edit-post-visual-editor .box.iconed-box i.fa:nth-child(1) {
  position: static;
}

@media (width <=600px) {
  .box.iconed-box {
    padding-left: 3rem;
  }

  .box.iconed-box p {
    padding-left: 3.2rem;
  }
}

/* Content Box */
.box.content-box p:last-of-type {
  margin-bottom: 0;
}

a.box:hover,
a.box:focus {
  box-shadow: 0 0.2rem 0.9rem rgb(0 0 0 / 4%);
}

/* Shiny Stars */
.has-shiny-star-top::before,
.has-big-shiny-star-top::before,
.has-shiny-star-bottom::after {
  position: absolute;
  content: "";
  display: block;
  top: -4rem;
  left: 0;
  background: url("../img/shiny-star-dec.webp") no-repeat center center /
    contain;
  width: 8rem;
  height: 8rem;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  animation: shiny_star_top 12s linear infinite forwards;
  animation-delay: 2s;
}

.has-big-shiny-star-top::before {
  animation-name: big_shiny_star_top;
}

.has-shiny-star-bottom::after {
  inset: auto 0 -4rem auto;
  animation-name: shiny_star_bottom;
}

@keyframes shiny_star_top {
  0% {
    opacity: 0;
    left: 0;
    transform: scale(0.4);
  }

  5% {
    opacity: 0.9;
  }

  15% {
    left: calc(50% - 8rem);
    opacity: 1;
    transform: scale(0.6);
  }

  40% {
    opacity: 0.9;
  }

  45% {
    left: calc(100% - 8rem);
    transform: scale(0.4);
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes big_shiny_star_top {
  0% {
    opacity: 0;
    left: 0;
    transform: scale(0.8);
  }

  5% {
    opacity: 0.9;
  }

  15% {
    left: calc(50% - 8rem);
    opacity: 1;
    transform: scale(1);
  }

  40% {
    opacity: 0.9;
  }

  45% {
    left: calc(100% - 8rem);
    transform: scale(0.8);
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes shiny_star_bottom {
  0% {
    opacity: 0;
    right: 0;
    transform: scale(0.4);
  }

  5% {
    opacity: 0.9;
  }

  15% {
    right: calc(50% - 8rem);
    opacity: 1;
    transform: scale(0.6);
  }

  40% {
    opacity: 0.9;
  }

  45% {
    right: calc(100% - 8rem);
    transform: scale(0.4);
    opacity: 0;
  }

  60% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Prize Box */
.prize-box {
  --bottom-dec-height: 17.5rem;

  position: relative;
  text-align: center;
  background: var(--btn-bg-color);
  border: none;
  text-shadow: 0 1rem 0.8rem rgb(0 0 0 / 20%);
  line-height: 1;
  font-size: 11.5rem;
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 60%);
  margin: 0 auto;
  max-width: 34rem !important;
  padding: var(--df-padding-unit) 1rem var(--bottom-dec-height);
  transition: transform 0.3s ease;
}

.prize-box.banner-full {
  padding: 0;
  border-radius: var(--df-border-radius);
  border: 2px solid var(--btn-bg-color-flat);
  animation: prize-box-img-zoom 3s ease infinite;
}

.prize-box figure {
  display: contents;
}

.prize-box::before,
.prize-box::after {
  position: absolute;
  content: "";
  display: block;
  top: -4rem;
  left: 50%;
  background: url("../img/coin-stack-dec.avif") no-repeat center center /
    contain;
  background-image: image-set(
    url("../img/coin-stack-dec.avif") 1x,
    url("../img/coin-stack-dec.webp") 1x
  );
  width: 13.7rem;
  height: 9.1rem;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}

.prize-box::after {
  inset: auto auto -1px 50% !important;
  background-image: url("../img/bonus-card-go-to-inspire-dec.webp");
  background-position: center bottom;
  background-size: 100% auto;
  width: 100%;
  height: var(--bottom-dec-height);
  border-radius: 0 0 var(--df-border-radius) var(--df-border-radius);
  z-index: 1;
}

.prize-box.banner-full::before,
.prize-box.banner-full::after {
  display: none;
}

.prize-box-title {
  font-size: 100%;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  margin: 0;
}

.prize-box-title sub {
  position: relative;
  font-size: 50%;
  top: -0.2rem;
}

.prize-box-sub-title {
  position: relative;
  font-size: 25%;
  font-weight: 700;
  color: var(--dark-bg-color);
  margin: -3rem 0 2rem;
}

.prize-box img {
  width: 27.5rem;
  height: auto;
  object-fit: contain;
  margin: 3rem 0 1rem;
  animation: prize-box-img-zoom 3s ease infinite;
}

.prize-box.banner-full img {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  animation: none;
  border-radius: var(--df-border-radius);
}

@keyframes prize-box-img-zoom {
  0% {
    transform: scale(1);
  }

  65% {
    transform: scale(1.05);
  }
}

@media (width <=1100px) {
  .prize-box {
    --bottom-dec-height: 17rem;

    font-size: 10rem;
    max-width: 34rem !important;
  }
}

@media (width <=992px) {
  .prize-box {
    --bottom-dec-height: 15.5rem;

    font-size: 10rem;
    max-width: 30rem !important;
    margin: 2rem auto;
  }

  .prize-box::before {
    width: 11rem;
    height: 8rem;
  }
}

@media (width <=440px) {
  .prize-box {
    --bottom-dec-height: 13rem;

    font-size: 8rem;
    max-width: 26rem !important;
    margin: 4rem auto;
    text-shadow: 0 0.8rem 0.6rem rgb(0 0 0 / 20%);
  }
}

@media (width <=360px) {
  .prize-box {
    --bottom-dec-height: 12rem;

    font-size: 7rem;
    max-width: 24rem !important;
  }
}

/* Ranking Box */
.ranking-box {
  position: relative;

  --box-bg-color: 255, 255, 255;
  --box-border: 1px solid #cdcdcd;

  margin-bottom: 0;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  font-size: 1.6rem;
}

.ranking-box img {
  position: relative;
  width: 11rem;
  height: auto;
  margin: -4rem 0 2.5rem;
  filter: drop-shadow(0 1rem 1rem rgb(0 0 0 / 20%));
  z-index: 4;
}

.ranking-box .featured-ribbon {
  position: absolute;
  top: 1rem;
  left: 2rem;
  width: 4rem;
  height: auto;
  filter: none;
  margin: 0;
}

.editor-visual-editor .featured-ribbon {
  position: static;
}

.ranking-box.rank-1 {
  transform: scale(1.02);
  box-shadow: 0 0 3rem rgb(232 183 60 / 30%);
}

.ranking-box.rank-1 img {
  animation: prize-box-img-zoom 3s ease infinite;
}

.ranking-box .title {
  font-size: 2.2rem;
  margin: 0 0 1rem;
}

.ranking-box .title mark {
  font-weight: normal;
  font-size: 2rem;
}

.ranking-box p {
  margin: 0;
}

@media (width >=992px) {
  .ranking-box:hover {
    transform: scale(0.95);
  }

  .ranking-box.rank-1:hover {
    transform: scale(1.06);
  }
}

@media (width <=992px) {
  .ranking-box {
    margin-top: calc(var(--df-margin-unit) + 3rem);
    transform: scale(1);
  }

  .ranking-box .featured-ribbon {
    width: 5rem;
  }

  .ranking-box.rank-1 {
    transform: scale(1);
  }

  .ranking-box.rank-last {
    margin-bottom: 1rem;
  }
}

/* Package Columns  */

.package-columns .ranking-box,
.package-columns .ranking-box:hover {
  transform: scale(1);
  border-radius: 0;
  height: 100%;
}

.package-columns .tabled-list {
  font-size: 15px;
  margin-top: 2rem;
}

.package-columns .tabled-list li {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  line-height: 1.2;
  border-color: #aaa;
  min-height: 5rem;
  align-items: center;
  padding: 0.8rem 0 !important;
}

.wp-admin .package-columns .tabled-list li {
  display: block;
  text-align: center;
}

.package-columns .tabled-list li span.icn-bg {
  position: absolute;
  right: 0;
}

.package-columns .tabled-list strong {
  margin-inline-start: 0;
}

.wp-admin .package-columns .tabled-list li strong {
  float: none !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin-inline-start: 0 !important;
  margin-bottom: 5px;
}

.package-columns .icn-bg {
  width: 2.2rem;
  height: 2.2rem;
}

@media (width >=992px) {
  .package-columns {
    --df-column-gap: 0;

    padding-left: 2rem;
    padding-right: 2rem;
  }

  .package-columns .ranking-box:not(.rank-1) {
    border-right-width: 0;
  }
}

@media (width <=992px) {
  .package-columns .ranking-box,
  .package-columns .ranking-box:hover {
    height: auto;
    border-radius: var(--df-border-radius);
  }

  .package-columns .wp-block-column {
    padding-bottom: 0 !important;
  }
}

/* Tier Box */
.box.tier-box {
  --dec-color: var(--btn-bg-color-flat);

  position: relative;
  overflow: hidden;
  font-size: calc(var(--body-font-size) * 0.9);
}

.box.tier-box::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: -20rem;
  width: 50%;
  height: 90%;
  background: var(--dec-color);
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.25;
}

.tier-box.tier-1 {
  --dec-color: #056b3e;
}

.tier-box.tier-2 {
  --dec-color: #630d19;
}

.tier-box.tier-3 {
  --dec-color: #0b63a5;
}

.tier-box.tier-4 {
  --dec-color: #222;
}

.box.tier-box .title {
  font-size: calc(var(--body-font-size) * 1.3);
  margin-bottom: var(--hf-margin-unit);
}

.box.tier-box .points-required {
  font-size: calc(var(--body-font-size) * 0.9);
}

.box.tier-box ul {
  margin: 1rem 0;
}

.box.tier-box .fa {
  margin-right: 0.2rem;
  width: 2rem;
}

@media (width <=600px) {
  .box.tier-box img {
    width: 24rem;
  }

  .box.tier-box {
    padding-left: var(--df-padding-unit);
    padding-right: var(--df-padding-unit);
  }
}

/* Step Box */
.box.step-box {
  --dec-color: var(--btn-bg-color-flat);

  position: relative;
  overflow: hidden;
  font-size: calc(var(--body-font-size) * 0.9);
}

.box.step-box .title {
  font-size: calc(var(--body-font-size) * 1.3);
  margin-bottom: var(--hf-margin-unit);
}

.box.step-box ul {
  margin: 1rem 0;
}

.box.step-box .fa {
  margin-right: 0.2rem;
  width: 2rem;
}

@media (width >=992px) {
  .box.step-box img {
    width: 17rem;
    object-fit: contain;
    max-height: 26rem;
  }

  .box.step-box .extra-wide img {
    width: 28rem;
    max-height: 28rem;
  }

  .box.step-box figure {
    margin-bottom: 0;
  }
}

@media (width <=992px) {
  .box.step-box {
    text-align: center;
  }
}

@media (width <=600px) {
  .box.step-box img {
    width: 15rem;
    object-fit: contain;
    max-height: 25rem;
  }

  .box.step-box .extra-wide img {
    width: 100%;
    max-height: 28rem;
  }

  .box.step-box {
    padding-left: var(--df-padding-unit);
    padding-right: var(--df-padding-unit);
  }
}

/* Modal */
.modal-body .modal-inner {
  padding: var(--df-padding-unit);
  text-align: left;
}

.modal-body .modal-inner h2 {
  --df-margin-unit: 2rem !important;
}

@media (width <=600px) {
  .modal-body .modal-inner {
    padding: var(--df-column-gap);
  }

  .modal-close.close {
    transform: scale(1.3);
    margin-top: 3px;
    margin-left: 6px;
  }

  .modal-close.close:hover,
  .modal-close.close:focus {
    transform: scale(1.4) !important;
  }

  .modal-body .modal-inner h2 {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* Columns */
.has-column-separator .wp-block-column {
  position: relative;
}

.has-column-separator .wp-block-column:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 2px;
  height: 60%;
  background: rgb(0 0 0 / 10%);
}

@media (width <=992px) {
  a .has-column-separator .wp-block-column::before,
  .has-column-separator .wp-block-column:not(:last-child)::before {
    display: none;
    top: auto;
    bottom: 1.5rem;
    right: 10%;
    width: 80%;
    height: 1px;
  }
}

/* Accordions */
.faq-section .title {
  margin-bottom: 0;
}

.accordion-list .accordion {
  background: var(--dark-bg-color);
  margin-bottom: var(--hf-margin-unit);
  border-radius: var(--df-border-radius);
  box-shadow: var(--box-box-shadow);
  border: 1px solid var(--dark-bg-color) !important;
  padding: 1rem var(--df-padding-unit);
  transition: background 0.3s ease;
}

.accordion-list .accordion:last-child {
  margin-bottom: 0;
}

.accordion .accordion-title::before,
.accordion .accordion-title::after {
  background: #08b2e3;
  border-radius: 1rem;
}

.accordion:not(.opened) {
  --title-color: var(--dark-bg-text-color);
}

.accordion.opened {
  background: var(--light-bg-color);
}

.accordion.opened:hover {
  background: var(--light-bg-color);
}

.accordion .accordion-title {
  padding: 1.6rem 5rem 2rem 0;
}

.accordion.item .title,
.accordion.item .holder {
  padding-left: 7rem;
}

.accordion.item::before,
.accordion.item .holder::before {
  position: absolute;
  left: var(--df-padding-unit);
  content: "Q";
  display: block;
  width: 4.3rem;
  height: 4.3rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  background: rgb(0 0 0 / 60%);
  color: #fff;
  border-radius: 50%;
  margin-top: 0.6rem;
  padding: 1rem;
  transform: scale(0.9);
}

.accordion.item.opened::before {
  background: var(--dark-bg-color);
}

.accordion.item .holder::before {
  left: 0;
  content: "A";
  color: var(--dark-bg-color);
  background: #b7e2ee;
  margin-top: 0;
}

.accordion-list .auto.opened .holder {
  min-height: 6rem;
}

.accordion.item .holder div p {
  margin-bottom: 0.5rem;
}

.accordion ul {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (width <=992px) {
  .accordion-list {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .accordion-list .accordion {
    margin-bottom: 1.5rem;
    padding: 0.1rem var(--df-padding-unit) 0.1rem 1.2rem;
  }

  .accordion.item::before {
    left: 1.2rem;
  }

  .accordion .accordion-title::before,
  .accordion .accordion-title::after {
    scale: 1.3;
  }

  .accordion.item .title,
  .accordion.item .holder {
    padding-left: 4rem;
  }

  .accordion.item .title {
    padding-right: 3rem;
  }

  .accordion.item::before,
  .accordion.item .holder::before {
    width: 3rem;
    height: 3rem;
    font-size: 1.7rem;
    margin-top: 1.4rem;
    padding: 0.7rem 0 0;
  }

  .accordion.item .holder::before {
    left: 0;
    margin-top: 0;
  }
}

/* Slider */
.swipe-slider {
  overflow: hidden;
  border-radius: var(--df-border-radius);
  height: 100%;
}

.swipe-slider .banner-area,
.swipe-slider .tns-outer,
.swipe-slider .tns-ovh,
.swipe-slider .tns-inner {
  height: 100%;
}

.swipe-slider img {
  height: 100% !important;
  object-fit: cover;
}

.tns-nav button.tns-nav-active {
  background: none;
  box-shadow:
    inset 0 0 0 1px #fff,
    0 0 1px rgb(0 0 0 / 10%);
  transform: scale(1.4);
}

@media (width <=992px) {
  .swipe-slider,
  .video-container.entry-video {
    height: 500px;
  }
}

@media (width <=500px) {
  .swipe-slider {
    margin-bottom: 0.5rem;
    height: 270px;
  }

  .swipe-slider .tns-controls > button {
    left: 1.2rem;
    transform: scale(0.6);
  }

  .swipe-slider .tns-controls > button:nth-child(2) {
    transform: scale(0.6) scaleX(-1);
    left: auto;
    right: 1.2rem;
  }
}

@media (width <=370px) {
  .swipe-slider {
    height: 220px;
  }
}

/* Menu Banners */
.menu-inner-html {
  order: 3;
}

.menu-banners {
  display: none;
  padding-right: var(--df-column-gap);
  padding-left: var(--df-column-gap);
}

.menu-active .menu-banners {
  display: block;
  margin: 1rem 0;
}

.menu-active .menu-banners .btn-main {
  margin-top: 3rem;
}

/* Video Embed */
.video-container.entry-video {
  margin: 0;
  box-shadow: none;
  height: 100%;
  background: #000;
  border-radius: var(--df-border-radius);
}

@media (width <=500px) {
  .video-container.entry-video {
    margin-bottom: 0.5rem;
    height: auto;
  }
}

/* Checked Lists */
ul[class*="checked-list"] > li {
  background-image: url("../img/checked-list.svg");
}

/* Tables */
.styled-table,
.styled-table table {
  table-layout: auto;
  border-radius: 0;
}

.scrollable-table-holder {
  --min-td-width: 18rem;
}

/* Table of Contents */
.table-of-contents .title {
  font-weight: bold;
  text-align: center;
}

.table-of-contents.expandable > .title::after {
  background-image: url("data:image/svg+xml,%3Csvg width='13' height='7' fill='%230b1451' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='.99' d='M6.5 0c.321-.003.63.114.857.322l5.288 4.8a1.03 1.03 0 0 1 0 1.556 1.3 1.3 0 0 1-1.713 0L6.5 2.653 2.068 6.678a1.3 1.3 0 0 1-1.713 0 1.03 1.03 0 0 1 0-1.556l5.288-4.8C5.87.114 6.18-.003 6.5 0z' /%3E%3C/svg%3E");
}

.table-of-contents .title::before {
  content: "\f0ca";
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  margin-right: 0.5rem;
}

.table-of-contents ul li {
  counter-increment: toc-item;
}

.table-of-contents ul li a:not(:hover, :focus) {
  color: var(--text-color);
}

.table-of-contents ul li a::before {
  content: counter(toc-item) " | ";
}

.table-of-contents ul li:is([data-target-tag="H3"]) {
  counter-increment: toc-sub-item;
}

.table-of-contents ul li:not([data-target-tag="H3"]) {
  counter-reset: toc-sub-item;
}

.table-of-contents ul li:is([data-target-tag="H3"]) a::before {
  content: counter(toc-item) "-" counter(toc-sub-item) " | ";
}

/* Floating Bar */
.floating-bottom-bar {
  --column-gap: calc(var(--df-column-gap) - 1rem);
  --bar-width: calc(100% - (var(--column-gap) * 2));
  --text-padding: 2rem;
  --icon-size: 4.5rem;
  --padding: 1.5rem;

  position: fixed;
  bottom: 2rem;
  width: var(--bar-width);
  left: 50%;
  padding: var(--padding);
  margin: 0 0 0 calc((var(--bar-width) / 2) * -1);
  z-index: 10000;
  box-shadow: 0 1rem 2rem rgb(0 0 0 / 20%);
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  overflow: hidden;
  border: 1px solid white;
  transition: all ease 0.2s;
}

.floating-bottom-bar:hover {
  transform: scale(1.01);
}

.floating-bottom-bar.invisible,
.menu-active .floating-bottom-bar {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.95);
  bottom: -100px;
}

.floating-bottom-bar .inner {
  display: flex;
  align-items: center;
}

.floating-bottom-bar .icon {
  position: relative;
  text-align: left;
  flex-basis: var(--icon-size);
}

.floating-bottom-bar .icon::after {
  content: "";
  display: block;
  position: absolute;
  top: -0.1rem;
  right: -0.1rem;
  width: 1.1rem;
  height: 1.1rem;
  background: #32ea21;
  border-radius: 100%;
}

.floating-bottom-bar p,
.floating-bottom-bar img,
.floating-bottom-bar a {
  margin: 0;
  color: inherit !important;
}

.floating-bottom-bar a:hover {
  opacity: 1 !important;
}

.floating-bottom-bar .text {
  flex: 1;
  font-size: 105%;
  font-weight: bold;
  padding: 0 var(--text-padding);
}

.floating-bottom-bar .arrow {
  text-align: right;
}

.floating-bottom-bar .text p {
  font-size: 120%;
  font-weight: bold;
}

.floating-bottom-bar .text .title {
  font-size: 70%;
}

@media (width >=1100px) {
  .floating-bottom-bar {
    --bar-width: 42rem;
    --icon-size: 4rem;
    --text-padding: 1rem;
    --padding: 1.5rem;

    left: 50%;
    right: auto;
    margin: 0;
    margin-left: calc((var(--bar-width) / 2) * -1);
    font-size: 1.3rem;
  }
}

@media (width <=480px) {
  .floating-bottom-bar {
    font-size: 1.5rem;
  }
}

@media (width <=400px) {
  .floating-bottom-bar {
    --icon-size: 4.5rem;

    font-size: 1.5rem;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  --breadcrumb-text-color: #fff;

  margin-bottom: 0.5rem;
  margin-top: -0.5rem;
  background: rgb(0 0 0 / 30%);
}

.sub-header.hero .breadcrumbs {
  display: none;
}

.single .breadcrumbs span[typeof="ListItem"]:last-child {
  display: none;
}

@media (width <=600px) {
  .breadcrumbs {
    display: block;
    font-size: 1.2rem;
    margin: -2rem 0 2rem calc(var(--df-column-gap) * -1);
    border-radius: 0;
    line-height: 1.2;
    padding: 0.7rem var(--df-column-gap);
    width: calc(100% + (var(--df-column-gap) * 2));
    max-width: none;
    background: rgb(0 0 0 / 40%);
  }
}

/* Steps boxes */
.steps-box {
  --indicator-width: 8rem;

  position: relative;
  text-align: left;
  padding-left: calc(var(--indicator-width) + var(--df-padding-unit));
}

.steps-box::after {
  --width: 5rem;

  content: "";
  background: url("../img/step-down-arrow.svg") no-repeat center top / contain;
  display: block;
  position: absolute;
  width: var(--width);
  height: 2rem;
  bottom: -2rem;
  margin-left: calc((var(--width) / 2) * -1);
  left: 50%;
}

.steps-box .step-indicator {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  background: var(--dark-bg-color);
  color: var(--dark-bg-text-color);
  line-height: 1;
  padding: 1rem;
  text-align: center;
  width: var(--indicator-width);
  height: 100%;
  border-radius: var(--df-border-radius) 0 0 var(--df-border-radius);
}

.steps-box .step-indicator strong {
  display: block;
  font-size: 180%;
  min-width: 100%;
  font-style: inherit;
  margin-top: 0.5rem;
}

.steps-box .step-title {
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 2rem;
}

.steps-box *:last-child {
  margin-bottom: 0;
}

.steps-box:last-of-type::after {
  display: none;
}

@media (width <=600px) {
  .steps-box {
    --indicator-width: 6rem;
  }

  .steps-box .step-indicator {
    font-size: 1rem;
  }
}

/* Golden circle text */
.golden-circle-text {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  text-shadow: 0 0 1rem rgb(255 255 255 / 70%);
  line-height: 1.2;
  font-weight: bold;
  margin: 1rem auto;
  margin-left: auto;
  margin-right: auto;
  width: 20rem;
  height: 20rem;
  background: url("../img/golden-circle-bg.webp") no-repeat center center /
    contain;
  padding: 3rem;
}

.golden-circle-text p {
  margin: 0;
  line-height: inherit;
}

@media (width <=992px) {
  .golden-circle-text {
    font-size: 2rem;
    width: 15rem;
    height: 15rem;
    padding: 1rem;
  }
}

/* Decorated benefit */
.decorated-benefit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #0b1451 !important;
  text-shadow: none;
  line-height: 1.2;
  font-weight: bold;
  margin: 5rem auto;
  margin-left: auto;
  margin-right: auto;
  width: 20rem;
  height: 20rem;
  background: transparent;
  padding: 3rem;
}

.decorated-benefit::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/benefit-decorator.webp") no-repeat center center /
    contain;
  transform-origin: center;
  transform: scale(1.35);
  z-index: 0;
}

.decorated-benefit p {
  position: relative;
  margin: 0 !important;
  line-height: inherit;
  z-index: 2;
}

@media (width <=992px) {
  .decorated-benefit {
    width: 15rem;
    height: 15rem;
    font-size: 1.7rem;
    padding: 2.5rem;
  }
}

@media (width <=360px) {
  .wp-block-column:has(> .decorated-benefit) {
    max-width: 50%;
  }

  .decorated-benefit {
    width: 14rem;
    height: 14rem;
  }
}

/* ## Subscribe Pop-up ## */
.pop-up-subscribe {
  position: relative;
  background: var(--dark-bg-color) url("../img/sub-header-bg.avif") no-repeat
    center center / cover;
  background-image: image-set(
    url("../img/sub-header-bg.avif") 1x,
    url("../img/sub-header-bg.webp") 1x
  );
  min-height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.pop-up-subscribe::before,
.pop-up-subscribe::after {
  content: "";
  background-image: url("../img/hero-img-sm.avif");
  background-image: image-set(
    url("../img/hero-img-sm.avif") 1x,
    url("../img/hero-img-sm.webp") 1x
  );
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position-y: -5rem;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.pop-up-subscribe::after {
  display: none;
}

.pop-up-subscribe-icn {
  width: 7rem;
  height: auto;
  margin-top: -3rem;
  margin-bottom: -1rem;
}

.pop-up-subscribe .box {
  border-width: 0.2rem;
  border-color: var(--dark-bg-color);
}

@media (width <=680px) {
  .pop-up-subscribe {
    padding: var(--df-column-gap);
  }

  .pop-up-subscribe::before {
    background-position-y: -16rem;
  }

  .pop-up-subscribe::after {
    display: block;
    background-position: center bottom -8rem;
  }

  .pop-up-subscribe-icn {
    width: 6rem;
    margin-top: -2rem;
  }
}

/* Image only pop-up */
.modal-holder:has(.default-content:not(.hidden)) {
  width: auto;
}

.modal-body .default-content:not(.hidden):has(.fullwidth-pop-up-image) p {
  margin: 0;
  display: contents;
}

.fullwidth-pop-up-image {
  margin-bottom: 0;
  width: 70vh;
  height: 70vh;
  aspect-ratio: 1 / 1;
}

@media (width <=992px) {
  .fullwidth-pop-up-image {
    width: 90vh;
    height: auto;
  }
}

@media (width <=680px) {
  .page-pop-up-overlay {
    background: radial-gradient(
      circle,
      rgb(30 30 30 / 93%) 4%,
      rgb(0 0 0 / 92%) 65%
    );
    backdrop-filter: blur(1px);
  }

  .page-pop-up-overlay
    .modal-holder:has(.default-content:not(.hidden) .fullwidth-pop-up-image) {
    background: rgb(255 255 255 / 10%);
  }

  .modal-body .default-content:not(.hidden):has(.fullwidth-pop-up-image) {
    --width: 90%;

    display: flex;
    width: var(--width);
    height: var(--width);
    margin-left: calc((100% - var(--width)) / 2);
    overflow: hidden;
    align-items: center;
  }

  .fullwidth-pop-up-image {
    width: 100%;
    height: auto;
    box-shadow: 0 0 2rem rgb(0 0 0 / 10%);
  }
}

/* Author Box */
.author-box .title {
  font-size: 1.8rem;
}

/* Social Media Icons Row */
.social-media-icons-row a {
  display: inline-block;
  color: var(--highlight-color) !important;
  font-size: 3.2rem;
  margin: 0 0.5rem;
  height: auto;
  transition: all ease 0.2s;
}

.social-media-icons-row a:is(:hover, :focus) {
  color: var(--highlight-color-hover) !important;
  transform: scale(1.05);
  transform-origin: center;
}

.social-media-icons-row a img {
  width: 5.5rem;
}

/* Expandable Box */

.box.expandable-box {
  --img-witdh: 40rem;
  --padding: 3rem;

  position: relative;
  padding: 0;
  overflow: hidden;
}

.editor-styles-wrapper .box.expandable-box img {
  position: static;
  width: 100% !important;
}

.box.expandable-box .box-content {
  position: relative;
  padding: var(--padding);
  padding-right: calc(var(--img-witdh) + var(--padding));
}

.editor-styles-wrapper .box.expandable-box .box-content {
  padding-right: var(--padding);
}

.box.expandable-box figure {
  margin: 0;
}

.editor-styles-wrapper .box.expandable-box figure {
  margin-bottom: 2rem;
  width: 100%;
}

.box.expandable-box img {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--img-witdh) !important;
  min-width: 0 !important;
  height: 100% !important;
  object-fit: cover;
}

.box.expandable-box .title {
  font-size: 2rem;
}

.box.expandable-box .description,
.box.expandable-box .expandable-area,
.box.expandable-box .box-toggle {
  font-size: 1.6rem;
}

.box.expandable-box .box-toggle {
  margin: 0;
}

.box.expandable-box .box-toggle a {
  display: block;
  margin-bottom: 0;
  background: rgb(0 0 0 / 10%);
  border-radius: var(--df-border-radius);
  padding: 0.5rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--text-color);
}

.box.expandable-box .box-toggle a:hover {
  background: rgb(0 0 0 / 20%);
  cursor: pointer;
}

.box.expandable-box .expandable-area {
  overflow: hidden;
  height: auto;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.box.expandable-box .expandable-area .styled-table {
  --table-cell-padding: 1.2rem 1.5rem;
}

.box.expandable-box.is-expanded .expandable-area,
.editor-styles-wrapper .box.expandable-box .expandable-area {
  max-height: 200vh;
  overflow: auto;
}

.box.expandable-box .inner {
  padding: var(--padding);
  border-top: 1px solid rgb(0 0 0 / 10%);
}

.box.expandable-box .inner > *:last-child {
  margin-bottom: 0;
}

@media screen and (width <=740px) {
  .box.expandable-box {
    --img-witdh: 20rem;
    --padding: 2rem;
  }
}

@media screen and (width <=500px) {
  .box.expandable-box .title {
    font-size: 1.8rem;
  }

  .box.expandable-box .description,
  .box.expandable-box .expandable-area,
  .box.expandable-box .box-toggle {
    font-size: 1.4rem;
  }
}

@media screen and (width <=425px) {
  .box.expandable-box {
    --img-witdh: 100%;
    --padding: 2rem;
  }

  .box.expandable-box .box-content {
    padding: var(--padding);
  }

  .box.expandable-box img {
    position: static;
    width: calc(100% + var(--padding) * 2) !important;
    max-width: none;
    max-height: 23rem;
    margin: calc(var(--padding) * -1) calc(var(--padding) * -1) var(--padding);
  }
}

/* Symbols */
.icn-bg {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background-color: var(--icon-color, currentColor);
  mask-image: var(--icon-svg, unset);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  color: inherit;
}

.icn-bg[data-icon="doubleCircle"] {
  --icon-color: #f7af4a;
  --icon-svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M25,43.4C14.9,43.4,6.6,35.1,6.6,25S14.9,6.6,25,6.6S43.4,14.9,43.4,25S35.1,43.4,25,43.4z M25,8.8 C16.1,8.8,8.8,16.1,8.8,25S16.1,41.2,25,41.2S41.2,33.9,41.2,25S33.9,8.8,25,8.8z"/><path d="M25,2C12.3,2,2,12.3,2,25s10.3,23,23,23s23-10.3,23-23S37.7,2,25,2z M25,45.5C13.7,45.5,4.5,36.3,4.5,25S13.7,4.5,25,4.5 S45.5,13.7,45.5,25S36.3,45.5,25,45.5z"/></svg>');
}

.icn-bg[data-icon="circle"] {
  --icon-color: #42db9b;
  --icon-svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M25,47C12.9,47,3,37.1,3,25S12.9,3,25,3s22,9.9,22,22S37.1,47,25,47z M25,5.6C14.3,5.6,5.6,14.3,5.6,25S14.3,44.4,25,44.4 S44.4,35.7,44.4,25S35.7,5.6,25,5.6z"/></svg>');
}

.icn-bg[data-icon="triangle"] {
  --icon-color: #f5ee31;
  --icon-svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M46.7,42.9H3.3c-0.4,0-0.6-0.4-0.4-0.8L24.6,4.6c0.2-0.3,0.7-0.3,0.9,0l21.7,37.6C47.4,42.5,47.1,42.9,46.7,42.9z M6.7,40.4 h36.5L25,8.8L6.7,40.4z"/></svg>');
}

.icn-bg[data-icon="close"] {
  --icon-color: #f7644a;
  --icon-svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M42.7,42.7L42.7,42.7c-0.5,0.5-1.3,0.5-1.8,0L7.3,9.1c-0.5-0.5-0.5-1.3,0-1.8l0,0c0.5-0.5,1.3-0.5,1.8,0l33.6,33.6 C43.2,41.4,43.2,42.2,42.7,42.7z"/><path d="M7.3,42.7L7.3,42.7c-0.5-0.5-0.5-1.3,0-1.8L40.9,7.3c0.5-0.5,1.3-0.5,1.8,0v0c0.5,0.5,0.5,1.3,0,1.8L9.1,42.7 C8.6,43.2,7.8,43.2,7.3,42.7z"/></svg>');
}

.icn-bg[data-icon="hatena"] {
  --icon-color: #93c9da;
  --icon-svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M31.3,28.4c5.2-2.9,7.7-6.8,7.7-12c0-9.4-7.5-12.7-14-12.7c-6.8,0-14,4.9-14,14.1c0,0.9,0.7,1.6,1.6,1.6 c0.9,0,1.6-0.7,1.6-1.6C14.3,10.7,19.7,7,25,7c6.7,0,10.7,3.5,10.7,9.4c0,2.5-0.6,6.1-6,9.1c-2.2,1.2-6.3,4.6-6.3,8.6 c0,0.9,0.7,1.6,1.6,1.6s1.6-0.7,1.6-1.6C26.6,32,29.4,29.5,31.3,28.4z"/><circle cx="25" cy="43.3" r="2.9"/></svg>');
}

.icn-bg[data-icon="check"] {
  --icon-color: #94e29c;
  --icon-svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M46.8,11c-0.6-0.5-1.7-0.4-2.2,0.1L19.4,36.2l-12-12c-0.6-0.6-1.5-0.6-2.3,0c-0.6,0.6-0.6,1.5,0,2.3l13.1,13.1 c0.3,0.3,0.7,0.4,1.1,0.4c0.4,0,0.8-0.1,1.2-0.4l26.3-26.3C47.4,12.7,47.4,11.7,46.8,11z"/></svg>');
}

.icn-bg[data-icon="line"] {
  --icon-color: #9b9b9b;
  --icon-svg: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path d="M38.5,26.5h-27c-0.8,0-1.5-0.7-1.5-1.5v0c0-0.8,0.7-1.5,1.5-1.5h27c0.8,0,1.5,0.7,1.5,1.5v0C40,25.8,39.3,26.5,38.5,26.5z"/></svg>');
}

.icn-bg[data-size="small"] {
  width: 1rem;
  height: 1rem;
}

.icn-bg[data-size="medium"] {
  width: 2rem;
  height: 2rem;
}

.icn-bg[data-size="large"] {
  width: 3rem;
  height: 3rem;
}

.icn-bg[data-size="extra-large"] {
  width: 4rem;
  height: 4rem;
}

/* User Review Box */
.user-reviews-grid {
  --row-items: 3;
  --row-gap: 2rem;
  --row-gap-adjust: var(--df-column-gap / 2);
  --row-min-width: 280px;
  --avatar-size: 3.8rem;

  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: var(--row-gap);
  overflow: scroll hidden;
  padding-left: var(--df-column-gap);
  padding-right: var(--df-column-gap);
  scrollbar-width: none;
}

.col-md-12 .user-reviews-grid,
.user-reviews-grid.no-side-pd {
  padding-left: 0;
  padding-right: 0;
}

.user-review-box {
  max-width: calc(100% / var(--row-items) - var(--row-gap-adjust));
  min-width: var(--row-min-width);
  position: relative;
  font-size: 0.9em;
  overflow: hidden;
  padding: 3rem;
  margin-bottom: 0;
  border-bottom: 2px solid var(--highlight-color);
}

.user-review-box::before {
  --size: 4rem;

  top: 0;
  font-family: fantasy, Arial, Helvetica, serif;
  display: block;
  font-size: var(--size);
  font-weight: bold;
  line-height: 1;
  width: var(--size);
  height: var(--size);
  text-align: center;
  border-radius: 50%;
  box-shadow: none;
  color: var(--highlight-color);
  content: "\201C";
  margin: -1rem 0 1.5rem -0.5rem;
  padding-top: calc(var(--size) / 4);
  background: rgb(0 0 0 / 2%);
  zoom: 0.8;
}

.user-review-box .title {
  font-size: 1.15em;
  font-weight: bold;
  line-height: 1.2;
  color: var(--title-color);
  border-bottom: 1px solid rgb(0 0 0 / 8%);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.user-review-box .tags {
  display: inline-flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.user-review-box .tags strong {
  display: inline-block;
  font-weight: normal;
  font-size: 0.7em;
  color: var(--text-color);
  background: rgb(0 0 0 / 4%);
  padding: 0.4rem 0.7rem;
  border-radius: var(--df-border-radius);
}

.user-review-box .wp-block-gallery {
  display: grid;
  grid-template-areas:
    "standard standard"
    "extended extended";
  gap: 1px;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.wp-admin .user-review-box .wp-block-gallery {
  display: block;
}

.user-review-box .wp-block-gallery figure {
  margin: 0;
  width: 100% !important;
  height: auto;
}

.user-review-box .wp-block-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 8rem;
  max-height: 8rem;
}

.user-review-box .wp-block-gallery figure:nth-child(1) {
  grid-area: standard;
}

.user-review-box .wp-block-gallery figure:nth-child(2) {
  grid-area: standard;
}

.user-review-box .wp-block-gallery figure:nth-child(3) {
  grid-area: extended;
}

.user-review-box .user {
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 0.9em;
  line-height: 1.2;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 0;
}

.user-review-box .user figure {
  display: contents;
}

.user-review-box .user img {
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  margin-right: 1rem;
}

.user-review-box .user .avatar-initial {
  width: var(--avatar-size);
  height: var(--avatar-size);
  border-radius: 50%;
  background: var(--highlight-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  line-height: var(--avatar-size);
  margin-right: 1rem;
  font-family: fantasy, Arial, Helvetica, serif;
  display: inline-block;
}

.user-review-box p {
  margin: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

@media screen and (width <=992px) {
  .user-reviews-grid {
    --row-items: 2;
  }
}

@media screen and (width <=440px) {
  .user-reviews-grid {
    --row-items: 1;
    --row-gap: 1.5rem;
    --row-gap-adjust: 0;
  }
}
