.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-responsive {
  width: 100%;
}

.selectric {
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid #110505;
  position: relative;
  overflow: hidden;
  color: #110505;
}
@media screen and (min-width: 1025px) {
  .selectric {
    max-width: 150px;
  }
}
.selectric:active {
  background-color: #110505;
}
.selectric:active .label {
  color: #fff;
}
.selectric:active .select_arrow {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M4.99512 8.35352L4.99463 5.12939M4.99463 5.12475L4.99463 1.62474' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.5 5.12485L5.46404 8.16082C5.20776 8.4171 4.79224 8.4171 4.53596 8.16082L1.5 5.12485' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
@media screen and (min-width: 1025px) {
  .selectric:hover {
    background-color: #110505;
  }
  .selectric:hover .label {
    color: #fff;
  }
  .selectric:hover .select_arrow {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M4.99512 8.35352L4.99463 5.12939M4.99463 5.12475L4.99463 1.62474' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.5 5.12485L5.46404 8.16082C5.20776 8.4171 4.79224 8.4171 4.53596 8.16082L1.5 5.12485' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  }
}
.selectric .label {
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 30px 0 10px;
  font: 600 16px "Mundial", sans-serif;
  height: 32px;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}
.selectric .select_arrow {
  position: absolute;
  top: auto;
  bottom: 9px;
  right: 10px;
  width: 10px;
  height: 10px;
  outline: none;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10' fill='none'%3E%3Cpath d='M4.99512 8.35352L4.99463 5.12939M4.99463 5.12475L4.99463 1.62474' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M8.5 5.12485L5.46404 8.16082C5.20776 8.4171 4.79224 8.4171 4.53596 8.16082L1.5 5.12485' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.selectric-open {
  z-index: 4;
}
.selectric-open .selectric-items {
  display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  user-select: none;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}
.selectric-hide-select select {
  position: absolute;
  left: -100%;
}
.selectric-hide-select.selectric-is-native {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.selectric-hide-select.selectric-is-native select {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  border: none;
  z-index: 1;
  box-sizing: border-box;
  opacity: 0;
}

.selectric-input {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 1px !important;
  height: 1px !important;
  outline: none !important;
  border: none !important;
  *font: 0/0 a !important;
  background: none !important;
}

.selectric-temp-show {
  position: absolute !important;
  visibility: hidden !important;
  display: block !important;
}

.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
  border: 1px solid #110505;
  border-top: none;
  min-width: 100%;
}
@media screen and (min-width: 768px) {
  .selectric-items {
    width: auto !important;
  }
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
}
.selectric-items .selectric-scroll::-webkit-scrollbar {
  width: 0;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
  border-top: none;
}
.selectric-items ul, .selectric-items li {
  font-size: 14px;
}
.selectric-items li {
  transition: all 0.3s ease;
  display: block;
  padding: 10px;
  line-height: normal;
  color: #110505;
  background-color: #fff;
  cursor: pointer;
}
.selectric-items li:not(:last-child) {
  border-bottom: 1px solid #110505;
}
.selectric-items li.selected, .selectric-items li.highlighted, .selectric-items li:hover {
  color: #fff;
  background: #110505;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default !important;
  background: none !important;
  color: #666 !important;
  user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: default;
  user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}

.selectric-is_multiple .selectric-items li {
  position: relative;
}
.selectric-is_multiple .selectric-items li[data-index="0"] {
  padding: 0;
  min-height: 0;
  line-height: 0;
  font-size: 0;
  border-top: none;
}
.selectric-is_multiple .selectric-items li[data-index="0"]:after {
  content: none;
}
.selectric-is_multiple .selectric-items li[data-index="1"] {
  border-top: none;
}

.post_filters {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .post_filters {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .post_filters {
    justify-content: flex-end;
  }
}
.post_filters__dropdowns {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 20px;
  order: 2;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .post_filters__dropdowns {
    order: 3;
  }
}
@media screen and (max-width: 767px) {
  .post_filters__dropdowns {
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .post_filters__dropdowns {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .post_filters__item {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .post_filters__item {
    flex: 1;
  }
}
.post_filters__buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  order: 3;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .post_filters__buttons {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .post_filters__buttons {
    justify-content: space-between;
    width: 100%;
  }
}
.post_filters__view_btns {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.post_filters__view_btns .view_btn {
  height: 34px;
  width: 34px;
  position: relative;
  background-color: transparent;
  transition: all 0.3s ease;
}
.post_filters__view_btns .view_btn:after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.post_filters__view_btns .view_btn[data-view=list]:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M6.75 2.25V15.75' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.75 6.75L2.25 6.75' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.75 11.25L2.25 11.25' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.25 3.15C2.25 2.65294 2.65294 2.25 3.15 2.25H14.85C15.3471 2.25 15.75 2.65294 15.75 3.15V14.85C15.75 15.3471 15.3471 15.75 14.85 15.75H3.15C2.65294 15.75 2.25 15.3471 2.25 14.85V3.15Z' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.post_filters__view_btns .view_btn[data-view=grid]:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M6.75 2.25V15.75' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.25 2.25V15.75' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.75 6.75L2.25 6.75' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M15.75 11.25L2.25 11.25' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M2.25 3.15C2.25 2.65294 2.65294 2.25 3.15 2.25H14.85C15.3471 2.25 15.75 2.65294 15.75 3.15V14.85C15.75 15.3471 15.3471 15.75 14.85 15.75H3.15C2.65294 15.75 2.25 15.3471 2.25 14.85V3.15Z' stroke='black' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.post_filters__view_btns .view_btn:hover, .post_filters__view_btns .view_btn.active {
  background: #A699FF;
}
.post_filters .show_box {
  top: 100%;
  transform: translate(-50%, 10px);
  order: 4;
}

.form_search_ajax {
  width: 100%;
  position: relative;
  order: 1;
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .form_search_ajax {
    flex: 1;
  }
}
@media screen and (min-width: 1025px) {
  .form_search_ajax {
    width: 138px;
  }
}
.form_search_ajax input[type=search] {
  height: 34px;
  border: 1px solid #110505;
  font: 600 16px "Mundial", sans-serif;
  padding: 0 25px 0 10px;
  text-transform: capitalize;
  color: #110505;
}
.form_search_ajax input[type=search]::-webkit-input-placeholder {
  color: #110505;
  opacity: 1;
  font: 600 16px "Mundial", sans-serif;
}
.form_search_ajax input[type=search]:-moz-placeholder {
  color: #110505;
  opacity: 1;
  font: 600 16px "Mundial", sans-serif;
}
.form_search_ajax input[type=search]::-moz-placeholder {
  color: #110505;
  opacity: 1;
  font: 600 16px "Mundial", sans-serif;
}
.form_search_ajax input[type=search]:-ms-input-placeholder {
  color: #110505;
  opacity: 1;
  font: 600 16px "Mundial", sans-serif;
}
.form_search_ajax input[type=search]:focus, .form_search_ajax input[type=search]:focus-visible, .form_search_ajax input[type=search]:hover {
  border-color: #A699FF !important;
  outline: 0 none;
}
.form_search_ajax button {
  transition: all 0.3s ease;
  position: absolute;
  right: 10px;
  height: 12px;
  width: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6.46783 7.16998C6.60984 7.02797 6.84003 7.02797 6.98204 7.16998L7.40107 7.58902C7.73866 7.45195 8.14006 7.52041 8.41386 7.79427L10.8372 10.2183C11.2019 10.5832 11.2019 11.1744 10.8372 11.5393C10.4722 11.9043 9.88034 11.9043 9.51542 11.5393L7.09212 9.1153C6.81866 8.8416 6.75008 8.44058 6.88687 8.10322L6.46783 7.68419C6.32583 7.54218 6.32583 7.31199 6.46783 7.16998ZM7.89965 8.30848C7.81873 8.22754 7.68726 8.22755 7.60633 8.30848L7.58005 8.34115C7.52713 8.42146 7.53582 8.53032 7.60633 8.60109L10.0296 11.0251C10.1105 11.106 10.242 11.106 10.3229 11.0251C10.4037 10.9442 10.4037 10.8134 10.3229 10.7325L7.89965 8.30848Z' fill='%23110505'/%3E%3Cpath d='M3.13266 1.00331C4.5099 0.634276 5.97956 1.02776 6.98777 2.03598C7.99592 3.04419 8.38946 4.51389 8.02044 5.89109C7.65138 7.26818 6.57579 8.34376 5.19871 8.71282C3.8215 9.08185 2.35181 8.6883 1.3436 7.68015C0.335381 6.67194 -0.0581073 5.20229 0.310924 3.82504C0.679969 2.44786 1.75547 1.37235 3.13266 1.00331ZM6.47357 2.55018C5.64908 1.7257 4.44714 1.40394 3.32087 1.70572C2.19466 2.00752 1.31513 2.88704 1.01334 4.01325C0.711556 5.13952 1.03331 6.34146 1.8578 7.16595C2.68228 7.99037 3.88427 8.31218 5.0105 8.01041C6.13661 7.70859 7.01621 6.82899 7.31803 5.70288C7.6198 4.57665 7.29799 3.37467 6.47357 2.55018Z' fill='%23110505'/%3E%3C/svg%3E");
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
.form_search_ajax button:active {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6.46783 7.16998C6.60984 7.02797 6.84003 7.02797 6.98204 7.16998L7.40107 7.58902C7.73866 7.45195 8.14006 7.52041 8.41386 7.79427L10.8372 10.2183C11.2019 10.5832 11.2019 11.1744 10.8372 11.5393C10.4722 11.9043 9.88034 11.9043 9.51542 11.5393L7.09212 9.1153C6.81866 8.8416 6.75008 8.44058 6.88687 8.10322L6.46783 7.68419C6.32583 7.54218 6.32583 7.31199 6.46783 7.16998ZM7.89965 8.30848C7.81873 8.22754 7.68726 8.22755 7.60633 8.30848L7.58005 8.34115C7.52713 8.42146 7.53582 8.53032 7.60633 8.60109L10.0296 11.0251C10.1105 11.106 10.242 11.106 10.3229 11.0251C10.4037 10.9442 10.4037 10.8134 10.3229 10.7325L7.89965 8.30848Z' fill='%23A699FF'/%3E%3Cpath d='M3.13266 1.00331C4.5099 0.634276 5.97956 1.02776 6.98777 2.03598C7.99592 3.04419 8.38946 4.51389 8.02044 5.89109C7.65138 7.26818 6.57579 8.34376 5.19871 8.71282C3.8215 9.08185 2.35181 8.6883 1.3436 7.68015C0.335381 6.67194 -0.0581073 5.20229 0.310924 3.82504C0.679969 2.44786 1.75547 1.37235 3.13266 1.00331ZM6.47357 2.55018C5.64908 1.7257 4.44714 1.40394 3.32087 1.70572C2.19466 2.00752 1.31513 2.88704 1.01334 4.01325C0.711556 5.13952 1.03331 6.34146 1.8578 7.16595C2.68228 7.99037 3.88427 8.31218 5.0105 8.01041C6.13661 7.70859 7.01621 6.82899 7.31803 5.70288C7.6198 4.57665 7.29799 3.37467 6.47357 2.55018Z' fill='%23A699FF'/%3E%3C/svg%3E");
}
@media screen and (min-width: 1025px) {
  .form_search_ajax button:hover {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M6.46783 7.16998C6.60984 7.02797 6.84003 7.02797 6.98204 7.16998L7.40107 7.58902C7.73866 7.45195 8.14006 7.52041 8.41386 7.79427L10.8372 10.2183C11.2019 10.5832 11.2019 11.1744 10.8372 11.5393C10.4722 11.9043 9.88034 11.9043 9.51542 11.5393L7.09212 9.1153C6.81866 8.8416 6.75008 8.44058 6.88687 8.10322L6.46783 7.68419C6.32583 7.54218 6.32583 7.31199 6.46783 7.16998ZM7.89965 8.30848C7.81873 8.22754 7.68726 8.22755 7.60633 8.30848L7.58005 8.34115C7.52713 8.42146 7.53582 8.53032 7.60633 8.60109L10.0296 11.0251C10.1105 11.106 10.242 11.106 10.3229 11.0251C10.4037 10.9442 10.4037 10.8134 10.3229 10.7325L7.89965 8.30848Z' fill='%23A699FF'/%3E%3Cpath d='M3.13266 1.00331C4.5099 0.634276 5.97956 1.02776 6.98777 2.03598C7.99592 3.04419 8.38946 4.51389 8.02044 5.89109C7.65138 7.26818 6.57579 8.34376 5.19871 8.71282C3.8215 9.08185 2.35181 8.6883 1.3436 7.68015C0.335381 6.67194 -0.0581073 5.20229 0.310924 3.82504C0.679969 2.44786 1.75547 1.37235 3.13266 1.00331ZM6.47357 2.55018C5.64908 1.7257 4.44714 1.40394 3.32087 1.70572C2.19466 2.00752 1.31513 2.88704 1.01334 4.01325C0.711556 5.13952 1.03331 6.34146 1.8578 7.16595C2.68228 7.99037 3.88427 8.31218 5.0105 8.01041C6.13661 7.70859 7.01621 6.82899 7.31803 5.70288C7.6198 4.57665 7.29799 3.37467 6.47357 2.55018Z' fill='%23A699FF'/%3E%3C/svg%3E");
  }
}

.clear_filters {
  background-color: #A699FF;
  line-height: 1;
  padding: 8px 10px;
}
@media screen and (max-width: 767px) {
  .clear_filters {
    justify-content: center;
    flex: 1;
  }
}

.posts_wrapper__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .posts_wrapper__top {
    gap: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .posts_wrapper__top {
    margin-bottom: 60px;
  }
}
.posts_wrapper__top h2 {
  margin-bottom: 0;
}

.all-posts__top,
.all-terms__top {
  margin-bottom: 60px;
}
@media screen and (min-width: 1025px) {
  .all-posts__top,
  .all-terms__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-top: 10px;
    border-top: 1px solid #110505;
  }
}
.all-posts__top h2.section-title,
.all-terms__top h2.section-title {
  margin-bottom: 20px !important;
}
@media screen and (min-width: 1025px) {
  .all-posts__top h2.section-title,
  .all-terms__top h2.section-title {
    margin-bottom: 0 !important;
    padding-top: 0;
    border-top: none;
  }
}

/*# sourceMappingURL=all-posts.css.map */
