@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
/* * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
} */

/* body {
  min-height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#7d6cfc), to(#c635ea));
  background: linear-gradient(#7d6cfc, #c635ea);
} */

.action {
  position: fixed;
  bottom: 50px;
  left: 50px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  z-index:999;
}

.action span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-image: url('/assets/img/whatsapp.png');
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.action ul {
  position: absolute;
  bottom: 55px;
  background: #ffffff;
  min-width: 270px;
  padding: 20px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.action ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.action ul li img {
  height: 25px;
  width: 25px;
  margin-right: 10px;
  opacity: .8;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}

.action ul li img:hover {
  opacity: 1;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.action ul li a {
  text-decoration: none;
  color: #000;
}

.action.active span {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.action.active ul {
  bottom: 68px;
  opacity: 1;
  visibility: visible;
}

.action.active li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.action.active li:hover {
  font-weight: 700;
}

.action.active li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}