@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,200i,300,300i,400,400i,600,600i,700,700i,900,900i&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    /* font-family: 'Source Sans Pro', sans-serif; */
}

body
{
    /* background-color: red; */
}

/* 
#icon-menu{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: 16px;
    padding: 10px;
    font-size: 20px;
    background: #eeeeeefa;
    border-radius: 100%;
    color: #787878;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
} */

#icon-menu:hover{
    opacity: 0.8;
}



/*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: -10px;
    width: 100%;
    background: #fff;
    padding: 20px;
    z-index: 9;
    transition: all 600ms;
} */

#ctn-bars-search input{
    display: block;
    /* width: 800px; */
    width: 100%;
    margin: auto;
    padding: 10px;
    font-size: 18px;
    outline: 0;
}

#box-search{
    position: fixed;
    /* top: 60px; */
    /* left: 180px; */
    /* transform: translateX(-50%); */
    /* width: 1200px; */
    /* width: 1109px; */
    width: 100%;
    background: #fff;
    z-index: 7;
    overflow: hidden;
    display: none;
    text-align: justify;
}

#box-search li a{
    display: block;
    /* width: 1109px; */
    width: 100%;
    color: #777777;
    padding: 12px 20px;
}

#box-search li a:hover{
    background: #f3f3f3;
}

#box-search li a i{
    margin-right: 10px;
    color: #777777;
}


#cover-ctn-search{
    /* width: 800px; */
    width: 100%;
    height: 100%;
    position: fixed;
    /* position: relative; */
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 7;
    display: none;
}


/* Responsive Design - adaptable a dispositivos moviles*/

@media screen and (max-width: 1220px){

    #ctn-bars-search,
    #ctn-bars-search input,
    #box-search{
        /* width: 690px; */
        width: 100%;
    }

}



@media screen and (max-width: 800px){


    /* #icon-menu{
        display: flex;
        right: 60px;
    } */

  
}