@import url(https://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,500italic,700,700italic,900,900italic);

body {
	background: linear-gradient(to left, #FF00C7 0%,#00c7ff 100%);
    background: #1E202B;
}

#container {
	width: 350px;
    width: 100%;
	height: 100%;
	border-radius: 0px;
	overflow: visible;
	margin: auto;
	position: absolute;
	border-top: 4px solid tomato;
	background: #1E202B;
	top:calc(50% - 300px);
	left:calc(50% - 175px);
    top: 0;
    left: 0;
}

#header {
	background: #35394A;
	width: 100%;
	height: 100%;
	text-align: center;
	position: relative;
	z-index: 1;
	transition: 400ms ease-out;
}

#header.focus0 {
	height: 15% !important;
}

#continput {
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent;
	padding-left: 50px;
	padding-right: 50px;
	box-sizing: border-box;
	transition: 150ms cubic-bezier(0, 2.15, 0.97, 0.36);
	transition-delay: 500ms;
}

#continput.focus1 {
	padding-left: 25px !important;
	padding-right: 25px !important;
}

#input-group {
	width: 100%;
	height: 50px;
  background: #1B1B1D;
	border-radius: 3px;
	position: relative;
	z-index: 2;
	top: 320px;
	transition: top 350ms ease-in-out;
}


#input-group .btnhidden {
    display: none;
}

#input-group.focus2 {
	top: 70px !important;
}

#searchtext {
	width: 100%;
	height: 100%;
	border: none;
	outline: none;
	font-family: 'Roboto';
	font-weight: 100;
	font-size: 22px;
	padding: 10px;
	padding-right: 50px;
	box-sizing: border-box;
	background: #1B1B1D;
	color: #ccc;
}

#icon-src {
	position: absolute;
	top: 11px;
	right: -30px;
	border: none;
	background: transparent;
	font-size: 20px;
	cursor: pointer;
	color: #999;
	outline: none;
	transition: 150ms cubic-bezier(0.53, 0.88, 0.72, 1.26);
	transition-delay: 500ms;
}

#icon-src.focus3 {
	right: 10px !important;
	color: #999 !important;
}

#logo {
	position: absolute;
	top: 230px;
	z-index: 2;
	left: 30px;
	transition: 300ms cubic-bezier(0.96, 1.11, 0.86, 1.13);
	transition-delay: 150ms;
}

#logo.focus4 {
	top: 17px;
	transform: scale(0.6);
	transition-delay: 0ms;
}

#logo p {
	font-family: 'Roboto';
	text-transform: uppercase;
	font-weight: 900;
	color: #fff;
	font-size: 35px;
	margin: 0;
}

#logo p span {
	font-weight: 100;
	font-style: italic;
}

#results {
	position: absolute;
	left: 25px;
	top: 135px;
    /*
	width: 300px !important;
    */
	background: transparent;
	border-radius: 3px;
	margin: 0;
	padding: 0;
	list-style-type: none;
	box-sizing:border-box;
	opacity: 0;
	transition: 100ms ease-in;
}

#results li {
  background: #1B1B1D;
	padding: 20px 15px;
	transition: 200ms ease-in;
    margin-bottom: 20px;
	font-family: 'Roboto';
    color: #999;
    border: 1px solid #333;
}

/*
#results li:first-child {
	padding-top:10px;
	border-radius:3px 3px 0 0;
}

#results li:last-child {
	padding-bottom:10px;
	border-radius:0 0 3px 3px;
}
*/

#results li a {
	color: #FFF;
	text-decoration: none;
	font-family: 'Roboto';
	font-weight: 100;
	font-size: 20px;
}

#results li a:hover {
	color: tomato;
}

#results.visible{
	opacity: 1 !important;
    margin-right: 25px;
}

#btnall{
    margin-top: 20px;
    background: #999;
    color: #000;
    text-decoration: none;
	font-family: 'Roboto';
    width: 100%;
    display: block;
    padding: 20px 0;
    text-align: center;
}
