/* line 1, staticfiles/creator.scss */
* {
  font-family: sans-serif; }

/* line 5, staticfiles/creator.scss */
.title {
  font-size: 22px;
  line-height: 30px; }
  /* line 9, staticfiles/creator.scss */
  .title.small-title {
    font-size: 16px;
    line-height: 22px; }

/* line 15, staticfiles/creator.scss */
#phone {
  padding: 5px 16px;
  box-sizing: border-box; }

/* line 20, staticfiles/creator.scss */
.create-container {
  display: none; }
  /* line 22, staticfiles/creator.scss */
  .create-container.active {
    display: block; }

/* line 28, staticfiles/creator.scss */
.input-wrapper label {
  font-size: 1.25em;
  display: block;
  font-weight: bold; }

/* line 33, staticfiles/creator.scss */
.input-wrapper input {
  padding: 20px;
  font-size: 1.25em;
  background: #DDD;
  border: none;
  border-bottom: 5px solid #444;
  width: 100%;
  display: block;
  margin: auto;
  background: white;
  border: 2px solid #000000;
  border-radius: 10px; }

/* line 49, staticfiles/creator.scss */
.input-wrapper textarea {
  width: 100%;
  padding: 20px; }

/* line 55, staticfiles/creator.scss */
.create-step {
  display: none; }
  /* line 57, staticfiles/creator.scss */
  .create-step.active {
    display: block; }

/* line 62, staticfiles/creator.scss */
.button {
  cursor: pointer;
  background: var(--green-solid);
  color: white;
  display: inline-block;
  float: right;
  font-size: 20px;
  padding: 10px 30px;
  border-radius: 8px;
  font-weight: 500;
  margin-top: 14px; }

/* line 78, staticfiles/creator.scss */
.end-container a.btn {
  display: block; }

/* line 83, staticfiles/creator.scss */
.split-word-section {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 12px; }
  /* line 88, staticfiles/creator.scss */
  .split-word-section .word-btn {
    padding: 8px 14px; }
    /* line 90, staticfiles/creator.scss */
    .split-word-section .word-btn:not(.active) {
      border-color: transparent; }
    /* line 93, staticfiles/creator.scss */
    .split-word-section .word-btn.active {
      background-color: white;
      box-shadow: 1px 3px 3px rgba(0, 0, 0, 0.2); }

@keyframes blink {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* line 112, staticfiles/creator.scss */
.question_g .preview-section {
  display: flex;
  font-size: 1.5em; }

/* line 117, staticfiles/creator.scss */
.question_g .interactive-split {
  display: flex;
  align-items: center;
  justify-self: center;
  flex-direction: column; }

/* line 124, staticfiles/creator.scss */
.question_g span.split-divider {
  margin: -4px 8px 0 8px;
  font-size: 1.3em;
  animation-name: dblink;
  animation-duration: 1s;
  animation-iteration-count: infinite; }

/* line 132, staticfiles/creator.scss */
.question_g .arrow-section {
  display: flex; }
  /* line 134, staticfiles/creator.scss */
  .question_g .arrow-section .arrow {
    width: 50px;
    height: 50px;
    font-size: 2em;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background: var(--blue-solid);
    color: white;
    border-radius: 50%;
    margin: 10px 12px; }

/* line 151, staticfiles/creator.scss */
.preview-container iframe {
  width: 100%;
  height: 50vh;
  height: 50dvh;
  border: 8px solid var(--orange);
  border-radius: 20px; }

/* line 159, staticfiles/creator.scss */
.preview-container .btn-row {
  display: flex;
  gap: 20px; }
  /* line 162, staticfiles/creator.scss */
  .preview-container .btn-row .btn {
    flex: 1 0; }
