.search-bar {
  position: relative;
  display: table;
  border-collapse: separate;
  line-height: 1;
  color: #ffffff;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.search-bar .search-input {
  width: 281px;
  display: table-cell;
  position: relative;
  z-index: 2;
  height: 31px;
  font-size: 13px;
  vertical-align: middle;
  color: inherit;
  border: none;
  background-color: #2f333a;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 2px 0 0 2px;
  -moz-border-radius: 2px 0 0 2px;
  border-radius: 2px 0 0 2px;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.search-bar .search-input:focus {
  background: #ffffff;
  color: #2f333a;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.search-bar .search-input:hover {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.search-bar .search-submit {
  display: table-cell;
  -webkit-border-radius: 0 2px 2px 0;
  -moz-border-radius: 0 2px 2px 0;
  border-radius: 0 2px 2px 0;
}
.search-bar .search-submit:focus,
.search-bar .search-submit:hover {
  color: #fff;
  background-color: #343840;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.search-bar-inverted {
  color: rgba(47, 51, 58, 0.65);
}
.search-bar-inverted .search-input {
  background-color: #ffffff;
  color: rgba(47, 51, 58, 0.65);
}
.search-bar-dark-grey {
  color: #ffffff;
}
.search-bar-dark-grey .search-input {
  background-color: #363A40;
  color: #ffffff;
}
.search-bar-dark-grey .search-input:hover,
.search-bar-dark-grey .search-input:focus,
.search-bar-dark-grey .search-input:active,
.search-bar-dark-grey .search-input:visited {
  background-color: #363A40;
  color: #ffffff;
}
.search-bar-centered {
  text-align: center;
}
.search-bar-centered .search-bar {
  display: inline-table;
}
