@-webkit-keyframes three-quarters-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes three-quarters-loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading::before {
  content: "";
  display: block;
  border: 4px solid #38e;
  border-right-color: transparent;
  border-radius: 16px;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-indent: -9999px;
  width: 32px;
  height: 32px;
  -webkit-animation: three-quarters-loader 1250ms infinite linear;
          animation: three-quarters-loader 1250ms infinite linear;
  margin: 64px auto;
}

.search-result_pagenation {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  margin-bottom: 32px;
}
.search-result_pagenation__prev, .search-result_pagenation__next {
  display: flex;
  align-items: center;
  position: relative;
  height: 40px;
  border: 1px solid #d9e3ee;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
  color: #01478f;
  white-space: nowrap;
  transition: background-color 0.2s ease-out;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .search-result_pagenation__prev, .search-result_pagenation__next {
    height: 32px;
  }
}
.search-result_pagenation__prev::before, .search-result_pagenation__next::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -4px;
  width: 6px;
  height: 6px;
  transition: transform 0.2s ease-out;
  transform: rotate(45deg) translate3d(0, 0, 0);
}
.search-result_pagenation__prev:hover, .search-result_pagenation__prev:focus, .search-result_pagenation__next:hover, .search-result_pagenation__next:focus {
  background-color: #f2f5f9;
}
.search-result_pagenation__prev.hide, .search-result_pagenation__next.hide {
  display: none;
}
.search-result_pagenation__prev {
  margin-right: 5px;
  padding: 0 12px 0 28px;
}
.search-result_pagenation__prev::before {
  left: 14px;
  border-bottom: 2px solid #01478f;
  border-left: 2px solid #01478f;
}
.search-result_pagenation__prev:hover::before {
  transform: rotate(45deg) translate3d(-4px, 4px, 0);
}
@media screen and (max-width: 767px) {
  .search-result_pagenation__prev {
    margin-right: 3px;
    padding: 0 8px 0 22px;
  }
  .search-result_pagenation__prev::before {
    left: 12px;
  }
}
.search-result_pagenation__next {
  margin-left: 5px;
  padding: 0 28px 0 12px;
}
.search-result_pagenation__next::before {
  right: 14px;
  border-top: 2px solid #01478f;
  border-right: 2px solid #01478f;
}
.search-result_pagenation__next:hover::before {
  transform: rotate(45deg) translate3d(4px, -4px, 0);
}
@media screen and (max-width: 767px) {
  .search-result_pagenation__next {
    margin-left: 3px;
    padding: 0 22px 0 8px;
  }
  .search-result_pagenation__next::before {
    right: 12px;
  }
}
.search-result_pagenation__list {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .search-result_pagenation__list {
    margin-top: -8px;
    flex-wrap: nowrap;
    justify-content: center;
  }
}
.search-result_pagenation__list-item {
  position: relative;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 1px solid #d9e3ee;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  transition: background-color 0.2s ease-out;
  margin: 0 5px;
}
@media screen and (max-width: 767px) {
  .search-result_pagenation__list-item {
    margin: 8px 3px 0;
    width: 32px;
    height: 32px;
  }
}
.search-result_pagenation__list-item:hover, .search-result_pagenation__list-item:focus {
  background-color: #f2f5f9;
}
.search-result_pagenation__list-item > a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #01478f;
}
.search-result_pagenation__list-item.active {
  border-color: #01478f;
  background-color: #01478f;
}
.search-result_pagenation__list-item.active > a {
  color: #fff;
}
.search-result_head {
  display: flex;
  margin-bottom: 32px;
  padding-right: 15px;
  padding-left: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .search-result_head {
    flex-direction: column;
    margin-bottom: 24px;
  }
}
.search-result_head__counter {
  font-size: 2rem;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .search-result_head__counter {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
.search-result_head__counter-num {
  margin-left: 10px;
}
.search-result_head__count {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.search-result_head__count-label {
  position: relative;
  padding-right: 22px;
}
.search-result_head__count-label::before, .search-result_head__count-label::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 2px;
  background-color: #333;
}
.search-result_head__count-label::before {
  top: 11px;
  right: 10px;
}
.search-result_head__count-label::after {
  top: 17px;
  right: 10px;
}
.search-result_head__count-list-wrapper {
  margin-left: 0;
}
.search-result_head__count-list {
  display: flex;
  flex-flow: row nowrap;
  margin-bottom: 0;
}
.search-result_head__count-list-item > a {
  color: #008dcb;
}
.search-result_head__count-list-item:not(.active) > a {
  text-decoration: underline;
}
.search-result_head__count-list-item:nth-child(n+2) {
  margin-left: 10px;
}
.search-result_head__count-list-item.active > a {
  color: #01478f;
  text-decoration: none;
  font-weight: 700;
}
.search-result_content {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .search-result_content {
    margin-bottom: 24px;
  }
}
.search-result_content__list {
  display: flex;
  flex-flow: column nowrap;
  border-top: 1px solid #d5e0eb;
}
.search-result_content__list-item {
  cursor: pointer;
  border-bottom: 1px solid #d5e0eb;
}
.search-result_content__list-item > a {
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  display: block;
  padding: 18px 30px 18px 10px;
  width: 100%;
  transition: background-color 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  .search-result_content__list-item > a {
    padding: 16px 30px 16px 10px;
  }
}
.search-result_content__list-item > a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #01478f;
  border-right: 2px solid #01478f;
  transition: transform 0.2s ease-out;
  transform: rotate(45deg) translate3d(0, 0, 0);
}
.search-result_content__list-item > a:hover, .search-result_content__list-item > a:focus {
  background-color: #e5f4ff;
}
.search-result_content__list-item > a:hover::before, .search-result_content__list-item > a:focus::before {
  transform: rotate(45deg) translate3d(4px, -4px, 0);
}
.search-result_content__list-item-title {
  display: block;
  margin-bottom: 5px;
  width: 100%;
  color: #008dcb;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .search-result_content__list-item-title {
    font-size: 1.6rem;
    line-height: 1.71;
  }
}
.search-result_content__list-item-text {
  color: #333;
  font-size: 1.4rem;
}
.search-result_content__list-item-text-highlight {
  display: inline;
  font-weight: 700;
  padding: 0 4px;
  margin: 0 2px;
  color: #01478f;
  background-color: #e5f4ff;
}
.search-result_search {
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  margin-bottom: 32px;
  max-width: 1080px;
  width: 100%;
  border-radius: 8px;
  background-color: #e5f4ff;
  min-height: 73px;
}
@media screen and (max-width: 767px) {
  .search-result_search {
    min-height: 80px;
    background-color: transparent;
  }
}

.main_title {
  margin-bottom: 48px;
  border-bottom: 1px solid #d9e3ee;
  background-color: #e9f6ff;
}
.main_title-inner {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 24px 40px;
  max-width: 1366px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .main_title-inner {
    padding: 32px 10px 18px;
  }
}
.main_title-inner > h1 {
  font-weight: 700;
  font-size: 3.6rem;
}
@media screen and (max-width: 767px) {
  .main_title-inner > h1 {
    font-size: 2.2rem;
  }
}

.container {
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}
