ul.floating-menu {
    max-width: 346px;
    position: absolute;
    border-radius: 4px;
    margin-bottom: 10px;
    margin-left: -5px;
    z-index: 2222;
    border: 5px solid #787878;
    background-color: #33333350;
    backdrop-filter: blur(5px);
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
ul.floating-menu[data-fm-floated="top"]:before {
    content: "";
    position: absolute;
    width: 0; 
    height: 0; 
    bottom: -13px;
    left: 50%;
    margin-left: -9px;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 9px solid #787878 !important;
}

ul.floating-menu[data-fm-floated="left"]:before {
    content: "";
    position: absolute;
    width: 0; 
    height: 0; 
    bottom: 50%;
    margin-bottom: -9px;
    right: -9px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 9px solid #000;
}

ul.floating-menu[data-fm-floated="right"]:before {
    content: "";
    position: absolute;
    width: 0; 
    height: 0; 
    bottom: 50%;
    margin-bottom: -9px;
    left: -9px;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 9px solid #000;
}

ul.floating-menu[data-fm-floated="bottom"]:before {
    content: "";
    position: absolute;
    width: 0; 
    height: 0; 
    top: -9px;
    left: 50%;
    margin-left: -9px;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #000;
}

ul.floating-menu li {
    position: relative;
    display: inline-block;
    padding: 2px;
    padding-left: 8px;
    text-align: center;
    border: 1px solid #484848;
    background: #ffffff1f;
    border-radius: 4px;
    margin: 3px;
    width: 106px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
}
ul.floating-menu li:hover {
    color: #00ff0050 !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

ul.floating-menu li a {
    position: relative;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    line-height: 32px;
    box-shadow: 0px 5px 0px 0px #a6a6a6;
    text-shadow: -1px 2px 3px #000000;
}

ul.floating-menu li a:active {
    color: #fff;
	position:relative;
	top:1px;
	text-shadow: none;
}

ul.floating-menu li .fm-icon {
    position: relative;
    margin-right: 8px;
    font-size: 38px;
    line-height: 38px;
    color: #fff;
}

ul.floating-menu.animated {
    animation-duration: 0.2s;
    -webkit-animation-duration: 0.2s;
    -ms-animation-duration: 0.2s;
    -moz-animation-duration: 0.2s;
    -o-animation-duration: 0.2s;
}
.homus {
    box-shadow: none !important;
    color: #8f94a5 !important;
}
ul.floating-menu.visible-transit {
    -o-transition:.2s;
    -ms-transition:.2s;
    -moz-transition:.2s;
    -webkit-transition:.2s;
    transition:.2s; 
}

/* Animations */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

[data-fm-floated="left"].fadeInPosition {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(50%, 0, 0);
        transform: translate3d(50%, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

[data-fm-floated="right"].fadeInPosition {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

[data-fm-floated="top"].fadeInPosition {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

[data-fm-floated="bottom"].fadeInPosition {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}