body {
  overflow: hidden;
}

.options-button {
  display: none;
}

body.c-local .options-button.cat-local {
  display: block;
}

body.c-local-advanced .options-button.cat-local-advanced {
  display: block;
}

body.c-metastic .options-button.cat-metastic {
  display: block;
}

body.c-resistant .options-button.cat-resistant {
  display: block;
}

p.conditional-text {
  display: none;
  color: green;
}

body.lgbtq-yes p.conditional-text.text-lgbtq {
  display: block;
}

body.health-yes p.conditional-text.text-health {
  display: block;
}

body.children-yes p.conditional-text.text-children {
  display: block;
}



body.working-yes p.conditional-text.text-working {
  display: block;
}

.fixed-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: auto;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  opacity: 0.8;
  pointer-events: none;
}
.fixed-elements button {
  pointer-events: auto;
}

.progress-bar {
  height: 10px;
  max-width: 1400px;
  margin: 50px auto;
  width: 100%;
  position: relative;
  background-color: #ffffff;
  border-top: 2px solid #310946;
  border-bottom: 2px solid #310946;
}
.progress-bar .progress-steps {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-25px);
  position: relative;
  z-index: 20;
}
.progress-bar .step {
  background: #310946;
  color: #beffe8;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  z-index: 10;
}

.progress-bar .progress-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  transform-origin: left;
  background-color: #310946;
  transition: 1s ease-in-out width;
}

.go-back {
  position: absolute;
  top: 0;
  left: 0;
}

section.question-wrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.question-text {
  margin-top: 0;
}

.doc-type {
  display: none;
}

body.t-awaiting .doc-type.awaiting {
  display: block;
}

body.t-receiving .doc-type.receiving {
  display: block;
}