.whatsapp-bubble {
  position: fixed;
  z-index: 1700;
}

.whatsapp-bubble a.wab-link {
  width: 55px;
  height: 55px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 12px;
  color: gray;
}
.whatsapp-bubble.inverse  a.wab-link {
  background-color: #25D366;
}

.whatsapp-bubble svg.wab {
  color: #25D366;
  height: 55px;
  width: 30px;
}
.whatsapp-bubble.inverse svg.wab {
  color: white;
}

/* Horizontal alignment */
.whatsapp-bubble.right {
  right: 20px;
}
.whatsapp-bubble.left {
  left: 20px;
}
.whatsapp-bubble.center {
  left: calc(50vw - 25px);
}

/* Vertical alignment */
.whatsapp-bubble.top {
  top: 70px;
}
.whatsapp-bubble.middle {
  top: calc(50vh - 25px);
}
.whatsapp-bubble.bottom {
  bottom: 70px;
}

.whatsapp-bubble.whatsapp-bubble--btn {
    position: relative;
    float: left;
}

.whatsapp-bubble--link {
    padding-left: 12px;
    padding-right: 12px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    color: black;
    gap: 1em;
    border-radius: 6px;
    background-color: #25D366;
    border: 2px solid black;
    .icon-btn-whatsapp {
      line-height: 0;
    }
    .message-wrapper {
      line-height: 0.7em;
      padding-top: 5px;
    }
    svg.wab {
      color: black;
    }
    &:hover {
      color: black;
    }
}
