.header .hamburger-button {
  margin-left: 12px;
}

.search-block {
  margin-left: 40px;
}
.search-block .hidden {
  display: none;
}

#search-open {
  width: 42px;
  height: 42px;
  border: solid 1px #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#search-open::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/ico_search.png) no-repeat center/100% auto;
}

#search-panel {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 101;
  animation: show 0.1s;
}
#search-panel #search-close {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 1;
}
#search-panel #search-close::before, #search-panel #search-close::after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 18px;
  left: 13px;
}
#search-panel #search-close::before {
  transform: rotate(45deg);
}
#search-panel #search-close::after {
  transform: rotate(-45deg);
}

@keyframes show {
  0% {
    display: none;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
#search-panel.active + #search-overlay {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
}

#search-overlay {
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: 0.65;
  display: none;
}

.header_search_block {
  background: #fff;
  padding: 36px 0;
}

.search-form-style {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 488px;
  margin: 0 auto;
  border: solid 1px #000;
  padding: 10px 12px;
  border-radius: 30px;
}
.search-form-style .form-text {
  border: 0;
}

.search-btn {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
}
.search-btn::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../img/ico_search.png) no-repeat center/100% auto;
  position: absolute;
  top: calc((100% - 18px) / 2);
  left: 2px;
}

.search-archive .topics-article .item .thumbnail {
  aspect-ratio: 330/185;
}
.search-archive .topics-article .item .thumbnail img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 420px) {
  .login-btn .btn-orange {
    padding: 10px 12px;
  }
  #search-panel #search-close {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .search-block {
    margin-left: 12px;
  }
  #search-open {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 959px) {
  .header_search_block {
    padding: 42px 32px;
  }
}
@media screen and (max-width: 767px) {
  .single-wrap .information .title h2 {
    font-size: 1.15rem;
  }
}