/*=====================================
YOU CAN WRIGHT CUSTOME CSS
======================================*/
.split-text-img {
                display: flex;
            }
            .split-text-img .first {
                width: calc(100% - 50px);
            }
            .split-text-img img {
                height: 50px;
            }
            .social-icons li img {
                width:36px;
            }
            .maps {
                background: #eeeeee;
            }
            .f-social-link.social-icons li a:after {
                background-color: #eeeeee;
            }
            .maps iframe {
                width: 100%;
                height: 600px;
            }
            .line-filter-outer {
                min-height: 350px;
            }
            .hover-effect-content:after {
                bottom: -20px;
            }
            .hover-effect-content {
                padding: 20px;
            }
.float-tooltip::after {
    content: "";
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}
            .float-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}
.float-tooltip {
    position: absolute;
    bottom: 90px;
    right: 0;
    background: white;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    color: #8B4513;
    font-weight: 400;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    transition: opacity .25s ease, transform .25s ease;
    white-space: nowrap;
}
.float-button {
    border: 0px;
    width: 70px;
    height: 70px;
    background: #29a71a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 4px 8px 0px #00000029;
    position: fixed;
    z-index: 10000;
    cursor: pointer;
    bottom: 20px;
    right: 20px;
}
.float-button svg {
    width: 40px;
    height: 40px;
}
.float-wrapper:hover .float-tooltip {
    opacity: 1;
    transform: translateY(0);
}
