
.FabSelect .action-button {
 
  position: fixed;
  bottom: 50px;
  right: 20px;
  text-align: center;
  font-size: 32px;
  line-height: 50px;
  width: 50px;
  height: 50px;
  background-color: #B91685;
  color: #FFF;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  z-index: 9;
  
 	box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 4px 1px rgba(0, 0, 0, 0.25);
}

.FabSelect .action-list {
  /*color: initial;*/
  color: black;
  font-size: initial;
  text-align: initial;
  /*line-height: initial;*/
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: white;
  font-size: 14px;
}

.FabSelect .action-list-item {
  padding: 10px;
  white-space: nowrap;
 
}
.FabSelect .action-list-item:hover {
  background-color: #B91685;
  cursor: pointer;
}

.FabSelect .action-list-item span:hover {
	color: white!important;
}


