.mic-container {
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mic-container .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  transition: 0.5s;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
  position: relative;
}

.mic-container .circle i {
  color: #b2b1b1;
  font-size: 23px;
  transition: 0.9s;
}

.mic-container .circle:before {
  content: '';
  width: 64px;
  height: 64px;
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
  position: absolute;
}

.mic-container .circle.active {
  background: #ff0000;
}

.mic-container .circle.inactive {
  background: rgb(1, 112, 212);
}

.mic-container .circle.active:before {
  background: gray;
  animation: custom_bounce_animation 0.8s ease-in-out infinite 0.5s;
}

.mic-container .circle.active i {
  color: #ffffff;
}

@keyframes custom_bounce_animation {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1.2);
  }

  75% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.3);
  }
}.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    transition: 0.5s;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  
  .circle i {
    color: #b2b1b1;
    font-size: 23px;
    transition: 0.9s;
  }

  .circle:before {
    content: '';
    width: 64px;
    height: 64px;
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    position: absolute;
  }

  .circle.inactive {
    background: rgb(1, 112, 212);
  }/**
* CSS Reset based on https://hankchizljaw.com/wrote/a-modern-css-reset/
* Some modifications made for our specific needs.
*/

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  overflow: hidden;
}

/* Standardize list styles on ul, ol elements */
ul,
ol {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 40px;
}

/* Remove default margin */
/* stylelint-disable selector-no-qualifying-type */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
form,
pre,
table,
td,
th,
thead,
tr,
a,
select,
option,
textarea,
input,
fieldset,
div,
button,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  /* stylelint-enable */
  margin: 0;
}.message-viewer-bot{
  padding-left: 100px;
    padding-top: 20px;
    margin: 0px 20%;
}

.message-viewer-bot h2,
.message-viewer-bot h3 {
  margin: 0.8rem 0;
}

.message-viewer-bot li {
  margin: 0.8rem 0;
  padding-left: 100px;
}

.message-viewer-bot li strong {
  color:rgb(111, 66, 66);
}

.message-viewer-bot table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.message-viewer-bot th {
  background-color: #f5f5f5;
  color: #3E3E3E;
  ;
  font-weight: bold;
  padding: 16px;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
}

.message-viewer-bot td {
  padding: 14px;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
}

.message-viewer-bot tr:hover {
  background-color: #f9f9f9;
  transition: background-color 0.3s;
}

.message-viewer-bot th:first-child,
.message-viewer-bot td:first-child {
  padding-left: 24px;
}

.message-viewer-bot th:last-child,
.message-viewer-bot td:last-child {
  padding-right: 24px;
}.chat-bubble {
  padding: 16px 28px;
  display: inline-block;
  width: 172px;
}

.typing {
  align-items: center;
  display: flex;
  height: 17px;
}

.typing .dot {
  animation: mercuryTypingAnimation 1.8s infinite ease-in-out;
  background-color: #0170D4;
  border-radius: 50%;
  height: 7px;
  margin-right: 4px;
  vertical-align: middle;
  width: 7px;
  display: inline-block;
}

.typing .dot:nth-child(1) {
  animation-delay: 200ms;
}

.typing .dot:nth-child(2) {
  animation-delay: 300ms;
}

.typing .dot:nth-child(3) {
  animation-delay: 400ms;
}

.typing .dot:last-child {
  margin-right: 0;
}

@keyframes mercuryTypingAnimation {
  0% {
    transform: translateY(0px);
    background-color: #0170D4;
  }

  28% {
    transform: translateY(-7px);
    background-color: hsl(189, 99%, 41%);
  }

  44% {
    transform: translateY(0px);
    background-color: #B5D9CB;
  }
}