#cogiti-finder{
	box-sizing: border-box;
	background-attachment: scroll;
    background-clip: border-box;
    background-image: url("/images/site/bolt.svg");
    background-origin: padding-box;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 25px 25px;
	z-index: 100;
}

#cogiti-finder.closed{
	position: fixed;
	left: 0;
	top: 30vh;
	width: 25px;
	height: 60px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
	background-color: rgba(86, 132, 25, 0.90);
	border-radius: 0 10px 10px 0;
	transition-delay: 10ms;
	transition-duration: 400ms;
	border-width: 2px 2px 2px 0;
	border-style: solid solid solid none;
	border-color: rgba(235, 235, 0.9);
}

#cogiti-finder.open{
	position: fixed;
	left: 0;
	top: 5vh;
	width: 66%;
	height: 90vh;
	border: 0;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.5);
	background-color: rgba(250, 250, 250, 1);
	border-radius: 0 10px 10px 0;
	transition-delay: 10ms;
	transition-duration: 400ms;
	background-position: right bottom;
}


#cogiti-finder-container{
	display: none;
	padding: 20px;
	height: 100%;
	width: 100%;
}

#cogiti-finder-searchbox{
	width: 80%;
	box-sizing: border-box;
}

#cogiti-finder-results{
	max-height: 90%;
	overflow: auto;
	width: 95%;
}

#cogiti-finder-results>p{
	margin: 0 0 10px 0;
	background: rgb(200, 230, 200);
	border-radius: 5px;
	padding: 3px;
	color: rgb(30,30,30);
	font-family: sans-serif;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.25);
}

#cogiti-finder-results>p a{
	color: rgb(30, 100, 30);
	font-family: sans-serif;
}

#cogiti-finder-close{
	position: absolute;
	right: 5px;
	top: 5px;
}