html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Archivo", sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

input,
select,
textarea {
  font-family: "Archivo", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
blockquote,
div,
pre {
  margin: 0;
}

button {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  box-shadow: none;
  color: inherit;
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

input,
select,
textarea {
  border: none;
  background-image: none;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.source-svg {
  height: 0px;
  position: absolute;
  width: 0px;
}

.pex-inner {
  margin: 0 auto;
}

.pex-page-width {
  max-width: 1800px;
  width: 95%;
}

.pex-color {
  color: #3399cc;
}

.pex-color-alt {
  color: #F6C998;
}

.pex-font-alt {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  text-transform: lowercase;
}

.pex-image {
  display: block;
}

.pex-image img {
  display: block;
  width: 70%;
  margin: auto;
}

/* LOADERS */
.loader-default {
  animation: rotation 1s linear infinite;
  border-radius: 50%;
  border-right: 4px solid transparent;
  border-top: 4px solid #76a5df;
  box-sizing: border-box;
  display: inline-block;
  height: 48px;
  width: 48px;
}

.loader-default::after {
  animation: rotation 0.5s linear infinite reverse;
  box-sizing: border-box;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #b65497;
  border-radius: 50%;
  content: '';
  height: 48px;
  left: 0;
  position: absolute;
  top: 0;
  width: 48px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loader-message,
.loader-message:before,
.loader-message:after {
  animation: bblFadInOut 1.8s infinite ease-in-out;
  animation-fill-mode: both;
  border-radius: 50%;
  height: 2.5em;
  width: 2.5em;
}

.loader-message {
  color: #000;
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

.loader-message:before,
.loader-message:after {
  content: '';
  position: absolute;
  top: 0;
}

.loader-message:before {
  animation-delay: -0.32s;
  left: -3.5em;
}

.loader-message:after {
  left: 3.5em;
}

@keyframes bblFadInOut {

  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em
  }

  40% {
    box-shadow: 0 2.5em 0 0
  }
}

/* SITE LOADING BAR */
#site-loading-bar-container {
  background: rgba(255, 255, 255, .1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
  height: 8px;
  max-height: 0px;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: .5s ease all;
  width: 100%;
  z-index: 101;
}

#site-loading-bar-container.loading {
  max-height: 8px;
}

#site-loading-bar {
  background: linear-gradient(135deg,
      #9e304d 0%,
      #db8049 15%,
      #af6b16 30%,
      #5a4c7e 45%,
      #377b8e 60%,
      #881b1c 75%,
      #4c5fae 100%);
  clip-path: inset(0 100% 0 0);
  height: 100%;
  transition: .5s ease all;
  width: 100%;
}

/* OVERLAY */
.pex-overlay {
  background-color: rgba(255, 255, 255, 0);
  display: block;
  height: 100%;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: all .6s ease;
  visibility: hidden;
  width: 100%;
  z-index: 100;
}

.pex-overlay.visible {
  background-color: rgba(255, 255, 255, .85);
  pointer-events: auto;
  visibility: visible;
}

.pex-overlay>.pex-inner {
  border-radius: 15px 15px 0px 0px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
  height: calc(100vh - 80px);
  margin-top: 80px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all .6s ease;
}

@media(max-width: 850px) {
  .pex-overlay>.pex-inner {
    height: calc(100vh - 40px);
    margin-top: 40px;
  }
}

.pex-overlay.visible:not(.loading)>.pex-inner {
  opacity: 1;
  transform: translateY(0px);
}

.pex-overlay>.pex-page-width {
  max-width: 1250px;
}

.pex-overlay-nav {
  align-items: center;
  background-image: url('https://d2urhn0mmik6is.cloudfront.net/site/_images/heavenexplained/BG_updated_res.webp');
  background-position: top;
  color: #fff;
  display: flex;
  justify-content: center;
  min-height: 45px;
  padding: 10px 15px;
  position: relative;
}

.pex-overlay-nav>button {
  position: absolute;
}

.pex-overlay-nav .pex-overlay-back {
  font-size: 17px;
  font-weight: 700;
  left: 5px;
  padding: 12px 10px;
  top: 0px;
}

.pex-overlay-nav .pex-overlay-back>span {
  vertical-align: middle;
}

.pex-overlay-nav .pex-overlay-back .pex-icon {
  margin-right: 3px;
}

.pex-overlay-nav .pex-overlay-close {
  font-size: 24px;
  padding: 11px 10px;
  right: 5px;
  top: 0px;
}

.pex-overlay-nav .pex-category-badge {
  font-size: 12px;
}

.pex-overlay-content {
  background-color: #fff;
  min-height: calc(100vh - 125px);
  overflow-y: scroll;
}

.pex-overlay-content-footer {
  padding: 80px 0;
  text-align: center;
}

.pex-overlay-content-footer>.pex-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.pex-overlay-content-footer .pex-explore-button {
  align-items: baseline;
  display: flex;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-right: 10px;
  text-transform: uppercase;
}

.pex-overlay-content-footer .pex-explore-button .pex-text {
  margin-right: 5px;
}

.pex-overlay-content-footer .pex-explore-button .pex-font-alt {
  font-size: 28px;
  font-weight: 300;
}

.pex-overlay-content-footer .pex-support-button {
  background-color: #336699;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 8px 25px;
}

.pex-overlay-content-footer .pex-tp-logo {
  filter: invert(1);
  max-width: 150px;
}

.pex-content .pex-video-player {
  margin-bottom: 30px;
}

.pex-content .pex-djo-prophecy-chart {
  margin-bottom: 30px;
}

.pex-content .pex-djo-dogs-heaven {
  margin-bottom: 30px;
}

.pex-content-footer {
  background: linear-gradient(135deg, #76a5df 0%, #707daa 33%, #9263a0 67%, #b65497 100%);
  color: #fff;
}

.pex-content-footer .pex-content-boxes-slider {
  padding: 60px 0;
}

.pex-content>.pex-inner>.pex-video-player,
.pex-content-image {
  margin-bottom: 40px;
}

.pex-content-heading,
.pex-content-html {
  padding: 0 5%;
}

.pex-content-html {
  margin: 0 auto;
  max-width: 850px;
}

.pex-content-heading {
  margin-bottom: 40px;
  text-align: center;
}

.pex-content-heading h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.pex-content-heading h2 {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.pex-content-html {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.75;
}

.pex-content-html:last-child {
  padding-bottom: 30px;
}

.pex-content-html p {
  font-size: 16px;
  margin-bottom: 30px;
}

.pex-content-html ul,
.pex-content-html ol {
  margin-bottom: 30px;
}

.pex-content-html a {
  color: #333366;
}

.pex-content-html .button-default {
  background-color: #336699;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 10px auto;
  padding: 8px 25px;
}

.pex-content-html .heading {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 20px;
}

.pex-content-html .big-text {
  font-size: 24px;
  line-height: 1.45;
}

.pex-content-html .opening-line {
  font-size: 24px;
}

.pex-content-html .indent-all {
  margin-left: 30px;
  margin-right: 30px;
}

.pex-content-html .callout {
  background-color: #EAF1F3;
  font-size: 28px;
  padding: 120px 5%;
  text-align: center;
}

.pex-content-html .footnote {
  font-size: 12px;
  margin-bottom: 10px;
  word-break: break-word;
}

.pex-content-html .scroll-to-links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pex-content-html .scroll-to-link {
  background-color: #f0f0f0;
  border-radius: 50px;
  color: #333;
  font-weight: 600;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 4px 20px;
  text-decoration: none;
  white-space: nowrap;
}

.pex-content-html .scroll-to-link:hover {
  background-color: #a0a0a0;
  color: #fff;
}

.pex-content-html .img img {
  display: block;
  width: 100%;
}


@media(max-width: 750px) {
  .pex-content-html tr {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
  }

  .pex-content-html td:last-child {
    border-bottom: none;
  }

  .pex-nav ul {
    display: block !important;
  }
}

.pex-category-heading {
  color: #fff;
  padding: 100px 5% 30px;
  background-image: url('https://d2urhn0mmik6is.cloudfront.net/site/_images/heavenexplained/BG_updated_res.webp');
  background-position: bottom center;
  background-size: cover;
}

.pex-category-heading h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.pex-category-heading h2 {
  text-transform: uppercase;
}

.pex-category-heading .pex-share-content {
  margin-bottom: 20px;
  margin-top: 80px;
}

.pex-category-heading .pex-more-from-button {
  background-color: #fff;
  border-radius: 50px;
  color: #333;
  display: inline-flex;
  margin: 0 auto;
  padding: 10px 30px;
}

.pex-category-heading .pex-more-from-button .pex-icon {
  margin-right: 10px;
}

.pex-category-heading .pex-more-from-button .pex-text {
  font-weight: 600;
  text-transform: uppercase;
}

.pex-category-html {
  text-align: center;
}

.pex-content-html .video-player-container img {
  width: 100%;
}

.pex-content-html .video-player-container {
  margin-bottom: 30px;
  position: relative;
}

.pex-content-html .video-player {
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.pex-content-html .video-player-container.playing .video-player {
  cursor: default;
}

.pex-content-html .video-player .icon {
  left: calc(50% - 40px);
  pointer-events: none;
  position: absolute;
  top: calc(50% - 41.25px);
  transition: .25s opacity ease;
  width: 80px;
}

.pex-content-html .video-player-container.playing .icon {
  opacity: 0;
}

.pex-content-html .video-player .icon svg {
  fill: #fff;
}

.pex-content-html .video-player video {
  height: 100%;
  width: 100%;
}

.pex-content .pex-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.pex-content .pex-video-wrapper>.inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%;
}

.pex-content .pex-video-wrapper video {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pex-content .pex-video-wrapper .btn-jump-to-time {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pex-content .pex-video-wrapper .pex-smart-search-play-button {
  display: block;
  color: #fff;
}


/* NAV */
.pex-nav ul {
  padding: 0;
}

.pex-nav ul,
.footer-nav ul,
.pex-nav ul li {
  list-style: none;
  position: relative;
}

.pex-nav ul {
  display: flex;
  gap: 35px;
  align-items: center;
}

.pex-nav ul ul {
  display: none;
}

.pex-nav ul ul a {
  padding: 10px 20px;
}

.pex-nav ul li {
  display: inline-block;
}

.pex-nav a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  padding: 17px 20px 2px;
  text-transform: uppercase;
}

.pex-nav p {
  justify-self: center;
}

.pex-nav em {
  font-size: 10px;
}

/* HEADER */
.pex-header {
  background-color: rgba(0, 0, 0, .18);
  color: #fff;
  width: 100%;
  z-index: 1;
}

.pex-header .pex-inner {
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 8px 0;
  width: 95%;
}

.pex-header .pex-nav em {
  display: none;
}

.pex-header .pex-mobile-nav-toggle {
  font-size: 40px;
  margin-right: 15px;
}

@media(min-width: 1371px) {
  .pex-header .pex-mobile-nav-toggle {
    display: none;
  }
}

@media(max-width: 1370px) {
  .pex-header .pex-nav {
    display: none;
  }
}

.pex-header .pex-logos {
  position: absolute;
  left: 20px;
  align-items: center;
  display: flex;
  /* margin-right: auto; */
}

.pex-header .pex-dr-j {
  width: 67px;
}

@media(min-width: 551px) {
  .pex-header .pex-logos {
    margin-bottom: -17px;
    /* margin-left: -35px; */
  }
}

@media(max-width: 550px) {
  .pex-header .pex-dr-j {
    display: none;
  }
  .pex-header .pex-logo {
    display: none;
  }
  .pex-header .pex-inner {
  justify-content: space-between;
  }
}


.pex-header .pex-logo {
  width: 220px;
  margin: 0px 0px 20px 5px;
}

.pex-header .pex-text {
  margin-right: 10px;
  text-align: right;
  text-transform: uppercase;
}

.pex-header .pex-nav>ul>li:first-child>a {
  padding-left: 0;
}

.pex-header .pex-nav>ul>li:last-child>a {
  padding-right: 0;
}

.pex-header .pex-nav ul ul {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, .18);
  border-radius: 0px 0px 15px 15px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: calc(100% + 8px);
  width: auto;
}

.pex-header .pex-nav ul ul li,
.pex-header .pex-nav ul ul a {
  display: block;
}

.pex-header .pex-nav ul ul a:hover {
  background-color: rgba(0, 0, 0, .18);
}

.pex-donate-button {
  background-color: #336699;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 10px auto;
  padding: 8px 25px !important;
}

.pex-header .pex-magazine-container {
  position: absolute;
  right: 20px;
  align-items: center;
  display: flex;
  height: 54px;
  /* margin-left: auto; */
}

.pex-header .pex-magazine-container h3 {
  font-size: 15px;
}

.pex-header .pex-magazine-container h4 {
  font-size: 13px;
}

.pex-header .pex-magazine {
  margin-bottom: -19px;
  width: 40px;
}

@media(max-width: 480px) {
  .pex-header .pex-magazine {
    display: none;
  }
}

@media(max-width: 450px) {
  .pex-header .pex-logo {
    padding-right: 15px;
    width: 100%;
    margin-bottom: 5px;
  }
}

/* HOME HERO */
.pex-home-hero {
  background-image: url('https://d2urhn0mmik6is.cloudfront.net/site/_images/heavenexplained/BG_updated_res.webp');
  background-position: bottom center;
  background-size: cover;
  color: #fff;
  position: relative;
  margin-bottom: 50px;
}

.pex-home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14%;
  background: #ffffff4d;
  pointer-events: none;
}

.pex-home-hero>.pex-page-width {
  max-width: 1100px;
  padding: 140px 0 175px;
  width: 90%;
}

.pex-home-hero .pex-header {
  left: 0;
  position: absolute;
  top: 0;
  height: 63px;
}

.pex-home-hero .pex-hero-top {
  align-items: center;
  display: grid;
  justify-content: center;
  margin-bottom: 40px;
}

.pex-home-hero .pex-hero-top .pex-image {
  margin-right: 10px;
}

.pex-home-hero .pex-hero-top .pex-image:first-child {
  width: 100px;
  margin: auto;
}

.pex-home-hero h2 {
  font-size: 14px;
  padding-left: 12px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  text-align: center;
}

.pex-home-hero h2 span {
  text-transform: none;
}

.pex-home-hero.question-asked:has(.pex-smart-search-message)::after {
  height: 10%;
}

/* hero search input */
.pex-home-hero .pex-smart-search-input .pex-icon {
  width: 35px;
  height: 35px;
}

.pex-home-hero .pex-smart-search-input .pex-icon {
  margin: unset;
}

.pex-home-hero .pex-smart-search-input-container .pex-icon {
  width: 35px;
  height: 35px;
  position: relative;
}

.pex-home-hero .pex-overlay .pex-smart-search-input-container .pex-icon {
  margin-top: 10px;
  width: 35px;
  height: 35px;
}

.pex-home-hero .pex-icon #search-icon {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.pex-home-hero .pex-smart-search-input .loader-message {
  font-size: 4px;
  display: inline-flex;
  margin: -2.5em 2.5em 0;
  position: absolute;
  top: 15px;
}

.pex-home-hero .pex-smart-search-input .loader-default {
  position: absolute;
  top: 8px;
}

.pex-home-hero .pex-image img {
  width: 100%
}
/* hero search input */

@media(max-width: 380px) {
  .pex-home-hero h2 span {
    display: block;
    margin-top: 5px;
  }
}

@media(min-width: 551px) {
  .pex-home-hero .pex-hero-top .pex-image {
    margin-right: 10px;
  }
}

@media(max-width: 550px) {
  .pex-home-hero .pex-hero-top {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width: 1100px) {
  .pex-home-hero::after {
    height: 23%;
  }

  .pex-home-hero {
    background-position: unset;
  }
}

/* QUESTION PILLS */
.pex-question-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.pex-question-pill {
  background-color: rgba(255, 255, 255, .45);
  border-radius: 18px;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  padding: 10px 30px;
  text-align: center;
  transition: .8s all ease-in-out;
  transform: translate(0px, -50px);
}

.pex-question-pill.visible {
  opacity: 1;
  transform: translate(0px, 0px);
}

.pex-question-pills.animation-complete .pex-question-pill {
  transition: .2s all ease-out;
}

.pex-question-pill:hover {
  transform: scale(1.05);
}

.pex-question-pill:not(.ask-your-question-button):hover {
  background-color: rgba(255, 255, 255, .7);
}

.ask-your-question-button {
  background-color: #fff;
  min-width: 255px;
  position: relative;
}

.ask-your-question-button .icon {
  color: #336699;
  font-size: 26px;
  left: 10px;
  position: absolute;
  top: calc(50% - 13px);
}

/* DJO */
.pex-djo>.pex-inner {
  align-items: center;
  display: flex;
  justify-content: center;
}

.pex-djo .pex-form {
  display: none;
}

.pex-djo h3 {
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pex-djo h3 .pex-bigger {
  font-size: 25px;
}

.pex-djo h2 {
  font-size: 23px;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.pex-djo h2 .pex-font-alt {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.pex-djo .pex-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.pex-form .pex-button,
.pex-djo .pex-buttons .pex-button {
  background-color: #336699;
  border: 2px solid #336699;
  border-radius: 50px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 10px;
}

.pex-djo .pex-buttons .pex-button-alt {
  background-color: transparent;
  color: #336699;
}

@media(max-width: 800px) {
  .pex-djo .pex-buttons {
    align-items: center;
    flex-direction: column;
  }
}

/* DJO PROPHECY CHART */
.pex-djo-prophecy-chart {
  padding: 50px 0;
}

.pex-djo-prophecy-chart .pex-font-alt {
  text-transform: none;
}

.pex-djo-prophecy-chart>.pex-inner {
  background-color: #f2f7f8;
  padding: 0 2.5%;
}

@media(min-width: 1101px) {
  .pex-djo-prophecy-chart>.pex-inner>.pex-image {
    margin: -50px 40px -50px 0;
    min-width: 255px;
  }

  .pex-djo-prophecy-chart>.pex-inner>.pex-text {
    padding: 60px 0;
  }
}

@media(max-width: 1100px) {
  .pex-djo-prophecy-chart>.pex-inner {
    flex-direction: column;
  }

  .pex-djo-prophecy-chart>.pex-inner>.pex-image {
    margin: -50px 0 40px;
    min-width: 255px;
  }

  .pex-djo-prophecy-chart>.pex-inner>.pex-text {
    padding-bottom: 60px;
    text-align: center;
  }

  .pex-djo-prophecy-chart>.pex-inner>.pex-text .pex-free-gift-button {
    margin: 0 auto;
  }

  .pex-djo-prophecy-chart .pex-form {
    text-align: left;
  }
}
/* DJO DOGS HEAVEN */
/* .pex-djo-dogs-heaven {
  padding: 50px 0;
} */

.pex-djo-dogs-heaven .pex-font-alt {
  text-transform: none;
}

.pex-djo-dogs-heaven>.pex-inner {
  background-color: #f2f7f8;
  padding: 0 2.5%;
}


.pex-djo-dogs-heaven h3 {
  margin-bottom: 10px;
}

@media(min-width: 1101px) {
  .pex-djo-dogs-heaven>.pex-inner>.pex-image {
    margin: -50px 40px -50px 0;
    min-width: 255px;
  }

  .pex-djo-dogs-heaven>.pex-inner>.pex-text {
    padding: 60px 0;
  }
}

@media(max-width: 1100px) {
  .pex-djo-dogs-heaven>.pex-inner {
    flex-direction: column;
  }

  .pex-djo-dogs-heaven>.pex-inner>.pex-image {
    margin: -50px 0 40px;
    min-width: 255px;
  }

  .pex-djo-dogs-heaven>.pex-inner>.pex-text {
    padding-bottom: 60px;
    text-align: center;
  }

  .pex-djo-dogs-heaven>.pex-inner>.pex-text .pex-free-gift-button {
    margin: 0 auto;
  }

  .pex-djo-dogs-heaven .pex-form {
    text-align: left;
  }
}

/* BOOK POH */
.pex-djo-book-poh {
  position: relative;
  height: auto;
  bottom: -50px;
  margin-bottom: -125px;
}

.pex-djo-book-poh .pex-color {
  color: #336699;
}

.pex-djo-book-poh h3 {
  float: right;
  display: contents;
  font-size: 12px;
  letter-spacing: 1px;
}

.pex-djo-book-poh h2 {
  font-size: 22px;
  padding: 0px 0px 0px 0px;
  margin-top: -10px;
  color: black;
}

.pex-djo-book-poh h2 .pex-font-alt {
  font-size: 28px;
}

.pex-djo-book-poh .pex-image {
  margin-left: 5px;
  max-width: 105px;
}

.pex-djo-book-poh .pex-image img {
  width: 100%
}

.pex-djo-book-poh .pex-color{
  font-size: 12px;
}

@media(min-width: 1101px) {
  .pex-djo-book-poh {
    height: 5px;
    margin-bottom: 0px;
    z-index: 1;
  }

  .pex-djo-book-poh>.pex-inner>.pex-text {
    text-align-last: right;
  }
}

@media(max-width: 1100px) {
  .pex-djo-book-poh>.pex-inner {
    flex-direction: column;
  }

  .pex-djo-book-poh>.pex-inner>.pex-image {
    margin-bottom: 40px;
    /* margin-left: -190px; */
  }

  .pex-djo-book-poh>.pex-inner>.pex-text {
    padding-bottom: 10px;
    text-align: center;
  }

  .pex-djo-book-poh {
    bottom: -105px;
    z-index: 1;
  }

  .pex-djo-book-poh h2 {
    padding: 20px 0px 0px 0px;
  }
}

/* BOOK OF SIGNS */
.pex-djo-book-of-signs {
  padding: 10px 0px;
}

.pex-djo-book-of-signs h3 {
  margin-bottom: 20px;
}

.pex-djo-book-of-signs .pex-image {
  min-width: 281px;
}

@media(min-width: 1101px) {
  .pex-djo-book-of-signs .pex-image {
    margin-right: 25px;
  }

  .pex-djo-book-of-signs>.pex-inner>.pex-text {
    padding: 60px 0;
  }
}

@media(max-width: 1100px) {
  .pex-djo-book-of-signs>.pex-inner {
    flex-direction: column;
  }

  .pex-djo-book-of-signs>.pex-inner>.pex-image {
    margin-bottom: 40px;
    /* margin-left: -190px; */
  }

  .pex-djo-book-of-signs>.pex-inner>.pex-text {
    padding-bottom: 60px;
    text-align: center;
  }
}

/* JB INTERVIEW */
.pex-djo-jb-interview {
  padding: 90px 0px;
}

.pex-djo-jb-interview h3 {
  margin-bottom: 20px;
}

.pex-djo-jb-interview .pex-image {
  min-width: 281px;
}

.pex-djo-jb-interview .pex-font-alt {
  text-transform: none;
}

@media(min-width: 1101px) {
  .pex-djo-jb-interview .pex-image {
    margin-right: 50px;
  }

  .pex-djo-jb-interview>.pex-inner>.pex-text {
    padding: 60px 0;
  }
}

@media(max-width: 1100px) {
  .pex-djo-jb-interview>.pex-inner {
    flex-direction: column;
  }

  .pex-djo-jb-interview>.pex-inner>.pex-image {
    margin-bottom: 40px;
    /* margin-left: -190px; */
  }

  .pex-djo-jb-interview>.pex-inner>.pex-text {
    padding-bottom: 60px;
    text-align: center;
  }
}

/* 60 DAYS OF PROPHECIES */
.pex-djo-60-days-of-prophecies {
  padding: 90px 0px;
}

.pex-djo-60-days-of-prophecies h3 {
  margin-bottom: 20px;
}

.pex-djo-60-days-of-prophecies .pex-image {
  min-width: 281px;
}

@media(min-width: 1101px) {
  .pex-djo-60-days-of-prophecies .pex-image {
    margin-right: 50px;
  }

  .pex-djo-60-days-of-prophecies>.pex-inner>.pex-text {
    padding: 60px 0;
  }
}

@media(max-width: 1100px) {
  .pex-djo-60-days-of-prophecies>.pex-inner {
    flex-direction: column;
  }

  .pex-djo-60-days-of-prophecies>.pex-inner>.pex-image {
    margin-bottom: 40px;
    margin-left: -190px;
  }

  .pex-djo-60-days-of-prophecies>.pex-inner>.pex-text {
    padding-bottom: 60px;
    text-align: center;
  }
}

/* DJO VIDEO PLAYER */
.pex-video-player[data-muted].is-muted .fp-ui {
  display: none !important;
}

.pex-video-player-unmute {
  align-items: center;
  background-color: rgba(0, 0, 0, .7);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: .35s opacity ease-out;
  width: 100%;
}

.pex-video-player-unmute button {
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  font-size: 20px;
  justify-content: center;
  padding: 10px 30px;
}

.pex-video-player-unmute button .pex-icon {
  margin-right: 10px;
}

.pex-video-player:hover .pex-video-player-unmute {
  opacity: 1;
}

.pex-video-player:not(.is-muted) .pex-video-player-unmute {
  display: none !important;
}

@media(max-width: 380px) {
  .pex-video-player-unmute button {
    font-size: 16px;
    padding: 5px 15px;
  }
}

/* ESCAPE THE COMING NIGHT */
.pex-djo-escape-the-coming-night {
  padding: 90px 0px;
}

.pex-djo-escape-the-coming-night h3 {
  margin-bottom: 20px;
}

.pex-djo-escape-the-coming-night .pex-video-player {
  max-width: 550px;
}

.pex-overlay .pex-djo-escape-the-coming-night .pex-video-player {
  max-width: 460px;
}

@media(min-width: 1101px) {
  .pex-djo-escape-the-coming-night .pex-video-player {
    margin-bottom: 0;
    margin-right: 50px;
  }

  .pex-djo-escape-the-coming-night>.pex-inner>.pex-text {
    padding: 60px 0;
  }
}

@media(max-width: 1100px) {
  .pex-djo-escape-the-coming-night>.pex-inner {
    flex-direction: column;
  }

  .pex-djo-escape-the-coming-night>.pex-inner>.pex-video-player {
    margin-bottom: 40px;
  }

  .pex-djo-escape-the-coming-night>.pex-inner>.pex-text {
    padding-bottom: 60px;
    text-align: center;
  }
}

.pex-content.pex-video .pex-djo-escape-the-coming-night {
  padding-top: 0;
}

/* TIMELINE */
.pex-timeline {
  background-color: #EDEDED;
  margin-top: 6px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.pex-timeline>.pex-inner {
  position: relative;
}

.pex-timeline-info {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 40px;
  position: absolute;
  top: 0;
  width: auto;
}

.pex-timeline-info h2 {
  font-size: 23px;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.pex-timeline-info h2 span {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.pex-timeline-info h3 {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.pex-spacer-slide {
  opacity: 0;
  min-width: 460px;
  width: 460px;
}

.pex-timeline-slide {
  background-size: cover;
  clip-path: polygon(0% 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 0% 100%, 30px 50%);
  color: #fff;
  padding: 25px 50px;
  text-align: center;
  width: auto;
}

.pex-timeline-slide:not(:first-child) {
  margin-left: -20px;
}

.pex-timeline-slide h2 {
  font-size: 24px;
  margin-bottom: 5px;
}

.pex-timeline-slide h3 {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  /* margin-bottom: 20px; */
  text-transform: uppercase;
}

@media(max-width: 520px) {
  .pex-timeline-info {
    padding-left: 10px;
  }

  .pex-timeline-info h2 span {
    display: block;
    margin-top: -10px;
  }

  .pex-timeline-info h3 {
    letter-spacing: 0.1em;
  }

  .pex-spacer-slide {
    min-width: 300px;
    width: 300px;
  }
}

/* CONTENT SORT BY */
.pex-content-sort-by {
  margin-bottom: -50px;
  /* margin-top: 90px; */
}

.pex-content-sort-by>.pex-inner {
  align-items: baseline;
  display: flex;
}

.pex-content-sort-by h2 {
  font-size: 23px;
  letter-spacing: -0.02em;
  margin-right: 10px;
  text-transform: uppercase;
}

.pex-content-sort-by .pex-font-alt {
  font-size: 30px;
  text-transform: none;
}

.pex-sort-by-selected .pex-font-alt {
  margin-right: 10px;
}

.pex-content-sort-by .pex-icon {
  font-size: 24px;
}

.pex-sort-by-container {
  position: relative;
}

.pex-sort-by-options {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .1);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-align: left;
  top: calc(100% + 10px);
  width: 220px;
  z-index: 2;
}

.pex-sort-by-container.open .pex-sort-by-options {
  opacity: 1;
  pointer-events: auto;
}

.pex-sort-by-option {
  display: block;
  padding: 5px 10px;
  text-align: left;
  transition: all .3s ease-out;
  width: 100%;
}

.pex-sort-by-option:not(:last-child) {
  border-bottom: 1px solid #f2f7f8;
}

.pex-sort-by-option:hover {
  background-color: #f2f7f8;
}

@media(min-width: 401px) {
  .pex-sort-by-options {
    left: 0;
  }
}

@media(max-width: 400px) {
  .pex-content-sort-by h2 {
    font-size: 18px;
    margin-right: auto;
  }

  .pex-content-sort-by .pex-font-alt {
    font-size: 24px;
  }

  .pex-content-sort-by .pex-icon {
    font-size: 20px;
  }

  .pex-sort-by-options {
    right: 0;
  }
}

/* CATEGORY BADGES */
.pex-category-badge {
  color: #fff;
  clip-path: polygon(0% 0%, calc(100% - 5px) 0%, 100% 50%, calc(100% - 5px) 100%, 0% 100%, 0% 0%);
  display: inline-block;
  letter-spacing: -0.01em;
  padding: 5px 20px 5px 8px;
  text-transform: uppercase;
}

.pex-category-badge[data-category-url="the-church-age"] {
  background-color: #9e304d;
}

.pex-category-badge[data-category-url="the-rapture"] {
  background-color: #db8049;
}

.pex-category-badge[data-category-url="the-tribulation"] {
  background-color: #af6b16;
}

.pex-category-badge[data-category-url="the-second-coming"] {
  background-color: #5a4c7e;
}

.pex-category-badge[data-category-url="the-millennium"] {
  background-color: #377b8e;
}

.pex-category-badge[data-category-url="great-white-throne-judgment"] {
  background-color: #881b1c;
}

.pex-category-badge[data-category-url="new-heaven-and-new-earth"] {
  background-color: #4c5fae;
}

/* CONTENT BOXES */
.pex-content-boxes {
  padding: 90px 0;
}

.pex-content-boxes>.pex-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pex-content-boxes-col-3 .pex-content-box:last-child,
.pex-content-boxes-col-4 .pex-content-box:last-child {
  margin-right: auto;
}

@media(min-width: 1000px) {
  .pex-content-boxes-col-3>.pex-inner {
    gap: 100px 50px;
  }

  .pex-content-boxes-col-4>.pex-inner {
    gap: 80px 40px;
  }

  .pex-content-boxes-col-3 .pex-content-box {
    flex: calc(33.33% - 50px);
  }

  .pex-content-boxes-col-4 .pex-content-box {
    flex: calc(25% - 40px);
  }
}

@media(max-width: 1100px) {
  .pex-content-boxes-col-3>.pex-inner {
    gap: 60px 0px;
  }

  .pex-content-boxes-col-4>.pex-inner {
    gap: 50px 25px;
  }

  .pex-content-boxes-col-3 .pex-content-box {
    flex: 100%;
  }

  .pex-content-boxes-col-4 .pex-content-box {
    flex: calc(33.33% - 25px);
  }
}

@media(max-width: 800px) {
  .pex-content-boxes-col-4>.pex-inner {
    gap: 50px 25px;
  }

  .pex-content-boxes-col-4 .pex-content-box {
    flex: calc(50% - 25px);
  }
}

@media(max-width: 600px) {

  .pex-content-boxes-col-4>.pex-inner {
    gap: 40px 0;
  }

  .pex-content-boxes-col-4 .pex-content-box {
    flex: 100%;
  }
}

.pex-content-boxes .pex-content-box {
  flex-grow: 0;
  width: 100%;
}

.pex-content-box .pex-image {
  box-shadow: 0px 0px 4px rgba(0, 0, 0, .1);
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  position: relative;
  transition: all .3s ease;
}

.pex-content-box .pex-image img {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}

.pex-content-box .pex-image:hover {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, .25);
  transform: scale(1.025);
}

.pex-content-box h2 {
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.pex-content-box.pex-content-box-featured h2 {
  font-size: 21px;
}

.pex-content-box .pex-content-info {
  display: flex;
}

.pex-content-box .pex-icon {
  align-items: center;
  background-color: #e7eef2;
  border-radius: 100%;
  display: flex;
  flex: none;
  font-size: 20px;
  height: 40px;
  justify-content: center;
  margin-right: 15px;
  width: 40px;
}

.pex-content-text {
  margin-top: 8px;
}

@media(max-width: 500px) {
  .pex-content-box .pex-icon {
    align-items: center;
    background-color: #e7eef2;
    border-radius: 100%;
    display: flex;
    flex: none;
    font-size: 25px;
    height: 40px;
    justify-content: center;
    margin-right: 15px;
    width: 40px;
  }
}

.pex-content-box .pex-category-badge {
  font-size: 9px;
}

.pex-content-box.pex-content-box-featured .pex-category-badge {
  font-size: 11px;
}


.pex-content-boxes-slider .pex-content-box .pex-icon {
  color: #000;
}

/* SHARE CONTENT */
.pex-share-content {
  margin-bottom: 60px;
}

.pex-share-content span {
  font-size: 18px;
  font-weight: 700;
  margin-right: 20px;
  text-transform: uppercase;
}

.pex-share-content .pex-inner {
  align-items: center;
  display: flex;
  justify-content: center;
}

.pex-share-content-icons {
  align-items: center;
  display: flex;
  font-size: 22px;
  justify-content: space-between;
  gap: 20px;
}

/* CONTENT BOXES SLIDER */
.pex-content-boxes-slider {
  background-size: cover;
}

.pex-content-boxes-slider-swiper-container {
  position: relative;
}

.pex-content-boxes-slider>.pex-inner>h2 {
  font-size: 23px;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.pex-content-boxes-slider .pex-content-box {
  min-width: 260px;
  width: 33.33%;
}

.pex-content-boxes-slider .swiper-button-prev:after,
.pex-content-boxes-slider .swiper-rtl .swiper-button-next:after,
.pex-content-boxes-slider .swiper-button-next:after,
.pex-content-boxes-slider .swiper-rtl .swiper-button-prev:after {
  display: none;
}

.pex-content-boxes-slider .swiper-button-next,
.pex-content-boxes-slider .swiper-button-prev {
  color: #fff;
  font-size: 45px;
}

.pex-content-boxes-slider .swiper-button-next {
  right: 10px;
}

.pex-content-boxes-slider .swiper-button-prev {
  left: 10px;
}

.pex-content-boxes-slider-swiper {
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  padding: 0 40px;
}

.pex-content-boxes-slider .pex-content-box .pex-category-badge {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, .25);
}

/* GET ANSWERS */
.pex-get-answers {
  background-color: #EAF1F3;
}

.pex-get-answers>.pex-inner {
  display: flex;
  padding: 40px 0;
}

.pex-get-answers>.pex-inner>.pex-text {
  white-space: nowrap;
}

@media(min-width: 851px) {
  .pex-get-answers>.pex-inner>.pex-text {
    margin-right: 60px;
  }
}

@media(max-width: 850px) {
  .pex-get-answers>.pex-inner {
    flex-direction: column;
    text-align: center;
  }

  .pex-get-answers>.pex-inner>.pex-text {
    margin-bottom: 60px;
  }
}

.pex-get-answers>.pex-inner>.pex-text h2 {
  font-size: 23px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pex-get-answers>.pex-inner>.pex-text h2 span {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-right: 5px;
}

.pex-get-answers>.pex-inner>.pex-text h2 i {
  vertical-align: middle;
}

.pex-get-answers .pex-question-pill {
  background-color: rgba(218, 227, 239, 1);
}

.pex-get-answers .pex-question-pill:not(.ask-your-question-button):hover {
  background-color: rgba(218, 227, 239, .3);
}

.pex-get-answers .ask-your-question-button {
  background-color: #678cc4;
  color: #fff;
}

.pex-get-answers .ask-your-question-button .icon {
  color: #fff;
}

/* SMART SEARCH */
.pex-smart-search-header {
  background: linear-gradient(135deg, #76a5df 0%, #707daa 33%, #9263a0 67%, #b65497 100%);
  background: url('https://d2urhn0mmik6is.cloudfront.net/site/_images/heavenexplained/BG_updated_res.webp') center center no-repeat;
  background-size: cover;
  color: #fff;
  padding: 100px 2.5%;
  position: relative;
  text-align: center;
}

.pex-smart-search-header-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  padding: 15px;
  position: absolute;
  right: 0px;
  top: 0px;
}

.pex-smart-search-header-buttons .pex-donate-button {
  margin: 0;
}

@media(max-width: 650px) {
  .pex-smart-search-header-buttons {
    width: 100%;
  }
}

@media(max-width: 450px) {
  .pex-smart-search-header {
    padding-top: 140px;
  }

  .pex-smart-search-header-buttons {
    align-items: center;
    flex-direction: column;
  }
}

.pex-smart-search .pex-content-footer {
  background: linear-gradient(135deg, #76a5df 0%, #707daa 33%, #9263a0 67%, #b65497 100%);
}

.pex-smart-search-header h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.pex-smart-search-header h1 .pex-font-alt {
  text-transform: none;
}

.pex-smart-search-header .pex-ss-logo-container {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0 auto 10px;
}

.pex-smart-search-header .pex-ss-logo {
  margin: 0 8px 5px 0;
  max-width: 160px;
}

.pex-smart-search-header .pex-tpp-logo-text {
  display: flex;
  justify-content: center;
}

.pex-smart-search-header .pex-tpp-logo {
  max-width: 100px;
}

.pex-smart-search-header .pex-smart-search-info-button {
  color: #fff;
  font-size: 14px;
  margin-bottom: 30px;
}

.pex-smart-search-header .pex-tpp-logo-text span {
  color: #fff;
  font-size: 15px;
  margin-right: 5px;
}

.header-ad-bg {
  position: absolute;
}

.pex-smart-search-input-wrapper {
  padding: 30px 0;
}

.pex-smart-search-input-container {
  /* background: #777; */
  border-radius: 50px;
  overflow: hidden;
  padding: 2px;
  transition: all .3s ease-out;
}

.pex-smart-search-input-wrapper.focused .pex-smart-search-input-container {
  background: linear-gradient(135deg, #76a5df 0%, #707daa 33%, #9263a0 67%, #b65497 100%);
}

.pex-overlay .pex-smart-search-input-wrapper .pex-smart-search-input-container {
  background: linear-gradient(135deg, #76a5df 0%, #707daa 33%, #9263a0 67%, #b65497 100%);
}

.pex-smart-search-input {
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  display: flex;
  font-size: 24px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

.pex-smart-search-input .pex-icon {
  margin-right: 10px;
}

.pex-smart-search-input .loader-default,
.pex-smart-search-input .loader-default::after {
  border-width: 2px;
  height: 22px;
  width: 22px;
}

.pex-smart-search-input .loader-message,
.pex-smart-search-input .loader-message:before,
.pex-smart-search-input .loader-message:after {
  height: 1.5em;
  width: 1.5em;
}

.pex-smart-search-input .loader-message {
  font-size: 4px;
  display: inline-flex;
  margin: -2.5em 2.5em 0;
}

.pex-smart-search-input .loader-message:before,
.pex-smart-search-input .loader-message:after {
  content: '';
  position: absolute;
  top: 0;
}

.pex-smart-search-input .loader-message:before {
  left: -2.5em;
}

.pex-smart-search-input .loader-message:after {
  left: 2.5em;
}

.pex-smart-search.loading .pex-smart-search-input .fa-magnifying-glass,
.pex-smart-search.loading .pex-smart-search-input #search-icon,
.pex-smart-search.message-in-progress .pex-smart-search-input .fa-magnifying-glass,
.pex-smart-search.message-in-progress .pex-smart-search-input #search-icon,
.pex-smart-search:not(.loading) .pex-smart-search-input .loader-default,
.pex-smart-search.loading.message-in-progress .pex-smart-search-input .loader-default,
.pex-smart-search:not(.message-in-progress) .pex-smart-search-input .loader-message {
  display: none;
}

.pex-smart-search-input input {
  border: none;
  display: block;
  font-size: inherit;
  outline: none;
  width: 100%;
}

.pex-smart-search.loading .pex-smart-search-input-container,
.pex-smart-search.message-in-progress .pex-smart-search-input-container {
  cursor: not-allowed;
  opacity: .6;
}

.pex-smart-search.loading .pex-smart-search-input input,
.pex-smart-search.message-in-progress .pex-smart-search-input input {
  pointer-events: none;
}

.pex-smart-search-output-wrapper {
  margin-bottom: 30px;
}

.pex-smart-search-input-container.pex-page-width,
.pex-smart-search-output-container.pex-page-width {
  max-width: 800px;
}

.pex-smart-search-input-placeholder {
  left: 46px;
  opacity: 1;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: calc(50% - 12px);
  transition: all .3s ease-out;
  width: calc(100% - 76px);
  white-space: nowrap;
}

.has-value .pex-smart-search-input-placeholder {
  opacity: 0;
}

.pex-smart-search-input-placeholder span {
  color: #999;
  display: none;
  font-size: inherit;
}

.pex-smart-search-input-placeholder span.visible {
  display: inline;
}

.pex-smart-search-output p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.75;
  margin-bottom: 20px;
}

.pex-smart-search-video-player {
  display: flex;
  flex-direction: column;
}

.pex-smart-search-video-player .pex-video-player {
  margin-bottom: 10px;
}

.pex-smart-search-play-button {
  background: linear-gradient(135deg, #76a5df 0%, #707daa 33%, #9263a0 67%, #b65497 100%);
  display: none;
  border-radius: 50px;
  box-shadow: 0px 0px 20px rgba(182, 84, 151, .4);
  font-size: 20px;
  padding: 5px 20px;
  transition: all .3s ease-out;
}

.pex-smart-search-play-button:hover {
  box-shadow: 0px 0px 20px rgba(182, 84, 151, .8);
  transform: scale(1.05);
}

.is-poster .pex-smart-search-play-button {
  display: inline-block;
}

.pex-smart-search-video-footer {
  display: flex;
  justify-content: space-between;
}

.pex-smart-search-browse-prophecy-button {
  align-items: center;
  background: linear-gradient(125deg, #35164f 0%, #2b2f59 33%, #242946 67%, #0d161b 100%);
  border-radius: 50px;
  color: #fff;
  display: flex;
  font-weight: 700;
  overflow: hidden;
  padding: 7.5px 20px;
  transition: all .3s ease-out;
}

.pex-smart-search-browse-prophecy-button i {
  margin-left: 3px;
}

.pex-smart-search-tpp-button {
  align-items: center;
  background: linear-gradient(135deg, #76a5df 0%, #707daa 33%, #9263a0 67%, #b65497 100%);
  border-radius: 50px;
  display: inline-flex;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 2px;
}

.pex-smart-search-tpp-button>span {
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  color: #333;
  display: flex;
  padding: 5.5px 18px;
}

.pex-smart-search-tpp-button .pex-text {
  margin-right: 5px;
}

.pex-smart-search-tpp-button .pex-image {
  filter: invert(1);
  max-width: 100px;
}

.pex-smart-search-tpp-button .pex-image img {
  width: 100%;
}

@media(max-width: 580px) {

  .pex-smart-search-video-footer {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
  }
}

/* FLOWPLAYER */
.fp-playlist,
.fp-share {
  display: none;
}

.fp-ui {
  display: flex;
  flex-direction: column;
}

.fp-play {
  margin: auto;
}

.fp-player .pex-image img {
  width: 100%;
}

/* FOOTER */
.pex-footer {
  background-image: url('https://d2urhn0mmik6is.cloudfront.net/site/_images/heavenexplained/footer_bg_dark.png');
  background-position: bottom center;
  background-size: cover;
  color: #fff;
}

.pex-footer>.pex-inner {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}

.pex-footer .pex-logo {
  margin-bottom: 20px;
  width: 310px;
}

.pex-footer .pex-nav>ul>li:first-child>a {
  padding-left: 0;
}

.pex-footer .pex-nav>ul>li:last-child>a {
  padding-right: 0;
}

.pex-footer .pex-nav {
  margin-bottom: 30px;
}

.pex-footer .pex-nav a {
  font-size: 16px;
  padding:0;
}

.pex-footer .pex-nav .could-be-hidden,
.pex-footer .pex-nav .icon {
  display: none;
}

.pex-footer ul, 
.pex-footer li {
  display: flex !important;
}

.pex-footer li {
  gap: 5px;
}

.pex-footer ul {
  padding: 0;
  gap: 15px 25px;
  flex-wrap: wrap;
  max-width: 450px;
}

.pex-footer p {
  align-content: flex-end;
}


.pex-footer-left hr {
  margin: 20px 0;
}

@media(max-width: 1730px) {
  .pex-footer .pex-nav {
    max-width: 415px;
  }

  /* .pex-footer .pex-nav a {
    padding: 5px 0;
  } */

  .pex-footer .pex-nav>ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 15px;
  }
}

.pex-footer-left p {
  font-size: 14px;
}

.pex-footer-left p:not(:last-child) {
  margin-bottom: 20px;
}

.pex-footer-left p a {
  text-decoration: underline;
}

.pex-footer-mid {
  padding: 0 20px;
}

.pex-share-site-box {
  background-color: rgba(0, 0, 0, .15);
  padding: 40px;
  text-align: center;
}

.pex-share-site-box h3 {
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.pex-share-site-box .pex-share-site-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.pex-share-site-box .pex-share-site-icons i {
  font-size: 60px;
  width: 60px;
}

.pex-footer-right {
  text-align: center;
}

.pex-footer .pex-tp-info {
  align-items: center;
  display: flex;
  margin-bottom: 20px;
  max-width: 580px;
  text-align: left;
}

.pex-footer .pex-tp-logo {
  min-width: 170px;
}

.pex-footer .pex-tp-info p {
  font-size: 25px;
  /* font-weight: 300; */
}

.pex-footer-right>a {
  background-color: #fff;
  border-radius: 50px;
  color: #8C6938;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 100px;
}

@media(min-width: 1481px) {
  .pex-footer .pex-tp-logo {
    margin-right: 20px;
  }
}

@media(max-width: 1480px) {
  .pex-footer .pex-tp-info {
    flex-direction: column;
    text-align: center;
  }

  .pex-footer .pex-tp-logo {
    margin-bottom: 20px;
  }
}

@media(max-width: 1250px) {
  .pex-footer>.pex-inner {
    align-items: center;
    flex-direction: column;
  }

  .pex-footer-mid {
    order: 1;
  }

  .pex-footer-left {
    margin: 60px auto;
    order: 2;
    text-align: center;
  }

  .pex-footer .pex-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .pex-footer .pex-nav>ul {
    justify-content: center;
  }

  .pex-footer-right {
    order: 3;
  }
}

/* MOBILE NAV */
.pex-mobile-nav {
  background-image: url('https://d2urhn0mmik6is.cloudfront.net/site/_images/heavenexplained/BG_updated_res.webp');
  background-position: right;
  background-size: cover;
  color: #fff;
  height: 100vh;
  left: 0;
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: all .3s ease-out;
  width: 100%;
  z-index: 11;
}

.pex-mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

.pex-mobile-nav .pex-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  min-height: 100%;
  padding: 8px 0 40px;
  width: 95%;
}

.pex-mobile-nav-close {
  font-size: 24px;
  padding: 11px 10px;
  position: absolute;
  right: 5px;
  top: 0px;
}

.pex-mobile-nav .pex-logos {
  align-items: center;
  display: flex;
  max-width: calc(95% - 80px);
}

.pex-mobile-nav .pex-dr-j {
  width: 67px;
}

.pex-mobile-nav .pex-logo {
  width: 100%;
}

.pex-mobile-nav .pex-text {
  margin-right: 10px;
  text-align: right;
  text-transform: uppercase;
}

.pex-mobile-nav .pex-nav {
  text-align: center;
  margin-bottom: 60%;
}

.pex-mobile-nav .pex-nav ul ul {
  padding: 15px;
}

.pex-mobile-nav .pex-nav li,
.pex-mobile-nav .pex-nav a {
  display: block;
  font-size: 30px;
  margin-top: 25px;
}

.pex-mobile-nav em {
  font-size: 20px;
}

.pex-mobile-nav .pex-magazine-container {
  align-items: center;
  display: flex;
}

.pex-mobile-nav .pex-magazine-container h3 {
  font-size: 18px;
}

.pex-mobile-nav .pex-magazine-container h4 {
  font-size: 13px;
}

.pex-mobile-nav .pex-magazine {
  width: 40px;
}

.nav-home a {
  font-size: 20px;
  text-shadow: 0 0 15px #fff;
}

/* FORMS */
.pex-form {
  position: relative;
}

.pex-form-row {
  display: flex;
}

.pex-form-row:not(:last-child) {
  margin-bottom: 20px;
}

.pex-form label {
  position: relative;
  width: 100%;
}

.pex-form-row>*:not(:first-child) {
  margin-left: 20px;
}

.pex-form .pex-label,
.pex-form input,
.pex-form select {
  font-size: 18px;
}

.pex-form .pex-label {
  color: #000;
  left: 31px;
  position: absolute;
  top: 16px;
  transition: .25s all ease;
}

.pex-form label.has-focus .pex-label,
.pex-form label.has-value .pex-label {
  font-size: 10px;
  top: 7px;
}

.pex-form input,
.pex-form select {
  border: 2px solid #c6c6c6;
  border-radius: 7px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: none;
  padding: 20px 30px 5px;
  transition: .25s all ease;
  width: 100%;
}

.pex-form label.has-focus input,
.pex-form label.has-focus select {
  border-color: #0d76d7;
}

.pex-form label.invalid input,
.pex-form label.invalid select {
  background-color: #f7e2e2;
  border-color: #f7e2e2;
}

.pex-form label.has-focus.invalid input,
.pex-form label.has-focus.invalid select {
  border-color: #C30000;
}

.pex-form label.invalid .pex-label {
  color: #C30000;
}


.pex-form .pex-form-submit {
  border-radius: 50px;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto;
  padding: 15px 30px;
  position: relative;
}

.pex-form .pex-form-submit,
.pex-form .pex-form-cancel {
  margin: 0 auto;
}

.pex-form .pex-form-submit .loading {
  left: calc(50% - 11px);
  opacity: 0;
  position: absolute;
  top: calc(50% - 11px);
}

.pex-form.loading {
  opacity: .85;
}

.pex-form.loading .pex-form-submit .pex-text {
  opacity: 0;
}

.pex-form.loading .loading {
  opacity: 1;
}

/* FREE GIFT */
.pex-form label[data-country] {
  display: none;
  margin-right: 0;
}

.pex-form label[data-country="United States of America"] {
  display: block;
}

.pex-form-row[data-id="street2"] {
  display: none;
}

.pex-form .pex-toggle-street2 i {
  border: 2px solid transparent;
  border-radius: 100%;
}

.pex-form .pex-toggle-street2:focus i {
  border-color: #0d76d7;
}

.pex-free-gift-confirmation {
  display: none;
  max-width: 600px;
}

.pex-free-gift-confirmation h2 {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pex-free-gift-confirmation p {
  font-size: 18px;
  line-height: 2em;
}

.pex-free-gift-confirmation p a {
  text-decoration: underline;
}

.pex-address-validation-prompt {
  background-color: rgba(0, 0, 0, .9);
  border-radius: 5px;
  color: #fff;
  display: none;
  height: 100%;
  left: 0;
  padding: 30px 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.pex-address-validation-prompt>.pex-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  padding: 0 2.5%;
}

.pex-address-validation-button {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 5px 30px;
}

.pex-address-validation-button[data-action="go-back"] {
  background-color: #fff;
  color: #000;
  margin-bottom: 20px;
}

.pex-address-validation-button[data-action="continue"] {
  margin-bottom: 10px;
}

.post-video-ad {
  position: absolute;
  z-index: 2;
}

.post-video-ad:hover {
  transform: scale(0.98);
  border: solid #fff 5px;
}

.post-video-ad img {
  width: 100%;
}

.post-video-ad.hidden {
  display: none;
}

#tp_overlay_btn-close {
  display: none !important;
}