.loading {
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url("../../static/ajax-loader.svg");
  background-position: center center;
  background-repeat: no-repeat;
  height: 100%;
  opacity: 1;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 10000000;
}

.table-responsive {
  min-height: .01%;
  overflow-x: hidden;
}

.asterisk {
  color: red;
}

.page-navigation {
  display: inline-block !important;
}

.page-navigation li {
  display: inline-block;
}

.blink {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}


/*-----*/


.table-scroll {
  position: relative;
  width: 100%;
  z-index: 1;
  margin: auto;
  overflow: auto;
  height: 405px;
}

/* 
.table-scroll table {
  width: 100%;

  margin: auto;
  border-collapse: separate;
  border-spacing: 0;
} */

.table-wrap {
  position: relative;
}

.table-scroll th,
.table-scroll td {
  padding: 5px 10px;
  /* border: 1px solid #000; */
  /* background: #fff; */
  vertical-align: top;
}

.table-scroll thead th {
  /* background: #333; */
  /* color: #fff; */
  position: -webkit-sticky;
  position: sticky;
  top: -1px;
}

.table-scroll tfoot,
.table-scroll tfoot th,
.table-scroll tfoot td {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  /* background: #666; */
  /* color: #fff; */
  z-index: 4;
}

.text-title {
  color: #535252;
  font-weight: bold;
  font-size: 16px;
}

.row-cards a {
  text-decoration: none !important;
}

.bg-peach {
  background-color: #fbe2dd;
  /* border: 1px solid #bd5506; */
}

.text-peach {
  color: #bd5506 !important;
  font-weight: bold;
  font-size: 25px;
}

.bg-purple {
  background-color: #d7c4df !important;
  /* border: 1px solid #8b0ab3; */
}

.text-purple {
  color: #8b0ab3;
  font-weight: bold;
  font-size: 25px;
}

.bg-cyan {
  background-color: #bae7e5 !important;
}

.text-cyan {
  color: #197c77 !important;
  font-weight: bold;
  font-size: 25px;
}

.bg-lightorange {
  background-color: #ffc582 !important;
}

.text-lightorange {
  color: #ff5100;
  font-weight: bold;
  font-size: 25px;
}

.rectangle {
  position: relative;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

ol,
ul {
  padding: 0px;
  list-style-type: none;
}



/* LEVEL-1 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-1 {
  width: 100%;
  margin: 0 auto 40px;
  background: #2c4261;
  text-align: center;
  color: #fff;
}

/* .level-1::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: #a6a6a6;
} */


/* LEVEL-2 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-2-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 35% 1fr;
}

/* .level-2-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 17.5%;
  width: 50.2%;
  height: 2px;
  background: #a6a6a6;
} */

.level-2-wrapper::after {
  display: none;
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  width: calc(100% + 20px);
  height: 2px;
  background: #a6a6a6;
}

.level-2-wrapper li {
  position: relative;
}

.level-2-wrapper>li::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: #a6a6a6;
}

.level-2 {
  width: 100%;
  margin: 0 auto 40px;
  background: #0077b3;
  text-align: center;
  color: #fff;
}

.level-2-wrapper>li:first-child {
  margin-right: 20px;
}

/* 
.level-2::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background: #a6a6a6;
} */

.level-2::after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  width: 20px;
  height: 2px;
  background: #a6a6a6;
}


/* LEVEL-3 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-3-wrapper {
  position: relative;
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-column-gap: 20px;
  width: 100%;
  margin: 0 auto;
}

/* .level-3-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: calc(16% - 5px);
  width: calc(68% + 10px);
  height: 2px;
  background: #a6a6a6;
} */

.level-3-wrapper>li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 2px;
  height: 40px;
  background: #a6a6a6;
}

.level-3 {
  margin-bottom: 10px;
  background: #87a0c6;
  color: #fff;
  text-align: center;
}

/* LEVEL-3 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-3-2-wrapper {
  position: relative;
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  grid-column-gap: 15px;
  width: 100%;
  margin: 0 auto;
}

/* 
.level-3-2-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: calc(10% - 5px);
  width: calc(79% + 17px);
  height: 2px;
  background: #a6a6a6;
} */

.level-3-2-wrapper>li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 2px;
  height: 40px;
  background: #a6a6a6;
}

.level-3-2 {
  margin-bottom: 10px;
  background: #87a0c6;
  color: #fff;
  text-align: center;
}

.level-3-2.rectangle,
.level-3.rectangle {
  height: 78px;
  align-content: center;
}

/* LEVEL-4 STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.level-4-wrapper {
  position: relative;
  width: 100%;
  /* margin-left: 10px; */
}

/* .level-4-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -9px;
  width: 2px;
  height: calc(100% + 20px);
  background: #a6a6a6;
} */

.level-4-wrapper li+li {
  margin-top: 20px;
}

.level-4 {
  font-weight: normal;
  background: #ccc;
  text-align: center;
}

.level-4::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-100%, -50%);
  width: 2px;
  height: 10px;
  background: #a6a6a6;
}

.level-4.rectangle {
  margin-bottom: 8px;
}

/* MQ STYLES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 700px) {
  .rectangle {
    padding: 20px 10px;
  }

  .level-1,
  .level-2 {
    width: 100%;
  }

  .level-1 {
    margin-bottom: 20px;
  }

  .level-1::before,
  .level-2-wrapper>li::before {
    display: none;
  }

  .level-2-wrapper,
  .level-3-wrapper,
  .level-3-2-wrapper {
    display: block;
  }

  .level-2-wrapper::after,
  .level-3-wrapper::after,
  .level-3-2-wrapper::after,
  .level-2::after,
  .level-3::after,
  .level-3-2::after {
    display: none;
  }

  .level-2-wrapper {
    width: 90%;
    margin: 0 auto;
  }

  .level-2::before {
    left: 0%;
    display: none;
    height: 848px;
  }

  .level-2-wrapper::before {
    /* left: -20px; */
    width: 2px;
    height: calc(100% + 40px);
  }

  .level-2-wrapper>li:not(:first-child) {
    margin-top: 50px;
  }

  .level-3 {
    /* margin-left: -20px; */
  }

  .level-3-2-wrapper::before,
  .level-3-wrapper::before,
  .level-3-wrapper>li::before,
  .level-3-2-wrapper>li::before {
    display: none;
  }

  .dash-left {
    display: none;
  }
}

.level-4-wrapper a {
  color: #000
}

.level-4-wrapper a:hover {
  text-decoration: none;
}

.box-1 {
  padding: 10px;
  display: flex;
  height: 80px;
  font-size: 10px !important;

}

.dmframe h2 {
  font-size: 16px;
  margin-bottom: 0;
}

.dmframe .card-title {
  font-size: 12px !important;
  padding-right: 10px;
  display: block;
  /*width: 180px;*/
  margin-bottom: 0 !important;
}

.dmframe .icon {
  --tblr-icon-size: 2.25rem;
  width: 30px;
  height: 30px;
  margin-right: 3px;
}

a,
a:hover {
  text-decoration: none;
  font-weight: bold;
}

.percentage-text {
  font-size: 1rem;
  color: #000;
  position: absolute;
  right: 5px;

}

.percentage-text-2 {
  font-size: 1rem;
  color: #000;
  position: absolute;
  right: 5px;
  top: 2px;

}

.dash-left {
  max-width: 12%;
}



.dash-right {
  min-width: 88%;
}

.radial-progress {
  --size: 35px;
  --thickness: 3px;
  --value: 75;
  --bg-color: #ddd;
  --progress-color: #81b77f;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--progress-color) calc(var(--value) * 1%), var(--bg-color) 0);
  position: relative;
}

.radial-progress::before {
  content: '';
  position: absolute;
  width: calc(var(--size) - var(--thickness) * 2);
  height: calc(var(--size) - var(--thickness) * 2);
  background-color: white;
  border-radius: 50%;
}

.progress-value {
  position: relative;
  font-size: calc(var(--size) / 4);
  font-weight: bold;
  color: #000;
}


.cs-databox {
  padding: 0px;
  background-color: #a1d0a9;
  margin: 5px;
  text-align: center;
  min-height: 70px;

}

.cs-databox a {
  color: #000;
}

.cs-databox-2 {
  /* padding: 12px 10px; */
  background-color: #a1d0a9;
  flex: 1 1 0;
  text-align: center;
  min-height: 80px;

}

.cs-databox-2 a,
.cs-databox a,
.cs-databox-3 a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 12px 10px;
  color: #000;
  font-weight: 300 !important;
  align-content: center;

}

.cs-databox-3 {
  padding: 12px 10px;
  background-color: #a1d0a9;
  text-align: center;
  min-height: 83px;
  margin: 5px 0;
}

/****************** 09-01-2025 **********************/
.cs-datalistbox {
  margin-bottom: 2px;
  font-size: 12px !important;
  text-align: center;
}

.cs-datalistbox ul {
  margin-bottom: 0px;
}

.cs-datalistbox li {
  padding: 5px;
  /* margin-bottom: 2px; */
  text-align: center;
  border-top: 1px solid #fff;
  /*border-right: 1px solid #fff;*/
}

.cs-datalistbox a {
  color: #000 !important;
  font-weight: normal;
}

.cs-datalistbox h3 {
  padding: 8px 0px;
  margin-bottom: 0 !important;
  font-size: 12px !important;

}

.card-header-tabs .nav-link.active {
  font-weight: bold;
  background: #b787a7;
  color: #fff;
}


[data-bs-theme=dark] .navbar-brand-autodark .navbar-brand-image {
  filter: none !important;
}

.csframe .radial-progress {
  --size: 30px;
  position: absolute;
  right: 10px;
  top: 0px;
}

.csframe .cs-datalistbox {
  position: relative;

}

.csframe .card .cs-datalistbox.tophead {
  text-transform: uppercase;
  font-size: 14px !important;

  font-weight: bold;
}

.csframe .cs-datalistbox a {
  color: #000 !important;
  font-weight: normal;
  display: block;
  /*height: 75px;*/
}

/*-------31-01-2025--------*/
.form-imagecheck-figure {
  display: block;
  width: 50%;
  text-align: center;
  height: 100px;
}

.form-imagecheck-image {
  height: 100%;
  object-fit: cover;

}

/*-------end--------*/

.hierarchy .list-group-item {
  padding: 6px;
}

.hierarchy .card-body {
  padding: 0px;
}

.csframe .cs-datalistbox a.head2 {
  height: 55px;
}

.csframe .cs-datalistbox a.head3 {
  height: 55px;
}

/*--------------------css made on 4-4-2025--------------------------*/


th,
.card-header-tabs .nav-link.active {
  background: #854771 !important;
  color: #fff !important;
  text-transform: uppercase !important;
  text-align: center !important;

}

tbody,
td,
tfoot,
th,
thead,
tr,
.form-control,
.form-select {
  border-color: #854771 !important;
}

.nav-link-icon svg,
.icon {
  stroke: #854771 !important;
}

.page-title {
  /* text-decoration:underline; */
  text-transform: uppercase !important
}

.btn .icon {
  stroke: #fff !important;
}

.nav-link-title,
.nav-item,
.dropdown-menu-column .dropdown-item {
  color: #000 !important;
  text-transform: uppercase;
}

/*--------------------css end on 4-4-2025--------------------------*/
/*--------------------css start on 10-4-2025--------------------------*/
.card {
  height: 100%;
}

/*.progress-wrap{width:100%;margin-top:5px; position:relative}*/

/*.progress {*/
/*    height: 10px;*/
/*    border-radius: 0!important;*/
/*    background-color: #fff!important;*/
/*    width:calc(100% - 20px)!important;*/
/*    border:1px solid #858383;*/
/*}*/
/*.progress-text {*/
/*    position: absolute;*/
/*    color: #000;*/
/*    top: -4px;*/
/*    right: -20px;*/
/*}*/

.progress {
  height: 10px;
  border-radius: 0 !important;
  background-color: #fff !important;
  width: 47px !important;
  border: 1px solid #858383;
  margin: 4px;
}

.progress-wrap {
  width: 100%;
  margin-top: 5px;
  position: relative;
  display: flex;
  justify-content: center;
}

.progress-text {
  /* position: absolute; */
  color: #000;
  top: -4px;
  right: -33px;
  line-height: 17px;
  font-size: 11px;
  font-weight: bold;
}

/*.progress-text {*/
/* position: absolute; */
/*    color: #000;*/
/*    top: -4px;*/
/*    right: -33px;*/
/*}*/

.step-circle {
  display: block;
  background: #b7b7b7;
  /* 51b958; */
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: absolute;
  top: -20px;
  left: 40%;
  z-index: 2;
  padding: 15px;
  color: white;
}

.step-item.active .step-circle {
  display: block;
  background: #854771;
}

.step-value {
  margin-top: 25px;
  display: block;
}

.bg-gray {
  background-color: #b7b7b7 !important;
}

.equal-width-tabs .tab-link.active:before {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: -20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid  #000;
}