/* site-header navbar*/
#navbar {
  position: sticky;
  top: 0;
  overflow: hidden;
  background-color: #333;
}

#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}
.container {
  max-width: 1200px;
}
.site-header {
  background-color: #ebe5d6;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
  color: #999;
  transition: ease-in-out color .15s;
}
.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

/* ending site-header navbar */
/* search field in navigation*/
#inputSearchAuto {
	width: 90%;
    border: none;
    border-radius: 3px;
    -webkit-transition: all 0.5s ease-in-out 0s;
    background-color: #EDEDED;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    height: 50px;
    box-sizing: border-box;
    padding-left: 15px;
}
.insButton {
	height: 50px;
    outline: none;
    border: none;
    color: #fff;
    border-radius: 4px;
    background: #e02027;
    position: absolute;
    padding: 5px 15px;
	
}