* {
  box-sizing: border-box;
}

.fab-wrapper {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
}


.fab-wheel {
  position: absolute;
  bottom: 0;
  left: 0;
  border: 1px solid #;
  width: 10rem;
  height: 10rem;
  transition: all 0.3s ease;
  transform-origin: bottom left;
  transform: scale(1);
}


.fab-action {
  position: absolute;
  background: #0f1941;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: White;
  box-shadow: 0 0.1rem 1rem rgba(24, 66, 154, 0.82);
  transition: all 1s ease;

  opacity: 0.2;
}

.fab-action:hover {
  background-color: #f16100;
}

.fab-wheel .fab-action-1 {
  left: -1rem;
  top: 0;
}

.fab-wheel .fab-action-2 {
  left: 3.4rem;
  top: 0.5rem;
}
.fab-wheel .fab-action-3 {
  right: 0.5rem;
  bottom: 3.4rem;
}
.fab-wheel .fab-action-4 {
  right: 0;
  bottom: -1rem;
}
