.search-box {
  width: 100%;
  position: relative;
  margin: 0 auto;
  padding-bottom: 2rem;
}

@media screen and (min-width: 75em) { /* 1200px */
  .search-box {
    margin: -250px auto 0;
    padding-bottom: 5rem;
    width: 520px;
  }
}

.search-box p {
  margin-bottom: 0 !important;
}

.search-box .search-icon {
  position: absolute;
  padding-top: 3px;
  left: 1rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
}

.search-box .form-control::placeholder {
  color: #aab3c1;
  font-family: Nunito,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
}

.search-box .form-control:focus {
  color: #2d3440;
  background-color: #fff;
  border-color: #67b8fc;
  outline: 0;
  -webkit-box-shadow: 0 0 0 .2rem rgba(5,123,222,.25);
  box-shadow: 0 0 0 .2rem rgba(5,123,222,.25);
}

.search-box .form-control {
  background: #fbfdff;
  width: 100%;
  height: calc(1.45em + 1rem + 2px);
  padding: .5rem 1rem;
  padding-left: 2.5rem;
  font-size: 1rem;
  line-height: 1.45;
  border: 1px solid #EBEDF0;
  border-radius: .1875rem;
  -webkit-transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  -o-transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}

.search-box.show .close {
  display: inline-block;
}

.search-box .close:focus {
  outline: none;
}

.search-box .close {
  display: none;
  padding: .25rem;
  position: absolute;
  top: 49%;
  right: 0;
  background-color: transparent;
  color: #65748e;
  margin-right: .5rem;
  font-size: 1.333rem;
  font-weight: 400;
  box-shadow: none;
  -webkit-box-shadow: none;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu {
  width: 100%;
  position: absolute;
  color: #65748e;
  text-align: left;
  list-style: none;
  display: none;
  background-color: #fff;
  border: 1px solid #d1d5dd;
  border-radius: .625rem;
  font-size: 1rem;
  margin-top: .5rem;
  box-shadow: 0 1px 1px 0 rgba(90,122,190,.1),0 10px 20px 0 rgba(90,122,190,.2);
  -webkit-box-shadow: 0 1px 1px 0 rgba(90,122,190,.1),0 10px 20px 0 rgba(90,122,190,.2);
  animation: fadeIn .3s;
  -webkit-animation: fadeIn .3s;
  -o-animation: fadeIn .3s;
  z-index: 1030
}

.search-box .dropdown-menu-content {
  max-height: 25rem;
  overflow-y: auto;
  scrollbar-color: rgba(101,116,142,.3) transparent;
  scrollbar-width: thin;
  padding: 1rem 0;
}

.dropdown-item:hover {
  color: #2d3440;
  background-color: #ebedf0;
}

.dropdown-item {
  display: block;
  text-decoration: none;
  width: 100%;
  padding: 1rem 2rem;
  clear: both;
  font-weight: 400;
  color: #566379;
  white-space: initial;
  background-color: transparent;
  border: 0;
}

.dropdown-item .category {
  margin-top: 0;
  margin-bottom: .5rem !important;
  font-weight: 500;
  opacity: .85;
}

.dropdown-item .question {
  color: #475163;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.333rem;
}

.dropdown-menu .fallback {
  display: none;
  padding: 1.8rem;
}

.dropdown-menu .fallback img{
  margin-right: .75rem;
}