 .fabs {
    position: fixed;
    bottom: 120px;
    right: 40px;
    z-index: 1000;
  }

  .action {
    background: #8f1b1b;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 7px 0px gray;
    transition: background-color 0.4s ease-in-out;
    cursor: pointer;
  }

  .action i {
    position: absolute;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 25px;
    cursor: pointer;
  }

  .action:hover {
    background-color: #8f1b1b;
  }

  .btn {
    position: absolute;
    height: 35px;
    width: 35px;
    border-radius: 50%;
  }

  .btn i {
    position: absolute;
    font-size: 18px;
    color: white;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .btns {
    position: absolute;
    bottom: 0px;
    margin-bottom: 5px;
    height: 35px;
    width: 35px;
    transition: all 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
  }

  .btns.open {
    bottom: 50px;
  }

  .btns .btn {
    position: absolute;
    bottom: 0;
    right: 0;
    transition: all 0.3s ease;
  }

  @media (max-width: 767px) {
    .fabs {
      position: fixed;
      bottom: 150px;
      right: 5px !important;
      z-index: 1000;
    }
  }