body {
  background-color: #D0D0D0;
  margin: 0;
}

header {
  background-color: #FFFFFF;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;

}

.stickHeader {
  background-color: #FFFFFF;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  /* flex-direction: column; */
  flex-direction: row;
  align-items: center;
  position: relative;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  flex-wrap: wrap;
}

.logo-container {
  /* max-width: 50px; */
  /* margin-bottom: 10px; */
  align-self: flex-start;
}

.logo-container img {
  width: auto;
  height: 70px;
  object-fit: cover;
}

.logo-container-small {
  position: absolute;
  top: 8px;
  right: 8px;
  max-width: 30px;
  /* margin-bottom: 10px; */
}

.logo-container-small img {
  width: 100%;
  height: auto;
}

.title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  text-transform: capitalize;
  word-break: break-word;
  /* padding: 0 20px; */
  padding-left: 8px;
  width: calc(100% - 60px);
}
.completeSurvey {
  margin: 0 auto;
}

.subtitle {
  margin: 0;
  text-align: center;
  font-size: 13px;
  color: #666;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.conversation {
  flex-grow: 1;
  overflow-y: auto;
  padding-bottom: 50px;
}

.chat-container {
  /* position: absolute; */
  /* max-height: calc(100vh - 230px); */
  width: 100%;
  /* Add this line */
  /* overflow-y: auto; */
  background-color: #f1f1f1;
  padding: 15px;
  border-radius: 10px;
}

.bot {
  background-color: #FFFFFF;
  color: #000000;
  border-radius: 20px;
  padding: 10px 20px;
  margin-bottom: 10px;
  max-width: 82%;
  min-width: 235px;
  float: left;
  clear: both;
}

.bot-error {
  background-color: #ffa64d;
  color: #000000;
  border-radius: 20px;
  padding: 10px 20px;
  margin-bottom: 10px;
  max-width: 100%;
}

.comment-area {
  color: #000000;
  /* border-radius: 20px; */
  padding: 10px 20px;
  margin-bottom: 10px;
  max-width: 82%;
  clear: both;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#skip-btn {
  background-color: #808080;
  color: #FFFFFF;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;

}

.user {
  background-color: #09B950;
  color: #FFFFFF;
  border-radius: 20px;
  padding: 10px 20px;
  margin-bottom: 10px;
  max-width: 70%;
  float: right;
  clear: both;
}

.input-container {
  display: flex;
  align-items: center;
  width: calc(100% - 50px);
  /*position: absolute;*/
  bottom: 0;
  padding-bottom: 10px;
  box-sizing: border-box;
  left: 20px;
  z-index: 1;
}

#message {
  flex-grow: 1;
  margin-right: 10px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #CCCCCC;
}

#send-btn {
  background-color: #09B950;
  color: #FFFFFF;
  border: none;
  border-radius: 20px;
  padding: 10px 20px;
  cursor: pointer;
}

.footer {
  position: relative;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

html,
body {
  height: 100%;
  margin: 0;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.content {
  flex: 1;
  padding-top: 140px;
}

.content.ChatMainContent {
  padding-top: 180px;
}

.content.TouchMainContent {
  padding-top: 145px;
}
.content.TouchMainContent.reviewPageCls{
  padding-top: 170px;
}
@media only screen and (max-width: 480px) {
  .content.TouchMainContent.reviewPageCls{
    padding-top: 200px;
  }
  .content.TouchMainContent{
    padding-top: 175px;
  }
}
.categoryLabel {
  text-align: center;
  font-size: 16px;
  color: #111;
}

.question-count {
  color: red;
  font-size: 14px;
}

.begin-button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  transition-duration: 0.4s;
  border-radius: 4px;
}

.begin-button:hover {
  background-color: white;
  color: black;
}

/* Increase font size on mobile devices */
@media only screen and (max-width: 600px) {
  body {
    font-size: 18px;
  }

  input[type="text"] {
    font-size: 18px;
    height: 40px;
    width: 200px;
  }

  /* .chat-container {
    max-height: calc(100vh - 170px);
  } */
}

.hide {
  display: none;
}

.instructions-box {
  padding: 16px;
  background-color: #f1f1f1;
  border-radius: 8px;
  margin-bottom: 16px;
}

.instructions-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #4d0019;
  text-align: center;
}

#continue-btn {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

#continue-btn-messages {
  background-color: #007bff;
  border-color: #007bff;
  color: white;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}

.instructions-icon-container {
  position: fixed;
  /* top: 45px; */
  /* right: 3px; */
  top: 54px;
  right: 8px;
  z-index: 2;
  cursor: pointer;
  /* margin-top: 20px; */

}

.instructions-icon {
  width: 30px;
  height: auto;
  margin-top: 20px;
}

.instructions-slideout-container {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 1;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
}

.instructions-close-btn {
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  float: right;
}

.closebtn {
  background-color: #003d00;
  border-radius: 20px;
  border: 1px solid #18ab29;
  color: #ffffff;
  cursor: pointer;
  display: inline-block;
  font-family: Arial;
  font-size: 14px;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  text-shadow: 0px 1px 0px #2f6627;
  transition: background-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  margin-top: 30px;
}

.closebtn:hover {
  background-color: #5cbf2a;
}

.closebtn:active {
  position: relative;
  top: 1px;
}

.instructions-close-btn-container {
  text-align: center;
}

.error_class {
  text-align: center;
  color: red;
  font-size: 24px;
}

/* chat styles start */
.feedback {
  padding: 10px 20px;
  margin-bottom: 10px;
  max-width: 82%;
  clear: both;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.custom-btn {
  padding: 9px 61px;
  font-size: 16px;
  cursor: pointer;
}

.custom-btn-secondary {
  background-color: #6c757d;
  color: #fff;
  border: 1px solid #6c757d;
}

.custom-btn-primary {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.custom-btn:hover {
  filter: brightness(90%);
}

.bodyData {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.headerData {
  background-color: #F5F5F5;
  text-align: center;
  padding: 20px;
}

.question-box {
  background-color: #49B0E6;
  border: 2px solid #B9D4AA;
  border-radius: 10px;
  margin-bottom: 5px;
  padding: 8px;
  text-align: left;
  cursor: pointer;
  font-size: 1.0em;
}

.options-box {
  display: none;
  margin-bottom: 5px;
}

.option.selected {
  background-color: #266E13;
  color: white;
}

.option.selected:before {
  content: "✔ ";
}

#content-container {
  /* height: calc(100vh - 60px); */
  /* height: 70vh;
  overflow-y: auto; */
  padding-right: 5px;
}

/* chat styles end */


/* touch styles */
.question {
  margin: 20px;
  font-size: 1.2em;
}

.questionnumber {
  font-weight: 300;
  font-size: 15px;
  word-spacing: 3px;
  color: rgb(0 0 0);
  margin: 20px;
  font-style: italic;
}

.questioncategory {
  font-size: 16px;
  font-weight: 400;
  color: rgb(14 0 0);
  background: #E0F6FF;
  text-align: center;
  padding: 5px;
  margin: 0 !important;
}

.options {
  list-style-type: none;
  padding: 0;
}

.option.selected {
  background-color: #266E13;
  color: white;
}

.option.selected:before {
  content: "✔ ";
}

.continue {
  background-color: #266E13;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  width: 25%;
  text-align: center;
  margin: 20px auto;
  display: block;
  cursor: pointer;
}

.container_touch {
  width: 100%;
  margin: 0 auto;
}

.container_touch section {
  padding: 5px 16px 0 !important;
  border: 1px solid #cfcfcf;
  margin: 0 15px 15px !important;
}
.container_touch section p{
  margin: 0 0 10px !important;
}
.container_touch section .questionnumber {
  border-bottom: 1px solid #e2e2e2;
  color: #D3244E;
  font-style: normal;
  font-size: 16px;
  font-weight: bold;
  word-spacing: 0;
  padding-bottom: 10px;
}

.container_touch section .question {
  margin: 0 !important;
  /* padding: 15px 0; */
  padding: 0 0 10px;
  display: flex;
  gap: 10px;
}

.container_touch section .question span {
  font-weight: 600;
}

/* Responsive Design */
@media (min-width: 768px) {

  /* For tablets and desktops */
  .container_touch {
    width: 75%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {

  /* For tablets and desktops */
  .options {
    margin: 3%;
    width: 90%;
  }

  .chat-container {
    position: relative;
    /* max-height: calc(100vh - 230px); */
    width: 100%;
    /* Add this line */
    overflow-y: auto;
  }
}


.arrow {
  border: solid #FFF;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}

.left {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
}

.container_btn {
  width: 100%;
  /* float: left; */
  text-align: center;
  padding: 0 15px 15px;
  max-width: 400px;
  margin: 0 auto;
}

.container_btn button {
  display: inline-block;
}

.prev_btn {
  float: revert;
  padding: 12px;
  border-radius: 20px;
  margin-right: 10%;
  width: 40px;
  border: none;
  cursor: pointer;
  height: 45px;
  background: #000;
}

.next_btn {
  float: revert;
  padding: 12px;
  border-radius: 20px;
  margin-left: 10%;
  width: 40px;
  border: none;
  cursor: pointer;
  background: #000;
}

.skip_btn {
  float: revert;
  padding: 8px;
  border-radius: 12px;
  margin-left: 10%;
  width: 50px;
  border: none;
  cursor: pointer;
  color: #000;
  background: #EAA020;
}

.prev_btn.disabled,
.next_btn.disabled {
  cursor: not-allowed;
  background: #c2c2c2;
  opacity: 0.5;
}

/* touch styles end */

/* chat style starts */
.conversation {
  padding-bottom: 0;
}

.conversation .bot {
  width: 100%;
  max-width: calc(100% - 20px);
  float: none;
}

.conversation .comment-area {
  max-width: 100%;
  padding: 10px 0px;
  width: calc(100% - 20px) !important;
}

.feedback {
  padding: 10px 0px;
  margin-bottom: 10px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 20px) !important;
}

.input-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  width: calc(100% - 20px);
}

.custom-btn {
  padding: 9px 61px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.custom-btn-secondary {
  background-color: #6c757d;
  color: #fff;
  border: 1px solid #6c757d;
}

.custom-btn-primary {
  background-color: #007bff;
  color: #fff;
  border: 1px solid #007bff;
}

.custom-btn:hover {
  filter: brightness(90%);
}

.bodyData {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.headerData {
  background-color: #F5F5F5;
  text-align: center;
  padding: 20px;
}

.question-box {
  background-color: #49B0E6;
  border: 2px solid #B9D4AA;
  border-radius: 10px;
  margin-bottom: 5px;
  padding: 8px;
  text-align: left;
  cursor: pointer;
  font-size: 1.0em;
  display: flex;
  gap: 5px;
  align-items: flex-start;
  justify-content: space-between;
}

.options-box {
  display: none;
  margin-bottom: 5px;
}

.option {
  background-color: #cdf3b9;
  border: 1px solid #80a96a;
  border-radius: 4px;
  margin-bottom: 10px;
  width: 100%;
  padding: 8px 12px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
}

.option.selected {
  background-color: #266E13;
  color: white;
}

.option.selected:before {
  content: "✔";
}

/* Custom scrollbar styles */
#content-container::-webkit-scrollbar {
  width: 5px;
  background-color: #f1f1f1;
  /* Set background color */
}

#content-container::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 15px;
}

#content-container::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 15px;
}

.next_preBtn {
  padding-top: 20px;
  margin: 0 auto;
  max-width: 120px;
}

.next_preBtn .custom-btn {
  padding: 0;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 0;
  background: #fff;
}

.next_preBtn .custom-btn:hover {
  background: #f5f5f5;
}

.next_preBtn .custom-btn.prev_btn svg {
  transform: rotate(180deg);
}

/* touch styles end */
.arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: 2px;
}

.down-arrow {
  border-width: 5px 5px 0 5px;
  border-color: #555 transparent transparent transparent;
}

.up-arrow {
  border-width: 0 5px 5px 5px;
  border-color: transparent transparent #555 transparent;
}

.container_btn .container_innerbtn1 {
  display: flex;
  padding-top: 0px;
  justify-content: space-between;
}

.container_btn .container_innerbtn1 button .arrow {
  border-color: #fff;
}

.container_btn .container_innerbtn1 .prev_btn {
  background: #000;
}

.container_btn .container_innerbtn1 .next_btn {
  background: #000;
}

.container_btn .container_innerbtn1 .continue {
  color: #fff;
  margin: 0;
}

.container_btn .container_innerbtn2 {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  justify-content: center;
}

.container_btn .container_innerbtn2 .skip_btn {
  margin-left: 0;
  width: auto;
}

.container_btn .container_innerbtn2 .skip_comment {
  display: block;
  padding-top: 10px;
}

.optArrows {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.swal2-modal .swal2-title.my-swal-title {
  font-size: 20px;
}

.swal2-modal .swal2-html-container {
  font-size: 16px;
}

