
/*Buscador de contenido*/

#ctn-icon-search{
    position: absolute;
    right: 20px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#ctn-icon-search i{
    font-size: 18px;
    color: #777777;
    cursor: pointer;
    transition: all 300ms;
}

#ctn-icon-search i:hover{
    color: #46a2fd;
}


#ctn-bars-search{
    position: fixed;
    top: -100px;
    width: 30%;
    background: #fff;
    padding: 20px;
    z-index: 1000;
    transition: all 600ms;
	left: 49px;
	
}

#icon-search{
cursor: pointer;
}

#ctn-bars-search input{
    display: block;    
    margin: auto;
    padding: 10px;
    font-size: 12px;
    outline: 0;
    
}

#box-search{
    position: static;
    top: 160px;
    left: 250px;
    transform: translateX(-50%);
    width: 30%;
    background: #fff;
    z-index: 100;
    overflow-y: auto;
    display: none;
	height: 75%;
	padding: 20px;
}

#box-search li a{
    display: block;
    color: #777777;
    padding: 12px 20px;
}

#box-search li a:hover{
    background: #f3f3f3;
}

#box-search li a i{
    
    color: #777777;
}


#cover-ctn-search{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 8;
    display: none;
	
}

