.wpp_btn {
  align-items: center;
  background-color: #1b9849;
  border-radius: 100%;
  bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  display: flex;
  height: 60px;
  justify-content: center;
  opacity: 0.9;
  position: fixed;
  right: 20px;
  transition: all 0.1s ease-in-out;
  width: 60px;
  z-index: 1000;
}

.wpp_btn img {
  width: 30px;
  height: 30px;
}

.wpp_btn:hover {
  cursor: pointer;
  opacity: 1;
}

.chat {
  align-items: center;
  background-color: var(--lgreen);
  border: none;
  border-radius: 150px;
  bottom: 30px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: var(--white);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  outline: none;
  position: fixed;
  right: 100px;
  transition: all 0.1s ease-in-out;
  width: 160px;
  z-index: 1000;
}

.chat img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.chat:hover {
  background-color: var(--green);
  cursor: pointer;
}

.splide__slide {
  align-self: center;
  display: flex;
  justify-content: center;
}

.splide__slide img {
  align-items: center;
  height: auto;
  justify-content: center;
  width: 160px;
}

@media (max-width: 600px) { 
  .wpp_btn {
    bottom: 15px;
    right: 15px;
  }

  .chat {
    bottom: 15px;
    right: 80px;
  }
}
