@font-face {
  font-family: jostMedium;
  src: url("../assets/Jost-Medium.ttf");
}
@font-face {
  font-family: jostBold;
  src: url("../assets/Jost-Bold.ttf");
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  overflow: hidden;
  font-family: "jostMedium";
  background: radial-gradient(
      circle at center,
      rgba(255, 255, 255, 0) 12%,
      rgba(25, 178, 76, 0.4392156863)
    ),
    url(../assets/greenBackground.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 900px) {
  body {
    overflow: auto;
  }
}

.multiStepForm-Container {
  height: 100%;
  width: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease-in-out;
  z-index: 10;
}
@media (max-width: 900px) {
  .multiStepForm-Container {
    align-items: flex-start;
  }
}

.formOverlay {
  position: fixed;
  top: 0;
  left: 0;
}

.multiStepForm {
  margin: auto;
  border-radius: 8px;
  height: 93%;
  display: none;
  justify-content: space-between;
  -moz-column-gap: 4%;
  column-gap: 4%;
  align-items: stretch;
  flex-direction: column;
  width: 45%;
  row-gap: 20px;
}
.multiStepForm-top {
  height: 90%;
}
@media (max-width: 900px) {
  .multiStepForm {
    width: 90%;
    position: absolute;
    top: 26px;
    height: auto;
    left: 5vw;
    margin: 0 auto;
  }
}
@media (min-width: 1400px) {
  .multiStepForm {
    width: 40vw;
  }
}

.stepTab {
  width: 100%;
  height: 100%;
  display: none;
  align-items: stretch;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.question {
  font-weight: 700;
  margin: 0 auto;
  font-family: jostBold;
  color: rgb(25, 178, 76);
  font-size: 36px;
  letter-spacing: 1.5px;
  width: 100%;
  text-align: center;
}
.question .highlightedText {
  color: black;
}
@media (max-width: 900px) {
  .question {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .question {
    font-size: 44px;
  }
}

.chooseAll {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
}
@media (max-width: 900px) {
  .chooseAll {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .chooseAll {
    font-size: 28px;
  }
}

.stepTab-container {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 24px;
}
@media (max-width: 900px) {
  .stepTab-container {
    row-gap: 12px;
  }
}
@media (min-width: 1400px) {
  .stepTab-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
}
.stepTab-container-top {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 12px;
}

.step-first,
.step-second,
.step-fifth,
.step-third,
.step-fourth {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 16px;
}
@media (min-width: 1400px) {
  .step-first,
  .step-second,
  .step-fifth,
  .step-third,
  .step-fourth {
    row-gap: 36px;
  }
}
.step-first .upperDiv,
.step-second .upperDiv,
.step-fifth .upperDiv,
.step-third .upperDiv,
.step-fourth .upperDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
  -moz-column-gap: 3%;
  column-gap: 3%;
  row-gap: 20px;
}
@media (max-width: 900px) {
  .step-first .upperDiv,
  .step-second .upperDiv,
  .step-fifth .upperDiv,
  .step-third .upperDiv,
  .step-fourth .upperDiv {
    -moz-column-gap: 4%;
    column-gap: 4%;
  }
  .step-first .upperDiv,
.step-second .upperDiv,
.step-fifth .upperDiv,
.step-third .upperDiv,
.step-fourth .upperDiv {
  flex-wrap: wrap;
}
}
.step-first .lowerDiv,
.step-second .lowerDiv,
.step-fifth .lowerDiv,
.step-third .lowerDiv,
.step-fourth .lowerDiv {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  -moz-column-gap: 30px;
  column-gap: 30px;
}

.step-first-content,
.step-second-content,
.step-third-content,
.step-fourth-content,
.step-fifth-content {
  text-align: center;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 31%;
}
@media (max-width: 900px) {
  .step-first-content,
  .step-second-content,
  .step-third-content,
  .step-fourth-content,
  .step-fifth-content {
    width: 45%;
  }
}
@media (min-width: 1400px) {
  .step-first-content,
  .step-second-content,
  .step-third-content,
  .step-fourth-content,
  .step-fifth-content {
    height: 240px;
  }
}

.step-first-content-title,
.step-second-content-title,
.step-third-content-title,
.step-fourth-content-title,
.step-fifth-content-title {
  font-weight: 500;
  font-size: 20px;
  color: black;
}
@media (max-width: 900px) {
  .step-first-content-title,
  .step-second-content-title,
  .step-third-content-title,
  .step-fourth-content-title,
  .step-fifth-content-title {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .step-first-content-title,
  .step-second-content-title,
  .step-third-content-title,
  .step-fourth-content-title,
  .step-fifth-content-title {
    font-size: 28px;
  }
}

.step-third-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 15px;
  width: 100%;
  height: 100%;
  color: #272626;
}

.step-third-text-top {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.step-third-text-bottom {
  font-size: 16px;
  height: 70%;
  text-align: center;
}

.step-fourth-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
  color: #272626;
}

.step-fourth-text-top {
  text-align: center;
  font-size: 16px;
}

.step-fourth-text-bottom {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  flex-direction: column;
}

.messaging-app {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid rgb(25, 178, 76);
  height: 100%;
  width: 100%;
  border-radius: 8px;
}

.messaging-app-name {
  font-weight: bold;
  font-size: 24px;
  color: #d7b5b5;
}

.customCheckbox {
  display: flex;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  position: relative;
  flex-direction: column;
  align-items: center;
  -moz-column-gap: 20px;
  column-gap: 20px;
  height: 120px;
  width: 120px;
}
@media (max-width: 900px) {
  .customCheckbox {
    font-size: 0.8rem;
  }
}
@media (min-width: 1400px) {
  .customCheckbox {
    height: 190px;
    width: 190px;
  }
}

.customCheckbox_input {
  display: none;
}

.customCheckbox_checkbox {
  height: 30px;
  width: 30px;
  border: 2px solid white;
  right: 7%;
  position: absolute;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 8%;
  z-index: 20;
  background-color: white;
  padding: 8px;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 900px) {
  .customCheckbox_checkbox {
    height: 26px;
    width: 26px;
  }
}

.image {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 50%;
}

.image img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
.customCheckbox_input:checked ~ .image img {
  border: 5px solid #47c170;
}

.customCheckbox_input:checked ~ .messaging-app {
  border: 5px solid #47c170;
}

.submitSection {
  width: 100%;
}

.submitSection-buttons {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.next {
  margin: 0 auto;
  font-weight: 600;
  background-color: #19b24c;
  margin-top: 8px;
  color: white;
  font-size: 18px;
  padding: 8px 36px;
  width: 40%;
  border: 5px solid #47c170;
  text-align: center;
  border-radius: 30px;
  box-shadow: inset 0px 0px 20px #000000;
  cursor: pointer;
  letter-spacing: 3px;
}
@media (min-width: 1400px) {
  .next {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .next {
    font-size: 20px;
    width: 50%;
  }
}
.next .arrowIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.next-button:hover {
  opacity: 0.8;
}

/* for loading modal section  */
.multiStepLoading-container {
  display: none;
  justify-content: center;
  align-items: flex-start;
  width: 45%;
}
@media (max-width: 900px) {
  .multiStepLoading-container {
    width: 100%;
  }
}

.multiStepLoading-modal {
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
@media (max-width: 900px) {
  .multiStepLoading-modal {
    width: 100%;
  }
}
.multiStepLoading-modal-content {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
}

.multiStepLoading-modal-content-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  flex-direction: column;
  row-gap: 16px;
  color: rgb(25, 178, 76);
  font-weight: 700;
}
@media (min-width: 1400px) {
  .multiStepLoading-modal-content-text {
    font-size: 30px;
  }
}

.multiStepLoading-modal-content-text-evaluating {
  font-weight: bold;
  color: rgb(25, 178, 76);
  font-size: 36px;
  letter-spacing: 1.5px;
  font-family: jostBold;
}
@media (max-width: 900px) {
  .multiStepLoading-modal-content-text-evaluating {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .multiStepLoading-modal-content-text-evaluating {
    font-size: 44px;
  }
}

.multiStepLoading-modal-content-text-result {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: black;
}
@media (min-width: 1400px) {
  .multiStepLoading-modal-content-text-result {
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .multiStepLoading-modal-content-text-result {
    font-size: 18px;
  }
}

.multiStepLoading-modal-content-loader {
  width: 100%;
  height: 24px;
  border-radius: 12px;
  background-color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
}

.multiStepLoading-modal-content-loader-text {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: black;
}
@media (max-width: 900px) {
  .multiStepLoading-modal-content-loader-text {
    font-size: 18px;
  }
}
@media (max-width: 900px) and (min-width: 1400px) {
  .multiStepLoading-modal-content-loader-text {
    font-size: 22px;
  }
}

.multiStepLoading-modal-content-loader-animating {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgb(25, 178, 76);
  height: 24px;
  border-radius: 12px;
  animation-name: loadingAnimation;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
  width: 0%;
  border-radius: 12px;
  box-shadow: 0px 25px rgba(0, 0, 0, 0.15);
}

.loadingNext {
  margin: 0 auto;
  font-weight: 600;
  background-color: #19b24c;
  margin-top: 8px;
  color: white;
  font-size: 18px;
  padding: 8px 36px;
  border: 5px solid #47c170;
  text-align: center;
  border-radius: 30px;
  letter-spacing: 3px;
  width: 40%;
  box-shadow: inset 0px 0px 20px #000000;
  cursor: pointer;
}
@media (min-width: 1400px) {
  .loadingNext {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .loadingNext {
    font-size: 20px;
  }
}

@keyframes loadingAnimation {
  0% {
    width: 0%;
  }
  10% {
    width: 15%;
  }
  20% {
    width: 15%;
  }
  35% {
    width: 35%;
  }
  45% {
    width: 35%;
  }
  50% {
    width: 55%;
  }
  60% {
    width: 55%;
  }
  70% {
    width: 75%;
  }
  80% {
    width: 75%;
  }
  95% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}
/* for final modal section */
.multiStepFinal-container {
  width: 45%;
  justify-content: center;
  display: none;
}
@media (max-width: 900px) {
  .multiStepFinal-container {
    width: 100%;
  }
}

.multiStepFinal-modal {
  width: 100%;
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
}
@media (max-width: 900px) {
  .multiStepFinal-modal {
    width: 90vw;
  }
}
.multiStepFinal-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 20px;
  height: 100%;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 900px) {
  .multiStepFinal-modal-content {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .multiStepFinal-modal-content {
    font-size: 26px;
    row-gap: 30px;
  }
}

.multiStepFinal-modal-content-luck {
  font-weight: 700;
  text-align: center;
  color: rgb(25, 178, 76);
  font-size: 36px;
  letter-spacing: 1.5px;
  font-weight: 500;
  font-family: jostBold;
}
@media (max-width: 900px) {
  .multiStepFinal-modal-content-luck {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .multiStepFinal-modal-content-luck {
    font-size: 44px;
  }
}

.multiStepFinal-modal-content-account {
  text-align: center;
  color: black;
}

.multiStepFinal-modal-content-agree {
  color: black;
}

.multiStepFinal-modal-content-status {
  color: black;
  text-align: center;
}

.multistepFinal-modal-content-note {
  color: black;
  text-align: center;
}

.multiStepFinal-modal-content-agree-button {
  margin: 0 auto;
  font-weight: 600;
  background-color: #19b24c;
  margin-top: 8px;
  color: white;
  font-size: 18px;
  padding: 8px 36px;
  border: 5px solid #47c170;
  text-align: center;
  border-radius: 30px;
  box-shadow: inset 0px 0px 20px #000000;
  cursor: pointer;
  letter-spacing: 3px;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 900px) {
  .multiStepFinal-modal-content-agree-button {
    font-size: 20px;
  }
}
@media (min-width: 1400px) {
  .multiStepFinal-modal-content-agree-button {
    font-size: 24px;
  }
}

.firstModalContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  height: 100vh;
  width: 100vw;
}
@media (max-width: 900px) {
  .firstModalContainer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
  }
}

.firstModal {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 100%;
  border-radius: 10px;
}
@media (max-width: 900px) {
  .firstModal {
    row-gap: 6px;
    height: auto;
    margin-top: 60px;
    width: 95%;
  }
}
@media (min-width: 1400px) {
  .firstModal {
    row-gap: 28px;
  }
}
.firstModal-left,
.firstModal-right {
  width: 27%;
  height: 100%;
}
@media (max-width: 900px) {
  .firstModal-left,
  .firstModal-right {
    display: none;
  }
}
.firstModal-left img,
.firstModal-right img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.firstModal-content {
  width: 45%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 22px;
}
@media (min-width: 1400px) {
  .firstModal-content {
    row-gap: 22px;
  }
}
@media (max-width: 900px) {
  .firstModal-content {
    width: 100%;
    justify-content: flex-start;
  }
}
.firstModal-content-title {
  font-weight: 700;
  font-family: jostBold;
  color: rgb(25, 178, 76);
  font-size: 36px;
  letter-spacing: 1.5px;
}
.firstModal-content-title .highlightedText {
  color: black;
}
@media (max-width: 900px) {
  .firstModal-content-title {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .firstModal-content-title {
    font-size: 44px;
  }
}
.firstModal-content-description {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  color: #41afa3;
  color: rgb(218, 204, 204);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
}
.firstModal-content-description-upperParagraph {
  width: 94%;
}
@media (max-width: 900px) {
  .firstModal-content-description {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .firstModal-content-description {
    font-size: 28px;
  }
}
.firstModal-content-button {
  font-weight: 600;
  background-color: #19b24c;
  margin-top: 8px;
  color: white;
  font-size: 18px;
  padding: 8px 30px;
  border: 5px solid #47c170;
  border-radius: 30px;
  box-shadow: inset 0px 0px 20px #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.firstModal-content-button div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.firstModal-content-button div p {
  font-size: 18px;
  letter-spacing: 3px;
  font-family: jostBold;
}
@media (min-width: 1400px) {
  .firstModal-content-button div p {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .firstModal-content-button div p {
    font-size: 20px;
  }
}
.firstModal-footer {
  height: 20%;
}

.secondModalContainer {
  display: none;
  width: 45%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
@media (max-width: 900px) {
  .secondModalContainer {
    align-items: flex-start;
    width: 100%;
  }
}
.secondModalContainer .secondModal {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  row-gap: 10px;
  min-height: 250px;
  position: relative;
  z-index: 1000;
  width: 100%;
}
@media (min-width: 1400px) {
  .secondModalContainer .secondModal {
    row-gap: 30px;
  }
}
.secondModalContainer .secondModal-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 20px;
}
.secondModalContainer .secondModal-top-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
  width: 100%;
}
.secondModalContainer .secondModal-top-header-title {
  text-align: center;
  width: 100%;
  font-weight: 700;
  font-family: jostBold;
  color: rgb(25, 178, 76);
  font-size: 36px;
  letter-spacing: 1.5px;
}
@media (max-width: 900px) {
  .secondModalContainer .secondModal-top-header-title {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .secondModalContainer .secondModal-top-header-title {
    font-size: 44px;
  }
}
.secondModalContainer .secondModal-top-header-stepContainer {
  display: flex;
  justify-content: space-between;
  border-radius: 26px;
  align-items: center;
  flex-direction: row;
  background-color: white;
  width: 55%;
  position: relative;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .secondModalContainer .secondModal-top-header-stepContainer {
    width: 100%;
  }
}
.secondModalContainer .secondModal-top-header-stepContainer .active {
  background-color: #47c170;
  z-index: 5;
  color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 2px solid red;
  height: 40px;
  flex: 1;
  cursor: pointer;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  z-index: 5;
  font-weight: 600;
  font-size: 16px;
  font-weight: 800;
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 26px;
}
.secondModalContainer .secondModal-top-header-stepContainer-steps {
  height: 40px;
  flex: 1;
  cursor: pointer;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: black;
  position: relative;
  z-index: 5;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 26px;
}
@media (min-width: 1400px) {
  .secondModalContainer .secondModal-top-header-stepContainer-steps {
    font-size: 20px;
    height: 34px;
    width: 34px;
  }
}
@media (max-width: 900px) {
  .secondModalContainer .secondModal-top-header-stepContainer-steps {
    font-size: 16px;
  }
}
.secondModalContainer .secondModal-top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
}
.secondModalContainer .secondModal-top-content-description {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: rgb(25, 178, 76);
  color: black;
}
@media (max-width: 900px) {
  .secondModalContainer .secondModal-top-content-description {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .secondModalContainer .secondModal-top-content-description {
    font-size: 28px;
  }
}
.secondModalContainer .secondModal-top-content-question {
  font-size: 20px;
  font-weight: 500;
  color: #747171;
  color: black;
  text-align: center;
}
@media (max-width: 900px) {
  .secondModalContainer .secondModal-top-content-question {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  .secondModalContainer .secondModal-top-content-question {
    font-size: 26px;
  }
}
.secondModalContainer .secondModal-footer {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  -moz-column-gap: 20px;
  column-gap: 20px;
  width: 80%;
  row-gap: 10px;
  margin: 0 auto;
}
.secondModalContainer .secondModal-footer-leftButton {
  font-weight: 600;
  background-color: #19b24c;
  margin-top: 8px;
  color: white;
  font-size: 18px;
  padding: 8px 30px;
  border: 5px solid #47c170;
  flex: 0.5;
  text-align: center;
  border-radius: 30px;
  box-shadow: inset 0px 0px 20px #000000;
  cursor: pointer;
  letter-spacing: 3px;
}
@media (min-width: 1400px) {
  .secondModalContainer .secondModal-footer-leftButton {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .secondModalContainer .secondModal-footer-leftButton {
    font-size: 20px;
  }
}
.secondModalContainer .secondModal-footer-rightButton {
  font-weight: 600;
  background-color: #19b24c;
  margin-top: 8px;
  color: white;
  font-size: 18px;
  padding: 8px 30px;
  flex: 0.5;
  text-align: center;
  border: 5px solid #47c170;
  letter-spacing: 3px;
  border-radius: 30px;
  box-shadow: inset 0px 0px 20px #000000;
  cursor: pointer;
}
@media (min-width: 1400px) {
  .secondModalContainer .secondModal-footer-rightButton {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .secondModalContainer .secondModal-footer-rightButton {
    font-size: 20px;
  }
}

.fourthModal {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 30px;
  position: relative;
  width: 45%;
  z-index: 4000;
  margin: auto;
}
@media (max-width: 900px) {
  .fourthModal {
    width: 90vw;
  }
}
@media (max-width: 900px) {
  .fourthModal {
    row-gap: 40px;
  }
}
.fourthModal-header {
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
}
.fourthModal-header-question {
  font-weight: 700;
  margin: 0 auto;
  color: rgb(25, 178, 76);
  font-size: 36px;
  letter-spacing: 1.5px;
  width: 100%;
  text-align: center;
}
.fourthModal-header-question .highlightedText {
  color: black;
}
@media (max-width: 900px) {
  .fourthModal-header-question {
    font-size: 30px;
  }
}
@media (min-width: 1400px) {
  .fourthModal-header-question {
    font-size: 44px;
  }
}
.fourthModal-header-answer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 15px;
}
.fourthModal-header-answer-each {
  color: black;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
.fourthModal-header-answer-each .customCheckboxDistance {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  -moz-column-gap: 16px;
  column-gap: 16px;
}
.fourthModal-header-answer-each .customCheckboxDistance input {
  display: none;
}
.fourthModal-header-answer-each .customCheckboxDistance_checkbox {
  height: 20px;
  width: 20px;
  border: 2px solid black;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  padding: 9px;
  transition: all 0.5s ease-in-out;
}
.fourthModal-header-answer-each .customCheckboxDistance_checkbox .icons {
  scale: 0;
  opacity: 0;
  transition: all 0.1s ease-in-out;
}
.fourthModal-header-answer-each
  .customCheckboxDistance_input:checked
  + .customCheckboxDistance_checkbox
  .icons {
  opacity: 1;
  scale: 1;
  color: rgb(218, 204, 204);
  color: black;
}
.fourthModal-header-answer-each label {
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
  color: #41afa3;
  color: rgb(218, 204, 204);
  color: black;
}
@media (min-width: 1400px) {
  .fourthModal-header-answer-each label {
    font-size: 26px;
  }
}
@media (max-width: 900px) {
  .fourthModal-header-answer-each label {
    font-size: 16px;
  }
}
.fourthModal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  -moz-column-gap: 15px;
  column-gap: 15px;
  background-color: #19b24c;
  border-radius: 8px;
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  font-size: 14px;
  cursor: pointer;
  justify-self: flex-end;
}
.fourthModal-footer div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
@media (min-width: 1400px) {
  .fourthModal-footer-button {
    font-size: 24px;
  }
}
@media (max-width: 900px) {
  .fourthModal-footer-button {
    font-size: 20px;
  }
} /*# sourceMappingURL=index.css.map */
