.floatingButtonWrap {
    display: block;
    position: fixed;
    bottom: 100px;
    right: 35px;
    z-index: 999999999;
}

.floatingButtonInner {
    position: relative;
}

.floatingButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    text-align: center;
    background: #25d366;
    color: #fff;
    line-height: 1;
    position: relative;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    opacity: 1;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.floatingButton i {
    display: none;
}

.floatingButton::before {
    content: "\f232";
    font-family: FontAwesome;
    font-size: 30px;
    line-height: 1;
}

.floatingButton:hover,
.floatingButton:focus,
.floatingButton:active {
    background: #1ebe5d;
    opacity: 1;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.floatingMenu {
    display: none;
}

@media (max-width: 767px) {
    .floatingButtonWrap {
        right: 35px;
        bottom: 100px;
    }

    .floatingButton {
        width: 54px;
        height: 54px;
    }

    .floatingButton::before {
        font-size: 28px;
    }
}
