/* =====================================================
 * FLOATING INSTALL BUTTON (LEFT BOTTOM)
 * ===================================================== */
.floating-install {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-install:hover {
    background-color: #0b5ed7;
    transform: scale(1.08);
}

.floating-install {
    left: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 22px;
}

@media (max-width: 576px) {

    .floating-install {
        left: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

}
