.assessment-widget {
  max-width: 1140px;
  margin: 0 auto;
  color: #fff;
}

.assessment-progress-title {
  color: #fff;
  text-align: center;
  background: #6726a1;
  padding: 10px;
  margin: 0 0 6px;
  font-family: "Proxima Nova", Sans-serif;
}

.assessment-progress {
  width: 100%;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
  overflow: hidden;
}

.assessment-progress-bar {
  height: 100%;
  width: 0;
  color: #000;
  background: #6726a1;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  transition: width 180ms ease;
}

.assessment-step {
  display: none;
}

.assessment-step.is-active {
  display: block;
}

.assessment-kicker {
  display: block;
  margin-bottom: 20px;
  font-family: var(--e-global-typography-secondary-font-family), Georgia, serif;
  font-style: italic;
  font-size: 24px;
  color: rgba(255, 255, 255, 0.88);
}

.assessment-question {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.assessment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.assessment-option {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  background: #fff;
  color: #3e1761;
  cursor: pointer;
}

.assessment-option input {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.assessment-option span {
  width: 100%;
  padding: 10px 20px 10px 40px;
  font-weight: 600;
}

.assessment-option:hover span,
.assessment-option input:checked + span {
  background: #6726a1;
  color: #fff;
}

.assessment-actions {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  margin-top: 24px;
}

.assessment-button {
  width: calc(50% - 2px);
  min-height: 42px;
  border: 0;
  border-radius: 0;
  padding: 10px 18px;
  background: #77cec6;
  color: #fff;
  font-family: "Proxima Nova", Sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.assessment-button.secondary {
  background: #6726a1;
}

.assessment-button:hover {
  background: #6726a1;
}

.assessment-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
  color: #fff;
  font-family: "Proxima Nova", Sans-serif;
  font-weight: 700;
}

.assessment-field input,
.assessment-field select {
  min-height: 42px;
  border: 0;
  border-radius: 0;
  padding: 10px;
  color: #3e1761;
}

.assessment-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0 6px;
  color: #fff;
}

.assessment-consent a {
  color: #fff;
  text-decoration: underline;
}

.assessment-error {
  min-height: 24px;
  margin-top: 10px;
  color: #fff;
  font-weight: 700;
}

.assessment-result {
  display: none;
  margin-top: 28px;
  padding: 20px;
  background: #fff;
  color: #3e1761;
  border-left: 5px solid #3e1761;
}

.assessment-result.is-visible {
  display: block;
}

.assessment-result h3 {
  margin: 0 0 10px;
  color: #3e1761;
  font-family: var(--e-global-typography-secondary-font-family), Georgia, serif;
  font-style: italic;
  font-size: 24px;
}

.assessment-result p {
  margin: 0 0 12px;
  color: #3e1761;
  font-size: 16px;
}

@media (max-width: 767px) {
  .assessment-actions {
    flex-direction: column;
  }

  .assessment-button {
    width: 100%;
  }
}
