.material-icons {
    font-family: 'Material Icons';
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
}

.fabs {
    cursor: default;
    z-index: 9999;
    bottom: 0;
    position: fixed;
    padding: 1em;
    right: 0;
    /* Don't activate hover on display: 0 kids */
    max-height: 28px; /* 56px - 2*14px */
    transition: max-height 2s ease-out;
	
}

.fabs:hover {
    max-height: 500px;
    transition: max-height 0s ease-in;
}

.fab:last-child {
    position: absolute;
    bottom: 14px;
    right: 14px;
}

.fab, .fab-placeholder {
    cursor: default;
    display: block;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin: 20px auto 0;
    position: relative;
}

.fab {
    text-align: center;
    color: white;
    box-shadow: 0px 5px 11px -2px rgba(0, 0, 0, 0.18), 0px 4px 12px -7px rgba(0, 0, 0, 0.15);
    -webkit-transition: all .1s ease-out;
    transition: all .1s ease-out;

    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer */
    -khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
    -webkit-user-select: none; /* Chrome, Safari, and Opera */
    -webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}

.fab > svg {
    height: 80%;
    margin-top: 10%;
    color: white;
    fill: white;
    max-height: 80%;
    vertical-align: center;
    text-align: center;
}

.fab > i {
    font-size: 28px;
    line-height: 60px;
    transition: all .2s ease-in-out;
    transition-delay: 2s;
}

.fab.red {
    background: #F44336;
}


.fab:active,
.fab:focus,
.fab:hover {
    box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
}

.fab:not(:last-child) {
    cursor: pointer;
    width: 36px;
    height: 36px;
    margin: 20px auto 0;
    opacity: 0;
}

.fab:not(:last-child) > i {
    font-size: 18px;
    line-height: 40px;
    transition: all .3s ease-in-out;
}

.fabs:hover .fab:not(:last-child) {
    opacity: 1;
    width: 40px;
    height: 40px;
}

.fab:nth-last-child(2) {
    -webkit-transition-delay: 25ms;
    transition-delay: 25ms;
}

.fab:not(:last-child):nth-last-child(3) {
    -webkit-transition-delay: 20ms;
    transition-delay: 20ms;
}

.fab:not(:last-child):nth-last-child(4) {
    -webkit-transition-delay: 40ms;
    transition-delay: 40ms;
}

.fab:not(:last-child):nth-last-child(5) {
    -webkit-transition-delay: 60ms;
    transition-delay: 60ms;
}

.fb9 {
      border: 1px solid #3366FF;
      background-color: #B3C6FF;
      width:150px;
      height:30px;
    }

.fab:not(:last-child):nth-last-child(6) {
    -webkit-transition-delay: 80ms;
    transition-delay: 80ms;
}

[tooltip]:before {
    font-family: 'Roboto';
    font-weight: 600;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    background-color: #585858;
    color: #fff;
    content: attr(tooltip);
    font-size: 12px;
    visibility: hidden;
    opacity: 0;
    padding: 5px 7px;
    margin-right: 10px;
    position: absolute;
    right: 100%;
    bottom: 5%;
    white-space: nowrap;
}

[tooltip]:hover:before,
[tooltip]:hover:after {
    visibility: visible;
    opacity: 1;
}