.c-dialog {
  --dialog-display: none;
  display: var(--dialog-display);
}
.c-dialog__title {
  font-family: var(--font-serif-text);
  font-weight: 400;
}
.c-dialog__title {
  font-size: 1.125rem;
  line-height: calc(1em + 4px);
}
.c-dialog__title {
  font-weight: bold;
}
@media screen and (min-width: 740px) {
  .c-dialog__title {
    font-family: var(--font-serif-display);
    font-weight: 700;
  }
  .c-dialog__title {
    font-size: 1.75rem;
    line-height: calc(1em + 4px);
  }
  .c-dialog__title {
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 740px) and (min-width: 740px) {
  .c-dialog__title {
    font-size: 1.75rem;
  }
}
.c-dialog__body {
  font-family: var(--font-sans-grotesk);
  font-weight: 400;
}
.c-dialog__body {
  font-size: 0.75rem;
  line-height: calc(1em + 4px);
}
@media screen and (min-width: 740px) {
  .c-dialog__body {
    font-family: var(--font-sans-grotesk);
    font-weight: 400;
  }
  .c-dialog__body {
    font-size: 1rem;
    line-height: calc(1em + 4px);
  }
  .c-dialog__body {
    line-height: 1.5;
  }
}
.c-dialog.dialog--state-opened {
  --dialog-display: block;
  --dialog-width: 100vw;
  width: var(--dialog-width);
  border: 0px;
  animation: dialog-fade-in 0.7s forwards ease;
  margin: 0 auto;
  max-width: 100vw;
}
@media screen and (min-width: 740px) {
  .c-dialog.dialog--state-opened {
    --dialog-width: 100%;
  }
}
.c-dialog .c-btn {
  --btn-label: #fff;
  --btn-color: var(--theme-color);
}

@keyframes dialog-fade-in {
  from {
    transform: translateY(calc(100% + 50px));
  }
  to {
    transform: translateY(5.6%);
  }
}