#cabecera{
    float: left;
    position: fixed;
    width: 100%;
    height: 80px;
    background: rgba(256, 256, 256, 0.4);
    
    z-index: 1000;
}
    #cabecera_logo{
        float: left;
        width: 5%;
        padding: 20px 0 0 20px;
        min-width: 100px;
        
        -webkit-transition: all 0.3s ease-in-out;
		-moz-transition: all 0.3s ease-in-out;
		-o-transition: all 0.3s ease-in-out;
		-ms-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
    }
        #cabecera_logo img{
            width: 100%;
        }
    .cabecera_titulo{
        float: left;
        width: 60%;
        padding: 10px 2%;
        font-weight: bold;
        font-size: 2em;
        text-align: center;
    }
    .cabecera_buscar{
        float: right;
        padding: 10px 0;
        font-size: 2em;
        text-align: center;
    }
        .cabecera_buscar:hover{
            cursor: pointer;
            color: green;
        }
        .cabecera_plantnet{
            float: right;
            width: 60px;
            padding: 10px 0;
            margin-right: 20px;
        }
        .cabecera_plantnet img{
            width: 100%;
        }
            .cabecera_plantnet:hover{
                opacity: 0.5;
            }
    #cabecera_burguer{
		float: right;
		width: 12%;
		margin-right: 4%;
		margin-top: 8px;
		max-width: 40px;
		text-align: right;
		font-size: 3em;
		color: white;
		display: none;
	}
		#cabecera_burguer:hover{
			cursor: pointer;
			color: green;
		}
        
/* MEDIA QUERIES */
@media screen and (max-width: 700px) {
    #cabecera{
        background: rgba(0, 0, 0, 0.4);
    }
	#cabecera_logo{
        padding: 10px 0 0 20px;
    }
        #cabecera_logo img{
            width: 60px;
        }
	 .cabecera_titulo,.cabecera_buscar, .cabecera_plantnet{
	     display: none;
	 }
    #cabecera_burguer{
		display: inline;
	}
}