#oculto {display:none;}
.action {
  position: fixed;
  bottom: 25px;
  right: 40px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 2px 2px 3px #999;
  z-index:999;
}

.action span {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 3em;
  transition: 0.3s ease-in-out;
}
.action.active span {
  display:none;
}
.action.active #oculto{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1em;
  }
.action ul {
  position: absolute;
  bottom: 55px;
  background: #f1f1f1;
  min-width: 250px;
  padding: 20px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  color: #464646;
  list-style: none;
}

.action.active ul {
  bottom: 65px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  FONT-SIZE: 16PX;
}

.action.active ul li {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
}

.action ul li:hover {
  font-weight: 600;
}

.action ul li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /*important shit for other UI*/
}

.action ul li i {
  margin-right: 10px;
  opacity: 0.6;
  color: #25d366;
}

.action ul li:hover i {
  opacity: 0.9;
}
