.hdr-home-tgl .hdr-favicon-logo {
  width: 112px;
  height: 40px;
  object-fit: contain;
  display: block;
  margin: auto;
}

.scroll-srch-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 4px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.scroll-srch-wrap.is-sticky {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.scroll-srch-icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  line-height: 1;
  color: inherit;
  border-radius: 4px;
  transition: background 0.15s;
}

.scroll-srch-icon-btn:hover,
.scroll-srch-wrap.is-open .scroll-srch-icon-btn {
  background: rgba(0, 0, 0, 0.07);
}

.scroll-srch-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  transition: opacity 0.15s;
}

.scroll-srch-wrap.is-open .scroll-srch-icon-img {
  opacity: 0.6;
}

.scroll-srch-form {
  position: absolute;
  top: calc(100% + 6px);
  right: -6px;
  left: auto;
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 4px;

  background: var(--wh, #fff);
  border: 1px solid var(--de, #f0f0f0);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
  padding: 6px 6px 6px 10px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 9999;
}

.scroll-srch-wrap.is-hovered .scroll-srch-form {
  opacity: 0.55;
  transform: translateY(0);
  pointer-events: none;
}

.scroll-srch-wrap.is-open .scroll-srch-form {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.scroll-srch-form:focus-within {
  border-color: var(--pr, #b1f11e);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.13),
    0 0 0 2px rgba(177, 241, 30, 0.3);
}

.scroll-srch-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: inherit;
  color: var(--se, #191919);
  background: transparent;
  padding: 3px 6px;
  min-width: 0;
  cursor: text;
}

.scroll-srch-input::placeholder {
  color: #999;
}

.scroll-srch-input::-webkit-search-cancel-button {
  display: none;
}
.scroll-srch-input::-ms-clear {
  display: none;
}

.scroll-srch-submit {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  color: var(--se, #191919);
  border-radius: 4px;
  flex-shrink: 0;
  transition:
    background 0.15s,
    color 0.15s;
}

.scroll-srch-submit:hover {
  background: var(--pr, #b1f11e);
  color: var(--bl, #000);
}

.scroll-srch-submit .ic {
  width: 18px;
  height: 18px;
}

@media (max-width: 420px) {
  .scroll-srch-form {
    min-width: 200px;
  }
}

.scroll-srch-mobile-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  line-height: 1;
  color: inherit;
  border-radius: 4px;
  transition: background 0.15s;
}

.scroll-srch-mobile-btn:hover {
  background: rgba(0, 0, 0, 0.07);
}

@media (min-width: 1200px) {
  .scroll-srch-mobile-btn {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  #searchCollapse.sc-open {
    display: block !important;
  }
}
