/** Botón de Politicas
/**************************************************/
.open-politics {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 9999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 22px;
  transition: all 0.4s;
}

.open-politics i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.open-politics:hover {
  background: #0c2062;
  color: #fff;
}

.open-politics.active {
  visibility: visible;
  opacity: 1;
  bottom: 70px;
}

/** Botón de WhatsApp
/**************************************************/
.back-to-whatsapp {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 9999;
  background: #06a54e;
  width: 44px;
  height: 44px;
  border-radius: 22px;
  transition: all 0.4s;
}

.back-to-whatsapp i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-whatsapp:hover {
  background: #05853e;
  color: #fff;
}

.back-to-whatsapp.active {
  visibility: visible;
  opacity: 1;
  bottom: 125px;
}