.questionare-module {
    display: flex;
    justify-content: flex-start;
    position: relative;
    min-height: 100vh;
    padding-top: 100px;
}
.questionare-module .content-wrapper {
    align-content: center;
}
.questionare-module .content {
    width: 100%;
    max-width: 520px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 1;
    position: relative;
}

.intro-container {
  display: flex;
}

.question-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.question-container .question-image {
  height: 60px;
  width: 60px;
  object-fit: contain;
}
.intro img {
	margin: 0;
	aspect-ratio: 16/9;
	object-fit: cover;
	border-radius: 16px;
}

.question ul {
  margin-left: 0 !important;
  margin-bottom: 58px;
  padding-left: 0;
}

.question li {
  margin-bottom: 0;
  list-style: none;
}

.question li:last-child {
  margin-bottom: 0;
}

.question li:before {
  content: none;
}

.question-style--boxed ul {
	display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.question-style--boxed .answer {
  background-color: var(--Accent-Colour);
  border-color: var(--Accent-Colour);
  color: var(--Dark-Text);
	border-radius: 4px;
}


.question-style--boxed .answer.selected {
  background-color: var(--Light-Text);
  color: var(--Dark-Text);
}

.question-style--boxed .answer.selected .answer-radio {
  display: none;
}

.question-style--boxed .answer .answer-text {
	text-align: center;
	width: 100%;
}

.question-style--boxed .answer .answer-radio {
  display: none;
}

.answer {
  color: white;
	display: flex;
  gap: 12px;
	text-decoration: none;
	padding: 6px 12px;
  transition: all .25s ease-out;
}

.answer .answer-radio {
	width: 16px;
  min-width: 16px;
	height: 16px;
	display: block;
	border: 1px solid;
	border-radius: 100%;
  position: relative;
  top: 0.4em;
}

.answer.selected .answer-radio {
	border-width: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.answer.selected .answer-radio span {
	height: 8px;
  width: 8px;
  border-radius: 100%;
	background: black;
	display: block;
}
.progress-bar {
  border-radius: 4px;
  background: var(--Dark-Text);
  height: 12px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
.progress-bar__fill {
  background-color: var(--Accent-Colour);
  height: 100%;
  transition: all .25s ease-out;
  border-radius: 4px;
}
.slide-footer-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.prev-next-navigation {
  display: flex;
  gap: 80px;
}

.nav-arrow {
	display: flex;
	gap: 12px;
  align-items: center;
  /* padding: 16px 0; */
}
.next-arrow {
  margin-left: auto;
}
.nav-arrow:disabled {
	background: transparent;
	color: inherit;
	opacity: .4;
  cursor: not-allowed;
}

.submit,
.results {
	border-radius: 32px;
	padding: 40px;
}

.submit h2,
.results h2 {
  margin-top: 0;
  margin-bottom: 32px;
}

.leadform {
  padding-bottom: 20px;
}

.leadform .hs_submit input {
  background: var(--Accent-Colour);'
  color: var(--Dark-Text);
}

.results p:last-child {
  margin-bottom: 0;
}

.box-text {
	margin-bottom: 40px;
}

.restart-quiz {
	margin-top: 56px;
	display: flex;
	align-items: center;
	gap: 12px;
  cursor: pointer;
}

.result .text-container {
	flex-grow: 1;
}

@media screen and (min-width: 1151px) {
  .result {
      max-width: 70%;
      margin: 0 auto 60px;
  }
}
.result .flex {
  display: flex;
  align-items: center;
}
.result .flex .result-image {
    width: auto;
    margin-right: 2em;
    max-height: 200px;
}
@media screen and (max-width: 767px) {
  .result .flex {
    flex-flow: column;
    gap: 40px;
    align-items: flex-start;
  }
}
