.cclHero_readMore a {
  text-transform: uppercase !important;
  text-decoration: none !important;
  opacity: 0.75 !important;
}
.cclHero_readMore a:hover {
  color: #0bce40 !important;
  opacity: 1 !important;
}

.CategoryDescription a {
  color: var(--bs-body-color);
  font-weight: bold;
  text-underline-offset: 0.375em !important;
  text-decoration-color: #0bce40;
}
.CategoryDescription a:hover {
  color: #0bce40 !important;
  opacity: 1 !important;
}
.CategoryDescription img {
  max-width: 100%;
  height: auto;
}

.truncate-text {
  display: -webkit-box;
  -webkit-line-clamp: 7; /* number of lines before truncation */
  line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#filterOffcanvas a {
  text-decoration: none;
}

#sort-order {
  white-space: nowrap;
  flex-shrink: 0;
}

#sortOrderBtn {
  white-space: nowrap;
}

.sort-order-dropdown {
  top: -1px !important;
  right: 14px !important;
}

.sort-order-dropdown-btn {
  margin-right: -0.875rem;
}

@media (max-width: 380px) {
  .filters-label {
    display: none;
  }
}

.filters-button, .sort-by-ddl {
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .filters-button, .sort-by-ddl {
    width: auto;
  }
}

.form-check-input.filter-checkbox {
  background-color: #141414;
}

.filtered-product-count {
  opacity: 1 !important;
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.form-check-label {
  color: #d4d4d4;
  display: inline-flex;
  align-items: center;
}
.form-check-label .badge {
  background-color: #272727 !important;
}

#accordionFilters .accordion-item {
  background-color: unset;
}
#accordionFilters .accordion-button:focus {
  box-shadow: none;
}
#accordionFilters .accordion-button:not(.collapsed) {
  color: unset;
  background-color: unset;
  box-shadow: none;
}
#accordionFilters .accordion-button::after {
  display: none;
}

#product-cards-list .btn-primary {
  letter-spacing: 0.3px;
}
#product-cards-list .card-content {
  padding-top: 0.625rem;
}
#product-cards-list .fa-icon {
  width: 15px;
}

.sync-height {
  min-height: 6rem;
}

.skeleton {
  background: linear-gradient(90deg, #434343 25%, #363636 37%, #292929 63%);
  background-size: 400% 100%;
  animation: shimmer 3s ease infinite;
  border-radius: 4px;
}

.skeleton-text {
  height: 14px;
  margin-bottom: 10px;
}

.short {
  width: 60%;
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}
.fade-in {
  animation: fade 0.3s ease-in;
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
