@import url("https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@100;200;300;400;500;600;700;800&display=swap");
html {
  min-height: 100%;
}

a, p, h1, h2, h3, h4, h5, h6, span, div {
  font-family: "Anek Devanagari", sans-serif;
  line-height: 1.2;
}

header {
  border-bottom: solid 2px #000;
  box-shadow: 0px 0 8px 0px rgba(0, 0, 0, 0.7607843137);
}

.chatbot {
  min-height: 100%;
}

.main-menu {
  font-size: 30px;
}
.main-menu li {
  min-width: 150px;
  text-align: center;
}
.main-menu .nav-link {
  font-weight: bold;
  color: inherit;
}
.main-menu .nav-link.active {
  border-bottom: 3px solid #F15840;
}

.header-profile-menu {
  display: inline-flex;
  align-items: center;
}
.header-profile-menu .header-profile-name {
  margin-left: 10px;
}

main {
  height: 100vh;
}

.chat-container .chat-header .profile-action-head {
  padding: 15px;
}
.chat-container .chat-header .profile-details {
  display: flex;
  align-items: center;
}
.chat-container .chat-header .profile-details .profile-name {
  margin-left: 20px;
  margin-right: 20px;
  font-weight: bold;
  font-size: 1.2rem;
}
.chat-container .chat-header .button-set {
  display: flex;
  justify-content: flex-end;
}
.chat-container .chat-header .button-set div button {
  min-width: 100px;
}
.chat-container .chat-header .button-set .button-transfer {
  margin-left: 20px;
}
.chat-container .chat-header .button-set .button-end {
  margin-left: 20px;
}
.chat-container .chat-toolbox {
  background: #E1E8F5;
  padding: 10px;
  display: flex;
}
.chat-container .chat-toolbox .language-dropdown {
  margin-right: 20px;
}
.chat-container .chat-toolbox .skills-list span {
  background: #8CAAD7 0% 0% no-repeat padding-box;
  border: 1px solid #082340;
  border-radius: 5px;
  color: #082340;
  display: inline-block;
  line-height: 20px;
  padding: 5px 10px 0 10px;
}
.chat-container .conversation-history {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 490px);
  overflow-x: hidden;
  overflow-y: auto;
}
.chat-container .conversation-history > div {
  width: 60%;
  margin-top: 20px;
}
.chat-container .conversation-history > div .message-time-status {
  color: #A0A1A2;
  display: none;
}
.chat-container .conversation-history > div .message-text {
  background: #b8f5f2;
  padding: 15px;
  border-radius: 10px;
}
.chat-container .conversation-history > div.outgoing {
  align-self: flex-end;
  margin-right: 50px;
  position: relative;
}
.chat-container .conversation-history > div.outgoing::after {
  content: "";
  display: block;
  height: 25px;
  width: 22px;
  background-image: url(./../imgs/chat-msg-indicator.jpg);
  position: absolute;
  background-repeat: no-repeat;
  right: -30px;
  top: calc(50% - 10px);
}
.chat-container .conversation-history > div.outgoing .message-time-status {
  text-align: right;
}
.chat-container .conversation-history > div.outgoing .message-text {
  background: #c8dbff;
}
.chat-container .conversation-history > div.system-generated {
  align-self: center;
}
.chat-container .conversation-history > div.system-generated .message-text {
  border: 3px solid #333;
  text-align: center;
  background-color: lightgrey;
}
.chat-container .conversation-history > div.incoming {
  margin-left: 50px;
  position: relative;
}
.chat-container .conversation-history > div.incoming::after {
  content: "";
  display: block;
  height: 25px;
  width: 22px;
  background-image: url(./../imgs/chat-msg-indicator.jpg);
  position: absolute;
  background-repeat: no-repeat;
  left: -30px;
  top: calc(50% - 10px);
}
.chat-container .chat-input-container {
  background: #E1E8F5;
  margin-top: 30px;
  padding: 15px;
  border-radius: 10px;
}
.chat-container .chat-input-container .chat-input-toolbar {
  border-bottom: 1px solid #CCC;
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}
.chat-container .chat-input-container .chat-input input {
  width: 100%;
  border: 0;
  background-color: transparent;
  padding: 20px;
}

.nav-tabs {
  width: 100%;
}
.nav-tabs .nav-link {
  color: inherit;
}
.nav-tabs .nav-item {
  min-width: 200px;
}
.nav-tabs .nav-item .nav-link {
  text-align: left;
  background-color: #E1E8F5;
  width: 100%;
}
.nav-tabs .nav-item:last-child {
  width: calc(100% - 200px);
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: #082340 0% 0% no-repeat padding-box;
  color: #F15840;
}

.tab-content {
  padding: 15px;
}

.left-sidebar {
  background: #F6F8FC;
  padding-top: 20px;
  height: calc(100vh - 73px);
  z-index: 0;
}
.left-sidebar .inner-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.left-sidebar .inner-content .top-icons {
  margin-bottom: 20px;
}
.left-sidebar .inner-content .top-icons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.left-sidebar .inner-content .top-icons ul li {
  display: inline-block;
  margin-right: 10px;
}
.left-sidebar .inner-content .top-icons ul li a {
  text-decoration: none;
}
.left-sidebar .inner-content .chat-threads .card {
  margin-bottom: 20px;
}
.left-sidebar .inner-content .chat-threads .card.active {
  border: 2px solid #1BF70B;
  cursor: pointer;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-photo {
  text-align: center;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-photo .profile-img {
  margin-bottom: 10px;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-details {
  padding-left: 20px;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-details .profile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-details .profile .profile-name {
  font-weight: bold;
  font-size: 1.3rem;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-details .profile .profile-language {
  border: 1px solid #A0A1A2;
  color: #A0A1A2;
  border-radius: 5px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: 50px;
  padding-top: 5px;
  line-height: 13px;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-details .profile-category {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-details .profile-category .profile-class {
  text-transform: uppercase;
  color: #A0A1A2;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-details .profile-category .profile-category {
  text-transform: uppercase;
  margin-left: 50px;
  color: #5F8AC7;
}
.left-sidebar .inner-content .chat-threads .thread-content .profile-details .message-summary {
  font-size: 1rem;
}
.left-sidebar .system-overview {
  border-top: 2px solid #F15840;
  padding-top: 20px;
}
.left-sidebar .system-overview .capacity {
  display: flex;
}
.left-sidebar .system-overview .capacity .stats img {
  max-width: 60px;
}
.left-sidebar .system-overview .capacity .stats-title {
  font-weight: bold;
}
.left-sidebar .system-overview .capacity .stats-desc {
  margin-left: 15px;
}
.left-sidebar .customer-queue {
  padding: 10px;
  margin-top: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: #082340;
  display: flex;
  align-items: center;
  color: #FFF;
  justify-content: space-between;
}
.left-sidebar .customer-queue .queue-count {
  background: #FFFFFF;
  height: 40px;
  width: 40px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #082340;
}

.chat-area {
  padding-top: 20px;
}
.chat-area .inner-content {
  box-shadow: 0px 10px 28px -20px #000;
  border-radius: 15px;
}

.right-sidebar {
  padding-top: 20px;
  background: #F6F8FC;
}
.right-sidebar .inner-content .tab-content {
  padding: 15px 0px;
}
.right-sidebar .inner-content .customer-details .customer-name {
  font-weight: bold;
  font-size: 1.6rem;
}
.right-sidebar .inner-content .customer-details .customer-details-heading {
  font-size: 1.3rem;
}
.right-sidebar .inner-content .customer-details .detailed-items .item div {
  border-top: 1px solid #DDD;
  padding-top: 10px;
  padding-bottom: 10px;
}/*# sourceMappingURL=style.css.map */

.profile-mood {
  margin-right: 5px; /* Adjust the value to increase or decrease the space */
}
input#message-input:focus {

    outline: solid 1px #b6b5b5;

    border-radius: 5px;

}
.chat-container .chat-input-container .chat-input input {

    width: 100%;

    border: 0;

    background-color: #aaaaaa52;

    padding: 20px;

    border-radius: 5px;

    outline: solid 1px #ddd;

}
a.freq-used-text {

    text-decoration: none;

    color: #6e6e6e;

    border: solid 1px #c2c2c2;

    background: #d0d4dd;

    padding: 0px 10px 0px 10px;

    border-radius: 16px;

}
div#agentassist-tab-pane input {
  padding: 10px;
  border-radius: 5px;
  border: 0;
  background: #d0d4dd;
  width: 100%;
  line-height: 20px;
}
div#agentassist-tab-pane button {
  padding: 10px 25px;
  border: 0;
  background: #082340;
  color: #fff;
  border-radius: 5px;
}
div#credential-response {
  border: solid 1px #adadad;
  border-radius: 5px;
  background: #e2fff0;
}
.nba-wrapper p {
  background: #082340;
  color: #f15840;
  border-radius: 5px 5px 0px 0px;
  margin-bottom: 0;
}
.nba-btn-wrp {
  padding: 15px;
  background: #ffffff;
  border: solid 1px #082340;
  border-radius: 0 0 5px 5px;
}

.modal-body {
  font-size: 19px !important;
  line-height: 1.6 !important;
}

.modal-body h1{
  font-size: 1.85rem !important;
}

.modal-heasder{
  padding:26px 10px;
}

.form-control{
  margin: 40px 10px 40px 10px;
}

.userSubmit{
  margin: 40px 0 0 0;
}