@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Nothing+You+Could+Do&display=swap');
body {
  background: white !important;
  color: #333;
  padding: 0;
  margin: 0;
  font-family: 'Julius Sans One', sans-serif;
}
body::after {
  content: '';
  display: block;
  position: absolute;
  height: 50vh;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #f5a9d8 100%);
  opacity: 0.6;
}
#flyerApp {
  position: relative;
  z-index: 10;
}
.flyerApp-header, .flyerApp-footer {
  display: flex;
  justify-content: center;
}
.flyerApp-header {
  height: 8vh;
  align-items: center;
  margin-top: 60px;
  margin-bottom: -20px;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .flyerApp-header {
    margin-top: 66px;
    padding: 0 24px;
  }
}
.flyerApp-header.is-active {
  color: grey;
}
.flyerApp-footer {
  height: 4vh;
  align-items: flex-start;
}
h2 {
  font-size: 24px;
  text-align: center;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  h2 {
    font-size: 32px;
  }
}
.three-container {
  position: relative;
  width: 100%;
  height: 100%;
}
#threeCanvas {
  display: block;
  width: 100% !important;
  height: 70vh !important;
}
.three-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ratio-wrap-placement {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 100%;
  height: 34vh;
  width: 34vh;
}
@media (min-width: 768px) {
  .ratio-wrap-placement {
  height: 53.4vh;
  width: 53.4vh;
  }
}
.ratio-wrap-placement::after {
  background: #fff;
  box-shadow: 0 0 20px 20px #fff;
  content: "";
  height: 12vh;
  top: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  transform: translate(0, -200%);
  width: 100%;
  z-index: 1;
}
.ratio-wrap-placement.is-active {
  transform: translate(-51%, -51%);
  transition: transform 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.ratio-wrap-placement.is-active::after {
  transform: translate(0, 75vh);
  transition: transform 2000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.ratio-wrap {
  position: relative;
  width: 100%;
}
.ratio-wrap.is-ratio-1-1 {
  padding-bottom: 100%;
}
.ratio-wrap > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.render-origin {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  background-size: cover;
  font-family: 'Nothing You Could Do', cursive;
  font-size: 5vh;
  line-height: 1.3;
  text-align: center;
  line-break: auto;
  transition: opacity 0.4s;
  color: black;
}
.render-origin:focus,
.render-origin:focus-visible {
  outline-color: #333;
}
@media (min-width: 768px) {
  .render-origin {
    font-size: 8vh;
  }
}
.is-hidden {
  opacity: 0;
}
.submit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 8vh;
  height: 8vh;
  margin: 0 auto;
  color: #333;
  border: 1px solid #333;
  border-radius: 50%;
  margin-top: -16px;
}
.submit i {
  font-size: 1.25rem;
  font-size: 4vh;
  transform: translate(-8%, -4%);
}
.submit:hover {
  cursor: pointer;
}
.submit.is-disabled {
  color: grey;
  border-color: grey;
  pointer-events: none;
}

.visibiliy-hidden {
  visibility: hidden;
}