﻿/*========= Colors =============*/
/*========= Colors =============*/
/*========= Colors =============*/
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --success: #22c55e;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #06b6d4;
  --dark: #111827;
  --text: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --sidebar-width: 260px;
  --header-height: 78px;
  --content-bg: #f5f7fb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 4px 18px rgba(15,23,42,.05);
  --transition: .25s ease;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  background-color: #f5f7fb;
  color: #374151;
  font-size: 15px;
  padding: 0 !important;
  font-display: swap;
}

@font-face {
  font-display: swap;
}
a {
  color: #2563eb;
  outline: none;
  text-decoration: none;
}

a:hover:not(.btn, .newsletter-signup-btn, .dropdown-item, .page-link, .nav-link, .btn > a) {
  color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  text-decoration: underline;
}

.description {
  font-size: 16px;
  line-height: 1.68rem;
  margin: 0;
  max-width: 100%;
}
.description p:last-child {
  margin-bottom: 0 !important;
}

.loading {
  display: none;
}

@font-face {
  font-family: "inter-variablefont_opsz,wght";
  src: url("../../fonts/inter-variablefont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/*========= Colors =============*/
body {
  font-family: "Inter", sans-serif;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 1.75rem;
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

small {
  font-size: 0.875rem;
}

strong {
  font-weight: 700;
}

.text-muted {
  color: #6b7280;
}

/*h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: $heading-link-color;
}*/
/*========= Colors =============*/
.single-section {
  padding: 15px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.single-section .section-header {
  margin-bottom: 10px;
}
.single-section .section-header h4 {
  font-size: 1.125rem;
  font-weight: 600;
}
.table.table-fixed {
  width: 100%;
  table-layout: fixed;
}
.table th,
.table td {
  vertical-align: middle;
}
.table th.text-truncate,
.table td.text-truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hidden {
  display: none !important;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.text-small {
  font-size: 12px !important;
  font-weight: normal;
  display: block;
}

.fs-5a {
  font-size: 1.125rem !important;
}

.fs-7a {
  font-size: 0.938rem !important;
}

.fs-7 {
  font-size: 0.875rem !important;
}

.fs-8 {
  font-size: 0.813rem !important;
}

.fs-9 {
  font-size: 0.75rem !important;
}

.fs-10 {
  font-size: 0.688rem !important;
}

.text-xs {
  font-size: 9px;
}

.mh-1 {
  min-height: 1rem !important;
}

.scroll-h-400 {
  height: 400px;
  overflow: auto;
}

.scroll-h-500 {
  height: 500px;
  overflow: auto;
}

.scroll-h-550 {
  height: 550px;
  overflow: auto;
}

.scroll-h-600 {
  height: 600px;
  overflow: auto;
}

a:focus, button:focus {
  outline: none;
}

.border-hover:hover {
  border: solid 1px var(--bs-secondary) !important;
}

.sharethis-inline-share-buttons {
  min-width: 90px;
}

.text-blue {
  color: #2563eb;
}

.bg-blue-light {
  background-color: #eff6ff;
}

.border-blue {
  border-color: #2563eb;
}

.text-green {
  color: #16a34a;
}

.bg-green-light {
  background-color: #f0fdf4;
}

.border-green {
  border-color: #16a34a;
}

.text-orange {
  color: #f97316;
}

.bg-orange-light {
  background-color: #fff7ed;
}

.border-orange {
  border-color: #f97316;
}

.text-purple {
  color: #7c3aed;
}

.bg-purple-light {
  background-color: #f5f3ff;
}

.border-purple {
  border-color: #7c3aed;
}

.text-red {
  color: #dc3545;
}

.bg-red-light {
  background-color: #fff3f4;
}

.border-red {
  border-color: #dc3545;
}

/*========= Colors =============*/
.top-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  height: 72px;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  gap: 10px;
}
@media (max-width: 991px) {
  .top-header {
    padding: 0 15px;
  }
}

.menu-toggle {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 0.375rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
  transition: 0.25s ease;
}

.menu-toggle:hover {
  background: #f3f4f6;
}

.header-search-box {
  width: 420px;
  position: relative;
}
@media (max-width: 1199px) {
  .header-search-box {
    width: auto;
  }
}
@media (max-width: 480px) {
  .header-search-box {
    width: auto;
  }
}

.header-search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.header-search-box input {
  padding-left: 45px;
  background: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-right .dropdown-user .dropdown-toggle:after {
  display: none;
}

/*========= Colors =============*/
.erf-goTop {
  position: fixed;
  background-color: #333;
  color: #fff;
  border: #333 solid 1px;
  border-radius: 4px;
  right: 10px;
  bottom: 100px;
  padding: 8px 10px;
  cursor: pointer;
  z-index: 1100;
  text-align: center;
}

.footer {
  background: linear-gradient(180deg, #0c93b9 0%, #102140 100%);
  position: relative;
  padding: 40px 25px 25px;
}
.footer .footer-top-info {
  /*background: linear-gradient(180deg, #1647A0 0%, #102140 100%);*/
  border-top: 1px solid #0c93b9;
  padding: 30px 10px 10px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 15px;
  color: #eeeeee;
}
.footer .footer-top-info .footer-copyright {
  text-align: center;
  color: #eeeeee;
}
.footer .footer-top-info .footer-copyright a {
  color: #fff;
  line-height: 28px;
}
.footer .footer-top-info .footer-social {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  font-size: 16px;
  gap: 10px;
}
.footer .footer-top-info .footer-social h5 {
  font-size: 14px;
  margin-right: 10px;
  color: #fff;
  margin-bottom: 0;
  line-height: 28px;
}
.footer .footer-top-info .footer-social li {
  display: inline-block;
  padding-top: 2px;
}
.footer .footer-top-info .footer-social li a {
  color: #fff !important;
  display: flex;
  text-align: center;
  line-height: 22px;
  border-radius: 4px;
  font-size: 13px;
  height: 24px;
  width: 24px;
  border: 1px solid;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.footer .footer-top-info .footer-social li a:hover {
  background-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
}
.footer .footer-top-info .footer-social li a:hover i {
  color: #ffffff !important;
}
.footer .footer-top-info .footer-social li a:hover svg path {
  fill: #ffffff;
}
.footer .footer-top-info .footer-social li a svg {
  /* margin-bottom: 2.5px;
   margin-left: 0.7px;*/
}
.footer .footer-top-info .footer-social li a svg path {
  fill: #ffffff;
}
.footer .footer-widget {
  margin-bottom: 10px;
  padding: 10px;
}
.footer .footer-widget .footer-heading {
  margin-bottom: 15px;
}
.footer .footer-widget h4 {
  color: #fff;
  padding-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}
.footer .footer-widget .footer-links li {
  line-height: 32px;
}
.footer .footer-widget .footer-links li a {
  font-size: 15px;
  color: #fff;
  transition: all 0.3s ease-in-out;
  letter-spacing: normal;
  /*&:before { content: '\f105'; font-family: "Font Awesome 5 Free"; font-weight: 900; margin-right: 5px; }*/
}
.footer .footer-widget .footer-links li a:hover { /*color: $primary-color;*/
  text-decoration: underline; /*padding-left: 2px;*/
  letter-spacing: 0.5px;
}
.footer .custom-shape-divider-top-1686823379 {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.footer .custom-shape-divider-top-1686823379 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
}
.footer .custom-shape-divider-top-1686823379 .shape-fill {
  fill: #ffffff;
}

.footer-hub {
  border-left: 1px solid #ddd;
  text-align: center;
  background-color: #ffffff;
  display: flex;
  position: relative;
  border-right: 1px solid #ddd;
  z-index: 999;
  overflow: hidden;
  box-shadow: 0px -6px 6px -3px #aaa;
}
.footer-hub .footer-hub-img {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.footer-hub .footer-hub-img img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  max-width: 100%;
  max-height: 100%;
  transition: 0.5s;
  margin: auto;
}
.footer-hub ul li {
  float: left;
  text-align: center;
  background-color: #fff;
}
.footer-hub ul li a {
  min-width: 180px;
  display: block;
  padding: 15px 5px;
  text-decoration: none;
  font-size: 14px;
}
.footer-hub ul li:hover img {
  transform: scale(1.2);
}
.footer-hub .fixed-head {
  background-color: #2563eb;
  Color: #fff;
  min-width: 150px;
  font-size: 20px;
  padding: 30px 10px;
  position: relative;
  z-index: 2;
}
.footer-hub .fixed-head:after {
  content: "";
  position: absolute;
  border-left: solid 10px #2563eb;
  border-bottom: 10px solid transparent;
  border-top: 10px solid transparent;
  left: 100%;
  top: 41%;
  z-index: 9;
}
.footer-hub .slide-area {
  position: relative;
  width: 100%;
}
.footer-hub .slide-area ul {
  display: flex;
  width: 100%;
  position: absolute;
}
.footer-hub .slide-left-btn {
  position: absolute;
  top: 38%;
  border: solid 1px;
  border-radius: 20px !important;
  width: 26px;
  height: 26px;
  line-height: 16px;
  left: 15px;
  text-align: center;
  padding: 5px;
}
.footer-hub .slide-right-btn {
  position: absolute;
  top: 38%;
  border: solid 1px;
  border-radius: 20px !important;
  width: 26px;
  height: 26px;
  line-height: 16px;
  right: 10px;
  text-align: center;
  padding: 5px;
}
.footer-hub .slide-left-btn:hover, .footer-hub .slide-right-btn:hover {
  display: block;
  background-color: #2563eb;
  color: #fff;
  border: solid 1px #2563eb;
}

.mobile-bottom-ad {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1005;
  text-align: center !important;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2) !important;
  height: 54px !important;
  background-color: #ffffff !important;
}

.mobile-bottom-ad .close-ad {
  background-color: #ffffff;
  color: #000000;
  padding: 0 5px;
  position: fixed;
  width: 28px;
  height: 28px;
  right: 0 !important;
  bottom: 53px;
  box-shadow: 0 -1px 1px 0 rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 12px 0 0 0;
  font-size: 0;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='13' height='13' viewBox='341 8 13 13' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%234F4F4F' d='M354 9.31L352.69 8l-5.19 5.19L342.31 8 341 9.31l5.19 5.19-5.19 5.19 1.31 1.31 5.19-5.19 5.19 5.19 1.31-1.31-5.19-5.19z' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-size: 13px 13px;
  background-position: 9px;
  background-color: #fff;
  background-repeat: no-repeat;
  z-index: 1005;
}

.footer-industries-strip {
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
  z-index: 998;
  position: relative;
}
.footer-industries-strip .industries-header {
  background-color: #2563eb;
  padding: 10px;
}
.footer-industries-strip .industries-text {
  text-align: right;
  display: grid;
  height: 100%;
}
.footer-industries-strip .industries-text p {
  margin: 0;
  font-size: 16px;
  color: #fff;
  align-self: center;
  display: grid;
}
.footer-industries-strip .hub-page-list {
  background-color: #f9f9f9;
}
.footer-industries-strip .hub-page-list li a {
  background-color: #ffffff;
}
.footer-industries-strip .hub-page-list li a .hub-image img {
  max-height: 50%;
  max-width: 50%;
}
.footer-industries-strip .hub-page-list li a:hover {
  border-color: #2563eb;
  background-color: #2563eb;
}

/*========= Colors =============*/
.sidebar {
  width: 260px;
  background: #fff;
  border-right: 1px solid #e5e7eb;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  transition: all 0.75 ease-in-out;
  -webkit-transition: all 0.75 ease-in-out;
  -moz-transition: all 0.75 ease-in-out;
  -o-transition: all 0.75 ease-in-out;
  transition: 0.25s ease;
  z-index: 1040;
}
@media (max-width: 1199px) {
  .sidebar {
    left: -110%;
  }
  .sidebar.show {
    left: 0;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  }
}
.sidebar.collapsed {
  width: 70px;
}
.sidebar.collapsed .logo-text {
  display: none;
}
.sidebar.collapsed .sidebar-menu li a {
  padding: 12px;
}
.sidebar.collapsed .sidebar-menu li a span {
  display: none;
}
.sidebar .logo {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
}
.sidebar .logo .logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 24px;
  flex: 0 0 48px;
}
.sidebar .logo .logo-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: #222827;
  margin: 0;
}
.sidebar .sidebar-menu {
  list-style: none;
  padding: 20px 12px;
}
.sidebar .sidebar-menu li {
  margin-bottom: 6px;
}
.sidebar .sidebar-menu li a {
  display: flex;
  padding: 12px 15px;
  color: #4b5563;
  text-decoration: none;
  border-radius: 14px;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
  font-weight: 500;
}
.sidebar .sidebar-menu li a:hover {
  background: #eff6ff;
  color: var(--primary);
}
.sidebar .sidebar-menu li a i {
  width: 22px;
  text-align: center;
  font-size: 20px;
}
.sidebar .sidebar-menu li a span {
  transition: all 0.75 ease-in-out;
  -webkit-transition: all 0.75 ease-in-out;
  -moz-transition: all 0.75 ease-in-out;
  -o-transition: all 0.75 ease-in-out;
  line-height: 20px;
}
.sidebar .sidebar-menu li.active a {
  background: #eff6ff;
  color: var(--primary);
  font-weight: 600;
}

/*@import "components/owl-caraousel";*/
/*========= Colors =============*/
.stats-card .single-stats-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.stats-card .single-stats-card .stats-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 15px;
  font-size: 30px;
}
@media (max-width: 1199px) {
  .stats-card .single-stats-card .stats-icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
  }
}
.stats-card .single-stats-card .stats-content .stats-title {
  font-size: 14px;
  font-weight: 500;
}
.stats-card .single-stats-card .stats-content .stats-count {
  font-size: 25px;
  font-weight: 600;
  color: #222827;
}

.activity-card .activity-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.activity-card .activity-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
}
.activity-card .activity-item:not(:last-child) {
  border-bottom: 1px solid #f1f3f5;
}
.activity-card .activity-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.activity-card .activity-content {
  flex: 1;
}
.activity-card .activity-content h6 {
  margin-bottom: 2px;
}
@media (max-width: 480px) {
  .activity-card .activity-content h6 {
    font-size: 14px;
  }
}
.activity-card .activity-content p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
}
@media (max-width: 480px) {
  .activity-card .activity-content p {
    font-size: 13px;
  }
}
.activity-card .activity-time {
  white-space: nowrap;
  color: #6c757d;
  font-size: 14px;
}

/*========= Colors =============*/
.upload-theme-products {
  --theme-color: #2563eb;
  --theme-hover: #1d4ed8;
  --theme-light: rgba(37, 99, 235, 0.08);
}

.upload-theme-articles {
  --theme-color: #7c3aed;
  --theme-hover: #6d28d9;
  --theme-light: rgba(124, 58, 237, 0.08);
}

.upload-theme-emc {
  --theme-color: #f97316;
  --theme-hover: #ea580c;
  --theme-light: rgba(249, 115, 22, 0.08);
}

.upload-theme-fromdb {
  --theme-color: #16a34a;
  --theme-hover: #1cc259;
  --theme-light: rgba(22, 163, 74, 0.08);
}

@media (max-width: 767px) {
  .upload-center .nav-tabs {
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    border: none !important;
    gap: 10px;
  }
}
.upload-center .nav-tabs .nav-item:first-child .nav-link {
  border-radius: 8px 0 0 8px;
}
.upload-center .nav-tabs .nav-item:last-child .nav-link {
  border-radius: 0 8px 8px 0;
}
@media (max-width: 767px) {
  .upload-center .nav-tabs .nav-item {
    flex-basis: auto !important;
  }
}
.upload-center .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: 0;
  padding: 15px 20px;
  font-size: 16px;
  color: #333333;
  font-weight: 505;
}
@media (max-width: 991px) {
  .upload-center .nav-tabs .nav-link {
    padding: 15px 10px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .upload-center .nav-tabs .nav-link {
    border-radius: 6px !important;
    background-color: #ffffff;
    font-size: 14px;
  }
}
.upload-center .nav-tabs .nav-link:hover {
  border: none;
  border-bottom: 2px solid;
}
.upload-center .nav-tabs .nav-link:hover#products-tab {
  border-color: #2563eb;
}
.upload-center .nav-tabs .nav-link:hover#articlesWhitepapers-tab {
  border-color: #7c3aed;
}
.upload-center .nav-tabs .nav-link:hover#emcManu-tab {
  border-color: #f97316;
}
.upload-center .nav-tabs .nav-link:hover#fromdb-tab {
  border-color: #16a34a;
}
.upload-center .nav-tabs .nav-link.active {
  border: none;
  border-bottom: 2px solid;
}
.upload-center .nav-tabs .nav-link.active#products-tab {
  color: #2563eb;
  border-color: #2563eb;
}
.upload-center .nav-tabs .nav-link.active#articlesWhitepapers-tab {
  color: #7c3aed;
  border-color: #7c3aed;
}
.upload-center .nav-tabs .nav-link.active#emcManu-tab {
  color: #f97316;
  border-color: #f97316;
}
.upload-center .nav-tabs .nav-link.active#fromdb-tab {
  color: #16a34a;
  border-color: #16a34a;
}
.upload-center .upload-card {
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #ffffff;
  padding: 2rem;
}
@media (max-width: 767px) {
  .upload-center .upload-card {
    padding: 1rem;
  }
}
.upload-center .upload-zone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  padding: 2rem;
  text-align: center;
  background: #fcfdff;
  border: 2px dashed #d6dce5;
  border-radius: 16px;
  cursor: pointer;
  transition: 0.25s ease;
  position: relative;
}
.upload-center .upload-zone:hover {
  border-color: var(--theme-color);
  /*background: #f5f9ff;*/
  background: var(--theme-light);
}
.upload-center .upload-zone .upload-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  background: var(--theme-light);
  color: var(--theme-color);
  font-size: 3rem;
}
.upload-center .upload-zone .upload-title {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #222827;
}
.upload-center .upload-zone .upload-input {
  position: absolute;
  outline: none !important;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  left: 0;
}
.upload-center .upload-zone .upload-or {
  margin-bottom: 1.25rem;
  color: #64748b;
  font-size: 0.95rem;
}
.upload-center .upload-zone .btn-upload {
  color: #ffffff;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
}
.upload-center .upload-zone .btn-upload:hover {
  background-color: var(--theme-hover);
  border-color: var(--theme-hover);
}
.upload-center .upload-zone .upload-size {
  margin-top: 1.25rem;
  margin-bottom: 0;
  color: #64748b;
  font-size: 0.9rem;
}
.upload-center .upload-zone .upload-size strong {
  font-weight: 600;
}
.upload-center .upload-guidelines {
  margin-top: 1.5rem;
}
.upload-center .upload-guidelines h5 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}
.upload-center .upload-guidelines li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.375rem;
  color: #64748b;
}
.upload-center .upload-guidelines li i {
  color: var(--theme-color);
  font-size: 1rem;
}
.upload-center .upload-guidelines li strong {
  font-weight: 600;
}

.processing-status {
  padding: 2rem;
}
@media (max-width: 767px) {
  .processing-status {
    padding: 1rem;
  }
}
.processing-status .status-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.processing-status .status-list .status-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.processing-status .status-list .status-item .status-title {
  font-size: 1rem;
  font-weight: 500;
}
.processing-status .status-list .status-item .status-count {
  font-weight: 550;
}

.upload-progress {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
  margin-top: 2rem;
  padding-top: 2rem;
}
.upload-progress__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
  gap: 15px;
}
@media (max-width: 991px) {
  .upload-progress__header {
    flex-direction: column;
  }
}
.upload-progress__label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  color: #64748b;
}
.upload-progress__filename {
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #222827;
}
.upload-progress__size {
  font-size: 0.875rem;
  color: #374151;
}
.upload-progress__status {
  padding: 0.45rem 1rem;
  background: var(--theme-light);
  color: var(--theme-color);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50rem;
}
.upload-progress__body {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.upload-progress__percent {
  min-width: 48px;
  text-align: right;
  font-size: 1rem;
  font-weight: 700;
  color: #222827;
}

.progress {
  flex: 1;
  height: 8px;
  background: #edf2f7;
  border-radius: 50rem;
  overflow: hidden;
}

.progress-bar {
  background: var(--theme-color);
  border-radius: inherit;
  transition: width 0.4s ease;
}

.recent-uploads-table .type-badge {
  padding: 0.125rem 0.5rem;
  border-radius: 5px;
  font-size: 0.75rem;
  display: inline-flex;
  justify-content: start;
  align-items: center;
  background-color: var(--theme-light);
  color: var(--theme-color);
}
.recent-uploads-table .status-badge {
  padding: 0.125rem 0.5rem;
  border-radius: 5px;
  font-size: 0.75rem;
  display: inline-flex;
  justify-content: start;
  align-items: center;
}
.recent-uploads-table .status-badge.processing {
  background-color: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}
.recent-uploads-table .status-badge.completed {
  background-color: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}
.recent-uploads-table .status-badge.failed {
  background-color: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}
.recent-uploads-table .status-badge i {
  font-size: 7px;
}

/*========= Colors =============*/
.prompt-manager .search-prompt {
  position: relative;
}
.prompt-manager .search-prompt i {
  position: absolute;
  left: 12px;
  top: calc(50% - 8px);
  color: #777777;
}
.prompt-manager .search-prompt input {
  padding-left: 38px;
}
.prompt-manager .prompt-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prompt-manager .prompt-list .single-prompt {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-radius: 0.75rem;
  transition: 0.25s ease;
  background-color: #ffffff;
  gap: 10px;
  background-color: #fdfdfd;
  border: 1px solid #f9f9f9;
  border-left: 3px solid #ddd;
}
@media (max-width: 480px) {
  .prompt-manager .prompt-list .single-prompt {
    flex-direction: column;
    align-items: start;
  }
}
.prompt-manager .prompt-list .single-prompt:hover {
  background: #f8f9fa;
}
.prompt-manager .prompt-list .single-prompt.active {
  background: rgba(13, 110, 253, 0.08);
  border-color: rgba(13, 110, 253, 0.15);
  border-left: 3px solid var(--bs-primary);
}
.prompt-manager .prompt-list .single-prompt .prompt-content {
  text-align: left;
}
.prompt-manager .prompt-list .single-prompt .prompt-content .prompt-title {
  font-weight: 600;
  font-size: 14px;
}
.prompt-manager .prompt-list .single-prompt .prompt-content .type-badge {
  padding: 0.125rem 0.5rem;
  border-radius: 5px;
  font-size: 0.65rem;
  display: inline-flex;
  justify-content: start;
  align-items: center;
  background-color: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}
.prompt-manager .prompt-list .single-prompt .updated-on {
  color: #64748b;
  font-size: 13px;
}

/*========= Colors =============*/
.main-chatbox {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 170px);
}

.chat-history-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0;
  max-height: 600px;
  overflow-y: auto;
}

.history-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #f9f9f9;
  border-left: 3px solid #dddddd;
  background: #fdfdfd;
}
.history-item:hover {
  background: #f8f9fa;
}
.history-item:hover .history-actions {
  opacity: 1;
  visibility: visible;
}
.history-item.active {
  background: rgba(13, 110, 253, 0.08);
  border-color: rgba(13, 110, 253, 0.15);
  border-left: 3px solid var(--bs-primary);
  /* &::before {
      content: "";
      position: absolute;
      left: 0;
      top: .5rem;
      bottom: .5rem;
      width: 3px;
      border-radius: 0 3px 3px 0;
      background: var(--bs-primary);
  }*/
}
.history-item.active .history-actions {
  opacity: 1;
  visibility: visible;
}
.history-item .history-title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-right: 5.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #212529;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.history-item .history-title i {
  font-size: 0.75rem;
  color: #6c757d;
}
.history-item .history-preview {
  padding-right: 5.5rem;
  font-size: 0.75rem;
  color: #6c757d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.history-item .history-actions {
  position: absolute;
  bottom: 0.25rem;
  right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}
.history-item .history-actions button {
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0.45rem;
  background: transparent;
  color: #6c757d;
  transition: 0.2s ease;
}
.history-item .history-actions button i {
  font-size: 0.85rem;
}
.history-item .history-actions button:hover {
  background: #fff;
  color: var(--bs-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.history-item .history-actions button.delete-chat:hover {
  color: var(--bs-danger);
}
.history-item .history-actions button.pin-chat.active {
  color: var(--bs-primary);
}
.history-item .updated-on {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  transition: 0.2s ease;
  font-size: 11px;
  color: #777777;
  font-weight: 600;
}

.chat-body-wrapper {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.chat-body {
  height: 100%;
  overflow-y: auto;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chat-body .message {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.chat-body .message.user {
  align-items: flex-end;
}
.chat-body .message.user .bubble {
  background: rgba(37, 99, 235, 0.08);
  color: #000000;
  font-size: 16px;
}
.chat-body .message.bot {
  align-items: flex-start;
}
.chat-body .message.bot .bubble {
  background: white;
}
.chat-body .message .bubble {
  border-radius: 10px;
  padding: 14px 18px;
  max-width: 80%;
  word-wrap: break-word;
  box-shadow: 0 0px 2px rgba(0, 0, 0, 0.25);
}

.chat-footer {
  border-top: 1px solid #e9ecef;
  padding: 16px 20px;
  background: #fff;
  border-radius: 0 0 10px 10px;
}

.chat-input {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  border: 1px solid #dee2e6;
  border-radius: 14px;
  padding: 10px;
  background: #fff;
  transition: 0.2s;
}
.chat-input:focus-within {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}
.chat-input textarea {
  border: 0 !important;
  box-shadow: none !important;
  resize: none;
  min-height: 26px;
  max-height: 150px;
  overflow-y: auto;
  padding: 0;
}

.chat-footer-text {
  margin-top: 8px;
  text-align: center;
  font-size: 0.75rem;
  color: #6c757d;
}

#scrollToBottomBtn {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--bs-primary);
  color: #fff;
  display: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/*========= Colors =============*/
.wrapper {
  display: flex;
  min-height: 100vh;
}

.main-content {
  margin-left: 260px;
  width: calc(100% - 260px);
  min-height: 100vh;
}
@media (max-width: 1199px) {
  .main-content {
    margin-left: 0;
    width: 100%;
  }
}
.main-content.expanded {
  margin-left: 70px;
  width: calc(100% - 70px);
}

/*Loader*/
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader-page {
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 16px;
}

.loader-main {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-loader {
  position: absolute;
  width: 40px;
  font-size: 25px;
  color: #2563eb;
  font-weight: 600;
}

.loader {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 0px solid;
  border-color: #064c67 transparent #064c67 transparent;
  -webkit-animation: rotation 1s linear infinite;
  animation: rotation 1s linear infinite;
}
.loader:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 2px solid;
  border-color: transparent #2563eb transparent #2563eb;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  -webkit-animation: rotationBack 0.5s linear infinite;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
}
.loader:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 2px solid;
  border-color: #000000 transparent #000000 transparent;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  -webkit-animation: rotation 1.5s linear infinite;
  animation: rotation 1.5s linear infinite;
  transform-origin: center center;
}

.delete-alert .alert-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  background-color: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  font-size: 3rem;
  margin: auto;
  margin-bottom: 1rem;
}

.form-control::placeholder {
  color: #adb5bd;
  opacity: 1;
}

/*========= Colors =============*/
.btn .fa {
  line-height: 1.4 !important;
}

.col-form-label {
  padding-top: calc(0.375rem + 4px);
}

.form-check {
  cursor: pointer;
}
.form-check .form-check-input {
  cursor: pointer;
}
.form-check .form-check-input:focus {
  box-shadow: none;
}
.form-check .form-check-label {
  cursor: pointer;
  margin: 0;
}

.form-check-input:checked {
  color: #fff;
  border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  background-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
}

textarea.form-control {
  min-height: 72px !important;
}

.min-h-auto {
  min-height: auto !important;
}

.text-primary {
  color: #2563eb !important;
}

a.text-primary:focus, a.text-primary:hover {
  color: rgb(19.4285714286, 79.6571428571, 211.7714285714) !important;
}

.form-control:focus, .form-select:focus {
  border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  box-shadow: none;
  color: #495057;
}

/*.form-floating>.form-control:focus,.form-floating>.form-select:focus{
    border-color:$link-hover-color;
    box-shadow:none;
    color:#495057;
}*/
.form-floating > .form-control::placeholder {
  color: transparent;
  opacity: 0;
}

.form-floating > .form-control::placeholder, .form-floating > .form-select::placeholder {
  color: #c2c2c2;
}

.form-control, .form-select {
  color: #495057;
}

.modal .form-floating > label {
  pointer-events: all;
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #2563eb;
  --bs-btn-border-color: rgb(22.9857142857, 88.9714285714, 233.7142857143);
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-btn-hover-border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-btn-focus-shadow-rgb: 8, 93, 125;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-btn-active-border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #2563eb;
  --bs-btn-disabled-border-color: #2563eb;
  border-radius: 8px;
}

.btn-outline-primary {
  --bs-btn-color: #2563eb;
  --bs-btn-border-color: #2563eb;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-btn-hover-border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-btn-focus-shadow-rgb: 8, 93, 125;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-btn-active-border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-btn-disabled-color: #2563eb;
  --bs-btn-disabled-border-color: #2563eb;
  border-radius: 8px;
  --bs-gradient: none;
}

.btn-outline-primary-light {
  --bs-btn-color: #008bc0;
  --bs-btn-border-color: #bce4f3;
  --bs-btn-hover-color: #008bc0;
  --bs-btn-hover-bg: #e6f8ff;
  --bs-btn-hover-border-color: #bce4f3;
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #008bc0;
  --bs-btn-active-bg: #e6f8ff;
  --bs-btn-active-border-color: #e6f8ff;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e6f8ff;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e6f8ff;
  --bs-gradient: none;
}

.btn-warning {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #ee7f2e;
  --bs-btn-border-color: #ee7f2e;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #e47a2a;
  --bs-btn-hover-border-color: #e47a2a;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #e47a2a;
  --bs-btn-active-border-color: #e47a2a;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ffffff;
  --bs-btn-disabled-bg: #ee7f2e;
  --bs-btn-disabled-border-color: #ee7f2e;
}

.btn-outline-warning {
  --bs-btn-color: #ee7f2e;
  --bs-btn-border-color: #ee7f2e;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #ee7f2e;
  --bs-btn-hover-border-color: #ee7f2e;
  --bs-btn-focus-shadow-rgb: 255, 193, 7;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #ee7f2e;
  --bs-btn-active-border-color: #ee7f2e;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #ee7f2e;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #ee7f2e;
  --bs-gradient: none;
}

.btn-success {
  --bs-btn-color: #fff;
  --bs-btn-bg: #28a745;
  --bs-btn-border-color: #28a745;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #218838;
  --bs-btn-hover-border-color: #1e7e34;
  --bs-btn-focus-shadow-rgb: 60, 153, 110;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #218838;
  --bs-btn-active-border-color: #1e7e34;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #28a745;
  --bs-btn-disabled-border-color: #28a745;
}

.btn-success, btn-outline-success:hover {
  background: #28a745;
  border-color: #28a745;
  color: #fff;
}

.pagination {
  --bs-pagination-color: #374151;
  --bs-pagination-bg: #ffffff;
  --bs-pagination-border-width: 1px;
  --bs-pagination-border-color: #e5e7eb;
  --bs-pagination-hover-color: #ffffff;
  --bs-pagination-hover-bg: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-pagination-hover-border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-pagination-focus-color: #ffffff;
  --bs-pagination-focus-bg: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-pagination-focus-border-color: rgb(19.4285714286, 79.6571428571, 211.7714285714);
  --bs-pagination-focus-box-shadow: 0 0 0 .2rem rgba($primary-color, .15);
  --bs-pagination-active-color: #ffffff;
  --bs-pagination-active-bg: #2563eb!important;
  --bs-pagination-active-border-color: #2563eb;
  --bs-pagination-disabled-color: #9ca3af;
  --bs-pagination-disabled-bg: #f8f9fa;
  --bs-pagination-disabled-border-color: #e5e7eb;
  gap: 5px;
}

.page-link {
  border-radius: 5px !important;
}

.text-gray {
  color: #777777 !important;
}

.btn-block {
  display: block;
  width: 100%;
}

.modal {
  --bs-modal-width: 600px;
}

.modal-content {
  border-radius: 0.5rem !important;
  overflow: hidden;
}

.modal-header {
  padding: 0.75rem;
  align-items: start;
}

.fa, .fa-brands, .fa-classic, .fa-regular, .fa-solid, .fab, .far, .fas {
  width: auto !important;
}
