.context-menu {cursor: context-menu;}

<style>
.header-search {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.header-search.active {
  display: flex;
}

.header-search .relative {
  width: 100%;
  max-width: 800px;
  padding: 20px;
  position: relative;
}

.header-search_top {
  position: static !important;
  display: block;
  margin-bottom: 0;
}

.header-search-close {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  z-index: 10000;
  background: #65AE84;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search-trigger {
  cursor: pointer;
}

.header-search-trigger:hover svg {
  opacity: 0.7;
}

.header-search .hs-search-field__input {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  border: 3px solid #E8744F;
  background: white;
}

.header-search .hs-search-field__button {
  display: none;
}

.header-search .hs-search-field__label {
  display: none !important;
}

.header-search .hs-search-field__bar {
  display: block;
  width: 100%;
}

.header-search .hs-search-field__form {
  width: 100%;
}
</style>