﻿#search {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
       -moz-transition: all 0.5s ease-in-out;
        -ms-transition: all 0.5s ease-in-out;
	       -o-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
	     -moz-transform: translate(0px, -100%) scale(0, 0);
	      -ms-transform: translate(0px, -100%) scale(0, 0);
         -o-transform: translate(0px, -100%) scale(0, 0);
	          transform: translate(0px, -100%) scale(0, 0);    
    opacity: 0;
    display: none;
}
#sp-search i {color:#272727;line-height:90px;float:right;}
#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
       -moz-transform: translate(0px, 0px) scale(1, 1);
    	  -ms-transform: translate(0px, 0px) scale(1, 1);
	       -o-transform: translate(0px, 0px) scale(1, 1);
	           transform: translate(0px, 0px) scale(1, 1); 
    opacity: 1;
    z-index: 106;
    display: block;
}

/*#search input[type="search"] {

    position: absolute;

    top: 50%;

    left: 0;

    margin-top: 0;

    width: 60%;

    margin-left: 20%;

    font-size: 40px;

  	font-family: Roboto;

    font-weight: 300;

    text-align: center;

    outline: none;

  	padding: 10px;

	border:2px solid #f5f5f5;

	border-radius:3px;

	color: #fff;

font-size: 24px;

padding-left: 10px;

background:transparent;

transition: .3s;

height:50px!important;

}*/

  

#search .close {

position: fixed;

top: 15px;

right: 15px;

opacity: 1;

font-size: 27px;

color: #fff;

}

#search .close::before {

content: "\f00d";

font-family: 'FontAwesome';

font-size: 20px;

color: #fff;

	

}

#search .close:hover{

  color: #ccc;

  cursor: pointer;

}