* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background-image: #ffff;
}

.action {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 40px;
  height: 40px;
  background: #4db661;
  border-radius: 50%;
  cursor: pointer;
	z-index: 100;
  box-shadow: 3px 5px 5px rgba(0, 0, 0, 0.1);
}

.action span {
  position: relative;
  width: 100%;
  height: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 2em;
  transition: 0.3s ease-in-out;
}

.action.active span {
  transform: rotate(135deg);
}

.action ul {
  position: absolute;
  bottom: 25px;
  background: #f1f1f1;
  min-width: 200px;
  padding: 10px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  color: #464646;
}

.action.active ul {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
}

.action.active ul li {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 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;
}

.action ul li:hover i {
  opacity: #0062e0;
}

.action ul li a.fb-icon {
  color: #5C33FF;
}

.action ul li a.tw-icon {
  color: #F33D23;
}

.action ul li a.ig-icon {
  color: #00EF33;
}

.action ul li a.pin-icon {
  color: #EB272D;
}

.action ul li a.in-icon {
  color: #0e76a8;
}