@keyframes skeletonLoader {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.skeleton-loader, .nt-posts-filter__item-skeleton .nt-posts-filter__item-image,
.nt-posts-filter__item-skeleton .nt-posts-filter__item-term,
.nt-posts-filter__item-skeleton .nt-posts-filter__item-title,
.nt-posts-filter__item-skeleton .nt-posts-filter__item-excerpt,
.nt-posts-filter__item-skeleton .nt-posts-filter__item-button {
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: skeletonLoader;
  animation-timing-function: linear;
  background: darkgray;
  background: linear-gradient(to right, #eeeeee 10%, #dddddd 18%, #eeeeee 33%);
  background-size: 800px 104px;
  height: 100px;
  position: relative;
}

.nt-posts-filter__container {
  padding: 0 15px;
}
@media (max-width: 991.98px) {
  .nt-posts-filter__filter-form {
    position: relative;
    display: flex;
  }
}
@media (max-width: 991.98px) {
  .nt-posts-filter__filter-item {
    width: 50%;
  }
}
.nt-posts-filter__order-by {
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .nt-posts-filter__order-by {
    margin: 0;
    order: 1;
  }
}
@media (max-width: 991.98px) {
  .nt-posts-filter__filter-by {
    order: 0;
  }
}
.nt-posts-filter__filter-title {
  position: relative;
  font-size: 20px;
  font-weight: 500;
  padding-left: 26px;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--e-global-color-primary);
}
.nt-posts-filter__filter-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  width: 16px;
  height: 16px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.nt-posts-filter__filter-title.order-by::before {
  background-image: url("../../images/up-down.svg");
}
.nt-posts-filter__filter-title.filter-by {
  margin-bottom: 35px;
}
.nt-posts-filter__filter-title.filter-by::before {
  background-image: url("../../images/filter.svg");
}
@media (max-width: 991.98px) {
  .nt-posts-filter__filter-lists {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 99;
    display: none;
    width: 100%;
    background-color: #FFFFFF;
    padding: 15px;
  }
  .nt-posts-filter__filter-lists.active {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
  }
}
.nt-posts-filter__filter-list {
  position: relative;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(112, 112, 112, 0.4352941176);
}
.nt-posts-filter__filter-list:last-child {
  border: 0;
  padding: 0;
  margin-bottom: 0;
}
.nt-posts-filter__filter-list.is-select .select-arrow {
  position: absolute;
  top: calc(50% - 16px);
  right: 18px;
  z-index: 1;
  width: 14px;
  height: 8px;
  background-image: url("../../images/arrow-down-green.svg");
  background-size: 100%;
}
@media (max-width: 991.98px) {
  .nt-posts-filter__filter-list.is-select .select-arrow {
    top: calc(50% - 4px);
  }
}
.nt-posts-filter__filter-list select {
  font-size: 15px;
  font-weight: 300;
  color: var(--e-global-color-primary);
  padding: 20px;
  background-color: #F9F7F4;
  border: 0;
  border-radius: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.nt-posts-filter__filter-list-title {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
}
.nt-posts-filter__filter-list-items {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  row-gap: 10px;
  column-gap: 10px;
}
.nt-posts-filter__filter-list-items li:nth-child(-n+10) {
  display: block;
}
.nt-posts-filter__filter-list-items.active li {
  display: initial;
}
.nt-posts-filter__filter-list-item {
  display: none;
  margin-bottom: 10px;
}
.nt-posts-filter__filter-list-item.see-more {
  display: block;
  width: 100%;
}
.nt-posts-filter__filter-list-item.see-more a {
  background-color: var(--e-global-color-secondary);
  border: 1px solid transparent;
}
.nt-posts-filter__filter-list-item.see-more a:hover {
  border: 1px solid var(--e-global-color-secondary);
  background-color: #FFFFFF;
}
.nt-posts-filter__filter-list-item a {
  font-size: 12px;
  text-transform: uppercase;
  background-color: #F9F7F4;
  padding: 14px;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.nt-posts-filter__filter-list-item a:hover {
  border-color: var(--e-global-color-secondary);
}
.nt-posts-filter__filter-list-item a.active {
  background-color: var(--e-global-color-secondary);
}
.nt-posts-filter__filter-list-item input {
  display: none;
}
.nt-posts-filter__filter-clear {
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  display: none;
  width: 16px;
  height: 16px;
  background-image: url("../../images/trash-can.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0 50%;
  opacity: 1;
  transition: all 0.3s;
}
.nt-posts-filter__filter-clear:hover {
  opacity: 0.6;
}
.nt-posts-filter__filter-clear.active {
  display: block;
}
@media (max-width: 991.98px) {
  .nt-posts-filter__filter-clear {
    right: 10px;
  }
}
.nt-posts-filter__post-items {
  position: relative;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}
.nt-posts-filter__post-items.loading {
  opacity: 0.6;
}
.nt-posts-filter__item {
  margin-bottom: 40px;
}
.nt-posts-filter__item-link {
  display: block;
  margin-bottom: 20px;
}
.nt-posts-filter__item-image {
  width: 100%;
  min-height: 300px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media (min-width: 1400px) {
  .nt-posts-filter__item-image {
    min-height: 320px;
  }
}
.nt-posts-filter__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nt-posts-filter__item-term {
  font-weight: 500;
  color: var(--e-global-color-secondary);
  text-transform: capitalize;
}
.nt-posts-filter__item-title {
  font-size: 20px;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 20px;
}
.nt-posts-filter__item-excerpt {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
}
.nt-posts-filter__item-button, .nt-posts-filter__load-more-button {
  font-size: 14px !important;
  line-height: 20px !important;
  color: var(--e-global-color-primary) !important;
  background-color: transparent !important;
  border: 1px solid var(--e-global-color-secondary) !important;
  padding: 10px 20px !important;
  transition: all 0.2s;
  margin-top: 20px;
}
.nt-posts-filter__item-button:hover, .nt-posts-filter__load-more-button:hover {
  background-color: var(--e-global-color-secondary) !important;
}
.nt-posts-filter__load-more-button {
  background-color: var(--e-global-color-secondary) !important;
}
.nt-posts-filter__load-more-button:hover {
  color: #FFFFFF !important;
  background-color: var(--e-global-color-primary) !important;
}
.nt-posts-filter__load-more {
  display: none;
  text-align: center;
}
.nt-posts-filter__load-more.active {
  display: block;
}
.nt-posts-filter__loading {
  display: none;
  height: 36px;
  background-image: url("../../images/ring-loading.svg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.7;
}
.nt-posts-filter__loading.active {
  display: block;
}
.nt-posts-filter__item-skeleton .nt-posts-filter__item-image {
  width: 100%;
}
.nt-posts-filter__item-skeleton .nt-posts-filter__item-term {
  width: 30%;
  height: 20px;
}
.nt-posts-filter__item-skeleton .nt-posts-filter__item-title {
  height: 30px;
}
.nt-posts-filter__item-skeleton .nt-posts-filter__item-excerpt {
  height: 50px;
}
.nt-posts-filter__item-skeleton .nt-posts-filter__item-button {
  width: 140px;
  height: 40px;
  border: 0 !important;
}
/*# sourceMappingURL=posts-filter.css.map */
