#sidebar-holder {
    position: fixed;
    top: 50px;
    bottom: 0;
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding-top: 50px;
    box-shadow: inset -1px 0 10px rgba(0, 0, 0, .5);
    background-color: #F5FCF033;
    width: 280px; 
    padding-left: 30px;
  }

#main-holder-sidebar {
    margin-left: 280px;
}

.anchor {
    scroll-margin-top: 100px;
}

.dm-sans-500 {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

.dm-sans-400 {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.light-green {
    background-color: #F5FCF0;
}

.green {
    background-color: #BEFF9F; /*#2BC48C*/
}

.black-font {
    color: black !important;
}

.px-10 {
    padding-left: 100px;
    padding-right: 100px;
}

.px-20 {
    padding-left: 150px;
    padding-right: 150px;
}


.underline {
    text-decoration: none;
}

.underline:hover {
    text-decoration: underline;
}




/* typeahead input */


  #header-form > .twitter-typeahead {
    width: 100%!important;
  }
  
  #mainpage-form > .tt-input, /* UPDATE: newer versions use tt-input instead of tt-query */
  #mainpage-form > .tt-hint {
      width: 396px;
      height: 35px;
      padding: 10px 12px;
      font-size: 18px;
      line-height: 30px;
      border: 1px solid #ccc;
      border-radius: 5px;
      outline: none;
  }
  
  #header-form > .tt-input, /* UPDATE: newer versions use tt-input instead of tt-query */
  #header-form > .tt-hint {
      padding: 8px 12px;
  }

  #mainpage-form > .tt-input:focus {
      border: 1px solid #9AB2C6;
  }
  
  #mainpage-form > .tt-input { /* UPDATE: newer versions use tt-input instead of tt-query */
      box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  }
  
  #search_header::placeholder {
    color: #aaa;
  }
  
  .tt-hint {
      color: #999;
  }
  
  .tt-menu { /* UPDATE: newer versions use tt-menu instead of tt-dropdown-menu */
      position: relative;
      width: 200px;
      margin-top: 12px;
      padding: 10px;
      background-color: #fff;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 8px;
      box-shadow: 0 5px 10px rgba(0,0,0,.2);
      max-height: 100px;
      overflow-y: auto;
  }
  
  .tt-suggestion {
      padding: 3px 20px;
      font-size: 18px;
      line-height: 24px;
      cursor: pointer;
  }
  
  .tt-suggestion:hover {
      color: black;
      background-color: #C2DBFE;
  }
  
  .tt-cursor {
    color: black;
    background-color: #C2DBFE;
  }
  
  .tt-suggestion p {
      margin: 0;
  }