/**
 * Gutenberg Colors declared in the theme.json (from Figma)
 * Main colors
 */
/**
 * Other theme colors
 */
/**
 * Additional theme colors
 */
/**
 * Grid Breakpoints
 */
/**
 * Main variables
 */
/**
 * For rem calculations
 */
/**
 * Transitions
 */
/**
 * Border
 */
/**
 * Shadows
 */
/**
 * Block gap
 */
/**
 * Font sizes and fluid font sizes from theme.json
 */
/**
 * Project Styles
 */
.b-footer-lunar {
  position: relative;
  display: flex;
  max-height: 49rem;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  background: var(--wp--preset--color--dark-100);
}
.b-footer-lunar::before {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  height: 4rem;
  background: linear-gradient(to bottom, rgb(31, 31, 31) 0%, rgb(31, 31, 31) 2%, rgba(31, 31, 31, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  content: "";
  pointer-events: none;
}
.b-footer-lunar__inner {
  position: relative;
  z-index: 1;
}
.b-footer-lunar__header {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 2.5rem;
  gap: 1rem;
  text-align: center;
}
.b-footer-lunar__header * {
  margin-bottom: 0;
}
.b-footer-lunar__header h1,
.b-footer-lunar__header h2,
.b-footer-lunar__header h3,
.b-footer-lunar__header h4,
.b-footer-lunar__header h5,
.b-footer-lunar__header h6 {
  font-size: var(--wp--preset--font-size--40);
}
.b-footer-lunar__prompt {
  position: relative;
  overflow: hidden;
  width: calc(100vw - 4rem);
  height: 10rem;
  border-radius: 0.75rem;
  margin: 0 auto;
  background: var(--wp--preset--color--dark-100);
}
@media (min-width: 768px) {
  .b-footer-lunar__prompt {
    width: 46rem;
  }
}
@media (min-width: md) {
  .b-footer-lunar__prompt {
    width: 46rem;
  }
}
.b-footer-lunar__prompt-wrapper {
  position: absolute;
  z-index: 2;
  top: 0.0625rem;
  right: 0.0625rem;
  bottom: 0.0625rem;
  left: 0.0625rem;
  overflow: hidden;
  padding: 1rem;
  border-radius: 0.75rem;
  background: var(--wp--preset--color--dark-100);
  box-shadow: 0 20px 20px -15px rgba(0, 0, 0, 0.2);
  opacity: 1;
}
.b-footer-lunar__prompt-wrapper textarea {
  width: 100%;
  height: calc(100% - 1rem);
  padding: 0;
  border: none;
  margin: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", "Arial Fallback 400";
  font-size: var(--wp--preset--font-size--16);
  font-weight: 400;
  overflow-x: hidden;
  overflow-y: scroll;
  resize: none;
}
.b-footer-lunar__prompt-wrapper textarea::-moz-selection {
  background: var(--wp--preset--color--almostcyan-100);
  color: var(--wp--preset--color--white-100);
}
.b-footer-lunar__prompt-wrapper textarea::selection {
  background: var(--wp--preset--color--almostcyan-100);
  color: var(--wp--preset--color--white-100);
}
.b-footer-lunar__prompt-wrapper textarea::-webkit-scrollbar {
  width: 0.5rem;
  background: var(--wp--preset--color--dark-100);
}
.b-footer-lunar__prompt-wrapper textarea::-webkit-scrollbar-track {
  background: var(--wp--preset--color--dark-100);
}
.b-footer-lunar__prompt-wrapper textarea::-webkit-scrollbar-thumb {
  border-radius: 0.4rem;
  background: var(--wp--preset--color--dark-40);
}
.b-footer-lunar__prompt-wrapper .b-footer-lunar__prompt-counter {
  position: absolute;
  bottom: 1.125rem;
  left: 1rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--wp--preset--font-size--12);
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.b-footer-lunar__prompt-wrapper button {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.875rem;
  display: flex;
  width: 2.375rem;
  height: 2.375rem;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0.25rem;
  background: var(--wp--preset--color--white-100);
  cursor: default;
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
}
.b-footer-lunar__prompt-wrapper button:hover {
  opacity: 0.7;
}
.b-footer-lunar__prompt.is-user-edited textarea {
  color: var(--wp--preset--color--white-100);
}
.b-footer-lunar__prompt.is-user-edited button {
  cursor: pointer;
  opacity: 1;
  pointer-events: initial;
}
.b-footer-lunar__prompt.is-user-edited button:hover {
  opacity: 0.7;
}
.b-footer-lunar__prompt-gradient {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 50rem;
  height: 50rem;
  animation: borderSpin 10s linear infinite;
  background: conic-gradient(from 0deg, rgba(0, 0, 0, 0.85) 0deg, #ffd54a 7.5deg, #4f8ef7 15deg, #ffd54a 22.5deg, rgba(0, 0, 0, 0.85) 30deg, transparent 60deg);
  inset: 0;
  transform: translate(-50%, -50%);
}
@keyframes borderSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.b-footer-lunar__modal {
  position: fixed;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  inset: 0;
}
.b-footer-lunar__modal--active {
  display: flex;
}
.b-footer-lunar__modal-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  inset: 0;
}
.b-footer-lunar__modal-box {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 46rem;
  padding: 0 0 4.5rem 0;
  border-radius: 0.75rem;
  background: var(--wp--preset--color--dark-100);
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.25);
  text-align: center;
}
.b-footer-lunar__modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  width: 1.2rem;
  height: 1.2rem;
  padding: 0;
  border: none;
  margin: 0;
  background: none;
  cursor: pointer;
  filter: invert(1);
}
.b-footer-lunar__modal-close img {
  width: 100%;
  height: 100%;
}
.b-footer-lunar__modal-counter {
  margin: 0 auto;
}
.b-footer-lunar__modal-title {
  margin-bottom: 20px;
  color: var(--wp--preset--color--white-100);
  font-size: var(--wp--preset--font-size--40);
  font-weight: 600;
}
.b-footer-lunar__modal-subtitle {
  margin-bottom: 40px;
  color: var(--wp--preset--color--white-100);
  font-size: var(--wp--preset--font-size--24);
  font-weight: 400;
}
.b-footer-lunar__modal-note {
  margin-top: 15px;
  color: var(--wp--preset--color--white-100);
  font-size: var(--wp--preset--font-size--12);
  font-weight: 400;
}
.b-footer-lunar__background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body.single-post .wp-block-post-content .b-footer-lunar {
  max-width: 46.875rem;
  padding: 1rem 0 3rem;
  margin-right: auto !important;
  margin-left: auto !important;
}
@media (min-width: 1200px) {
  body.single-post .wp-block-post-content .b-footer-lunar {
    left: -12rem;
  }
}
@media (min-width: 1250px) {
  body.single-post .wp-block-post-content .b-footer-lunar {
    left: -12rem;
  }
}
@media (min-width: 1464px) {
  body.single-post .wp-block-post-content .b-footer-lunar {
    left: -6rem;
  }
}
@media (min-width: 1560px) {
  body.single-post .wp-block-post-content .b-footer-lunar {
    left: initial;
  }
}
body.single-post .wp-block-post-content .b-footer-lunar__inner {
  padding: 0;
}
@media (min-width: 1200px) {
  body.single-post .wp-block-post-content .b-footer-lunar__inner {
    padding: 0 4rem;
  }
}
body.single-post .wp-block-post-content .b-footer-lunar__prompt {
  width: 100%;
}

body.has-block-demo .b-footer-lunar::before {
  position: absolute;
  z-index: 2;
  top: -93px;
  left: 0;
  width: 100%;
  height: 93px;
  background: #1a1c20;
  content: "";
}
@media (min-width: 1000px) {
  body.has-block-demo .b-footer-lunar::before {
    top: -83px;
    height: 83px;
  }
}

/*# sourceMappingURL=block_footer-lunar.css.map*/