/* The styling of the input bar itself */
.inputBar {

	margin: 0;
	padding:3px;
	padding-left: 15%;
	height: 40px;

	/* Overridden by themes */
	background-color: transparent;

}

#inputDiv{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:40px;

	z-index:4;
	margin-bottom: 40px;
	box-shadow: 0px 2px 15px 8px rgba(0,0,0,.3);
}

/* The styling for the input field on the input bar */
.inputBar .inputBox {
	font-size:150%;;
	width:80%;
	background-color: transparent;
	outline: 0;
	background-color: rgba(255,255,255,.08);
	border: 0px solid transparent;
	margin-top:0px;
	font-family: "Lato-Light","Segoe UI Semi-Light","Calibri";
	color: transparent;

	/* PLUS ICON */
	background-image: url("../img/plus.png");
	background-position: 6px 6px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	padding-left: 35px;
	margin-top: 4px;
}

/* Styling for the options button */
.optLine{
	border-radius:3px;
	width:100%;
	height: 3px;
	margin-top: 5px;
	background-color: rgba(255,255,255,.3);
}

.options{
	position: relative;
	float: right;
	z-index: 4;
	display: inline-block;
	font-family: "Lato-Light";
	color: transparent;
	padding-top: 8px;
	padding-right: 10px;
	cursor: pointer;
	opacity: .6;
	transition: all ease-in-out .1s;
	background-image: url("../img/gear.png");
	background-repeat: no-repeat;
	width: 26px;
	height: 26px;
	background-position: 0px 6px;
}

.options:hover{
	opacity: 1;
}

#inputDiv.bottom{
	top: calc(100% - 45px);
	margin-bottom: 0;
	box-shadow: 0px -2px 10px 4px rgba(0,0,0,.25);

}