@font-face {
  font-family: "Poppins-Regular";
  src: url("/fonts/Poppins-Regular.ttf");
}

:root {
  --color-primary: #0d4c88;
  --color-secondary: #09335b;
  --color-white: #fff;
  --color-body: #e4e9f7;
  --color-light: #e0e0e0;
  --color-tertiary: #f2f2f2;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  font-family: "Poppins-Regular";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100vh;
  background: #fff;
  background-size: cover;

  overflow: hidden;
}

a,
a:hover {
  text-decoration: none !important;
  color: #004fa9;
}

code {
  font-family: "Poppins-Regular";
}

button {
  border: 0;
  padding: 0;
}

input:focus {
  outline: none;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  /* Change white to the desired background color */
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px white inset;
  /* Change white to the desired background color */
}

.wd-5 {
  width: 5%;
}

.wd-15 {
  width: 15%;
}

.wd-25 {
  width: 25%;
}

.wd-35 {
  width: 35%;
}

.wd-20 {
  width: 20%;
}

.wd-30 {
  width: 30%;
}

.wd-100 {
  width: 100%;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-12 {
  font-size: 14px !important;
}

.pB-5 {
  padding-bottom: 5px !important;
}

.pB-10 {
  padding-bottom: 10px !important;
}

.pB-15 {
  padding-bottom: 15px !important;
}

.mB-10 {
  margin-bottom: 10px !important;
}

.mB-20 {
  margin-bottom: 20px !important;
}

.pT-15 {
  padding-top: 15px !important;
}

.pT-10 {
  padding-top: 10px !important;
}

.pD-10 {
  padding: 10px !important;
}

.pD-5-10 {
  padding: 5px 10px !important;
}

.pL-10 {
  padding-left: 10px !important;
}

.pL-20 {
  padding-left: 20px !important;
}

.mT-10 {
  margin-top: 10px;
}

.mT-15 {
  margin-top: 15px;
}

.mT-25 {
  margin-top: 25px;
}

.mR-15 {
  margin-right: 15px !important;
}

.mR-25 {
  margin-right: 25px !important;
}

.mL-20 {
  margin-left: 20px !important;
}

img,
svg {
  cursor: pointer;
}

/* common used properties */

.d-flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.justify-arround {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.chat-input {
  border: unset;
  box-shadow: unset;
  appearance: none;
  resize: none;
  font-size: 0.875rem;
  width: 80%;
  color: #000;
  padding-left: calc(2.25rem / 3);
  padding-top: 0.625rem;
  height: 35px;
}

.chat-input-row {
  border: 1px solid #e6e6e6;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  height: 50px !important;
  appearance: none;
  resize: none;
  font-size: 0.875rem;
}

.chat-input:focus-visible {
  outline: none;
}

.chat-input-block {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.chatbot-send-button {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 40%;
  margin-top: -10px;
  right: 15px;
  cursor: pointer;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 10px;
}

.set-html {
  white-space: pre-line;
}

.main-container {
  font-family: "Poppins-Regular";
  width: 100%;
  height: calc(100vh - 65px);
  padding: 65px 0px 0px 0px;
  transition: all 0.5s ease;
  background: #f0f0f0;
  padding-left: 250px;
}

.main-container.showNav {
  padding-left: 210px;
}

.main-container.showNav .content-area-wrap {
  background: #f8f9fe;
  /* border-radius: 20px 0; */
  position: absolute;
  right: 0;
  height: calc(100vh - 50px);
  width: 82%;
}

.content-area-wrap {
  background: #f8f9fe;
  /* border-radius: 20px 0; */
  position: absolute;
  right: 0;
  height: calc(100vh - 50px);
  width: 96%;
  transition: all 0.5s ease;
}

.main-container .sidebar.close {
  padding-left: 0;
}

.loadding {
  padding: 20px;
}

.main-container.left-wrap {
  padding-left: 120px;
}

.head-icons {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  cursor: pointer;
}

.compose-section,
.workspace {
  background: #fff;
  position: relative;
}

.tab-content-wrap {
  flex: 80% 1;
  border-radius: 6px;
  overflow: hidden;
}

.tabs-wrap {
  background: #f8f9fd;
  padding: 10px;
}

.tabs-list-wrap {
  background: #fff;
  flex: 20% 1;
  border-radius: 6px;
  margin-right: 10px;
}

.css-11mde6h-MuiPaper-root {
  box-shadow: none !important;
}

.main-head-section-wrap {
  padding: 0 20px 12px;
  border-bottom: 2px solid #e7e7e7;
}

.batch-head-wrap {
  line-height: 40px;
  color: #000;
  font-family: "Poppins-Regular";
  font-size: 18px;
}

.batch-wrap-main-desc {
  font-size: 14px;
  margin-bottom: 0;
}

.datatable table tbody > tr:nth-child(odd) {
  background: #f5f5f5;
}

.tss-1qtl85h-MUIDataTableBodyCell-root {
  /* width: 150px; */
  max-width: 500px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  /* margin: 0 auto; */
  text-align: left;
  font-family: "Poppins-Regular";
  font-size: 13px;
}

.runDag {
  width: 17px;
  height: 19px;
  cursor: pointer;
}

.tabs-wrap.d-flex {
  height: calc(100vh - 180px);
}

.workspace-list {
  width: 100%;
  position: relative;
}

.align-left {
  float: left;
  width: 50%;
}

.align-right {
  float: right;
}

.workspace-list {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.18px;
  margin-bottom: 20px;
}

.input-field {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-right: 20px;
  min-width: 300px;
}

button.btn-primary {
  background-color: #00275a;
  color: #fff;
  padding: 10px 15px;
  margin-left: 20px;
  border-radius: 4px;
  min-width: 100px;
  cursor: pointer;
  font-weight: 500;
}

button.btn-secondary {
  font-weight: 500;
  border: 1px solid #00275a;
  color: #00275a;
  background-color: #fff;
  padding: 10px 15px;
  margin-left: 20px;
  border-radius: 4px;
  min-width: 100px;
  cursor: pointer;
}

button.btn-sync {
  font-weight: 500;
  border: 1px solid #00275a;
  color: #00275a;
  background-color: #d9f3fd;
  padding: 10px 25px;
  margin-left: 20px;
  border-radius: 4px;
  min-width: 100px;
  cursor: pointer;
  display: inline-flex;
}

.card-block {
  display: flex;
  width: 100%;
  padding: 20px 15px;
}

.card-text {
  display: grid;
}

.card {
  border: 1px solid #ccc;
  height: fit-content;
  position: relative;
}

.card-btn {
  position: absolute;
  float: right;
  right: 0;
  top: 35%;
  margin-right: 20px;
}

.card-head {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 20px;
  row-gap: 20px;
}

.card-head-list {
  grid-template-columns: auto auto auto;
  margin-bottom: 20px;
}

.card-head-list .card {
  background-color: #fff;
  box-shadow: 0px 2px 4px 1px #ccc;
  border: unset !important;
  border-radius: 4px;
}

.details-list {
  padding-left: 20px;
  list-style: disc;
}

.card-list {
  display: grid;
  padding: 20px;
  height: 90px;
  font-size: 14px;
}

.card-text {
  font-size: 14px;
}

.card-no {
  font-size: 20px;
  font-weight: 600;
  color: #00275a;
}

.card-para {
  display: inline-block;
  padding-left: 15px;
  color: #4b4b4b;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
}

/* .showNav .workspace-bottom-container .card-head .card {
  max-width: 725px;
} */

.workspace-bottom-container .card-head .card {
  min-height: 160px;
  width: 100%;
}

.workspace-list span {
  color: #00275a;
}

.sub-header {
  padding: 15px;
  background-color: #fff;
  width: 100%;
  position: relative;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.18);
  /* box-shadow: 1px 1px 1px 1px #ccc; */
  right: -1px;
  min-height: 20px;
  z-index: 9;
}

.sub-header > .align-left {
  display: flex;
}

.sub-header > .align-left > h6 {
  padding-left: 10px;
  padding-top: 5px;
  color: #00275a;
  font-size: 18px;
}

.sub-header > .align-right {
  right: 25px;
  position: relative;
}

.sub-header > .align-right > p {
  color: #00275a;
}

.sub-header > .align-right > p > span {
  color: #000;
  padding-top: 10px;
}

/* .card-studio .card {
  background-color: #fff;
  color: #4b4b4b;
  min-height: -webkit-fill-available;
  border-radius: 4px;
  padding: 0 5px 0px 0px;
  cursor: pointer;
} */
.card-studio .card {
  background-color: #fff;
  color: #4b4b4b;
  min-height: -webkit-fill-available;
  border-radius: 4px;
  padding: 0 5px 0px 0px;
  cursor: pointer;
  min-width: 200px;
  max-width: 400px;
  /* flex: 0 0 calc(33.33% - 40px); */
  flex: 1 0 calc(25% - 20px);
  height: auto;
}

.card-studio .card-para {
  line-height: 20px;
  margin-bottom: 10px;
}

.card-studio .card-block > span {
  background-color: #d9f3fd;
  padding: 15px;
  color: #00adef;
  border: 1px solid #00adef;
  font-weight: 600;
  border-radius: 4px;
}

.card-prefix {
  display: table;
  background-color: #d9f3fd;
  color: #00adef;
  border: 1px solid #00adef;
  /* optional css start */
  height: 48px;
  width: 48px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 600;
  /* optional css end */
}

.card-studio .card:nth-child(1n + 1) .card-prefix {
  background-color: #d9f3fd !important;
  color: #00adef !important;
  border: 1px solid #00adef !important;
}

.card-studio .card:nth-child(2n + 1) .card-prefix {
  background-color: #ffebeb !important;
  color: #fa8d8d !important;
  border: 1px solid #fa8d8d !important;
}

.card-studio .card:nth-child(3n + 1) .card-prefix {
  background-color: #c4d6fa !important;
  color: #3c76f1 !important;
  border: 1px solid #3c76f1 !important;
}

.card-studio .card:nth-child(4n + 1) .card-prefix {
  background-color: #e0faf4 !important;
  color: #00c495 !important;
  border: 1px solid #00c495 !important;
}

.card-prefix-key {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* .card-studio {
  display: grid;
  grid-template-columns: auto auto auto;
  column-gap: 20px;
  row-gap: 20px;
} */
.card-studio {
  display: grid;
  /* grid-template-columns: auto auto auto; */
  column-gap: 20px;
  row-gap: 20px;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
}

.card-studio .card-btn {
  top: 15%;
}

.card-studio .card-btn .btn-primary {
  background-color: #90dade;
  color: #00275a;
  font-size: 12px;
  padding: 5px 15px;
  border-radius: 4px;
}

.hamburger-icon-toggle {
  position: absolute;
  left: 100%;
  padding-left: 15px;
  padding-top: 10px;
}

.showNav .hamburger-icon {
  display: none;
}

.active .indicator {
  position: relative;
  background-color: #00275a;
  color: aquamarine;
  padding: 17px;
  height: 0px;
  margin-top: 0px;
  rotate: 135deg;
  margin-left: -35px;
  border-radius: 4px;
}

.indicator {
  display: none;
}

.showNav .indicator {
  display: block;
}

.card-studio .card:hover {
  background-color: #d9f3fd;
  border-color: #00adef;
}

.nav-tabs-list {
  display: flex;
  border-bottom: 1px solid #c8c8c7;
  color: #00275a;
  padding-left: 15px;
}

.nav-tabs-list li {
  padding: 25px 60px 5px 60px;
  cursor: pointer;
}

.nav-tabs-list li.active {
  border-bottom: 4px solid #00adef;
}

.workspace-top-container h6 {
  color: #4b4b4b;
  font-size: 12px;
}

.upload-file .pageview-header {
  border-bottom: unset !important;
  color: #00275a;
  padding: 25px;
}

.fileUpload-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 66px;
  height: 72px;
  top: 20%;
  position: relative;
}

.upload-row {
  height: 240px;
  margin: 0px 25px 20px 25px;
  border: 2px dashed #00adef;
  border-radius: 4px;
  text-align: center;
}

.upload-row p {
  top: 30%;
  position: relative;
  padding: 10px 0;
}

.upload-row p a {
  color: #00adef;
  text-decoration: underline !important;
}

.nb-spinner {
  margin-top: 10px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-top: 2px solid #03a9f4;
  border-right: 0px solid transparent;
  border-radius: 50%;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
  display: inline-block;
  align-items: center;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.upload_table {
  margin: 30px 0px 0 25px;
  width: 92%;
  color: #323232;
}

.upload_table td {
  padding: 5px 7px;
  text-align: center;
  min-width: 60px;
  font-size: 14px;
  font-weight: 500;
}

.upload_table td a {
  text-align: right;
  position: absolute;

  margin-top: 20px;
}

.upload_table td a.upload {
  color: #08f;
}

.upload_table td a.success,
.table-list .success {
  color: #08f;
  margin-left: 11px;
}

.upload_table td a.error {
  color: #ff1414;
}

.upload_table th {
  padding-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.upload_table thead tr {
  border-bottom: 1px solid #c8c8c8;
}

.nb-spinner-row {
  padding-left: 15px !important;
  padding-top: 10px !important;
}

.btn-sync img {
  margin-left: 5px;
}

.align-left .input-field {
  left: 25%;
  position: relative;
  padding-left: 30px !important;
}

.align-left img {
  position: relative;
  left: 28%;
  z-index: 9;
  top: 8px;
}

.showNav .align-left img {
  left: 28.5%;
}

.table-list {
  margin: 20px 0px 0 0px;
  width: 100%;
  color: #323232;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  margin-bottom: 20px;
}

.table-list thead,
.table-list tbody td {
  text-align: left;
}

.table-list tbody td {
  padding: 10px 15px;
}

.table-list tbody td:first-child {
  text-align: center;
}

.table-list th {
  padding: 15px !important;
  text-align: left;
}

.table-list th:first-child {
  text-align: center;
}

.Workspace-container {
  padding: 20px;
  background-color: #f8f9fe;
  height: calc(100vh - 105px);
  overflow: scroll;
}

.studio-settings {
  border-top: 1px solid #c8c8c8;
  padding-left: 10px;
  padding-right: 10px;
}

.left-align-settings {
  gap: 18px;
}

.workspace-bottom-container {
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  background: #fff;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
  background: #ffffff;
  gap: 20px;
  padding: 20px;
  height: auto;
  color: #4b4b4a;
}

.workspace-bottom-container > img {
  margin-top: 20px;
}

.workspace-bottom-container > img > div {
  font-weight: 600;
}

.training-row {
  display: flex;
}

.list-data {
  margin: 20px;
  background-color: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  height: calc(100vh - 205px);
  font-size: 14px;
  margin-right: 0;
}

.list-data li {
  padding: 10px;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  min-width: 200px;
  margin-bottom: 15px;
  min-height: 25px;
}

.list-data ul {
  padding: 10px;
}

.list-data span {
  padding-left: 10px;
  position: absolute;
  padding-top: 2px;
}

.list-data li.active {
  border: 1px solid #00adef;
  background-color: #d9f3fd;
}

.list-data li {
  cursor: pointer;
}

.text-align-center {
  text-align: center !important;
}

.pagination-row-align {
  display: flex;
  font-size: 14px;
}

.pagination-row-align select {
  margin: 0px 10px;
  border: 1px solid #e1e1e1;
  padding: 5px 0px;
}

.checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #c8c8c8;
}

.btn-image {
  background: unset;
}

.ch_his {
  display: flex;
  padding: 16px;
}

.ch-list {
  padding: 10px;
  display: block;
  position: relative;
}

.ch-list > .row {
  display: inline-block;
  width: 100%;
}

.color-default {
  color: #4b4b4b !important;
  font-size: 14px;
}

.btn-default {
  background: #fff;
  color: #00275a;
  border: 1px solid #00275a;
  border-radius: 4px;
  padding: 5px 15px;
  font-size: 12px;
  cursor: pointer;
}

.test-bed-ch-list {
  margin: 10px 0px;
}

.test-bed-ch-list li.active {
  border: 1px solid #00adef;
  background-color: #d9f3fd;
}

.test-bed-ch-list li {
  padding: 15px;
  border-radius: 4px;
  font-size: 14px;
  color: #000;
  margin: 15px 0;
  background: #fff;
  border: 1px solid #e1e1e1;
  line-height: 20px;
  cursor: pointer;
}

.chat-page {
  min-height: 280px;
  background-color: #fff;
  padding: 25px 15px;
  border: 1px solid #e6e6e6;
  margin-top: 15px;
  border-radius: 4px;
  font-size: 14px;
  overflow: auto;
  color: #000;
  height: calc(100vh - 420px);
}

.chat-right {
  display: flex;
}

.chat-right-text {
  background: #e7f4ff;
  padding: 10px 20px;
  border-radius: 4px;
  width: 89%;
  height: fit-content;
}

.chat-img {
  height: 38px;
  margin-top: 9px;
  margin-left: 9px;
  width: 38px;
}

.chat-img {
  float: right;
  margin-top: -6px;
  background-color: #f0f0f0;
  width: 45px;
  height: 45px;
  border-radius: 60px;
}

.chat-left {
  display: flex;
}

.chat-left > span.right-msg {
  margin-top: 15px;
  border: 1px solid #e6e6e6;
  margin-left: 15px;
  border-radius: 4px;
  background-color: #f9f9f9;
  padding: 10px 15px;
  margin-bottom: 20px;
  color: #000;
  width: 89%;
}

.chat-left img {
  float: left;
  top: 0;
  position: relative;
}

.chat-left ul {
  list-style: auto;
  margin-top: 5px;
  padding-left: 25px;
  color: #000;
}

.chat-page-footer input {
  border: 1px solid #e1e1e1;
  height: 90px;
  margin-top: 15px;
  width: 100%;
  border-radius: 1px;
  margin-right: -90px;
  padding-left: 10px;
}

.chat-page-footer input::placeholder {
  color: #969696;
  top: 10px;
  position: fixed;
  left: 10px;
  font-size: 14px;
  font-weight: 500;
}

.icon-mic {
  position: absolute;
  right: 70px;
  margin-top: 41px;
  padding: 10px;
  background-color: #ececec;
  border-radius: 60px;
}

.icon-send {
  position: absolute;
  right: 10px;
  margin-top: 45px;
  border-left: 1px solid #c8c8c8;
  padding-left: 15px;
}

.img-speaker,
.img-copy {
  background-color: #ececec;
  padding: 10px;
  border-radius: 30px;
  margin: 0px 5px;
}

/***     CHATBOT DESIGN CHANGES   ****/

.chatbot-sidebar {
  font-size: 14px;
  width: 18% !important;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background: #ffffff;
  z-index: 100;
  transition: all 0.5s ease;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.sidebar-logo {
  width: 170px;
  height: 24px;
  top: 16px;
  left: 27px;
  position: relative;
  margin-bottom: 20px;
}

.chat-list-menu {
  padding: 20px;
}

.chat-list-menu .btn-primary {
  font-size: 14px;
  width: 100%;
  min-height: 40px;
  margin-top: 10px;
  margin-left: unset !important;
  font-weight: 600;
}

.chat-list-menu .btn-primary img {
  width: 14px;
  height: 14px;
  margin-left: 10px;
  vertical-align: middle;
}

.chatpage-content-area-wrap {
  background: #f8f9fe;
  /* border-radius: 20px 0; */
  position: absolute;
  right: 0;
  height: calc(100vh - 50px);
  width: 82%;
  transition: all 0.5s ease;
}

.search-input {
  margin-top: 20px;
  margin-bottom: 20px;
}

.search-input input {
  width: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  height: 40px;
  padding-left: 30px;
}

.search-input img {
  position: absolute;
  vertical-align: middle;
  padding-left: 10px;
  padding-top: 5px;
}

.search-input input::placeholder {
  padding-left: 5px;
}

.th-checkbox {
  width: 15%;
  display: inline-block;
  border-right: 1px solid #c8c8c8;
}

.th-text {
  width: 75%;
  text-align: left;
  padding-left: 10px;
  position: absolute;
  margin-top: 3px;
  color: #00275a;
  font-size: 16px;
  font-weight: 600;
}

.th-delete,
.td-delete {
  float: right;
}

.table-data-list {
  width: 100%;
}

.table-head-row {
  margin-bottom: 10px;
  padding: 0px 10px;
}

.table-body-row {
  padding: 10px 10px;
  border: 1px solid #c8c8c8;
  border-radius: 5px;
  margin: 10px 0;
  cursor: pointer;
}

.td-checkbox {
  width: 15%;
  display: inline-block;
}

.td-text {
  width: 75%;
  text-align: left;
  padding-left: 10px;
  position: absolute;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 500;
}

.th-checkbox input,
.td-checkbox input {
  height: 16px;
  width: 16px;
  cursor: pointer;
}

.table-body-row.active {
  border: 1px solid #00adef;
  background: #d9f3fd;
}

.chatbot-pg {
  margin-top: unset !important;
  min-height: 360px !important;
  height: calc(100vh - 320px) !important;
}

.chatbot-pg .chat-left img {
  margin-top: -175px;
}

.chatbot-pg .chat-right-text {
  width: 91%;
}

.upload-row input {
  display: none;
}

.deployment-list {
  margin-bottom: 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.18px;
  color: #00275a;
  font-family: "Poppins-Regular";
}

.download-container {
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  background: #fff;
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 98%;
  padding: 0px 15px;
  margin-top: 10px;
  right: 20px;
  margin: 10px;
}

.api-container {
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  background: #fff;
  height: 50px;
  display: flex;
  align-items: center;
  width: 97%;
  padding: 0px 20px;
  margin-top: 10px;
}

.btn-sm {
  display: inline-flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: rgba(0, 39, 90, 0.9);
  color: #ffffff;
  margin-right: 10px;
}

.dropdown-api {
  position: absolute;
  right: 40px;
}

.api-details-continer {
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  margin-top: 15px;
  padding: 15px;
  margin-bottom: 15px;
}

.api-json-view {
  border-radius: 4px;
  border: 1px solid #c8c8c8;
  background: #fff;
  display: flex;
  height: 121px;
  padding: 10px 16px;
  align-items: center;
}

.api-main-container {
  margin-bottom: 10px;
}

.api-main-container > p {
  margin-bottom: 10px;
}

.api-body {
  border: 1px solid #e1e1e1;
  margin: 20px 0;
  padding: 20px;
}

.api-body .label {
  margin-bottom: 10px;
}

.api-body h6 {
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 5px;
  color: #323232;
}

.api-body label {
  font-weight: 500;
  font-size: 12px;
  color: #4b4b4b;
}

.api-body-data {
  background-color: #fff;
  padding: 10px;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  font-size: 12px;
}

.api-body .row {
  display: grid;
}

.btn-copy img {
  padding-left: 5px;
}

.btn-copy {
  border: 1px solid #00adef;
  border-radius: 4px;
  padding: 5px 15px;
  font-size: 14px;
  background: unset;
  color: #00adef;
  display: inline-flex;
}

.api-container.active {
  border: 1px solid #00adef;
}

.chat-settings {
  border-top: 1px solid #e7e7e7;
  margin-top: 10px;
  padding-top: 5px;
}

.file-loader {
  width: 15px;
  aspect-ratio: 1;
  border-radius: 50%;
  margin-left: 18px;
  padding: 3px;
  background: #08f;
  --_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
  -webkit-mask: var(--_m);
  mask: var(--_m);
  -webkit-mask-composite: source-out;
  mask-composite: subtract;
  animation: l3 1s infinite linear;
}

@keyframes l3 {
  to {
    transform: rotate(1turn);
  }
}

.bot-loader {
  width: 40px;
  aspect-ratio: 4;
  margin: 5px;

  background: radial-gradient(circle closest-side, #2bfcb3 90%, #0000) 0% 20%
      no-repeat,
    radial-gradient(circle closest-side, #2aecb7 90%, #0000) 35% 50% no-repeat,
    radial-gradient(circle closest-side, #169add 90%, #0000) 70% 85% no-repeat,
    radial-gradient(circle closest-side, #2f82f4 90%, #0000) 100% 50% no-repeat;
  background-size: calc(100% / 5) 100%;
  animation: l7 1s infinite linear;
}

@keyframes l7 {
  25% {
    background-size: calc(100% / 5) 0%, calc(100% / 5) 100%, calc(100% / 5) 100%,
      calc(100% / 5) 100%, calc(100% / 5) 100%;
  }

  50% {
    background-size: calc(100% / 5) 100%, calc(100% / 5) 0%, calc(100% / 5) 100%,
      calc(100% / 5) 100%, calc(100% / 5) 100%;
  }

  75% {
    background-size: calc(100% / 5) 100%, calc(100% / 5) 100%, calc(100% / 5) 0%,
      calc(100% / 5) 100%, calc(100% / 5) 100%;
  }

  100% {
    background-size: calc(100% / 5) 100%, calc(100% / 5) 100%,
      calc(100% / 5) 100%, calc(100% / 5) 0%, calc(100% / 5) 100%;
  }
}

.pulse-ring {
  content: "";
  width: 30px;
  height: 30px;
  border: 6px solid #ade8ff;
  border-radius: 50%;
  position: absolute;
  bottom: 28px;
  animation: pulsate infinite 1.5s;
  right: 69px;
}

/* .pulse-ring.delay {
   animation-delay: 1s;
} */

@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(1, 1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1.3, 1.3);
    opacity: 0;
  }
}

.bot-loader {
  width: 40px;
  aspect-ratio: 4;
  margin: 5px;
  margin-top: 13px;
  background: radial-gradient(circle closest-side, #8698b0 90%, #0000) 0% 20%
      no-repeat,
    radial-gradient(circle closest-side, #466a99 90%, #0000) 35% 50% no-repeat,
    radial-gradient(circle closest-side, #2f5991 90%, #0000) 70% 85% no-repeat,
    radial-gradient(circle closest-side, #0e2c53 90%, #0000) 100% 50% no-repeat;
  background-size: calc(100% / 5) 100%;
  animation: l7 1s infinite linear;
}

.chat-widget img {
  width: 50px !important;
  height: 50px !important;
}

.chat-widget {
  float: right;
  position: absolute;
  bottom: 40px;
  right: 40px;
}

.typewriter {
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.15em solid;
  width: fit-content;
  /* Adjust this to control how long the cursor is visible */
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.cursor {
  display: inline-block;
  margin-left: 2px;
  /* Space between text and cursor */
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.cursor-notify {
  width: 10px;
  height: 10px;
  border-radius: 20px;
  background-color: rgb(14, 44, 83);
}
