/*!*******************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./public/css/src/main.scss ***!
  \*******************************************************************************************************************/
/** 
 *  File: styles.scss
 *  Main SASS file that pulls in partials and compiles to a single CSS file
**/
.container {
  width: 100%;
  padding: 0 20px;
  max-width: 1750px;
}
@media (min-width: 1384px) {
  .container {
    padding: 0 64px;
  }
}
@media (min-width: 1750px) {
  .container {
    padding: 0;
    margin: 0 auto;
  }
}

.thin-container {
  padding: 0 40px;
  max-width: 1112px;
}
@media (min-width: 1112px) {
  .thin-container {
    padding: 0;
    margin: 0 auto;
  }
}

/* ========================================================================== */
/* REACT SCSS                                                                 */
/* ========================================================================== */
.quiz-container .quiz-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #dcf0c3;
}
.quiz-container .quiz-app .quiz-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 24px;
  border-bottom: 1px solid #ccc;
  background: #ffffff;
}
.quiz-container .quiz-app .quiz-header .section-header h1,
.quiz-container .quiz-app .quiz-header .section-header p {
  margin: 0;
}
.quiz-container .quiz-app .quiz-main-wrapper {
  padding: 28px 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media (min-width: 1100px) {
  .quiz-container .quiz-app .quiz-main-wrapper {
    padding: 64px 0;
  }
}
.quiz-container .quiz-app .quiz-main-section {
  width: 100%;
  max-width: 784px;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  flex-grow: 1;
  border-radius: 18px;
  border: 1px solid var(--Dark-Grey, #ccc);
  background: #fff;
  box-shadow: 0px 4px 7.6px 0px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1100px) {
  .quiz-container .quiz-app .quiz-main-section {
    padding: 64px;
  }
}
.quiz-container .quiz-app .quiz-main-section h2 {
  margin: 0;
}
.quiz-container .quiz-app .quiz-main-section .section-intro-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quiz-container .quiz-app .quiz-main-section .section-intro-content:first-child {
  margin-top: 0;
}
.quiz-container .quiz-app .quiz-main-section .section-intro-content:last-child {
  margin-bottom: 0;
}
.quiz-container .quiz-app .quiz-main-section .input-instructions a {
  color: #000000;
  text-decoration: underline;
}
.quiz-container .quiz-app .quiz-main-section .input-instructions a:hover {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
}
.quiz-container .quiz-app .quiz-main-section button {
  width: 100%;
}
.quiz-container .quiz-app .quiz-main-section .pagination button {
  width: fit-content;
}

.quiz-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  max-width: 1024px;
}
.quiz-progress .stage-marker {
  position: relative;
  width: 100%;
}
.quiz-progress .stage-marker .marker {
  display: flex;
  position: relative;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 16px;
  border: 2px solid #f7f7f7;
  background: #ffffff;
  z-index: 20;
  font-weight: 700;
}
.quiz-progress .stage-marker.active .marker {
  background: #dcf0c3;
  border-color: #dcf0c3;
  color: #000000;
}
.quiz-progress .stage-marker.active .quiz-progress-line {
  border-top: 3px solid #dcf0c3;
}
.quiz-progress .stage-marker.current .marker {
  background: linear-gradient(90deg, #dcf0c3 0%, #dcf0c3 50%, #ffffff 51%, #ffffff);
  border-color: #dcf0c3;
}
.quiz-progress .stage-marker .quiz-progress-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 3px solid #f7f7f7;
  z-index: 0;
  transform: translateY(-50%);
}
.quiz-progress .stage-marker:last-child {
  width: fit-content;
}
.quiz-progress .stage-marker:last-child .quiz-progress-line {
  display: none;
}

.pagination {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding-top: 10px;
}
@media (min-width: 500px) {
  .pagination {
    flex-direction: row;
  }
}
.pagination .previous-btn {
  flex-direction: row-reverse;
  padding: 8px 24px 8px 12px;
}
.pagination .previous-btn::after {
  transform: rotate(180deg);
}
.pagination .next-btn,
.pagination .submit-btn {
  margin-left: auto;
}
.pagination .theme-btn {
  width: 100%;
}
@media (min-width: 500px) {
  .pagination .theme-btn {
    width: fit-content;
  }
}
.pagination .theme-btn:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}
.pagination .theme-btn:disabled, .pagination .theme-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
.pagination .theme-btn:disabled:hover, .pagination .theme-btn.disabled:hover {
  background: #000000;
  color: #ffffff;
  box-shadow: none;
}

.sections {
  width: 100%;
  height: 100%;
  flex-grow: 1;
  display: flex;
}

.section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  text-align: center;
}
.section h3,
.section h4,
.section p {
  margin: 0;
}
.section .section-questions {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.section .section-questions .question {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-instructions {
  padding-top: 8px;
}

.quiz-selection {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (min-width: 1100px) {
  .quiz-selection {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.quiz-selection button {
  width: auto;
  text-align: center;
  color: #000000;
  display: flex;
  padding: 16px 12px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.4);
  background: #ffffff;
  line-height: 100%;
  font-weight: 700;
}
.quiz-selection button:hover {
  cursor: pointer;
  background: #f7f7f7;
  color: #000000;
}
.quiz-selection button.active {
  background: #dcf0c3;
  color: #000000;
}

.radio-selection-input {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1100px) {
  .radio-selection-input {
    grid-template-columns: 1fr 1fr;
  }
}
.radio-selection-input button {
  padding: 36px 24px;
}

.text-input {
  padding-top: 8px;
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.text-input input {
  width: 100%;
  text-align: left;
  color: #000000;
  display: flex;
  padding: 10px 30px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.4);
  background: #ffffff;
}
.text-input input::placeholder {
  color: #000000;
  opacity: 0.5;
}
.text-input input:focus, .text-input input:focus-visible {
  border-color: #000000;
  outline-color: #000000;
}

.textarea-input {
  padding-top: 8px;
  width: 100%;
  display: flex !important;
  flex-direction: column;
  gap: 32px;
}
.textarea-input textarea {
  width: 100%;
  text-align: left;
  color: #000000;
  display: flex;
  padding: 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.4);
  background: #ffffff;
}
.textarea-input textarea::placeholder {
  color: #000000;
  opacity: 0.5;
}
.textarea-input textarea:focus, .textarea-input textarea:focus-visible {
  border-color: #000000;
  outline-color: #000000;
}

.number-input {
  padding-top: 8px;
}
.number-input input {
  width: 100%;
  text-align: left;
  color: #000000;
  display: flex;
  padding: 10px 30px;
  align-items: center;
  padding: 8px;
  align-self: stretch;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.4);
  background: #ffffff;
  max-width: 80px;
}
.number-input input:focus, .number-input input:focus-visible {
  border-color: #000000;
  outline-color: #000000;
}

.dropdown-selection {
  padding-top: 8px;
}
.dropdown-selection .select {
  position: relative;
  width: 100%;
}
.dropdown-selection .select .select-header {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ccc;
  border: 2px solid rgba(0, 0, 0, 0.4);
  background: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 30px;
}
.dropdown-selection .select .select-header i {
  transition: all 0.3s;
}
.dropdown-selection .select .select-header:hover {
  cursor: pointer;
  background: #f7f7f7;
}
.dropdown-selection .select .select-options {
  background-color: #ffffff;
  border: 1px solid #ccc;
  border: 2px solid rgba(0, 0, 0, 0.4);
  border-radius: 0px 0px 10px 10px;
  position: absolute;
  z-index: 20;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 20px 20px;
  max-height: 250px;
  overflow: scroll;
  transition: all 0.3s;
}
.dropdown-selection .select .select-options option {
  width: 100%;
  text-align: center;
  padding: 8px 0;
  border-radius: 4px;
  text-wrap: wrap;
  flex-shrink: 0;
}
.dropdown-selection .select .select-options option:hover {
  cursor: pointer;
  background: #ccc;
}
.dropdown-selection .select.open .select-header {
  border-bottom: 1px solid #ccc;
  border-radius: 10px 10px 0 0;
}
.dropdown-selection .select.open .select-header i {
  transform: rotate(180deg);
}
.dropdown-selection .select.open .select-header:hover {
  cursor: pointer;
  background: #ffffff;
}

.service-match-header .match-header-container {
  background: #ffffdd;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 32px 0;
  border-radius: 32px;
  padding: 32px 64px;
  gap: 32px;
}
@media (min-width: 900px) {
  .service-match-header .match-header-container {
    flex-direction: row;
    justify-content: space-between;
    margin: 64px 0;
    padding: 64px 112px;
    gap: 64px;
  }
}
.service-match-header .match-header-container .match-header-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
@media (min-width: 900px) {
  .service-match-header .match-header-container .match-header-content {
    text-align: left;
  }
}
.service-match-header .match-header-container .match-header-content h1,
.service-match-header .match-header-container .match-header-content h3,
.service-match-header .match-header-container .match-header-content p {
  margin: 0;
}
.service-match-header .match-header-container .match-header-content .match-header-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-match-header .match-header-container .match-header-image {
  width: 100%;
  max-width: 450px;
}
.service-match-header.completed .match-header-container {
  background: #dcf0c3;
}
@media (min-width: 900px) {
  .service-match-header.completed .match-header-container {
    flex-direction: row-reverse;
  }
}
.service-match-header.completed .match-header-container .match-header-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.service-match-header.completed .match-header-container .match-header-content h2 {
  margin: 0;
}
.service-match-header.completed .match-header-container .match-header-image {
  width: 100%;
}

.service-match-block .service-match-checklist {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
  background: #f7f7f7;
}
@media (min-width: 900px) {
  .service-match-block .service-match-checklist {
    flex-direction: row;
    justify-content: space-between;
    padding: 64px 0;
    gap: 64px;
  }
}
.service-match-block .service-match-checklist .service-match-checklist-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
@media (min-width: 900px) {
  .service-match-block .service-match-checklist .service-match-checklist-container {
    gap: 64px;
  }
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-header p,
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-header h2 {
  margin: 0;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-header .tagline {
  font-weight: 700;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content {
  gap: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 4px solid transparent;
  background: #ffffff;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-header {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 30px 32px;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-header .checklist-item-icon {
  display: flex;
  width: 34px;
  height: 34px;
  padding: 5px;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
  border: 1px solid #000000;
  background: #ffffff;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-header h3 {
  margin: 0;
  line-height: 120%;
  width: 100%;
  opacity: 0.25;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-header svg {
  transition: transform 0.3s;
  opacity: 0.25;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content {
  display: flex;
  flex-direction: column;
  padding: 30px 32px;
  padding-top: 0;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content > *:first-child {
  margin-top: 0;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content > *:last-child {
  margin-bottom: 0;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content .checklist-questions .checklist-question {
  padding-top: 16px;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content .checklist-questions .checklist-question > p {
  font-weight: 700;
}
@media (min-width: 900px) {
  .service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content .checklist-questions .checklist-question {
    padding-top: 32px;
  }
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content .checklist-questions .checklist-question:first-child {
  padding-top: 0;
}
@media (min-width: 900px) {
  .service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content .checklist-questions .checklist-question:first-child {
    padding-top: 0;
  }
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content .checklist-questions .checklist-question .quiz-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content .checklist-questions .checklist-question .quiz-selection button {
  width: auto;
  padding: 16px 32px;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .checklist-item-content .theme-btn {
  width: fit-content;
  margin-top: 34px;
  padding: 16px 32px;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item .theme-btn {
  width: 100%;
  padding: 16px 24px;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item.active {
  border-color: #dcf0c3;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item.active .checklist-item-header h3,
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item.active .checklist-item-header svg {
  opacity: 1;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item.active .checklist-item-header > svg {
  transform: rotate(180deg);
  opacity: 0.25;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item.complete .checklist-item-header h3,
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item.complete .checklist-item-header svg {
  opacity: 1;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item.complete .checklist-item-header .checklist-item-icon {
  background: #dcf0c3;
}
.service-match-block .service-match-checklist .service-match-checklist-container .match-checklist-content .match-checklist-item.complete .checklist-item-header .checklist-item-icon svg {
  fill: #000000;
}
.service-match-block .service-match-checklist .service-match-checklist-container > .theme-btn {
  width: 100%;
  padding: 16px 24px;
}
