@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/* ================= RESET================ */
/* === Modern CSS Reset === */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  line-height: 18px;
  -webkit-font-smoothing: antialiased;
  font-family: system-ui, sans-serif;
  /* background-color: #fff;
  color: #000; */
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

#svg {
  display: unset !important;
}

button,
input,
select,
textarea {
  border: none;
  background: none;
  outline: none;
  appearance: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 13px;
  color: #4b4b4b;
  background: #f9f7f3;
}

.arrow-icon.rotated {
  transform: rotate(180deg);
}

/* Container */
.grid-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

/* Row */
.grid-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Columns */
[class*="col-"] {
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
  position: relative;
}

.justify-between {
  justify-content: space-between;
}

/* Column width definitions for 12-column grid */
.col-1 {
  width: 8.33%;
}

.col-2 {
  width: 16.66%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33%;
}

.col-5 {
  width: 41.66%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.33%;
}

.col-8 {
  width: 66.66%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33%;
}

.col-11 {
  width: 91.66%;
}

.col-12 {
  width: 100%;
}

/* Responsive utilities (optional) */
@media (max-width: 768px) {
  [class*="col-"] {
    width: 100%;
  }
}

.dFlex {
  display: flex;
  align-items: center;
}

.dFlex img {
  width: 16px;
  margin-right: 6px;
}

.dFlexTab {
  display: flex;
  align-items: center;
  justify-content: flex-start !important;
}

.dFlexTab img {
  width: 12px;
}

.containerLogin {
  width: calc(100vw - 16px);
  height: 100vh;
  padding: 64px 0 0 48px;
  margin: 0;
  background: url(topoLines.svg) no-repeat;
  background-size: 100%;
}

.loginbg {
  background-image: linear-gradient(to right, #ebe4d6, #f4f1eb);
}

.logo {
  width: 500px;
  height: 102px;
  margin-bottom: 24px;
}

.bgLayers {
  background: url(../img/layers.png) no-repeat;
  background-size: 100%;
  height: calc(100vh - 64px);
}

.containerLogin h3 {
  font-size: 24px;
  font-weight: bold;
  color: #24276e;
  margin-bottom: 10px;
}

.containerLogin p {
  line-height: 16px;
  padding-bottom: 24px;
}

/* =========== Login Card ============== */

.login-card {
  background: white;
  border: 2px solid #fbbf24;
  /* orange border */
  padding: 18px 22px;
  border-radius: 0;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 400px;
  margin-bottom: 24px;
}

.login-card h2 {
  color: #24276e;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 24px;
}

.login-card label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  color: #4b4b4b;
  font-size: 10px;
}

.login-card input {
  width: 100%;
  padding: 6px 8px;
  font-size: 18px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  margin-bottom: 24px;
  font-style: normal;
  height: 30px;
}

.login-card input::placeholder {
  font-size: 18px;
  color: rgba(75, 75, 75, 0.5);
  font-style: italic;
}

.login-card p {
  padding-bottom: 0;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-link {
  color: #1da1f2;
  text-decoration: none;
  /* margin-left: 18px; */
}

.forgot-link:hover {
  text-decoration: underline;
}

.btn-primary {
  background: #1da1f2;
  border: none;
  color: white;
  padding: 5px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:disabled {
  background: #c0c0c0;
  color: #666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.7;
}

.button-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 6px;
  background: #f4f1eb;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  width: 100%;
  margin-top: auto;
  gap: 0 8px;
}
.button-container.absolutebtm {
  position: sticky;
  bottom: 2%;
}

.button-container .btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px 12px;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  background: #fff;
  color: #333;
  font-size: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.button-container .btn:hover {
  background: #15adff;
  border-color: #15adff;
  color: #fff;
}

.pad0 {
  padding: 0 !important;
}

.pad-left0 {
  padding-left: 0 !important;
}

.bdr-left {
  border-left: 1px dashed rgba(0, 0, 0, 0.08);
}

.downloadFileName {
  padding-right: 4px;
}

.text-right {
  text-align: right;
}

.alert-error-msg,
.txt-cancel,
.errormsg {
  color: #ff6246;
}

.resultsuccess {
  margin: 6px 0;
}
.pad-left8 {
  padding-left: 8px;
}
.resultsuccess,
.alert-success-msg {
  color: #3bb100;
  font-weight: bold;
}

.pad-bot-none {
  padding-bottom: 0 !important;
}

.flex-justify {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

.margin-rgt16 {
  margin-right: 12px;
}

.margin-rgt16 img {
  margin-right: 0 !important;
}

.leftsidebar {
  position: sticky;
  top: 18px;
  left: 0;
}
.hgtProjectDetails {
  height: calc(100vh - 480px);
}
/* ===============Gloabl Inner Page ================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "lato", sans-serif;
}

.container-main {
  display: flex;
  min-height: 100vh;
  background-color: #f9f7f3;
}

/* Sidebar */
.sidebar {
  background-color: #fcfbf9;
  min-width: 192px;
  border-right: 1px solid #ddd;
  padding: 18px 0 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.sidebar-logo img {
  width: calc(100% - 12px);
  max-height: 40px;
}

.select-group {
  margin-top: 0.75rem;
}

.select-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5rem;
  background: #24276e;
  padding: 0 6px;
  border-radius: 3px 0 0 3px;
  font-weight: bold;
  font-size: 11px;
  color: #fff;
  line-height: 18px;
  text-transform: uppercase;
}

.select-group select {
  width: 100%;
  padding: 0.5rem;
  padding: 3px 8px;
  border: 1px solid #ccc;
  color: #4b4b4b;
  border-radius: 3px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
  cursor: pointer;
}

.current-state {
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
}

.current-state .state-Flag {
  width: 2rem;
  height: 2rem;
  border-radius: 3px;
  display: flex;
  justify-content: flex-start;
  background: #fff;
  align-items: center;
  padding: 0;
  margin-right: 6px;
  box-shadow: 0 7px 17px rgba(0, 0, 0, 0.25);
}

.current-state .state-dropdown {
  width: calc(100% - 44px);
}

.nav-menu ul {
  list-style: none;
}

.nav-menu ul li {
  padding: 0.25rem 0;
  font-weight: bold;
  color: #243a73;
  cursor: pointer;
  font-size: 10px;
}

.nav-menu ul li a {
  display: flex;
  padding-left: 0.75rem;
  text-transform: uppercase;
  height: 20px;
  line-height: 20px;
  transition: all 0.3s ease;
  align-items: center;
}

.nav-menu ul li a:hover {
  background: #f0efed;
}

.nav-menu ul li a.logoutIcon:hover {
  background: none;
  padding-right: 4px;
  transform: all 0.3s ease;
}

.nav-menu ul li a img {
  margin-right: 6px;
  height: 14px;
  width: auto;
}

.sidebar-footer {
  border: dashed 1px rgba(0, 0, 0, 0.2);
  border-left: none;
  border-right: none;
  margin: 14px 0;
  padding: 14px 0;
}

.sidebar-footer ul {
  list-style: none;
}

.sidebar-footer li {
  font-size: 0.9rem;
  margin: 0.25rem 0;
  color: #555;
}

.sidebar-footer .user {
  font-size: 0.85rem;
  color: #333;
  font-weight: 600;
}

.sidebar-logo > .current,
.navbar-nav > li {
  position: relative;
}

.sidebar-logo > .current::after,
.navbar-nav > li.current::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 20px;
  right: 0;
  background: #ffa000;
  top: 14px;
}

.sidebar-logo > .current::before,
.navbar-nav > li.current::before {
  content: "";
  position: absolute;
  right: -7px;
  width: 0;
  height: 0;
  top: 16px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #ffa000;
}

.navbar-nav > li.current::after {
  height: 20px;
  top: 50%;
  margin-top: -10px;
}

.navbar-nav > li.current::before {
  top: 50%;
  margin-top: -8px;
}

.navbar-nav > li.current a {
  background: #f0efed;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 24px;
}

.header h1 {
  font-size: 36px;
  color: #1c2674;
}

.header span {
  font-weight: 300;
}

/* Card Section */
.card-grid {
  display: flex;
  gap: 2rem;
  margin: 1rem 0;
}

.tblGrid {
  display: grid;
  grid-template-columns: 1fr 32px 32px;
  align-items: stretch;
  gap: 10px;
}

.card {
  background-color: rgba(255, 255, 0255, 0.7);
  border-radius: 0;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); */
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem;
  text-align: center;
  flex: 1;
}

.card.fullHgt {
  height: calc(100vh - 250px);
  position: sticky;
  top: 0;
  overflow-y: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.text-ellipsis {
  text-overflow: ellipsis;
}

.label-wrapper {
  display: flex;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
}

.label-text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
}

.icon_igdid {
  margin-left: 4px;
  flex-shrink: 0;
}

.stateList {
  width: 255px;
  padding: 0 !important;
  min-height: calc(100vh - 71px);
  height: calc(100vh - 71px);
  position: relative;
  overflow-y: auto;
  scrollbar-gutter: stable;
}

.card img {
  width: 100%;
  object-fit: cover;
  border-radius: 0;
}

.card-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.card-title h2 {
  color: #1c2674;
  font-size: 24px;
  font-weight: 600;
}

.card-title img {
  height: 2rem;
  width: auto;
  margin-right: 0.5rem;
}

.card p {
  font-size: 0.75rem;
  margin: 0.5rem 0 1rem;
  font-weight: bold;
  line-height: auto;
}

.card button {
  background-color: #1ca9f4;
  color: #fff;
  padding: 0.25rem 0.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.card button:disabled,
.card button:disabled:hover {
  background-color: #d0d0d0;
}

/* Dashboard Section */
.dashboard h2 {
  font-size: 32px;
  margin-bottom: 0.75rem;
  color: #1c2674;
}

.dashboard h2 span {
  font-weight: 300;
}

.dashboard-content {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.notifications {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.notif {
  background: #fff;
  padding: 0.75rem;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  border-right: 4px solid #fbfaf8;
  cursor: pointer;
}

.notif img {
  width: 11px;
  height: auto;
  margin: 0 8px;
}

.notif strong {
  font-weight: 600;
}

.notif a {
  color: #1ca9f4;
  font-size: 0.9rem;
}

.notif p {
  margin: 0;
}

.icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #24276e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 6px;
}

.chart {
  flex: 1;
  text-align: center;
}

.chart h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #24276e;
}

/* .chart img {
  width: 100%;
  max-width: 300px;
  height: auto;
} */

/* ================ModalPopup================ */
/* .modal{
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  left: 0;
} */
/* ==============Batch Process================ */
.batchProcess {
  padding: 14px 14px 0;
  position: relative;
}

.tabs {
  border-bottom: 2px solid #1a237e;
}

.tab {
  color: #4b4b4b;
  padding: 4px 8px;
  border: none;
  cursor: pointer;
  background: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  border-radius: 3px 3px 0 0;
  margin-bottom: -2px;
}

.tab > .tabIcons {
  display: inline-flex !important;
  margin-right: 4px;
  margin-bottom: -4px;
}

.tab.active {
  background-color: #1a237e;
  color: white;
  border-bottom-color: #1a237e;
}

.tab.active .tabIcons path {
  fill: #fff !important;
}

.batchProcess .card {
  background: rgba(0, 0, 0, 0.02);
  padding: 12px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 16px;
}

.state-section {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.state-section img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.label {
  font-weight: bold;
  font-size: 12px;
}

.context-label {
  margin-top: 12px;
  font-size: 12px;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

.radio-group {
  display: flex;
  margin-bottom: 12px;
}

.radio-group label {
  font-size: 11px;
  line-height: 24px;
  flex: 1;
  text-align: center;
  padding: 0;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #fff;
  font-weight: bold;
  color: #4b4b4b;
  transition: background 0.3s;
  user-select: none;
  border-radius: 0;
}

.radio-group label:hover {
  background: rgba(0, 0, 0, 0.05);
}

.radio-group input[type="radio"] {
  display: none;
}

.radio-group input[type="radio"]:checked + label {
  background: #24276e;
  color: #ffffff;
}

.radio-group label:not(:last-child) {
  border-right: none;
}

.radio-group label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.radio-group label:last-child {
  border-radius: 0 4px 4px 0;
}

.radio-group label.noBorCor {
  border-radius: 0;
  line-height: 18px;
}

.search-section {
  display: flex;
  align-items: center;
}

.search-section input[type="text"] {
  flex: 1;
  padding: 0 10px;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  outline: none;
  height: 28px;
  background: #fff;
}
.search-section input[type="search"] {
  flex: 1;
  padding: 0 10px;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  outline: none;
  height: 28px;
  background: #fff;
}

.search-section button {
  width: 28px;
  height: 28px;
  margin-left: 8px;
  background: #03a9f4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.search-section button:hover {
  background: #0288d1;
}

.noBdr {
  border-radius: 0 !important;
}

.textDetails {
  display: flex;
  flex-direction: column;
  /* min-height: 453px; */
}

/* ============ Search Result ============== */

/* .card-search {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
} */

.infoMsg {
  font-size: 0.75rem;
  margin: 0 0 0.75rem 0;
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 4px 8px;
}

.resultcard {
  display: flex;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: 12px 8px;
  margin-bottom: 6px;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid transparent;
  cursor: pointer;
  transition: all 1s ease;
}

.resultcard:hover {
  border-left: 4px solid orange;
  background-color: rgba(255, 255, 255, 0.8);
}

.resultcard.selected {
  border-left: 4px solid transparent;
  border-right: 4px solid orange;
  background: rgba(255, 255, 255, 0.6);
}

.resultcard.selected::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid orange;
}

.resultcard.selected:hover {
  border-left: 4px solid transparent;
}

.icon-column {
  flex: 0 0 22px;
  margin-right: 8px;
  font-size: 18px;
  color: #007bff;
  padding-top: 3px;
}

.text-column {
  flex: 1;
  text-align: left;
}

.owner {
  color: #4b4b4b;
  font-size: 12px;
  margin-bottom: 3px;
  text-transform: camelcase;
}

.address {
  font-weight: bold;
  font-size: 13px;
}

.line2,
.city-state,
.county {
  font-size: 12px;
}

.no-data {
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem;
}

.no-datafilter {
  font-size: 0.75rem;
  padding: 0.75rem 0 0;
  color: #e53935;
}

.propertyData {
  background: rgba(255, 255, 0255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0 12px 12px;
  width: 100%;
  margin: 16px 0 0 16px;
  overflow-y: auto;
  height: calc(100vh - 67px);
  overflow-x: hidden;
}

.propertyData.newTabdata {
  background: none;
  border: 1px solid transparent;
  padding: 0;
  width: 100%;
  margin: 0;
  overflow-y: auto;
  height: auto;
  overflow-x: hidden;
}

.propertyData .grid-container {
  margin-left: 0;
  margin-right: 0;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  margin-bottom: 8px;
  box-shadow: 0px 2px 4px 0px #00000014;
}

.card-title-header {
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.05);
  color: #24276e;
  font-size: 14px;
  border-radius: 6px 6px 0 0;
  position: sticky;
  left: 0;
}

.table-container {
  margin: 16px 16px 4px;
  height: calc(100vh - 95px);
  overflow-y: auto;
}

.container-filter {
  margin: 0 -16px;
}

.griddata label {
  font-weight: bold;
  font-size: 11px;
}

.tbl-content {
  background: #f4f1eb;
  border-radius: 6px;
  width: calc(100vw - 252px);
  overflow-y: auto;
}

.panel-title {
  font-size: 14px;
  line-height: 24px;
  color: white;
  font-weight: bold;
  text-transform: capitalize;
  width: 102%;
  padding: 3px 8px;
  margin: 4px -10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
}

.panel-title.skyBlue {
  background: linear-gradient(90deg, #2d92da 0%, rgba(45, 146, 218, 0) 100%);
}

.panel-title.blue {
  background: linear-gradient(90deg, #6e17b1 0%, rgba(45, 146, 218, 0) 100%);
}

.panel-title.red {
  background: linear-gradient(90deg, #ae2325 0%, rgba(45, 146, 218, 0) 100%);
}

.panel-title.lightGreen {
  background: linear-gradient(90deg, #b07a1d 0%, rgba(45, 146, 218, 0) 100%);
}

.panel-title.green {
  background: linear-gradient(90deg, #426c36 0%, rgba(45, 146, 218, 0) 100%);
}

.panel-title.brown {
  background: linear-gradient(90deg, #323232 0%, rgba(45, 146, 218, 0) 100%);
}

.propertyData > .grid-container:first-of-type .panel-title {
  background-color: #000;
  color: #333;
  font-weight: bold;
}

.collapse {
  display: none;
  transition: all 0.3s ease;
}

.collapse.in {
  display: block;
  transition: all 0.3s ease;
}

.panel-collapse {
  width: 100%;
  padding: 0;
}

.panel-collapse > .grid-container {
  margin-bottom: 0;
  background: #fff;
  border-radius: 0 0 6px 6px;
  box-shadow: 0px 2px 4px 0px #00000014;
  padding: 12px 0;
  margin-top: -4px;
}

.panel-collapse > .grid-container.skyBlue {
  border-top: 2px solid #2d92da;
}

.panel-collapse > .grid-container.blue {
  border-top: 2px solid #6e17b1;
}

.panel-collapse > .grid-container.red {
  border-top: 2px solid #ae2325;
}

.panel-collapse > .grid-container.lightGreen {
  border-top: 2px solid #b07a1d;
}

.panel-collapse > .grid-container.green {
  border-top: 2px solid #426c36;
}

.panel-collapse > .grid-container.brown {
  border-top: 2px solid #323232;
}

.ghighlight-bg > .panel-title {
  margin-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.grid-container:has(.panel-collapse) > .panel-title {
  margin-bottom: 0;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.resultcardTitle {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  position: sticky;
  top: 0px;
  background: #fefdfd;
  z-index: 1;
  border-bottom: 1px solid #eae9e9;
  margin-bottom: 12px;
}

.resultcardTitle > .icon-column {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  flex: unset;
  padding: 0;
}

.resultcardTitle > .igdidNumber {
  font-weight: bold;
  padding-right: 4px;
}

.resultcardTitle > .owner {
  padding: 0 0 0 4px;
  margin: 0;
}

.symboldownload,
.symbolDelete {
  margin-left: 12px;
  color: #15adff;
}

.symbolDelete {
  color: #d30000;
}

.panel-title[aria-expanded="true"] .arrow-icon {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}

.arrow-rotated {
  rotate: 180deg;
  transition: all 0.3s ease;
}

.bdr-bottom {
  margin: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.multiSelect {
  position: relative;
}

.close {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.close:hover {
  border-radius: 50%;
  background-color: #232c65;
  color: #fff;
}

.dataview {
  margin: 0;
}

.source-list {
  list-style: none;
  margin-bottom: 0;
}

.source-list li {
  list-style: none;
  padding: 5px 0;
  display: flex;
  flex-flow: row;
}

.source-list li a {
  display: flex;
  flex-flow: row;
  color: #15adff;
  padding: 0 10px;
  font-weight: bold;
}

.source-list li a img {
  margin-left: 8px;
}

.source-list label {
  font-weight: bold;
}

.dataview label {
  font-weight: bold;
}

.addBorderBot {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  padding: 4px 0;
}

.addBorderBot .col-6 {
  padding-right: 0;
}

.addBorderBot:last-child {
  border-bottom: none;
  padding: 4px 0 0;
}

.addBorderBot img {
  margin-left: 6px;
}

.dataview a {
  color: #15adff;
  display: flex;
  align-items: center;
  line-height: 18px;
  min-height: 18px;
  cursor: pointer;
  justify-content: space-between;
}

.dataview .d_flex {
  display: flex;
  align-items: center;
  margin-left: 0;
}

.noPadLeft {
  padding-left: 0;
}

.extradata {
  margin-top: 4px;
  background: #f4f1eb;
  padding: 4px 0;
}

.extradata .grid-row {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
  padding: 4px 0;
}

.extradata .grid-row:last-child {
  border-bottom: none;
}

.extradata label {
  font-size: 11px;
}

/* 04. Download Data ============================== */

.downloadData {
  background: #e8e5df;
  display: flex;
  padding: 16px;
}

.processStep {
  width: 324px;
  margin: 0;
  padding: 0;
}

.stepUploadfile {
  margin: 0;
  padding: 0;
}

.reportForm {
  margin: 0;
  padding: 0;
  text-align: left;
  /* background: rgba(0, 0, 0, 0.8); */
}

.stepCard {
  padding: 12px;
  border: 1px solid #d1cfca;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 4px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.stepCard:last-child {
  margin-bottom: 0;
}

.stepCard.not-active {
  opacity: 0.5;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.2);
}

.downloadData .card-title {
  text-align: left;
  align-items: left;
}

.stepCard h4 {
  color: #24276e;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.stepCard .radio-inline {
  margin-top: 16px;
}

.stepCard .radio-inline label {
  font-weight: bold;
  margin-top: 2px;
}

.downloadLink {
  display: flex;
  margin: 4px;
  align-items: center;
  flex-flow: row wrap;
}

.downloadLink a {
  display: flex;
  flex-flow: row nowrap;
  color: #15adff;
  font-size: 10px;
  font-weight: 600;
  margin-right: 8px;
  white-space: nowrap;
}

.downloadLink a img {
  margin-right: 4px;
}

.downloadData .radio-group {
  margin-bottom: 0;
}

.downloadData .radio-group.customRadio label {
  padding: 0 4px;
  line-height: 14px;
}

.file-field-upload {
  margin: 12px 0;
  display: flex;
  align-items: center;
}

.file-field-upload .file-upload-withicon {
  display: flex;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.stepCardFooter {
  display: flex;
  align-items: center;
  justify-content: end;
}

.stepCardFooter .btn {
  border-radius: 4px;
  background: #15adff;
  color: #fff;
  padding: 3px 8px;
  border: 1px solid #15adff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.propertyFields {
  padding: 16px 0 0;
}

.propertyFields p {
  font-weight: 700;
}

.input-field {
  margin: 16px 0;
}

.input-field label {
  font-weight: bold;
  margin-top: 2px;
}

.input-field .validate {
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  height: 30px;
  font-size: 12px;
  padding: 4px 6px;
  background: #fff;
  width: 100%;
  margin: 0;
}

.tableCard {
  flex: 1;
  margin-left: 16px;
}

.tableCard {
  flex: 1;
  margin-left: 16px;
  border-radius: 4px;
  /* background: rgba(0, 0, 0, 0.8); */
  border: 1px solid #d1cfca;
  padding: 0 16px;
}

.tableCard h4 {
  font-size: 14px;
  padding: 16px 0 12px;
  color: #24276e;
  font-weight: 700;
}

.tableCard-content td {
  background: #fff;
}

.txt-sm {
  font-size: 85%;
}
.txt-sm90 {
  font-size: 90%;
}

.downloadFile {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  background: #15adff url(../img/icon-download-white.svg) no-repeat 6px center;
  padding: 3px 6px 3px 18px;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
}

.downloadFile img {
  margin-right: 4px;
}

.downloadFile:disabled {
  background: #ccc url(../img/icon-download-grey.svg) no-repeat 6px center;
  color: #4b4b4b;
  cursor: auto;
}

.downloadFile:disabled img {
  margin-right: 4px;
}

.wb {
  position: relative;
  white-space: unset !important;
  word-break: break-all !important;
}
.fa-remove {
  color: red;
  cursor: pointer;
}

.btn-login {
  display: flex;
  align-items: center;
  gap: 0 10px;
  justify-content: flex-end;
}

.divider-dot {
  padding-bottom: 7px;
  margin-bottom: 7px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.popover {
  left: 0;
  top: 0;
  position: absolute;
  width: 250px;
  max-height: 350px;
  overflow-y: auto;
  z-index: 99;
  padding: 1px;
  border: 1px solid #1a237e;
  border-radius: 4px;
  background: #24276e;
  color: #fff;
}

.hgtFix {
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.popoverTitle {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px;
  line-height: 18px;
  height: 30px;
  position: sticky;
  top: 0;
  z-index: 1;
}

.popover .table {
  margin-bottom: 0;
  color: #4b4b4b;
}

.datafile {
  margin: 0 !important;
  justify-content: space-between;
}

.uploadfileName {
  max-width: 125px;
  font-weight: 700;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stepCardFooter .btn.custom-btn-disable {
  background: #9a9a9a;
  border-color: #9a9a9a;
}

.fieldSelection {
  padding: 16px 0;
  height: calc(100vh - 200px);
  overflow-y: auto;
}
.fieldSelectionAll {
  padding: 20px;
}
.downloadContainer {
  margin: 0 20px;
}
.downloadContainer h5 {
  font-size: 14px;
  font-weight: bold;
  color: #24276e;
  margin-right: 32px;
  text-transform: capitalize;
}
.downloadContainer ul {
  list-style: none;
  margin: 16px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 0px;
}

.downloadContainer ul li {
  padding-left: 4px;
}
/* END  Download Data ============================== */
.bold {
  font-weight: 700;
}

.field {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fieldlist {
  margin: 0 0 2px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* ================ Pagination =============== */
.pagination {
  display: flex;
  padding-left: 0;
  margin: 12px 0 0;
  list-style: none;
}

.pagination li {
  font-size: 12px;
  line-height: 16px;
  padding: 0 1.5px;
}

.pagination li.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination li .material-icons {
  font-size: 16px;
}

.pagination > li > a,
.pagination > li > span {
  padding: 0 2px;
  line-height: 16px;
  font-size: 12px;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  color: #15adff;
}

/* ================= Pre Loader========================= */
.batch-data-preloader,
.batch-right-preloader,
.section-right-preloader,
.home-preloader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
}

/* 
.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border: 4px solid #24276E;
  border-radius: 50%;
  border-color: #fff #24276E;
  animation: l16 1s infinite linear;
}

.loader::before,
.loader::after {
  content: "";
  grid-area: 1/1;
  margin: 2px;
  border: inherit;
  border-radius: 50%;
}

.loader::before {
  border-color: #15ADFF #FFA000;
  animation: inherit;
  animation-duration: .5s;
  animation-direction: reverse;
}

.loader::after {
  margin: 8px;
} */

@keyframes l16 {
  100% {
    transform: rotate(1turn);
  }
}

.staterow {
  min-width: 230px;
}

.staterow UL {
  margin: 0;
  padding: 0;
  /* min-width: 260px */
}

.staterow li {
  list-style: none;
  display: block;
  padding: 12px 0;
}

.staterow li h3 {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  padding: 4px 0;
}

.staterow li h3 span {
  display: block;
  color: #24276e;
  font-size: 24px;
}

.staterow li h3.stateName {
  font-size: 24px;
  color: #1d2d75;
}

.piestate {
  /* padding-bottom: 16px; */
  display: flex;
  align-items: center;
  flex-flow: column;
}

.piestate .ng-isolate-scope {
  text-align: center;
}

.lablepie {
  font-weight: bold;
}

/* #svgdashboard {
  width: 100%;
  height: calc(100vh - 100px);
} */

.nodata {
  padding: 8px 0;
  margin-bottom: -14px;
  color: #e53935;
}

.txtDanger {
  color: #e53935;
}

.ddstate {
  background: #fff;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
  width: 80%;
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid #c5c5c5;
}

/* svg {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: auto;
} */
.state {
  fill: #c2c2e0;
  stroke: #fff;
  stroke-width: 1;
  cursor: pointer;
  transition:
    fill 0.3s,
    transform 0.3s;
}

.state:hover {
  fill: #8c8ccc;
  transform: scale(1.02);
}

.state.active {
  fill: #1d2d75;
}

.modallogin {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  z-index: 999;
}

.modallogin .modal-dialog {
  width: 400px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  left: auto;
  top: 150px;
}

.modallogin .modal-header {
  flex-flow: row;
}

.modallogin .modal-content {
  margin: 0;
  padding: 0;
  background: #f4f1eb;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* .modallogin .modal-content {
  padding: 1rem 0;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 16px;
} */

.modallogin .modal-body {
  padding: 16px 0;
}

.modallogin .modal-body blockquote {
  padding: 0 0 16px;
  font-size: 14px;
  font-weight: bold;
}

.modallogin .modal-body .input-field label {
  display: block;
  font-weight: bold;
  margin-bottom: 4px;
  color: #4b4b4b;
  font-size: 10px;
}

.modallogin .modal-body .input-field input {
  width: 100%;
  padding: 6px 8px;
  font-size: 18px;
  border: 1.5px solid #c5c5c5;
  background: rgba(255, 255, 0255, 0.8);
  border-radius: 4px;
  /* margin-bottom: 24px; */
  font-style: normal;
  height: 30px;
}

/* ==============Update Data=================== */
.updateData {
  padding: 0;
  display: flex;
}

.wid-100 {
  width: 100px;
}

.applicationUpdates {
  padding: 0 3px 0 8px;
  height: 100vh;
  overflow-y: auto;
  width: 276px;
  background: #f6f4ef;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
}

.updateData h2 {
  font-size: 14px;
  color: #24276e;
  font-weight: bold;
  height: 48px;
  background: #f6f4ef;
  position: sticky;
  top: 0;
  display: flex;
  align-items: end;
}

.applicationUpdates-card {
  cursor: pointer;
  padding: 8px 0 12px;
  display: grid;
  grid-template-columns: 22px auto;
  gap: 8px;
  align-items: start;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.applicationUpdates-card:last-child {
  border-bottom: none;
  padding-bottom: 8px;
}

.applicationUpdates-icon {
  background: #4db8ff;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.applicationUpdates-content {
  display: flex;
  flex-direction: column;
  word-break: break-word;
}

.applicationUpdates-title {
  font-weight: bold;
  font-size: 11px;
  line-height: normal;
  margin-bottom: 2px;
}

.applicationUpdates-title a {
  color: #0096ff;
  cursor: pointer;
}

.applicationUpdates-subtitle {
  font-size: 12px;
  font-weight: bold;
  line-height: normal;
  margin-bottom: 4px;
}

.applicationUpdates-subtitle1 {
  font-size: 9px;
  margin-bottom: 4px;
  line-height: normal;
}

.applicationUpdates-subtitle1 b {
  color: #4b4b4b;
  font-weight: bold;
}

.applicationUpdates-status {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 9px;
  font-weight: bold;
  margin-right: 2px;
}

.pending {
  background: #ffcc66;
  color: #444;
}

.published {
  background: #444;
  color: #fff;
}

.applicationUpdates-time {
  font-size: 10px;
  font-weight: bold;
}

.applicationUpdates h4 {
  background: #ff8f00;
  color: #fff;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: bold;
  margin: 6px 0;
  border-radius: 2px;
}

.dp-list {
  padding: 6px 10px;
  border-radius: 20px;
  font-weight: bold;
  margin: 0;
  background: #24276e;
  color: #fff;
  font-size: 16px;
  display: inline-block;
  cursor: pointer;
}

.rolledback h4 {
  background: #43a047;
}

.applicationUpdates slot:nth-child(3) h4 {
  background: #ff6246;
}

.applicationUpdates slot:nth-child(4) h4 {
  background: #6a6fb2;
}

/* ============================= */
.userRole_A,
.userRole_S,
.userRole_R,
.userRole_P,
.userRole_C {
  color: #ffffff;
  margin-left: 4px;
  background: #ececec;
  font-size: 9px;
  border-radius: 2px;
  width: 14px;
  height: 14px;
  display: inline-block;
  line-height: 14px;
  text-align: center;
  background: #ff5722;
  position: relative;
}

.userRole_S {
  background: #ff9800;
}

.userRole_R {
  background: #4caf50;
}

.userRole_P {
  background: #9c27b0;
}

.userRole_C {
  background: #2196f3;
}

.noerror {
  float: right;
  color: green;
}

.errorwarning {
  float: right;
  color: #ff9800;
}

.errordanger {
  float: right;
  color: red;
}

.dataProject {
  width: 100%;
}

.dataProjectType {
  padding: 16px;
  background: rgba(0, 0, 0, 0.05);
  min-height: calc(100vh - 64px);
}

.tab-link {
  padding: 24px;
  padding-bottom: 7px;
}

.tab-link a {
  font-size: 10px;
  font-weight: bold;
  color: #24276e;
  padding: 0 5px 5px;
}

.tab-link a.active {
  border-bottom: 5px solid #24276e;
}

.linkBtn {
  background: #15adff;
  border-radius: 4px;
  color: #fff;
  padding: 3px 8px 3px 3px;
  font-size: 12px;
  font-weight: bold;
  float: right;
  display: flex;
  align-items: center;
}

.linkBtn > .material-icons {
  font-size: 18px;
}

/* =================Tooltip Container=================== */
#tooltip-container {
  position: absolute;
  display: none;
  width: auto;
  height: auto;
  background: none repeat scroll 0 0 white;
  border: 0 none;
  border-radius: 2px;
  box-shadow: -3px 3px 15px #888888;
  color: black;
  font: 12px sans-serif;
  padding: 5px 8px;
  text-align: center;
}
#tooltip-container1 {
  position: absolute;
  display: none;
  width: auto;
  height: auto;
  background: none repeat scroll 0 0 white;
  border: 0 none;
  border-radius: 2px;
  box-shadow: -3px 3px 15px #888888;
  color: black;
  font: 12px sans-serif;
  padding: 5px 8px;
  text-align: center;
}

.tooltip_key {
  font-weight: bold;
}

.tooltip_value {
  margin-left: 20px;
  float: right;
}

/* ============= custom-modal ======================= */

.custom-modal {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  display: none;
  overflow-y: auto;
}

.modal-content {
  width: 100% !important;
}

.modal-dialog {
  background: #f4f1eb;
  border-radius: 4px;
  width: 700px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  left: 50%;
  margin: 60px auto 0 -350px;
  position: relative;
}

.custom-modal-large > .modal-dialog {
  width: 50%;
  margin-left: -25%;
}

.modal-dialog.changeStatealertmodal {
  width: 600px;
  margin-left: -300px;
  top: 50%;
  margin-top: -100px;
}

.modal-dialog.alertmodal {
  width: 440px;
  margin-left: -220px;
  top: 50%;
  margin-top: -100px;
}

.modal-header {
  font-size: 16px;
  font-weight: bold;
  color: #24276e;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-between;
  flex-flow: row;
  align-items: center;
  padding: 8px 16px;
}

.alertinfo {
  padding: 16px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
}

.changeStatealertinfo {
  padding: 25px;
  padding-bottom: 0;
  gap: 4px;
  height: 100px;
  display: flex;
  align-items: start;
  justify-content: center;
  font-weight: bold;
  font-size: 13px;
  flex-direction: column;
}

.section {
  margin-bottom: 15px;
  padding: 0 24px;
}

/* label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  color: #444;
} */

.toggle-group {
  display: inline-flex;
  border: 1px solid #ccc;
  border-radius: 6px;
  overflow: hidden;
  width: 100%;
  justify-content: space-around;
}

.toggle-group input[type="radio"] {
  display: none;
}

.toggle-group label.option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  padding: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
  background: #fff;
  cursor: pointer;
  border-right: 1px solid #ccc;
  transition: all 0.2s;
  margin-bottom: 0;
}

.toggle-group label.option:last-child {
  border-right: none;
}

.toggle-group input[type="radio"]:checked + label.option {
  background: #232c65;
  /* Dark blue */
  color: #fff;
}

.toggle-group input[type="radio"]:checked + label.option svg {
  fill: #fff;
}

.toggle-group label.option svg {
  width: 16px;
  height: 16px;
  fill: #555;
  transition: fill 0.2s;
}

.labelTitle {
  font-size: 11px;
  font-weight: bold;
  margin: 16px 0 4px;
  display: inline-block;
}

.inputType,
.inputTextarea {
  background: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  height: 28px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: bold;
  line-height: 20px;
  width: 100%;
  color: #4b4b4b;
  resize: vertical;
}

.inputType:placeholder,
.inputTextarea:placeholder {
  color: rgba(75, 75, 75, 0.6);
}

/* Default disabled */
.toggle-group input[type="radio"]:disabled + label.option {
  background: #d0d0d0;
  cursor: not-allowed;
  color: #9a9a9a;
}

/* Disabled AND Checked */
.toggle-group input[type="radio"]:checked:disabled + label.option {
  background: #9a9a9a;
  color: #fff;
  /* make text/icons visible on dark background */
}

.mar-l8 {
  margin-left: 6px;
  font-size: 16px;
}

.listView ul {
  margin: 8px 0 0 16px;
  padding: 0;
  list-style: disc;
  font-size: 11px;
  color: #4b4b4b;
}

.inputTextarea {
  min-height: 100px;
  font-size: 12px;
}

.noerror {
  text-align: right;
  font-size: 11px;
  font-weight: bold;
}

.noerror.errordanger,
.file-upload-error {
  color: #ff6246;
}

.btn-block {
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  background: #ffffff;
  padding: 4px 8px;
  height: 28px;
}

.file-field {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
}

.file-field button {
  margin-right: 12px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.file-upload {
  min-height: 80px;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  background: #fff;
  padding: 8px;
  font-size: 12px;
  margin-top: 8px;
}

.file-upload-withicon {
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  background: #fff;
  padding: 4px 8px;
  font-size: 12px;
  margin: 0 8px 0 0;
}

.file-upload-withicon img {
  margin-right: 6px;
}

.file-name {
  padding: 3px 8px;
  margin: 0 8px 8px 0;
  border-radius: 4px;
  background: #24276e;
  color: #fff;
  display: inline-flex;
  align-items: center;
}

.file-close {
  border-radius: 50%;
  padding: 0;
  background: #d30000;
  color: #fff;
  font-size: 10px;
  font-weight: normal;
  margin-left: 4px;
  margin-right: 4px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-footer {
  background: rgba(0, 0, 0, 0.06);
  padding: 8px 16px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
  align-items: center;
  width: 100%;
}

._fromftp {
  margin-top: 12px;
  position: relative;
}

.modal-footer > .btn {
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  background-color: #f7f4ee;
  border: 1px solid #c5c5c5;
}

.modal-footer > .btn.btn-submit {
  background: #15adff;
  color: #fff;
}

.modal-footer > .btn.btn-submit:disabled {
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: 0.7;
}

.databyapp {
  font-size: 11px;
}

/* =============UPDATE DATA======== */

.dashboard-updateData {
  display: grid;
  grid-template-columns: 50fr 25fr 25fr;
  gap: 2px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 15px;
  min-height: 252px;
}

/* Left filter panel */
.filters-updateData {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 16px;
  min-width: 50%;
}

.filters-updateData h3 {
  display: flex;
  align-items: center;
  font-size: 13px;
  margin: 0;
}

.filters-updateData h3 img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.updateDataSearch {
  position: relative;
}

.updateDataSearch .multiSelect {
  top: auto;
}

.updateDataSearch label {
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

.updateDataSearch-right {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.updateDataSearch .radio-group label {
  line-height: 16px;
  min-height: 28px;
  padding: 5px 0 !important;
}

select {
  width: 100%;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #c5c5c5;
  background: #fff;
  font-size: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 16px;
  cursor: pointer;
  color: #4b4b4b;
  font-family: lato, sans-serif;
  font-weight: bold;
}

.updateDataSearch label {
  margin-bottom: 0;
  line-height: 26px;
}

.search-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: #03a9f4;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
}

.search-btn button:hover {
  background: #0288d1;
}

.search-btn:disabled {
  background: #d0d0d0;
  cursor: not-allowed;
  color: #9a9a9a;
}

.search-btn svg {
  width: 16px;
  height: 16px;
  fill: white;
}

/* Middle map */
.map-updateData {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-updateData img {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.summary-updateData {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 12px 8px;
}

.summary-updateData-box h4 {
  margin: 0 0 8px 0;
  text-align: center;
  color: #24276e;
  text-align: center;
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.status-label {
  font-size: 11px;
  font-weight: bold;
  flex: 1;
  text-align: right;
  white-space: nowrap;
}

.status-value-bg {
  background: rgba(255, 255, 0255, 0.3);
  border-radius: 10px;
  padding: 0 2px;
  min-width: 140px;
  margin-left: 4px;
}

.status-value {
  font-size: 9px;
  font-weight: bold;
  margin-left: 2px;
  padding: 2px 5px;
  border-radius: 10px;
  color: white;
  min-width: 40px;
  text-align: center;
}

/* Colors for statuses */
.pending {
  background: #ff9800;
}

.publishInProgress {
  background: #f57c00;
}

.signed {
  background: #4caf50;
}

.qa {
  background: #0097a7;
}

.open {
  background: #3f51b5;
}

.published {
  background: #616161;
}

/* ================ Tags Input ======================= */
.tag-box {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border: 1px solid #d1cfc9;
  border-radius: 4px;
  padding: 2px;
  background: #dcdad4;
  margin-top: 8px;
}

.tag {
  display: flex;
  align-items: center;
  background: #232c65;
  color: #fff;
  font-size: 11px;
  padding: 2px 4px;
  border-radius: 4px;
}

.tag .remove {
  margin-left: 6px;
  background: #e53935;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  cursor: pointer;
}

/* ======= Loading ====== */
.loading {
  align-items: center;
  display: flex;
  justify-content: left;
  height: 46px;
  position: relative;
  width: 100%;
  padding-left: 16px;
}

.loading__dot {
  animation: dot ease-in-out 1s infinite;
  background-color: #412356;
  display: inline-block;
  height: 8px;
  margin: 4px;
  width: 8px;
}

.loading__dot:nth-of-type(2) {
  animation-delay: 0.2s;
}

.loading__dot:nth-of-type(3) {
  animation-delay: 0.3s;
}

@keyframes dot {
  0% {
    background-color: #412356;
    transform: scale(1);
  }

  50% {
    background-color: #efc100;
    transform: scale(1.3);
  }

  100% {
    background-color: #412356;
    transform: scale(1);
  }
}

/* ========= Custom Scrollbar =========== */
/* Common Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  /* Scrollbar width */
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
  /* Track background */
}

::-webkit-scrollbar-thumb {
  background-color: #bfbfbf;
  /* Scrollbar handle */
  border-radius: 10px;
  /* Rounded edges */
  border: 2px solid #f5f5f5;
  /* Creates padding around handle */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a6a6a6;
  /* Darker on hover */
}

/* Firefox */
* {
  scrollbar-width: thin;
  /* Slim */
  scrollbar-color: #bfbfbf #f5f5f5;
  /* thumb | track */
}

/* ========= Data Process ============ */
.dataProcess {
  margin: 16px 0;
}

.leftPanelCard {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  padding: 12px;
  min-width: 250px;
  height: calc(100vh - 200px);
  position: sticky;
  top: 0;
  overflow-y: auto;
}

.project-card-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 400px;
  margin: auto;
}

.project-card {
  background: rgba(255, 255, 0255, 1);
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  padding: 12px;
  position: relative;
  border-right: 4px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  line-height: normal;
  word-wrap: break-word;
}
.project-card.heightAdj {
  max-height: 150px;
  overflow-x: hidden;
  overflow-y: auto;
}

.project-card:hover {
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8); */
  background: rgba(255, 255, 0255, 0.6);
}

.project-card.activebox {
  background: rgba(255, 255, 0255, 0.6);
  border-right: 4px solid orange;
}

.project-card.activebox::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid orange;
}

.project-card-header {
  font-size: 12px;
  margin-bottom: 0;
}

.project-card-header span,
.project-card-subtitle span,
.project-card-subtitle span,
.time {
  font-weight: bold;
}

.project-card-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.project-card-subtitle {
  font-size: 11px;
  margin: 3px 0;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  line-height: 14px;
}

.status.published {
  background: #515151;
}

.status.signedoff {
  background: #43a047;
}

.status.open {
  background: #6a6fb2;
}

.status.discarded {
  background: #d30000;
}

.status.rejected {
  background: #ff7b00;
}

.status.publishinpending {
  background: #ffc046;
}

.status.publishinprogress {
  background: #f57c00;
}

.time {
  font-size: 11px;
  margin-left: 6px;
}

.project-card-icon {
  position: absolute;
  top: 15px;
  left: 12px;
  background: #5fafe8;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.project-card-content {
  margin-left: 32px;
}
.project-card-content.adjusted {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.project-card-detail {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12;
}

.project-container {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 12px;
  max-width: auto;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  line-height: normal;
  word-wrap: break-word;
}

.project-card-type {
  background: #5fafe8;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-right: 8px;
}

.project-main {
  flex: 2;
  min-width: 300px;
}

.project-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.project-header-left {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  max-width: 450px;
  white-space: nowrap;
}

.project-header-right {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.project-header-left > .project-card-type {
  width: 32px;
  height: 32px;
  margin-right: 4px;
  display: flex;
  flex-shrink: 0;
}

.project-header-left > .status {
  font-size: 12px;
  padding: 4px 8px;
  margin-right: 8px;
  margin-left: 4px;
}

.project-header-right button {
  background: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  padding: 4px 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.project-header-right button:hover {
  background: #f8f8f6;
}

.project-header-right button img {
  margin-right: 6px;
}

.project-title {
  font-size: 16px;
  font-weight: bold;
  margin: 2px 0;
  color: #4b4b4b;
  word-wrap: break-word;
}

.project-meta,
.project-subtitle {
  font-size: 11px;
  color: #4b4b4b;
}

.project-description {
  margin: 16px 0;
  font-size: 11px;
  color: #4b4b4b;
  line-height: 1.2;
  word-break: break-all;
}

/* Attachments */
.attachments {
  margin-top: 15px;
}

.attachment {
  display: inline-flex;
  align-items: center;
  background: #232c65;
  color: #fff;
  font-size: 10px;
  padding: 4px 6px 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  margin: 8px 8px 0 0;
}

.attachment:hover {
  background: #1b224d;
}

.attachment svg {
  margin: 0 0 0 12px;
  width: 12px;
  height: 16px;
}

.attachment img {
  margin-left: 12px;
}

.attachment i {
  margin-left: 0;
  font-size: 12px;
}

.attachment > span {
  white-space: nowrap;
}

/* Right side */
.project-history {
  flex: 1;
  min-width: 150px;
  padding-left: 12px;
}

.history-title {
  font-weight: bold;
  padding-bottom: 7px;
  margin-bottom: 7px;
  font-size: 14px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.history-item {
  margin-bottom: 7px;
  padding-bottom: 7px;
  font-size: 11px;
  color: #4b4b4b;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.history-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.history-item .status {
  display: inline-block;
  background: #6a6fb2;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 12px;
  margin-bottom: 5px;
}

.history-item .downloadFileName {
  padding-right: 4px;
  max-width: 85px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.history-comment {
  word-break: break-word;
  margin: 4px 0;
}

.status.open {
  background: #6a6fb2;
}

.status.RolledBack,
.rolledback {
  background: #ff6246;
}

.status.RollbackInProgress,
.status.rollbackinprogress {
  background: #ff8f00;
}

.status.RollbackInPending,
.status.rollbackinpending {
  background: #f6ae53;
}

.status.Uploaded,
.uploaded {
  background: #6a6fb2;
}

.status.UploadInProgress,
.status.uploadinprogress {
  background: #8f95e0;
}

.status.uploadinprogress {
  background: #8f95e0;
}

.status.Published {
  background: #515151;
}

.status.PublishInProgress {
  background: #f57c00;
}

.status.PublishInPending {
  background: #ffc046;
}

.status.Discarded {
  background: #d30000;
}

.status.Signed-Off {
  background: #43a047;
}

.status.QA-Ready,
.qaready {
  background: #248ea9;
}

.history-item .attachment {
  margin-top: 6px;
  display: inline-flex;
}

/* ========== Data Analysis state Dropdown ======== */

.current-state-data {
  display: flex;
  align-items: center;
  border-radius: 3px;
  gap: 6px;
  position: sticky;
  top: 0;
  padding: 16px 12px 6px;
  background: #f4f2ee;
}

.state-Flag img {
  width: 32px;
  height: 32px;
  border-radius: 3px;
  box-shadow: 0 7px 17px rgba(0, 0, 0, 0.25);
}

.custom-dropdown {
  position: relative;
  width: 188px;
  font-size: 13px;
}

.custom-dropdown .dropdown-selected {
  background: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  padding: 3px 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 28px;
  position: relative;
  transition: border-color 0.2s ease;
}

.custom-dropdown .dropdown-selected:hover {
  border-color: #c5c5c5;
}

.custom-dropdown .dropdown-selected span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}

.custom-dropdown .dropdown-selected i.fa-chevron-down {
  position: absolute;
  right: 10px;
  color: #4b4b4b;
  font-size: 13px;
  pointer-events: none;
  font-weight: bold;
}

.custom-dropdown .dropdown-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  list-style: none;
  margin: 0;
  padding: 4px 0;
  z-index: 1000;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  border-top: 0;
}

.custom-dropdown .dropdown-options li {
  padding: 4px 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: left;
  font-weight: 600;
}

.custom-dropdown .dropdown-options li:hover {
  background: #c5c5c5;
}

.custom-dropdown .dropdown-options li.selected {
  background: #24276e;
  color: #fff;
}

/* ========== End Data Analysis state Dropdown ======== */

/* ========= Dashboard Pia Chart ========  */

.label-text {
  font-size: 11px;
  font-weight: bold;
  fill: #24276e;
  text-anchor: middle;
}

.value-text {
  font-size: 11px;
  fill: #24276e;
  text-anchor: middle;
}

.slice {
  stroke: #f4f1eb;
  stroke-width: 1px;
}

line {
  stroke: #666;
  stroke-width: 1px;
}

.axis path,
.axis line {
  stroke: #24276e;
  stroke-width: 2px;
}

.axis text {
  fill: #24276e;
  font-size: 12px;
  font-weight: 500;
}

#barChart {
  display: block;
  margin: auto;
  background: #f9f7f3;
}

#barChart .axis path,
#barChart .axis line {
  stroke: #24276e;
  stroke-width: 2px;
}

#barChart .axis text {
  fill: #24276e;
  font-size: 11px;
  font-weight: 400;
}

.grid line {
  stroke: #ccc;
  stroke-opacity: 0.6;
  shape-rendering: crispEdges;
}

.grid path {
  stroke: none;
}

.status-filter {
  font-family: Arial, sans-serif;
  margin: 10px 0;
}

.status-filter label {
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

.selected-status-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border: 1px solid #ccc;
  padding: 6px;
  min-height: 36px;
  border-radius: 4px;
  background: #f9f9f9;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  background: #1a237e;
  /* dark blue like screenshot */
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 13px;
}

.status-chip .remove-chip {
  margin-left: 6px;
  cursor: pointer;
  color: #ff5252;
  /* red close button */
  font-weight: bold;
}

.status-dropdown {
  margin-top: 6px;
  width: 100%;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

/* ============== Table ================== */

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

.table > thead {
  position: sticky;
  top: 0;
  z-index: 9;
}

.table > thead > tr > th {
  vertical-align: bottom;
  background: #24276e;
  color: #fff;
  font-size: 11px;
  padding: 5px 16px 5px 8px;
  white-space: nowrap;
}

.table > tbody > tr > th,
.table > tbody > tr > td {
  padding: 6px 16px 6px 8px;
  border-bottom: 1px dotted #24276e;
  font-size: 13px;
  white-space: nowrap;
}

.table-condensed > tbody > tr > td {
  padding: 5px 8px;
  border-bottom: 1px dashed #24276e;
  font-size: 13px;
}

/* ========== Download Lists ============= */

.downloadStatus {
  margin: 5px 15px;
  width: 95%;
  float: left;
  padding: 5px 7px;
  background: #f5f5f5;
  box-sizing: border-box;
}

.downloadStatus li {
  float: left;
  position: relative;
  height: 32px;
  line-height: 32px;
  padding: 0 15px 0 40px;
  background: #d6d8e3;
  margin: 0 5px 0 0;
  width: 14.5%;
  box-sizing: content-box;
  border-radius: 2px;
}

.downloadStatus li span {
  width: 32px;
  height: 32px;
  display: inline-block;
  font-size: 1rem;
  line-height: 32px;
  text-align: center;
  margin: 0 0 0 -40px;
  position: absolute;
  background: #8f9ae6;
  color: #fff;
  border-radius: 2px 0 0 2px;
}

.downloadStatus li span::after {
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #d6d8e3;
  position: absolute;
  right: 0;
  top: 10px;
}

.downloadStatus li.downloadBtn {
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: center;
}

.downloadStatus li.downloadBtn .btn-sm {
  height: 32px;
  line-height: 32px !important;
  margin-top: -2px;
  padding-right: 28px;
}

.downloadStatus li.downloadBtn .btn-sm b {
  font-size: 1.4rem;
  position: absolute;
  right: 14px;
}

/* .DownloadPlus {
  float: left;
  width: 100%;
  position: relative;
  margin: -10px 0 10px 0;
  z-index: 99;
} */

.DownloadPlus ul {
  margin: 10px 0;
  padding: 0;
  float: left;
}

.DownloadPlus ul li {
  margin: 0 0 0 5px;
  float: left;
  padding: 0 10px 0 0;
  background: #e4e4e4;
  border-radius: 25px;
  font-size: 0.7rem;
  display: inline-block;
}

.DownloadPlus ul li span {
  padding: 2px 7px;
  border-radius: 25px;
  color: #fff;
  margin: 0 5px 0 0;
  display: inline-block;
}

.DownloadPlus ul li span.downCompleted {
  background: #8bc34a;
}

.DownloadPlus ul li span.downPending {
  background: #f44336;
}

.DownloadPlus ul li span.downProgress {
  background: #ffc107;
}

.DownloadPlus ul li.downloadlink {
  padding: 1px 10px;
}

.downlink {
  font-size: 0.8rem;
}

.download-option {
  float: left;
  width: 100%;
  position: relative;
  border-bottom: 1px solid #c5c5c5;
}

.download-option ul {
  float: left;
  width: 100%;
  margin: 5px 0 10px;
}

.download-option li {
  float: left;
  width: 25%;
  margin: 0;
}

.download-option li label {
  font-size: 12px;
}

.download-option h5 {
  /*    text-transform: uppercase;*/
  font-size: 14px;
  font-weight: bol;
  padding: 15px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin: 0;
}

.download-option .input-field label {
  left: 1rem !important;
}

.download-option .btn {
  margin-top: 30px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

.downloadStatus {
  position: relative;
  display: block;
  margin: 0 10px;
  padding: 5px 5px 5px 7px;
  height: 38px;
  background: #f5f5f5;
  box-sizing: border-box;
  box-shadow:
    0 2px 5px 0 rgba(0, 0, 0, 0.16),
    0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.downloadStatus li {
  float: left;
  position: relative;
  height: 28px;
  line-height: 28px;
  padding: 0 5px 0 33px;
  background: #d6d8e3;
  margin: 0;
  width: 25%;
  box-sizing: border-box;
  border-radius: 2px;
  font-size: 0.8rem;
}

.downloadStatus li span {
  width: 28px;
  height: 28px;
  display: inline-block;
  font-size: 0.9rem;
  line-height: 28px;
  text-align: center;
  margin: 0 0 0 -33px;
  position: absolute;
  background: #8bc34a;
  color: #fff;
  border-radius: 2px 0 0 2px;
}

.downloadStatus li span.penStatus {
  background: #f44336;
}

.downloadStatus li span.inproStatus {
  background: #ffc107;
}

.downloadStatus li span::after {
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #d6d8e3;
  position: absolute;
  right: 0;
  top: 11px;
}

.downloadStatus li.downloadBtn {
  background: transparent;
  padding: 0;
  margin: 0;
  text-align: center;
}

.downloadStatus li.downloadBtn .btn-sm {
  height: 28px;
  line-height: 28px !important;
  margin-top: -2px;
  padding-right: 28px;
  margin-right: 0;
  z-index: 0;
}

.downloadStatus li.downloadBtn .btn-sm b {
  font-size: 1.4rem;
  position: absolute;
  right: 14px;
  top: 0;
}

[type="checkbox"].filled-in:checked + label:after {
  border: 2px solid #4285f4;
  background-color: #4b8bf5;
}

.state-labels text {
  font-size: 12px;
  fill: #333;
  text-anchor: middle;
  pointer-events: none;
  transition: fill 0.2s ease;
}

.state-labels text.label-active {
  fill: #fff;
  /* white when active */
  font-weight: bold;
}

/* ============= Custom Checkbox ============= */

[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

[type="checkbox"] + label {
  position: relative;
  height: 25px;
  cursor: pointer;
}

[type="checkbox"] + label:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 0;
  border: 2px solid #5a5a5a;
  border-radius: 1px;
  margin-top: 2px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}

[type="checkbox"]:not(:checked):disabled + label:before {
  border: none;
  background-color: rgba(0, 0, 0, 0.26);
}

[type="checkbox"]:checked + label:before {
  top: -4px;
  left: -3px;
  width: 12px;
  height: 22px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #4285f4;
  border-bottom: 2px solid #4285f4;
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transform: rotate(40deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"]:checked:disabled + label:before {
  border-right: 2px solid rgba(0, 0, 0, 0.26);
  border-bottom: 2px solid rgba(0, 0, 0, 0.26);
}

[type="checkbox"]:indeterminate + label:before {
  left: -10px;
  top: -11px;
  width: 10px;
  height: 22px;
  border-top: none;
  border-left: none;
  border-right: 2px solid #4285f4;
  border-bottom: none;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-backface-visibility: hidden;
  -webkit-transform-origin: 100% 100%;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -o-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"]:indeterminate:disabled + label:before {
  border-right: 2px solid rgba(0, 0, 0, 0.26);
  background-color: transparent;
}

[type="checkbox"].filled-in + label:after {
  border-radius: 2px;
}

[type="checkbox"].filled-in + label:after,
[type="checkbox"].filled-in + label:before {
  content: "";
  left: -20px;
  position: absolute;
  transition:
    border 0.25s,
    background-color 0.25s,
    width 0.2s 0.1s,
    height 0.2s 0.1s,
    top 0.2s 0.1s,
    left 0.2s 0.1s;
  z-index: 1;
}

[type="checkbox"].filled-in:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:not(:checked) + label:after {
  height: 15px;
  width: 15px;
  background-color: white;
  border: 1px solid #5a5a5a;
  top: 0;
  z-index: 0;
}

[type="checkbox"].filled-in:checked + label:before {
  top: 0;
  left: -20px;
  width: 6px;
  height: 10px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in:checked + label:after {
  top: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #24276e;
  background-color: #24276e;
  z-index: 0;
  border-radio: 2px;
}

[type="checkbox"].filled-in:disabled:not(:checked) + label:before {
  background-color: transparent;
  border: 2px solid transparent;
}

[type="checkbox"].filled-in:disabled:not(:checked) + label:after {
  border-color: transparent;
  background-color: #bdbdbd;
}

[type="checkbox"].filled-in:disabled:checked + label:before {
  background-color: transparent;
}

[type="checkbox"].filled-in:disabled:checked + label:after {
  background-color: #bdbdbd;
  border-color: #bdbdbd;
}

[type="checkbox"].filled-in-danger + label:after {
  border-radius: 2px;
}

[type="checkbox"].filled-in-danger + label:after,
[type="checkbox"].filled-in-danger + label:before {
  content: "";
  left: 0;
  position: absolute;
  transition:
    border 0.25s,
    background-color 0.25s,
    width 0.2s 0.1s,
    height 0.2s 0.1s,
    top 0.2s 0.1s,
    left 0.2s 0.1s;
  z-index: 1;
}

[type="checkbox"].filled-in-danger:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in-danger:not(:checked) + label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 2px solid #5a5a5a;
  top: 0;
  z-index: 0;
}

[type="checkbox"].filled-in-danger:checked + label:before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

[type="checkbox"].filled-in-danger:checked + label:after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  background-color: red;
  z-index: 0;
}

.txtNormal {
  font-weight: normal;
}

.space-bot12 {
  margin-bottom: 12px;
}

.space-bot6 {
  margin-bottom: 6px;
}

.propertyType {
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* max-width: 100px; */
  flex: 1;
}

/* .nvtooltip {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
} */
.project-filter-dropdown {
  position: absolute;
  width: 100%;
  background-color: white;
  border-radius: 4px;
  bottom: 10%;
  padding: 4px;
  top: 110%;
  right: 0%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 2px;
  height: 200px;
  z-index: 2;
  border: 1px solid #ccc;
  box-shadow: 0 0 4px #ccc;
}

.project-filter-label {
  padding: 4px;
  display: flex !important;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  line-height: auto;
}

.updateDataSearch .project-filter-label {
  padding: 4px;
  display: flex !important;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  line-height: unset;
}

.project-filter-checkbox {
  border: 1px solid #ccc !important;
  position: static !important;
  visibility: visible !important;
  background: white !important;
  appearance: checkbox !important;
}

.project-filter-container {
  position: relative;
  background-color: white;
  padding: 4px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.loader {
  content: "";
  position: fixed;
  width: 40px;
  height: 40px;
  background-image: url("../img/icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.loader::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: red;
  animation:
    spin 1s linear infinite,
    changeBordercolorspinner 3s ease-in-out infinite;
}

/* Rotation animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Color cycling animation */
@keyframes changeBordercolorspinner {
  0% {
    border-top-color: #db4437;
  }

  33% {
    border-top-color: #f4b400;
  }

  66% {
    border-top-color: #4285f4;
  }

  100% {
    border-top-color: #0f9d58;
  }
}
.center-flex {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  padding: 5px;
}

.vexaro-container {
  height: 200px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.xerpon-floatbox {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  justify-content: flex-start;
}
.xerpon-floatbox ul {
  display: flex;
  align-items: center;
  margin: 0;
  float: left;
}
.xerpon-floatbox ul li {
  margin: 0 5px 0 0;
  padding: 0;
}
.DownloadPlus.xerpon-floatbox ul li span {
  margin: 0;
  border-radius: 4px;
}
.xerpon-floatbox ul li:last-child {
  margin: 0;
  padding: 0;
}
.btn-block-dflex {
  display: flex;
  align-items: center;
  gap: 0 5px;
}
.custom-btn-disable > svg {
  opacity: 0.5;
}
.tpsConfig {
  padding: 16px 0 0;
  margin: 0 16px 12px 0;
}

.tpsConfig > .tableCard {
  background: #fff;
}

.tpsConfig > .tableCard .card {
  padding: 0;
  box-shadow: none;
  border: none;
}

.dFlex-justify {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.icon-county {
  margin: 0 4px;
  width: 28px !important;
  border-radius: 4px;
  box-shadow: 0 1px 6px 2px rgba(0, 0, 0, 0.25);
}

.tpsConfig > .tableCard .card button.btn-withicon {
  border: 1px solid #c5c5c5;
  border-radius: 4px;
  background: #fff;
  padding: 0 5px;
  font-size: 12px;
  margin: 4px 0 4px 4px;
  color: #4b4b4b;
  display: inline-flex;
  align-items: center;
  gap: 5px 0;
}
.tpsConfig > .tableCard .card button.btn-withicon .material-icons {
  width: 16px;
  height: auto;
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.tpsConfig > .tableCard .card button.btn-withicon .fa {
  margin-right: 5px;
  font-size: 12px;
}
.table > thead > tr > th.text-center,
.table > tbody > tr > td.text-center {
  text-align: center;
}

.table > tbody > tr > td .word-wrap {
  white-space: break-spaces;
}

.btn-link-small {
  background: #fff;
  border: 1px solid #c5c5c5;
  padding: 2px 5px;
  border-radius: 5px;
  margin-left: 5px;
  cursor: pointer;
  font-size: 11px;
}

.btn-link-small.isDisabled {
  background: rgba(75, 75, 75, 0.5);
  opacity: 0.6;
}
.tpsConfig th,
.tpsConfig td {
  padding: 3px 16px 3px 8px !important;
  font-weight: 600 !important;
}
.tpsConfig td.text-right {
  text-align: right;
}
.modal-title > .fa {
  font-size: 18px;
  margin-right: 8px;
}
.tpsConfig .btn-primary {
  padding: 5px 8px;
}
.tpsConfig .btn-primary > .fa {
  margin-right: 2px;
  font-size: 11px;
}
/* ===== Dashboard ====== */
/* ===== UNIQUE INLINE STYLE CONVERSIONS ===== */

/* container-main inline */
.cc-container-100vw {
  width: 100vw;
}

/* main */
.cc-main-layout {
  display: flex;
  gap: 24px;
  height: 100vh;
  overflow: hidden;
}

/* left section width */
.cc-left-60 {
  width: 60%;
}

/* header text */
.cc-header-italic {
  font-size: 24px;
}

.cc-header-title {
  font-size: 30px !important;
  padding: 10px 0;
}

/* video wrapper */
.cc-video-wrapper {
  height: calc(100vh - 138px);
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.cc-video-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.cc-video-iframe {
  border: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 39 / 29;
  object-fit: cover;
}

/* dashboard section */
.cc-dashboard-layout {
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cc-dashboard-title {
  width: 100%;
}

/* dashboard panel */
.cc-dashboard-panel {
  display: flex;
  height: 250px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
}

/* notifications */
.cc-notification-panel {
  width: 60%;
  border: none;
  background: transparent;
  border-radius: 0;
}

.cc-text-left-no-margin {
  text-align: left;
  margin: 0 0 6px 0 !important;
  font-size: 16px !important;
  height: 20px;
}

/* chart */
.cc-chart-state {
  height: 240px;
  width: 40%;
}

/* svg section */
.cc-svg-box {
  height: calc(100vh - 355px);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 100%;
  padding: 8px 0 0;
  margin: 8px 0 0 0;
}

.cc-text-capitalize {
  text-transform: capitalize;
  font-weight: bold !important;
}

.cc-available-data {
  font-size: 22px;
  font-weight: bold;
  color: #1c2674;
  height: 22px;
}

#dashboardMap {
  flex: 1;
}

/* modal */
.cc-modal-visible {
  display: block;
}
.qaready-warning {
  display: flex;
  gap: 0 16px;
  margin: 16px;
  align-items: center;
  padding: 8px 12px;
  background: #fffaea;
  border-radius: 4px;
  border: 1px solid #eaddb3;
}
.qaready-warning .orange-text {
  color: orange;
}

.qaready-warning .reportbtncancel {
  background: #fff;
  padding: 1px 5px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid #c5c5c5;
  font-weight: 600;
  margin-right: 5px;
}
.qaready-warning .reportbtncancel:hover {
  background: #f8f8f6;
}

.file-type {
  margin: 16px 16px 0;
}

.file-type .title {
  display: block;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 4px;
}

.radio-icongroup input[type="radio"] {
  display: none;
}

.radio-icongroup {
  display: inline-flex;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
  width: fit-content;
}

.radio-icongroup {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #4b4b4b;
  transition: all 0.3s ease;
}

.radio-icongroup.left {
  border-radius: 4px 0 0 4px;
  padding: 4px 8px 4px 6px;
  border: 1px solid #c5c5c5;
}

.radio-icongroup.right {
  border-radius: 0 4px 4px 0;
  padding: 4px 8px 4px 6px;
  border: 1px solid #c5c5c5;
  border-left: none;
}

.icon-box img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

.radio-icongroup input[type="radio"]:checked + .radio-icongroup {
  background: #24276e;
  color: #ffffff;
}

.radio-icongroup:hover {
  background: #e6e4e0;
}

.noteinfo {
  margin-bottom: 16px;
  color: #999;
}
.mar-b16 {
  margin-bottom: 16px;
}
.alert-msg {
  color: #426c36;
  line-height: auto;
}
