﻿.active-fab {
    transition: opacity 0.3s ease-in;
    opacity: 1 !important;
    display: block !important;
}

#fab-wrapper {
    position: fixed;
    bottom: 25px;
    z-index: 9998;
    left: 5px;

    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
}

.fab-movedown {
    left: -200px !important;
    visibility: hidden;
}


.fab-filter {
    position: absolute;
}

.fab-main {
    bottom: 3px;
    font-size: 250%;
    display: list-item;
    width: 70px;
    height: 70px;
    /*background-color: blueviolet;*/
    background-color: grey;
    color: white;
    border-radius: 50%;
    text-align: center;
    vertical-align: middle;
    line-height: 70px;
    box-shadow: 1px 1px 2px 1px #887a7a;
    position: relative;
}

    .fab-main > span {
        line-height: 50px;
    }

.fab-list-small {
    display: none;
    transition: opacity 0.3s ease-out;
    opacity: 0;
    flex-direction: column-reverse;
    list-style: none;
    padding: 0;
    width: 60px;
    margin: auto;
    margin-bottom: 5px;
}

    .fab-list-small > li {
        height: 60px;
        margin-bottom: 3px;
        margin-top: 3px;
        color: white;
        border-radius: 50%;
        box-shadow: 1px 1px 2px 1px #887a7a;
        font-size: 170%;
        line-height: 60px;
        text-align: center;
    }

        .fab-list-small > li > .input-group-btn {
            line-height: 35px;
        }

        .fab-list-small > li a {
            text-decoration: none;
            color: white;
        }

.fab-input-container {
    right: 0px;
    bottom: 25px;
    position: fixed;
    width: 75%;
    opacity: 0;
    display: none;
    padding: 5px 5px 5px 5px;
    background-color: #fff;
    box-shadow: 3px 3px 10px 2px #808080;
    animation: expand 0.3s linear;
    height: 200px
}

.expand-animation {
    animation: expand 0.3s linear;
}

@keyframes expand {
    0% {
        transform: scale(0.3, 0.3);
    }

    100% {
        transform: scale(1, 1);
    }
}