:root {
  --nav-height: 6rem;
  --footer-height: 5rem;
}
@media only screen and (max-width: 1024px) {
  :root {
    --nav-height: 4rem;
    --footer-height: 12rem;
  }
}

.search-wrap {
  padding: 5rem 0;
}
.search-wrap .search-block {
  border: 1px solid #999999;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  padding: 1.5rem;
  box-shadow: 0 8px 5px -5px rgba(0, 0, 0, 0.25);
}
.search-wrap .search-block .search-title {
  position: relative;
  font-size: 1.375rem;
  line-height: 135%;
  padding: 1rem;
  border-bottom: 1px solid #999999;
}
.search-wrap .search-block .search-title span {
  color: #07B53B;
}
.search-wrap .search-block .search-title .search-close {
  position: absolute;
  width: 1rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.search-wrap .search-block .search-type {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 1rem;
}
.search-wrap .search-block .search-type a {
  display: block;
  padding: 0.25rem 1.5rem;
  background: #ebebeb;
  border: 1px solid #000;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  transition: border 0.5s, color 0.5s, background 0.5s;
}
.search-wrap .search-block .search-type a.active {
  color: #FFF;
  border-color: #07B53B;
  background: #07B53B;
}
.search-wrap .search-block .search-result a {
  transition: color 0.5s;
}
.search-wrap .search-block .search-result p {
  padding: 0.5rem 1rem;
  font-weight: 500;
}
.search-wrap .search-block .search-result .highlight {
  color: #07B53B;
}
.search-wrap .search-block .search-none {
  font-size: 1.375rem;
  line-height: 135%;
  font-weight: 500;
  text-align: center;
  margin-top: 1.5rem;
}
.search-wrap .search-block .search-none a {
  font-weight: normal;
  font-size: 1rem;
  color: #999999;
  transition: color 0.5s;
}
.search-wrap .search-block .search-more {
  display: inline-block;
  margin-top: 1.5rem;
  color: #999999;
  transition: color 0.5s;
}

@media only screen and (min-width: 1025px) {
  .search-wrap .search-block .search-type a:hover {
    color: #FFF;
    border-color: #07B53B;
    background: #07B53B;
  }
  .search-wrap .search-block .search-result a:hover {
    color: #07B53B;
  }
  .search-wrap .search-block .search-none a:hover {
    color: #07B53B;
  }
  .search-wrap .search-block .search-more:hover {
    color: #07B53B;
  }
}
@media only screen and (max-width: 1024px) {
  .search-wrap {
    padding: 3rem 0;
  }
  .search-wrap .search-block {
    border-radius: 0;
    -webkit-border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: 0;
  }
  .search-wrap .search-block .search-type {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
  }
  .search-wrap .search-block .search-result p {
    padding: 0.75rem 1rem;
  }
  .search-wrap .search-block .search-none {
    margin-top: 3rem;
  }
}/*# sourceMappingURL=search.css.map */