.search-bar input[type="text"] {
  font-family: "NationalBook";
}
.search-bar {
  position: absolute;
  z-index:9;
}
.search-bar input[type="text"] {
  height: 34px !important;
  box-shadow: none !important;
  transition: all 0s ease !important;
}
.search-bar input[type="text"]:focus {
  transition: all 0s ease !important;
  box-shadow: inset 2px 2px #8eb5f0, inset -2px -2px #8eb5f0 !important;
}
.search-bar .hs-form {
  margin-top: 0;
}
.search-bar input[type="text"] {
  margin:0;
  border: none;
  padding: 5px;
  font-size: 20px;
  font-weight: normal;
  float:right;
}
.search-bar .hs-button.primary {
  padding: 5px 5px 4px 5px;
  font-size: 20px;
  background: #fff;
  border: none;
  margin-top: 0;
  min-width: 0;
  float:right;
  color: #584528;
  line-height: 25px;
  border-radius: 0px;
}
.search-bar .hs-button.primary:hover {
  background: #584528;
  color: #ffffff;
}
@media screen and (min-width: 768px) and (min-height: 450px) {
  .search-bar {
    width:250px !important;
    top: -90px;
    right: 0px;
  }
  .search-bar input[type="text"] {
    width:219px;
  }
}
@media all and (max-width: 767px), all and (max-height: 449px) {
  .search-bar {
    top: 16px;
    left: -1px;
    width: 100% !important;
  }
  .search-bar input[type="text"] {
    width: calc(100% - 30px);
  }
}