#ahp-form {
  max-width: 800px;
  margin: 50px auto;
  padding: 0px 15px;
}

#ahp-survey h3 {
  margin-bottom: 15px;
}

.comparison {
  margin-bottom: 20px;
}
.comparison {
  display: none;
}

.comparison.active {
  display: block;
}

.child-question-wrap{
  width: 100%; max-width: 1024px; padding: 20px; 
  border: 1px solid #ddd; border-radius: 10px; background: #fafafa;
} 

.child-question-txt{margin: 20px auto; max-width: 700px; text-align: center;}
.child-question-txt p{font-weight: 500; font-size: 15px; line-height: 1.4;}

.slider-track-wrap{position: relative; padding: 10px 0px; margin: 0 30px;}
.slider-track-wrap .slider-track{position: relative; height: 6px; background: #E7F3F2; border-radius: 3px; height: 6px;}     
.slider-track-wrap .slider-thumb {
  position: absolute; top: 0px; width: 24px; height: 24px; cursor: grab; border-radius: 50%;
  background: #fff; border: 5px solid #02A09A; transition: left 0.2s ease; transform: translate(-50%, -50%); top: 50%;
}

.snap-point-wrap{position: relative; display: flex; gap: 20px;} 
.snap-point-wrap .snap-point {text-align: center; padding-top: 20px; font-size: 13px; line-height: 1.4;}

.ask-question-wrap{
  position: relative; display: flex; justify-content: center; 
  align-items: center; gap: 10px; margin: 0 auto 25px; max-width: 800px;
}
.ask-question-wrap .ask-question{width: 240px; text-align: center ;}
.ask-question-wrap .ask-question figure{margin: 0 auto;}
.ask-question-wrap .ask-question figure img{max-height: 150px;}
.ask-question-wrap .ask-question h4{font-size: 19px; font-weight: 600; margin: 0; line-height: 1.2;}

.ask-question-wrap .ask-question-line{position: relative; flex: auto; text-align: center; border-bottom: 1px dashed #02A09A;}
.ask-question-wrap .ask-question-line span{
  position: absolute; top: -18px; left: 50%; margin-left: -18px;
  background: #fafafa; padding: 5px; font-size: 22px; width: 36px; height: 36px;
}

.question-text{ 
  background-repeat: no-repeat; background-position: top center; background-size: 100% 100%;
  min-height: 100px; width: 100%; max-width: 820px; margin: 0 auto 15px;
  text-align: center; display: flex; align-items: center; padding: 10px 80px;
}
.question-text h2{
  font-size: 24px; margin: 0px; line-height: 30px;
  font-weight: 400; min-height: 60px;
}
.question-no{
  background-repeat: no-repeat; background-position: top center;
  height: 37px; width: 268px; margin: 0 auto; padding: 5px 40px;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; font-weight: 500; font-size: 18px;
}

#ahp-results{width: 100%; max-width: 1200px; padding:50px; margin: 20px auto;}
#ahp-results h3{font-size: 30px; margin: 0 0 30px; line-height: 30px; padding: 0 12px; font-family: "Coiny", system-ui;}

#ahp-results table{border: 1px solid #ddd; border-radius: 10px; background: #fafafa; display: block; padding: 10px;}
#ahp-results table tbody{width: 100%; display: block;}
#ahp-results table tbody th:first-child,
#ahp-results table tbody td:first-child{text-align: left;}

#ahp-submit,
.next-btn,
.back-btn{
  min-width: 120px; border-radius: 200px; font-size: 15px; font-weight: 600;
  background: #1AB59C; color: #fff; border: 0px; padding: 15px 20px; margin: 0;
}
#ahp-submit:hover, .next-btn:hover{background: #14937e;}

.form-child-select{margin: 30px 0; display: flex; flex-wrap: wrap; align-items: center; gap: 15px;}
.form-child-select select{padding: 10px; width: 240px;}


.btn-start{
  min-height: 48px; min-width: 100px; padding:10px;
  border-radius: 200px; background: #02A09A; color: #fff;
  font-size: 15px; font-weight: 600; padding-left: 20px;
  padding-right: 20px; margin: 0; border: 0; outline: none;
}

/* 1. Pulse Animation */
.animation-pulse {
  animation: pulse 1.9s infinite; transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(2, 160, 154, .1);
}

.animation-pulse:hover {
  animation: none;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

/* 2. Wobble Animation */
.animation-wobble {
  animation: wobble 1.4s infinite; /* 🔁 runs continuously */
  animation-timing-function: ease-in-out;
}

.animation-wobble:hover {
  animation-play-state: paused;
  animation: none;
}

@keyframes wobble {
  0%, 100% {
    transform: translateX(0%) rotate(0deg);
  }
  15% {
    transform: translateX(-10%) rotate(-1deg);
  }
  30% {
    transform: translateX(5%) rotate(1deg);
  }
  45% {
    transform: translateX(-5%) rotate(-1deg);
  }
  60% {
    transform: translateX(0%) rotate(1deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
}


.ml-auto{margin-left: auto;}
.none{display: none;}

@media screen and (max-width:991px){  
  .question-text h2{
    font-size: 24px; line-height: 30px;
  }
}
@media screen and (max-width:768px){
  .question-text{padding: 10px 30px;}

  .snap-point-wrap {gap: 10px; word-break: break-word;}

  .ask-question-wrap .ask-question h4 {font-size: 15px;}

  .ask-question-wrap .ask-question-line{display: none;}

  .question-text {margin-bottom: 20px;}

  .ask-question-wrap{margin-bottom: 20px;}

  .slider-track-wrap{margin: 0px;}
}

@media screen and (max-width:600px){
  .question-text h2 {
    font-size: 20px;
    line-height: 26px;
  }
  .child-question-txt p {
    font-size: 14px;
  }

  /*
  .slider-container{
    display: flex;
    flex-direction: row;
  }

  .snap-point-wrap {    
    flex-direction: column;
  }
  .snap-point-wrap .snap-point{    
    text-align: left;
    padding: 0;
  }
  .slider-track-wrap .slider-track {    
    height: 250px;
    width: 6px;
  }*/
}