

/* Para el listado de propuestas */ 

.unidad-titulo-propuestas {
  background-color: #0a560d;
  color: #FFFFFF;
  padding: 10px 18px;  
  border-radius: 5px 5px 5px 5px;
  
  /*
  width: 100%;
  text-align: left;
  font-size: 15px;
  border: none;
  outline: none;
  */
}


.propuestas-wrapper {
  padding: 10px 18px;
/*  min-height: 120px; */

  gap: 10px;
  display: flex; 
  
  overflow: hidden;
  transition: max-height 0.2s ease-out;
/*  font-size: 14px; */
  margin-block-start: 0px !important;
	
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly; 
  align-items: flex-start;
  align-content: flex-start;
}



.propuesta-item {
	width: 45%;
	margin: 5px;
	flex-wrap: nowrap;
	display: flex; 
	align-items: center;
	
	padding: 10px;	
	border-radius: 10px;
	background-color: #f9f9f9;
	border: 1px solid #f1e8e8;
}

.propuesta-item a {
	text-decoration: none;
	color: #000000;
}

@media (max-width: 800px) {
	.propuesta-item {
		width: 100%;
	}
}

.propuesta-item .propuesta_nombre {
	text-wrap: pretty; 
	width:100%
}

.propuesta-item .propuesta_tipos {
	text-align: end;
}

.leyendas {
    display: flex;
    align-self: center;
    width: 100%;
    justify-content: flex-end;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
	gap: 5px;
}

.leyendas .leyenda {
	display: contents;
}

.leyenda svg {
	width: 15px;
	height: 15px;
}

.leyenda .text {
	font-size: 10px;
}

.propuesta-item:hover {
	background-color: #FFFFFF;
	border: 1px solid #444; /* Aplica un contorno sólido con el color de la propuesta */
	box-shadow: 0 0 2px #444; /* Opcional: añade un sombreado para mayor visibilidad */
}

.unidad-titulo-propuestas .icon-wrapper {
	text-align: center;
	margin-top: 0px;
    margin-block-start: 0px;
	box-sizing: border-box;
}

.unidad-titulo-propuestas .nombre-unidad {
	margin-left: 5px;
}

.unidad-titulo-propuestas .icon-wrapper .svg-wrapper {
	display: inline-flex;
	padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    border-style: default;
    box-shadow: 0px 0px 0 #00000070;
	transition: box-shadow 0.2s ease;
	text-align: center;
}


.unidad-titulo-propuestas .icon-wrapper svg {
	width: 12px;
    height: 12px;
    transform: rotate(0deg);
    fill: #737438;
    filter: drop-shadow( 0px 0px 0px #00000070 );
}

.unidad-titulo-propuestas .icon-wrapper svg path {
	fill: #008357;
	text-align: center;
	
}

.unidad-titulo-propuestas.collapsible:hover {
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.5);
}

