/* Add here all your CSS customizations */
[data-tooltip] {
  position: relative;
  font-weight: bold;
}

[data-tooltip]:after {
  display: none;
  position: absolute;
  top: -5px;
  padding: 5px;
  border-radius: 3px;
  left: calc(100% + 2px);
  content: attr(data-tooltip);
  white-space: nowrap;
  background-color: #0095ff;
  color: White;
}

[data-tooltip]:hover:after {
  display: block;
}

.whatsapp {
  position: fixed;
  bottom: -5px;
  right: 0px;
  z-index: 99999;
  width: 90px;
  height: 90px;
  margin-right: 5px;
  margin: 15px;
  display: block;
  border-radius: 19%;
  cursor: pointer;
  box-shadow: 0 0 0 rgb(204 169 44 / 40%);
  animation: pulse 2s infinite;
  border-width: 3px !important;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-left: 18px;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
}
