.btn-circle {
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1.428571429;
  border-radius: 15px;
}
.btn-circle.btn-lg {
  width: 50px;
  height: 50px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 25px;
}
.btn-circle.btn-xl {
  width: 70px;
  height: 70px;
  padding: 10px 16px;
  font-size: 24px;
  line-height: 1.33;
  border-radius: 35px;
}

.btn-create {
  position: fixed;
}
.btn-action-options {
  position: fixed;
  right: 10px;
  bottom: 0px;
  z-index: 100;
}
.btn-action-options--list {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
}
.btn-action-options--list li {
  overflow: hidden;
  background: none;
  margin-bottom: 10px;
  height: 50px;
}

.btn-action-options--list li button {
  position: relative;
}

.btn-action-options--inline-group label {
  position: relative;
}

.btn-action-options--inline-group {
  height: 50px;
  width: 100%;
}
.btn-action-options--inline-group.fade button{
  transition: all 0.3s ease-out;
  opacity: 0;
  transform: scale(0);
}

.btn-action-options--inline-group.fade.btn-lg {
  transform: scale(0);
}
.btn-action-options--inline-group.fade.show {
  opacity: 1;
  height: 50px;
  width: 100%;
}

.btn-action-options--inline-group.fade.show button{
  bottom: 0px;
  opacity: 1;
  transform: scale(1);
 
}