@charset "UTF-8";
/* BÚSQUEDA =============================================================== */
#busqueda {
  background-color: #bce9fe;
  padding: calc(var(--paddingMedium) * 0.8 + 89px) 30px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
#busqueda .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}
#busqueda .wrapper h2 {
  font-size: clamp(1.5rem, 3.4vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1em;
  color: #06306a;
}
#busqueda .wrapper div {
  display: flex;
  gap: 0.6em;
}
#busqueda .wrapper div #orderControl,
#busqueda .wrapper div #filtrosControl {
  display: flex;
  align-items: center;
  gap: 0.4em;
  color: #012875;
  border: 2px solid #012875;
  padding: 0em 0.6em;
  border-radius: 0.6em;
  font-weight: 500;
}
#busqueda .wrapper div #orderControl span,
#busqueda .wrapper div #filtrosControl span {
  color: #fff;
  background-color: #17c8ff;
  border-radius: 1em;
  display: inline-block;
  padding: 0 0.2em;
  width: 1.2em;
  text-align: center;
  line-height: 1.1em;
}
#busqueda .wrapper div #orderControl.active,
#busqueda .wrapper div #filtrosControl.active {
  background-color: #fff;
}
#busqueda .wrapper div #orderControl img,
#busqueda .wrapper div #filtrosControl img {
  width: 1em;
}
#busqueda .wrapper div .optionsWrapper {
  position: relative;
  z-index: 1000;
}
#busqueda .wrapper div .optionsWrapper #filtros {
  position: absolute;
  top: calc(100% + 0.6em);
  right: 0;
  background-color: #fff;
  font-size: clamp(1rem, 2vw, 1rem);
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.8em;
  padding: 1.8em;
  border: 2px solid #012875;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  display: none;
}
#busqueda .wrapper div .optionsWrapper #filtros .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5em 0;
  /* CUSTOM RADIO BUTTON ======================================== */
}
#busqueda .wrapper div .optionsWrapper #filtros .row:not(:last-child) {
  border-bottom: 1px solid #cfcfcf;
  padding-bottom: 0.9em;
  margin-bottom: 0.5em;
}
#busqueda .wrapper div .optionsWrapper #filtros .row label {
  font-size: 1.2em;
  font-weight: 500;
  color: #012875;
}
#busqueda .wrapper div .optionsWrapper #filtros .row select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: "Poppins", sans-serif !important;
  font-size: 1em;
  font-weight: 500;
  padding: 0.1em 1.6em 0.1em 0.6em;
  border: 1px solid #4bc3fe;
  border-radius: 0.6em;
  background-color: transparent;
  background-image: url("busqueda/arrow_down_nimbus.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 0.5em) 0.6em;
  background-size: 0.8em;
  color: #4bc3fe;
}
#busqueda .wrapper div .optionsWrapper #filtros .row select:has(option:disabled:checked) {
  color: #9e9e9e;
}
#busqueda .wrapper div .optionsWrapper #filtros .row select:hover {
  background-color: #f2f2f2;
  color: #012875;
  border: 1px solid #012875;
  background-image: url("busqueda/arrow_down.svg");
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper {
  position: relative;
  cursor: pointer;
  padding-left: 1.2em;
  padding-top: 0.1em;
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  /* Create a custom radio button */
  /* Hide the browser's default radio button */
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper:not(:last-child) {
  margin-right: 0.5em;
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper .checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 2px solid #4bc3fe;
  border-radius: 50%;
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Style the indicator (dot/circle) */
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper .checkmark:before, #busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper .checkmark:before {
  top: 0px;
  left: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper .checkmark:after {
  top: 2px;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4bc3fe;
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  /* Show the indicator (dot/circle) when checked */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper input:checked ~ .checkmark:before, #busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper input:checked ~ .checkmark:after {
  display: block;
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper input ~ .checkmark:hover {
  background-color: #f2f2f2;
  border: 2px solid #012875;
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper input:checked ~ .checkmark {
  background-color: #4bc3fe;
  border: 2px solid #4bc3fe;
}
#busqueda .wrapper div .optionsWrapper #filtros .row .radioWrapper:hover .checkmark {
  background-color: #f2f2f2;
  border: 2px solid #012875 !important;
}
#busqueda .wrapper div .optionsWrapper #filtros .action {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 2em;
}
#busqueda .wrapper div .optionsWrapper #filtros .action .limpiar {
  border: none;
  display: inline-block;
  color: #012875;
  font-size: 1.1em;
  font-weight: 500;
  border-radius: 0.7em;
  transition: all 0.2s;
  border: 1px solid #012875;
  padding: 0.3em 1em;
  cursor: pointer;
}
#busqueda .wrapper div .optionsWrapper #filtros .action .limpiar:hover {
  background-color: #c7e8fd;
  border: 1px solid #c7e8fd;
}
#busqueda .wrapper div .optionsWrapper #filtros .action input[type=submit] {
  border: none;
  display: inline-block;
  color: #012875;
  font-size: 1.1em;
  font-weight: 500;
  border-radius: 0.7em;
  transition: all 0.2s;
  background-color: #4bc3fe;
  border: 1px solid #4bc3fe;
  padding: 0.3em 1em;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
}
#busqueda .wrapper div .optionsWrapper #filtros .action input[type=submit]:hover {
  background-color: #78d9ff;
  border: 1px solid #78d9ff;
}
#busqueda .wrapper div .optionsWrapper #orden {
  position: absolute;
  top: calc(100% + 0.6em);
  right: 0;
  background-color: #fff;
  font-size: clamp(0.8rem, 2vw, 1rem);
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.8em;
  padding: 0.8em 1.2em;
  border: 2px solid #012875;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  display: none;
}
#busqueda .wrapper div .optionsWrapper #orden li a {
  white-space: nowrap;
  color: #012875;
  padding: 0.1em 0.8em;
  border-radius: 0.8em;
}
#busqueda .wrapper div .optionsWrapper #orden li a:hover {
  background-color: #f2f2f2;
}
#busqueda .wrapper div .optionsWrapper #orden li.active a,
#busqueda .wrapper div .optionsWrapper #orden li.active a:hover {
  background-color: #c7e8fd;
}
#busqueda .wrapper div .optionsWrapper #orden li:not(:last-child) {
  margin-bottom: 0.6em;
  padding-bottom: 0.6em;
  border-bottom: 1px solid #cfcfcf;
}
#busqueda .tarjetas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2em;
}
#busqueda .tarjetas .tarjeta {
  position: relative;
  display: flex;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper {
  background-color: #fff;
  font-size: clamp(0.8rem, 1.7vw, 1rem);
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.2);
  border-radius: 1.2em;
  padding: 2.8em 2.2em 2.2em 2.2em;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
  transition: box-shadow 0.2s;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper:hover {
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.6);
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .nuevo {
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 2.3em;
  background-color: #03337f;
  color: #fff;
  font-weight: 600;
  padding: 0.1em 0.6em;
  border-bottom-left-radius: 0.6em;
  border-bottom-right-radius: 0.6em;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper h3 {
  font-size: clamp(0.9rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.1em;
  color: #06306a;
  margin-bottom: 0.8em;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .etiquetas {
  font-size: 0.8em;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.4em 0.3em;
  margin-bottom: 2em;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .etiquetas li {
  padding: 0.2em 0.5em;
  border: 1px solid #9cdaef;
  border-radius: 2em;
  color: #06306a;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .etiquetas li.agro {
  color: #008584;
  background-color: #91c9c8;
  border: 1px solid #91c9c8;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .etiquetas li.comercial, #busqueda .tarjetas .tarjeta .tarjetaWrapper .etiquetas li.producto, #busqueda .tarjetas .tarjeta .tarjetaWrapper .etiquetas li.servicios {
  color: #206a83;
  background-color: #9cdaef;
  border: 1px solid #9cdaef;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .etiquetas li.erp {
  color: #3267b5;
  background-color: #a9c8ff;
  border: 1px solid #a9c8ff;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .etiquetas li.hcm {
  color: #8067cc;
  background-color: #d6c6f5;
  border: 1px solid #d6c6f5;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .cta {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .cta .verMas {
  border: 1px solid #c5cee8;
  padding: 0.4em 1.2em;
  border-radius: 1.2em;
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1.1em;
  color: #06306a;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: all 0.2s;
  margin-bottom: 0.2em;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .cta .verMas img {
  width: 0.7em;
  height: 0.7em;
  margin-bottom: 0.1em;
}
#busqueda .tarjetas .tarjeta .tarjetaWrapper .cta .verMas:hover {
  background-color: #c7e8fd;
  border: 1px solid #c7e8fd;
}
#busqueda .tarjetas .tarjeta .optionsWrapper {
  z-index: 900;
  position: absolute;
  bottom: 2.2em;
  left: 2.2em;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartirControl {
  border: 1px solid #c5cee8;
  display: flex;
  overflow: hidden;
  border-radius: 50%;
  transition: all 0.2s;
  position: relative;
  cursor: pointer;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartirControl span {
  display: none;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartirControl img {
  width: 2.4em;
  height: 2.4em;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartirControl:hover, #busqueda .tarjetas .tarjeta .optionsWrapper .compartirControl.active {
  background-color: #c7e8fd;
  border: 1px solid #c7e8fd;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartir {
  position: absolute;
  top: calc(100% + 0.6em);
  left: 0;
  background-color: #fff;
  font-size: clamp(0.8rem, 2vw, 1rem);
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.8em;
  padding: 0.8em 0.6em;
  border: 2px solid #012875;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  display: none;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartir li {
  display: flex;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartir li a {
  color: #012875;
  padding: 0.1em 0.8em 0em 0.8em;
  border-radius: 0.8em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  position: relative;
  width: -moz-max-content;
  width: max-content; /* Ensure the anchor adjusts to fit its content */
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartir li a span {
  white-space: nowrap;
  display: inline-block; /* Ensure the span contributes to the width of the anchor */
  padding-top: 0.1em;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartir li a img {
  width: 1.5em;
  height: 1.5em;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartir li a:hover {
  background-color: #f2f2f2;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartir li.active a,
#busqueda .tarjetas .tarjeta .optionsWrapper .compartir li.active a:hover {
  background-color: #c7e8fd;
}
#busqueda .tarjetas .tarjeta .optionsWrapper .compartir li:not(:last-child) {
  margin-bottom: 0.3em;
  padding-bottom: 0.3em;
}
#busqueda .sinResultados {
  display: flex;
  align-items: center;
  gap: 2em;
  max-width: 900px;
  margin: 0 auto;
}
#busqueda .sinResultados img {
  width: 100%;
  max-width: 400px;
}
#busqueda .sinResultados div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#busqueda .sinResultados div h3 {
  font-size: clamp(0.9rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.1em;
  color: #06306a;
  margin-bottom: 0.8em;
}
#busqueda .sinResultados div .reset {
  padding: 0.4em 1.2em;
  border-radius: 1.2em;
  font-weight: 500;
  font-size: 1.1em;
  line-height: 1.1em;
  color: #06306a;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: all 0.2s;
  margin-bottom: 0.2em;
  background-color: #fff;
}
#busqueda .sinResultados div .reset:hover {
  background-color: #4bc3fe;
}

@media screen and (max-width: 800px) {
  #busqueda {
    padding: calc(var(--paddingMedium) * 0.8) 30px;
  }
  #busqueda .tarjetas {
    grid-template-columns: repeat(2, 1fr);
  }
  #busqueda .tarjetas .tarjeta .optionsWrapper {
    bottom: 1.6em;
    left: 1.8em;
  }
  #busqueda .sinResultados img {
    max-width: 18em;
  }
}
@media screen and (max-width: 600px) {
  #busqueda .wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8em;
  }
  #busqueda .wrapper div {
    position: relative;
  }
  #busqueda .wrapper div .optionsWrapper:nth-child(2) {
    position: initial;
  }
  #busqueda .wrapper div .optionsWrapper #orden,
  #busqueda .wrapper div .optionsWrapper #filtros {
    right: auto;
    left: 0;
  }
  #busqueda .sinResultados img {
    max-width: 12em;
  }
}
@media screen and (max-width: 500px) {
  #busqueda .tarjetas {
    grid-template-columns: repeat(1, 1fr);
  }
  #busqueda .wrapper div .optionsWrapper #filtros {
    padding: 0.8em 1.2em 1.4em 1.2em;
  }
  #busqueda .wrapper div .optionsWrapper #filtros .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2em;
  }
  #busqueda .wrapper div .optionsWrapper #filtros .row:not(:last-child) {
    margin-bottom: 0;
  }
  #busqueda .wrapper div .optionsWrapper #filtros .row label {
    font-size: 1.1em;
  }
  #busqueda .wrapper div .optionsWrapper #filtros .action {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 1.2em;
  }
  #busqueda .wrapper div .optionsWrapper #filtros .action input[type=submit],
  #busqueda .wrapper div .optionsWrapper #filtros .action .limpiar {
    font-size: 0.9em;
  }
  #busqueda .sinResultados {
    flex-direction: column;
  }
  #busqueda .sinResultados img {
    max-width: 12em;
  }
}
@media screen and (max-width: 410px) {
  #busqueda .wrapper div .optionsWrapper #filtros .row:nth-child(5) div {
    flex-direction: column;
  }
}
/* BÚSQUEDA DETALLE =============================================================== */
#busquedaDetalle {
  background-color: #bce9fe;
  padding: calc(var(--paddingMedium) * 0.8 + 89px) 30px;
  /* margin-top: 89px; */
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
#busquedaDetalle .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
  color: #06306a;
}
#busquedaDetalle .wrapper a {
  border: 1px solid #06306a;
  padding: 0.4em 1.2em;
  border-radius: 1.2em;
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1.1em;
  color: #06306a;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: all 0.2s;
  margin-bottom: 0.2em;
}
#busquedaDetalle .wrapper a img {
  width: 1em;
  height: 1em;
  margin-bottom: 0.1em;
}
#busquedaDetalle .wrapper a:hover {
  background-color: #4bc3fe;
  border: 1px solid #4bc3fe;
}
#busquedaDetalle .tarjeta {
  background-color: #fff;
  font-size: clamp(0.8rem, 2vw, 1rem);
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.2);
  border-radius: 1.2em;
  padding: 2.8em 2.2em 2.2em 2.2em;
  position: relative;
  display: flex;
  flex-direction: column;
}
#busquedaDetalle .tarjeta .nuevo {
  font-size: 1em;
  position: absolute;
  top: 0;
  left: 2.3em;
  background-color: #03337f;
  color: #fff;
  font-weight: 600;
  padding: 0.1em 0.6em;
  border-bottom-left-radius: 0.6em;
  border-bottom-right-radius: 0.6em;
}
#busquedaDetalle .tarjeta .etiquetas {
  font-size: 1.2em;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.4em 0.3em;
  margin-bottom: 2em;
}
#busquedaDetalle .tarjeta .etiquetas li {
  padding: 0.2em 0.5em;
  border: 1px solid #9cdaef;
  border-radius: 2em;
  color: #06306a;
}
#busquedaDetalle .tarjeta .etiquetas li.agro {
  color: #008584;
  background-color: #91c9c8;
  border: 1px solid #91c9c8;
}
#busquedaDetalle .tarjeta .etiquetas li.comercial, #busquedaDetalle .tarjeta .etiquetas li.producto, #busquedaDetalle .tarjeta .etiquetas li.servicios {
  color: #206a83;
  background-color: #9cdaef;
  border: 1px solid #9cdaef;
}
#busquedaDetalle .tarjeta .etiquetas li.erp {
  color: #3267b5;
  background-color: #a9c8ff;
  border: 1px solid #a9c8ff;
}
#busquedaDetalle .tarjeta .etiquetas li.hcm {
  color: #8067cc;
  background-color: #d6c6f5;
  border: 1px solid #d6c6f5;
}
#busquedaDetalle .tarjeta h3 {
  font-size: clamp(0.9rem, 2.8vw, 2.8rem);
  font-weight: 600;
  line-height: 1.1em;
  color: #06306a;
  margin-bottom: 0.5em;
}
#busquedaDetalle .tarjeta p.resumen {
  font-size: clamp(0.9rem, 2.8vw, 1.2rem);
  font-weight: 500;
  line-height: 1.3em;
  color: #06306a;
  margin-bottom: 1.8em;
}
#busquedaDetalle .tarjeta .descripcion {
  font-size: clamp(0.8rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.6em;
  color: #06306a;
  margin-bottom: 2.8em;
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}
#busquedaDetalle .tarjeta .descripcion > li {
  border: 1px solid #012875;
  border-radius: 0.6em;
  /* Control del acordión */
}
#busquedaDetalle .tarjeta .descripcion > li .titulo {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 1.2em 1.2em;
}
#busquedaDetalle .tarjeta .descripcion > li .titulo h4 {
  font-weight: 500;
  color: #012875;
}
#busquedaDetalle .tarjeta .descripcion > li .titulo .controlDescripcion {
  width: 1em;
  height: 1em;
  transition: all 0.2s;
  margin-top: 0.2em;
  overflow: hidden;
  text-indent: 110%;
  background-image: url("busqueda/arrow_down.svg");
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 1em;
}
#busquedaDetalle .tarjeta .descripcion > li .accordionWrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows ease-in-out 300ms;
}
#busquedaDetalle .tarjeta .descripcion > li .accordionWrapper .contenido {
  padding: 0 1.2em 1.2em 1.2em;
}
#busquedaDetalle .tarjeta .descripcion > li .accordionWrapper .contenido p,
#busquedaDetalle .tarjeta .descripcion > li .accordionWrapper .contenido li {
  font-size: clamp(0.9rem, 2.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.3em;
  color: #06306a;
}
#busquedaDetalle .tarjeta .descripcion > li .accordionWrapper .contenido ul {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
#busquedaDetalle .tarjeta .descripcion > li .accordionWrapper .contenido ul li {
  padding-left: 0.9em;
  background-image: url("busqueda/icon_plus.svg");
  background-repeat: no-repeat;
  background-size: 0.6em;
  background-position: 0 0.3em;
}
#busquedaDetalle .tarjeta .descripcion > li .accordionWrapper > div {
  overflow: hidden;
}
#busquedaDetalle .tarjeta .descripcion > li:hover {
  border: 1px solid #4bc3fe;
}
#busquedaDetalle .tarjeta .descripcion > li:hover h4 {
  color: #4bc3fe;
}
#busquedaDetalle .tarjeta .descripcion > li:hover .controlDescripcion {
  background-image: url("busqueda/arrow_down_nimbus.svg");
}
#busquedaDetalle .tarjeta .descripcion > li.expanded {
  border: 1px solid #4bc3fe;
}
#busquedaDetalle .tarjeta .descripcion > li.expanded .titulo h4 {
  color: #4bc3fe;
}
#busquedaDetalle .tarjeta .descripcion > li.expanded .titulo .controlDescripcion {
  background-image: url("busqueda/arrow_down_nimbus.svg");
  transform: scaleY(-1);
}
#busquedaDetalle .tarjeta .descripcion > li.expanded .accordionWrapper {
  grid-template-rows: 1fr;
}
#busquedaDetalle .tarjeta .cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
#busquedaDetalle .tarjeta .cta .compartirControl {
  border: 1px solid #c5cee8;
  display: flex;
  overflow: hidden;
  border-radius: 50%;
  transition: all 0.2s;
  position: relative;
  cursor: pointer;
}
#busquedaDetalle .tarjeta .cta .compartirControl span {
  display: none;
}
#busquedaDetalle .tarjeta .cta .compartirControl img {
  width: 2.4em;
  height: 2.4em;
}
#busquedaDetalle .tarjeta .cta .compartirControl:hover, #busquedaDetalle .tarjeta .cta .compartirControl.active {
  background-color: #c7e8fd;
  border: 1px solid #c7e8fd;
}
#busquedaDetalle .tarjeta .cta .optionsWrapper {
  position: relative;
  z-index: 900;
}
#busquedaDetalle .tarjeta .cta .optionsWrapper .compartir {
  position: absolute;
  top: calc(100% + 0.6em);
  left: 0;
  background-color: #fff;
  font-size: clamp(0.8rem, 2vw, 1rem);
  box-shadow: 0 0.3em 1em rgba(0, 0, 0, 0.2);
  border-radius: 0.8em;
  padding: 0.8em 0.6em;
  border: 2px solid #012875;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  display: none;
}
#busquedaDetalle .tarjeta .cta .optionsWrapper .compartir li {
  display: flex;
}
#busquedaDetalle .tarjeta .cta .optionsWrapper .compartir li a {
  color: #012875;
  padding: 0.1em 0.8em 0em 0.8em;
  border-radius: 0.8em;
  display: flex;
  align-items: center;
  gap: 0.4em;
  position: relative;
  width: -moz-max-content;
  width: max-content; /* Ensure the anchor adjusts to fit its content */
}
#busquedaDetalle .tarjeta .cta .optionsWrapper .compartir li a span {
  white-space: nowrap;
  display: inline-block; /* Ensure the span contributes to the width of the anchor */
  padding-top: 0.1em;
}
#busquedaDetalle .tarjeta .cta .optionsWrapper .compartir li a img {
  width: 1.5em;
  height: 1.5em;
}
#busquedaDetalle .tarjeta .cta .optionsWrapper .compartir li a:hover {
  background-color: #f2f2f2;
}
#busquedaDetalle .tarjeta .cta .optionsWrapper .compartir li.active a,
#busquedaDetalle .tarjeta .cta .optionsWrapper .compartir li.active a:hover {
  background-color: #c7e8fd;
}
#busquedaDetalle .tarjeta .cta .optionsWrapper .compartir li:not(:last-child) {
  margin-bottom: 0.3em;
  padding-bottom: 0.3em;
}
#busquedaDetalle .tarjeta .cta .plazo {
  color: #012875;
}
#busquedaDetalle .tarjeta .cta .postularse {
  background-color: #4bc3fe;
  padding: 0.4em 1.2em;
  border-radius: 1.2em;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.1em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: all 0.2s;
  margin-bottom: 0.2em;
}
#busquedaDetalle .tarjeta .cta .postularse img {
  width: 0.7em;
  height: 0.7em;
  margin-bottom: 0.1em;
}
#busquedaDetalle .tarjeta .cta .postularse:hover {
  background-color: #012875;
}
#busquedaDetalle .sinResultados {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  max-width: 900px;
  margin: 0 auto;
}
#busquedaDetalle .sinResultados img {
  width: 100%;
  max-width: 25em;
}
#busquedaDetalle .sinResultados div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#busquedaDetalle .sinResultados div h3 {
  font-size: clamp(1rem, 2.4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.1em;
  color: #06306a;
  margin-bottom: 0.8em;
}
#busquedaDetalle .sinResultados div .reset {
  padding: 0.4em 1.2em;
  border-radius: 1.2em;
  font-weight: 500;
  font-size: 1.1em;
  line-height: 1.1em;
  color: #06306a;
  display: flex;
  align-items: center;
  gap: 0.4em;
  transition: all 0.2s;
  margin-bottom: 0.2em;
  background-color: #fff;
}
#busquedaDetalle .sinResultados div .reset:hover {
  background-color: #4bc3fe;
}

@media screen and (max-width: 800px) {
  #busquedaDetalle {
    padding: calc(var(--paddingMedium) * 0.8) 30px;
  }
  #busquedaDetalle .tarjeta .cta {
    flex-wrap: wrap;
    gap: 1em 0.6em;
  }
  #busquedaDetalle .sinResultados img {
    max-width: 18em;
  }
}
@media screen and (max-width: 600px) {
  #busquedaDetalle .sinResultados img {
    max-width: 12em;
  }
}
@media screen and (max-width: 500px) {
  #busquedaDetalle .sinResultados {
    flex-direction: column;
  }
  #busquedaDetalle .sinResultados img {
    max-width: 12em;
  }
}/*# sourceMappingURL=busqueda.css.map */