/**
 * Cookie banner
 */
#cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  padding: 10px;
  z-index: 9999;
}

/**
   * WhatsApp Float
   */
#whatsapp-float {
  position: fixed;
  transform: translate(110px, 0px);
  top: 25%;
  right: 0;
  width: fit-content;
  overflow: hidden;
  background-color: #25d366;
  color: #fff;
  border-radius: 4px 0 0 4px;
  z-index: 10;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  text-decoration: none;
}

#whatsapp-float:hover {
  color: #ffffff;
  transform: translate(0px, 0px);
}

#whatsapp-float i {
  font-size: 30px;
  color: white;
  line-height: 30px;
  padding: 10px;
  transition: all 0.5s ease-in-out;
  text-align: center;
}

#whatsapp-float a .whatsapp-text {
  font-size: 15px;
  padding: 8px 0px;
  position: absolute;
  line-height: 16px;
  color: white;
}
