/* -------------------------------------------------------------------------- */
/**
 * Floating Action Button (copiado de la versión F7 1.6.0)
 */

.floating-button {
    -moz-box-align: center;
    -moz-box-pack: center;
    align-items: center;
    background-color: #2196f3;
    border-radius: 50%;
    bottom: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    color: #fff;
    display: flex;
    height: 56px;
    justify-content: center;
    overflow: hidden;
    position: absolute;
    right: 16px;
    transition-duration: 0.3s;
    width: 56px;
    z-index: 1500;
}
.floating-button.active-state, html:not(.watch-active-state) .floating-button:active {
    background: #0c82df none repeat scroll 0 0;
}
.floating-button-toolbar, .speed-dial {
    bottom: 16px;
    position: absolute;
    right: 16px;
    z-index: 1500;
}
.floating-button-toolbar .floating-button, .speed-dial .floating-button {
    bottom: 0;
    position: relative;
    right: 0;
}
.speed-dial .floating-button i {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0px) rotate(0deg) scale(1);
    transition-duration: 0.3s;
}
.speed-dial .floating-button i + i {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0px) rotate(-90deg) scale(0.5);
}
.speed-dial.speed-dial-opened .floating-button i {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0px) rotate(90deg) scale(0.5);
}
.speed-dial.speed-dial-opened .floating-button i + i {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0px) rotate(0deg) scale(1);
}
.speed-dial-buttons {
    -moz-box-direction: reverse;
    -moz-box-orient: vertical;
    bottom: 100%;
    display: flex;
    flex-direction: column-reverse;
    left: 50%;
    margin-bottom: 16px;
    margin-left: -20px;
    pointer-events: none;
    position: absolute;
    visibility: hidden;
    width: 40px;
}
.speed-dial-buttons a {
    -moz-box-align: center;
    -moz-box-pack: center;
    align-items: center;
    background-color: #2196f3;
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 40px;
    justify-content: center;
    opacity: 0;
    overflow: hidden;
    position: relative;
    transform: translate3d(0px, 8px, 0px) scale(0.3);
    transform-origin: center bottom 0;
    transition-duration: 0.3s;
    width: 40px;
    z-index: 1;
}
.speed-dial-buttons a.active-state, html:not(.watch-active-state) .speed-dial-buttons a:active {
    background: #0c82df none repeat scroll 0 0;
}
.speed-dial-buttons a + a {
    margin-bottom: 16px;
}
.speed-dial-opened .speed-dial-buttons {
    pointer-events: auto;
    visibility: visible;
}
.speed-dial-opened .speed-dial-buttons a {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    opacity: 1;
    transform: translate3d(0px, 0px, 0px) scaleY(1);
}
.speed-dial-opened .speed-dial-buttons a:nth-child(2) {
    transition-delay: 50ms;
}
.speed-dial-opened .speed-dial-buttons a:nth-child(3) {
    transition-delay: 0.1s;
}
.speed-dial-opened .speed-dial-buttons a:nth-child(4) {
    transition-delay: 150ms;
}
.speed-dial-opened .speed-dial-buttons a:nth-child(5) {
    transition-delay: 0.2s;
}
.speed-dial-opened .speed-dial-buttons a:nth-child(6) {
    transition-delay: 250ms;
}
.floating-button-to-popover.floating-button-to-popover {
    transition-duration: 0.3s;
}
.floating-button-to-popover.floating-button-to-popover-in {
    transition-duration: 0.1s;
}
.floating-button-to-popover.floating-button-to-popover-in i {
    opacity: 0;
    transition-duration: 0.1s;
}
.floating-button-to-popover.floating-button-to-popover-scale {
    border-radius: 0;
    box-shadow: none;
    transition-duration: 0.3s;
}
.floating-button-to-popover.floating-button-to-popover-out {
    transition-delay: 0s;
    transition-duration: 0.3s;
}
.floating-button-to-popover.floating-button-to-popover-out i {
    opacity: 1;
    transition-delay: 0.2s;
    transition-duration: 0.1s;
}