body{
  background-color: #00AFD8;
}

.content{
  margin-top: 40px;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
}

.respondent{
  background-color: white;
  border-radius: 10px;
  border: 1px solid rgb(238, 238, 238);
  padding: 40px;
}

.heading-form{
  margin-bottom: 40px;
}

h1{
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: #292929;
  margin-bottom: 40px;
}

.check-points{
  display: flex;
  justify-content: center;
  align-items: center;
}

.check-point{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.page-number{
  background-color: #cfcfcf;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.check-point p{
  font-size: 14px;
  font-weight: 500;
}

.line-point{
  background-color: #cfcfcf;
  width: 200px;
  height: 1.5px;
  margin-top: -40px;
}

.bg-heading-active{
  background-color: #00AFD8;
  color: white;
}

.button-next button{
  background-color: #00AFD8;
  border: none;
  padding: 7px 15px;
  border-radius: 20px;
  color: white;
  font-weight: 500;
  font-size: 14px;
  margin-top: 40px;
  transition: background-color 0.3s ease;
}

.button-next button:hover{
  background-color: #0090b0;
}

.hidden-section{
  position: absolute;
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

@media (max-width: 480px) {
  .respondent{
    padding: 40px 10px;
  }

  h1{
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .check-point p{
    font-size: 12px;
  }
  
  .line-point{
    width: 80px;
  }

  .button-next button{
    font-weight: 400;
    font-size: 13px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}




/* Data Diri */
.respondent-data{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.field-data{
  margin-bottom: 20px;
}

.field-data label{
  width: 300px;
  font-size: 16px;
  font-weight: 500;
  color: #292929;
}

.field-data input,
.field-data select{
  width: 500px;
  height: 35px;
  border-radius: 5px;
  border: 1px solid rgb(159, 159, 159);
}

@media (max-width: 480px) {
  .field-data{
    display: flex;
    flex-direction: column;
  }

  .field-data label{
    width: 320px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
  }
  
  .field-data input,
  .field-data select{
    width: 100%;
    height: 35px;
    border-radius: 5px;
    border: 1px solid rgb(159, 159, 159);
  }
}



/* Survey */
.survey{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.question-box{
  text-align: center;
  width: 800px;
  border: 1px solid rgb(230, 230, 230);
  border-radius: 5px;
  padding: 15px;
}

.question-page{
  font-size: 13px;
  color: rgb(129, 129, 129);
  margin-bottom: 30px;
}

.question{
  font-weight: 500;
}

.note{
  background-color: #00b0d865;
  padding: 8px 10px;
  border-radius: 5px;
  font-size: 12px;
  margin-bottom: 30px;
}

.answer-1,
.answer-2,
.answer-3,
.answer-4,
.answer-5,
.answer-6,
.answer-7,
.answer-8,
.answer-9{
  border: 1px solid rgb(203, 203, 203);
  width: 100%;
  padding: 7px 10px;
  text-align: center;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 15px;
}

.bg-answer-active{
  background-color: #D6DE22;
  color: white;
  border: none;
}

.input-answer-1,
.input-answer-2,
.input-answer-3,
.input-answer-4,
.input-answer-5,
.input-answer-6,
.input-answer-7,
.input-answer-8,
.input-answer-9{
  pointer-events: none;
  position: absolute;
  opacity: 0;
}

@media (max-width: 480px) {
  .question-box{
    width: 100%;
    padding: 15px;
  }
  
  .question-page{
    font-size: 11px;
    margin-bottom: 30px;
  }

  .question{
    font-weight: 500;
    font-size: 14px;
  }

  .note{
    padding: 5px 10px;
    font-size: 10px;
    margin-bottom: 30px;
  }

  .answer-1,
  .answer-2,
  .answer-3,
  .answer-4,
  .answer-5,
  .answer-6,
  .answer-7,
  .answer-8,
  .answer-9{
    font-size: 13px;
  }
}





/* Suggestion */
.suggestion{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.suggestion-box{
  width: 800px;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

.suggestion-label{
  font-size: 16px;
  font-weight: 500;
  color: #292929;
  margin-bottom: 5px;
}

.suggestion-input{
  height: 300px;
  border-radius: 10px;
  border: 1px solid rgb(203, 203, 203);
}

@media (max-width: 480px) {
  .suggestion-box{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
  }
}

