@charset "utf-8";
/* CSS Document */

/* makes the search box expand on click, originally as the type, chnaged to a class as to not affect the othe text fields in the site*/

/*input[type="text"] {
	width: 20px;
	box-sizing: border-box;
	border: 2px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
	background-color: white;
	background-image: url('/images/searchicon.png');
	background-position: 9px 7px;
	background-repeat: no-repeat;
	padding: 6px 10px 6px 30px;
	-webkit-transition: width 0.4s ease-in-out;
	transition: width 0.4s ease-in-out;
}

input[type=text]:focus {
    width: 100%;
}*/

input[class="searching"] {
	width: 120px;
	box-sizing: border-box;
	border: 2px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
	background-color: white;
	background-image: url('/images/searchicon.png');
	background-position: 6px 3px;
	background-repeat: no-repeat;
	padding: 5px 30px 5px 35px;
	-webkit-transition: width 0.4s ease-in-out;
	transition: width 0.4s ease-in-out;
	color: #333;
	font-size: 12px;
}


/* just makes the searcha nd close buttons invisible*/
.search-button-inside {
	display:none;
}
.icon-close {
	display:none;
}



input[class=searching]:focus {
    width: 100%;
}


@media (max-width:420px)
{
	input[class="searching"] {
	width: 220px;
	box-sizing: border-box;
	border: 2px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
	background-color: white;
	background-image: url('/images/searchicon.png');
	background-position: 9px 7px;
	background-repeat: no-repeat;
	padding: 6px 10px 6px 30px;
	-webkit-transition: width 0.4s ease-in-out;
	transition: width 0.4s ease-in-out;
}

	
	input[class=searching]:focus {
    width: 320px;
}
}

.search-box button {
    /* background: url(/images/search_icon.png) no-repeat scroll 0 0 #333; */
    background: transparent !important;
    border: 0 none;
    cursor: pointer;
    height: 23px;
    text-indent: -9999px;
    margin-left: -15px;
    margin-top: -2px;
    width: 26px;
}