.style-1,
.style-2,
.style-3 {
  background-position: center;
  background-repeat: no-repeat;
}

/* style 1 */
.style-1 {
  display: block;
  background-size: 40px !important;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  position: fixed;
  right: 20px;
  z-index: 99;
  border: 1px solid var(--white);
}
.style-1.button_whatsapp_1 {
  bottom: 20px;
}
.style-1.button_whatsapp_2 {
  bottom: 75px;
}
.style-1.button_whatsapp_3 {
  bottom: 130px;
}
.style-1.button_whatsapp_4 {
  bottom: 185px;
}
.style-1.button_whatsapp_5 {
  bottom: 240px;
}

.style-1 span {
  display: none;
}

.gate-style-2 {
  display: block;
  width: 40px;
  height: 40px;
  background: #25d366 url("img/wa.svg") center center no-repeat;
  background-size: 25px !important;
  border-radius: 99px;
  overflow: hidden;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
}
.gate-style-2.x {
  background: #25d366 url("img/x.svg") center center no-repeat;
}

/* style2 ========================== */
.gate-style-2 span {
  display: none;
}
.wrap-style-2 {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 40px;
  display: none;
  width: auto;
}
.style-2 {
  width: 40px;
  height: 40px;
  display: block;
  bottom: 70px;
  border-radius: 99px;
  margin-bottom: 8px;
  background-size: 25px !important;
}
.style-2 span {
  background: var(--white);
  padding: 0px 18px;
  position: absolute;
  right: 46px;
  border-radius: 50px;
  display: none;
  margin-top: 8px;
  margin-right: 5px;
  color: black;
}
.style-2:hover span {
  display: block;
}
.style-2 span::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  left: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent transparent var(--white);
}

/* style 3 ================================= */
.floating-wrapper {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  z-index: 9999;
  background-color: #00254a;
  border-radius: 50px;

  height: 40px;
  align-items: center;
}
.floating-wrapper p {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;

  margin: 0 20px 0 10px;
}
.floating-wrapper .style-3 {
  display: block;
  background-size: 25px 25px !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 99;
  border: 1px solid var(--white);
}

/* style 4 ================================= */
.floating-wrapper .style-4 {
  display: block;
  background-size: 25px 25px !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 99;
}
.floating-wrapper:has(.style-4) {
  flex-direction: row-reverse;
}
.floating-wrapper .style-4 + p {
  margin: 0;
  width: 0;
  opacity: 0;
  transition: all 0.2s linear;
  text-wrap: nowrap;
}
.floating-wrapper:hover .style-4 + p {
  margin: 0 10px 0 20px;
  width: 115px;
  opacity: 1;
}

/* Positioning */
.floating-wrapper {
  --spacing-float: 50px;
}
.floating-wrapper:nth-child(1) {
  bottom: calc(30px + var(--spacing-float));
}
.floating-wrapper:nth-child(2) {
  bottom: calc(80px + var(--spacing-float));
}
.floating-wrapper:nth-child(3) {
  bottom: calc(130px + var(--spacing-float));
}
