:root { 
  --primary-color: #111111;
  --secondary-color:  #111111;
  /* --background-image: url("../img/body.png"); */
  --bot-Message-color:#EFEFEF;
  --user-Message-color:linear-gradient(to bottom, #111111, #111111);
  /*a8a5a5 */
}

body {
  font-family: 'Open Sans', sans-serif; 
  background: var(--background-image) no-repeat center center fixed;
  /* background-size: 0px; */
}

.iconcolor{
  color: var(--secondary-color);
}
/* ============= css related to chats =============== */
/*1072*/

.widget {
  display: none;
  width: 380px;
  right: 15px;
  height: 76vh;
  bottom: 2.25%;
  position: fixed;
  background: #fff;
  border-radius: 35px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.chatNowIndicator{
  margin-left: -120px;
  margin-bottom: -50px;
  width: 120px; 
  height: 40px;
  opacity: 0; 

  display: none;
  
  background: var(--user-Message-color);
  color: white;
  padding-top: 10px;
  padding-left: 24px;
  font-size: 12px;
  border-radius: 30px;
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  70% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

.chat_header {
  height: 80px !important;
  background: var(--user-Message-color);
  border-radius: 30px 30px 0px 0px;
  padding: 5px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 16px;
}

.chat_header_title {
  color: white;
  font-weight: 700;
}

.chats {
  /* display: none; */
  background-color: rgb(255, 255, 255);
  height: calc(100% - 140px);
  width: 100%;
  padding: 2px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-radius: 1px;
  overflow-y: scroll;
  margin-top: 1px;
  transition: 0.2s;
}

div.chats::-webkit-scrollbar {
  overflow-y: hidden;
  width: 0px;
  /* remove scrollbar space /
    background: transparent;
    / optional: just make scrollbar invisible */
}

.clearfix {
  margin-top: 1px;
  margin-bottom: 1px;
}

.botAvatar {
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  float: left;
  margin-left: 5px;
  margin-top: -9px;
  object-fit: contain;
  /* border: 2px solid  #060DCF ; */
}

.profileAvatarBox{display: flex;
  align-items: center;
  justify-content: center;
}

.chatHeader_details{
  flex-grow: 1;
  padding-left: 2%;
}

#companyName{
  margin: 0;
  font-size: 13px;
  font-weight: bold;
  color: white;
}

#profileStatus{
  margin: 0;
  font-size: 10px;
  color: rgb(255, 255, 255);
}

#profileStatus-1{
  margin: 0;
  font-size: 10px;
  color: rgb(255, 255, 255);
}

.profileAvatar {
  border-radius: 50%;
  width: 2em;
  height: 2em;
  /* border: 2px solid  #060DCF ; */
}

.botMsg {
  float: left;
  margin-top: 0px;
  background: var(--bot-Message-color);
  color: #212529;
  /* box-shadow: 2px 3px 9px 0px #9a82842e; */
  margin-left: 0.5em;
  padding: 10px;
  border-radius: 1.5em;
  max-width: 60%;
  min-width: 25%;
  font-size: 12px;
  word-wrap: break-word;
  border-radius: 2px 20px 20px 20px;
  margin-bottom: 15px;
}

.botMsg>a{
  color: rgb(0, 140, 255);
  text-decoration-line: underline;  
}


.botTime {
  float: left;
  color: black;
  margin-top: 0.5em;
  /* max-width: 60%;
  min-width: 25%; */
  font-size: 8px;
}

div.chats>pre {
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  margin: 0 !important;
  /* display: inline !important; */
  white-space: initial !important;
}

div.chats>ul:not(.browser-default) {
  padding-left: 1em;
}

div.chats>ul:not(.browser-default)>li {
  list-style-type: initial;
}

div.chats>span.botMsg>ol {
  padding-left: 1em;
}

textarea {
  box-shadow: none;
  resize: none;
  outline: none;
  overflow: hidden;
  font-family: Lato;
}

textarea::-webkit-input-placeholder {
  font-family: Lato;
}

textarea-webkit-scrollbar {
  width: 0 !important;
}

.userMsg {
  animation: animateElement linear 0.2s;
  animation-iteration-count: 1;
  margin-top: 0px;
  word-wrap: break-word;
  padding: 10px;
  float: right;
  margin-right: 0.5em;
  background: var(--user-Message-color);
  color: white;
  margin-bottom: 15px;
  font-size: 12px;
  max-width: 65%;
  min-width: 15%;
  border-radius: 20px 2px 20px 20px;
  /* box-shadow: 0px 2px 5px 0px #9a828454; */
}



.userTime {
  animation: animateElement linear 0.2s;
  animation-iteration-count: 1;
  margin-right: 0.5em;
  color: white;
  margin-top: 10px;
  /* max-width: 65%;
  min-width: 15%; */
  font-size: 8px;
  /* box-shadow: 0px 2px 5px 0px #9a828454; */
}

.locationUserTime{
  margin-top: 10px;
}

blockquote {
  margin: 20px 0;
  padding-left: 1.5rem;
  border-left: 5px solid #ee6e73;
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  margin-inline-start: 0 !important;
  margin-inline-end: 0 !important;
}

.userAvatar {
  animation: animateElement linear 0.3s;
  animation-iteration-count: 1;
  background-color: white;
  border-radius: 50%;
  width: 1.5em;
  height: 1.5em;
  float: right;
  margin-right: 5px;
  margin-top: -6px;
  /* border: 2px solid  #060DCF ; */
}

.keypad {
  /* display: none;  */
  background: rgb(255, 255, 255);
  height: 80px !important;
  position: absolute;
  bottom: 0px;
  width: 100%;
  padding: 5px 0px 0px 0px;
  border-radius: 0px 0px 30px 30px;
  border-top: 1px solid #e3e7ee;
}


.inputBox{
  background-color: #ffffff;
  max-height: 75%;
  display: flex;
}

.poweredbyYenasys{
  display: grid;
  place-content: center;
  margin-bottom: 0;
  padding-top: 0;
  font-size: 10px;
  z-index: 1000;
}

.pbText{
  text-align: center;
}

.usrInput {
  padding: 0.69em;
  width: 72%;
  position: absolute;
  /* margin-left: 3%; */
  border: 0;
  border-radius: 25px;
  padding-left: 15px;
  height: 40px;
  cursor: text;
  background-color: #f8f8f8;
}

#sendButton {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  float: right;
  margin-right: 15px;
  text-align: center;
  padding-top: 9px;
  font-size: 21px;
  cursor: pointer;
  color: var(--primary-color);
}

#sendSTT {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  float: right;
  margin-right: 15px;
  text-align: center;
  padding-top: 9px;
  font-size: 21px;
  cursor: pointer;
  color:var(--primary-color);
}

#paperClip {
  height: 20px;
  width: 30px;
  border-radius: 50%;
  display: inline-block;
  float: left;
  margin-right: 15px;
  text-align: center;
  padding-right: 10px;
  padding-top: 6px;
  font-size: 22px;
  transform: scaleY(-1);
  transform: scaleX(-1);
  cursor: pointer;
  color: var(--primary-color);
}

.imgProfile {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 50px;
  width: 55%;
  margin-bottom: 30px;
  margin-left: 10px;
}

.profile_div {
  position: fixed;
  padding: 5px;
  width: 100px;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

/* css for dropdown menu of the bot */

#close,
#restart,
#clear {
  cursor: pointer;
}

#close{
  font-size: large;
}

.dropdown-trigger {
  cursor: pointer;
  color: white;
  margin-right: 5px;
  float: right;
}

.dropdown-trigger1 {
  cursor: pointer;
  color: rgb(255, 255, 255);
  margin-left: 70%;
  margin-top: -1%;
}

.dropdown-content li>a,
.dropdown-content li>span {
  color: var(--primary-color);
}

@keyframes animateElement {
  0% {
    opacity: 0;
    transform: translate(0px, 10px);
  }

  100% {
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

/*========== css related to chats elements============= */

/* css for card details of carousel cards */

.content {
  transition: 0.2s;
  display: none;
  width: 350px;
  right: 15px;
  height: 500px;
  bottom: 5%;
  position: fixed;
  background: white;
  border-radius: 10px 10px 10px 10px;
  box-shadow: 0px 2px 10px 1px #b5b5b5;
}

.content_header {
  object-fit: cover;
  width: 100%;
  height: 40%;
  border-radius: 10px 10px 0px 0px;
}

.content_data {
  overflow-y: scroll;
  height: 70%;
  position: absolute;
  left: 0px;
  width: 100%;
  top: 30%;
  z-index: 1000;
  border-radius: 10px;
  background: white;
  padding: 5px;
  box-shadow: 0px -1px 20px 3px #9c9393ba;
}

.content_title {
  color: black;
  font-weight: 600;
  word-wrap: break-word;
  padding-left: 5px;
  font-size: 1.2em;
  width: 80%;
  border-radius: 0.28571429rem;
}

.votes {
  font-size: 12px;
  color: lightslategray;
}

.ratings {
  margin-top: 5px;
  background: #9acd32;
  padding: 5px;
  color: white;
  border-radius: 5px;
}

.user_ratings {
  border-radius: 0.28571429rem;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.total_ratings {
  font-size: 12px;
  opacity: 0.5;
  margin-left: 5px;
}

.content_data>.row .col {
  padding: 5px;
}

.metadata_1,
.metadata_2,
.metadata_3,
.metadata_4,
.row {
  margin-bottom: 0px;
}

.metadata_1 {
  color: lightslategrey;
  padding: 5px;
}

.order,
#closeContents {
  color: #060dcfc7;
}

.metadata_2,
.metadata_3,
.metadata_4,
.metadata_5,
.metadata_6 {
  color: lightslategrey;
  padding: 5px;
}

.average_cost,
.timings,
.location,
.cuisines {
  width: 70%;
  float: right;
  margin-right: 25%;
}

.fa .fa-user-o {
  font-size: 15px;
}

.stars-outer {
  display: inline-block;
  position: relative;
  font-family: FontAwesome;
}

.stars-outer::before {
  content: "\f006 \f006 \f006 \f006 \f006";
}

.stars-inner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
}

.stars-inner::before {
  content: "\f005 \f005 \f005 \f005 \f005";
  color: #f8ce0b;
}

div.content::-webkit-scrollbar {
  width: 0 !important;
}

div.content_data::-webkit-scrollbar {
  overflow-y: hidden;
  width: 0px;
  /* remove scrollbar space /
    background: transparent;
    / optional: just make scrollbar invisible */
}

/* css for single card */

.singleCard {
}

/* css for image card */

.imgcard {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.imgcardbot {
  object-fit: cover;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* css for markdown images */

.imgcard_mrkdwn {
  width: 80%;
  border-radius: 10px;
  margin-left: 1%;
}

/* css for suggestions buttons */

.suggestions {
  width: 60%;
  margin-left: 2.3rem;
  margin-bottom: 2rem;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  max-width: 80%;
  min-width: 25%;
}

.menuTitle {
  padding: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.menu {
  padding: 1rem;
}

.menuChips {
  display: block;
  background: var(--secondary-color);
  color: #fff;
  text-align: left;
  padding: 10px;
  margin: 2px;
  cursor: pointer;
  border-radius: 30px;
  font-size: 12px;
  word-wrap: break-word;

}

/* cards carousels */

.cards {
  display: none;
  position: relative;
  max-width: 300px;
}

.cards_scroller {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  height: 210px;
  width: 300px;
  transition: width 0.5s ease;
  margin-left: 5px;
  /* Enable Safari touch scrolling physics which is needed for scroll snap */
  -webkit-overflow-scrolling: touch;
}

.cards_scroller img {
  border-radius: 10px;
}

.cards div.note {
  position: absolute;
  /* vertically align center */
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  position: absolute;
  font-size: 4em;
  color: white;
}

.cards .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 30px;
  border-radius: 2px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  z-index: 1;
}

.cards .arrow.next {
  display: none;
  font-size: 2em;
  color: #ffffff;
  right: 10px;
}

.cards .arrow.prev {
  display: none;
  font-size: 2em;
  color: #ffffff;
  left: 10px;
}

.cards_scroller::-webkit-scrollbar {
  width: 0 !important;
}

.cards_scroller>div.carousel_cards {
  margin: 5px;
  scroll-snap-align: center;
  position: relative;
  scroll-behavior: smooth;
}

.cards_scroller div.carousel_cards {
  min-width: 50%;
  min-height: 70%;
  background: #b5b5b5;
  border-radius: 10px;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translatex(-10px);
    -moz-transform: translatex(-10px);
    -o-transform: translatex(-10px);
    transform: translatex(-10px);
  }

  to {
    opacity: 1;
    -webkit-transform: translatex(0);
    -moz-transform: translatex(0);
    -o-transform: translatex(0);
    transform: translatex(0);
  }
}

.in-left {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  -o-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -o-animation-duration: 0.8s;
  animation-delay: 0.8s;
}

/* css for cards within the cards carousels */

.cardBackgroundImage {
  width: 100%;
  border-radius: 5px;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.cardFooter {
  background: rgba(56, 53, 60, 0.86);
  border-radius: 0px 0px 5px 5px;
  position: absolute;
  z-index: 3;
  color: white;
  bottom: 0;
  width: 100%;
  height: 30%;
  word-wrap: break-word;
  padding: 1px;
}

.cardTitle {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 90%;
  /* height: 40%; */
  display: inline-block;
  margin-bottom: 1px;
  font-size: 15px;
  /* font-weight: 600; */
  padding: 5px;
  /* color:#060dcfc7; */
  color: #ffffff;
  cursor: pointer;
}

.cardDescription {
  padding: 5px;
  font-size: 13px;
  color: white;
  line-height: 15px;
}

/*css for dropDown messages*/

.dropDownMsg {
  float: left;
  margin-top: 5px;
  background: white;
  color: black;
  box-shadow: 2px 3px 9px 0px #9a82842e;
  margin-left: 0.5em;
  padding: 10px;
  border-radius: 1.5em;
  max-width: 60%;
  min-width: 25%;
  font-size: 13px;
  word-wrap: break-word;
}

.dropDownMsg>select {
  border: 0px solid #f2f2f2;
}

/* css for quick replies */

.quickReplies {
  padding: 5px;
  position: relative;
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  transition: all 0.2s;
  transform: scale(0.98);
  will-change: transform;
  user-select: none;
  cursor: pointer;
  scroll-behavior: smooth;
}

.quickReplies::-webkit-scrollbar {
  width: 0 !important;
}

.quickReplies.active {
  cursor: grabbing;
  cursor: -webkit-grabbing;
  transform: scale(1);
}

.chip {
  background-color: white;
  border: 1px solid#060dcfc7;
  color: #060dcfc7;
  font-weight: bolder;
  text-align: center;
}

.chip:hover {
  background-color: #060dcfc7;
  color: white;
}

/* css for charts */

#expand:hover {
  font-size: 18px;
}

#expand {
  position: absolute;
  right: 10px;
  top: 10px;
}

/* 
.modal {
  height: 60%;
  border-radius: 10px;
} */

.chart-container {
  position: relative;
  margin: auto;
  height: 25vh;
  width: 90%;
  border-radius: 10px 10px 10px 10px;
  margin-left: 5%;
  background: white;
  box-shadow: 2px 3px 9px 0px #9a82847a;
  margin-top: 5px;
}

/* css for collapsible */

.collapsible {
  margin-top: 5px;
  margin-left: 5%;
  max-width: 60%;
  min-width: 25%;
  font-size: 13px;
  word-wrap: break-word;
  border-radius: 20px;
  background: white;
}

.collapsible-body {
  padding: 15px;
}

.collapsible-header {
  font-weight: bold;
  color: #060dcfc7;
}

ul.collapsible>li:first-child .collapsible-header {
  border-radius: 20px 20px 0px 0px;
}

ul.collapsible>li:last-child .collapsible-header {
  color: #060dcfc7;
  border-radius: 0px 0px 20px 20px;
}

ul.collapsible>li:last-child .collapsible-body {
  border-bottom: none;
}

.collapsible-header {
  padding: 10px;
}

/* css for botTyping */

.botTyping {
  float: left;
  margin-top: 5px;
  background: #e3e7ee;
  color: #000000;
  /* box-shadow: 2px 3px 9px 0px #9a82847a; */
  margin-left: 0.5em;
  padding: 15px;
  border-radius: 5px 20px 20px 20px;
  max-width: 60%;
  min-width: 20%;
  word-wrap: break-word;
  border-radius: 5px 20px 20px 20px;
}

.botTyping>div {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color);
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  margin-right: 5px;
}

.botTyping .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.botTyping .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {

  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

input:focus {
  outline: none;
}

video:focus {
  outline: none;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  margin-left: 5%;
  border-radius: 10px;
  border-style: none;
}

/* Bot pop-up intro */

.tap-target {
  color: #fff;
  background:var(--primary-color);
}

.pdf_attachment {
  border: 1px solid white;
  width: 100%;
  height: 14%;
  border-radius: 10px;
}


.pdf_attachment_user {
  border: 0.5px solid #00000014;
  width: 100%;
  border-radius: 10px;
}

.pdf_icon {
  border-radius: 10px 0px 0px 10px;
  height: 100%;
  font-size: 25px;
  padding: 7% !important;
  color:  var(--user-Message-color);
  background-color: #302c2c;
}

.pdf_icon_bot {
  border-radius: 10px 0px 0px 10px;
  height: 100%;
  font-size: 25px;
  padding: 7% !important;
  color:  var(--user-Message-color) ;
  background-color: white;
}

.pdf_link {
  height: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


.pdf_link>a {
  color: #ffffff;
}




/* Speech Listening Mode */

.speech {
  float: right;
  border: none;
  padding: 0;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: #fff;
  padding: 0;
  margin-right: 10px;
  background: var(--secondary-color);
  position: relative;
  line-height: 44px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;

}

.pulse-ring {
  float: right;
  content: '';
  width: 42px;
  height: 42px;
  border: 5px solid var(--secondary-color);
  border-radius: 50%;
  position: relative;
  top: -1px;
  left: 41px;
  animation: pulsate infinite 2s;
}

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}



/* Modal Image Preview */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}

.modal.show .modal-dialog {
  transform: none;
}

.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  width: 100%;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer>* {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {

  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.modal-fullscreen .modal-header {
  border-radius: 0;
}

.modal-fullscreen .modal-body {
  overflow-y: auto;
}

.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}

@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }

  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }

  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }

  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}



/* Paper Clip Styles */
.userTextInput{
  flex-grow: 1;
}
.paperclip {
  height: 20px;
  padding-top: 6px;
  font-size: 22px;
  transform: scaleY(-1);
  cursor: pointer;
}


.dropbtn {
  /* background-color: #3498DB; */
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  
}

.dropup {
  position: relative;
}

.dropup-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  bottom: 50px;
  z-index: 1;
}

.dropup-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.dropup-content a:hover {background-color: #ccc}

.dropup:hover .dropup-content {
  display: block;
} 

/* Paper Clip Styles ends */

/* Location styles Starts */
.user_Location{
  animation: animateElement linear 0.2s;
  animation-iteration-count: 1;
  color: white;
  font-size: 13px;
  max-width: 100%;
  min-width: 15%;
  height: 40%;
  border-radius: 15px 15px 15px 15px;
  border: none;
}

.bot_Location{
  animation: animateElement linear 0.2s;
  animation-iteration-count: 1;
  color: white;
  font-size: 13px;
  max-width: 100%;
  min-width: 15%;
  height: 40%;
  border-radius: 15px 15px 15px 15px;
  border: none;
}

/* Location styles Ends */








/* 
.modal-backdrop {
  background-color: rgb(46, 45, 45);
} */

.widget1 {
  display: none;
  width: 350px;
  right: 15px;
  height: 75vh;
  bottom: 2.25%;
  position: fixed;
  background: #fff;
  border-radius: 35px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.signup-form {
  /* width: 480px; */
  /* padding: 8px; */
  width: 100%;
  border-radius: 20px;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  text-align: center;
  max-height: fit-content;
}


.signup-btn {
  width: 100%;
  border: none;
  padding: 8px 0;
  margin: 24px 0;
  border-radius: 4px;
  background-color: #6366f1;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

.signup-btn:active {
  background-color: #4f46e5;
  transition: all 0.3s ease;
}















.form-style-7{
  min-width: 90%;
	/* margin:50px auto; */
	background:#fff;
	padding: 14px 0px 10px 0px;
	/* font-family: Georgia, "Times New Roman", Times, serif; */
}

.form-style-7 h1{
	display: block;
	text-align: center;
	padding: 0;
	margin: 0px 0px 20px 0px;
	color: #5C5C5C;
	font-size:x-large;
}
.form-style-7 ul{
	list-style:none;
	padding:0;
}
.form-style-7 li{
	border-radius: 3px;
  margin-bottom: 2rem;
}
.form-style-7 li:last-child{
	border:none;
	margin-bottom: 0px;
	text-align: center;
}

.form-style-7 li > label{
	display: block;
	float: left;
	margin-top: -17px;
	background: transparent;
	/* height: 14px; */
	color: #000000;
	font-size: 12px;
  font-weight:400;
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
}

label.inputRequired{
  display: block;
	float: right !important;
	margin-top: -11px !important;
  margin-right: 2px;
	background: transparent;
	/* height: 14px; */
	color: #0000008e !important;
	font-size: 9px !important;
  font-weight:400;
	overflow: hidden;
	font-family: Arial, Helvetica, sans-serif;
}

.form-style-7 input[type="text"],
.form-style-7 input[type="date"],
.form-style-7 input[type="datetime"],
.form-style-7 input[type="email"],
.form-style-7 input[type="number"],
.form-style-7 input[type="search"],
.form-style-7 input[type="time"],
.form-style-7 input[type="url"],
.form-style-7 input[type="password"],
.form-style-7 textarea,
.form-style-7 select 
{
	width: 90%;
	display: block;
	font-size: 13px;
  line-height: 20px;
  min-height: 28px;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  padding: 0px 11px 0px 11px;
  background: rgb(255, 255, 255);
  transition: all 0.1s ease 1ms;
	/* font-family: Georgia, "Times New Roman", Times, serif; */
}

.form-style-7 input[type="text"]:focus,
.form-style-7 input[type="date"]:focus,
.form-style-7 input[type="datetime"]:focus,
.form-style-7 input[type="email"]:focus,
.form-style-7 input[type="number"]:focus,
.form-style-7 input[type="search"]:focus,
.form-style-7 input[type="time"]:focus,
.form-style-7 input[type="url"]:focus,
.form-style-7 input[type="password"]:focus,
.form-style-7 textarea:focus,
.form-style-7 select:focus{
  border: 1.5px solid var(--secondary-color);
} 


.otpFeild>input[type="text"]{
  padding: 0;
}

.form-style-7 li > span{
	display: block;
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}

.form-style-7 textarea{
	resize:none;
}


.form-style-7 input[type="submit"],
.form-style-7 input[type="button"]{
  border: 1px solid var(--primary-color);
  width: 10rem;
	padding: 10px 10px 10px 10px;
	border-radius: 30px;
  margin-bottom: 5px;
  font-size: 12px;
}

.form-style-7 input[type="submit"]:hover,
.form-style-7 input[type="button"]:hover{
	/* background: #6B9FFF; */
	/* color:#fff; */
}

.otpFeild{
  width: 95%;
  display: inline-flex !important;
  grid-template-columns: 10% 10% 10% 10% 10% 10% !important;
  column-gap: 2% !important;
}

.otpValues{
  font-size: 17px !important;
  text-align: center !important;
  transition: 0.1s ease-in !important;
}


/* Remove number input arrows */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* Remove number input arrows - Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* Remove number input arrows - Edge */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Override button color using !important */
.btn-primary {
  background-color:var(--secondary-color) !important; 
  border-color: var(--secondary-color)!important; 
  color: #fff !important;
  width: 6rem;
  border-radius: 10px;
}


/*audio responce*/
/* Adjust the maximum width of the audio element */
.audioResponce {
  max-width: 100%;
  height: 40px;
  transition: width 0.3s ease;
  padding-bottom: 7px;
}

.audioRequest{
  max-width: 100%;
  height: 40px;
  transition: width 0.3s ease;
}

audio::-webkit-media-controls-time-remaining-display{
  -webkit-appearance: none;
  display: none;
}

audio::-webkit-media-controls-volume-slider-container{
  -webkit-appearance: none;
  -webkit-animation-direction: reverse;
}
audio::-webkit-media-controls-volume-slider{
  -webkit-appearance: none;
  -webkit-animation-direction: reverse;
}


/*record container*/
.recordercontainer {
  display: none;
  justify-content: space-between;
  position:absolute;
  height: 35vh;
  bottom: 50px;
  width: 100%;
  z-index: 0;
  background-color: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: rgba(17, 17, 26, 0.1) 0px -5px 40px;
  transition: 0.2s ease-in;
  animation: showRecordercontainer linear 0.3s;
}

@keyframes showRecordercontainer {
  0% {
    opacity: 0;
    transform: translate(0px, 15rem);
  }

  100% {
    opacity: 1;
    transform: translate(0px, 0rem);
  }
}


#closeRecorder{
  float: right;
  margin-right: 5px;
  margin-top: 5px;
  background-color: transparent;
  border: 0;
  font-size: x-large;
  cursor: pointer;
}

.main_set{
  width: 100%;
  display:inline-flex;
  flex-direction:row;
  justify-content: center;
}

.btnmic, .btnretake{
  appearance: none;
  border: none;
  outline: none;
  background: none;

  cursor: pointer;
  
}

.mic-toggle{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: var(47, 47, 225);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.mic-toggle::after,
.mic-toggle::before{
  --pad:0rem;
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  background-color: rgb(17 17 17);
  top: var(--pad);
  left: var(--pad);
  bottom: var(--pad);
  right: var(--pad);
  border-radius: 50%;
}

.mic-toggle::after{
  transition: 0.4s;
}

.mic-toggle::before{
  transition: 0.2s;
}

.mic-toggle:hover::before{
  --pad:-1rem;
}

.mic-toggle:hover::after{
  --pad:-2rem;
}

.mic-toggle span{
  position: relative;
  z-index: 1;
  color: white;
  font-size: 2rem;
}

.mic-toggle.is-Recording:after{
  animation: smoothPadAfter 0.6s ease-in alternate-reverse forwards infinite;
}

.mic-toggle.is-Recording:before{
  animation: smoothPadBefore 0.6s ease-in alternate-reverse forwards infinite;
}

@keyframes smoothPadAfter {
  0%{
      top: -2rem;
      left: -2rem;
      right: -2rem;
      bottom: -2rem;
  }
  100%{
      top: -1rem;
      left:-1rem;
      right:-1rem;
      bottom: -1rem;
  }
}

@keyframes smoothPadBefore{
  0%{
      top: -1rem;
      left: -1rem;
      right: -1rem;
      bottom: -1rem;
  }
  100%{
      top:-0.5rem;
      left: -0.5rem;
      right:-0.5rem;
      bottom: -0.5rem;
  }
}

/* audiofile  */
.playback{
  margin-bottom: 0rem;
  width: 90%;
}

.is-Hidden{
  display: none;
}


#btnRetakeVoiceMessage{
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #f5f5f5;
}

#btnRetakeVoiceMessage:hover{
  
  background-color: var(--bot-Message-color);
  top: 10%;
  bottom: 10%;
  border-radius: 50%;
}


.btnretake span{
  color: #000000;
  font-size: 16px;
  font-weight: 800;
}

.audioFile{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


/* attach files container */

/*record container*/
.attachFilescontainer {
  display: none;
  position:absolute;
  height: 51vh;
  bottom: 50px;
  width: 100%;
  z-index: 0;
  background-color: #ffffff;
  border-radius: 20px 20px 0 0;
  box-shadow: rgba(17, 17, 26, 0.1) 0px -5px 40px;
  transition: 0.2s ease-in;
  animation: showAttachFiles linear 0.2s;
  animation-direction: normal;
}

@keyframes showAttachFiles {
  0% {
    opacity: 0;
    transform: translate(0px, 4rem);
  }

  100% {
    opacity: 1;
    transform: translate(0px, 0rem);
  }
}

.main_attachmentset{
  overflow-y: scroll;
  padding: 1rem;
  height: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
}

.items{ 
  background-color: transparent;
  color: var(--secondary-color);
  border-radius: 50%;
  height: 5rem;
  width: 5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
  display: grid;
  place-items: center;
}

.itemContainer{
  margin: 0 auto;
  text-align: center;
}

.items:hover{
  cursor: pointer;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 1px inset, rgba(0, 0, 0, 0.9) 0px 0px 0px 1px;
}

.item_text{
  color: #000000;
  font-size: 11px;
}

.closeAttachmentsContainer{
  display: flex;
  justify-content: flex-end;
}

#closeAttachments{
  padding: 5px 10px ;
  background-color: transparent;
  border: 0;
  font-size: x-large !important;
  cursor: pointer;
  z-index: 100;
}


/* signup form */
.signinBtnContainer{
  display: inline-flex;
  gap: 20px;
}

#sendOTP{
  cursor: pointer;
  transition: 0.1s ease-in;
}

#sendOTP:hover{
  font-weight:500;
}

#resendOTP{
  cursor: pointer;
  transition: 0.1s ease-in;
  background-color: #f3faff;
}

#Verifyotp{
  cursor: pointer;
  transition: 0.1s ease-in;
}

#sendOTP,#Verifyotp{
  background-color: var(--secondary-color);
  color: white;
}

#Verifyotp:hover{
  font-weight:500 ;
}

#welcomeText{
  margin: 0;
  display: block;
  font-size: 12px;
}



#resendOTP:hover{
  background-color: var(--secondary-color);
  color: white;
}


/* HTML: <div class="loader"></div> */
.loader {
  height: 4px;
  width: 100%;
  --c:no-repeat linear-gradient(var(--secondary-color) 0 0);
  background: var(--c),var(--c),#ffffff;
  background-size: 60% 100%;
  animation: l16 3s infinite;
}
@keyframes l16 {
  0%   {background-position:-150% 0,-150% 0}
  66%  {background-position: 250% 0,-150% 0}
  100% {background-position: 250% 0, 250% 0}
}



/* Small devices such as large phones (640px and up) */
@media only screen and (max-width: 20em) {
  .profileAvatarBox{
    width: 7vh !important;
    height: 7vh !important;
  }
  .widget{
    height: 95vh;
    width: 90vw;
  }
  .widget1{
    height: 100% !important;
    width: 90vw !important;
  }
  .dropdown-trigger1{
    margin-left: 60% !important;
  }
  .form-style-7 input[type="submit"],
  .form-style-7 input[type="button"]{
    border: 1px solid var(--primary-color);
    width: 8rem;
    padding: 10px 10px 10px 10px;
    margin-bottom: 1rem;
    border-radius: 10px;
  }
  .chat_header{
    min-height: 48px;
    height: 20vh;
    font-size: 14px;
  }
  .usrInput{
    font-size:13px;
  }
  #close{
    font-size: medium !important;
  }
  #companyName{
    font-size:12px !important;
  }
  #profileStatus{
    font-size: 11px !important;
  }
  #profileStatus-1{
    font-size: 11px !important;
  }
  .attachFilescontainer{
    height: 60vh;
  }
  .recordercontainer {
    height: 40vh;
  }
}
/* Small devices such as large phones (640px and up) */
@media only screen and (max-width: 40em) {
  .widget{
    height: 95vh;
    width: 90vw;
  }
  .widget1{
    height: 95vh !important;
    width: 90vw !important;
  }
  .chat_header{
    font-size: 16px;
  }
  .usrInput{
    font-size: 14px;
  }
  #close{
    font-size: medium !important;
  }
  #companyName{
    font-size:14px !important;
  }
  #profileStatus{
    font-size: 10px !important;
  }
  #profileStatus-1{
    font-size: 10px !important;
  }
  .attachFilescontainer{
    height: 60vh;
  }
  .recordercontainer {
    height: 40vh;
  }
  
}




/* Medium devices such as tablets (768px and up) */
@media only screen and (max-width: 48em) {
}

/* Large devices such as laptops (1024px and up) */
@media only screen and (min-width: 64em) {}

/* Largest devices such as desktops (1280px and up) */
@media only screen and (min-width: 80em) {
  
}

.swal2-popup {
    width: 320px !important;
    height: 191px !important;
    border-radius: 30px !important;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px !important;
    border: 2px solid #000000 !important;
}

.swal2-icon {
    width: 3em !important;
    height: 3em !important;
    margin: 0.25em auto 0.875em !important;
}

.swal2-icon::before {
    font-size: 2.75em !important
}

.swal2-title {
    font-size: 14PX !important;
}
.swal2-content {
    font-size: 12PX !important;
}
.swal2-confirm {
  border-radius: 30px !important;
  height: 30px;
  font-size: 12px !important;
  background-color: #000000 !important;
}

.swal2-styled.swal2-cancel {
    border-radius: 30px !important;
    height: 30px;
    font-size: 12px !important;
    color: #000000 !important;
    border: 2px solid #000000 !important;
    background-color: #fff !important;
}

.swal2-container.swal2-shown {
    background-color: rgba(0, 0, 0, 0) !important;
}

.whatsapp-redirect {
  position: relative;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  width: 28px; 
  height: 28px; 
  background-color: rgba(255, 255, 255, 0.068); 
  border-radius: 8px;
  transition: 0.2s ease-in-out;
}

.whatsapp-redirect:hover {
  background-color: rgba(255, 255, 255, 0.178); 
}


.whatsapp-redirect .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 3px 6px;
  position: absolute;
  bottom: -25px; 
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 10px;
  transition: opacity 0.2s;
  z-index: 1;
}

.whatsapp-redirect:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.swal2-icon.swal2-question {
  border-color: #bbb !important;
  color: #bbb !important;
}