@charset "UTF-8";
@font-face {
  font-family: "Rubik";
  src: url("../../fonts/Rubik-VariableFont_wght.ttf");
}
*:not(.isax):not(.fa):not(.fab) {
  font-family: "Rubik", Helvetica, Arial, sans-serif;
}

.fs-085 {
  font-size: 0.85rem;
}

.env_body.body__login .header {
  padding: 1rem 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  background: #fff;
}

.env_body .branding {
  width: 70%;
  display: inline-block;
  vertical-align: middle;
}

@keyframes onAutoFill {
  from { /**/ }
  to { /**/ }
}
#form-login #cuil:-webkit-autofill {
  animation-name: onAutoFill;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

.container-form-login {
  margin: auto;
}

.body__login .form .bt + .btText {
  float: right;
}

.card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 0.1rem 0.5rem 0 rgba(0, 0, 0, 0.1), 0 0.2rem 1rem 0 rgba(0, 0, 0, 0.1);
  transition: all 400ms cubic-bezier(0.7, 0, 0.3, 1);
}

.btText {
  font-weight: 600;
  margin: 0.33rem 0 1rem 0;
  font-size: 0.875rem;
  color: #3b4652 !important;
}

.btText, .main p a, .main ul a, .main ol a, .main label a {
  text-decoration: underline;
  text-decoration-color: #b8b8ff;
}

p.btText a {
  color: #163C68;
}

.footer p a {
  color: #163C68;
}

.btn-flotante {
  position: fixed;
  bottom: 95px;
  right: 50px;
  transition: all 300ms ease 0ms;
  z-index: 99;
  width: auto;
  display: inline-block;
}
.btn-flotante .btn_help {
  display: inline-block;
}
.btn-flotante .btn_help .btnHelp:focus {
  box-shadow: none;
}

.btn-flotante:hover {
  transform: translateY(-7px);
}

.btn-contact {
  transform: translate(-25px, 20px);
}

.btn-tutorials {
  transform: translate(-70px, 50px);
}

.tooltipBurble {
  --b: 2em; /* Tamaño de la cola */
  --p: 50%; /* Posición de la punta */
  --r: 1.2em; /* Radio de la burbuja */
  left: -2ch;
  top: -15ch;
  color: #555555;
  font-size: 0.83em;
  max-width: 0;
  text-align: left;
  padding: 0;
  border-radius: var(--r);
  background: #FFFFFF;
  position: relative;
  display: block;
  box-shadow: -10px 10px 20px rgba(0, 0, 0, 0.3);
  /* Ocultar inicialmente */
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tooltipBurble p, .tooltipBurble h3 {
  display: none;
}
.tooltipBurble.active {
  max-width: 56ch;
  padding: 1em 2em;
  display: inline-block;
}
.tooltipBurble.active p, .tooltipBurble.active h3 {
  display: block;
}
.tooltipBurble h3 {
  color: #163C68;
  font-weight: 600;
  font-size: 1.5em;
  padding: 0.5em 0 0.5em 0;
}

/* Crear la "cola" principal */
.tooltipBurble::before {
  content: "";
  position: absolute;
  left: 100%;
  top: calc(99% + var(--b) * 0.1); /* Se posiciona dinámicamente debajo del tooltip */
  width: var(--b);
  aspect-ratio: 1;
  background: inherit;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

/* Crear la "cola" secundaria más pequeña */
.tooltipBurble::after {
  content: "";
  position: absolute;
  left: calc(103% + var(--b) / 2);
  top: calc(103% + var(--b) * 0.7); /* Ajusta la posición relativa a --b */
  width: calc(var(--b) / 2);
  aspect-ratio: 1;
  background: inherit;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
}

/* Cuando se activa */
.tooltipBurble.active {
  opacity: 1;
  transform: scale(1);
}

.tooltipBurble.active::after {
  opacity: 1;
  transform: scale(1);
}

.tooltipBurble.active::before {
  opacity: 1;
  transform: scale(1);
}

.card-login {
  max-width: 600px;
  margin: auto;
}

@media (max-width: 750px) {
  .env_body .branding {
    height: 30px;
  }
  .btn-flotante {
    bottom: 55px;
    right: 0px;
    width: 95px;
  }
  .tooltipBurble {
    left: -290px;
    width: 380px;
    top: 0;
  }
  .tooltipBurble::after, .tooltipBurble::before {
    background: none;
  }
}
