.tarjeta_principal {
  position: relative;
  display: flex;
  width: 350px;
  background-color: #d8e7ff;
  padding: 10px;
  border-radius: 6px;
  gap: 0.5rem;
  height: max-content;
  box-shadow: 0px 4px 8px -4px rgba(76, 78, 100, 0.42);
}
.barra_lateral {
  transition: all 0.2s ease-in-out;
}
.tarjeta_principal:hover .forma_cuadrada_tarjeta {
  background-color: #5b8ae9;
}
.forma_cuadrada_tarjeta {
  position: relative;
  min-width: 0.5em;
  min-height: 0.5em;
  border-radius: 4px;
  background-color: #0036a3;
  transition: 0.2s ease-in-out;
  overflow: hidden;
  margin-left: -10px;
}
.contenido_tarjeta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.contenido_tarjeta span {
  color: #0036a3;
  margin-top: auto;
  font-size: 0.9em;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}
.contenido_tarjeta span:hover {
  text-decoration: underline;
}
.titulo_tarjeta {
  font-size: 1.1em;
}
.subtitulo_tarjeta {
  font-size: 0.8em;
}
.texto_contenido_tarjeta {
  font-size: 1em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  margin-top: 10px;
}
.cube {
  width: max-content;
  height: 10px;
  transition: all 0.2s;
  transform-style: preserve-3d;
}
.tarjeta_principal:hover .cube {
  transform: rotateX(90deg);
}
.texto_tarjeta {
  width: max-content;
  height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
}
.texto_deslizante {
  transform: rotateX(-90deg) translate3d(0, 0, 0em);
}
.texto_ocultar {
  transform: translate3d(0, 0, 1em);
}
.contenedor-listado-consulta-publica{
  max-height: 500px;
  overflow: auto;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: #0036a3 transparent;
}
html{
  scrollbar-width: thin;
  scrollbar-color: #0036a3 transparent;
}

.campo-filtros-sin_borde{
  height: 35px !important;
  border: none !important; 
  border-radius: 0px !important; 
  border-bottom: solid 2px #abc7ff !important;
}

.texto_titulo_azul_mayus {
  width: max-content;
  height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: #0036a3;
}

.texto_titulo_azul_mayus_Remure {
  width: 100%; 
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: bold;
  color: #0036a3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}