.search__box {
  top: 45px;
  bottom: inherit;
}

.search__box--mobile {
  padding-top: 0;
}

.search__box .form-group,
.search__box--mobile .form-group {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0 10px;  
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search__box input,
.search__box--mobile input {
  border: 0;
  box-shadow: none;
  background: none;

  font-family: "Golos Text", sans-serif;
  font-size: 14px;  
  color: #0f0f0f;

  width: 100%;
  padding-right: 10px;

}

.search__box label,
.search__box--mobile label {
  margin-bottom: 0;
  width: calc(100% - 200px);
}

.search__box button,
.search__box--mobile button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  box-shadow: none;

  font-size: 14px;  
  color: #0f0f0f;
  background: none;

  cursor: pointer;

}

.search__box button svg,
.search__box--mobile button svg {
  position: relative;
  top: 2px;
  right: -7px;
}

.search__box .form-group img {
  display: none;
}

.search__box__results {  
  display: none;
}

.search__box__results__inner {
  padding-top: 15px;
  position: relative;  
}

.search__box__results__inner:before {
  content: '';
  width: calc(100% - 20px);
  height: 1px;
  background-color: #d5d5d5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.search__box__results p {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;  
  color: #0f0f0f;
  font-weight: bold;
  margin-bottom: 0;
  padding: 0 10px;
}

.search__box__results ul {
  list-style: none;
  padding: 0;  
  padding-top: 10px;
}

.search__box__results ul li {
  /* margin-bottom: 20px; */
}
.search__box__results ul li:last-child {
  margin-bottom: 0;
}

.search__box__results ul li a {
  font-family: "Golos Text", sans-serif;
  font-size: 14px;  
  color: #0f0f0f;
  text-decoration: none;
  padding: 20px 10px;
  display: block;
  transition: all 0.3s ease;
  line-height: 20px;
}

.search__box__results ul li a:hover {
  background-color: #f9f9f9;
  color: #0c3567;
  transition: all 0.3s ease;
}

.btn__search,
.btn__search:hover {
  transition: all 0.3s;
}

.btn__search:hover span {
  color: #ea5b1e;
}

.btn__search:hover svg path {
  stroke: #ea5b1e;
}