:root {
  --margin_left_option_section: 40px;
  --margin_top_option_section: 15px;
  --padding-left-right-heading-section: 15%;
}

.ai_section_custom_padding {
  padding: 0px var(--padding-left-right-heading-section);
}

.ai_main_wrapper {
  padding: 0 5%;
  /* height: 60vh; */
  /* margin-top: -30px; */
  /* overflow: auto; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 70%;
  margin: auto;
}

.chat_main_wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

#previous_responses {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
  /* overflow-y: auto;  */
  margin-bottom: 10px;
}

.previous_responses_card {
  padding: 0.4rem;
  border-radius: 15px;
  border: 1px solid lightgrey;
  border-left: 5px solid #216389;
}

.chat_input_box_wrapper {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  width: 100%;
}

.chat_input_box_main {
  margin-bottom: 0.8rem;
  padding: 0px 0px;
  border-radius: 18px;
  border: 1px solid #dddddd;
  box-shadow: 0px 1.02px 2.29px 0px #00000021, 0px 0.19px 0.57px 0px #0000001c;
  overflow: hidden;
  width: 80%;
}

.suggetion_card {
  background: #216389;
  border-radius: 15px;
  color: white;
  padding: 1rem;

  .chat_input_box_question {
    color: white;
  }
}

.chat_input_box {
  border-left: 5px solid #216389;
  padding: 1rem;
}

.chat_input_box_question {
  font-family: Lufga;
  font-size: 16px;
  font-weight: 500;
  /* line-height: 16px; */
  text-align: left;
  color: #292929cc;
}
.chat_input_box_answer {
  font-size: 16px;
}

.options_wrapper {
  margin-left: var(--margin_left_option_section);
  margin-top: var(--margin_top_option_section);
  width: 90%;
}

.options_container {
  /* display: flex; */
  flex-wrap: wrap;
  gap: 0.5rem;
}

.option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 12px;
  background: #e6f2fb;
  margin-bottom: 10px;
}

.option:hover {
  border: 1px solid #216389;
  color: #216389;
  cursor: pointer;
}

.option_text {
  font-family: Lufga;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3rem;
  text-align: left;
}

.submit_wrapper {
  margin-left: var(--margin_left_option_section);
  margin-top: var(--margin_top_option_section);
}

.ask_anything_container {
  box-shadow: 0px 1.02px 2.29px 0px #00000021, 0px 0.19px 0.57px 0px #0000001c;
  border: 1px solid #02040f;
  border-radius: 10px;
  padding: 1.4rem;
}

.ask_anything_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ask_anything_inner input {
  border: none;
  outline: none;
  width: 100%;
  padding-right: 20px;
}

.ask_anything_inner_icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.next_set_button {
  margin-top: 20px;
  display: flex;
  justify-content: right;
  color: #216389;
  text-decoration: underline;
  cursor: pointer;
}
.question_set_heading {
  /* border: solid 2px #216389;
    border-radius: 10px; */
  text-align: center;
  padding: 10px;
  text-decoration: underline;
  color: #216389;
  font-weight: 500;
}
@media (max-width: 1299px) {
  .ai_main_wrapper {
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 991px) {
  :root {
    --margin_left_option_section: 40px;
    --margin_top_option_section: 30px;
    --padding-left-right-heading-section: 5%;
  }

  .ai_main_wrapper {
    padding: 40px 10%;
    /* height: 70vh; */
  }

  .chat_input_box_main {
    width: 100%;
  }

  .options_wrapper {
    margin-left: var(--margin_left_option_section);
    margin-top: var(--margin_top_option_section);
    width: 90%;
  }
}

@media (max-width: 575px) {
  :root {
    --margin_left_option_section: 40px;
    --margin_top_option_section: 15px;
    --padding-left-right-heading-section: 2%;
  }

  /* .ai_main_wrapper {
        padding: 0.5rem 2%;
        height: 55vh;
    } */

  .chat_input_box_main {
    width: 100%;
  }
  .chat_input_box_question {
    font-size: 12px;
  }
  .chat_input_box_answer {
    font-size: 12px;
  }

  .options_wrapper {
    margin-left: var(--margin_left_option_section);
    margin-top: var(--margin_top_option_section);
    width: 90%;
  }

  .content_para {
    line-height: 1.4 !important;
  }
}
