@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('PlusJakartaSans-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  /* Assuming it's a variable font with weights from 100 to 900 */
}

body {
  font-family: 'Plus Jakarta Sans';
  background: var(--icon-color, #FFF);
  margin-bottom: 0;
}

.col-2 {
  display: flex;
  gap: 40px;
  flex-wrap: nowrap;
}

.col-2>div {
  width: 50%;
}

.begin .progress-container {
  display: none;
}

.begin .main-contents {
  margin-top: 96px;
}

.journal-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100vh - 77px);
}

.modal-active:before {
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  background: rgba(15, 23, 42, 0.70);
  left: 0;
  z-index: 1;
}

body.modal-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

h2 {
  color: var(--Neutral-Gray-700, #2F2B4A);
  text-align: center;
  font-size: 33.2px;
  font-weight: 600;
  line-height: 40px;
  /* 120.482% */
  margin-top: 0;192
  margin-bottom: 0;
}

.logo-container {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.progress-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  width: 374px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  height: 86px;
  justify-content: flex-end;
}

.progress-icon {
  left: 0%;
  position: absolute;
  top: 0px;
  transition: 2s;
}

.two .progress-icon {
  left: 20%;
}

.three .progress-icon {
  left: 45%;
}

.four .progress-icon {
  left: 70%;
}

.five .progress-icon {
  left: 95%;
}

.progress-value {
  color: #334155;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
}

.progress-bar {
  border-radius: 100px;
  background: var(--Neutral-Gray-200, #E2E8F0);
  height: 5px;
  width: 374px;
}

.bar-width {
  content: '';
  display: block;
  height: 5px;
  width: 5%;
  border-radius: 100px;
  background: var(--Neutral-Gray-700, #334155);
  transition: 2s;
}


.main-contents {
  margin-top: 20px;
  margin-bottom: 112px;
  max-width: 677px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

.stage,
.loading {
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  /* Start with the stage being invisible */
  transform: scale(0.95);
  /* Start slightly scaled down */
  transition: opacity 0.5s ease, transform 0.5s ease, height 0s;
  /* Smooth transition for opacity and transform */
  visibility: hidden;
  /* Use visibility to hide the element without affecting the layout */
  order: 2;
  max-height: 0;
  overflow: hidden;
}

.stage.active {
  opacity: 1;
  /* Fully visible */
  transform: scale(1);
  /* Scale back to normal size */
  visibility: visible;
  /* Make the element visible */
  order: 1;
  max-height: 2000px;
  overflow: visible;
}

.loading.show {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  max-height: 20000px;
  order: 1;
  gap: 80px;
}

.loading {
  height: 100vh;
  position: fixed;
  left: 0;
  right: 0;
  justify-content: center;
  top: 0;
}

.loader-container {
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  gap: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.loader-container h2 {
  color: #334155;
  font-size: 19px;
  font-weight: 500;
  line-height: 30px;
  /* 157.895% */
}

.pre-stage.stage.active {
  align-items: center;
  justify-content: center;
}

.pre-stage {
  color: var(--Neutral-Gray-700, #334155);
  text-align: center;
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.pre-stage p {
  margin-top: 16px;
  margin-bottom: 64px;
}

#userInfoForm,
.gender-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

#userInfoForm .button-container {
  margin-top: 24px;
}

.stage form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-entry {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-entry label {
  color: var(--Neutral-Gray-700, #2F2B4A);
  font-size: 23px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 0;
}

label {
  display: block;
  margin-bottom: 10px;
}

label.selected {
  animation: shrink-grow 0.4s ease-in-out;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: #7C8A9F;
}

.radio-container label,
.checkbox-container label {
  font-size: 19px;
  font-weight: 400;
  line-height: 25.1px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  padding: 4px;
  width: fit-content;
}

.radio-container,
.checkbox-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input[type='radio'] {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  outline: none;
  border: 2px solid #AAB3C0;
  margin: 0;
}

input[type='checkbox'] {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  outline: none;
  border: 2px solid #AAB3C0;
  margin: 3px;
  border-radius: 4px;
}

.radio-container label:hover input,
.checkbox-container label:hover input {
  border-color: #2F2B4A;
}

.radio-container label:hover input:checked,
.checkbox-container label:hover input:checked {
  border-color: #E13984;
}

input[type='radio']:before,
input[type='checkbox']:before {
  content: '';
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% auto;
  border-radius: 50%;
}

input[type="checkbox"]:checked:before {
  position: relative;
  content: '\2713';
  color: #fff;
  top: -8px;
  left: -4px;
  font-size: 13px;
}

input[type="radio"]:checked {
  border: 7px solid #D90765;
}

input[type="checkbox"]:checked {
  border: 9px solid #D90765;
}

input[type="text"],
input[type="email"],
textarea,
select {
  font-family: 'Plus Jakarta Sans';
  width: calc(100% - 48px);
  display: flex;
  padding-left: 24px;
  padding-right: 24px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 8px;
  border: 1.5px solid var(--Neutral-Gray-700, #AAB3C0);
  box-sizing: content-box;
  color: #ADABBD;
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  height: 30px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  height: 54px;
}

select.selected {
  color: #2F2B4A;
}

textarea {
  min-height: 104px;
  padding-top: 14px;
  padding-bottom: 14px;
  color: #2F2B4A;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  background-clip: text !important;
}

/* Focused state */
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  /* color: #ADABBD; */
  outline: none;
  border: 2px solid #2F2B4A;
}

/* Filled out state */
.selected-age,
.selected-gender,
input[type="text"]:not(:placeholder-shown),
input[type="email"]:not(:placeholder-shown),
input[type="text"]:-webkit-autofill,
input[type="email"]:-webkit-autofill {
  color: #2F2B4A;
}

/* Hide the default arrow */
select {
  color: #7C8A9F;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M16 10L12 14L8 10' stroke='%23334155' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0px center;
  background-size: 40px 30px;
  padding-right: 30px;
  border: 1.5px solid #AAB3C0;
}

select:focus {
  border: 2px solid #2F2B4A;
  outline: none;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 8px;
}

button {
  cursor: pointer;
  display: flex;
  width: fit-content;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #fff;
  border: 0;
  color: #2F2B4A;
  font-size: 20px;
  font-weight: 600;
  transition: 0.2s;
}

.back-button {
  border-radius: 8px;
  border: 1.5px solid #2F2B4A;
}

button:not(.refresh-question):not(.btn):not(:disabled):hover {
  background-color: #AE0651;
}


.checkout {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: #D90765;
  color: var(--icon-color, #FFF);
  font-weight: 600;
  transition: 0.2s;
}

.checkout svg path {
  transition: 0.2s;
}

.checkout:disabled,
.checkout:disabled:hover {
  background-color: #dbe5f0;
  color: #CBD5E1;
  cursor: none;
}

.checkout:disabled svg path {
  stroke: #CBD5E1;
}

.btn {
  transition: 0.15s;
  animation-timing-function: ease-in-out;
  animation-duration: 150ms;
}

.btn:active {
  animation: shrink-grow 0.4s ease-in-out;
}

.btn-primary {
  color: var(--icon-color, #FFF);
  background: #D90765;
  display: flex;
  gap: 12px;
}

.btn-primary:hover {
  background: #F70D76;
}

.btn-secondary {
  color: #fff;
  background-color: #2F2B4A;
}

.btn-secondary:hover {
  background-color: #474266;
}

.btn-ghost {
  border: 1.5px solid #2F2B4A;
  background-color: #fff;
}

.btn-ghost:hover {
  background-color: #F1F5F9;
}

.btn:disabled {
  background: #EAF0F6;
  color: #CBD5E1;
}

#questions-container {
  gap: 40px;
  display: flex;
  flex-direction: column;
}

.question-container label {
  color: var(--Neutral-Gray-700, #2F2B4A);
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 8px;
}

.refresh-question {
  background: unset;
  color: #2F2B4A;
  padding: 0;
  border-radius: 0;
  margin-bottom: 16px;
  line-height: 30px;
  width: fit-content;
  height: 30px;
  transition: 0.4s;
}

.refresh-question:hover {
  /* color: #475569; */
}

.refresh-question span {
  display: flex;
}

.refresh-question svg {
  background-color: #625A9B;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  border: 4px solid #625A9B;
  transition: 0.4s;
}

.refresh-question:hover svg {
  /* background-color: #475569;
  border-color: #475569; */
}

/* Emotions Selection */
.emotions-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  margin-bottom: 64px;
}

.emotions-container .emotion {
  padding: 8px 32px;
  border-radius: 100px;
  border: 1.5px solid #D1CFE3;
  background: var(--icon-color, #FFF);
  text-transform: capitalize;
  color: var(--Neutral-Gray-700, #334155);
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  cursor: pointer;
  transition: 0.2s;
}

.emotions-container .emotion:hover {
  border-color: #E86AA3;
  color: #334155;
}

.emotions-container .emotion.selected {
  border-radius: 100px;
  border: 1.5px solid #D90765;
  background: #FDF2F7;
  color: #2F2B4A;
  animation: shrink-grow 0.4s ease-in-out;
}

/* End Emotions Selection */

/*
.loader {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #D90765;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
*/

/* Start Loader */
@keyframes spinning {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh; /* Full viewport height */
  width: 100vw;
}

.loader svg {

}


.pencil {
	display: block;
	width: 10em;
	height: 10em;
}
.pencil__body1,
.pencil__body2,
.pencil__body3,
.pencil__eraser,
.pencil__eraser-skew,
.pencil__point,
.pencil__rotate,
.pencil__stroke {
	animation-duration: 3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.pencil__body1,
.pencil__body2,
.pencil__body3 {
	transform: rotate(-90deg);
}
.pencil__body1 {
	animation-name: pencilBody1;
}
.pencil__body2 {
	animation-name: pencilBody2;
}
.pencil__body3 {
	animation-name: pencilBody3;
}
.pencil__eraser {
	animation-name: pencilEraser;
	transform: rotate(-90deg) translate(49px,0);
}
.pencil__eraser-skew {
	animation-name: pencilEraserSkew;
	animation-timing-function: ease-in-out;
}
.pencil__point {
	animation-name: pencilPoint;
	transform: rotate(-90deg) translate(49px,-30px);
}
.pencil__rotate {
	animation-name: pencilRotate;
}
.pencil__stroke {
	animation-name: pencilStroke;
	transform: translate(100px,100px) rotate(-113deg);
}

/* Animations */
@keyframes pencilBody1 {
	from,
	to {
		stroke-dashoffset: 351.86;
		transform: rotate(-90deg);
	}
	50% {
		stroke-dashoffset: 150.8; /* 3/8 of diameter */
		transform: rotate(-225deg);
	}
}
@keyframes pencilBody2 {
	from,
	to {
		stroke-dashoffset: 406.84;
		transform: rotate(-90deg);
	}
	50% {
		stroke-dashoffset: 174.36;
		transform: rotate(-225deg);
	}
}
@keyframes pencilBody3 {
	from,
	to {
		stroke-dashoffset: 296.88;
		transform: rotate(-90deg);
	}
	50% {
		stroke-dashoffset: 127.23;
		transform: rotate(-225deg);
	}
}
@keyframes pencilEraser {
	from,
	to {
		transform: rotate(-45deg) translate(49px,0);
	}
	50% {
		transform: rotate(0deg) translate(49px,0);
	}
}
@keyframes pencilEraserSkew {
	from,
	32.5%,
	67.5%,
	to {
		transform: skewX(0);
	}
	35%,
	65% {
		transform: skewX(-4deg);
	}
	37.5%, 
	62.5% {
		transform: skewX(8deg);
	}
	40%,
	45%,
	50%,
	55%,
	60% {
		transform: skewX(-15deg);
	}
	42.5%,
	47.5%,
	52.5%,
	57.5% {
		transform: skewX(15deg);
	}
}
@keyframes pencilPoint {
	from,
	to {
		transform: rotate(-90deg) translate(49px,-30px);
	}
	50% {
		transform: rotate(-225deg) translate(49px,-30px);
	}
}
@keyframes pencilRotate {
	from {
		transform: translate(100px,100px) rotate(0);
	}
	to {
		transform: translate(100px,100px) rotate(720deg);
	}
}
@keyframes pencilStroke {
	from {
		stroke-dashoffset: 439.82;
		transform: translate(100px,100px) rotate(-113deg);
	}
	50% {
		stroke-dashoffset: 164.93;
		transform: translate(100px,100px) rotate(-113deg);
	}
	75%,
	to {
		stroke-dashoffset: 439.82;
		transform: translate(100px,100px) rotate(112deg);
	}
}

@keyframes shrink-grow {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.97);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes round {
  0% {
    transform: rotate(0deg)
  }

  100% {
    transform: rotate(360deg)
  }
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.spin {
  animation: spin 0.5s linear, shrink-grow 0.3s ease-in-out;
}

/* End Loader */

.hidden {
  display: none;
}

#congratulations {
  color: var(--Neutral-Gray-700, #2F2B4A);
  font-size: 33.2px;
  font-weight: 600;
  line-height: 40px;
}

#promptsContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 24px;
}

#questionsForm {
  gap: 64px;
  display: flex;
  flex-direction: column;
}

.prompts {
  width: 45%;
  border: 2px solid #0084FF;
  border-radius: 5px;
  padding: 10px;
  overflow-y: auto;
  height: 200px;
}

.prompts.selected {
  border-color: green;
}

.question {
  font-weight: bold;
  margin-bottom: 10px;
}

.prompt-column {
  cursor: pointer;
  border-radius: 20px;
  border: 1.5px solid #D1CFE3;
  background: var(--icon-color, #FFF);
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: 0.2s;
  position: relative;
}

.prompt-column:hover {
  border-color: #E86AA3;
}

.prompt-column.selected:not(.show) {
  border: 1.5px solid #D90765;
  background: #FDF2F7;
  animation: shrink-grow 0.4s ease-in-out;
}

.prompt-column:not(.show) ul li:not(:first-child):not(:nth-child(2)) {
  display: none;
}

.prompt-column.selected {
  border: 1.5px solid #2F2B4A;
}

.prompt-column h3 {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--Neutral-Gray-700, #2F2B4A);
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}

.prompt-column.selected:not(.show) h3 {
  /* color: #AE0651; */
}

.prompt-column ul {
  margin-left: 0;
  padding-left: 25px;
  color: #2F2B4A;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.prompt-column.selected:not(.show) ul {
  /* color: #D90765; */
}

.modal-active>.prompt-column {
  position: fixed;
  max-width: 524px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.prompt-column.show .show-more {
  display: none;
}

.show-more {
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  text-decoration-line: underline;
  cursor: pointer;
  width: fit-content;
  display: flex;
}

.show-more:after {
  content: '';
  height: 24px;
  width: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' viewBox='0 0 25 25' fill='none'%3E%3Cpath d='M10.5 8.5L14.5 12.5L10.5 16.5' stroke='%232F2B4A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.show-more:hover {
  text-decoration: none;
}

.show-less {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  right: 12px;
  align-items: center;
  justify-content: center;
  background: rgba(51, 65, 85, 0.05);
  cursor: pointer;
}

.prompt-column.selected.show {
  z-index: 1;
  position: fixed;
  max-width: 677px;
  width: 100%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  padding: 64px;
}

.prompt-column.selected.show ul {
  margin-top: 24px;
  margin-bottom: 0;
}

.prompt-column.selected.show ul li:not(:last-child) {
  margin-bottom: 10px;
}

.prompt-column.show .show-less {
  display: flex;
}

.check-mark {
  border-radius: 75px;
  border: 4px solid #fff;
  background: #CBD5E1;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  transition: 0.2s;
}

.prompt-column.selected .check-mark {
  border: 4px solid #F09CC1;
  background: #AE0651;
}

.prompt-column.show .check-mark {
  display: none;
}

body:not(.begin) .privacy-policy-container {
  display: none;
}

.privacy-policy-container {
  font-size: 14px;
  font-style: normal;
  line-height: 25px;
}

.privacy-policy-container a {
  font-weight: 600;
}

.privacy-policy-container a:hover {
  text-decoration: none;
}

footer {
  /* position: fixed; */
  bottom: 0;
  width: 100%;
  left: 0;
  text-align: center;
  color: var(--Neutral-Gray-500, #64748B);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

footer a {
  color: #2F2B4A;
}

.modal-active footer {
  z-index: -1;
}


@media (max-width: 991px) {
  body {
    margin-bottom: 0;
  }

  .main-contents {
    margin-top: 37px;
    margin-bottom: 80px;
  }

  .prompt-column.selected.show {
    padding: 48px;
    max-width: calc(100vw - 176px);
  }

  .radio-container,
  .checkbox-container {
    gap: 4px;
  }

  .radio-container label,
  .checkbox-container label {
    width: calc(100vw - 118px);
  }

  .privacy-policy-container {
    max-width: 495px;
    margin-left: auto;
    margin-right: auto;
  }

  input[type='radio'] {
    width: 40px;
    height: 40px;
  }

  input[type="radio"]:checked {
    border: 12px solid #D90765;
  }

  input[type="checkbox"] {
    height: 30px;
    width: 30px;
  }

  input[type="checkbox"]:checked {
    border: 15px solid #D90765;
  }

  input[type="checkbox"]:checked:before {
    top: -13px;
    left: -7px;
    font-size: 22px;
  }

  .radio-container label.selected,
  .checkbox-container label.selected {
    background-color: #FDF2F7;
    border-color: #E86AA3;
  }

  .radio-container label,
  .checkbox-container label {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #fff;
  }
  .radio-container label:hover input,
  .checkbox-container label:hover input {
    border-color: #AAB3C0;
  }
  .prompt-column:hover {
      border-color: #D1CFE3;
  }
  .selected {
    animation: shrink-grow 0.3s ease-in-out;
  }

  footer {
    position: relative;
  }

}

@media (max-width: 767px) {
  body {
    margin-left: 24px;
    margin-right: 24px;
  }

  .col-2 {
    flex-wrap: wrap;
    gap: 24px;
  }

  .col-2>div {
    width: 100%;
  }

  .begin .logo-container svg {
    width: 74px;
    height: 104.273px;
    margin-top: 84px;
  }

  .logo-container svg {
    transition: 0.3s;
  }

  .logo-container {
    margin-top: 8px;
    margin-bottom: 8px;
    transition: 0.4s;
  }

  .begin .main-contents {
    margin-top: 32px;
  }

  .main-contents {
    margin-top: 16px;
    margin-bottom: 64px;
  }

  .journal-container {
    height: calc(100vh - 210px);
  }

  .modal-active>.prompt-column {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
    max-width: calc(100% - 80px);
    padding: 32px 20px;
  }

  .progress-container {
    max-width: 330px;
    margin-bottom: 32px;
  }

  .progress-bar {
    max-width: 100%;
  }

  .pre-stage {
    color: var(--Neutral-Gray-500, #59556E);
    font-size: 17px;
    line-height: 30px;
  }

  .pre-stage h2 {
    text-align: center;
  }

  .stage:not(.pre-stage) {
    text-align: left;
  }

  .stage .pre-stage.stage.active {
    align-items: flex-start;
    justify-content: flex-start;
  }
  .prompt-column.selected:not(.show) .show-more {
    background-color: #fff;
  }
  #journalPromptsStage {
    gap: 32px;
  }

  input[type="text"],
  input[type="email"],
  textarea,
  select {
    padding: 12px 18px;
  }

  .btn-primary {
    width: 100%;
  }

  .button-container {
    /* margin-top: 40px; */
    flex-direction: column-reverse;
    width: 100%;
  }

  .button-container button {
    width: 100%;
  }

  h2 {
    font-size: 27.6px;
    line-height: 30px;
    text-align: left;
  }

  .pre-stage p {
    margin-bottom: 48px;
  }

  #userInfoForm,
  .gender-container {
    gap: 24px;
    width: 100%;
  }

  #userInfoForm .button-container {
    margin-top: 24px;
  }

  input[type="text"],
  input[type="email"],
  select {
    font-size: 16px;
  }

  .stage.loading.show {
    align-items: center;
  }

  .form-entry {
    gap: 8px;
  }

  .form-entry label {
    font-size: 19.2px;
    width: calc(100vw - 74px);
  }

  .radio-container .form-entry label,
  .checkbox-container .form-entry label {
    font-size: 16px;
    line-height: 22.6px;
  }

  .show-more {
    width: 100%;
    background-color: #F1F5F9;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
  }

  #congratulations {
    color: var(--Neutral-Gray-700, #2F2B4A);
    font-size: 27.6px;
    font-weight: 600;
    line-height: 30px;
    /* 108.696% */
  }

  .emotions-container {
    justify-content: flex-start;
  }

  .emotions-container .emotion {
    padding: 6px 24px;
    font-size: 14px;
    line-height: 25px;
  }

  .question-container label {
    color: var(--Neutral-Gray-700, #334155);
    font-size: 19.2px;
    line-height: 30px;
    margin-bottom: 4px;
  }

  .refresh-question {
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
  }

  #questionsStage {
    gap: 32px;
  }

  #questionsForm {
    gap: 48px;
  }

  #questions-container {
    gap: 24px;
  }

  #promptsContainer {
    margin-bottom: 16px;
  }

  .prompt-column.show li:not(:last-child) {
    margin-bottom: 8px;
  }

  .refresh-question svg {
    height: 12px;
    width: 12px;
  }

  #stage4 h2 {
    text-align: left;
  }

  .emotions-container {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 32px;
    margin-bottom: 48px;
  }

  .prompt-column {
    padding: 24px;
  }

  .prompt-column h3 {
    font-size: 19.2px;
    font-weight: 600;
    line-height: 30px;
    /* 108.696% */
  }

  .prompt-column.selected.show ul {
    margin-top: 16px;
  }

  .prompt-column.show .show-less {
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }

  .prompt-column.selected.show {
    padding-left: 24px;
    padding-right: 24px;
    max-width: calc(100vw - 80px);
  }
}

/* Animations  */