.flm {
    left: auto;
    bottom: 30px;
    right: 20px;
    position: fixed;
    transition: 0.35s;
    z-index: 9999;
}

.floating-menu-title {
    opacity: 0;
    pointer-events: auto;
    top: 50%;
    text-align: center;
    font-size: 17px;
    left: 0;
    transform: translate(calc(-98% - 15px),-50%);
    white-space: nowrap;
    padding: 5px 15px;
    line-height: 21px;
    position: absolute;
    color: #333;
    background-color: #fff;
    box-shadow: 0 1.93465px 7.73859px rgba(0,0,0,.15);
    border-radius: 10px;
}

.flm .elementor-grid .elementor-grid-item-action.elementor-grid-item:before,
.flm .elementor-grid .floating-menu-item.elementor-grid-item:before
{
    content: "";
    left: -14px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    height: 0;
    width: 0;
    opacity: 0;
    z-index: 11;
    border-width: 6px 0 7px 12px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.elementor-grid-item {
    position: relative;
}

.floating-menu-title > p {
    color: #222 !important;
    text-decoration: none!important;
    margin: 0!important;
    padding: 0!important;
    white-space: nowrap;
}

.elementor-shape-circle .elementor-icon.elementor-social-icon {
    box-shadow: 0 5px 6px rgba(0,0,0,.25) !important;
}

.elementor-grid-item:hover:before{
    opacity: 1 !important;
}

.elementor-grid-item:hover .floating-menu-title {
    opacity: 1;
    box-shadow: 5px 5px 18px #888888;
}

.elementor-grid-item-action a.true {
    animation-name: action-menu;
    animation-duration: 0.5s;
}

@keyframes action-menu {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.elementor-grid-item-action a.false {
    animation-name: close-menu;
    animation-duration: 0.5s;
}

@keyframes close-menu {
    100% {
        transform: rotate(0deg);
    }
    0% {
        transform: rotate(360deg);
    }
}