.header-search-bar {
  --header-search-bar-slide-anime-duration: 200ms;

  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  column-gap: var(--header-column-gap);
  align-items: center;
  justify-content: start;
  order: 30;
  width: 100%;
  height: 100%;
  margin-inline-start: auto;
  pointer-events: none;
  opacity: 0;
  transition:
    z-index 1ms ease var(--header-search-bar-slide-anime-duration),
    opacity var(--header-search-bar-slide-anime-duration) ease-in,
    transform var(--header-search-bar-slide-anime-duration) ease-in;
}

.header-search-bar.divider::after {
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  z-index: 4;
  height: 1px;
  content: "";
  background-color: rgba(var(--color-entry-line), 1);
}

@media (max-width: 959px) {
  .header-search-bar {
    margin-inline-start: 0;
  }
}

.header-search-bar.open {
  z-index: calc(var(--header-nav-dropdown-menu-z-index) + 1);
  pointer-events: all;
  opacity: 1;height: 100vh;
    overflow: auto;
  transition:
    opacity var(--header-search-bar-slide-anime-duration) ease-in,
    transform var(--header-search-bar-slide-anime-duration) ease-in;
}

.header-search-bar--lockscreen {
  overflow: hidden !important;
}

.header-search-bar__backdrop {
  position: fixed;
  inset-inline-start: 0;
  display: block !important;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: -1;
  /* background: rgb(0 0 0 / 40%); */
}

.header-search-bar__icon {
  box-sizing: content-box;
  display: inline-flex;
  flex-shrink: 0;
  justify-self: end;
  width: 28px;
  height: 28px;
}

@media (max-width: 959px) {
  .header-search-bar__icon {
    width: 26px;
    height: 26px;
  }
}

.header-search-bar__form {
  position: relative;
  z-index: 1; 
  gap: 4px; 
    display: flex;
        justify-content: center;
        ALIGN-ITEMS: center;
  width: 100%;
  padding: 45px 48px;
  /* background-color: rgba(var(--color-background), 1); */
}

@media (max-width: 959px) {
  .header-search-bar__form {
    padding: 10px 20px;
  }
}

.header-search-bar__form .button {
  box-sizing: content-box;
  width: 26px;
  height: 26px;
}
.header-search-bar__form .button .searhclose {
    width: 40px;
    height: 40px;
}
@media (min-width: 960px) {
    .header-search-bar__icon .searhicon{display: none;}
  .header-search-bar__form .button {
    width: 28px;
    height: 28px;
  }
}

.header-search-bar__form .field__input {  
    color: inherit;
        flex: 1 1 auto;
        max-width: 50%;
        outline: none;
        padding: 8px 27px;
        width: 60%;
        margin-right: 2rem;
        font-size: 22px;
        border: 2px solid #000;
        border-radius: 30px;
        height: 60px;
}

.header-search-bar__form .field__input::placeholder {
  opacity: 1;
}

[layout$="_wrap_menu"] .header__container-top .header-search-bar {
  order: 10;
  margin-inline-start: 0;
}

.header-search-bar__results {
  position: relative;
  z-index: 1;
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 10px 48px;
  background-color: rgba(var(--color-background), 1);
}

@media (max-width: 959px) {
    .header-search-bar__form .field__input{
    max-width: 70%;
    font-size: 13px;
    height: 35px;
    }
    .header-search-bar__results {
        padding: 0 20px;
    }
}

.header-search-bar__results.shown {
  display: flex;
}

.header-search-bar__results-loading {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.header-search-bar__results-spinner {
  width: 20px;
  height: 20px;
  color: rgba(var(--color-text), 1);
  animation: animation-circling linear 1.5s infinite;
}

.header-search-bar__results-list {
  display: block;
}

.header-search-bar__results.loading {
  align-items: center;
  justify-content: center;
}

.header-search-bar__results.loading .header-search-bar__results-loading {
  display: flex;
}

.header-search-bar__results.loading .header-search-bar__results-list {
  display: none;
}



#header-search-predicate .suggest-title1 {
    display: flex;
    align-items: center;
}

#header-search-predicate .suggest-title1 i.search-history-clear {
    padding-left: 8px;
}

#header-search-predicate>.container {
    position: relative;
    max-width: 1228px;
}

#header-search-predicate .search-history {
    margin-bottom: 80px;
    margin-top: 50px;
}

#header-search-predicate .suggest-title1 h3 {
    font-weight: 100;
    font-size: 14px;
    color: #000;
    font-family: 'Open Sans';
}

#header-search-predicate>.container ul#header-drawer__suggest-list {
    position: absolute;
    top: 0;
    background: #fff;
    box-shadow: 0 0 5px rgb(0 0 0 / 30%);
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
}
ul.shistory,ul.schotkey{margin-block-start: 1em;
    margin-block-end: 1em;}
ul.shistory li,
ul.schotkey li {
    width: auto;
    border-radius: 20px;
    padding: 6px 25px;
    background: #e0e0e0;
    display: inline-block;
    margin: 5px 2px;
}ul.shistory li a,ul.schotkey li a{color: #000;
    font-weight: normal;}
.header__search{width: 100%;
    background: #f6f6f6;
    text-align: center;
}