.pt-quiz {
  border: 1px solid #e5e5e5;
  padding: 16px;
  border-radius: 12px;
}

.pt-quiz__title {
  margin: 0 0 10px 0;
}

.pt-quiz__desc {
  margin: 0 0 12px 0;
}

.pt-quiz__q {
  margin: 16px 0;
  padding: 12px;
  border: 1px solid #f0f0f0;
  border-radius: 10px;
}

.pt-quiz__opt {
  display: flex;
  gap: 8px;
  margin: 8px 0;
  cursor: pointer;
  align-items: flex-start;
}

.pt-quiz__opt input {
  margin-top: 3px;
}

.pt-quiz__btn--hidden {
  display: none !important;
}

/* Step UI */
.pt-quiz__nav {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.pt-quiz__progress {
  height: 10px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
}

.pt-quiz__progressbar {
  height: 10px;
  background: #111;
  width: 0%;
}

.pt-quiz__navbtns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pt-quiz__navbtns button {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.pt-quiz__navbtns button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Result */
.pt-quiz__result {
  margin-top: 16px;
  padding: 12px;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #eee;
}

.pt-quiz__resultTitle {
  margin: 0 0 10px 0;
}

.pt-quiz__bars {
  display: grid;
  gap: 10px;
  margin: 10px 0 14px 0;
}

.pt-quiz__barRow {
  display: grid;
  grid-template-columns: 18px 1fr 44px 12px 18px 44px;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

.pt-quiz__bar {
  height: 10px;
  background: #e9e9e9;
  border-radius: 999px;
  overflow: hidden;
}

.pt-quiz__bar > div {
  height: 10px;
  background: #111;
  width: 50%;
}

.pt-quiz__spacer {
  display: inline-block;
}

.pt-quiz__resultText {
  line-height: 1.9;
}
