.floating-bar {
    display: none;
}

@media only screen and (max-width: 800px) {
    .floating-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-image: url('/static/img/download/floating-bg.webp');
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
    
    .logo img {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .text {
        flex-grow: 1;
        padding: 0 10px;
        color: white;
    }

    .row-bold {
        font-size: 16px;
        margin-bottom: 5px;
        font-weight: bold;
    }
    
    .row {
        font-size: 14px;
    }
    
    .button a:hover img {
        opacity: 0.9;
    }

    .floating-download {
        display: flex;
        align-items: center;
        border: 1px solid #ffffff50;
        color: white;
        text-decoration: none;
        padding: 10px;
        background: #00000090;
        border-radius: 12px;
        margin-right: 20px;
        font-size: 14px;
    }

    .floating-download img {
        width: 20px;
        vertical-align: bottom;
        margin-right: 5px;
    }
    
}