body {
  /*padding-top: 60px;*/
  height: 100%;
  font-family: "Open Sans", sans-serif;
  padding-bottom: 10px;
}

.label-required:after {
  content:"*";
  color: #ff0000;
}

.ai-message {
    background-color: rgba(57, 192, 237,.2);
    border-radius: 15px;
}
.ai-message thead th {
    background-color: #c0c0c0;
    border-bottom-width: 1px;
    padding-left: 7px;
    padding-right: 7px;
}
.ai-message tbody td {
    background-color: #f7f7f7;
    padding-left: 7px;
    padding-right: 7px;
}

.bg-chat {
    /*background-color: #a0aec0;*/
    background-color: #ffdb01;
}

.btn-reset {
    vertical-align: top;
    padding-top: 0px;
    padding-bottom: 2px;
}

/* CHAT STYLE BELOW */
.full-height {
    height: 100vh; /* full viewport height */
}
.card {
/*    height: 760px; */
    border-radius: 15px;
}
.scrollable {
    overflow-y: auto;
    height: 620px;
    max-height: 645px;
}

#send-btn {
  margin: 5px 0;
  padding: 0 20px;
  font-size: 1.1rem;
  background-color: rgb(0, 100, 140);
  color: white;
  cursor: pointer;
  transition: all 0.1s ease-in;
}

#send-btn:hover {
  background-color: rgb(46, 175, 225);
}


#chat1 .form-outline .form-control~.form-notch div {
pointer-events: none;
border: 1px solid;
border-color: #eee;
box-sizing: border-box;
background: transparent;
}

#chat1 .form-outline .form-control~.form-notch .form-notch-leading {
left: 0;
top: 0;
height: 100%;
border-right: none;
border-radius: .65rem 0 0 .65rem;
}

#chat1 .form-outline .form-control~.form-notch .form-notch-middle {
flex: 0 0 auto;
max-width: calc(100% - 1rem);
height: 100%;
border-right: none;
border-left: none;
}

#chat1 .form-outline .form-control~.form-notch .form-notch-trailing {
flex-grow: 1;
height: 100%;
border-left: none;
border-radius: 0 .65rem .65rem 0;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-leading {
border-top: 0.125rem solid #cbd5e0;
border-bottom: 0.125rem solid #cbd5e0;
border-left: 0.125rem solid #cbd5e0;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-leading,
#chat1 .form-outline .form-control.active~.form-notch .form-notch-leading {
border-right: none;
transition: all 0.2s linear;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-middle {
border-bottom: 0.125rem solid;
border-color: #cbd5e0;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-middle,
#chat1 .form-outline .form-control.active~.form-notch .form-notch-middle {
border-top: none;
border-right: none;
border-left: none;
transition: all 0.2s linear;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-trailing {
border-top: 0.125rem solid #cbd5e0;
border-bottom: 0.125rem solid #cbd5e0;
border-right: 0.125rem solid #cbd5e0;
}

#chat1 .form-outline .form-control:focus~.form-notch .form-notch-trailing,
#chat1 .form-outline .form-control.active~.form-notch .form-notch-trailing {
border-left: none;
transition: all 0.2s linear;
}

#chat1 .form-outline .form-control:focus~.form-label {
color: #cbd5e0;
}

#chat1 .form-outline .form-control~.form-label {
color: #bfbfbf;
}

.muted-text {
  color: grey;
  font-size: 0.7rem;
}

.muted-text-red {
  color: #ea0000;
  font-size: 0.7rem;
}

.title-red {
  color: #ea0000;
}

.ellipsis {
  display: none;
  padding-left: 12px;
}

.ellipsis div {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  margin: 0 5px;
  opacity: 0.2;
  transform: scale(0.8);
  animation: ellipsisAnimation 1s .5s linear alternate infinite;
}

.ellipsis div:first-child {
  animation-delay: .25s;
}

.ellipsis div:last-child {
  animation-delay: .75s;
}

@keyframes ellipsisAnimation {
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Size the chat window for mobile */
@media only screen and (max-width: 499px) {
    .scrollable {
        overflow-y: auto;
        height: 400px;
        max-height: 600px;
    }
}