.asesores {
  position: fixed;
  bottom: 2.3rem;
  right: 2rem;
  z-index: 5;
}
.asesores .span {
  max-width: 3rem;
  height: 3rem;
  padding: 0.5rem;
  background-color: #2a80c3;
  border-radius: 3rem;
  overflow: hidden;
  gap: 0;
  transition: all 0.3s ease;
}
.asesores .span svg {
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
}
.asesores .span span {
  text-wrap: nowrap;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 0;
  transition: all 0.3s ease;
  color: #ffffff;
}
.asesores_lista {
  position: absolute;
  max-height: 0;
  overflow: hidden;
  border-radius: 1rem;
  bottom: 100%;
  right: 0;
  transition: all 0.3s ease;
  width: 20rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
}
.asesores_lista > span {
  background-color: #2a80c3;
  padding: 1rem;
  text-align: center;
  display: flex;
  width: 100%;
  max-width: 100%;
  border-radius: 0 0 1rem 1rem;
  font-size: 0.75rem;
  color: #ffffff;
  font-weight: bold;
}
.asesores_lista .lista {
  width: 18rem;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 2rem;
  overflow-y: auto;
  margin: 0.5rem 0;
}
.asesores_lista .lista::-webkit-scrollbar {
  width: 8px;
  background-color: #d9d9d9;
  border-radius: 20px;
  height: 2rem;
}
.asesores_lista .lista::-webkit-scrollbar-thumb {
  background-color: #e5464b;
  border-radius: 6px;
}
.asesores_lista .lista a {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 0.5rem;
  row-gap: 0;
  position: relative;
  justify-content: center;
}
.asesores_lista .lista a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(0.5rem);
  background-color: #d9d9d9;
}
.asesores_lista .lista a .imagen {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #d9d9d9;
  position: relative;
}
.asesores_lista .lista a .imagen::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(505, 50%);
  background-color: #18c390;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
}
.asesores_lista .lista a .imagen img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  border-radius: 50%;
}
.asesores_lista .lista a .nombres strong {
  font-size: 1rem;
}
.asesores.active .span, .asesores:hover .span {
  padding: 0.5rem 1rem;
  max-width: 30rem;
  gap: 0.5rem;
}
.asesores.active .span span, .asesores:hover .span span {
  max-width: 30rem;
}
.asesores.active .asesores_lista {
  max-height: 20rem;
}/*# sourceMappingURL=index.css.map */