#search {
    -webkit-animation: fadeIn 2.5s;
    animation: fadeIn 2.5s;
    background-color: rgb(202, 202, 202);
    border: none;
    display: flex;
    flex-direction: column;
    height: 60px;
    margin: 0 2vw;
    position: -webkit-sticky;
    position: sticky;
    top: 15px;
  }
  
  #search_bar {
    display: flex;
    flex-direction: row;
  }
  
  #search_web {
    background-color: transparent;
    border: none;
    color: rgb(74, 66, 102);
    float: left;
    font-family: Impact, Charcoal, sans-serif;
    font-size: 2.5em;
    font-weight: 500;
    height: 60px;
    max-width: 200px;
    min-width: 50px;
    outline: 0;
    text-align: center;
    width: 20%;
  }
  
  #search_input {
    background-color: transparent;
    border: none;
    color: rgb(74, 66, 102);
    font-size: 30px;
    height: 60px;
    min-height: 35px;
    outline: 0;
    overflow: hidden;
    padding: 0 10px;
    width: 100%;
  }
  
  #search_submit {
    background-color: transparent;
    border: none;
    color: rgb(74, 66, 102);
    float: right;
    font-size: 40px;
    font-weight: 500;
    height: 60px;
    outline: 0;
    padding: 0 13px;
  }
  
  /* Search suggestion styles */
  .suggest {
    display: none;
    width: 100%;
  }
  
  .suggest ul {
    background-color: rgba(220, 220, 220, 0.55);
    list-style: none;
    margin-top: 5px;
    padding: 0;
  }
  
  .suggest ul li {
    background-color: transparent;
    color: rgb(74, 66, 102);
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
    text-align: center;
  }
  
  .suggest ul li:hover {
    background-color: rgba(220, 220, 220, 0.7);
  }