body {
  background-color: #fff;
  font-family: sans-serif;
  position: relative;
  margin: 0;
  /* min-height: 100vh; */
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.chat-wrapper {
  /*height: 95vh;*/
  padding: 20px 0;
}

.chat-container {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  /* padding: 30px; */
  border-radius: 5px;
  border-color: #ccc;
}

.message {
  display: flex;
  font-size: 18px;
}

.message.user,
.message.human {
  flex-direction: row-reverse;
}

.message.ai .message-content {
  background-color: #9ec4ba;
  margin-bottom: 15px;
  /*border-radius: 5px;*/
  padding: 15px 20px;
  /* direction: rtl; */
  max-width: 60%;
  color: #fff;
  border-radius: 20px 20px 20px 3px;
  font-size: 16px;
}

.message.user,
.message.human {
  margin-bottom: 20px;
}
.message.user .message-content,
.message.human .message-content {
  background-color: #f3f4f6;
  color: #6c757d;
  border-radius: 20px 20px 3px 20px;
  padding: 15px 20px;
  font-size: 16px;
}

.chat-history {
  flex-grow: 1;
  padding: 10px 20px;
  overflow: auto;
  min-height: 60vh;
  /* max-height: 35vh !important; */
}

.message-input {
  padding-top: 15px;
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

#submitMessage .fa-spinner {
  display: none;
}

.loading .fa-paper-plane {
  display: none !important;
}

.loading .fa-spinner {
  display: inline-block !important;
  animation: rotating 2s linear infinite;
}

/* ---------------------------------------------------- */
/* ---------------------- Header ---------------------- */
/* ---------------------------------------------------- */
/* .nav-item {
  margin-left: 5px;
  margin-right: 5px;
} */

.navbar {
  padding: 0;
  /* float:right
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.35);
  background-color: #fff; */
}

.navbar-nav {
  float: right;
}

.navbar > .container-fluid {
  padding-right: 45px;
  padding-left: 45px;
}

.nav-link {
  padding-right: 16px !important;
  color: rgba(0,0,0,.55);
}

.nav-link:hover {
  color: #74ac9c;
}
/* ---------------------------------------------------- */
/* ---------------------- Footer ---------------------- */
/* ---------------------------------------------------- */
footer {
  background-color: #242e42;
  /* background-color: #323232; */
  padding: 6px;
  color: gainsboro;
  position: static !important;
  /* display: flex; */
  right: 0;
  bottom: 0;
  left: 0;
  height: 45px;
  margin-top: auto;
  /*padding: 1rem;*/
}

footer .copyrights {
  text-align: center;
  font-size: 13px;
  color: #e5e3e3;
  margin-top: 4px;
}

.copyrights p {
  margin-bottom: 0 !important;
}

/* ---------------------------------------------------- */
/* ---------------------- Import Files Page ---------------------- */
/* ---------------------------------------------------- */
.upload-files-box {
  /* border: 2px dashed #74ac9c; */
  /* border-radius: 7px; */
  padding: 0;
  /* text-align: center; */
  font-size:14px
}

.upload-files-box .upload-files-title .lnr-cloud {
  font-size: 20px;
  color: #242e42;
  font-weight: bold;
}

.upload-files-box .upload-files-img {
  margin: 10px;
  width: 60px;
}

.upload-files-box .upload-files-btn {
  background-color: #74ac9c;
  border-color: #74ac9c;
  width: 125px;
  margin-top: 16px;
  height: 35px;
}

.upload-files-box .cvs-files #upload_files {
  /* width: unset; */
}
.upload-files-box #upload_files {
  font-size: 13px;
  /* width: 35%; */
  /* text-align: center; */
  /* right: 0; */
  /* left: 0; */
  /* text-align: center; */
  margin: auto;
  margin-top: 15px;
  margin-bottom: 5px;
  display: block;
}

.upload-files-box #upload_files:focus {
  border-color: unset;
  box-shadow: unset;
}

.import-files-img {
  width: 36px;
  margin: auto;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
}
.import-files-img.crawl-url,
.import-files-img.json-file,
.import-files-img.csv-word-pdf,
.import-files-img.hugging-face,
.import-files-img.text-data {
  margin-top: 16px;
  width: 30px;
}

.import_item h4 {
  text-align: center;
  font-weight: bold;
  color: #242e42;
  margin-bottom: 25px;
  font-size: 18px;
}

.import-files-types {
  margin-top: 30px;
}

.import_item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #cbcbcb;
  margin-bottom: 30px;
  -webkit-transition: all 300ms linear 0s;
  -o-transition: all 300ms linear 0s;
  transition: all 300ms linear 0s;
  min-height: 174px;
}

.import_item:hover {
  -webkit-box-shadow: 0px 10px 30px 0px rgba(98, 71, 234, 0.1);
  box-shadow: 0px 10px 30px 0px rgba(98, 71, 234, 0.1);
  border-color: #fff;
  background: #fff;
}

#message_input:focus {
  border-color: unset;
  box-shadow: unset;
  border: unset;
}

.chat-history {
  /*background-color: #f8f8f8;*/
  /* min-height: 100px; */
  /*background-color: #f7f7f796;*/
  background-color: #fff;
}

.chat-page .chat-wrapper {
  width: 90%;
  margin: auto;
  margin-top: 60px;
}

.chat-page.chat-container {
  padding: 0 0 30px 0;
}
.chat-btns-group {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 0;
  width: 73px;
  z-index: 1;
  padding-right: 3%;
}
.chat-input-group {
  display: inline-block;
  width: 100%;
}

.satisfaction-box {
  color: #b9babe;
  font-size: 13px;
}
#persona:focus {
  border-color: #dee2e6;
  box-shadow: unset;
}
#persona {
  color: #6c757d;
  width: 15%;
  font-size: 13px;
  padding: 5px;
  border-radius: 1px;
}

/*#persona:focus,*/
.chat-btns-group #submitMessage:focus {
  border: unset;
  border-color: unset;
  box-shadow: unset;
}

.chat-btns-group .btn {
  padding: 4.5px;
  border-radius: 0 0 0 5px;
  border: unset;
}
.chat-btns-group .btn:hover {
  background-color: unset;
}

.chat-btns-group #submitMessage {
  background-color: unset;
  color: #c0c3ca;
  border-radius: 11px 10px 0 11px;
  margin-top: 4px;
  font-size: 14px;
}
.chat-btns-group .reset-btn {
  font-size: 15px;
  color: #c0c3ca;
  font-size: 14px;
}
textarea#message_input::placeholder {
  color: #bec1c9;
  font-size: 15px;
  margin-top: 7px;
  line-height: Normal;
}

textarea#message_input {
  padding: 10px 6px;
  resize: none;
  background-color: #f3f4f6;
  color: #6c757d;
  line-height: 16px;
  /* text-align: left; */
  height: 39.5px;
}
textarea#message_input:-moz-placeholder, /* Firefox 18- */
textarea#message_input::-moz-placeholder, /* Firefox 19+ */
textarea#message_input:-ms-input-placeholder, /* IE 10+ */
textarea#message_input::-webkit-input-placeholder, /* Webkit based */
textarea#message_input::placeholder {
  color: #6c757d;
  line-height: normal;
}

#persona {
  background-image: linear-gradient(45deg, transparent 50%, gray 50%),
    linear-gradient(135deg, gray 50%, transparent 50%),
    linear-gradient(to right, #ccc, #ccc);
  background-position: calc(100% - 15px) calc(1em + 2px),
    calc(100% - 10px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
  background-size: 6px 5px, 5px 5px, 1px 1.5em;
  background-repeat: no-repeat;
}

.action-index-btn,
.action-edit-btn,
.action-delete-btn {
  float: left;
  margin-right: 2px;
}

.action-index-btn {
  margin-left: 7px;
  margin-right: 7px;
}

.index-all-btn {
  margin-bottom: 20px;
}

.page-title {
  /* margin-top: 55px;
  font-size: 20px;
  font-weight: bold; */

  font-size: 19px;
  margin-top: 22px;
  color: #242e42;
  font-weight: bold;
  margin-bottom: 26px;
  display: inline-block;
}

.sidebar {
  background-color: #202123;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 7px;
  padding-left: 7px;
  height: 100%;
}

.sidebar .header {
  font-weight: bold;
  font-size: 12px;
  margin-top: 20px;
  color: #8b949e;
}

.sidebar .question {
  /* margin-left: 10px; */
  margin-top: 10px;
  font-size: 14px;
  cursor: pointer;
  padding: 5px;
  font-family: system-ui;
}

.sidebar .question:hover {
  background-color: #323232;
  border-radius: 6px;
}

.sidebar .question-icon {
  margin: 5px;
  float: left;
  margin-left: 0;
  margin-right: 8px;
}

.overlay-wrapper {
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-weight: bold;
  font-size: 30px;
}

.overlay .text {
  display: none;
  background-color: rgba(44, 19, 185, 0.5);
}

.overlay:hover .text {
  display: block;
}

.popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999999;
  padding: 20px;
}

.homepage {
  padding-top: 20px;
}

.homepage .bot-name {
  font-weight: bold;
  text-align: center;
  color: #14a609;
}

.homepage .bot-image {
  max-width: 150px;
  height: 80px;
}

.chatting {
  position: relative;
  padding-left: 1%;
  padding-right: 1%;
}

.usecase {
  height: 100%;
}

.homepage .modules .card {
  border: solid 1px #eee !important
}

.homepage .modules .card .card-body {
  min-height: 350px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
}

#digram-image {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.7);
}

#digram-image img {
  max-width: 900px;
}

.digram-image {
  display: inline-block;
  opacity: 0;
  transition: ease-in-out 0.1s;
}

.homepage .modules .card .card-body:hover .digram-image{
  opacity: 100;
}

.digram-image .fa-circle-info {
  cursor: pointer;
}

.sidebar{
  overflow: auto;
  position: absolute;
}

.sidebar-wrapper{
  position: relative;
}

.table-container {
  width:95%;
  margin:auto;
}
.data-table,
.data-table a{
  font-size:12px;
}

.data-table .table-icon{
  margin: 0 4px 0 4px;
}

.data-table a.btn{
  padding: 2px;
  min-width: 52px !important;
}


/* .data-table a{
  line-height: 23px;
} */

.data-table td {
  padding-top: 3px;
  padding-bottom: 3px;
  vertical-align: middle;
}

.data-table td .action-index-btn{
  height:unset;
  line-height:unset;
}

.data-table thead th{
  color: #787878;
  font-size: 14px;
}
.data-table tbody{
  border-top: 2px solid currentColor;
}

.data-table .table-icon svg {
  font-size: 16px;
  margin: 0;
  margin-top: 4px;
}

.data-table .table-delete-icon svg {
  color:red;
}
.data-table .table-download-icon svg {
  color:#787878;
  font-size:14px;
}
.data-table .table-similar-icon svg {
  color:#198754
}
.data-table .table-email-icon svg {
  color:#0d6efd
}
.data-table .table-search-icon svg {
  color: #198754;
  margin-top: 6px;
  font-size: 13px;
}


.data-table .action-index-btn.btn {
  min-width: 67px;
  margin: 0 2px 0 2px;
}


.hr-email-boxes textarea{
  color: gray;
  padding: 15px;
  font-size: 14px;
}
.hr-email-boxes label{
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: bold;
}
.hr-email-boxes .btn{
  /* margin: 15px 5px 0 5px;
  min-width: 75px; */
  min-width: 75px;
  margin: 7px 0 16px;
  font-size: 14px;
  float: right;
}

.brainz-box{
  width: 65px;
  height: 65px;
  border-radius: 50%;
  /* border: solid 1px #e5e5e5; */
  overflow: hidden;
  background-color: #0dcaf0;
  z-index: 99;
  text-align: center;
}

.chat-bubble {
  font-size: 30px;
  color: #fff;
  display: inline-block;
  margin-top: 9px;
}

.options-box {
  padding: 10px;
    border: 1px solid #ebebeb;
    margin-bottom: 10px;
    text-align: center;
    min-height: 130px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
    background: unset;
    width: 100%;

}

.options-box img{
  width: 45px;
}
.import-cv-container, 
.import-cv-container .btn{
  font-size:14px
}
.import-cv-container .upload-files-box .upload-files-img {
  margin: 0px;
  width: 49px;
  
}
.import-cv-container .upload-files-box {
  padding:0px;
}
.import-cv-container .upload-files-box .cvs-files #upload_files {
  width: 86%;
  float: left;
  margin-right: 12px;
}

#import-azure-blob-data{
  padding: 190px;
}

#import-jobs-modal .upload-files-box{
  border: none;
  text-align: left;
  border-radius: unset;
  padding:0
}
.or-line p {
  margin: 10px 0 10px 0 ;
  padding: 0;
  color: #6f6f6f;
  text-align: center;
}

#import-jobs-modal .upload-files-box #upload_files{
  font-size: 13px;
  width: 86%;
  text-align: left; 
  right: 0;
  left: 0;
  margin: unset;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  float: left;
  margin-right:10px ;
}
#import-jobs-modal .upload-files-box .btn{
  font-size: 12px;
  border-color: unset;
  width: 85px;
  margin-top: 0;
  height: 38px;
  height: 38px;
}
#import-jobs-modal .popup-close{
  font-size: 12px;
  width: 85px;
} 
#import-jobs-modal textarea:focus{
  border-color:unset;
  box-shadow:unset;
}

#import-jobs-modal textarea{
  font-size: 13px;
}

#import-jobs-modal .upload-files-box h5{
  font-size: 14px;
    font-weight: bold;
    color: #787878;
}

#import-jobs-modal .card {
  width: 56%;
  margin: auto;
}

.hr-inner-box {
  padding: 10px;
  border: 1px solid #ebebeb;
  margin-bottom: 10px;
  text-align: left;
  min-height: 130px;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.05);
  background: unset;
  width: 100%;
  font-size: 14px;
  color: #646464;
}

.hr-inner-box h5{
  font-size: 15px;
  color: #14a609;
  font-weight: bold;
}
.hr-inner-box ul li span{
  color: #595959;
  font-weight: bold;
  text-transform: capitalize;
}

.hr-inner-box ul li{
  /* color: #242424; */
    /* font-weight: bold; */
    padding: 2px;
}

.hr-inner-box ul{
  list-style: circle;
}

.job-inner-card {
  font-size: 14px;
}

.data-table .data-table-details {
  text-decoration: none;
  color: unset;
  height: 17px !important;
}

.data-table .data-table-details:hover {
  text-decoration: underline;
  color: #0d6efd;
}

.job-inner-card .table-download-icon {
  margin-left:5px
}

.add-new {
  position: absolute;
  right: 52px;
  margin-top: 22px;
}

.history {
  font-size: 12px;
  position: absolute;
  right: 200px;
  margin-top: 22px;
}

.main-btn
{
  font-size: 12px;
  color: #fff;
  background-color: #0dcaf0 !important;
  border-color: #0dcaf0 !important;
  --bs-btn-border-color: #0dcaf0 !important;
  --bs-btn-active-bg: #0dcaf0 !important;
  --bs-btn-active-border-color: #0dcaf0 !important;
}

.main-btn:hover {
  background-color: #0dcaf0 !important;
  --bs-btn-hover-border-color: #0dcaf0 !important;
}

.import-title-section {
  color: #828282;
  font-size: 15px;
  margin-top: 15px;
  pointer-events: none;
}

.job-inner-card .card-body{
  padding-top:0 ;
}