@import url(https://fonts.googleapis.com/css?family=Roboto:200,300,400);
 /*@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css);*/

 .FAB {
	 position: fixed;
	 bottom: 30px;
	 right: 60px;
	 width: 56px;
}
 .FAB__action-button, .FAB__mini-action-button {
	 cursor: pointer;
	 position: absolute;
}
 .FAB__action-button {
	 bottom: 0;
	 right: 0;
}
 .FAB__action-button:hover .action-button__icon {
	 box-shadow: 0 0 8px rgba(0, 0, 0, .14), 0 8px 16px rgba(0, 0, 0, .28);
}
 .FAB__mini-action-button {
	 bottom: 0;
	 right: 49px;
}
 .action-button__icon {
	 box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
	 background-color: #ff4081;
	 border-radius: 50%;
	 color: #fff;
	 padding: 16px;
}
 .action-button__text--hide {
	 display: none;
}
 .action-button__text--show {
	 background-color: #212121;
	 border-radius: 3px;
	 color: #fff;
	 right: 75px;
	 font-size: 14px;
	 font-family: "Helvetica Neue";
	 opacity: 0.8;
	 padding: 5px 9px;
	 position: absolute;
	 top: 2px;
	 white-space: nowrap;
}
 .mini-action-button__icon {
	 box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
	 background-color: #536dfe;
	 border-radius: 10%;
	 color: #fff;
	 padding: 8px;
	 position: absolute;
     right: -83px;
     bottom: -15px;
	 width: 130px;
}
 .mini-action-button__icon:hover {
	 box-shadow: 0 0 8px rgba(0, 0, 0, .14), 0 8px 16px rgba(0, 0, 0, .28);
}
 .mini-action-button__text--hide {
	 display: none;
}
 .mini-action-button__text--show {
	 background-color: #212121;
	 border-radius: 3px;
	 color: #fff;
	 display: block;
	 right: 60px;
	 font-size: 14px;
	 font-family: "Helvetica Neue";
	 opacity: 0.8;
	 padding: 5px 9px;
	 position: absolute;
	 top: -29px;
	 white-space: nowrap;
}
 .mini-action-button--show {
	 position: absolute;
	 text-align: center;
}
 .mini-action-button--hide {
	 display: none;
	 opacity: 0;
}
 .mini-action-button--show:nth-child(1) {
	 bottom: 80px;
}
 .mini-action-button--show:nth-child(2) {
	 bottom: 140px;
}
 .mini-action-button--show:nth-child(3) {
	 bottom: 200px;
}
 .mini-action-button--show:nth-child(4) {
	 bottom: 260px;
}
 .mini-action-button--show:nth-child(5) {
	 bottom: 320px;
}
 .mini-action-button--show:nth-child(6) {
	 bottom: 380px;
}
 .mini-action-button--show:nth-child(7) {
	 bottom: 440px;
}
 .mini-action-button--show:nth-child(8) {
	 bottom: 500px;
}
 .mini-action-button--show:nth-child(9) {
	 bottom: 560px;
}
 .mini-action-button--show:nth-child(10) {
	 bottom: 620px;
}
	.FAB__mini-action-button .mini-action-button--show:last-child p.mini-action-button__text--show{top: -19px;}
	   
 .modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 100ms ease-in;
    -moz-transition: opacity 100ms ease-in;
    transition: opacity 100ms ease-in;
    pointer-events: none;
}
.modalDialog:target {
    opacity:1;
    pointer-events: auto;
}
.modalDialog > div {
    max-width: 450px;
    width: 90%;
    position: relative;
    margin: 2% auto;
    padding: 10px;
    border-radius: 3px;
    background: #fff;
}
.close {
    font-family: Arial, Helvetica, sans-serif;
    background: #f26d7d;
    color: #fff;
    line-height: 25px;
    position: absolute;
    right: -12px;
    text-align: center;
    top: -10px;
    width: 34px;
    height: 34px;
    text-decoration: none;
    font-weight: bold;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 1px 1px 3px #000;
    -webkit-box-shadow: 1px 1px 3px #000;
    box-shadow: 1px 1px 3px #000;
    padding-top: 5px;
}
.close:hover {
    background: #fa3f6f;
}
