   :root {
       --bg-color: #ffffff;
       --text-color: #222222;
       --meta-color: #555555;
       --highlight: #12A19A;
       --quote-bg: #f9f9f9;
       --border-color: #ccc;
       --surface-color: #f4f4f4;
   }
.layout {
  margin: 30px 6%
}

.main h1 {
  text-align: center;
  padding: 5px;
  color: #12A19A;
}

.search {
  width: 100%;
  text-align: center
}

.form {
  padding: 12px 3%;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #ffffffee;
  border-radius: 5px;
  user-select: none
}

.f-item {
  /* width: 24.7%; */
  width: 19.6%;
  height: 40px;
  padding: 7px;
  margin: 7px 0px;
  outline: none;
  border: 1px solid #E0F2F1;
  background-color: #E0F2F1;
  border-radius: 5px
}


.f-item option {
  padding: 2px
}

.filter-btn {
  width: 20%;
  padding: 10px;
  background-color: #12A19A;
  outline: none;
  color: white;
  cursor: pointer;
  border: 1px
}

.filter-btn:hover {
  background: #0e857f
}

.f-item input[type=text] {
  padding: 12px;
  border: 1px solid #E0F2F1;
  border-radius: 3px;
  outline: none;
  background-color: #E0F2F1
}

.d-container {
  margin: 30px 0;
  position: relative
}

.d-list {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: -5px
}

.d-list:last-child {
  align-self: flex-start
}

.doc-item {
  display: block;
  padding: 20px;
  border-radius: 9px;
  background-color: #ffffffee;
  text-decoration: none;
  color: #111;
  border: 1px solid #eaecec;
  margin: 5px;
  width: calc(33.3% - 10px);
  user-select: none;
  padding: 15px
}

.doc-item:hover {
  box-shadow: 0 2px 20px rgb(0 0 0 / 20%)
}

.doc-item .doc-info {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between
}

.doc-item .doc-info div {
  text-align: start;
  align-self: flex-end
}

.doc-per {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap
}

.doc-per img {
  width: 55px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #12A19A;
  object-fit: cover;
  object-position: 50% 0px
}

.doc-per>span {
  padding: 0 13px;
  display: inline-block;
  width: calc(100% - 60px);
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: start;
  white-space: nowrap
}

.percent {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px
}

.percent svg {
  position: relative;
  width: 60px;
  height: 60px
}

.percent svg circle {
  width: 60px;
  height: 60px;
  fill: none;
  stroke-width: 6;
  stroke: #000;
  transform: translate(5px, 5px);
  stroke-dasharray: 152;
  stroke-dashoffset: 152;
  stroke-linecap: square
}

.percent svg circle:nth-child(1) {
  stroke-dashoffset: 0;
  stroke: #E0F2F1;
}

.pindcon .percent svg circle:nth-child(1) {
  stroke: #fff
}

.percent svg circle:nth-child(2) {
  stroke-dashoffset: calc(150 - (149 * var(--percent)) / 100);
  stroke: #12A19A
}

.percent .number {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  color: #111
}

.din {
  margin: 8px 0;
  font-size: 16px
}

.dib {
  font-weight: bold
}

.difs {
  font-size: 14px
}

.percent .number span {
  font-size: 12px
}

.loader {
  display: flex;
  gap: 10px
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: start;
  justify-content: center;
}

.ldot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #12A19A;
  animation: pulse 1.1s infinite ease-in-out;
}

.ldot:nth-child(2) {
  animation-delay: 0.3s
}

.ldot:nth-child(3) {
  animation-delay: 0.6s
}

.pindcon {
  border-left: 2px solid #008000aa;
  border-right: 2px solid #008000aa;
  border-radius: 7px;
  padding: 8px;
  margin-bottom: 16px
}

.pindcon .doc-item {
  background-color: #E0F2F1;
  border: 1px solid #008000aa
}

.pin_tlt {
  display: block;
  width: 100%;
  font-weight: bold;
  color: green;
  text-align: start;
  margin-bottom: 12px
}

.pin_tlt::before {
  content: '\1F4CC';
  display: inline-block;
  padding-inline-end: 6px;
  font-size: 20px
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.3);
    opacity: 0.7
  }
}

.bslcon {
  margin: 10px;
}

.btnslink {
  display: inline-block;
  margin: 8px 4px;
  border: 1px solid #12A19A;
  padding: 6px 12px;
  border-radius: 7px;
  text-decoration: none;
  background-color: #fff;
  color: #111;
  min-width: 100px
}

.btnslink-act {
  background-color: #12A19A;
  color: #fff;
}

.btnslink:hover:not(.btnslink-act) {
  color: #12A19A
}

.cbcont, .chcont {
  background-color: #fff;
  padding: 12px 3%;
  border-radius: 5px
}

.chcont {
  margin-bottom: -5px
}

/* .bgw {
  background-color: #fff;
  border-radius: 5px
} */
.cnslt-more-wrap {
  text-align: center
}

.cnslt-more-content  {
  position: relative;
  text-align: right;
  background: var(--quote-bg);
  padding: 1.5rem;
  border-radius: 5px;
  max-height: 260px;
  overflow: hidden;
  transition: max-height .4s ease
}

.cnslt-more-content ::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 60px;
  background: linear-gradient(to top, var(--quote-bg), transparent);
  pointer-events: none
}

/* حالت باز */
.cnslt-more-content.open {
  max-height: 6000px
}

/* حذف گرادینت در حالت باز */
.cnslt-more-content.open::after {
  display: none
}

.cnslt-more-content  h3 {
  color: var(--highlight);
  margin-bottom: .5rem
}

.cnslt-more-btn {
  background: var(--highlight);
  color: #fff;
  border: none;
  padding: .7rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer
}

@media (max-width:1000px) {
  .doc-item {
    width: calc(50% - 10px)
  }

  .f-item {
    width: 47%
  }
}

@media (max-width:700px) {
  .doc-item {
    width: calc(100% - 10px)
  }

  .cnslt-more-content  {
    max-height: 250px
  }
}

@media (max-width:600px) {
  .bslcon {
    text-align: start
  }

  .f-item {
    width: 90%
  }

  .filter-btn {
    width: 90%
  }
}