.peerConnectionState-new {
  color: cornflowerblue;
}

.peerConnectionState-connecting {
  color: orange;
}

.peerConnectionState-connected {
  color: green;
}

.peerConnectionState-disconnected,
.peerConnectionState-closed,
.peerConnectionState-failed {
  color: red;
}

.iceConnectionState-new {
  color: cornflowerblue;
}

.iceConnectionState-checking {
  color: orange;
}

.iceConnectionState-connected,
.iceConnectionState-completed {
  color: green;
}

.peerConnectionState-disconnected,
.peerConnectionState-closed,
.peerConnectionState-failed {
  color: red;
}

.iceGatheringState-new {
  color: cornflowerblue;
}

.iceGatheringState-gathering {
  color: orange;
}

.iceGatheringState-complete {
  color: black;
}

.signalingState-stable {
  color: green;
}

.signalingState-have-local-offer,
.signalingState-have-remote-offer,
.signalingState-have-local-pranswer,
.signalingState-have-remote-pranswer {
  color: cornflowerblue;
}

.signalingState-closed {
  color: red;
}

/* added css from here */

/* body * {
    font-family: 'Mulish', sans-serif;
  } */

.container {
  width: 100%;
  height: 100%;
  position: relative;
}

#content {
  position: relative;
  margin: 0 auto;
}

/* add media screen from 992 */
@media (min-width: 992px) {
  #content {
    width: 820px;
  }
}

#buttons {
  clear: both;
  padding: 0 0 0 0;
  text-align: center;
}

button {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  margin: 0 5px;
  background-color: #7439b3;
  color: #fff;
}

button:hover {
  cursor: pointer;
  transition: all 0.2s ease-out;
}

#status {
  clear: both;
  padding: 20px 0 0 0;
  text-align: left;
  display: inline-block;
  zoom: 1;
  line-height: 140%;
  font-size: 15px;
  position: absolute;
  top: 0;
  left: 0;
}

#status div {
  padding-bottom: 10px;
}

/* video {
    display: block;
    border:1px solid;
    border-radius: 50%;
    background-color: #fff;
  } */

.chatcontainer {
  display: flex;
}

.inputcontainer {
  position: relative;
  width: 100%;
}

input {
  width: 100%;
  box-sizing: border-box;
}

.icon-container {
  position: absolute;
  right: 60px;
  top: calc(50% - 10px);
}

.upload-icon-container {
  position: absolute;
  right: 10px;
  top: calc(50% - 12px);
  cursor: pointer;
}
.upload-icon-label {
  margin-right: 5px;
}

/* MyBot */
mybot.center .chatCont,
mybot.center .profile_div {
  left: 0;
  right: 0;
  margin: 0 auto;
}

mybot.left .chatCont,
mybot.left .profile_div {
  left: 0;
}

mybot .chatCont {
  position: fixed;
  width: 400px;
  height: 400px !important;
  border: 1px solid #0a081e;
  bottom: 65px;
  right: 0;
  background: #0a081e url(../img/bg1.jpg) repeat;
  border-top-left-radius: 3px;
  z-index: 10000;
  display: none;
}

mybot .close {
  position: absolute;
  right: 5px;
  margin-top: -60px;
  color: #9e1f62;
  font-size: 18px;
  cursor: pointer;
  opacity: 1;
  text-shadow: none;
}

mybot .close .fa {
  color: #9e1f62;
}

mybot .bot_profile {
  position: absolute;
  right: 0;
  margin-top: -45px;
  text-align: center;
  width: 400px;
  display: none;
  z-index: 1000;
}

mybot .bot_p_img {
  width: 80px;
  border-radius: 50%;
  width: 80px;
  border-radius: 50%;
  /* background: #fff; */
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
}

mybot .chatForm {
  position: absolute;
  bottom: -65px;
  right: 0;
  margin-bottom: 0;
  width: 400px;
  display: none;
}

mybot .input-wrapper {
  display: flex;
  background: #0a081e;
}

mybot .bot-txt {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

mybot #send-button {
  background-color: #9e1f62;
  color: #fff;
  border: none !important;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0 10px;
  cursor: pointer;
}

mybot .bot-txt,
mybot .bot-txt:focus {
  box-shadow: none;
  border-radius: 0;
  height: 66px;
  border: 0;
  border-top: 1px solid #0a081e;
  border-left: 1px solid #0a081e;
  background-color: #0a081e;
  color: #fff;
}

mybot .resultDiv .botResult {
  background: #202123;
  color: #fff;
  border-radius: 3px;
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  width: 400px;
  float: left;
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
  border-top-left-radius: 0;
  margin-bottom: 10px;
  margin-top: 5px;
  width: 100%;
  position: relative;
}

mybot .resultDiv .botResult:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-right: 15px solid #202123;
  left: -15px;
  margin-top: -12px;
}

mybot .resultDiv .userEnteredText {
  background: #9e1f62;
  float: right;
  color: #ffffff;
  border-radius: 3px;
  padding: 12px;
  font-size: 15px;
  font-weight: 400;
  width: 400px;
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
  border-top-right-radius: 0;
  position: relative;
  left: -6px;
  margin-bottom: 10px;
  margin-top: 5px;
  width: 100%;
  word-wrap: break-word;
}

mybot .resultDiv .userEnteredText:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-left: 15px solid #9e1f62;
  position: absolute;
  right: -15px;
  margin-top: -12px;
}

mybot .profile_div {
  position: fixed;
  bottom: 75px;
  right: 0px;
  width: 200px;
  cursor: pointer;
  z-index: 99999999;
}

mybot .img-profile {
  width: 65px;
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
  /* background: white; */
  border-radius: 50px;
}

mybot .col-hgt {
  height: 100px;
  display: flex;
  align-items: center;
  float: left;
  margin-right: 10px;
}

mybot .chat-txt {
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
  padding: 15px 15px;
  border-radius: 50px;
  background: #0a081e;
  color: #fff;
}

/* Spinner start */
mybot .spinner {
  background: #9e1f62;
  width: 70px;
  text-align: center;
  display: none;
  border-radius: 4px;
  position: relative;
  top: 0px;
  left: 19px;
  padding: 7px 10px;
  border-top-left-radius: 0;
}

mybot .spinner:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-right: 15px solid #9e1f62;
  left: -15px;
  margin-top: -7px;
}

mybot .spinner > div {
  width: 10px;
  height: 10px;
  background-color: #fff;
  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;
}

mybot .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

mybot .spinner .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);
  }
}
/* Spinner End */

/* Suggestions */
mybot .suggestion {
  background: #fff;
  color: #000;
  border-radius: 3px;
  padding: 12px;
  font-size: 14px;
  font-weight: 400;
  width: 400px;
  float: left;
  box-shadow: 0 0px 1px 0 rgba(0, 0, 0, 0.16), 0 0px 10px 0 rgba(0, 0, 0, 0.12);
  margin-left: 5px;
  border-top-left-radius: 0;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}

mybot .suggestion:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-right: 15px solid #fff;
  left: -15px;
  margin-top: -12px;
}

mybot .suggestion .sugg-options {
  display: block;
  background: #9e1f62;
  color: #fff;
  text-align: center;
  padding: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 300;
}

mybot .suggestion .sugg-title {
  font-size: 15px;
  font-weight: 300;
  margin-bottom: 10px;
}

mybot .suggestion span:last-child {
  margin-bottom: 0;
}
/* Suggestions end */

.resultDiv {
  padding: 35px 20px 30px 20px;
  overflow-y: auto;
  height: 100%;
}

@media screen and (max-width: 500px) {
  mybot .resultDiv .userEnteredText,
  mybot .resultDiv .botResult,
  mybot .suggestion {
    width: 90%;
    margin-bottom: 20px;
  }
  mybot .chatCont,
  mybot .chatForm {
    width: 100%;
  }
  mybot .chatCont {
    height: 70% !important;
  }
}
/* MyBot end */

#voice-icon {
  position: absolute;
  right: 10px;
  top: calc(50% - 11px);
  cursor: pointer;
}

#voice-button,
#fileuploadIcon {
  color: #fff;
  cursor: pointer;
}

#stop-button {
  color: #9e1f62;
  cursor: pointer;
}

.airesponse .chat-message-content {
  white-space: pre-line;
}

.stop-button {
  animation: glowing 2s ease-in-out infinite;
  background-color: rgba(158, 31, 98, 0.7);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  padding: 4px 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease-in-out;
}

.stop-button:hover {
  background-color: rgba(158, 31, 98, 0.9);
}

@keyframes glowing {
  0% {
    background-color: rgba(158, 31, 98, 0.7);
    box-shadow: 0 0 5px rgba(158, 31, 98, 0.7), 0 0 10px rgba(158, 31, 98, 0.5);
  }

  50% {
    background-color: rgba(158, 31, 98, 0.5);
    box-shadow: 0 0 15px rgba(158, 31, 98, 0.7), 0 0 20px rgba(158, 31, 98, 0.5);
  }

  100% {
    background-color: rgba(158, 31, 98, 0.7);
    box-shadow: 0 0 5px rgba(158, 31, 98, 0.7), 0 0 10px rgba(158, 31, 98, 0.5);
  }
}

.chat-talk:hover,
.chat-copy:hover {
  transform: scale(1.2); /* Scale up the icon on hover */
}
