.wef-exact-flow-wrap,
.wef-exact-flow-wrap * {
  box-sizing: border-box;
}

.wef-exact-flow-wrap {
  --wef-bg: #FAF9F5;
  --wef-primary: #004751;
  --wef-muted: rgba(0, 71, 81, 0.72);
  --wef-pill: #eef1ee;
  --wef-pill-border: rgba(0, 71, 81, 0.08);
  --wef-error: #b42318;
  font-family: "Open Sans", Arial, sans-serif;
  background: var(--wef-bg);
  color: var(--wef-primary);
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.wef-screen {
  min-height: 100vh;
  width: 100%;
  padding: 46px 24px 96px;
  background: var(--wef-bg);
  position: relative;
}

.wef-logo-row {
  text-align: center;
  height: 56px;
}

.wef-logo-row img {
  max-width: 142px;
  max-height: 52px;
  object-fit: contain;
}

.wef-question-shell {
  width: min(640px, calc(100vw - 48px));
  margin-left: auto;
  margin-right: auto;
  margin-top: 245px;
  animation: wefSlideIn .28s ease both;
}

@keyframes wefSlideIn {
  from { opacity: .01; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.wef-question-head {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 30px;
}

.wef-number-badge {
  flex: 0 0 auto;
  margin-top: 7px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 4px;
  background: var(--wef-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.wef-title {
  margin: 0;
  color: var(--wef-primary);
  font-size: 28px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.wef-required {
  margin-left: 1px;
}

.wef-help,
.wef-description {
  color: var(--wef-muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 9px;
  white-space: pre-line;
}

.wef-description {
  font-size: 16px;
  color: #143c3f;
  margin-bottom: 25px;
}

.wef-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wef-option {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--wef-pill-border);
  background: var(--wef-pill);
  color: #155d68;
  min-height: 47px;
  width: 100%;
  border-radius: 999px;
  padding: 9px 15px 9px 13px;
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 20px;
  line-height: 1.25;
  transition: border-color .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.wef-option:hover {
  border-color: rgba(0, 71, 81, 0.45);
}

.wef-option.is-selected {
  background: #fffefb;
  border-color: var(--wef-primary);
  box-shadow: 0 0 0 1px var(--wef-primary) inset;
}

.wef-key {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(0, 71, 81, .28);
  background: #f7fbfa;
  color: var(--wef-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.wef-option.is-selected .wef-key {
  background: var(--wef-primary);
  border-color: var(--wef-primary);
  color: #fff;
}

.wef-input,
.wef-textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(0, 71, 81, .45);
  background: transparent;
  color: var(--wef-primary);
  font-family: inherit;
  font-size: 28px;
  line-height: 1.3;
  padding: 14px 0 12px;
  outline: none;
}

.wef-input:focus,
.wef-textarea:focus {
  border-bottom-color: var(--wef-primary);
}

.wef-textarea {
  min-height: 150px;
  resize: vertical;
  font-size: 20px;
  border: 2px solid rgba(0, 71, 81, .25);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.35);
}

.wef-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wef-ok {
  border: 0;
  background: var(--wef-primary);
  color: #fff;
  border-radius: 999px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  padding: 12px 22px;
  min-width: 76px;
  cursor: pointer;
  line-height: 1;
  transition: transform .16s ease, opacity .16s ease;
}

.wef-ok:hover { transform: translateY(-1px); }
.wef-ok:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.wef-enter-hint {
  color: rgba(0, 71, 81, .62);
  font-size: 12px;
}

.wef-error {
  color: var(--wef-error);
  font-size: 14px;
  margin-top: 16px;
  min-height: 18px;
}

.wef-nav {
  position: fixed;
  right: 22px;
  bottom: 20px;
  display: flex;
  z-index: 20;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.09);
}

.wef-nav button {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--wef-primary);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wef-nav button.wef-disabled {
  background: rgba(0, 71, 81, .18);
  color: rgba(0, 71, 81, .4);
  cursor: default;
}

.wef-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 71, 81, .15);
  z-index: 30;
}

.wef-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--wef-primary);
  transition: width .28s ease;
}

.wef-complete {
  text-align: center;
  padding-top: 180px;
}

.wef-complete h2 {
  font-size: 34px;
  color: var(--wef-primary);
  font-weight: 500;
}

.wef-complete p {
  color: rgba(0, 71, 81, .75);
  font-size: 17px;
}

@media (max-width: 900px) {
  .wef-question-shell {
    margin-top: 160px;
  }
}

@media (max-width: 640px) {
  .wef-screen {
    padding: 28px 18px 86px;
  }
  .wef-logo-row {
    height: 42px;
  }
  .wef-logo-row img {
    max-width: 118px;
    max-height: 38px;
  }
  .wef-question-shell {
    width: 100%;
    margin-top: 92px;
  }
  .wef-title {
    font-size: 23px;
  }
  .wef-option {
    min-height: 45px;
    font-size: 16px;
    padding: 8px 12px;
  }
  .wef-key {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .wef-input {
    font-size: 24px;
  }
  .wef-nav {
    right: 12px;
    bottom: 12px;
  }
}
