.header__utils-search[js-open-site-search] {
  visibility: visible !important;
  cursor: pointer;
  margin-left: 0.4rem;
}

.header__utils-icons a.header__utils-icon:first-of-type {
  margin-left: 0.4rem;
}

.header__utils-search[js-open-site-search] svg path {
  fill: #fff !important;
}

.header__utils-search[js-open-site-search]:hover svg path,
.header__utils-search[js-open-site-search]:focus svg path {
  fill: #fff !important;
  stroke: none !important;
}

.header__utils-search[js-open-site-search]:hover,
.header__utils-search[js-open-site-search]:focus {
  outline: none;
}

.apollo-site-search {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.24s ease, visibility 0.24s ease;
  -o-transition: opacity 0.24s ease, visibility 0.24s ease;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.apollo-site-search.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.apollo-site-search__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  -webkit-transition: opacity 0.24s ease;
  -o-transition: opacity 0.24s ease;
  transition: opacity 0.24s ease;
}

.apollo-site-search.is-open .apollo-site-search__overlay {
  opacity: 1;
}

.apollo-site-search__dialog {
  position: relative;
  margin: 5vh auto;
  width: min(1100px, 100% - 32px);
  max-height: 90vh;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  -webkit-transform: translateY(20px) scale(0.985);
  -ms-transform: translateY(20px) scale(0.985);
  transform: translateY(20px) scale(0.985);
  -webkit-transition: opacity 0.24s ease, -webkit-transform 0.24s ease;
  transition: opacity 0.24s ease, -webkit-transform 0.24s ease;
  -o-transition: opacity 0.24s ease, transform 0.24s ease;
  transition: opacity 0.24s ease, transform 0.24s ease;
  transition: opacity 0.24s ease, transform 0.24s ease, -webkit-transform 0.24s ease;
}

.apollo-site-search.is-open .apollo-site-search__dialog {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
  -ms-transform: translateY(0) scale(1);
  transform: translateY(0) scale(1);
}

.apollo-site-search__close {
  position: absolute;
  right: 24px;
  top: 24px;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  -webkit-transition: border-color 0.2s ease;
  -o-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}

.apollo-site-search__close::before,
.apollo-site-search__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 0.3rem;
  width: 2.2rem;
  background: #1f1f1f;
}

.apollo-site-search__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.apollo-site-search__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.apollo-site-search__close:hover,
.apollo-site-search__close:focus {
  border-color: #ff6424;
  outline: none;
}

.apollo-site-search__form {
  padding: 48px 24px 18px;
  border-bottom: 1px solid #e9e9e9;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#fff));
  background: -o-linear-gradient(top, #f8f8f8 0%, #fff 100%);
  background: linear-gradient(180deg, #f8f8f8 0%, #fff 100%);
}

.apollo-site-search__label {
  display: block;
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 500;
  color: #111;
}

.apollo-site-search__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.apollo-site-search__input-wrap {
  position: relative;
  width: 100%;
}

.apollo-site-search__input {
  width: 100%;
  height: 52px;
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  padding: 0 46px 0 16px;
  font-size: 16px;
  color: #111 !important;
  background: #fff !important;
  caret-color: #111;
}

.apollo-site-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

.apollo-site-search__input::-webkit-input-placeholder {
  color: #7a7a7a !important;
  opacity: 1;
}

.apollo-site-search__input::-moz-placeholder {
  color: #7a7a7a !important;
  opacity: 1;
}

.apollo-site-search__input:-ms-input-placeholder {
  color: #7a7a7a !important;
  opacity: 1;
}

.apollo-site-search__input::-ms-input-placeholder {
  color: #7a7a7a !important;
  opacity: 1;
}

.apollo-site-search__input::placeholder {
  color: #7a7a7a !important;
  opacity: 1;
}

.apollo-site-search__input:focus {
  outline: none;
  border-color: #111;
}

.apollo-site-search__clear {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
  -o-transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}

.apollo-site-search__clear.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.apollo-site-search__clear svg {
  display: block;
}

.apollo-site-search__clear:hover,
.apollo-site-search__clear:focus {
  background: rgba(17, 17, 17, 0.09);
  border-radius: 50%;
  -webkit-transform: translateY(-50%) scale(1.06);
  -ms-transform: translateY(-50%) scale(1.06);
  transform: translateY(-50%) scale(1.06);
  outline: none;
}

.apollo-site-search__submit {
  height: 52px;
  min-width: 128px;
  border: 0;
  border-radius: 12px;
  background: #111;
  color: #fff;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.apollo-site-search__submit:hover {
  background: #ff6424;
}

.apollo-site-search__results {
  padding: 0;
  overflow: hidden;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  min-height: 0;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.apollo-site-search.has-query .apollo-site-search__results {
  display: block;
}

.apollo-site-search.has-results .apollo-site-search__results {
  padding: 10px 14px 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-height: none;
  overflow: auto;
  opacity: 1;
  visibility: visible;
}

#apollo-site-search-results {
  width: 100%;
  min-height: 100%;
}

.apollo-site-search .gsc-results-wrapper-overlay,
.apollo-site-search .gsc-results-wrapper-visible {
  display: block !important;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  overflow: visible !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  -webkit-animation: none !important;
  animation: none !important;
  -webkit-transition: opacity 0.2s ease !important;
  -o-transition: opacity 0.2s ease !important;
  transition: opacity 0.2s ease !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

.apollo-site-search #apollo-site-search-results .gsc-resultsbox-visible,
.apollo-site-search #apollo-site-search-results .gsc-resultsRoot {
  display: block !important;
  position: static !important;
  height: auto !important;
  max-height: none !important;
  min-height: 1px !important;
  overflow: visible !important;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  -webkit-animation: none !important;
  animation: none !important;
  -webkit-transition: opacity 0.2s ease !important;
  -o-transition: opacity 0.2s ease !important;
  transition: opacity 0.2s ease !important;
}

.apollo-site-search .gsc-modal-background-image {
  display: none !important;
}

.apollo-site-search .gsc-control-cse,
.apollo-site-search .gsc-control-cse-en,
.apollo-site-search .gsc-results-wrapper-visible {
  border: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

.apollo-site-search .gsc-wrapper,
.apollo-site-search .gsc-above-wrapper-area {
  width: 100% !important;
  max-width: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 0 !important;
  background: transparent !important;
}

.apollo-site-search .gsc-above-wrapper-area {
  display: none !important;
}

.apollo-site-search .gsc-result-info {
  padding-left: 0 !important;
}

.apollo-site-search .gsc-orderby-container {
  padding-right: 0 !important;
}

.apollo-site-search .gsc-result {
  border: 1px solid #ececec !important;
  border-radius: 14px;
  margin: 0 0 12px !important;
  padding: 14px 16px !important;
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  -o-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.apollo-site-search .gsc-result:hover {
  border-color: #ff6424 !important;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.apollo-site-search .gs-result .gs-title,
.apollo-site-search .gs-result .gs-title * {
  text-decoration: none !important;
}

.apollo-site-search .gs-title,
.apollo-site-search .gs-title b {
  font-size: 18px !important;
  line-height: 1.35 !important;
  color: #111 !important;
}

.apollo-site-search .gs-bidi-start-align.gs-snippet,
.apollo-site-search .gs-bidi-start-align.gs-visibleUrl,
.apollo-site-search .gs-snippet {
  font-size: 14px !important;
  line-height: 1.55 !important;
  color: #4a4a4a !important;
}

.apollo-site-search .gs-visibleUrl,
.apollo-site-search .gs-visibleUrl b {
  color: #0d7f4f !important;
}

.apollo-site-search .gs-title .gs-visibleUrl,
.apollo-site-search .gs-title .gs-visibleUrl-short {
  display: none !important;
}

.apollo-site-search .gsc-results .gsc-cursor-box {
  margin: 16px 0 0;
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.apollo-site-search .gsc-cursor {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  gap: 6px !important;
}

.apollo-site-search .gsc-cursor-page {
  min-width: 34px;
  height: 34px;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  margin: 0 !important;
  color: #111 !important;
  text-decoration: none !important;
  background: #fff !important;
  cursor: pointer;
  -webkit-transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  -o-transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.apollo-site-search .gsc-cursor-page:hover,
.apollo-site-search .gsc-cursor-page:focus {
  border-color: #ff6424 !important;
  color: #ff6424 !important;
  background: rgba(255, 100, 36, 0.07) !important;
  outline: none;
}

.apollo-site-search .gsc-cursor-current-page,
.apollo-site-search .gsc-cursor-current-page:hover,
.apollo-site-search .gsc-cursor-current-page:focus {
  border-color: #111 !important;
  background: #111 !important;
  color: #fff !important;
  cursor: default;
}

.apollo-site-search .gsc-cursor-next-page,
.apollo-site-search .gsc-cursor-container-next,
.apollo-site-search .gsc-cursor-container-previous {
  min-width: 34px;
  height: 34px;
  border: 1px solid #ddd !important;
  border-radius: 10px !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  padding: 0 10px !important;
  color: #111 !important;
  background: #fff !important;
  cursor: pointer;
  font-size: 14px !important;
  text-decoration: none !important;
  -webkit-transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  -o-transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.apollo-site-search .gsc-cursor-next-page:hover,
.apollo-site-search .gsc-cursor-next-page:focus,
.apollo-site-search .gsc-cursor-container-next:hover,
.apollo-site-search .gsc-cursor-container-next:focus,
.apollo-site-search .gsc-cursor-container-previous:hover,
.apollo-site-search .gsc-cursor-container-previous:focus {
  border-color: #ff6424 !important;
  color: #ff6424 !important;
  background: rgba(255, 100, 36, 0.07) !important;
  outline: none;
}

.apollo-site-search .gsc-cursor-container-next,
.apollo-site-search .gsc-cursor-container-previous {
  padding: 0 !important;
  min-width: 34px;
}

.apollo-site-search .gsc-cursor {
  border: 0 !important;
  background: transparent !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.apollo-site-search .gsc-cursor-container-previous:empty,
.apollo-site-search .gsc-cursor-container-next:empty {
  display: none !important;
}

.apollo-site-search .gsc-cursor-chevron {
  fill: currentColor;
  pointer-events: none;
}

.apollo-site-search .gsc-cursor-numbered-page,
.apollo-site-search .gsc-cursor-next-page {
  display: none !important;
}

.apollo-site-search .gcsc-more-maybe-branding-root,
.apollo-site-search .gcsc-find-more-on-google-root,
.apollo-site-search .gsc-results-close-btn,
.apollo-site-search .gsc-results-close-btn-visible,
.apollo-site-search .gsc-webResult-divider {
  display: none !important;
}

body.apollo-site-search-open {
  overflow: hidden;
}

.header__mobile-search-bar {
  display: none;
}

@media (max-width: 1023px) {
  .header__utils-search[js-open-site-search] {
    display: none !important;
  }

  .header__main {
    padding-top: 0;
  }

  .header__mobile-search-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 1.6rem 0;
    height: 44px;
    min-height: 44px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    cursor: pointer;
    -webkit-transition: border-color 0.18s ease, background-color 0.18s ease;
    -o-transition: border-color 0.18s ease, background-color 0.18s ease;
    transition: border-color 0.18s ease, background-color 0.18s ease;
  }

  .header__mobile-search-bar:hover,
  .header__mobile-search-bar:focus {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.13);
    outline: none;
  }

  .header__mobile-search-bar svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .header__mobile-search-bar-placeholder {
    font-size: 14px;
    color: #aaa;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
}

@media (max-width: 767px) {
  .apollo-site-search__dialog {
    width: calc(100% - 16px);
    margin: 2vh auto;
    max-height: 96vh;
    border-radius: 14px;
  }

  .apollo-site-search__form,
  .apollo-site-search__results {
    padding-left: 14px;
    padding-right: 14px;
  }

  .apollo-site-search__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .apollo-site-search__submit {
    width: 100%;
    min-width: 0;
  }

  .apollo-site-search .gsc-result {
    padding: 12px !important;
    border-radius: 12px;
  }

  .apollo-site-search .gs-title,
  .apollo-site-search .gs-title b {
    font-size: 16px !important;
  }
}