.buble_add {
  width: 50px;
  height: 50px;
  background: #0791ec;
  bottom: 10px;
  border-radius: 50%;
  padding-top: 7px;
  padding-left: 17px;
  z-index: 100;
  position: fixed;
  right: 30px;
  bottom: 20px;
}

.bt_float {
  background: #0791ec;
  font-size: 24px;
  text-align: center;
  border-radius: 50%;
  margin-left: -2px;
}


.tooltip {
  padding: 18px 32px;
  background: rgba(255, 255, 255, 0.8);
  width: 220px;
  border-radius: 5px;
  text-align: center;
  filter: drop-shadow(0 3px 5px #ccc);
  line-height: 1.5;
  display: none;
  bottom: 80px;
  right: 30px;

  z-index: 100;
  position: fixed;
  color: #000000;
  font-weight: bold;
}

.tooltip:after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 85%;
  margin-left: -9px;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
}

.tooltip-trigger:hover+.tooltip {
  display: block;
}

#observacion {
  margin-top: 5px;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.input-group input[type="text"] {
  flex: 1;
  padding-right: 50px;
  /* espacio para el botón */
}

.button-group {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 1px;
}

.btn i {
  font-size: 16px;
}

/* Botón Guardar */
.btn-aceptar {
  display: inline-flex;
  justify-content: space-evenly;
  align-items: baseline;
  background-color: #03a9f4;
  color: white;
  border-radius: 8px 0px 0px 8px;
  width: 100%;
  padding: 10px;
}
.btn-aceptar:hover {
  background-color: #43a047;
}

/* Botón Cancelar */
.btn-cancelar {
  display: inline-flex;
  justify-content: space-evenly;
  align-items: baseline;
  background-color: #03a9f4;
  color: white;
  border-radius: 0px 8px 8px 0px;
  width: 100%;
  padding: 10px;
}
.btn-cancelar:hover {
  background-color: #e53935;
}

/* Botón Consultar RUC */
#btn_rucCed_sinc {
  background-color: #03a9f4;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 0px 8px 8px 0px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 15px;
}

#btn_rucCed_sinc:hover {
  background-color: #028fcc;
}

#btn_rucCed_sinc i {
  font-size: 28px;
}

