

/* El elemento tamb es un área modificable  */
	.contenedorCajaFInder00 {
	/*background-color: silver;*/
	height: 33px;
	top: 7px;
	position: relative;
	padding-left: 10px
	}

	.contenedorImg{
	/*cursor: pointer;
	width: 30px;
	height: 30px;
	padding: 0.4rem;
	margin-right: 1em; */
	/* espacio entre icono y menú */
	/*background-color: red;*/
	/* Área clickeable */	
	}

	.mensajeFinderEscritorio{@media (max-width: 370px){display: none;}}

/* PANEL FINDER */
.search-container {
	display: flex;
	align-items: center;
	max-width: 600px;
	margin: 0 auto;
	}

	.search-container input {
	flex: 1;
	padding: 0.8em 1em;
	font-size: 1.20rem;
	border: 3px solid grey;
	border-radius: 40px;
	}

	.results {
		padding-left: 1rem;
		/*margin-top: 1em;
		background: #fff;
		border: 1px solid #ccc;
		border-radius: 6px;
		max-height: 300px;
		overflow-y: auto;
		font-size: 1rem;
		box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* sombra ligera */
	}

	.results li {
	padding: 0.8em;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    font-family: arial;
    font-size: 1.10rem;
    display: flex;
    align-content: center;
    align-items: center;
	}

	.results li:hover {
	  background: #f0f0f0;
	}

	/* PANEL */
	.finder-panel {
	position: fixed;
    top: 0px;
    /* left: 0px; */
    width: 100%;
    height: 90vh;
    background: linear-gradient(180deg,rgb(255 255 255 / 93%) 60%, rgba(237, 221, 83, 0) 170%);
    z-index: 9999;
    padding: 3rem 0px 0px 0px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    filter: backdro;
    backdrop-filter: blur(8px);
    /* background: #ffffff; */
    /* background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(237, 221, 83, 0) 100%);*/
	}

/* Boton X de campo search */
#searchInput::-webkit-search-cancel-button {cursor: pointer;}

	img#cierrefinder {
		cursor: pointer;
		/*background-color: red;*/
		margin-left: 0.6rem;
	}

	/* Ocultar por defecto. Luego en JS se borrará esa clase al abrir el panel */
	.hidden {display: none;}

	/* Icono */
	.search-icon {
	  cursor: pointer;
	  width: 40px;
	  height: 40px;
	}

	/*.search-icon img {width: 100%;height: 100%;} */

	/* elemento imagen anidado */
	/* modifica ancho PERO de imagen */
	.contenedorImg img:hover {
	background-color: var(--colorCabezoteInicio-color);
    border-radius: 40px;
	}