* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  background-color: #320435;
  overflow: hidden;
}
@media (max-width:900px) {
  body {
    overflow: auto;
  }
}

.multiStepForm-Container {
  height: 100vh;
  width: 100vw;
  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;
  }
}

.multiStepForm-Container::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  height: 100vh;
  width: 100vw;
  background: rgba(2, 2, 41, 0.75);
  background: rgba(3, 3, 33, 0.75);
  background: rgba(2, 2, 18, 0.75);
}

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

.multiStepForm {
  margin: auto;
  border-radius: 8px;
  display: flex;
  justify-content: stretch;
  -moz-column-gap: 4%;
       column-gap: 4%;
  align-items: stretch;
  flex-direction: column;
  background: rgba(53, 53, 62, 0.25);
  background: rgba(161, 143, 143, 0.13);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  min-height: 80vh;
  width: 50vw;
  row-gap: 10px;
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
}
@media (max-width:900px) {
  .multiStepForm {
    width: 95vw;
    row-gap: 12px;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}
@media (min-width:1400px) {
  .multiStepForm {
    width: 40vw;
  }
}

.multiStepForm-top {
  display: flex;
  align-items: stretch;
  padding: 20px;
  height: 85%;
  flex: 0.85;
}
@media (max-width:900px) {
  .multiStepForm-top {
    padding: 16px 0;
  }
}

.stepContainer {
  position: relative;
  display: flex;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
  font-weight: 600;
  flex-direction: row;
  /* border-right: 3px solid gray; */
  padding: 16px;
  width: 20%;
  min-height: 250px;
  /* width: 100%; */
}
@media (max-width:900px) {
  .stepContainer {
    padding: 0;
    width: 15%;
  }
}

.stepContainer-top {
  position: relative;
  width: 100%;
  height: 100%;
}

.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 100%;
  position: relative;
  z-index: 5;
  height: 100%;
}

.step {
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  font-weight: 600;
  font-size: 14px;
  background: rgb(217, 217, 217);
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 50%;
  font-size: 18px;
}
@media (max-width:900px) {
  .step {
    font-size: 0.8rem;
    height: 30px;
    width: 30px;
  }
}
@media (min-width:1400px) {
  .step {
    font-size: 20px;
    height: 34px;
    width: 34px;
  }
}
@media (max-width:900px) {
  .step {
    font-size: 16px;
  }
}

.step.active {
  background-color: #631616;
  border: 2px solid white;
  color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.stepContainer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  font-size: 16px;
  color: white;
  display: none;
}
@media (min-width:1400px) {
  .stepContainer-bottom {
    font-size: 24px;
  }
}
@media (max-width:900px) {
  .stepContainer-bottom {
    font-size: 16px;
  }
}
@media (max-width:900px) {
  .stepContainer-bottom {
    display: none;
  }
}
.stepContainer-bottom p {
  font-size: 18px;
  width: -moz-max-content;
  width: max-content;
}

.horizontal-line {
  position: absolute;
  border-radius: 5px;
  width: 3%;
  height: 100%;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(217, 217, 217, 0.44);
  z-index: 3;
}

.horizontal-line-second {
  position: absolute;
  width: 2%;
  height: 0;
  top: 0%;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  background: rgb(226, 24, 57);
  background: white;
  z-index: 3;
  left: 50%;
}

.stepTab {
  display: none;
  align-items: stretch;
  transition: all 0.5s ease-in-out;
  width: 80%;
  /* border: 2px solid red; */
}
@media (max-width:900px) {
  .stepTab {
    width: 85%;
  }
}

.question {
  margin-bottom: 10px;
  line-height: 1;
  color: #f87878;
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
  height: 6%;
}
@media (max-width:900px) {
  .question {
    font-size: 16px;
  }
}
@media (min-width:1400px) {
  .question {
    font-size: 22px;
  }
}

.stepTab-container {
  height: 100%;
}

.step-first,
.step-second,
.step-fifth {
  min-height: 95%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(auto-fill, 1fr);
  width: 100%;
  grid-gap: 10px;
  position: relative;
  grid-auto-flow: row;
  grid-row-gap: 20px;
}

.step-first-content,
.step-second-content,
.step-third-content,
.step-fourth-content,
.step-fifth-content {
  text-align: center;
  min-height: 140px;
}

.step-first-content-title,
.step-second-content-title,
.step-third-content-title,
.step-fourth-content-title,
.step-fifth-content-title {
  font-weight: bold;
  font-size: 1rem;
  color: rgba(248, 95, 45, 0.78);
  color: black;
  color: #04d1ff;
  color: rgb(218, 204, 204);
  height: 15%;
  margin-top: 8px;
}
@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: 0.8rem;
  }
}
@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: 1.2rem;
  }
}

.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 #5e62ff;
  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: 16px;
  position: relative;
  flex-direction: column;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  border-radius: 8px;
  height: 85%;
}

.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;
  }
}

.customCheckbox_checkbox:hover {
  scale: 1.1;
}

.customCheckbox_checkbox .icons {
  scale: 0;
  opacity: 0;
  transition: all 0.1s ease-in-out;
}

.customCheckbox_input:checked + .customCheckbox_checkbox .icons {
  opacity: 1;
  scale: 1;
  color: #b86b6b;
  color: white;
}

.customCheckbox_input:checked + .customCheckbox_checkbox {
  background: #5e62ff;
  background-color: #b86b6b;
}

.image {
  border: 2px solid transparent;
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  display: block;
  border-radius: 12px;
  padding: 3px;
}

.image img {
  display: block;
  height: 94%;
  width: 96%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  position: absolute;
}
@media (max-width:900px) {
  .image img {
    width: 94%;
  }
}

.customCheckbox_input:checked ~ .image {
  border: 3px solid #b86b6b;
}

.customCheckbox_input:checked ~ .messaging-app {
  border: 3px solid #b86b6b;
}

/* error message */
/*submit section  */
.submitSection {
  width: 100%;
  padding: 0 16px;
  padding-bottom: 16px;
}

.submitSection-buttons {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.previous-button {
  display: none;
}

.next {
  background-color: rgb(226, 24, 57);
  background-color: #631616;
  border-radius: 8px;
  color: #ffffff;
  border: none;
  padding: 6px 14px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  -moz-column-gap: 15px;
       column-gap: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (min-width:1400px) {
  .next {
    font-size: 24px;
  }
}
@media (max-width:900px) {
  .next {
    font-size: 16px;
  }
}
.next .arrowIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

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

/* media query */
@media (min-width: 481px) and (max-width: 768px) {
  .step-first,
  .step-second,
  .step-third,
  .step-fourth,
  .step-fifth {
    /* height: 270px;
      grid-template-rows: repeat(2, 130px); */
  }
}
@media (min-width: 1025px) and (max-width: 1300px) {
  .step-first,
  .step-second,
  .step-third,
  .step-fourth,
  .step-fifth {
    /* height: 300px; */
  }
}
/* @media (min-width: 1301px) {
    .multiStepForm {
      width: 650px;
      padding: 20px 25px;
    }

    .question {
      font-size: 22px;
    }

    .step-first,
    .step-second,
    .step-third,
    .step-fourth,
    .step-fifth {
      height: 450px;
      grid-template-rows: repeat(2, 235px);
    }
  } */
/* for loading modal section  */
.multiStepLoading-container {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.multiStepLoading-modal {
  height: 50vh;
  width: 60vw;
  margin: 0 auto;
  padding: 20px 25px;
  border-radius: 8px;
  background: rgba(71, 71, 82, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  position: relative;
  z-index: 20;
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
}
@media (max-width:900px) {
  .multiStepLoading-modal {
    width: 90vw;
    margin: unset;
    margin-top: 40px;
  }
}
@media (min-width:1400px) {
  .multiStepLoading-modal {
    width: 50vw;
  }
}

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

.multiStepLoading-modal-content-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  flex-direction: column;
  color: #5e62ff;
  font-weight: 700;
}
@media (min-width:1400px) {
  .multiStepLoading-modal-content-text {
    font-size: 30px;
  }
}

.multiStepLoading-modal-content-text-evaluating {
  color: #747171;
}

.multiStepLoading-modal-content-text-result {
  font-size: 20px;
}
@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: 20px;
  border-radius: 8px;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.multiStepLoading-modal-content-loader-text {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #b86b6b;
}
@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: #b86b6b;
  height: 20px;
  animation-name: loadingAnimation;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
  width: 0%;
}

@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 {
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  display: none;
}

.multiStepFinal-modal {
  margin: auto;
  padding: 20px 25px;
  width: 60vw;
  min-width: 300px;
  border-radius: 8px;
  background: rgba(71, 71, 82, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 10px;
  position: relative;
  z-index: 21;
  /* border: 1px solid rgba(255, 255, 255, 0.18); */
}
@media (max-width:900px) {
  .multiStepFinal-modal {
    width: 90vw;
    margin-top: 40px;
  }
}
@media (min-width:1400px) {
  .multiStepFinal-modal {
    width: 40vw;
  }
}

.multiStepFinal-modal-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  height: 100%;
  width: 100%;
  color: #272626;
}
@media (min-width:1400px) {
  .multiStepFinal-modal-content {
    row-gap: 20px;
  }
}

.multiStepFinal-modal-content-luck {
  font-size: 24px;
  color: #5e62ff;
  font-weight: 700;
}
@media (min-width:1400px) {
  .multiStepFinal-modal-content-luck {
    font-size: 28px;
  }
}

.multiStepFinal-modal-content-account {
  font-size: 20px;
  color: #5e62ff;
}
@media (min-width:1400px) {
  .multiStepFinal-modal-content-account {
    font-size: 22px;
  }
}

.multiStepFinal-modal-content-agree {
  font-size: 20px;
  font-weight: 600;
  color: #b86b6b;
}
@media (min-width:1400px) {
  .multiStepFinal-modal-content-agree {
    font-size: 22px;
  }
}

.multiStepFinal-modal-content-status {
  font-size: 20px;
  color: #b86b6b;
}

.multistepFinal-modal-content-note {
  font-size: 20px;
  color: rgb(226, 214, 214);
}
@media (max-width:900px) {
  .multistepFinal-modal-content-note {
    font-size: 18px;
  }
}
@media (min-width:1400px) {
  .multistepFinal-modal-content-note {
    font-size: 22px;
  }
}

.multiStepFinal-modal-content-agree-button {
  color: white;
  padding: 8px 14px;
  background-color: #631616;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width:900px) {
  .multiStepFinal-modal-content-agree-button {
    font-size: 18px;
  }
}
@media (min-width:1400px) {
  .multiStepFinal-modal-content-agree-button {
    font-size: 24px;
  }
}

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

.firstModal {
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 14px;
  margin: 0 auto;
  width: 50%;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 10px;
}
@media (max-width:900px) {
  .firstModal {
    width: 90vw;
    row-gap: 6px;
  }
}
@media (min-width:1400px) {
  .firstModal {
    row-gap: 22px;
  }
}
.firstModal-header {
  height: 24%;
}
.firstModal-header .firstModal-header-logo {
  height: 100%;
  width: 100%;
  background: white;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  padding: 6px;
  display: none;
}
.firstModal-header .firstModal-header-logo img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: none;
}
.firstModal-content {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 16px;
}
@media (min-width:1400px) {
  .firstModal-content {
    row-gap: 22px;
  }
}
.firstModal-content-title {
  font-weight: 700;
  color: #5e62ff;
  font-size: 40px;
}
@media (max-width:900px) {
  .firstModal-content-title {
    font-size: 30px;
  }
}
@media (min-width:1400px) {
  .firstModal-content-title {
    font-size: 50px;
  }
}
@media (max-width:900px) {
  .firstModal-content-mobileImage {
    height: 35vh;
  }
}
.firstModal-content-mobileImage img {
  height: 100%;
  width: 100%;
  display: none;
}
@media (max-width:900px) {
  .firstModal-content-mobileImage img {
    display: block;
  }
}
.firstModal-content-description {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  color: #41afa3;
  color: #b86b6b;
}
@media (max-width:900px) {
  .firstModal-content-description {
    font-size: 18px;
  }
}
@media (min-width:1400px) {
  .firstModal-content-description {
    font-size: 28px;
  }
}
.firstModal-content-button {
  font-weight: 600;
  background-color: #631616;
  color: white;
  font-size: 22px;
  padding: 8px 12px;
  border-radius: 12px;
  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;
}
@media (min-width:1400px) {
  .firstModal-content-button div p {
    font-size: 24px;
  }
}
@media (max-width:900px) {
  .firstModal-content-button div p {
    font-size: 16px;
  }
}
.firstModal-footer {
  height: 20%;
}

.secondModalContainer {
  display: none;
  min-width: 300px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  height: 100vh;
  width: 100vw;
}
@media (max-width:900px) {
  .secondModalContainer {
    align-items: flex-start;
  }
}
.secondModalContainer .secondModal {
  padding: 18px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  row-gap: 10px;
  min-height: 250px;
  position: relative;
  z-index: 1000;
  width: 50%;
  border-radius: 8px;
  background: rgba(161, 143, 143, 0.13);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
}
@media (max-width:900px) {
  .secondModalContainer .secondModal {
    width: 90vw;
    margin-top: 40px;
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
  }
}
.secondModalContainer .secondModal-top {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.secondModalContainer .secondModal-top-header {
  position: relative;
}
.secondModalContainer .secondModal-top-header-horizontalLine {
  position: absolute;
  border-radius: 5px;
  width: 8%;
  height: 100%;
  top: 0%;
  left: 50%;
  transform: translateX(-50%);
  transform: translateX(-50%);
  background: rgba(217, 217, 217, 0.44);
  z-index: 3;
}
.secondModalContainer .secondModal-top-header-horizontalLine-second {
  position: absolute;
  width: 8%;
  height: 0%;
  top: 0%;
  transform: translateX(-50%);
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  background: #5e62ff;
  z-index: 3;
  left: 50%;
}
.secondModalContainer .secondModal-top-header-stepContainer {
  min-height: 30vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  -moz-column-gap: 50px;
       column-gap: 50px;
  width: 100%;
  position: relative;
}
.secondModalContainer .secondModal-top-header-stepContainer .active {
  background-color: #631616;
  z-index: 5;
  border: 2px solid white;
  color: white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.secondModalContainer .secondModal-top-header-stepContainer-steps {
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  position: relative;
  z-index: 5;
  font-weight: 600;
  font-size: 16px;
  background: rgb(217, 217, 217);
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 50%;
}
@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: #5e62ff;
  color: #686aeb;
  color: #b86b6b;
}
@media (max-width:900px) {
  .secondModalContainer .secondModal-top-content-description {
    font-size: 18px;
  }
}
@media (min-width:1400px) {
  .secondModalContainer .secondModal-top-content-description {
    font-size: 28px;
  }
}
.secondModalContainer .secondModal-top-content-question {
  font-size: 18px;
  font-weight: 500;
  color: #747171;
  color: black;
  color: #e6dcdc;
  color: #9799ff;
}
@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 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-self: flex-end;
}
.secondModalContainer .secondModal-footer-leftButton {
  background-color: #631616;
  border-radius: 8px;
  color: #ffffff;
  border: none;
  padding: 6px 20px;
  font-size: 18px;
  cursor: pointer;
}
@media (min-width:1400px) {
  .secondModalContainer .secondModal-footer-leftButton {
    font-size: 24px;
  }
}
@media (max-width:900px) {
  .secondModalContainer .secondModal-footer-leftButton {
    font-size: 16px;
  }
}
.secondModalContainer .secondModal-footer-rightButton {
  background-color: rgb(190, 58, 58);
  border-radius: 8px;
  color: #ffffff;
  border: none;
  padding: 6px 20px;
  font-size: 18px;
  cursor: pointer;
}
@media (min-width:1400px) {
  .secondModalContainer .secondModal-footer-rightButton {
    font-size: 24px;
  }
}
@media (max-width:900px) {
  .secondModalContainer .secondModal-footer-rightButton {
    font-size: 16px;
  }
}

.fourthModal {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  position: relative;
  height: 100vh;
  width: 100vw;
  min-height: 40vh;
  width: 50vw;
  z-index: 4000;
  margin: auto;
}
@media (max-width:900px) {
  .fourthModal {
    width: 90vw;
  }
}
.fourthModal-header {
  font-size: 26px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  row-gap: 20px;
}
.fourthModal-header-question {
  font-size: 24px;
  font-weight: 700;
  color: #5e62ff;
}
@media (min-width:1400px) {
  .fourthModal-header-question {
    font-size: 26px;
  }
}
@media (max-width:900px) {
  .fourthModal-header-question {
    font-size: 18px;
  }
}
.fourthModal-header-answer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  row-gap: 15px;
}
.fourthModal-header-answer-each {
  color: rgb(190, 58, 58);
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.fourthModal-header-answer-each label {
  font-size: 20px;
  cursor: pointer;
}
@media (min-width:1400px) {
  .fourthModal-header-answer-each label {
    font-size: 24px;
  }
}
@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: #631616;
  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: 16px;
  }
}/*# sourceMappingURL=index.css.map */