/* CSS Document */
/*
<style type="text/css">
*/

            .search input{
                box-sizing: border-box;
                float: left;
                background: linear-gradient(180deg,#313131,#222222);
				width:150px;
                color:#fff;
                font-size:16px;
                outline:none;
            }

input ~ span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background-color: #262626;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease-in-out;
}

input:focus ~ span {
  transform: scaleX(1);
  transform-origin: left center;
}


input{
    outline-style: none ;
    border: 1px solid #ccc; 
    border-radius: 3px;
    padding: 13px 14px;
    width: 200px;
    font-size: 18px;
	font-style:normal; color:#FF0000;
    font-weight: 700;
    font-family: "Microsoft soft";
	
	border-color: #66afe9;
    outline: 3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)
}



.select select {
background: #ccc;
width: 750px;
padding: 5px;
font-size: 16px;
border: 1px solid #ED7D31;
height: 34px;
font-style:color:#ED7D31; 
-webkit-appearance: none; /*for chrome*/
} 

select{
color:red;
}

/*
</style>
*/