.load-more-btn {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: #868686;
  font-weight: 700;
  line-height: 1;
  transition: color 0.25s;
  font-size: 14px;
}

.load-more-btn:hover {
  color: var(--color-accent);
}

.load-more-btn span,
.load-more-btn svg {
  display: block;
}

.load-more-btn svg {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}

@media screen and (min-width: 1559px) {
  .load-more-btn {
    font-size: 20px;
  }
  .load-more-btn svg {
    width: 58px;
    height: 58px;
  }
}
.search-top {
  color: var(--color-accent);
  font-size: 1.11em;
  margin-bottom: 1em;
}

.search-form {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #868686;
}

.search-form-btn {
  display: block;
  margin: 0;
  padding: 0;
  border: 0 none;
  outline: 0 none;
  cursor: pointer;
  width: 48px;
  min-width: 48px;
  height: 48px;
  background: transparent none;
  position: relative;
  color: #868686;
  transition: color 0.25s;
}

.search-form-btn:hover {
  color: var(--color-accent);
}

.search-form-btn svg {
  display: block;
  width: 50%;
  height: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

.search-input {
  display: block;
  width: 100%;
  background: transparent none;
  margin: 0;
  padding: 0;
  border: 0 none;
  outline: 0 none;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-filter-head {
  font-weight: 600;
  font-size: 0.888em;
}

.search-filter-list {
  margin-top: 1em;
}

@media screen and (min-width: 768px) {
  .search-result {
    display: flex;
  }
  .search-result-filter {
    width: 25%;
  }
  .search-result-body {
    width: 75%;
    padding-left: var(--x-pad);
  }
}
.search-filter-item:not(:first-child) {
  margin-top: 0.5em;
}

.search-result-order {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .search-result-order {
    text-align: left;
  }
}
.search-order-btn {
  display: inline-flex;
  padding: 0 24px;
  align-items: center;
  line-height: 1;
  height: 40px;
  border: 0 none;
  outline: 0 none;
  font-size: 0.777em;
  font-weight: 300;
  background-color: #000;
  transition: background-color 0.25s, color 0.25s;
}

@media screen and (min-width: 768px) {
  .search-order-btn:hover {
    background-color: var(--color-accent);
    color: #000;
  }
}
@media screen and (max-width: 767px) {
  .search-order-btn {
    background-color: transparent;
    padding: 0;
  }
}
.search-order-btn svg {
  margin-left: 8px;
}

.search-order-btn[data-order=desc] #order_arrow_up,
.search-order-btn[data-order=asc] #order_arrow_down {
  opacity: 0;
}

.search-order-btn[data-order=desc] #order_arrow_down {
  transform: translate(25%, 0);
}

.search-order-btn[data-order=asc] #order_arrow_up {
  transform: translate(-25%, 0);
}

.search-result-list {
  margin-top: var(--x-pad);
}

.search-result-item:not(:first-child) {
  margin-top: 1.6em;
}

@media screen and (min-width: 768px) {
  .search-form-query {
    flex: 1 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .search-filter-item {
    display: inline-block;
    margin-right: 16px;
  }
  .search-result-order {
    margin-top: var(--x-pad);
  }
}
.popup-search .search-form {
  border-width: 0 0 1px;
}

.search-result-filter .form-checkbox-icon::before {
  background-color: var(--color-accent);
}

.page-template[data-loading="1"] .fs-base {
  position: relative;
  opacity: 0.5;
  cursor: wait;
}

.page-template[data-loading="1"] .fs-base::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.01);
}

.search-result-card {
  line-height: 1.3;
}

.search-result-card-info {
  font-size: 12px;
  color: #BABABA;
  margin-bottom: 0.5em;
}

.search-result-card-title {
  font-size: 1em;
  font-weight: 300;
  color: #BABABA;
  transition: color 0.25s;
}

.search-result-card-title span {
  color: var(--color-accent);
  font-weight: 500;
}

.search-result-card-title:hover {
  color: #fff;
}

.search-result-card-desc {
  margin-top: 0.5em;
  font-size: 14px;
  color: #868686;
}

.search-result-card-desc span {
  color: #fff;
}

.search-result-card-cats {
  margin-top: 0.5em;
  font-size: 14px;
}
