/* custom properties */
.cards-block {
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.cards-block .card-c-018-wrapper {
/*   min-height: 380px; */
}


.cards-block .card-c-018-wrapper-bigger {
  grid-column-start: 1;
  grid-column-end: 4;
}

.cards-block .card {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 1px 7px rgba(0, 0, 0, 0.15);
}

.cards-block .card-image-container img {
  height: 200px;
  object-fit: cover;
}

.input-search-blog {
  border: 1px solid var(--gray-500) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  color: var(--gray-900) !important;
  height: 56px !important;
  padding: 0px 40px 0px 0px !important;
  width: 100% !important;
  background: var(--white);
}

.input-search-blog input:focus {
  box-shadow: none !important;
  outline: 0 !important;
}

.input-search-blog input[type=image]  {
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  width: 24px;
}

.btn-paginate {
  width: 40px;
  height: 40px;
  border-radius: 3px;
}

.content-filters.open {
  position: absolute;
  display: block !important;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0px 1px 7px rgb(0 0 0 / 15%);
}

.btn-filters .arrow,
.see-more-btn .arrow {
  rotate: 90deg;
  transition: rotate 0.25s ease-in-out 0s;
}

.btn-filters.open .arrow,
.see-more-btn.open .arrow {
  rotate: -90deg;
  transition: rotate 0.25s ease-in-out 0s;
}

.see-more-btn {
  cursor: pointer;
}

.categories-hidden {
  overflow: hidden;
  max-height: 0;
  transition: max-height cubic-bezier(0.9, 0.04, 0.09, 0.94) 400ms;
}

.categories-hidden.open {
  max-height: 1000px;
  transition: max-height cubic-bezier(0.9, 0.04, 0.09, 0.94) 400ms;
}

.w-25 {
  width: 25%;
}

.w-75 {
  width: 75%;
}

@media (min-width: 576px) {
  .w-sm-25 {
    width: 25% !important;
  }

  .w-sm-75 {
    width: 75% !important;
  }

  .d-sm-grid {
    display: grid !important;
  }
  .content-filters{
    position: sticky;
    top: 9rem;
  }
}

@media (max-width: 576px) {
  .card-c-018-wrapper {
    max-width: 100%;
  }

  .cards-block {
    grid-template-columns: 1fr;
  }

  .cards-block .card-image-container img {
    height: 200px !important;
    object-fit: cover;
  }
}