@media only screen and (max-width: 600px) {
  .navbar {
    height: 65px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 8px #f0f1f2;
    padding: 0px 16px;
  }
  .navbar-left {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 16px 0px;
  }
  .navbar .navbar-logo {
    height: 35px;
    width: 150px;
  }
  .logo-doc-separator {
    height: 100%;
    background-color: #d5d8dc;
    width: 2px;
    margin: 0px 8px;
  }
  .navbar-left a {
    color: gray;
    margin-top: 8px;
    font-weight: bold;
    font-size: 12px;
  }
  .navbar-ask-input {
    width: 300px;
    border-color: #4a90e2;
  }
}

@media only screen and (min-width: 601px) {
  .navbar {
    height: 85px;
    display: flex;
    align-items: center;
    width: 100vw;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    background: #fff;
    box-shadow: 0 2px 8px #f0f1f2;
    padding: 0px 24px;
  }
  .navbar-left {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .navbar .navbar-logo {
    height: 45px;
    width: 200px;
  }
  .logo-doc-separator {
    height: calc(100% - 48px);
    background-color: #d5d8dc;
    width: 2px;
    margin: 0px 16px;
  }
  .navbar-left a {
    color: gray;
    margin-top: 4px;
    font-weight: bold;
  }
  .navbar-ask-input {
    width: 300px;
    border-color: #4a90e2;
  }
}
