* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
}

.page {
  font-family: "Roboto", sans-serif;
  padding: 2em;
  max-width: 1200px;
  margin: 2em auto;
  width: 100%;
}
.page * {
  font-family: inherit;
}
.page p {
  margin: revert;
}

.page h2 {
  font-size: 25px;
  color: #2a5b98;
  text-align: center;
}

.questions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1em;
}
.questions > .title {
  align-content: center;
  font-weight: 600;
  color: #2a5b98;
  width: 5em;
  min-width: 5em;
}

.page .list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}
.page .list:has(.question:not(.hidden)) {
  margin-top: 2em;
}

.page .instruction-text {  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page .instruction-text p {
  margin-bottom: 2px;
  width: 800px;
}

.page .instruction-text p span {
  font-weight: 600;
}

.question {
  position: relative;
  width: 100%;
  max-width: 20em;
  min-width: 10em;
  min-height: 7em;
}

.question input {
  display: none;
}

.question label {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  cursor: pointer;
  background: #fff;
  box-shadow: 0px 5px 20px 2px rgba(0, 0, 0, 0.1);
  border: 2px solid #ddd;
  text-align: center;
  transition: all 200ms ease-in-out;
  border-radius: 5px;
}

.question .title {
  font-size: 15px;
  color: #2a5b98;
  padding: 0.5em;
  transition: all 200ms ease-in-out;
  font-weight: 500;
  flex-grow: 1;
  align-content: center;
  user-select: none;
}

/*
.question label:after {
  content: "No";
  width: 100%;
  height: 18px;
  bottom: 0;
  left: 0;
  color: #888;
  text-align: center;
  line-height: 2em;
  font-size: 14px;
  font-weight: 600;
  height: 2em;
  transition: all 200ms ease-in-out;
  background-color: #ddd;
}
*/

/* 
.question input:checked + label:after {
  content: "Yes";
  color: white;
  background-color: #2a5b98;
}
*/

.question input:checked + label .title {
  font-weight: 500;
  color: white;
  background-color: #2a5b98;
}

.question input:checked + label {
  border: 2px solid #2a5b98;
}

.question.hidden {
  display: none;
}

.hidden {
  display: none;
}

.buttons {
  margin-top: 2em;
  display: flex;
  justify-content: space-around;
}


.buttons button {
  background-color: #2a5b98;
  color: white;
  padding: 0.5em 1em;
  border: 2px solid #19375c;
  border-radius: 5px;
}
.buttons button[disabled] {
  background-color: #ddd;
  border-color: #ccc;
}

#p-questions2 .questions {
  justify-content: flex-start;
}
#p-questions2 .questions .list {
  justify-content: flex-start;
}
#p-questions2 .questions .question {
  max-width: 15em;
}

/*# sourceMappingURL=newflow.css.map */
