.questionlanding-container {
  display: block;
}

.questionlanding-container .content {
  display: block;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.questionlanding-container .content .breadcrumb {
  padding: 0 10px 10px 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.questionlanding-container .content .breadcrumb a {
  text-decoration: none;
  font-size: 14px;
  color: #0678b1;
}

.questionlanding-container .content .title h1 {
  font-size: 24px;
  color: #000;
  font-weight: 600;
}

.questionlanding-container .content .userInfo {
  display: flex;
  justify-content: space-between;
  background: #fafafa;
  align-items: center;
  padding: 5px 10px;
  margin: 10px 0;
}

.questionlanding-container .content .userInfo .userDetails {
  display: flex;
  gap: 5px;
  align-items: center;
}

.questionlanding-container .content .userInfo .userDetails svg {
  width: 20px;
  height: 20px;
}

.questionlanding-container .content .userInfo .userDetails p {
  margin-bottom: 0;
}

.questionlanding-container .content .userInfo .userDetails .userName strong {
  font-size: 15px;
  color: #0678b1;
  font-weight: 400;
}

.questionlanding-container .content .userInfo .postedTime {
  font-size: 14px;
  margin-bottom: 0;
}

.questionlanding-container .content .answerBox {
  display: block;
  padding: 10px 0;
}

.questionlanding-container .content .answerBox p {
  font-size: 16px;
  color: #444;
  font-weight: 400;
  margin-bottom: 0;
}

.questionlanding-container .content .answerBox .answerDetails {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}

.questionlanding-container .content .answerBox .answerDetails p {
  font-size: 13px;
  color: #444;
  font-weight: 400;
}

.questionlanding-container .content .answerBox .answerDetails p strong {
  font-weight: 500;
  font-size: 15px;
}

.questionlanding-container .content .answerBox .answerDetails p span {
  color: #0678b1;
  font-size: 15px;
}

.questionlanding-container .bot {
  margin-top: 40px;
  display: block;
}

.questionlanding-container .bot .title h2 {
  font-size: 35px;
  color: #000;
  font-weight: 600;
}

.questionlanding-container .bot .title h3 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
}

.questionlanding-container .bot .botDetail {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}

.questionlanding-container .bot .botDetail .botData {
  display: block;
  width: 32%;
  background: rgb(239, 239, 239);
  margin-bottom: 20px;
  padding: 20px 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.questionlanding-container .bot .botDetail .botData span {
  display: flex;
  align-items: center;
  gap: 20px;
}

.questionlanding-container .bot .botDetail .botData span img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.questionlanding-container .bot .botDetail .botData span strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.questionlanding-container .bot .botDetail .botData .paragraph {
  margin-top: 30px;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 20px;
}

.questionlanding-container .bot .botDetail .botData .paragraph p {
  font-size: 15px;
  color: #444;
  padding: 5px 20px;
}

.questionlanding-container .bot .botDetail .botData .button button {
  background-color: #0678b1;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  width: 100%;
  font-size: 14px;
  text-transform: capitalize;
  padding: 8px;
}

/* Show More Button */
.questionlanding-container .showButton {
  display: block;
  text-align: center;
  margin-top: 15px;
}

.questionlanding-container .showButton button {
  background-color: #0678b1;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  text-transform: capitalize;
  padding: 8px 20px;
}

/* More Answers */
.questionlanding-container .MoreAnswer {
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin-top: 50px;
}

.questionlanding-container .MoreAnswer .title h2 {
  font-size: 20px;
  font-weight: 600;
  background: #fafafa;
  display: inline-block;
  padding: 4px 10px;
}

.questionlanding-container .MoreAnswer .moreAnswerBox {
  padding: 20px 0;
  border-bottom: solid 1px #ddd;
  padding-bottom: 30px;
}

.questionlanding-container .MoreAnswer .moreAnswerBox p {
  font-size: 16px;
  color: #444;
  font-weight: 400;
}

.questionlanding-container .MoreAnswer .moreAnswerBox .answerDetails {
  display: flex;
  margin-top: 20px;
  align-items: center;
  justify-content: space-between;
}

.questionlanding-container .MoreAnswer .moreAnswerBox .answerDetails p {
  font-size: 13px;
  color: #444;
  font-weight: 400;
}

.questionlanding-container .MoreAnswer .moreAnswerBox .answerDetails p strong {
  font-weight: 500;
  font-size: 15px;
}

.questionlanding-container .MoreAnswer .moreAnswerBox .answerDetails p span {
  color: #0678b1;
  font-size: 15px;
}

.questionlanding-container .MoreAnswer .moreAnswerBox button {
  display: block;
  border: none;
  margin-top: 20px;
  background: none;
  font-size: 15px;
  color: #0678b1;
}

.questionlanding-container .MoreAnswer .moreAnswerBox .commentBox {
  display: flex;
  justify-content: space-between;
  border: solid 1px #ddd;
  align-items: center;
  margin-top: 20px;
  border-radius: 9px;
  padding: 0 10px;
}

.questionlanding-container .MoreAnswer .moreAnswerBox .commentBox input {
  width: 80%;
  border: none;
  outline: none;
  padding: 12px 0;
}

.questionlanding-container .MoreAnswer .moreAnswerBox .commentBox button {
  width: 20%;
  font-size: 12px;
  margin-top: 0;
  cursor: pointer;
}

/* Add Answer */
.questionlanding-container .addAnswer {
  background: #fff;
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.questionlanding-container .addAnswer .divide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.questionlanding-container .addAnswer .divide h2 {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.questionlanding-container .addAnswer .divide .coin {
  display: flex;
  align-items: center;
  gap: 5px;
}

.questionlanding-container .addAnswer .divide .coin img {
  width: 20px;
  height: 20px;
}

.questionlanding-container .addAnswer .divide .coin h2 {
  font-size: 16px;
  color: #0678b1;
  font-weight: 500;
}

.questionlanding-container .addAnswer .inputBox {
  border: solid 1px #ddd;
  padding: 12px;
  border-radius: 8px;
  margin-top: 8px;
}

.questionlanding-container .addAnswer .inputBox span {
  font-size: 18px;
  color: #000;
  font-weight: 600;
}

.questionlanding-container .addAnswer .inputBox .type {
  font-size: 15px;
  color: #999;
  margin-top: 9px;
}

.questionlanding-container .addAnswer .inputBox .submitButton {
  display: block;
  margin-top: 30px;
  text-align: end;
}

.questionlanding-container .addAnswer .inputBox .submitButton button {
  background: #0678b1;
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  text-transform: capitalize;
}

/* Responsive */
@media only screen and (max-width: 550px) and (min-width: 360px) {
  .questionlanding-container .bot .botDetail .botData {
    width: 100%;
  }
}

@media only screen and (max-width: 900px) and (min-width: 551px) {
  .questionlanding-container .bot .botDetail .botData {
    width: 48%;
  }
}

@media only screen and (max-width: 1299px) and (min-width: 901px) {
  .questionlanding-container .bot .botDetail .botData {
    width: 48%;
  }
}
