@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
::-webkit-scrollbar-track {
  background: #000;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
::-webkit-scrollbar-thumb {
  background-color: #fff;
}
html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

::selection {
  background-color: #000;
  color: #fff;
}

img::selection {
  background-color: rgba(0, 0, 0, 0.3);
}

.step-button::selection {
  background-color: #fff;
  color: #000;
}

#_evh-button,
#_evh-link {
  display: none !important;
}

div[popover] {
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

div[popover]:popover-open {
  opacity: 1;
  background: rgba(0, 0, 0, 0.75);
  border: none;
  width: 100%;
  height: 100%;
  z-index: 999;
}
div[popover]:popover-open .content {
  max-width: 90%;
  max-height: 90vh;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: all;
}

.stars {
  font-family: "Arial Black", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.stars .star {
  height: 100%;
  aspect-ratio: 1;
  animation: spin 1.75s linear infinite forwards;
  animation-play-state: paused;
}
.stars .star.spin {
  animation-play-state: running;
}
.stars span {
  font: inherit;
  line-height: 1em;
  text-align: center;
}

a.stars:hover .star,
button.stars:hover .star {
  animation-play-state: running;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.step-button {
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding: 28px 10px;
  text-align: center;
  background-color: #000;
  border: solid 1px #fff;
  box-shadow: 0px 0px 30px -20px #000;
  display: block;
  position: relative;
  transition: border-color 0.4s;
}
.step-button#download-image, .step-button#pre-order {
  display: none;
}
.step-button .star,
.step-button span {
  position: relative;
  z-index: 2;
  mix-blend-mode: difference;
}
.step-button:after {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0px;
  bottom: unset;
  left: 0px;
  width: 100%;
  height: 0%;
  transition: height 0.4s;
  z-index: 1;
}
.step-button:disabled {
  display: none;
}

a.step-button:hover,
button.step-button:hover {
  border-color: #000;
}
a.step-button:hover:after,
button.step-button:hover:after {
  top: unset;
  bottom: 0px;
  height: 100%;
}

html, body {
  background-color: #000;
}

body {
  background-image: url("/wp-content/uploads/2024/07/bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

main {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  padding-top: 200px;
  margin-top: -150px;
}
@media (max-width: 768px) {
  main {
    padding-top: 0px;
    margin-top: 0px;
  }
}
main .content {
  width: calc(100% - 30px);
  max-width: 1200px;
}
main .content #error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.75em;
  font-size: 30px;
  color: white;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
}
main .content #error.active {
  opacity: 1;
  transition: opacity 0.3s;
}

header {
  width: 100%;
  height: auto;
  display: grid;
  place-items: center;
  margin: auto;
  padding-top: 72px;
  padding-bottom: 66px;
  position: relative;
  z-index: 1;
}
header nav {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1200px;
  display: flex;
  justify-content: center;
}
header nav .stars {
  position: absolute;
  top: 0px;
  right: 0px;
}
header nav .stars.sign-up {
  left: 0px;
  right: unset;
}
header nav #sign-up-link span {
  min-width: 75px;
}
header nav #logo {
  width: 100%;
  max-width: 400px;
  height: auto;
}
header nav a.stars span {
  min-width: 107px;
}

@media (max-width: 850px) {
  header nav #logo {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  header nav {
    flex-wrap: wrap;
    gap: 20px;
  }
  header nav .stars {
    flex: 1;
    order: 2;
  }
  header nav .stars:nth-of-type(2) {
    order: 3;
  }
  header nav #logo {
    flex-basis: 100%;
    order: 1;
  }
}
@media (max-width: 500px) {
  header {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  header nav .stars {
    left: auto !important;
    right: auto !important;
  }
  header nav .sign-up {
    top: 25px;
  }
  header nav #logo {
    margin-top: 70px;
  }
}
footer {
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 4;
  width: 100%;
  max-width: 100vw;
  height: auto;
  padding: 0.5em 15px;
  display: grid;
  place-items: center;
  background-color: #000;
}
footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px 20px;
  flex-wrap: wrap;
}
footer ul .stars {
  font-size: 12px;
}
footer ul .stars .star {
  scale: 0.9;
}
footer ul .stars .emi {
  max-height: 35px;
}
footer ul li:nth-of-type(3) a span {
  min-width: 291px;
}
footer ul li:nth-of-type(4) a span {
  min-width: 75px;
}
footer ul li:nth-of-type(6) a span {
  min-width: 173px;
}
footer ul li:nth-of-type(7) a span {
  min-width: 90px;
}
footer ul li:nth-of-type(8) a span {
  min-width: 118px;
}

@media (max-width: 768px) {
  footer ul .stars {
    gap: 5px !important;
  }
}
#music-sheet {
  width: 100%;
  background-color: #fdfdfd;
  box-shadow: 0px 0px 20px #000;
  margin-bottom: 275px;
  position: relative;
  z-index: 3;
  background-image: url("/wp-content/uploads/2024/07/background.jpg");
  background-size: contain;
  background-position: center top;
  background-repeat: repeat-y;
  padding: min(180px, 14.62vw) min(105px, 8.53vw);
}
#music-sheet::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/uploads/2024/07/background-marks.png");
  background-size: contain;
  background-position: center top;
  background-repeat: repeat-y;
  z-index: 1;
}
#music-sheet .stave-row {
  width: 100%;
  aspect-ratio: 1277/213;
  position: relative;
  z-index: 2;
  margin-bottom: min(140px, 11.66vw);
}
#music-sheet .stave-row:last-of-type {
  margin-bottom: 0px;
}
#music-sheet .stave-row .background {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 21%;
  position: relative;
  z-index: 1;
}
#music-sheet .stave-row .background .stave {
  width: 100%;
  height: 1.5%;
  background-color: #000;
  position: relative;
  z-index: 1;
}
#music-sheet .stave-row .background .stave:first-of-type {
  margin-top: 1%;
}
#music-sheet .stave-row .background .clef {
  position: absolute;
  top: -2%;
  left: 0px;
  height: 110%;
  aspect-ratio: 63/165;
  transform: rotate(-10deg);
  z-index: 2;
}
#music-sheet .stave-row .foreground {
  height: 113%;
  aspect-ratio: 700/150;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-54%);
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  grid-template-rows: repeat(5, 1fr);
}
#music-sheet .stave-row .foreground .box {
  background-color: transparent;
  cursor: default;
  position: relative;
}
#music-sheet .stave-row .foreground .box .message {
  bottom: 0%;
  min-width: 300px;
  transform: translate(-50%, -100px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
#music-sheet .stave-row .foreground .box::before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  aspect-ratio: 34/52;
  background-image: url("/wp-content/uploads/2024/07/note3.png");
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.1s;
  pointer-events: none;
}
#music-sheet .stave-row .foreground .box.active {
  cursor: pointer;
  scale: 1;
  transition: scale 0.25s;
}
#music-sheet .stave-row .foreground .box.active::before {
  opacity: 1;
}
#music-sheet .stave-row .foreground .box.active:hover {
  scale: 1.1;
}
#music-sheet .stave-row .foreground .box.active.show:hover {
  scale: 1;
}
#music-sheet .stave-row .foreground .box.reserved {
  cursor: default !important;
}
#music-sheet .stave-row .foreground .box.reserved::before {
  opacity: 0 !important;
}
#music-sheet .stave-row .foreground .box.note1::before {
  background-image: url("/wp-content/uploads/2024/07/note1.png") !important;
}
#music-sheet .stave-row .foreground .box.note2::before {
  background-image: url("/wp-content/uploads/2024/07/note1.png") !important;
}
#music-sheet .stave-row .foreground .box.note3::before {
  background-image: url("/wp-content/uploads/2024/07/note3.png") !important;
}
#music-sheet .stave-row .foreground .box.note4::before {
  background-image: url("/wp-content/uploads/2024/07/note1.png") !important;
}
#music-sheet .stave-row .foreground .box.note5::before {
  background-image: url("/wp-content/uploads/2024/07/note5.png") !important;
}
#music-sheet .stave-row .foreground .box.note6::before {
  background-image: url("/wp-content/uploads/2024/07/note1.png") !important;
}
#music-sheet .stave-row .foreground .box.note7::before {
  background-image: url("/wp-content/uploads/2024/07/note7.png") !important;
}
#music-sheet .stave-row .foreground .box.note8::before {
  background-image: url("/wp-content/uploads/2024/07/note1.png") !important;
}
#music-sheet .stave-row .foreground .box.note9::before {
  background-image: url("/wp-content/uploads/2024/07/note9.png") !important;
  bottom: -10%;
}
#music-sheet .stave-row .foreground .box.note10::before {
  background-image: url("/wp-content/uploads/2024/07/note10.png") !important;
  bottom: -10%;
}
#music-sheet .stave-row .foreground .box.note11::before {
  background-image: url("/wp-content/uploads/2024/07/note11.png") !important;
}
#music-sheet .stave-row .foreground .box.note12::before {
  background-image: url("/wp-content/uploads/2024/07/note12.png") !important;
  bottom: -15%;
}
#music-sheet .stave-row .foreground .box.note13::before {
  background-image: url("/wp-content/uploads/2024/07/note13.png") !important;
  bottom: -15%;
}
#music-sheet .stave-row .foreground .box.show {
  position: relative;
}
#music-sheet .stave-row .foreground .box.show .message {
  opacity: 1;
  pointer-events: all;
}
#music-sheet.active .stave-row .foreground .box {
  cursor: pointer;
}
#music-sheet.active .stave-row .foreground .box:hover::before {
  opacity: 1;
}
#music-sheet.active .stave-row .foreground .box.new {
  cursor: pointer;
}
#music-sheet.active .stave-row .foreground .box.new::before {
  opacity: 1;
  background-image: url("/wp-content/uploads/2024/07/note3-red.png");
}
#music-sheet.active .stave-row .foreground .box.active:hover {
  scale: 1 !important;
}
#music-sheet.loading {
  opacity: 0.7;
}

.message {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: calc(100% - 30px);
  max-width: 300px;
  height: auto;
  background-color: #fff;
  border: solid 1px #000;
  padding: 20px;
  padding-bottom: 40px;
  filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, 0.46));
}
.message .close {
  position: absolute !important;
  top: 7px !important;
  right: 7px !important;
  font-size: 14px !important;
  color: #000 !important;
  text-shadow: none !important;
  transition: color 0.3s !important;
}
.message .close:hover {
  color: #ff0000;
}
.message .a-note-for,
.message .initials,
.message .note-message {
  text-align: center;
  color: #000;
  line-height: 1.65em;
  font-family: "Caveat", cursive;
}
.message .a-note-for {
  margin-bottom: 15px;
  font-size: 14px;
}
.message .initials {
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: uppercase;
}
.message .note-message {
  font-size: 20px;
  text-transform: capitalize;
}
.message::before, .message::after {
  content: "";
  position: absolute;
  top: 99.75%;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.message::before {
  width: 37px;
  height: 42px;
  background-color: #000;
}
.message::after {
  width: 35px;
  height: 40px;
  background-color: #fff;
}

@media (max-width: 550px) {
  #music-sheet {
    padding: min(90px, 7.3vw) min(52px, 4.25vw);
  }
}
.step-buttons-container.active:has(+ #steps.active) {
  bottom: 1em;
}
.step-buttons-container.active:has(+ #steps.active) #back {
  color: #fff;
  -webkit-text-stroke: #fff 0.75px;
}
.step-buttons-container.active:has(+ #steps.active) #back:hover {
  color: #000;
}
.step-buttons-container.active:has(+ #steps.active):has(+ #steps.active #final-container.active) #add-note,
.step-buttons-container.active:has(+ #steps.active):has(+ #steps.active #final-container.active) #back {
  display: none;
}
.step-buttons-container.active:has(+ #steps.active):has(+ #steps.active #final-container.active) #download-image,
.step-buttons-container.active:has(+ #steps.active):has(+ #steps.active #final-container.active) #pre-order {
  display: block;
  padding: 20px 10px;
  margin-bottom: 20px;
}
.step-buttons-container.active:has(+ #steps.active):has(+ #steps.active #final-container.active) #pre-order {
  text-align: center;
}

.step-buttons-container {
  width: calc(100% - 60px);
  max-width: 400px;
  position: fixed;
  z-index: 6;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  transition: bottom 0.5s;
}
.step-buttons-container.active {
  bottom: 75px;
}
.step-buttons-container #next-buttons {
  width: 100%;
  transform: translateY(0%);
  transition: background-color 0.3s, transform 0.5s;
}
.step-buttons-container #next-buttons.active {
  transform: translateY(-100%);
}
.step-buttons-container #back {
  width: auto;
  font-family: "Arial Black", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  -webkit-text-stroke: #000 0.75px;
  margin: auto;
  margin-top: 28px;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s, margin-bottom 0.5s, color 0.3s, -webkit-text-stroke 0.3s;
}
.step-buttons-container #back:hover {
  color: #fff;
}
.step-buttons-container #back.active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 768px) {
  .step-buttons-container #next-buttons .step-button:hover:after {
    height: 0% !important;
  }
}
html.locked {
  overflow: hidden;
}

#place-note-cover-bg,
#place-note-cover {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
#place-note-cover-bg.active,
#place-note-cover.active {
  opacity: 1;
  pointer-events: all;
}

#place-note-cover-bg {
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 2;
}

#place-note-cover {
  z-index: 2;
  transition: opacity 0.5s 0s, z-index 0.1s 0s;
  pointer-events: none !important;
}
#place-note-cover.active {
  z-index: 4;
  transition: opacity 0.5s 0s, z-index 0.1s 0.4s;
}
#place-note-cover.active .close-popup {
  pointer-events: all !important;
}
#place-note-cover .close-popup {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 60px;
  color: #fff;
  transition: color 0.3s;
  pointer-events: inherit;
  text-shadow: 0px 0px 10px black;
}
#place-note-cover .close-popup:hover {
  color: #ff0000;
}
#place-note-cover .stars.step-button {
  display: flex;
  justify-content: center;
  width: calc(100% - 30px);
  max-width: 1200px;
  padding: 23px 10px;
  margin: auto;
  margin-top: 87px;
  background-color: #000;
  position: relative;
  top: 30vh;
  transition: top 0.5s;
  pointer-events: all;
}
#place-note-cover.active .stars.step-button {
  top: 10px;
}

#steps {
  position: fixed;
  z-index: 5;
  top: 0px;
  left: 0px;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
#steps.active {
  opacity: 1;
  pointer-events: all;
}
#steps .close-popup {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 60px;
  color: #fff;
  transition: color 0.3s;
  z-index: 9;
}
#steps .close-popup:hover {
  color: #ff0000;
}
#steps #card-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: calc(100% - 30px);
  max-width: 400px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 1;
}
#steps #card-container.active {
  opacity: 1;
  pointer-events: all;
}
#steps #card-container .card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotatey(-90deg);
  transition: transform 0.5s;
}
#steps #card-container .card.active {
  transform: translate(-50%, -60%) rotatey(0deg);
}
#steps #final-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: calc(100% - 30px);
  max-width: 400px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 2;
}
#steps #final-container.active {
  opacity: 1;
  pointer-events: all;
}
#steps #final-container #title {
  margin-top: -12.5vh;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
  font-family: "Arial Black", "Arial", sans-serif;
}
#steps #final-container #watch {
  margin-bottom: 5vh;
}
#steps #final-container .card {
  padding: 35px;
}
#steps .card {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding: 46px;
  position: relative;
}
#steps .card#choose-note {
  padding: 45px 23px 71px;
}
#steps .card .stars {
  max-width: unset;
  width: 100%;
  margin-bottom: 35px;
  font-size: 24px;
  filter: invert(1);
  scale: 70%;
}
#steps .card #carousel {
  width: 100%;
  position: relative;
}
#steps .card #carousel #prev-note, #steps .card #carousel #next-note {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: auto;
}
#steps .card #carousel #prev-note img, #steps .card #carousel #next-note img {
  width: 100%;
  height: auto;
  position: relative;
  transform: translateX(0%);
  transition: transform 0.3s;
}
#steps .card #carousel #prev-note:disabled, #steps .card #carousel #next-note:disabled {
  opacity: 0.5;
  pointer-events: none;
}
#steps .card #carousel #prev-note:disabled:hover img, #steps .card #carousel #next-note:disabled:hover img {
  transform: translateX(0%) !important;
}
#steps .card #carousel #prev-note:hover img {
  transform: translateX(-10%);
}
#steps .card #carousel #next-note {
  right: 0px;
}
#steps .card #carousel #next-note:hover img {
  transform: translateX(10%);
}
#steps .card #carousel #notes-container {
  width: calc(100% - 100px);
  aspect-ratio: 1;
  border: solid 1px #000;
  display: flex;
  margin: auto;
  overflow: hidden;
  position: relative;
}
#steps .card #carousel #notes-container .note {
  min-width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: absolute;
  left: 101%;
  top: 0px;
  transform: rotate(15deg);
}
#steps .card #carousel #notes-container .note img {
  width: 60%;
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  scale: 1;
  transition: scale 0.3s;
}
#steps .card #carousel #notes-container .note.active {
  left: 0%;
  transform: rotate(0deg);
  transition: left 0.5s ease-out, transform 0.5s ease-out;
}
#steps .card #carousel #notes-container .note:has(+ .active) {
  left: -101%;
  transform: rotate(-15deg);
  transition: left 0.5s ease-out, transform 0.5s ease-out;
}
#steps .card #carousel #notes-container.back .note {
  transition: left 0.5s ease-out, transform 0.5s ease-out;
}
#steps .card #carousel #notes-container.back .note:has(+ .active) {
  transition: none;
}
#steps .card #to {
  font-family: "Arial Black", "Arial", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 5px;
}
#steps .card #initials-container {
  width: 96px;
  height: 49px;
  position: relative;
  border: solid 2px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: auto;
  margin-bottom: 50px;
}
#steps .card #initials-container .initials {
  font-family: "Arial Black", "Arial", sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-bottom: solid 1px #000;
  border-radius: 0px;
  outline: none;
  max-width: 30px;
}
#steps .card #message,
#steps .card #message::placeholder {
  font-family: "Arial Black", "Arial", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
}
#steps .card #message {
  width: 100%;
  height: 225px;
  resize: none;
  padding: 30px 25px;
  margin-bottom: 33px;
  border: solid 2px #000;
  outline: none;
  transition: border-color 0.3s;
}
#steps .card #word-count {
  font-family: "Arial", sans-serif;
  font-weight: bold;
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  transition: color 0.3s;
}
#steps .card #word-count span {
  font: inherit;
}
#steps .card #canvas-preview {
  position: relative;
}
#steps .card #canvas-preview #image-preview {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 3;
}
#steps .card #canvas-preview #image-preview.hide {
  display: none;
}
#steps .card #canvas-preview #final-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  position: relative;
  z-index: 1;
}
#steps .card #canvas-preview #overlay {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-image: linear-gradient(transparent, black);
  z-index: 2;
}
#steps .card::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 65px;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  background-color: #fff;
}

.overlay-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 25px;
}
.overlay-content p {
  font-family: "Caveat", cursive;
  line-height: 1em;
  font-size: 20px;
  color: white;
}
.overlay-content img {
  height: 40px;
  width: auto;
  margin: 0px 10px;
}

#sharing-image-overlay .overlay-content {
  bottom: 50px;
}
#sharing-image-overlay .overlay-content p {
  font-size: 40px;
}
#sharing-image-overlay .overlay-content img {
  height: 80px;
  margin: 0px 40px;
}

@media (max-width: 768px) {
  .close-popup {
    font-size: 40px !important;
    width: 31px;
    height: 31px;
    line-height: 31px;
    text-align: center;
    top: 10px !important;
    right: 10px !important;
  }
}
#sharing-image-container {
  position: absolute;
  top: 0px;
  left: -1000px;
  width: 1px;
  height: 1px;
}
#sharing-image-container #sharing-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  height: 1000px;
  z-index: 1;
}
#sharing-image-container #sharing-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1000px;
  height: 500px;
  z-index: 2;
  background-image: linear-gradient(transparent, black);
}
#sharing-image-container #sharing-image-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 1000px;
  height: 1000px;
  z-index: 1;
  background-image: url("/wp-content/uploads/2024/07/placeholder.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.popup {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.popup.active {
  opacity: 1;
  pointer-events: all;
}
.popup .close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 60px;
  color: #fff;
  transition: color 0.3s;
  pointer-events: inherit;
  text-shadow: 0px 0px 10px black;
  z-index: 2;
}
.popup .close:hover {
  color: #ff0000;
}
.popup .popup-content {
  position: absolute;
  width: calc(100% - 30px);
  max-width: 600px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border: solid 1px #000;
  padding: 20px;
  filter: drop-shadow(0px 5px 12px rgba(0, 0, 0, 0.46));
  overflow: hidden;
  z-index: 2;
}
.popup .popup-content .video {
  width: 100%;
  height: auto;
  position: relative;
}
.popup .popup-content .video video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.popup .popup-content .video#mobile {
  display: none;
}
@media (max-width: 768px) {
  .popup .popup-content .video#mobile {
    display: block;
  }
  .popup .popup-content .video#desktop {
    display: none;
  }
}
.popup .popup-content .video .play {
  width: 10%;
  aspect-ratio: 1;
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  background-color: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.popup .popup-content .video .play.hide {
  display: none;
}
.popup .popup-content .ae-cform-container {
  max-width: unset;
  width: 100%;
}
.popup .popup-content .ae-cform-modal-container {
  display: unset !important;
}
.popup .popup-content .ae-cform-modal-display-cta,
.popup .popup-content .ae-cform-title,
.popup .popup-content form label,
.popup .popup-content #terms,
.popup .popup-content #sms-terms,
.popup .popup-content input,
.popup .popup-content select {
  color: #000;
  font-family: "Arial Black", "Arial", sans-serif;
}
.popup .popup-content .ae-cform-modal-display-cta,
.popup .popup-content .ae-cform-title,
.popup .popup-content #terms,
.popup .popup-content #sms-terms {
  text-align: center;
}
.popup .popup-content .ae-cform-modal-display-cta {
  display: table;
  margin: auto;
}
.popup .popup-content #ae-cform-input-reg-mobilephone-1 {
  padding-left: 10px !important;
  max-width: unset;
  width: 100%;
}
.popup .popup-content input, .popup .popup-content select {
  background-color: #fff;
  border: solid 1px #000;
}
.popup .popup-content input[type=submit] {
  font-family: "Arial Black", "Arial", sans-serif;
  background-image: none;
  border: solid 1px #000;
  text-shadow: none;
  background-color: #000;
  color: #fff;
  margin-top: 60px;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
}
.popup .popup-content input[type=submit]:hover {
  background-color: #fff;
  color: #000;
}
.popup#sign-up-popup .popup-content {
  max-height: 80vh;
  overflow: auto;
}
.popup#watch-popup .popup-content {
  max-width: 800px;
}

@media screen and (min-width: 30em) {
  .popup #grecaptcha-badge-cform {
    bottom: 113px;
  }
}
@media (max-width: 768px) {
  .popup .close {
    font-size: 40px !important;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    top: 10px !important;
    right: 10px !important;
  }
}/*# sourceMappingURL=style.css.map */