.TopBarSearch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #111;
  width: 300px;
  height: 42px;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}

.TopBarSearch form {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.TopBarSearch-input {
  border-radius: 0;
  border: 0;
  outline: 0;
  padding: 0 10px 0 0;
  width: 100%;
  background-color: rgba(0,0,0,0);
  font-size: 15px;
  color: #fff;
  box-sizing: border-box;
  height: 42px;
  font-weight: bold;
  font-family: 'DIN Medium';
}

.TopBarSearch-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.TopBarSearch.TopBarSearch-active .TopBarSearch-input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

@media all and (max-width: 425px) {
  .TopBarSearch {
    width: 42px;
  }
  .TopBarSearch.TopBarSearch-active {
    width: 100%;
  }
}
