.lc-search {
  background-color: #e6ebf2;
}

.lc-search input {
  border: unset;
  height: 60px;
  border-radius: 50px;
  width: 100%;
  padding: 0 2rem 0 4rem;
}

.search-input {
  position: relative;
  display: flex;
  width: 60%;
}

.search-ico {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lc-card {
  line-height: 1.25;
  display: grid;
  gap: 0.5rem;
  color: #000;
}

.lc-card .card-img {
  overflow: hidden;
  border-radius: 10px;
  border: 1px #f5f5f5 solid;
}
.lc-card:hover .card-img img {
  transform: scale(1.15);
  transition: 0.5s ease-in-out;
}
.lc-card .card-img img {
}

.cat-tag {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.cat-tag > a {
  background-color: #e13131;
  color: #fff;
  font-size: 12px;
  width: fit-content;
  padding: 0.15rem 0.75rem;
  border-radius: 50px;
}

.title-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title-set a {
  color: #000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.title-set a:hover {
  transform: translateX(10px);
  transition: 0.3s ease-in-out;
}

.title-set a > div {
  width: 25px;
  height: 25px;
  background: #e13131;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading-bar {
  display: flex;
  justify-content: center;
}

.heading-bar > div:first-child {
  background-color: #f5f5f5;
  display: flex;
  padding: 1rem 1.25rem;
  border-radius: 50px;
  justify-content: space-between;
  gap: 0.5rem;
}

.heading-bar .toggle {
  padding: 0.15rem 1rem;
  cursor: pointer;
  border-radius: 50px;
}

.heading-bar .toggle:hover,
.heading-bar .toggle.active {
  background: #e13131;
  color: #fff;
  padding: 0.15rem 1rem;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
.heading-cat {
  display: flex;
  gap: 1.5rem;
  font-size: 20px;
}
.heading-cat .toggle {
  position: relative;
  cursor: pointer;
}

.heading-cat .toggle.active {
  position: relative;
  font-weight: 600;
}
.heading-cat .toggle:hover::after,
.heading-cat .toggle.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #e13131;
  transition: 0.3s ease-in-out;
}

.lc-section {
  margin: 5rem 0;
}
.lc-category-panel {
  border-right: 1px #e6ebf2 solid;
  height: 70vh;
}
.lc-category-panel li {
  line-height: 1.5;
}
.lc-category-panel .collapsible:hover {
  transition: transform 0.5s e;
  background-color: #e6ebf2;
  cursor: pointer;
}
.lc-category-panel .panel-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.lc-category-panel .panel-content li {
  color: #ab1e41;
}
.lc-category-panel .panel-content.active {
  /* max-height: 200px; */
  max-height: 100%;
padding: 1rem;
}

.lc-category-panel .arrow {
  display: inline-block;
  transition: transform 0.3s;
}
.lc-category-panel .collapsible h5 {
  margin: 0;
}
.lc-category-panel .collapsible {
  display: flex;
  align-items: center;
  justify-content: space-between;
      padding: 1rem;
}
.lc-category-panel .collapsible.active {
  background-color: #e6ebf2;
}

.lc-category-panel .collapsible.active .arrow {
  transform: rotate(90deg);
}
.lc-category-panel .amount {
    width: 30px;
    height: 30px;
    font-size: 14px;
  background-color: #e13131;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.table-of-content {
  background: #fbfbfb;
  padding: 2rem;
  border-radius: 16px;
  border: 1px #e5e5e5 solid;

}
.table-of-content ol,
.table-of-content ul {
  margin: 0;
}
@media (max-width: 991px) {
  .search-input {
    width: 100%;
    height: 40px;
    padding: 0;
  }
  .lc-card {
    margin: 1rem 0 0 0;
  }
  .lc-search input {
    height: 100%;
  }
  .search-ico {
    width: 50px;
    height: 40px;
  }
  .heading-bar > div:first-child {
    padding: 0.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    background-color: unset;
    gap: 0.5rem;
  }
  .heading-bar .toggle {
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
  }
  .heading-bar .toggle:hover,
  .heading-bar .toggle.active {
    padding: 0.5rem 1rem;
  }
  .heading-cat {
    gap: 0.5rem;
    flex-wrap: wrap;
  }
}
